diff --git a/README.md b/README.md index 9157988..0f6c7cf 100644 --- a/README.md +++ b/README.md @@ -3,3 +3,54 @@ Udemy本人更多课程优惠折扣购买地址 https://github.com/udemy-course/Promotion + + + +## 课程资料 + + +### 第三章 + + +JSON数据结构: https://github.com/udemy-course/mongodb-cn/blob/master/chapter3/employee.json + +查找和更新 https://github.com/udemy-course/mongodb-cn/blob/master/chapter3/employee_1.json + +Document的嵌套 https://github.com/udemy-course/mongodb-cn/blob/master/chapter3/employee_2.json + +### 第四章 + +MongoDB的Python驱动演示 https://github.com/udemy-course/mongodb-cn/blob/master/chapter4/test.py + +### 第五章 + +一对一关系 https://github.com/udemy-course/mongodb-cn/blob/master/chapter5/one-one.json + + +一对多关系的聚合Aggregation https://github.com/udemy-course/mongodb-cn/blob/master/chapter5/aggregation.json + +### 第六章 + +逻辑和比较操作符练习 https://github.com/udemy-course/mongodb-cn/blob/master/chapter6/movie.json + +元素相关操作符 https://docs.mongodb.com/manual/reference/operator/query-element/ + +Array相关的操作符 https://github.com/udemy-course/mongodb-cn/blob/master/chapter6/array.json + +updateOne,updateMany,$set回顾 https://github.com/udemy-course/mongodb-cn/blob/master/chapter6/people.json + +### 第七章 + +单一字段的index https://github.com/udemy-course/mongodb-cn/blob/master/chapter7/index.json + +使用unique index唯一值索引 https://github.com/udemy-course/mongodb-cn/blob/master/chapter7/people.json + +### 第八章 + +寻找附近的餐厅 https://github.com/udemy-course/mongodb-cn/blob/master/chapter8/restaurant.json + +判断是否在某一个区域内 https://github.com/udemy-course/mongodb-cn/blob/master/chapter8/neighborhood.json + + +### 第九章 + diff --git a/chapter10/add-admin.js b/chapter10/add-admin.js new file mode 100644 index 0000000..0e438b1 --- /dev/null +++ b/chapter10/add-admin.js @@ -0,0 +1,14 @@ +db.createUser( + { + user : "admin", + pwd : "admin", + roles: [ + { + role : "readWrite", db : "admin"}, + { + role: "userAdminAnyDatabase", + db : "admin" + } + ] + } +) \ No newline at end of file diff --git a/people.json b/chapter10/people.json similarity index 100% rename from people.json rename to chapter10/people.json diff --git a/replication.sh b/chapter12/replication.sh similarity index 100% rename from replication.sh rename to chapter12/replication.sh diff --git a/chapter13/generate_shard_data.py b/chapter13/generate_shard_data.py new file mode 100644 index 0000000..a8bc9f4 --- /dev/null +++ b/chapter13/generate_shard_data.py @@ -0,0 +1,19 @@ +import random +import string + +res = [] +min_char = 100 +max_char = 200 +allchar = string.ascii_letters + string.punctuation + string.digits + + +for i in range(100000): + tmp = {} + tmp['testkey'] = random.randint(1, 10000) + tmp['testtext'] = "".join(random.choice(allchar) for x in range(random.randint(min_char, max_char))) + res.append(tmp) + +f = open('shard_data.json', 'w') +import json +json.dump(res, f) +f.close() \ No newline at end of file diff --git a/shard.sh b/chapter13/shard.sh similarity index 100% rename from shard.sh rename to chapter13/shard.sh diff --git a/chapter13/shard_data.json.zip b/chapter13/shard_data.json.zip new file mode 100644 index 0000000..ac1a7ef Binary files /dev/null and b/chapter13/shard_data.json.zip differ diff --git a/chapter5/aggregation.json b/chapter5/aggregation.json new file mode 100644 index 0000000..24ce035 --- /dev/null +++ b/chapter5/aggregation.json @@ -0,0 +1,56 @@ +db.dropDatabase() + +db.customer.insertMany( +[ + { + "_id": 1, + "name": "John Cart", + "email": "jc@jc.com", + "phone": 12345, + "orders": [1, 2, 3] + }, + { + "_id": 2, + "name": "Arber Su", + "email": "as@as.com", + "phone": 56789, + "orders": [4, 5] + } +]) + +db.order.insertMany( +[ + { + "_id": 1, + "date": "2018-12-10", + "product": "book", + "cost": 19.99 + }, + { + "_id": 2, + "date": "2018-12-13", + "product": "book", + "cost": 39.99 + }, + { + "_id": 3, + "date": "2018-12-22", + "product": "computer", + "cost": 2899 + }, + { + "_id": 4, + "date": "2018-12-01", + "product": "book", + "cost": 19.99 + }, + { + "_id":5, + "date": "2018-12-29", + "product": "computer", + "cost": 2899 + } +] +) + +db.customer.aggregate([{$lookup: {from: "order", localField:"orders",foreignField: "_id", as: "order_details"}}]).pretty() diff --git a/chapter5/one-one.json b/chapter5/one-one.json new file mode 100644 index 0000000..d146aaa --- /dev/null +++ b/chapter5/one-one.json @@ -0,0 +1,17 @@ +{ + "_id": 1, + "name": "John Cart", + "email": "jc@jc.com", + "phone": 12345, + "address": 1 +} + +{ + "_id": 1, + "city": "Shanghai", + "street": "aaaaa", + "building": 1, + "unit": 2, + "room": 1021 +} + diff --git a/chapter6/array.json b/chapter6/array.json new file mode 100644 index 0000000..09aa276 --- /dev/null +++ b/chapter6/array.json @@ -0,0 +1,34 @@ +[ + { + "name": "Jack", + "age": 27, + "hobby": [ + { + "type": "Movie", + "rating": 3 + }, + { + "type": "Sports", + "rating": 6 + } + ] + }, + { + "name": "Mark", + "age": 25, + "hobby": [ + { + "type": "Movie", + "rating": 2 + }, + { + "type": "Cook", + "rating": 5 + }, + { + "type": "Music", + "rating": 4 + } + ] + } +] \ No newline at end of file diff --git a/movie.json b/chapter6/movie.json similarity index 100% rename from movie.json rename to chapter6/movie.json diff --git a/chapter6/people.json b/chapter6/people.json new file mode 100644 index 0000000..09aa276 --- /dev/null +++ b/chapter6/people.json @@ -0,0 +1,34 @@ +[ + { + "name": "Jack", + "age": 27, + "hobby": [ + { + "type": "Movie", + "rating": 3 + }, + { + "type": "Sports", + "rating": 6 + } + ] + }, + { + "name": "Mark", + "age": 25, + "hobby": [ + { + "type": "Movie", + "rating": 2 + }, + { + "type": "Cook", + "rating": 5 + }, + { + "type": "Music", + "rating": 4 + } + ] + } +] \ No newline at end of file diff --git a/chapter7/index.json b/chapter7/index.json new file mode 100644 index 0000000..36a5da4 --- /dev/null +++ b/chapter7/index.json @@ -0,0 +1,344427 @@ +[ + { + "title": "After Dark in Central Park", + "year": 1900, + "cast": [], + "genres": [] + }, + { + "title": "Boarding School Girls' Pajama Parade", + "year": 1900, + "cast": [], + "genres": [] + }, + { + "title": "Buffalo Bill's Wild West Parad", + "year": 1900, + "cast": [], + "genres": [] + }, + { + "title": "Caught", + "year": 1900, + "cast": [], + "genres": [] + }, + { + "title": "Clowns Spinning Hats", + "year": 1900, + "cast": [], + "genres": [] + }, + { + "title": "Capture of Boer Battery by British", + "year": 1900, + "cast": [], + "genres": [ + "Short", + "Documentary" + ] + }, + { + "title": "The Enchanted Drawing", + "year": 1900, + "cast": [], + "genres": [] + }, + { + "title": "Feeding Sea Lions", + "year": 1900, + "cast": [ + "Paul Boyton" + ], + "genres": [] + }, + { + "title": "How to Make a Fat Wife Out of Two Lean Ones", + "year": 1900, + "cast": [], + "genres": [ + "Comedy" + ] + }, + { + "title": "New Life Rescue", + "year": 1900, + "cast": [], + "genres": [] + }, + { + "title": "New Morning Bath", + "year": 1900, + "cast": [], + "genres": [] + }, + { + "title": "Searching Ruins on Broadway, Galveston, for Dead Bodies", + "year": 1900, + "cast": [], + "genres": [] + }, + { + "title": "The Tribulations of an Amateur Photographer", + "year": 1900, + "cast": [], + "genres": [] + }, + { + "title": "Trouble in Hogan's Alley", + "year": 1900, + "cast": [], + "genres": [ + "Comedy" + ] + }, + { + "title": "Two Old Sparks", + "year": 1900, + "cast": [], + "genres": [ + "Short" + ] + }, + { + "title": "The Wonder, Ching Ling Foo", + "year": 1900, + "cast": [ + "Ching Ling Foo" + ], + "genres": [ + "Short" + ] + }, + { + "title": "Watermelon Contest", + "year": 1900, + "cast": [], + "genres": [ + "Short" + ] + }, + { + "title": "Acrobats in Cairo", + "year": 1901, + "cast": [], + "genres": [] + }, + { + "title": "An Affair of Honor", + "year": 1901, + "cast": [], + "genres": [] + }, + { + "title": "Another Job for the Undertaker", + "year": 1901, + "cast": [], + "genres": [] + }, + { + "title": "Arrival of Tongkin Train", + "year": 1901, + "cast": [], + "genres": [] + }, + { + "title": "The Artist's Dilemma", + "year": 1901, + "cast": [], + "genres": [] + }, + { + "title": "Band and Battalion of the U.S. Indian School", + "year": 1901, + "cast": [], + "genres": [] + }, + { + "title": "Barnum and Bailey's Circus", + "year": 1901, + "cast": [], + "genres": [] + }, + { + "title": "Beef Extract Room", + "year": 1901, + "cast": [], + "genres": [] + }, + { + "title": "Boxing in Barrels", + "year": 1901, + "cast": [], + "genres": [] + }, + { + "title": "Branding Hams", + "year": 1901, + "cast": [], + "genres": [] + }, + { + "title": "Buffalo Street Parade", + "year": 1901, + "cast": [], + "genres": [] + }, + { + "title": "A Busy Corner at Armour's", + "year": 1901, + "cast": [], + "genres": [] + }, + { + "title": "The Bund, Shanghai", + "year": 1901, + "cast": [], + "genres": [] + }, + { + "title": "Circular Panorama of the Base of the Electric Tower, Ending Looking Down the Mall", + "year": 1901, + "cast": [], + "genres": [] + }, + { + "title": "Circular Panorama of the Electric Tower and Pond", + "year": 1901, + "cast": [], + "genres": [] + }, + { + "title": "Circular Panorama of the Esplanade with the Electric Tower in the Background", + "year": 1901, + "cast": [], + "genres": [] + }, + { + "title": "Coaling a Steamer, Nagasaki Bay, Japan", + "year": 1901, + "cast": [], + "genres": [] + }, + { + "title": "Convention of Railroad Passengers", + "year": 1901, + "cast": [], + "genres": [] + }, + { + "title": "Cornell-Columbia-University of Pennsylvania Boat Race at Ithaca, N.Y., Showing Lehigh Valley Observation Train", + "year": 1901, + "cast": [], + "genres": [] + }, + { + "title": "Couchee Dance on the Midway", + "year": 1901, + "cast": [], + "genres": [] + }, + { + "title": "The Donkey Party", + "year": 1901, + "cast": [], + "genres": [] + }, + { + "title": "The Finish of Bridget McKeen", + "year": 1901, + "cast": [], + "genres": [] + }, + { + "title": "Follow the Leader", + "year": 1901, + "cast": [], + "genres": [] + }, + { + "title": "The Fraudulent Beggar", + "year": 1901, + "cast": [], + "genres": [] + }, + { + "title": "Fun at a Children's Party", + "year": 1901, + "cast": [], + "genres": [] + }, + { + "title": "A Good Joke", + "year": 1901, + "cast": [], + "genres": [] + }, + { + "title": "The Gordon Sisters Boxing", + "year": 1901, + "cast": [], + "genres": [] + }, + { + "title": "Grand Entry, Indian Congress", + "year": 1901, + "cast": [], + "genres": [] + }, + { + "title": "Happy Hooligan April-Fooled", + "year": 1901, + "cast": [], + "genres": [] + }, + { + "title": "Happy Hooligan Surprised", + "year": 1901, + "cast": [], + "genres": [] + }, + { + "title": "Harbor of Shanghai", + "year": 1901, + "cast": [], + "genres": [] + }, + { + "title": "A Hold-Up", + "year": 1901, + "cast": [], + "genres": [] + }, + { + "title": "Ice-Boat Racing at Redbank, N.J.", + "year": 1901, + "cast": [], + "genres": [] + }, + { + "title": "Indians No. 1", + "year": 1901, + "cast": [], + "genres": [] + }, + { + "title": "Jeffries and Ruhlin Sparring Contest at San Francisco, Cal., November 15, 1901", + "year": 1901, + "cast": [], + "genres": [] + }, + { + "title": "A Joke on Grandma", + "year": 1901, + "cast": [], + "genres": [] + }, + { + "title": "Kansas Saloon Smashers", + "year": 1901, + "cast": [], + "genres": [] + }, + { + "title": "Launching of the New Battleship 'Ohio' at San Francisco, Cal. When President McKinley Was There", + "year": 1901, + "cast": [], + "genres": [] + }, + { + "title": "Laura Comstock's Bag-Punching Dog", + "year": 1901, + "cast": [], + "genres": [] + }, + { + "title": "The Life of a Fireman", + "year": 1901, + "cast": [], + "genres": [] + }, + { + "title": "Love by the Light of the Moon", + "year": 1901, + "cast": [], + "genres": [] + }, + { + "title": "The Martyred Presidents", + "year": 1901, + "cast": [], + "genres": [] + }, + { + "title": "Midway Dance", + "year": 1901, + "cast": [], + "genres": [] + }, + { + "title": "Miles Canyon Tramway", + "year": 1901, + "cast": [], + "genres": [] + }, + { + "title": "Montreal Fire Department on Runners", + "year": 1901, + "cast": [], + "genres": [] + }, + { + "title": "Mounted Police Charge", + "year": 1901, + "cast": [], + "genres": [] + }, + { + "title": "The Old Maid Having Her Picture Taken", + "year": 1901, + "cast": [], + "genres": [] + }, + { + "title": "Opening of the Pan-American Exposition Showing Vice President Roosevelt Leading the Procession", + "year": 1901, + "cast": [], + "genres": [] + }, + { + "title": "Pan-American Exposition by Night", + "year": 1901, + "cast": [], + "genres": [] + }, + { + "title": "Panorama of the Exposition, No. 1", + "year": 1901, + "cast": [], + "genres": [] + }, + { + "title": "Panorama of the Exposition, No. 2", + "year": 1901, + "cast": [], + "genres": [] + }, + { + "title": "Panoramic View of the Fleet After Yacht Race", + "year": 1901, + "cast": [], + "genres": [] + }, + { + "title": "Panoramic View of the Temple of Music and Esplanade", + "year": 1901, + "cast": [], + "genres": [] + }, + { + "title": "Panoramic View, Asheville, N.C.", + "year": 1901, + "cast": [], + "genres": [] + }, + { + "title": "Le Petit chaperon rouge", + "year": 1901, + "cast": [], + "genres": [] + }, + { + "title": "Photographing the Audience", + "year": 1901, + "cast": [], + "genres": [] + }, + { + "title": "Pie, Tramp and the Bulldog", + "year": 1901, + "cast": [], + "genres": [] + }, + { + "title": "President McKinley and Escort Going to the Capitol", + "year": 1901, + "cast": [], + "genres": [] + }, + { + "title": "President McKinley Taking the Oath", + "year": 1901, + "cast": [], + "genres": [] + }, + { + "title": "President McKinley's Speech at the Pan-American Exposition", + "year": 1901, + "cast": [], + "genres": [] + }, + { + "title": "The Queen's Funeral", + "year": 1901, + "cast": [], + "genres": [] + }, + { + "title": "Le Rêve de Noël", + "year": 1901, + "cast": [], + "genres": [] + }, + { + "title": "Rocking Gold in the Klondike", + "year": 1901, + "cast": [], + "genres": [] + }, + { + "title": "Ruhlin in His Training Quarters", + "year": 1901, + "cast": [], + "genres": [] + }, + { + "title": "Shad Fishing at Gloucester, N.J.", + "year": 1901, + "cast": [], + "genres": [] + }, + { + "title": "Terrible Teddy, the Grizzly King", + "year": 1901, + "cast": [], + "genres": [] + }, + { + "title": "The Tramp's Dream", + "year": 1901, + "cast": [], + "genres": [] + }, + { + "title": "Tramp's Nap Interrupted", + "year": 1901, + "cast": [], + "genres": [] + }, + { + "title": "Trapeze Disrobing Act", + "year": 1901, + "cast": [], + "genres": [] + }, + { + "title": "A Trip Around the Pan-American Exposition", + "year": 1901, + "cast": [], + "genres": [] + }, + { + "title": "Turkish Dance", + "year": 1901, + "cast": [], + "genres": [] + }, + { + "title": "Twelve in a Barrel", + "year": 1901, + "cast": [], + "genres": [] + }, + { + "title": "Two Rubes at the Theatre", + "year": 1901, + "cast": [], + "genres": [] + }, + { + "title": "Upper Falls of the Yellowstone", + "year": 1901, + "cast": [], + "genres": [] + }, + { + "title": "Washing Gold on 20 Above Hunker, Klondike", + "year": 1901, + "cast": [], + "genres": [] + }, + { + "title": "Wedding Procession in Cairo", + "year": 1901, + "cast": [], + "genres": [] + }, + { + "title": "Why Mr. Nation Wants a Divorce", + "year": 1901, + "cast": [], + "genres": [] + }, + { + "title": "Wonderful Trick Donkey, The", + "year": 1901, + "cast": [], + "genres": [] + }, + { + "title": "Yacht Race Fleet Following the Committee Boat 'Navigator' Oct. 4th, The", + "year": 1901, + "cast": [], + "genres": [] + }, + { + "title": "You Can't Lose Your Mother-in-Law", + "year": 1901, + "cast": [], + "genres": [] + }, + { + "title": "Arrival of Prince Henry (of Prussia) and President Roosevelt at Shooter's Island (1902)", + "year": 1902, + "cast": [], + "genres": [ + "Short" + ] + }, + { + "title": "The Burlesque Suicide, No. 2", + "year": 1902, + "cast": [], + "genres": [] + }, + { + "title": "Burning of Durland's Riding Academy", + "year": 1902, + "cast": [], + "genres": [ + "Documentary", + "Short" + ] + }, + { + "title": "The Interrupted Bathers", + "year": 1902, + "cast": [], + "genres": [ + "Comedy", + "Short" + ] + }, + { + "title": "Jack and the Beanstalk", + "year": 1902, + "cast": [], + "genres": [] + }, + { + "title": "Who Said Watermelon?", + "year": 1902, + "cast": [], + "genres": [ + "Comedy", + "Short" + ] + }, + { + "title": "Snow White", + "year": 1902, + "cast": [], + "genres": [] + }, + { + "title": "After Dark; or, the Policeman and His Lantern", + "year": 1903, + "cast": [], + "genres": [] + }, + { + "title": "Alice in Wonderland", + "year": 1903, + "cast": [ + "May Clark" + ], + "genres": [] + }, + { + "title": "An Up-to-Date Studio", + "year": 1903, + "cast": [], + "genres": [] + }, + { + "title": "A Visit to the Zoo", + "year": 1903, + "cast": [], + "genres": [] + }, + { + "title": "At Work in a Peat Bog", + "year": 1903, + "cast": [], + "genres": [] + }, + { + "title": "Automobile Explosion", + "year": 1903, + "cast": [], + "genres": [] + }, + { + "title": "The Ascent of Mont Blanc", + "year": 1903, + "cast": [], + "genres": [] + }, + { + "title": "Bicycle Dive", + "year": 1903, + "cast": [], + "genres": [] + }, + { + "title": "Bloodhounds Tracking a Convict", + "year": 1903, + "cast": [], + "genres": [] + }, + { + "title": "Buying a Baby", + "year": 1903, + "cast": [], + "genres": [] + }, + { + "title": "Cliff Scenery at the Fabbins", + "year": 1903, + "cast": [], + "genres": [] + }, + { + "title": "Close Quarters, with a Notion of the Motion of the Ocean", + "year": 1903, + "cast": [], + "genres": [] + }, + { + "title": "Cruelty on the High Seas", + "year": 1903, + "cast": [], + "genres": [] + }, + { + "title": "A Coach Drive from Glengariffe to Kenmore", + "year": 1903, + "cast": [], + "genres": [] + }, + { + "title": "Discovered Through an Opera Glass", + "year": 1903, + "cast": [], + "genres": [] + }, + { + "title": "A Drove of Wild Welsh Mountain Ponies", + "year": 1903, + "cast": [], + "genres": [] + }, + { + "title": "The Delhi Camp Railway", + "year": 1903, + "cast": [], + "genres": [] + }, + { + "title": "DeVoy's Revolving Ladder Act", + "year": 1903, + "cast": [], + "genres": [] + }, + { + "title": "The Deserter", + "year": 1903, + "cast": [], + "genres": [] + }, + { + "title": "The Effects of a Trolley Car Collision", + "year": 1903, + "cast": [], + "genres": [] + }, + { + "title": "Firemen to the Rescue", + "year": 1903, + "cast": [], + "genres": [] + }, + { + "title": "The Goose Takes a Trolley Ride", + "year": 1903, + "cast": [], + "genres": [] + }, + { + "title": "Egyptian Fakir with Dancing Monkey", + "year": 1903, + "cast": [], + "genres": [] + }, + { + "title": "Electrocuting an Elephant", + "year": 1903, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "English Barnyard Scene", + "year": 1903, + "cast": [], + "genres": [] + }, + { + "title": "Every Day Is Sunshine When the Heart Beats True", + "year": 1903, + "cast": [], + "genres": [] + }, + { + "title": "Fire!", + "year": 1903, + "cast": [], + "genres": [] + }, + { + "title": "Fife Getting Instructions from Committee", + "year": 1903, + "cast": [], + "genres": [] + }, + { + "title": "Fun on Board a Fishing Smack", + "year": 1903, + "cast": [], + "genres": [] + }, + { + "title": "The Great Train Robbery", + "year": 1903, + "cast": [], + "genres": [ + "Western" + ] + }, + { + "title": "Hop Picking", + "year": 1903, + "cast": [], + "genres": [] + }, + { + "title": "How to Shut Up a Quarrelsome Wife", + "year": 1903, + "cast": [], + "genres": [] + }, + { + "title": "Light Heavyweight Championship Contest Between Root and Gardner", + "year": 1903, + "cast": [], + "genres": [] + }, + { + "title": "Little Tich and His Funny Feet", + "year": 1903, + "cast": [], + "genres": [] + }, + { + "title": "Murder Scene from 'King of the Detectives'", + "year": 1903, + "cast": [], + "genres": [] + }, + { + "title": "Moses in the Bullrushes", + "year": 1903, + "cast": [], + "genres": [] + }, + { + "title": "Murphy's Wake", + "year": 1903, + "cast": [], + "genres": [] + }, + { + "title": "New York Harbor Police Boat Patrol Capturing Pirates", + "year": 1903, + "cast": [], + "genres": [] + }, + { + "title": "Nicholas Nickleby", + "year": 1903, + "cast": [ + "William Carrington" + ], + "genres": [] + }, + { + "title": "Old Irish Cabin", + "year": 1903, + "cast": [], + "genres": [] + }, + { + "title": "On the Bow River Horse Ranch at Cochrane, North West Territory", + "year": 1903, + "cast": [], + "genres": [] + }, + { + "title": "Only a Soldier Boy", + "year": 1903, + "cast": [], + "genres": [] + }, + { + "title": "Our New Cook", + "year": 1903, + "cast": [], + "genres": [] + }, + { + "title": "Over the Garden Wall", + "year": 1903, + "cast": [], + "genres": [] + }, + { + "title": "Panorama of the Lakes of Killarney from Hotel", + "year": 1903, + "cast": [], + "genres": [] + }, + { + "title": "Passengers Embarking from S.S. Augusta Victoria, at Beyrouth", + "year": 1903, + "cast": [], + "genres": [] + }, + { + "title": "The Pigeons, Place St. Marc, Venice", + "year": 1903, + "cast": [], + "genres": [] + }, + { + "title": "Pittsburgh Fire Department in Full Run", + "year": 1903, + "cast": [], + "genres": [] + }, + { + "title": "Polo Match for the Championship at Hurlingham", + "year": 1903, + "cast": [], + "genres": [] + }, + { + "title": "The Puzzled Bather and His Animated Clothes", + "year": 1903, + "cast": [], + "genres": [] + }, + { + "title": "Quarrelsome Neighbours", + "year": 1903, + "cast": [], + "genres": [] + }, + { + "title": "Railway Ride in the Alps", + "year": 1903, + "cast": [], + "genres": [] + }, + { + "title": "Reproduction of the Corbett-McGovern Fight", + "year": 1903, + "cast": [], + "genres": [] + }, + { + "title": "Rock of Ages", + "year": 1903, + "cast": [], + "genres": [] + }, + { + "title": "The Runaway Match, or Marriage by Motor", + "year": 1903, + "cast": [], + "genres": [] + }, + { + "title": "Saturday Shopping", + "year": 1903, + "cast": [], + "genres": [] + }, + { + "title": "Scene in Canada -- Logging at Bear Creek", + "year": 1903, + "cast": [], + "genres": [] + }, + { + "title": "Scene in Canada -- Spearing Salmon in a Mountain Stream", + "year": 1903, + "cast": [], + "genres": [] + }, + { + "title": "A Search for Evidence", + "year": 1903, + "cast": [], + "genres": [] + }, + { + "title": "Sensational Hurdle Race", + "year": 1903, + "cast": [], + "genres": [] + }, + { + "title": "A Shocking Accident", + "year": 1903, + "cast": [], + "genres": [] + }, + { + "title": "S.S. St. Louis", + "year": 1903, + "cast": [], + "genres": [] + }, + { + "title": "Street Car Chivalry", + "year": 1903, + "cast": [], + "genres": [] + }, + { + "title": "A Substantial Ghost", + "year": 1903, + "cast": [], + "genres": [] + }, + { + "title": "The Tragical Tale of a Belated Letter", + "year": 1903, + "cast": [], + "genres": [] + }, + { + "title": "The Tramp's First Bath", + "year": 1903, + "cast": [], + "genres": [] + }, + { + "title": "A Trip Through the Gap of Dunloe", + "year": 1903, + "cast": [], + "genres": [] + }, + { + "title": "A Trip to the Giant's Causeway", + "year": 1903, + "cast": [], + "genres": [] + }, + { + "title": "Trouble in Hogan's Alley", + "year": 1903, + "cast": [], + "genres": [] + }, + { + "title": "Trout Fishing, Landing Three Pounder", + "year": 1903, + "cast": [], + "genres": [] + }, + { + "title": "True Love Never Runs Smooth", + "year": 1903, + "cast": [], + "genres": [] + }, + { + "title": "Turning the Tables", + "year": 1903, + "cast": [], + "genres": [] + }, + { + "title": "Two Little Vagabonds; or, The Pugilistic Parson", + "year": 1903, + "cast": [], + "genres": [] + }, + { + "title": "The Unexpected Bath", + "year": 1903, + "cast": [], + "genres": [] + }, + { + "title": "Wait Till Jack Comes Home", + "year": 1903, + "cast": [], + "genres": [] + }, + { + "title": "What Happened in the Tunnel", + "year": 1903, + "cast": [], + "genres": [] + }, + { + "title": "Wiring Pike in a Mill Stream", + "year": 1903, + "cast": [], + "genres": [] + }, + { + "title": "The Workman's Paradise", + "year": 1903, + "cast": [], + "genres": [] + }, + { + "title": "Alligator Farm", + "year": 1904, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Automobile Race", + "year": 1904, + "cast": [], + "genres": [] + }, + { + "title": "The Chicago Fire", + "year": 1904, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Child Stealers", + "year": 1904, + "cast": [], + "genres": [] + }, + { + "title": "Decoyed", + "year": 1904, + "cast": [], + "genres": [] + }, + { + "title": "A Ferry in the Far East", + "year": 1904, + "cast": [], + "genres": [] + }, + { + "title": "Fording a Stream", + "year": 1904, + "cast": [], + "genres": [] + }, + { + "title": "The Great Baltimore Fire", + "year": 1904, + "cast": [], + "genres": [] + }, + { + "title": "High Diving and Reverse", + "year": 1904, + "cast": [], + "genres": [] + }, + { + "title": "Hurdle Jumping", + "year": 1904, + "cast": [], + "genres": [] + }, + { + "title": "An Intelligent Elephant", + "year": 1904, + "cast": [], + "genres": [] + }, + { + "title": "The Monkey Bicyclist", + "year": 1904, + "cast": [], + "genres": [] + }, + { + "title": "Monkey, Dog and Pony Circus", + "year": 1904, + "cast": [], + "genres": [] + }, + { + "title": "Nervy Nat Kisses the Bride", + "year": 1904, + "cast": [], + "genres": [] + }, + { + "title": "A Nigger in the Woodpile", + "year": 1904, + "cast": [], + "genres": [] + }, + { + "title": "Parsifal", + "year": 1904, + "cast": [], + "genres": [] + }, + { + "title": "The Lover's Ruse", + "year": 1904, + "cast": [], + "genres": [] + }, + { + "title": "A Race for a Kiss", + "year": 1904, + "cast": [], + "genres": [] + }, + { + "title": "Raid on a Coiner's Den", + "year": 1904, + "cast": [], + "genres": [] + }, + { + "title": "Revenge!", + "year": 1904, + "cast": [], + "genres": [] + }, + { + "title": "A Railway Tragedy", + "year": 1904, + "cast": [], + "genres": [] + }, + { + "title": "Scarecrow Pump", + "year": 1904, + "cast": [], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Strenuous Life; or, Anti-Race Suicide", + "year": 1904, + "cast": [], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Suburbanite", + "year": 1904, + "cast": [], + "genres": [ + "Comedy" + ] + }, + { + "title": "Westinghouse Works, 1904", + "year": 1904, + "cast": [], + "genres": [] + }, + { + "title": "Adventures of Sherlock Holmes; or, Held for Ransom", + "year": 1905, + "cast": [], + "genres": [] + }, + { + "title": "Airy Fairy Lillian Tries on Her New Corsets", + "year": 1905, + "cast": [], + "genres": [] + }, + { + "title": "A Ballroom Tragedy", + "year": 1905, + "cast": [], + "genres": [] + }, + { + "title": "Burglar Bill", + "year": 1905, + "cast": [], + "genres": [] + }, + { + "title": "Coney Island at Night", + "year": 1905, + "cast": [], + "genres": [] + }, + { + "title": "A Dog Lost, Strayed or Stolen", + "year": 1905, + "cast": [], + "genres": [] + }, + { + "title": "Hippodrome Races, Dreamland, Coney Island", + "year": 1905, + "cast": [], + "genres": [] + }, + { + "title": "Escape from Sing Sing", + "year": 1905, + "cast": [], + "genres": [] + }, + { + "title": "The Green Goods Man; or, Josiah and Samanthy's Experience with the Original 'American Confidence Game'", + "year": 1905, + "cast": [], + "genres": [] + }, + { + "title": "The Great Jewel Mystery", + "year": 1905, + "cast": [], + "genres": [] + }, + { + "title": "I.B. Dam and the Whole Dam Family", + "year": 1905, + "cast": [], + "genres": [] + }, + { + "title": "The Kleptomaniac", + "year": 1905, + "cast": [], + "genres": [] + }, + { + "title": "Impersonation of Britt-Nelson Fight", + "year": 1905, + "cast": [], + "genres": [] + }, + { + "title": "New York Subway", + "year": 1905, + "cast": [], + "genres": [] + }, + { + "title": "The Nihilists", + "year": 1905, + "cast": [], + "genres": [] + }, + { + "title": "Moving Day; or, No Children Allowed", + "year": 1905, + "cast": [], + "genres": [] + }, + { + "title": "License No. 13; or, The Hoodoo Automobile", + "year": 1905, + "cast": [], + "genres": [] + }, + { + "title": "Life of an American Policeman", + "year": 1905, + "cast": [], + "genres": [] + }, + { + "title": "The Little Train Robbery", + "year": 1905, + "cast": [], + "genres": [] + }, + { + "title": "The Night Before Christmas", + "year": 1905, + "cast": [], + "genres": [] + }, + { + "title": "A Kentucky Feud", + "year": 1905, + "cast": [], + "genres": [] + }, + { + "title": "Peeping Tom in the Dressing Room", + "year": 1905, + "cast": [], + "genres": [] + }, + { + "title": "The Newsboy", + "year": 1905, + "cast": [], + "genres": [] + }, + { + "title": "A Policeman's Love Affair", + "year": 1905, + "cast": [], + "genres": [] + }, + { + "title": "The Rat Trap Pickpocket Detector", + "year": 1905, + "cast": [], + "genres": [ + "Comedy" + ] + }, + { + "title": "Reuben in the Opium Joint", + "year": 1905, + "cast": [], + "genres": [] + }, + { + "title": "Raffles the Dog", + "year": 1905, + "cast": [], + "genres": [] + }, + { + "title": "Raffles the Amateur Cracksman", + "year": 1905, + "cast": [], + "genres": [ + "Adventure", + "Romance" + ] + }, + { + "title": "The Seven Ages", + "year": 1905, + "cast": [], + "genres": [] + }, + { + "title": "The Servant Girl Problem", + "year": 1905, + "cast": [], + "genres": [] + }, + { + "title": "The Train Wreckers", + "year": 1905, + "cast": [], + "genres": [] + }, + { + "title": "Tom, Tom, the Piper's Son", + "year": 1905, + "cast": [], + "genres": [] + }, + { + "title": "Watermelon Patch", + "year": 1905, + "cast": [], + "genres": [] + }, + { + "title": "The Whole Dam Family and the Dam Dog", + "year": 1905, + "cast": [], + "genres": [] + }, + { + "title": "The Vanderbilt Auto Race", + "year": 1905, + "cast": [], + "genres": [] + }, + { + "title": "The Automobile Thieves", + "year": 1906, + "cast": [ + "J. Stuart Blackton", + "Florence Lawrence" + ], + "genres": [ + "Short", + "Crime", + "Drama" + ] + }, + { + "title": "Dream of a Rarebit Fiend", + "year": 1906, + "cast": [], + "genres": [ + "Short" + ] + }, + { + "title": "From Leadville to Aspen: A Hold-Up in the Rockies", + "year": 1906, + "cast": [], + "genres": [ + "Short", + "Action", + "Crime", + "Western" + ] + }, + { + "title": "Humorous Phases of Funny Faces", + "year": 1906, + "cast": [ + "J. Stuart Blackton" + ], + "genres": [ + "Short", + "Animated", + "Animated" + ] + }, + { + "title": "Kathleen Mavourneen", + "year": 1906, + "cast": [], + "genres": [ + "Short" + ] + }, + { + "title": "A Trip Down Market Street", + "year": 1906, + "cast": [], + "genres": [ + "Short" + ] + }, + { + "title": "Waiting at the Church", + "year": 1906, + "cast": [], + "genres": [ + "Short" + ] + }, + { + "title": "Amateur Night; or, Get the Hook", + "year": 1907, + "cast": [], + "genres": [] + }, + { + "title": "Ben-Hur", + "year": 1907, + "cast": [ + "William S. Hart" + ], + "genres": [ + "Historical" + ] + }, + { + "title": "Daniel Boone", + "year": 1907, + "cast": [ + "William Craven", + "Florence Lawrence" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "How Brown Saw the Baseball Game", + "year": 1907, + "cast": [ + "Unknown" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Laughing Gas", + "year": 1907, + "cast": [ + "Bertha Regustus", + "Edward Boulden" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Terrible Ted", + "year": 1907, + "cast": [], + "genres": [ + "Short", + "Comedy" + ] + }, + { + "title": "The Tired Tailor's Dream", + "year": 1907, + "cast": [], + "genres": [ + "Short", + "Comedy" + ] + }, + { + "title": "The Adventures of Dollie", + "year": 1908, + "cast": [ + "Arthur V. Johnson", + "Linda Arvidson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Antony and Cleopatra", + "year": 1908, + "cast": [ + "Florence Lawrence", + "William V. Ranous" + ], + "genres": [] + }, + { + "title": "Balked at the Altar", + "year": 1908, + "cast": [ + "Linda Arvidson", + "George Gebhardt" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Bandit's Waterloo", + "year": 1908, + "cast": [ + "Charles Inslee", + "Linda Arvidson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Black Viper", + "year": 1908, + "cast": [ + "D. W. Griffith" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Calamitous Elopement", + "year": 1908, + "cast": [ + "Harry Solter", + "Linda Arvidson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Call of the Wild", + "year": 1908, + "cast": [ + "Charles Inslee" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "A Christmas Carol", + "year": 1908, + "cast": [ + "Tom Ricketts" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Deceived Slumming Party", + "year": 1908, + "cast": [ + "Edward Dillon", + "D. W. Griffith", + "George Gebhardt" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Dr. Jekyll and Mr. Hyde", + "year": 1908, + "cast": [ + "Hobart Bosworth", + "Betty Harte" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Fairylogue and Radio-Plays", + "year": 1908, + "cast": [], + "genres": [ + "Fantasy" + ] + }, + { + "title": "The Fight for Freedom", + "year": 1908, + "cast": [ + "Florence Auer", + "John G. Adolfi" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Macbeth", + "year": 1908, + "cast": [ + "William V. Ranous", + "Paul Panzer" + ], + "genres": [] + }, + { + "title": "Money Mad", + "year": 1908, + "cast": [ + "Charles Inslee", + "George Gebhardt" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Red Man and the Child", + "year": 1908, + "cast": [ + "Charles Inslee", + "John Tansey" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Romeo and Juliet", + "year": 1908, + "cast": [ + "Paul Panzer", + "Florence Lawrence" + ], + "genres": [] + }, + { + "title": "The Taming of the Shrew", + "year": 1908, + "cast": [ + "Florence Lawrence", + "Arthur V. Johnson" + ], + "genres": [] + }, + { + "title": "The Tavern Keeper's Daughter", + "year": 1908, + "cast": [ + "George Gebhardt", + "Florence Auer" + ], + "genres": [ + "Action" + ] + }, + { + "title": "A B C's of the U.S.A.", + "year": 1909, + "cast": [], + "genres": [] + }, + { + "title": "Adventures of a Drummer Boy", + "year": 1909, + "cast": [], + "genres": [] + }, + { + "title": "And a Little Child Shall Lead Them", + "year": 1909, + "cast": [ + "Marion Leonard", + "Arthur V. Johnson" + ], + "genres": [] + }, + { + "title": "At the Altar", + "year": 1909, + "cast": [ + "Marion Leonard" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Boots and Saddles", + "year": 1909, + "cast": [], + "genres": [] + }, + { + "title": "The Brahma Diamond", + "year": 1909, + "cast": [ + "Harry Solter", + "Florence Lawrence" + ], + "genres": [] + }, + { + "title": "A Brave Irish Lass", + "year": 1909, + "cast": [], + "genres": [] + }, + { + "title": "A Burglar's Mistake", + "year": 1909, + "cast": [ + "Harry Solter", + "Charles Inslee" + ], + "genres": [] + }, + { + "title": "C.Q.D.; or, Saved by Wireless; a True Story of the Wreck of the Republic", + "year": 1909, + "cast": [], + "genres": [] + }, + { + "title": "The Castaways", + "year": 1909, + "cast": [], + "genres": [] + }, + { + "title": "Cohen at Coney Island", + "year": 1909, + "cast": [], + "genres": [] + }, + { + "title": "Cohen's Dream", + "year": 1909, + "cast": [], + "genres": [] + }, + { + "title": "A Colonial Romance", + "year": 1909, + "cast": [], + "genres": [] + }, + { + "title": "The Cord of Life[1]", + "year": 1909, + "cast": [ + "Charles Inslee", + "Marion Leonard" + ], + "genres": [] + }, + { + "title": "The Cracker's Bride", + "year": 1909, + "cast": [], + "genres": [] + }, + { + "title": "The Criminal Hypnotist", + "year": 1909, + "cast": [ + "Owen Moore", + "Marion Leonard" + ], + "genres": [] + }, + { + "title": "Cure for Bashfulness", + "year": 1909, + "cast": [], + "genres": [] + }, + { + "title": "The Curtain Pole[1]", + "year": 1909, + "cast": [ + "Mack Sennett" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Daughter of the Sun", + "year": 1909, + "cast": [], + "genres": [] + }, + { + "title": "The Deacon's Love Letters", + "year": 1909, + "cast": [], + "genres": [] + }, + { + "title": "The Deception", + "year": 1909, + "cast": [], + "genres": [] + }, + { + "title": "A Drunkard's Reformation", + "year": 1909, + "cast": [ + "Arthur V. Johnson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Edgar Allan Poe", + "year": 1909, + "cast": [ + "Barry O'Moore", + "Linda Arvidson" + ], + "genres": [] + }, + { + "title": "The Energetic Street Cleaner", + "year": 1909, + "cast": [], + "genres": [] + }, + { + "title": "The Fascinating Mrs. Francis", + "year": 1909, + "cast": [], + "genres": [] + }, + { + "title": "A Fool's Revenge", + "year": 1909, + "cast": [ + "Owen Moore" + ], + "genres": [] + }, + { + "title": "A Friend in the Enemy's Camp", + "year": 1909, + "cast": [], + "genres": [] + }, + { + "title": "The Girls and Daddy[1]", + "year": 1909, + "cast": [ + "Florence Lawrence" + ], + "genres": [] + }, + { + "title": "The Golden Louis", + "year": 1909, + "cast": [], + "genres": [ + "Drama" + ] + }, + { + "title": "The Haunted Lounge", + "year": 1909, + "cast": [], + "genres": [] + }, + { + "title": "The Hindoo Dagger", + "year": 1909, + "cast": [ + "Harry Solter" + ], + "genres": [] + }, + { + "title": "His Ward's Love", + "year": 1909, + "cast": [ + "Arthur V. Johnson" + ], + "genres": [] + }, + { + "title": "His Wife's Mother", + "year": 1909, + "cast": [ + "John R. Cumpson" + ], + "genres": [] + }, + { + "title": "The Honor of the Slums", + "year": 1909, + "cast": [], + "genres": [] + }, + { + "title": "The Honor of Thieves", + "year": 1909, + "cast": [ + "Harry Solter" + ], + "genres": [] + }, + { + "title": "I Did It", + "year": 1909, + "cast": [], + "genres": [] + }, + { + "title": "Jessie, the Stolen Child", + "year": 1909, + "cast": [], + "genres": [] + }, + { + "title": "Jones and His New Neighbors", + "year": 1909, + "cast": [], + "genres": [] + }, + { + "title": "The Joneses Have Amateur Theatricals", + "year": 1909, + "cast": [ + "John R. Cumpson" + ], + "genres": [] + }, + { + "title": "Kenilworth", + "year": 1909, + "cast": [], + "genres": [] + }, + { + "title": "King Lear", + "year": 1909, + "cast": [ + "William V. Ranous" + ], + "genres": [] + }, + { + "title": "The Life of Napoleon", + "year": 1909, + "cast": [], + "genres": [] + }, + { + "title": "Love Finds a Way", + "year": 1909, + "cast": [ + "Anita Hendrie" + ], + "genres": [] + }, + { + "title": "The Love of the Pasha's Son: A Turkish Romance", + "year": 1909, + "cast": [], + "genres": [] + }, + { + "title": "The Lure of the Gown", + "year": 1909, + "cast": [ + "Marion Leonard" + ], + "genres": [] + }, + { + "title": "The Mad Miner", + "year": 1909, + "cast": [], + "genres": [] + }, + { + "title": "The Maniac Cook", + "year": 1909, + "cast": [], + "genres": [] + }, + { + "title": "The Medicine Bottle", + "year": 1909, + "cast": [], + "genres": [] + }, + { + "title": "Midnight Disturbance", + "year": 1909, + "cast": [], + "genres": [] + }, + { + "title": "Mr. Jones Has a Card Party", + "year": 1909, + "cast": [], + "genres": [] + }, + { + "title": "Mrs. Jones Entertains", + "year": 1909, + "cast": [], + "genres": [] + }, + { + "title": "Napoleon and the Empress Josephine", + "year": 1909, + "cast": [], + "genres": [] + }, + { + "title": "The Old Soldier's Story", + "year": 1909, + "cast": [], + "genres": [] + }, + { + "title": "One Touch of Nature", + "year": 1909, + "cast": [], + "genres": [ + "Short", + "Drama" + ] + }, + { + "title": "The Politician's Love Story", + "year": 1909, + "cast": [], + "genres": [] + }, + { + "title": "The Poor Musician", + "year": 1909, + "cast": [], + "genres": [] + }, + { + "title": "The Prussian Spy", + "year": 1909, + "cast": [], + "genres": [] + }, + { + "title": "The Road Agents", + "year": 1909, + "cast": [], + "genres": [] + }, + { + "title": "The Road to the Heart", + "year": 1909, + "cast": [], + "genres": [] + }, + { + "title": "A Rural Elopement", + "year": 1909, + "cast": [], + "genres": [] + }, + { + "title": "The Sacrifice", + "year": 1909, + "cast": [], + "genres": [] + }, + { + "title": "The Salvation Army Lass", + "year": 1909, + "cast": [], + "genres": [] + }, + { + "title": "A Sister's Love: A Tale of the Franco-Prussian War", + "year": 1909, + "cast": [], + "genres": [] + }, + { + "title": "A Sister's Love", + "year": 1909, + "cast": [], + "genres": [] + }, + { + "title": "Tag Day", + "year": 1909, + "cast": [], + "genres": [] + }, + { + "title": "A Tale of the West", + "year": 1909, + "cast": [], + "genres": [] + }, + { + "title": "The Tenderfoot", + "year": 1909, + "cast": [], + "genres": [] + }, + { + "title": "Those Awful Hats", + "year": 1909, + "cast": [ + "Mack Sennett" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Those Boys!", + "year": 1909, + "cast": [], + "genres": [] + }, + { + "title": "Tragic Love", + "year": 1909, + "cast": [], + "genres": [] + }, + { + "title": "Trying to Get Arrested", + "year": 1909, + "cast": [], + "genres": [] + }, + { + "title": "The Voice of the Violin", + "year": 1909, + "cast": [], + "genres": [] + }, + { + "title": "The Welcome Burglar[1]", + "year": 1909, + "cast": [], + "genres": [] + }, + { + "title": "Where Is My Wandering Boy Tonight?", + "year": 1909, + "cast": [], + "genres": [] + }, + { + "title": "The Wooden Leg", + "year": 1909, + "cast": [], + "genres": [] + }, + { + "title": "A Wreath in Time", + "year": 1909, + "cast": [], + "genres": [] + }, + { + "title": "Abraham Lincoln's Clemency", + "year": 1910, + "cast": [ + "Leopold Wharton" + ], + "genres": [] + }, + { + "title": "An Arcadian Maid", + "year": 1910, + "cast": [ + "Mary Pickford", + "Mack Sennett" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "As It Is In Life", + "year": 1910, + "cast": [ + "George Nichols", + "Gladys Egan", + "Mary Pickford" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "A Christmas Carol", + "year": 1910, + "cast": [ + "Marc McDermott", + "Charles Stanton Ogle" + ], + "genres": [] + }, + { + "title": "The Courtship of Miles Standish", + "year": 1910, + "cast": [ + "Robert Z. Leonard" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Englishman and the Girl", + "year": 1910, + "cast": [ + "Charles Craig", + "Mary Pickford" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Frankenstein", + "year": 1910, + "cast": [ + "Augustus Phillips", + "Charles Stanton Ogle", + "Mary Fuller" + ], + "genres": [] + }, + { + "title": "The Fugitive", + "year": 1910, + "cast": [ + "Kate Bruce", + "Edward Dillon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Gentleman Joe", + "year": 1910, + "cast": [ + "Harry Carey" + ], + "genres": [] + }, + { + "title": "Hemlock Hoax, the Detective", + "year": 1910, + "cast": [], + "genres": [ + "Comedy" + ] + }, + { + "title": "The House with Closed Shutters", + "year": 1910, + "cast": [ + "Henry B. Walthall" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "In Old California", + "year": 1910, + "cast": [ + "Frank Powell", + "Arthur V. Johnson", + "Marion Leonard", + "Henry B. Walthall" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "In the Border States", + "year": 1910, + "cast": [ + "Charles West" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Lad from Old Ireland", + "year": 1910, + "cast": [ + "Sidney Olcott", + "Gene Gauntier", + "Thomas O'Connor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Pocahontas", + "year": 1910, + "cast": [ + "Anna Rosemond", + "George Barnes", + "Frank H. Crane" + ], + "genres": [ + "Short", + "Fantasy" + ] + }, + { + "title": "Pride of the Range", + "year": 1910, + "cast": [ + "Tom Mix" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Ramona", + "year": 1910, + "cast": [ + "Mary Pickford", + "Henry B. Walthall" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Rocky Road", + "year": 1910, + "cast": [ + "Frank Powell", + "Stephanie Longfellow" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Roosevelt in Africa", + "year": 1910, + "cast": [ + "Theodore Roosevelt" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Rose O'Salem-Town", + "year": 1910, + "cast": [ + "Henry B. Walthall" + ], + "genres": [ + "Drama", + "Short" + ] + }, + { + "title": "The Sanitarium", + "year": 1910, + "cast": [ + "Fatty Arbuckle" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Two Brothers", + "year": 1910, + "cast": [ + "Arthur V. Johnson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Unchanging Sea", + "year": 1910, + "cast": [ + "Arthur V. Johnson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "What the Daisy Said", + "year": 1910, + "cast": [ + "Clara T. Bracy", + "Mary Pickford", + "Mack Sennett" + ], + "genres": [] + }, + { + "title": "The Woman from Mellon's", + "year": 1910, + "cast": [ + "Billy Quirk", + "Mary Pickford" + ], + "genres": [] + }, + { + "title": "The Wonderful Wizard of Oz", + "year": 1910, + "cast": [ + "Bebe Daniels" + ], + "genres": [] + }, + { + "title": "Baseball and Bloomers", + "year": 1911, + "cast": [ + "William Garwood", + "Marguerite Snow" + ], + "genres": [ + "Silent", + "Sports" + ] + }, + { + "title": "The Black Arrow: A Tale of the Two Roses", + "year": 1911, + "cast": [ + "Charles Ogle", + "Natalie Jerome" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Brown of Harvard", + "year": 1911, + "cast": [ + "Edgar G. Wynn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Cally's Comet", + "year": 1911, + "cast": [ + "William Garwood" + ], + "genres": [] + }, + { + "title": "The Coffin Ship", + "year": 1911, + "cast": [ + "William Garwood" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Colonel and the King", + "year": 1911, + "cast": [ + "Marie Eline", + "William Garwood" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Courting Across the Court", + "year": 1911, + "cast": [ + "William Garwood" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "The Cowboy and the Lady", + "year": 1911, + "cast": [ + "Alan Hale" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Flames and Fortune", + "year": 1911, + "cast": [ + "Marie Eline", + "William Garwood" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "For Her Sake", + "year": 1911, + "cast": [ + "William Garwood" + ], + "genres": [] + }, + { + "title": "Her Awakening", + "year": 1911, + "cast": [ + "Mabel Normand", + "Harry Hyde" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Higher Law", + "year": 1911, + "cast": [ + "William Garwood", + "James Cruze" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "David Copperfield", + "year": 1911, + "cast": [ + "Marie Eline", + "Florence La Badie", + "Mignon Anderson", + "William Russell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "His Trust Fulfilled", + "year": 1911, + "cast": [ + "Wilfred Lucas" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Italian Barber", + "year": 1911, + "cast": [ + "Joseph Graybill", + "Mary Pickford" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Last of the Mohicans", + "year": 1911, + "cast": [ + "James Cruze" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The New Superintendent", + "year": 1911, + "cast": [ + "Herbert Rawlinson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Pasha's Daughter", + "year": 1911, + "cast": [ + "William Garwood" + ], + "genres": [] + }, + { + "title": "Princess Clementina", + "year": 1911, + "cast": [ + "H. B. Irving", + "Alice Young" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Railroad Builder", + "year": 1911, + "cast": [ + "William Garwood" + ], + "genres": [] + }, + { + "title": "The Scarlet Letter", + "year": 1911, + "cast": [ + "King Baggot", + "Lucille Young" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Smuggler", + "year": 1911, + "cast": [ + "William Garwood" + ], + "genres": [] + }, + { + "title": "Sweet Memories", + "year": 1911, + "cast": [ + "Mary Pickford", + "King Baggot" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Tale of Two Cities", + "year": 1911, + "cast": [ + "Maurice Costello", + "Florence Turner" + ], + "genres": [] + }, + { + "title": "That's Happiness", + "year": 1911, + "cast": [ + "William Garwood", + "Bertha Blanchard" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Two Paths", + "year": 1911, + "cast": [ + "Dorothy Bernard", + "Wilfred Lucas" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Voice of the Child", + "year": 1911, + "cast": [ + "Edwin August" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Won by Wireless", + "year": 1911, + "cast": [ + "William Garwood" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "All for a Girl", + "year": 1912, + "cast": [ + "Dorothy Kelly", + "Leah Baird" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "At the Foot of the Ladder", + "year": 1912, + "cast": [ + "Mignon Anderson", + "William Garwood" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "Aurora Floyd", + "year": 1912, + "cast": [ + "William Garwood", + "Florence La Badie", + "Harry Benham" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Baby Hands", + "year": 1912, + "cast": [ + "James Cruze", + "Jean Darnell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Bandit of Tropico", + "year": 1912, + "cast": [ + "Harry von Meter", + "Vivian Rich" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "A Battle of Wits", + "year": 1912, + "cast": [ + "Tom Moore", + "Alice Joyce", + "Earle Foxe" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Belle of Bar-Z Ranch", + "year": 1912, + "cast": [ + "Harry von Meter", + "Vivian Rich" + ], + "genres": [ + "Western" + ] + }, + { + "title": "A Business Buccaneer", + "year": 1912, + "cast": [ + "Tom Moore", + "Alice Joyce" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Charge of the Light Brigade", + "year": 1912, + "cast": [ + "James Gordon", + "Richard Neill" + ], + "genres": [ + "War" + ] + }, + { + "title": "Conductor 786", + "year": 1912, + "cast": [ + "William Garwood", + "Riley Chamberlin", + "Jean Darnell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The County Fair", + "year": 1912, + "cast": [ + "Earle Foxe", + "Alice Joyce" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Cry of the Children", + "year": 1912, + "cast": [ + "Marie Eline", + "Ethel Wright", + "James Cruze", + "." + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Deserter", + "year": 1912, + "cast": [ + "Francis Ford", + "Ethel Grandin" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Eternal Mother", + "year": 1912, + "cast": [ + "Edwin August", + "Blanche Sweet" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dr. Jekyll and Mr. Hyde", + "year": 1912, + "cast": [ + "James Cruze" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "For His Son", + "year": 1912, + "cast": [ + "Charles Hill Mailes" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Frankfurters and Quail", + "year": 1912, + "cast": [ + "William Garwood" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "From the Manger to the Cross", + "year": 1912, + "cast": [ + "Robert Henderson-Bland" + ], + "genres": [] + }, + { + "title": "The Half-Breed's Way", + "year": 1912, + "cast": [ + "Harry von Meter", + "Vivian Rich", + "George Beech" + ], + "genres": [ + "Western" + ] + }, + { + "title": "His Only Son", + "year": 1912, + "cast": [ + "Wallace Reid", + "Dorothy Davenport" + ], + "genres": [ + "Western" + ] + }, + { + "title": "It Happened Thus", + "year": 1912, + "cast": [ + "Charlotte Burton", + "Owen Moore" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "The Land Beyond the Sunset", + "year": 1912, + "cast": [ + "Martin Fuller", + "Mrs. William Bechtel", + "Walter Edwin", + "Bigelow Cooper" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Leap for Love", + "year": 1912, + "cast": [ + "Ethel Wright", + "Frank Hall Crane", + "Rodman Law" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "The Little Girl Next Door", + "year": 1912, + "cast": [ + "William Garwood", + "Marguerite Snow" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Musketeers of Pig Alley", + "year": 1912, + "cast": [ + "Elmer Booth", + "Lillian Gish" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A New Cure for Divorce", + "year": 1912, + "cast": [ + "William Garwood", + "Mignon Anderson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The New York Hat", + "year": 1912, + "cast": [ + "Mary Pickford", + "Lionel Barrymore", + "Lillian Gish" + ], + "genres": [] + }, + { + "title": "The Old Bookkeeper", + "year": 1912, + "cast": [ + "W. Chrystie Miller", + "Blanche Sweet" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Petticoat Camp", + "year": 1912, + "cast": [ + "William Garwood", + "Florence La Badie" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Please Help the Pore", + "year": 1912, + "cast": [ + "William Garwood", + "Riley Chamberlin", + "Mignon Anderson", + "Marie Eline" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Power of Melody", + "year": 1912, + "cast": [ + "Harry von Meter", + "Vivian Rich", + "Eugenie Forde" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Put Yourself in His Place", + "year": 1912, + "cast": [ + "William Garwood", + "Marguerite Snow" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Saved from the Titanic", + "year": 1912, + "cast": [ + "Dorothy Gibson" + ], + "genres": [] + }, + { + "title": "A Six Cylinder Elopement", + "year": 1912, + "cast": [ + "William Garwood", + "Riley Chamberlain", + "Marguerite Snow" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Standing Room Only", + "year": 1912, + "cast": [ + "William Garwood", + "Mignon Anderson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Street Singer", + "year": 1912, + "cast": [ + "Earle Foxe", + "Alice Joyce" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Tell-Tale Message", + "year": 1912, + "cast": [ + "Earle Foxe", + "Hazel Neason", + "Stuart Holmes" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Thunderbolt", + "year": 1912, + "cast": [ + "William Garwood", + "James Cruze", + "David Thompson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "An Unseen Enemy", + "year": 1912, + "cast": [ + "Lillian Gish", + "Dorothy Gish" + ], + "genres": [] + }, + { + "title": "The Voice of Conscience", + "year": 1912, + "cast": [ + "Florence La Badie", + "Jean Darnell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "What Happened to Mary?", + "year": 1912, + "cast": [ + "Mary Fuller", + "Marc McDermott" + ], + "genres": [] + }, + { + "title": "When the Heart Calls", + "year": 1912, + "cast": [ + "Lee Moran", + "Russell Bassett", + "Louise Glaum" + ], + "genres": [ + "Western", + "Comedy" + ] + }, + { + "title": "With the Mounted Police", + "year": 1912, + "cast": [ + "William Garwood", + "Mignon Anderson" + ], + "genres": [ + "Romance", + "Thriller" + ] + }, + { + "title": "The Young Millionaire", + "year": 1912, + "cast": [ + "Earle Foxe", + "Alice Joyce" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Adventures of Kathlyn", + "year": 1913, + "cast": [ + "Kathlyn Williams" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "American Born", + "year": 1913, + "cast": [ + "Sydney Ayres", + "Harry von Meter", + "Charles Cummings" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Article 47, L'", + "year": 1913, + "cast": [ + "William Garwood", + "Victory Bateman", + "Howard Davies" + ], + "genres": [] + }, + { + "title": "Back to Life", + "year": 1913, + "cast": [ + "J. Warren Kerrigan", + "Pauline Bush" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Barney Oldfield's Race for a Life", + "year": 1913, + "cast": [ + "Mack Sennett", + "Mabel Normand", + "Ford Sterling", + "Barney Oldfield" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Beau Brummel", + "year": 1913, + "cast": [ + "James Young", + "Clara Kimball Young" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Beautiful Bismark", + "year": 1913, + "cast": [ + "William Garwood" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Bianca", + "year": 1913, + "cast": [ + "George Cooper" + ], + "genres": [] + }, + { + "title": "Bloodhounds of the North", + "year": 1913, + "cast": [ + "Murdock MacQuarrie", + "Pauline Bush" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Bob's Baby", + "year": 1913, + "cast": [ + "Jean Acker" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Caged Bird", + "year": 1913, + "cast": [ + "William Garwood", + "Marguerite Snow" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Calamity Anne's Beauty", + "year": 1913, + "cast": [ + "Louise Lester" + ], + "genres": [] + }, + { + "title": "Calamity Anne's Dream", + "year": 1913, + "cast": [ + "Louise Lester" + ], + "genres": [] + }, + { + "title": "Calamity Anne's Inheritance", + "year": 1913, + "cast": [ + "Louise Lester" + ], + "genres": [] + }, + { + "title": "Calamity Anne's Vanity", + "year": 1913, + "cast": [ + "Louise Lester" + ], + "genres": [] + }, + { + "title": "Calamity Anne, Heroine", + "year": 1913, + "cast": [ + "Louise Lester" + ], + "genres": [] + }, + { + "title": "Cohen Saves the Flag", + "year": 1913, + "cast": [ + "Ford Sterling", + "Mabel Normand" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Cub Reporter's Temptation", + "year": 1913, + "cast": [ + "Earle Foxe", + "Alice Joyce", + "Tom Moore" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Cupid in a Dental Parlor", + "year": 1913, + "cast": [ + "Fred Mace" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Desperate Chance", + "year": 1913, + "cast": [ + "Earle Foxe", + "Alie Hollister", + "Robert G. Vignola", + "Helen Lidroth", + "Miriam Cooper" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dr. Jekyll and Mr. Hyde", + "year": 1913, + "cast": [ + "King Baggot" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Evidence of the Film", + "year": 1913, + "cast": [ + "William Garwood", + "Marie Eline" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Face at the Window", + "year": 1913, + "cast": [ + "Earle Foxe", + "Irene Boyle", + "Stuart Holmes" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Fire Coward", + "year": 1913, + "cast": [ + "Earle Foxe", + "Irene Boyle" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Flirt and the Bandit", + "year": 1913, + "cast": [], + "genres": [ + "Drama" + ] + }, + { + "title": "For the Crown", + "year": 1913, + "cast": [ + "Charlotte Burton", + "Helen Armstrong", + "J. Warren Kerrigan" + ], + "genres": [] + }, + { + "title": "For the Flag", + "year": 1913, + "cast": [ + "Charlotte Burton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Forest Romance", + "year": 1913, + "cast": [ + "Harry von Meter", + "Mona Darkfeather" + ], + "genres": [] + }, + { + "title": "The Game Warden", + "year": 1913, + "cast": [ + "Earle Foxe", + "Irene Boyle", + "Stuart Holmes" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "The Girl and the Greaser", + "year": 1913, + "cast": [ + "Charlotte Burton", + "J. Warren Kerrigan", + "Louise Lester" + ], + "genres": [] + }, + { + "title": "The Greater Love", + "year": 1913, + "cast": [ + "Charlotte Burton", + "Mabel Brown", + "Edward Coxen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "His Chum the Baron", + "year": 1913, + "cast": [ + "Ford Sterling" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hulda of the Netherlands", + "year": 1913, + "cast": [], + "genres": [] + }, + { + "title": "Hurricane in Galveston", + "year": 1913, + "cast": [], + "genres": [ + "Drama" + ] + }, + { + "title": "In the Secret Service", + "year": 1913, + "cast": [ + "Charles Bartlett" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Justice of the Wild", + "year": 1913, + "cast": [ + "Harry von Meter", + "Mona Darkfeather" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "A Little Hero", + "year": 1913, + "cast": [ + "Mabel Normand", + "Harold Lloyd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Mirror", + "year": 1913, + "cast": [ + "Henry B. Walthall" + ], + "genres": [] + }, + { + "title": "Oil and Water", + "year": 1913, + "cast": [ + "Blanche Sweet", + "Henry B. Walthall", + "Lionel Barrymore" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Old Monk's Tale", + "year": 1913, + "cast": [ + "Ben F. Wilson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Proof of the Man", + "year": 1913, + "cast": [ + "Alexander Gaden", + "Edna Maison" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Quakeress", + "year": 1913, + "cast": [ + "Louise Glaum" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Restless Spirit", + "year": 1913, + "cast": [ + "J. Warren Kerrigan", + "Pauline Bush" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Rose of San Juan", + "year": 1913, + "cast": [ + "Sydney Ayres", + "Charlotte Burton", + "Louise Lester" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Rory o' the Bogs", + "year": 1913, + "cast": [ + "J. Warren Kerrigan" + ], + "genres": [] + }, + { + "title": "Sally Scraggs, Housemaid", + "year": 1913, + "cast": [ + "Robert Z. Leonard", + "Margarita Fischer" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Shoemaker and the Doll", + "year": 1913, + "cast": [ + "William Garwood" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Telephone Girl and the Lady", + "year": 1913, + "cast": [ + "Mae Marsh", + "Claire McDowell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Three Friends", + "year": 1913, + "cast": [ + "Henry B. Walthall", + "Blanche Sweet", + "Lionel Barrymore" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Twelfth Juror", + "year": 1913, + "cast": [ + "Ben F. Wilson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Unto the Third Generation", + "year": 1913, + "cast": [ + "Earle Foxe", + "Florence Lawrence", + "Matt Moore" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "While There's Life", + "year": 1913, + "cast": [ + "Charlotte Burton", + "Jean Durrell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Woman's Honor", + "year": 1913, + "cast": [ + "Charlotte Burton", + "Louise Lester" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Amateur Detective", + "year": 1914, + "cast": [ + "Carey L. Hastings", + "Ernest C. Warde", + "Muriel Ostriche" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Archeologist", + "year": 1914, + "cast": [ + "Charlotte Burton", + "Edward Coxen", + "George Field", + "Winifred Greenwood", + "John Steppling" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "At the Potter's Wheel", + "year": 1914, + "cast": [ + "Charlotte Burton", + "Sydney Ayres", + "Caroline Frances Cooke", + "Louise Lester", + "Jack Richardson", + "Vivian Rich" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Avenging Conscience", + "year": 1914, + "cast": [ + "Henry B. Walthall", + "Blanche Sweet" + ], + "genres": [ + "Drama", + "Horror" + ] + }, + { + "title": "Back to the Farm", + "year": 1914, + "cast": [ + "Herbert Tracey", + "Royal Byron", + "Eloise Willard", + "Mabel Paige", + "Oliver Hardy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Baggage Smasher", + "year": 1914, + "cast": [ + "Fatty Arbuckle" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Bargain", + "year": 1914, + "cast": [ + "William S. Hart", + "J. Barney Sherry", + "Clara Williams" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Barnyard Flirtations", + "year": 1914, + "cast": [ + "Fatty Arbuckle" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Bath House Beauty", + "year": 1914, + "cast": [ + "Fatty Arbuckle" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Battle of the Sexes", + "year": 1914, + "cast": [ + "Donald Crisp", + "Lilian Gish" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Beggar Child", + "year": 1914, + "cast": [ + "Charlotte Burton", + "Edward Coxen", + "George Field", + "Winifred Greenwood", + "John Steppling" + ], + "genres": [] + }, + { + "title": "Between Showers", + "year": 1914, + "cast": [ + "Charlie Chaplin", + "Ford Sterling", + "Chester Conklin" + ], + "genres": [] + }, + { + "title": "Billy's Rival", + "year": 1914, + "cast": [ + "William Garwood", + "Louise Lester", + "Jack Richardson", + "Vivian Rich", + ".", + "Harry von Meter" + ], + "genres": [] + }, + { + "title": "A Blowout at Santa Banana", + "year": 1914, + "cast": [ + "Charlotte Burton", + "Sydney Ayres", + "Louise Lester", + "Jack Richardson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Body in the Trunk", + "year": 1914, + "cast": [ + "William Garwood", + "George Larkin" + ], + "genres": [] + }, + { + "title": "Break, Break, Break", + "year": 1914, + "cast": [ + "B. Reeves Eason", + "William Garwood", + "Louise Lester", + "Jack Richardson", + "Vivian Rich", + "Harry von Meter" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Brewster's Millions", + "year": 1914, + "cast": [ + "Edward Abeles", + "Sydney Deane", + "Joseph Singleton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Brute Force", + "year": 1914, + "cast": [ + "Robert Harron", + "Mae Marsh", + "William J. Butler", + "Wilfred Lucas" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Business Versus Love", + "year": 1914, + "cast": [ + "Edward Coxen", + "Winifred Greenwood", + "Harry von Meter", + "Jack Richardson" + ], + "genres": [] + }, + { + "title": "A Busy Day", + "year": 1914, + "cast": [ + "Charlie Chaplin", + "Mack Swain", + "Phyllis Allen" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Butterfly", + "year": 1914, + "cast": [ + "Charlotte Burton", + "George Field", + "Edward Coxen", + "Edith Borella", + "Jean Durrell", + "Ida Lewis", + "John Steppling" + ], + "genres": [] + }, + { + "title": "Calamity Anne's Love Affair", + "year": 1914, + "cast": [ + "Charlotte Burton", + "Louise Lester", + "George Field", + "Edith Borella", + "B. Reeves Eason" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Call of the North", + "year": 1914, + "cast": [ + "Robert Edeson", + "Theodore Roberts" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Call of the Traumerei", + "year": 1914, + "cast": [ + "Charlotte Burton", + "Sydney Ayres", + "Caroline Frances Cooke", + "Jack Richardson" + ], + "genres": [] + }, + { + "title": "The Cameo of the Yellowstone", + "year": 1914, + "cast": [ + "William Garwood", + "Harry De Vere", + "Louise Lester" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Captain Alvarez", + "year": 1914, + "cast": [ + "Edith Storey", + "William Desmond Taylor", + "George Holt" + ], + "genres": [ + "Historical", + "Drama" + ] + }, + { + "title": "Caught in a Cabaret", + "year": 1914, + "cast": [ + "Charlie Chaplin", + "Mabel Normand", + "Edgar Kennedy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Caught in the Rain", + "year": 1914, + "cast": [ + "Charlie Chaplin", + "Mack Swain", + "Alice Davenport" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Certainty of Man", + "year": 1914, + "cast": [ + "Charlotte Burton", + "Sydney Ayres", + "Chick Morrison" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Chicken Chaser", + "year": 1914, + "cast": [ + "Fatty Arbuckle", + "Gordon Griffith" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Cinderella", + "year": 1914, + "cast": [ + "Mary Pickford", + "Owen Moore", + "Isobel Vernon" + ], + "genres": [ + "Fantasy", + "Drama" + ] + }, + { + "title": "The Cocoon and the Butterfly", + "year": 1914, + "cast": [ + "William Garwood", + "Louise Lester" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Combination of the Safe", + "year": 1914, + "cast": [ + "Earle Foxe" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Coming of the Padres", + "year": 1914, + "cast": [ + "Sydney Ayres", + "Perry Banks", + "Louise Lester" + ], + "genres": [] + }, + { + "title": "Cruel, Cruel Love", + "year": 1914, + "cast": [ + "Charlie Chaplin", + "Edgar Kennedy", + "Minta Durfee" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Damaged Goods", + "year": 1914, + "cast": [ + "Richard Bennett", + "Adrienne Morrison", + "Maude Milton" + ], + "genres": [] + }, + { + "title": "David Gray's Estate", + "year": 1914, + "cast": [ + "Charlotte Burton", + "Sydney Ayres", + "Chick Morrison" + ], + "genres": [] + }, + { + "title": "Destinies Fulfilled", + "year": 1914, + "cast": [ + "Charlotte Burton", + "Sydney Ayres", + "Jacques Jaccard", + "Violet Knights" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Does It End Right?", + "year": 1914, + "cast": [ + "William Garwood", + "Charlotte Burton", + "Louise Lester", + "Vivian Rich" + ], + "genres": [] + }, + { + "title": "Dough and Dynamite", + "year": 1914, + "cast": [ + "Charlie Chaplin", + "Chester Conklin", + "Fritz Schade" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Envoy Extraordinary", + "year": 1914, + "cast": [ + "Jack Nelson", + "Caroline Frances Cooke" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Escape", + "year": 1914, + "cast": [ + "Donald Crisp", + "Blanche Sweet", + "Mae Marsh" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Exploits of Elaine", + "year": 1914, + "cast": [ + "Pearl White", + "Sheldon Lewis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Face on the Bar Room Floor", + "year": 1914, + "cast": [ + "Charles Chaplin", + "Cecile Arnold", + "Fritz Schade" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Fatal Mallet", + "year": 1914, + "cast": [ + "Charles Chaplin", + "Mabel Normand", + "Mack Sennett" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Fate's Decree", + "year": 1914, + "cast": [ + "William Garwood", + "Richard Henry Cummings", + "Billie West" + ], + "genres": [] + }, + { + "title": "Fatty's Magic Pants", + "year": 1914, + "cast": [ + "Fatty Arbuckle", + "Charly Chase" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Feast and Famine", + "year": 1914, + "cast": [ + "B. Reeves Eason", + "William Garwood", + "Harry von Meter" + ], + "genres": [] + }, + { + "title": "A Film Johnnie", + "year": 1914, + "cast": [ + "Charlie Chaplin", + "Fatty Arbuckle", + "Mabel Normand" + ], + "genres": [] + }, + { + "title": "The Final Impulse", + "year": 1914, + "cast": [ + "Charlotte Burton", + "Perry Banks", + "William Bertram", + "Edward Coxen" + ], + "genres": [] + }, + { + "title": "The Floor Above", + "year": 1914, + "cast": [ + "Earle Foxe", + "Henry Walthall", + "Dorothy Gish" + ], + "genres": [ + "Mystery", + "Drama" + ] + }, + { + "title": "A Florida Enchantment", + "year": 1914, + "cast": [ + "Sydney Drew", + "Edith Storey" + ], + "genres": [] + }, + { + "title": "In the Footprints of Mozart", + "year": 1914, + "cast": [ + "Charlotte Burton", + "William Bertram", + "Edith Borella" + ], + "genres": [] + }, + { + "title": "The Forbidden Room", + "year": 1914, + "cast": [ + "Murdock MacQuarrie", + "Pauline Bush" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Gentlemen of Nerve", + "year": 1914, + "cast": [ + "Charlie Chaplin", + "Mabel Normand", + "Chester Conklin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Gertie the Dinosaur", + "year": 1914, + "cast": [ + "Winsor McCay", + "George McManus" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Getting Acquainted", + "year": 1914, + "cast": [ + "Charlie Chaplin", + "Mabel Normand", + "Phyllis Allen" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Ghost Breaker", + "year": 1914, + "cast": [ + "H. B. Warner", + "Rita Stanwood", + "Theodore Roberts" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Girl in the Shack", + "year": 1914, + "cast": [ + "Earle Foxe", + "Spottiswoode Aitken", + "Mae Marsh" + ], + "genres": [] + }, + { + "title": "A Good Little Devil", + "year": 1914, + "cast": [ + "Mary Pickford", + "Ernest Truex", + "David Belasco" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Green-Eyed Devil", + "year": 1914, + "cast": [ + "Spottiswoode Aitken", + "Earle Foxe", + "William Garwood" + ], + "genres": [] + }, + { + "title": "A Happy Coersion", + "year": 1914, + "cast": [ + "Perry Banks", + "William Bertram", + "Jacques Jaccard" + ], + "genres": [] + }, + { + "title": "The Hazards of Helen", + "year": 1914, + "cast": [ + "Helen Holmes" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Her Friend the Bandit", + "year": 1914, + "cast": [ + "Charles Chaplin", + "Mabel Normand", + "Charles Murray" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Her Younger Sister", + "year": 1914, + "cast": [ + "Charlotte Burton", + "Fred Gamble" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "His Faith in Humanity", + "year": 1914, + "cast": [ + "William Garwood", + "Louise Lester" + ], + "genres": [] + }, + { + "title": "His Father's Rifle", + "year": 1914, + "cast": [ + "Earle Foxe", + "Bertram Grassby" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "His Favourite Pastime", + "year": 1914, + "cast": [ + "Charlie Chaplin", + "Fatty Arbuckle", + "Viola Barry" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "His Majesty, the Scarecrow of Oz", + "year": 1914, + "cast": [ + "Violet MacMillan", + "Pierre Couderc" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "His Musical Career", + "year": 1914, + "cast": [ + "Charlie Chaplin", + "Mack Swain", + "Charley Chase" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "His New Profession", + "year": 1914, + "cast": [ + "Charlie Chaplin", + "Charley Chase", + "Fatty Arbuckle" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "His Prehistoric Past", + "year": 1914, + "cast": [ + "Charlie Chaplin", + "Mack Swain", + "Fritz Schade" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "His Trysting Place", + "year": 1914, + "cast": [ + "Charlie Chaplin", + "Mabel Normand" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Home, Sweet Home", + "year": 1914, + "cast": [ + "Earle Foxe", + "Henry B. Walthall", + "Dorothy Gish" + ], + "genres": [ + "Biography", + "Drama" + ] + }, + { + "title": "The Hopes of Blind Alley", + "year": 1914, + "cast": [ + "Murdock MacQuarrie", + "Pauline Bush" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Hunchback", + "year": 1914, + "cast": [ + "F. A. Turner", + "William Garwood", + "Lillian Gish" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Imar the Servitor", + "year": 1914, + "cast": [ + "William Garwood" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "In Tune", + "year": 1914, + "cast": [ + "Charlotte Burton", + "Edward Coxen", + "George Field", + "Winifred Greenwood" + ], + "genres": [] + }, + { + "title": "In the Candlelight", + "year": 1914, + "cast": [ + "William Garwood", + "Charlotte Burton" + ], + "genres": [] + }, + { + "title": "In the Land of the Head Hunters", + "year": 1914, + "cast": [], + "genres": [ + "Documentary", + "Drama" + ] + }, + { + "title": "In the Open", + "year": 1914, + "cast": [ + "William Garwood", + "Louise Lester" + ], + "genres": [] + }, + { + "title": "Jail Birds", + "year": 1914, + "cast": [ + "William Garwood", + "Charlotte Burton" + ], + "genres": [] + }, + { + "title": "Judith of Bethulia", + "year": 1914, + "cast": [ + "Blanche Sweet", + "Henry B. Walthall" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Jungle", + "year": 1914, + "cast": [ + "George Nash", + "Gail Kane", + "Julia Hurley" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Kid Auto Races at Venice", + "year": 1914, + "cast": [ + "Charlie Chaplin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Kiss", + "year": 1914, + "cast": [ + "Ella Margaret Gibson", + "George Holt", + "William Desmond Taylor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Knockout", + "year": 1914, + "cast": [ + "Charlie Chaplin", + "Fatty Arbuckle", + "Edgar Kennedy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Laughing Gas", + "year": 1914, + "cast": [ + "Charlie Chaplin", + "Fritz Schade" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Life of General Villa", + "year": 1914, + "cast": [ + "Pancho Villa", + "Irene Hunt", + "Raoul Walsh" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Little Lord Fauntleroy", + "year": 1914, + "cast": [ + "H. Agar Lyons", + "Fred Eustace", + "Edward Viner" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Little Madonna", + "year": 1914, + "cast": [ + "William Desmond Taylor", + "Patricia Palmer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Livid Flame", + "year": 1914, + "cast": [ + "Earle Foxe", + "Lafe McKee" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Lost Sermon", + "year": 1914, + "cast": [ + "William Garwood", + "Harry De Vere", + "Harry von Meter" + ], + "genres": [] + }, + { + "title": "Love and Bullets", + "year": 1914, + "cast": [ + "Fatty Arbuckle", + "Phyllis Allen", + "Charley Chase" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Lover's Gift", + "year": 1914, + "cast": [ + "Earle Foxe", + "Mary Alden", + "Francelia Billington" + ], + "genres": [] + }, + { + "title": "Lucille Love, Girl of Mystery", + "year": 1914, + "cast": [ + "Grace Cunard", + "Francis Ford", + "Harry Schumm", + "John Ford" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Lure of the Sawdust", + "year": 1914, + "cast": [ + "Charlotte Burton", + "George Field", + "Edward Coxen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Mabel at the Wheel", + "year": 1914, + "cast": [ + "Charlie Chaplin", + "Mabel Normand" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mabel's Blunder", + "year": 1914, + "cast": [ + "Mabel Normand", + "Charly Chase", + "Al St. John" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mabel's Busy Day", + "year": 1914, + "cast": [ + "Charlie Chaplin", + "Mabel Normand" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mabel's Married Life", + "year": 1914, + "cast": [ + "Charlie Chaplin", + "Mabel Normand" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mabel's Strange Predicament", + "year": 1914, + "cast": [ + "Charlie Chaplin", + "Mabel Normand" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Magic Cloak of Oz", + "year": 1914, + "cast": [ + "Juanita Hansen", + "Violet MacMillan", + "Mildred Harris" + ], + "genres": [ + "Fantasy", + "Drama" + ] + }, + { + "title": "Making a Living", + "year": 1914, + "cast": [ + "Charlie Chaplin", + "Virginia Kirtley", + "Alice Davenport" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Man from Home", + "year": 1914, + "cast": [ + "Charles Richman", + "Theodore Roberts", + "Fred Montague" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Man's Way", + "year": 1914, + "cast": [ + "William Garwood", + "Charlotte Burton", + "Louise Lester" + ], + "genres": [] + }, + { + "title": "The Masquerader", + "year": 1914, + "cast": [ + "Charlie Chaplin", + "Fatty Arbuckle" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Master Key", + "year": 1914, + "cast": [ + "Robert Z. Leonard", + "Ella Hall" + ], + "genres": [] + }, + { + "title": "The Master Mind", + "year": 1914, + "cast": [ + "Edmund Breese", + "Fred Montague", + "Jane Darwell" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Mein Lieber Katrina", + "year": 1914, + "cast": [ + "Charlotte Burton", + "George Field", + "Ida Lewis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Michael Strogoff", + "year": 1914, + "cast": [ + "Jacob P. Adler", + "Daniel Makarenko", + "Eleanor Barry" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Mein Lieber Katrina Catches a Convict", + "year": 1914, + "cast": [ + "Charlotte Burton", + "Harry De Vere", + "Perry Banks" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Mystery of the Hindu Image", + "year": 1914, + "cast": [ + "Raoul Walsh", + "Dark Cloud", + "Eagle Eye" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Nature's Touch", + "year": 1914, + "cast": [ + "William Garwood", + "Jack Richardson", + "Louise Lester" + ], + "genres": [] + }, + { + "title": "The Navy Aviator", + "year": 1914, + "cast": [ + "Sydney Ayres", + "Caroline Cooke", + "Jack Richardson" + ], + "genres": [] + }, + { + "title": "Neptune's Daughter", + "year": 1914, + "cast": [ + "Annette Kellerman", + "William E. Shay", + "William Welsh" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "The New Janitor", + "year": 1914, + "cast": [ + "Charlie Chaplin", + "Jess Dandy", + "John T. Dillon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Old Enough to Be Her Grandpa", + "year": 1914, + "cast": [ + "Charlotte Burton", + "William Garwood" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Only Son", + "year": 1914, + "cast": [ + "Jim Blackwell", + "Jane Darwell" + ], + "genres": [] + }, + { + "title": "The Patchwork Girl of Oz", + "year": 1914, + "cast": [ + "Violet MacMillan", + "Pierre Couderc" + ], + "genres": [ + "Fantasy", + "Drama" + ] + }, + { + "title": "The Perils of Pauline", + "year": 1914, + "cast": [ + "Pearl White" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Power of Light", + "year": 1914, + "cast": [ + "Charlotte Burton", + "Sydney Ayres", + "Jacques Jaccard" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Property Man", + "year": 1914, + "cast": [ + "Charlie Chaplin", + "Phyllis Allen", + "Alice Davenport" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Recreation", + "year": 1914, + "cast": [ + "Charles Chaplin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Redbird Wins", + "year": 1914, + "cast": [ + "Perry Banks", + "William Garwood" + ], + "genres": [] + }, + { + "title": "The Redemption of a Pal", + "year": 1914, + "cast": [ + "Edith Borella", + "Charlotte Burton", + "George Field" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Richelieu", + "year": 1914, + "cast": [ + "Murdock MacQuarrie", + "William C. Dowlan" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "The Rose Bush of Memories", + "year": 1914, + "cast": [ + "Earle Foxe", + "Mary Alden", + "Francelia Billington" + ], + "genres": [] + }, + { + "title": "Rose of the Rancho", + "year": 1914, + "cast": [ + "Bessie Barriscale", + "Jane Darwell", + "Jeanie MacPherson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Rosemary, That's for Remembrance", + "year": 1914, + "cast": [ + "Earle Foxe", + "Adda Gleason" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Rounders", + "year": 1914, + "cast": [ + "Charlie Chaplin", + "Fatty Arbuckle", + "Phyllis Allen" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Salomy Jane", + "year": 1914, + "cast": [ + "Beatriz Michelena", + "House Peters" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Samson", + "year": 1914, + "cast": [ + "J. Warren Kerrigan", + "George Periolat", + "Lule Warrenton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Shotgun Jones", + "year": 1914, + "cast": [ + "Wheeler Oakman" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Should a Woman Divorce?", + "year": 1914, + "cast": [ + "Lea Leland", + "Leonid Samoloff" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sir Galahad of Twilight", + "year": 1914, + "cast": [ + "Perry Banks", + "B. Reeves Eason", + "William Garwood" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Sleeping Sentinel", + "year": 1914, + "cast": [], + "genres": [ + "Historical", + "Drama" + ] + }, + { + "title": "A Slice of Life", + "year": 1914, + "cast": [ + "Charlotte Burton", + "Perry Banks" + ], + "genres": [] + }, + { + "title": "The Son of Thomas Gray", + "year": 1914, + "cast": [ + "Virginia Fordyce", + "Sydney Ayres", + "Jacques Jaccard" + ], + "genres": [] + }, + { + "title": "The Song of the Sea Shell", + "year": 1914, + "cast": [ + "Edith Borella", + "Charlotte Burton", + "George Field" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Soul Astray", + "year": 1914, + "cast": [ + "Charlotte Burton", + "William Bertram", + "Edith Borella" + ], + "genres": [] + }, + { + "title": "The Sower Reaps", + "year": 1914, + "cast": [ + "William Garwood", + "Harry von Meter", + "Vivian Rich" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sparrow of the Circus", + "year": 1914, + "cast": [ + "B. Reeves Eason", + "Jack Richardson" + ], + "genres": [] + }, + { + "title": "The Spoilers", + "year": 1914, + "cast": [ + "William Farnum", + "Kathlyn Williams", + "Tom Santschi" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Squaw Man", + "year": 1914, + "cast": [ + "Dustin Farnum" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Star Boarder", + "year": 1914, + "cast": [ + "Charlie Chaplin", + "Minta Durfee", + "Edgar Kennedy", + "Alice Davenport", + "Gordon Griffith" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Story of Little Italy", + "year": 1914, + "cast": [ + "Sydney Ayres", + "Jacques Jaccard", + "Jack Richardson", + "Vivian Rich", + "Harry von Meter" + ], + "genres": [] + }, + { + "title": "The Story of the Olive", + "year": 1914, + "cast": [ + "Sydney Ayres", + "Perry Banks", + "Edith Borella", + "Caroline Cooke", + "Harry von Meter" + ], + "genres": [] + }, + { + "title": "The Strength o' Ten", + "year": 1914, + "cast": [ + "William Garwood", + "Harry von Meter" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Study in Scarlet", + "year": 1914, + "cast": [ + "Francis Ford", + "Grace Cunard", + "John Ford" + ], + "genres": [] + }, + { + "title": "Sweet and Low", + "year": 1914, + "cast": [ + "William Garwood", + "Harry von Meter" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Such a Little Queen", + "year": 1914, + "cast": [ + "Mary Pickford", + "Harold Lockwood" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Taming of Sunnybrook Nell", + "year": 1914, + "cast": [ + "William Garwood", + "Louise Lester", + "B. Reeves Eason" + ], + "genres": [] + }, + { + "title": "Tango Tangles", + "year": 1914, + "cast": [ + "Charlie Chaplin", + "Fatty Arbuckle", + "Ford Sterling" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Telltale Knife", + "year": 1914, + "cast": [ + "Tom Mix", + "Hoot Gibson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Ten of Spades", + "year": 1914, + "cast": [ + "William Garwood", + "Victory Bateman", + "William Lowery", + "Muriel Ostriche" + ], + "genres": [] + }, + { + "title": "Tess of the Storm Country", + "year": 1914, + "cast": [ + "Mary Pickford" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Their Worldly Goods", + "year": 1914, + "cast": [ + "William Garwood", + "Edith Borella", + "Charlotte Burton" + ], + "genres": [] + }, + { + "title": "This Is th' Life", + "year": 1914, + "cast": [ + "Charlotte Burton", + "George Field", + "Edward Coxen", + "Edith Borella", + "John Steppling" + ], + "genres": [] + }, + { + "title": "Those Love Pangs", + "year": 1914, + "cast": [ + "Charlie Chaplin", + "Chester Conklin", + "Cecile Arnold" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Ticket to Red Horse Gulch", + "year": 1914, + "cast": [ + "Belle Bennett", + "William Garwood", + "William Lowery" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Tillie's Punctured Romance", + "year": 1914, + "cast": [ + "Charlie Chaplin", + "Marie Dressler", + "Mabel Normand", + "Keystone Kops" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "To Be Called For", + "year": 1914, + "cast": [ + "Adda Gleason", + "Lafe McKee", + "Earle Foxe" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Town of Nazareth", + "year": 1914, + "cast": [ + "Charlotte Burton", + "William Bertram", + "Albert Cavens", + "Edward Coxen" + ], + "genres": [] + }, + { + "title": "True Western Hearts", + "year": 1914, + "cast": [ + "Sydney Ayres", + "Helen Armstrong", + "Jacques Jaccard" + ], + "genres": [ + "Western" + ] + }, + { + "title": "A Turn of the Cards", + "year": 1914, + "cast": [ + "William Garwood", + "Howard Davies", + "William Lowery" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Twenty Minutes of Love", + "year": 1914, + "cast": [ + "Charlie Chaplin", + "Minta Durfee", + "Edgar Kennedy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Uncle Tom's Cabin (1914 film)", + "year": 1914, + "cast": [ + "Sam Lucas", + "Teresa Michelena", + "Roy Applegate" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Unlawful Trade", + "year": 1914, + "cast": [ + "Pauline Bush", + "William Lloyd" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Unmasking", + "year": 1914, + "cast": [ + "William Garwood", + "Harry De Vere", + "Jack Richardson", + "Vivian Rich" + ], + "genres": [] + }, + { + "title": "Unto the Weak", + "year": 1914, + "cast": [ + "Charlotte Burton", + "William Bertram" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Virginian", + "year": 1914, + "cast": [ + "Dustin Farnum" + ], + "genres": [ + "Western" + ] + }, + { + "title": "What's His Name", + "year": 1914, + "cast": [ + "Max Figman", + "Lolita Robertson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "When a Woman Waits", + "year": 1914, + "cast": [ + "Charlotte Burton", + "Bessie Banks" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Widow's Investment", + "year": 1914, + "cast": [ + "Charlotte Burton", + "Sydney Ayres", + "Chick Morrison" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Wildflower", + "year": 1914, + "cast": [ + "Marguerite Clark", + "Harold Lockwood" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Wishing Ring", + "year": 1914, + "cast": [ + "Vivian Martin", + "Alec B. Francis", + "Chester Barnett" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Wrath of the Gods", + "year": 1914, + "cast": [ + "Sessue Hayakawa", + "Tsuru Aoki", + "Frank Borzage" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Wrong Birds", + "year": 1914, + "cast": [ + "Edith Borella", + "Charlotte Burton", + "George Field", + "Edward Coxen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "After Five", + "year": 1915, + "cast": [ + "Edward Abeles", + "Sessue Hayakawa" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "After the Storm", + "year": 1915, + "cast": [ + "Vivian Rich", + "Harry von Meter" + ], + "genres": [] + }, + { + "title": "Anna Karenina", + "year": 1915, + "cast": [ + "Betty Nansen", + "and", + "Edward José" + ], + "genres": [ + "Historical", + "Drama" + ] + }, + { + "title": "The Arab", + "year": 1915, + "cast": [ + "Edgar Selwyn", + "Horace B. Carpenter" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Assayer of Lone Gap", + "year": 1915, + "cast": [ + "Perry Banks", + "Louise Lester" + ], + "genres": [] + }, + { + "title": "Auntie's Portrait", + "year": 1915, + "cast": [ + "Sidney Drew", + "Ethel Lee" + ], + "genres": [ + "Comedy", + "Short" + ] + }, + { + "title": "The Barren Gain", + "year": 1915, + "cast": [ + "Charlotte Burton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Beachcomber", + "year": 1915, + "cast": [ + "Hobart Bosworth" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Beyond His Fondest Hopes", + "year": 1915, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Birth of a Nation", + "year": 1915, + "cast": [ + "Lillian Gish", + "Mae Marsh" + ], + "genres": [] + }, + { + "title": "The Blot on the Shield", + "year": 1915, + "cast": [ + "Dick La Reno", + "Vivian Rich" + ], + "genres": [] + }, + { + "title": "The Bluffers", + "year": 1915, + "cast": [ + "Vivian Rich", + "Gayne Whitman" + ], + "genres": [] + }, + { + "title": "Buckshot John", + "year": 1915, + "cast": [ + "Hobart Bosworth" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Bughouse Bellhops", + "year": 1915, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Burlesque on Carmen", + "year": 1915, + "cast": [ + "Charles Chaplin", + "Edna Purviance" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Captive", + "year": 1915, + "cast": [ + "Blanche Sweet", + "House Peters" + ], + "genres": [ + "Historical" + ] + }, + { + "title": "Carmen", + "year": 1915, + "cast": [ + "Geraldine Farrar", + "Wallace Reid" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Carmen", + "year": 1915, + "cast": [ + "Theda Bara" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Champion", + "year": 1915, + "cast": [ + "Charles Chaplin" + ], + "genres": [ + "Comedy", + "Short" + ] + }, + { + "title": "The Cheat", + "year": 1915, + "cast": [ + "Fannie Ward", + "Sessue Hayakawa" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Chimmie Fadden", + "year": 1915, + "cast": [ + "Victor Moore" + ], + "genres": [ + "Comedy", + "Western" + ] + }, + { + "title": "Chimmie Fadden Out West", + "year": 1915, + "cast": [ + "Victor Moore" + ], + "genres": [ + "Comedy", + "Western" + ] + }, + { + "title": "The Chorus Lady", + "year": 1915, + "cast": [ + "Cleo Ridgely", + "Marjorie Daw" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Christmas Memories", + "year": 1915, + "cast": [ + "Delmer Daves", + "Robert Z. Leonard" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Close-Cropped Clippings", + "year": 1915, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Commuters", + "year": 1915, + "cast": [ + "Irene Fenwick" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Competition", + "year": 1915, + "cast": [ + "Charlotte Burton" + ], + "genres": [] + }, + { + "title": "Court House Crooks", + "year": 1915, + "cast": [ + "Ford Sterling", + "Charles Arling" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "David Harum", + "year": 1915, + "cast": [ + "William H. Crane", + "May Allison" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "The Day of Reckoning", + "year": 1915, + "cast": [ + "Vivian Rich", + "David Lythgoe" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Double Trouble", + "year": 1915, + "cast": [ + "Douglas Fairbanks", + "Margery Wilson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Drawing the Line", + "year": 1915, + "cast": [ + "Lillian Buckingham" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Enoch Arden", + "year": 1915, + "cast": [ + "Alfred Paget", + "Lillian Gish" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Exile of Bar-K Ranch", + "year": 1915, + "cast": [ + "Jack Richardson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Fatty's Tintype Tangle", + "year": 1915, + "cast": [ + "Fatty Arbuckle" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Fool There Was", + "year": 1915, + "cast": [ + "Theda Bara", + "Edward Jose" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Foozle at the Tee Party", + "year": 1915, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Four Feathers", + "year": 1915, + "cast": [ + "Edgar L. Davenport", + "Fuller Mellish" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "From Italy's Shores", + "year": 1915, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Fresh from the Farm", + "year": 1915, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Girl of the Golden West", + "year": 1915, + "cast": [ + "Mabel Van Buren" + ], + "genres": [ + "Western" + ] + }, + { + "title": "A Girl of Yesterday", + "year": 1915, + "cast": [ + "Mary Pickford", + "Jack Pickford" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Giving Them Fits", + "year": 1915, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Golden Chance", + "year": 1915, + "cast": [ + "Cleo Ridgely", + "Wallace Reid" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Good Business Deal", + "year": 1915, + "cast": [ + "Jack Richardson" + ], + "genres": [] + }, + { + "title": "Great While It Lasted", + "year": 1915, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hearts in Shadow", + "year": 1915, + "cast": [ + "Louise Lester" + ], + "genres": [] + }, + { + "title": "His New Job", + "year": 1915, + "cast": [ + "Charlie Chaplin", + "Ben Turpin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Honor of the District Attorney", + "year": 1915, + "cast": [ + "Vivian Rich" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Hungry Actors", + "year": 1915, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Immigrant", + "year": 1915, + "cast": [ + "Valeska Suratt" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "In The Park", + "year": 1915, + "cast": [ + "Charlie Chaplin", + "Leo White", + "Edna Purviance" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "In Trust", + "year": 1915, + "cast": [ + "Bessie Banks", + "Perry Banks" + ], + "genres": [] + }, + { + "title": "Inspiration", + "year": 1915, + "cast": [ + "Audrey Munson", + "Thomas A. Curran" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Italian", + "year": 1915, + "cast": [ + "George Beban", + "Clara Williams" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Judge Not; or The Woman of Mona Diggings", + "year": 1915, + "cast": [ + "Julia Dean", + "Harry Carter" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Just Nuts", + "year": 1915, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Kindling", + "year": 1915, + "cast": [], + "genres": [] + }, + { + "title": "Lady Audley's Secret", + "year": 1915, + "cast": [ + "Theda Bara", + "Riley Hatch" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Lamb", + "year": 1915, + "cast": [ + "Douglas Fairbanks Sr.", + "Seena Owen" + ], + "genres": [] + }, + { + "title": "The Little Lady Next Door", + "year": 1915, + "cast": [ + "Perry Banks", + "Louise Lester" + ], + "genres": [] + }, + { + "title": "Lonesome Luke, Social Gangster", + "year": 1915, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Love, Loot and Crash", + "year": 1915, + "cast": [ + "Charley Chase", + "Dora Rodgers" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mabel and Fatty Viewing the World's Fair at San Francisco", + "year": 1915, + "cast": [ + "Mabel Normand", + "Fatty Arbuckle" + ], + "genres": [] + }, + { + "title": "The Man from Texas", + "year": 1915, + "cast": [ + "Tom Mix" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Martyrs of the Alamo", + "year": 1915, + "cast": [ + "Sam De Grasse" + ], + "genres": [ + "Historical" + ] + }, + { + "title": "A Mixup for Mazie", + "year": 1915, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mountain Mary", + "year": 1915, + "cast": [ + "Louise Lester" + ], + "genres": [] + }, + { + "title": "The Newer Way", + "year": 1915, + "cast": [ + "Joseph Galbraith" + ], + "genres": [] + }, + { + "title": "Peculiar Patients' Pranks", + "year": 1915, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Pete, the Pedal Polisher", + "year": 1915, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Poet of the Peaks", + "year": 1915, + "cast": [ + "Louise Lester" + ], + "genres": [] + }, + { + "title": "Pool Sharks", + "year": 1915, + "cast": [ + "W. C. Fields" + ], + "genres": [ + "Comedy", + "Short" + ] + }, + { + "title": "The Pretty Sister of Jose", + "year": 1915, + "cast": [ + "Marguerite Clark", + "Jack Pickford" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Profit from Loss", + "year": 1915, + "cast": [ + "Vivian Rich" + ], + "genres": [] + }, + { + "title": "A Question of Honor", + "year": 1915, + "cast": [ + "Jack Richardson" + ], + "genres": [] + }, + { + "title": "Ragtime Snap Shots", + "year": 1915, + "cast": [ + "Harold Lloyd" + ], + "genres": [] + }, + { + "title": "The Raven", + "year": 1915, + "cast": [ + "Henry Walthall" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Regeneration", + "year": 1915, + "cast": [ + "Rockliffe Fellowes", + "Anna Q. Nilsson" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Ring of Destiny", + "year": 1915, + "cast": [ + "Cleo Madison", + "Hoot Gibson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Ruses, Rhymes and Roughnecks", + "year": 1915, + "cast": [ + "Harold Lloyd" + ], + "genres": [] + }, + { + "title": "She Walketh Alone", + "year": 1915, + "cast": [], + "genres": [] + }, + { + "title": "Should a Wife Forgive?", + "year": 1915, + "cast": [ + "Lillian Lorraine", + "Henry King" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Silver Lining", + "year": 1915, + "cast": [ + "Gayne Whitman", + "Vivian Rich" + ], + "genres": [] + }, + { + "title": "A Small Town Girl", + "year": 1915, + "cast": [ + "Pauline Bush", + "William Lloyd", + "Lon Chaney" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Smuggler's Cave", + "year": 1915, + "cast": [ + "Jack Richardson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Solution to the Mystery", + "year": 1915, + "cast": [ + "Vivian Rich" + ], + "genres": [] + }, + { + "title": "Some Baby", + "year": 1915, + "cast": [ + "Harold Lloyd" + ], + "genres": [] + }, + { + "title": "The Soul of Broadway", + "year": 1915, + "cast": [ + "Valeska Suratt" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Spirit of Adventure", + "year": 1915, + "cast": [ + "Jack Richardson" + ], + "genres": [] + }, + { + "title": "Spit-Ball Sadie", + "year": 1915, + "cast": [ + "Harold Lloyd" + ], + "genres": [] + }, + { + "title": "Stingaree", + "year": 1915, + "cast": [ + "True Boardman" + ], + "genres": [] + }, + { + "title": "A Submarine Pirate", + "year": 1915, + "cast": [ + "Syd Chaplin", + "Wesley Ruggles" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Substitute Minister", + "year": 1915, + "cast": [ + "Vivian Rich" + ], + "genres": [] + }, + { + "title": "Temptation", + "year": 1915, + "cast": [ + "Geraldine Farrar", + "Theodore Roberts" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Terribly Stuck Up", + "year": 1915, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Their Social Splash", + "year": 1915, + "cast": [ + "Slim Summerville", + "Harold Lloyd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Tinkering with Trouble", + "year": 1915, + "cast": [ + "Harold Lloyd", + "Snub Pollard" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "To Melody a Soul Responds", + "year": 1915, + "cast": [ + "Ashton Dearholt" + ], + "genres": [] + }, + { + "title": "To Rent Furnished", + "year": 1915, + "cast": [ + "Bessie Banks" + ], + "genres": [] + }, + { + "title": "The Toast of Death", + "year": 1915, + "cast": [ + "Louise Glaum" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Tramp", + "year": 1915, + "cast": [ + "Charles Chaplin" + ], + "genres": [ + "Comedy", + "Short" + ] + }, + { + "title": "The Two Orphans", + "year": 1915, + "cast": [ + "Theda Bara" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Unafraid", + "year": 1915, + "cast": [ + "Rita Jolivet", + "House Peters" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Vampire (1915 film)", + "year": 1915, + "cast": [ + "Olga Petrova" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Warrens of Virginia", + "year": 1915, + "cast": [ + "Blanche Sweet", + "James Neill" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Wasp", + "year": 1915, + "cast": [ + "Vivian Rich" + ], + "genres": [] + }, + { + "title": "The Wild Goose Chase", + "year": 1915, + "cast": [ + "Ina Claire", + "Lucien Littlefield" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Willie Runs the Park", + "year": 1915, + "cast": [ + "Harold Lloyd", + "Jane Novak" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Work", + "year": 1915, + "cast": [ + "Charles Chaplin", + "Edna Purviance" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "20,000 Leagues Under the Sea", + "year": 1916, + "cast": [ + "Lois Alexander", + "Curtis Benton", + "Wallace Clarke", + "Allen Holubar" + ], + "genres": [ + "Action", + "Adventure" + ] + }, + { + "title": "A La Cabaret", + "year": 1916, + "cast": [ + "Ora Carew", + "Joseph Belmont", + "Blanche Payson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Abandonment", + "year": 1916, + "cast": [ + "Forrest Taylor", + "Harry von Meter", + "Helene Rosson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "American Aristocracy", + "year": 1916, + "cast": [ + "Douglas Fairbanks", + "Jewel Carmen" + ], + "genres": [ + "Adventure", + "Comedy" + ] + }, + { + "title": "The Americano", + "year": 1916, + "cast": [ + "Douglas Fairbanks" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Arthur's Desperate Resolve", + "year": 1916, + "cast": [ + "William Garwood", + "Lois Wilson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Aryan", + "year": 1916, + "cast": [ + "William S. Hart", + "Louise Glaum", + "Bessie Love" + ], + "genres": [ + "Western", + "Drama" + ] + }, + { + "title": "Behind the Screen", + "year": 1916, + "cast": [ + "Charlie Chaplin", + "Edna Purviance", + "Eric Campbell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Betty of Greystone", + "year": 1916, + "cast": [ + "Dorothy Gish", + "Owen Moore" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Billy's War Brides", + "year": 1916, + "cast": [ + "William Garwood", + "Sonia Marcelle", + "Molly Gilmore" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Broken Cross", + "year": 1916, + "cast": [ + "Harold Lockwood", + "May Allison" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Bondman", + "year": 1916, + "cast": [ + "William Farnum", + "Dorothy Bernard", + "L.O. Hart" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Broken Fetters", + "year": 1916, + "cast": [ + "Kittens Reichert", + "Violet Mersereau" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Bruiser", + "year": 1916, + "cast": [ + "Charlotte Burton", + "William Russell", + "George Ferguson", + "Lizette Thorne" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Children in the House", + "year": 1916, + "cast": [ + "Norma Talmadge", + "Eugene Pallette" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Civilization", + "year": 1916, + "cast": [ + "Howard C. Hickman", + "Enid Markey", + "George Fisher" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Count", + "year": 1916, + "cast": [ + "Charlie Chaplin", + "Edna Purviance", + "Eric Campbell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Craving", + "year": 1916, + "cast": [ + "Charlotte Burton", + "William Russell", + "Helene Rosson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Curse of Quon Gwon", + "year": 1916, + "cast": [], + "genres": [ + "Drama" + ] + }, + { + "title": "A Daughter of the Gods", + "year": 1916, + "cast": [ + "Annette Kellerman", + "Hal De Forrest" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Decoy", + "year": 1916, + "cast": [ + "William Garwood", + "Edward Brady", + "Lois Wilson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Divorce and the Daughter", + "year": 1916, + "cast": [ + "Florence La Badie", + "Edwin Stanley", + "Ethelmary Oakland" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Dream Girl", + "year": 1916, + "cast": [ + "Mae Murray", + "Theodore Roberts", + "Earle Foxe" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dulcie's Adventure", + "year": 1916, + "cast": [ + "Mary Miles Minter", + "Bessie Banks", + "Marie Van Tassell", + "Harry von Meter" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Energetic Eva", + "year": 1916, + "cast": [ + "Eva Tanguay" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Fatal Glass of Beer", + "year": 1916, + "cast": [ + "Elmo Lincoln", + "Tully Marshall" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Fate of the Dolphin", + "year": 1916, + "cast": [ + "Perry Banks", + "Edward Coxen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Fatty and Mabel Adrift", + "year": 1916, + "cast": [ + "Roscoe \"Fatty\" Arbuckle", + "Mabel Normand" + ], + "genres": [ + "Short", + "Comedy" + ] + }, + { + "title": "Felix on the Job", + "year": 1916, + "cast": [ + "Lon Chaney" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Fireman", + "year": 1916, + "cast": [ + "Charlie Chaplin", + "Edna Purviance", + "Lloyd Bacon" + ], + "genres": [ + "Short", + "Comedy" + ] + }, + { + "title": "The Floorwalker", + "year": 1916, + "cast": [ + "Charlie Chaplin", + "Edna Purviance", + "Eric Campbell", + "Lloyd Bacon" + ], + "genres": [ + "Short", + "Comedy" + ] + }, + { + "title": "The Gamble", + "year": 1916, + "cast": [ + "Harold Lockwood", + "May Allison" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Gentle Art of Burglary", + "year": 1916, + "cast": [ + "William Garwood", + "Violet Mersereau" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Going Straight", + "year": 1916, + "cast": [ + "Norma Talmadge", + "Ralph Lewis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Good Bad Man", + "year": 1916, + "cast": [ + "Douglas Fairbanks", + "Sam De Grasse" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Gretchen the Greenhorn", + "year": 1916, + "cast": [ + "Dorothy Gish", + "Ralph Lewis", + "Elmo Lincoln" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Grey Sisterhood", + "year": 1916, + "cast": [ + "William Garwood", + "Stella LeSaint", + "Ogden Crane" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Habit of Happiness", + "year": 1916, + "cast": [ + "Douglas Fairbanks", + "George Fawcett" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Half-Breed", + "year": 1916, + "cast": [ + "Douglas Fairbanks", + "Alma Rubens", + "Sam De Grasse" + ], + "genres": [ + "Western" + ] + }, + { + "title": "He Wrote a Book", + "year": 1916, + "cast": [ + "William Garwood", + "Edward Brady" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Heart of Nora Flynn", + "year": 1916, + "cast": [ + "Marie Doro", + "Elliott Dexter" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hell's Hinges", + "year": 1916, + "cast": [ + "William S. Hart", + "Clara Williams" + ], + "genres": [] + }, + { + "title": "The Highest Bid", + "year": 1916, + "cast": [ + "William Russell", + "Charlotte Burton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "His Picture", + "year": 1916, + "cast": [ + "William Garwood", + "Violet Mersereau", + "Clara Beyers" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hoodoo Ann", + "year": 1916, + "cast": [ + "Mae Marsh", + "Robert Harron" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Hulda from Holland", + "year": 1916, + "cast": [ + "Mary Pickford", + "Frank Losee" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Innocent Lie", + "year": 1916, + "cast": [ + "Valentine Grant", + "Jack J. Clark" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "An Innocent Magdalene", + "year": 1916, + "cast": [ + "Lillian Gish", + "Spottiswoode Aitken" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Intolerance", + "year": 1916, + "cast": [ + "Mae Marsh", + "Robert Harron", + "Constance Talmadge", + "Lillian Gish" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Joan the Woman", + "year": 1916, + "cast": [ + "Geraldine Farrar" + ], + "genres": [ + "Historical" + ] + }, + { + "title": "La Bohème", + "year": 1916, + "cast": [ + "Alice Brady", + "Paul Capellani" + ], + "genres": [ + "Historical", + "Drama" + ] + }, + { + "title": "The League of the Future", + "year": 1916, + "cast": [ + "William Garwood" + ], + "genres": [] + }, + { + "title": "Let Katy Do It", + "year": 1916, + "cast": [ + "Jane Grey", + "Tully Marshall" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Lights of New York", + "year": 1916, + "cast": [ + "Leah Baird", + "Walter McGrail", + "Adele DeGarde" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Lillo of the Sulu Seas", + "year": 1916, + "cast": [ + "Harold Lockwood", + "May Allison" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Little Eve Edgarton", + "year": 1916, + "cast": [ + "Ella Hall", + "Doris Pawn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Lonesome Luke Leans to the Literary", + "year": 1916, + "cast": [ + "Harold Lloyd", + "Bebe Daniels" + ], + "genres": [ + "Short", + "Comedy" + ] + }, + { + "title": "Lonesome Luke Lolls in Luxury", + "year": 1916, + "cast": [ + "Harold Lloyd", + "Bebe Daniels" + ], + "genres": [ + "Short", + "Comedy" + ] + }, + { + "title": "Lonesome Luke, Circus King", + "year": 1916, + "cast": [ + "Harold Lloyd", + "Bebe Daniels" + ], + "genres": [ + "Short", + "Comedy" + ] + }, + { + "title": "The Love Girl", + "year": 1916, + "cast": [ + "Ella Hall", + "Adele Farrington" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Love Hermit", + "year": 1916, + "cast": [ + "William Russell", + "Charlotte Burton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Luke and the Bang-Tails", + "year": 1916, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Short", + "Comedy" + ] + }, + { + "title": "Luke and the Bomb Throwers", + "year": 1916, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Short", + "Comedy" + ] + }, + { + "title": "Luke and the Mermaids", + "year": 1916, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Short", + "Comedy" + ] + }, + { + "title": "Luke and the Rural Roughnecks", + "year": 1916, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Short", + "Comedy" + ] + }, + { + "title": "Luke Does the Midway", + "year": 1916, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Short", + "Comedy" + ] + }, + { + "title": "Luke Foils the Villain", + "year": 1916, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Short", + "Comedy" + ] + }, + { + "title": "Luke Joins the Navy", + "year": 1916, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Short", + "Comedy" + ] + }, + { + "title": "Luke Laughs Last", + "year": 1916, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Short", + "Comedy" + ] + }, + { + "title": "Luke Locates the Loot", + "year": 1916, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Short", + "Comedy" + ] + }, + { + "title": "Luke Lugs Luggage", + "year": 1916, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Short", + "Comedy" + ] + }, + { + "title": "Luke Pipes the Pippins", + "year": 1916, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Short", + "Comedy" + ] + }, + { + "title": "Luke Rides Roughshod", + "year": 1916, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Short", + "Comedy" + ] + }, + { + "title": "Luke, Crystal Gazer", + "year": 1916, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Short", + "Comedy" + ] + }, + { + "title": "Luke, Patient Provider", + "year": 1916, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Short", + "Comedy" + ] + }, + { + "title": "Luke, Rank Impersonator", + "year": 1916, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Short", + "Comedy" + ] + }, + { + "title": "Luke, the Candy Cut-Up", + "year": 1916, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Short", + "Comedy" + ] + }, + { + "title": "Luke, the Chauffeur", + "year": 1916, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Short", + "Comedy" + ] + }, + { + "title": "Luke, the Gladiator", + "year": 1916, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Short", + "Comedy" + ] + }, + { + "title": "Luke's Double", + "year": 1916, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Short", + "Comedy" + ] + }, + { + "title": "Luke's Fatal Flivver", + "year": 1916, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Short", + "Comedy" + ] + }, + { + "title": "Luke's Fireworks Fizzle", + "year": 1916, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Short", + "Comedy" + ] + }, + { + "title": "Luke's Late Lunchers", + "year": 1916, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Short", + "Comedy" + ] + }, + { + "title": "Luke's Lost Lamb", + "year": 1916, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Short", + "Comedy" + ] + }, + { + "title": "Luke's Movie Muddle", + "year": 1916, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Short", + "Comedy" + ] + }, + { + "title": "Luke's Newsie Knockout", + "year": 1916, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Short", + "Comedy" + ] + }, + { + "title": "Luke's Preparedness Preparations", + "year": 1916, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Short", + "Comedy" + ] + }, + { + "title": "Luke's Shattered Sleep", + "year": 1916, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Short", + "Comedy" + ] + }, + { + "title": "Luke's Society Mixup", + "year": 1916, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Short", + "Comedy" + ] + }, + { + "title": "Luke's Speedy Club Life", + "year": 1916, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Short", + "Comedy" + ] + }, + { + "title": "Luke's Washful Waiting", + "year": 1916, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Short", + "Comedy" + ] + }, + { + "title": "Macbeth", + "year": 1916, + "cast": [ + "Herbert Beerbohm Tree", + "Constance Collier", + "Wilfred Lucas" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Madame X", + "year": 1916, + "cast": [ + "Dorothy Donnelly", + "John Bowers" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Man Who Would Not Die", + "year": 1916, + "cast": [ + "Charlotte Burton", + "Harry Keenan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Man in the Sombrero", + "year": 1916, + "cast": [ + "Harold Lockwood", + "May Allison", + "William Stowell" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "Manhattan Madness", + "year": 1916, + "cast": [ + "Douglas Fairbanks", + "Jewel Carmen" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Maria Rosa", + "year": 1916, + "cast": [ + "Geraldine Farrar", + "Wallace Reid" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Martha's Vindication", + "year": 1916, + "cast": [ + "Norma Talmadge", + "Seena Owen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Matching Dreams", + "year": 1916, + "cast": [ + "Sylvia Ashton", + "Vivian Rich" + ], + "genres": [ + "Short", + "Comedy" + ] + }, + { + "title": "A Message to Garcia", + "year": 1916, + "cast": [ + "Mabel Trunnelle", + "Charles Sutton" + ], + "genres": [] + }, + { + "title": "The Missing Links", + "year": 1916, + "cast": [ + "Thomas Jefferson", + "Elmer Clifton", + "Robert Harron" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Moonshiners", + "year": 1916, + "cast": [ + "Joe Bordeaux", + "J. Herbert Frank" + ], + "genres": [ + "Short", + "Comedy" + ] + }, + { + "title": "Oliver Twist", + "year": 1916, + "cast": [ + "Marie Doro", + "Tully Marshall" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "One A.M.", + "year": 1916, + "cast": [ + "Charlie Chaplin" + ], + "genres": [ + "Short", + "Comedy" + ] + }, + { + "title": "The Other Side of the Door", + "year": 1916, + "cast": [ + "Harold Lockwood", + "May Allison" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "The Pawnshop", + "year": 1916, + "cast": [ + "Charlie Chaplin", + "Edna Purviance", + "Henry Bergman" + ], + "genres": [ + "Short", + "Comedy" + ] + }, + { + "title": "Pay Dirt", + "year": 1916, + "cast": [ + "Henry King", + "Marguerite Nichols" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Plow Girl", + "year": 1916, + "cast": [ + "Mae Murray", + "Elliott Dexter" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Police", + "year": 1916, + "cast": [ + "Charlie Chaplin", + "Edna Purviance", + "Wesley Ruggles" + ], + "genres": [ + "Short", + "Comedy" + ] + }, + { + "title": "Ramona", + "year": 1916, + "cast": [ + "Adda Gleason", + "Mabel Van Buren", + "Ann Dvorak" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Release of Dan Forbes", + "year": 1916, + "cast": [ + "Helene Rosson", + "William Stowell", + "Harry von Meter" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Rink", + "year": 1916, + "cast": [ + "Charlie Chaplin", + "Edna Purviance" + ], + "genres": [ + "Short", + "Comedy" + ] + }, + { + "title": "A Sanitarium Scramble", + "year": 1916, + "cast": [ + "Sylvia Ashton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Secret Love", + "year": 1916, + "cast": [ + "Jack Curtis", + "Helen Ware" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Secret Wire", + "year": 1916, + "cast": [ + "Harold Lockwood", + "May Allison" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Sequel to the Diamond from the Sky", + "year": 1916, + "cast": [ + "William Russell", + "Dodo Newton" + ], + "genres": [] + }, + { + "title": "Shadows", + "year": 1916, + "cast": [ + "Frank Mayo" + ], + "genres": [] + }, + { + "title": "Sherlock Holmes", + "year": 1916, + "cast": [ + "William Gillette", + "Edward Fielding" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "A Sister of Six", + "year": 1916, + "cast": [ + "Ben Lewis", + "Bessie Love" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Smugglers of Santa Cruz", + "year": 1916, + "cast": [ + "Charlotte Burton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Snow White", + "year": 1916, + "cast": [ + "Marguerite Clark" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "A Society Sherlock", + "year": 1916, + "cast": [ + "William Garwood", + "Irma Dawkins" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Soul at Stake", + "year": 1916, + "cast": [ + "Andrew Arbuckle", + "Lois Wilson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Soul's Cycle", + "year": 1916, + "cast": [ + "Patricia Palmer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Stampede in the Night", + "year": 1916, + "cast": [ + "Hoot Gibson", + "Olive Carey" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Stepping Stone", + "year": 1916, + "cast": [ + "Frank Keenan", + "Mary Boland" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Strength of Donald McKenzie", + "year": 1916, + "cast": [ + "William Russell", + "Jack Prescott" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Them Was the Happy Days!", + "year": 1916, + "cast": [ + "Harold Lloyd", + "Bebe Daniels" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Thoroughbred", + "year": 1916, + "cast": [ + "Charlotte Burton", + "Jack Prescott" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Three Fingered Jenny", + "year": 1916, + "cast": [ + "William Garwood", + "Stella LeSaint", + "Carmen Phillips" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Time and Tide", + "year": 1916, + "cast": [ + "Hugh Bennett" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "To Have and to Hold", + "year": 1916, + "cast": [ + "Mae Murray", + "Wallace Reid" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Torch Bearer", + "year": 1916, + "cast": [ + "Charlotte Burton", + "Harry Keenan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Trail of the Lonesome Pine", + "year": 1916, + "cast": [ + "Charlotte Walker", + "Thomas Meighan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "True Nobility", + "year": 1916, + "cast": [ + "Helene Rosson", + "Forrest Taylor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Twinkler", + "year": 1916, + "cast": [ + "William Russell", + "Charlotte Burton" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Two Seats at the Opera", + "year": 1916, + "cast": [ + "William J. Welsh" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Under Two Flags", + "year": 1916, + "cast": [ + "Theda Bara", + "Herbert Heyes" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Undertow", + "year": 1916, + "cast": [ + "Franklin Ritchie", + "Helene Rosson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Vagabond", + "year": 1916, + "cast": [ + "Charles Chaplin", + "Edna Purviance" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Viviana", + "year": 1916, + "cast": [ + "Sylvia Ashton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Where Are My Children?", + "year": 1916, + "cast": [ + "Tyrone Power Sr", + "Juan de la Cruz" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The White Rosette", + "year": 1916, + "cast": [ + "Eugenie Forde", + "Richard La Reno" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Youth's Endearing Charm", + "year": 1916, + "cast": [ + "Mary Miles Minter", + "Wallace MacDonald" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Adventurer", + "year": 1917, + "cast": [ + "Charlie Chaplin", + "Edna Purviance" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "All Aboard", + "year": 1917, + "cast": [ + "Harold Lloyd", + "Bebe Daniels" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "As Men Love", + "year": 1917, + "cast": [ + "House Peters Sr.", + "Myrtle Stedman", + "Jack W. Johnston" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "At First Sight", + "year": 1917, + "cast": [ + "Mae Murray", + "Sam Hardy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Babes in the Woods", + "year": 1917, + "cast": [ + "Francis Carpenter", + "Virginia Lee Corbin" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "The Bad Boy", + "year": 1917, + "cast": [ + "Robert Harron", + "Richard Cummings" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Bashful", + "year": 1917, + "cast": [ + "Harold Lloyd", + "Bebe Daniels" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Big Idea", + "year": 1917, + "cast": [ + "Harold Lloyd", + "Bebe Daniels" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Birds of a Feather", + "year": 1917, + "cast": [ + "Harold Lloyd", + "Snub Pollard" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Black Orchids", + "year": 1917, + "cast": [ + "Cleo Madison", + "Francis McDonald" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Bliss", + "year": 1917, + "cast": [ + "Harold Lloyd", + "Bebe Daniels" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Bride's Silence", + "year": 1917, + "cast": [ + "Gail Kane", + "Lewis J. Cody" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Bucking Broadway", + "year": 1917, + "cast": [ + "Harry Carey", + "Molly Malone" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Butcher Boy", + "year": 1917, + "cast": [ + "Fatty Arbuckle", + "Buster Keaton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "By the Sad Sea Waves", + "year": 1917, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Camille", + "year": 1917, + "cast": [ + "Theda Bara", + "Alan Roscoe" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Cheyenne's Pal", + "year": 1917, + "cast": [ + "Harry Carey", + "Gertrude Astor" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Cleopatra", + "year": 1917, + "cast": [ + "Theda Bara", + "Fritz Leiber Sr.", + "Thurston Hall" + ], + "genres": [ + "Historical" + ] + }, + { + "title": "Clubs Are Trump", + "year": 1917, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Coney Island", + "year": 1917, + "cast": [ + "Fatty Arbuckle", + "Buster Keaton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Cure", + "year": 1917, + "cast": [ + "Charlie Chaplin", + "Edna Purviance", + "Eric Campbell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Devil-Stone", + "year": 1917, + "cast": [ + "Geraldine Farrar", + "Wallace Reid" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Down to Earth", + "year": 1917, + "cast": [ + "Douglas Fairbanks", + "Eileen Percy" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Easy Street", + "year": 1917, + "cast": [ + "Charlie Chaplin", + "Edna Purviance" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Enlighten Thy Daughter", + "year": 1917, + "cast": [], + "genres": [ + "Erotic" + ] + }, + { + "title": "The Flirt", + "year": 1917, + "cast": [ + "Harold Lloyd", + "Bebe Daniels" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Flower of Doom", + "year": 1917, + "cast": [ + "Wedgwood Nowell", + "Yvette Mitchell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "From Laramie to London", + "year": 1917, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Golden Rule Kate", + "year": 1917, + "cast": [ + "Louise Glaum" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Great Expectations", + "year": 1917, + "cast": [ + "Jack Pickford", + "Louise Huff" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Gulf Between", + "year": 1917, + "cast": [ + "Grace Darmond", + "Niles Welch" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Hands Up!", + "year": 1917, + "cast": [ + "Wilfred Lucas", + "Colleen Moore" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Her Right to Live", + "year": 1917, + "cast": [ + "Peggy Hyland", + "Antonio Moreno" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "His Wedding Night", + "year": 1917, + "cast": [ + "Fatty Arbuckle", + "Buster Keaton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Immigrant", + "year": 1917, + "cast": [ + "Charlie Chaplin", + "Edna Purviance" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "In Again, Out Again", + "year": 1917, + "cast": [ + "Douglas Fairbanks" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Jack and the Beanstalk", + "year": 1917, + "cast": [ + "Francis Carpenter", + "Virginia Lee Corbin" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Jim Bludso", + "year": 1917, + "cast": [ + "Wilfred Lucas", + "Olga Grey" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Jury of Fate", + "year": 1917, + "cast": [ + "Mabel Taliaferro" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Kentucky Cinderella", + "year": 1917, + "cast": [ + "Ruth Clifford" + ], + "genres": [] + }, + { + "title": "The Lad and the Lion", + "year": 1917, + "cast": [ + "Vivian Reed", + "Will Machin" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Land of the Long Shadows", + "year": 1917, + "cast": [ + "Jack Gardner", + "Ruth King" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Little American", + "year": 1917, + "cast": [ + "Mary Pickford" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "Little Lost Sister", + "year": 1917, + "cast": [ + "Vivian Reed", + "George Fawcett" + ], + "genres": [] + }, + { + "title": "The Little Princess", + "year": 1917, + "cast": [ + "Mary Pickford", + "Norman Kerry", + "ZaSu Pitts" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Lonesome Luke, Lawyer", + "year": 1917, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Comedy", + "Short" + ] + }, + { + "title": "Lonesome Luke, Mechanic", + "year": 1917, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Comedy", + "Short" + ] + }, + { + "title": "Lonesome Luke, Messenger", + "year": 1917, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Comedy", + "Short" + ] + }, + { + "title": "Lonesome Luke, Plumber", + "year": 1917, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Comedy", + "Short" + ] + }, + { + "title": "Lonesome Luke Loses Patients", + "year": 1917, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Comedy", + "Short" + ] + }, + { + "title": "Lonesome Luke on Tin Can Alley", + "year": 1917, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Comedy", + "Short" + ] + }, + { + "title": "Lonesome Luke's Honeymoon", + "year": 1917, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Comedy", + "Short" + ] + }, + { + "title": "Lonesome Luke's Lively Life", + "year": 1917, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Comedy", + "Short" + ] + }, + { + "title": "Lonesome Luke's Lovely Rifle", + "year": 1917, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Comedy", + "Short" + ] + }, + { + "title": "Lonesome Luke's Wild Women", + "year": 1917, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Comedy", + "Short" + ] + }, + { + "title": "Lost and Won", + "year": 1917, + "cast": [ + "Marie Doro", + "Elliott Dexter" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Love, Laughs and Lather", + "year": 1917, + "cast": [ + "Harold Lloyd", + "Bebe Daniels" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Love Sublime", + "year": 1917, + "cast": [ + "Wilfred Lucas", + "Carmel Myers" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Luke Wins Ye Ladye Faire", + "year": 1917, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Comedy", + "Short" + ] + }, + { + "title": "Luke's Busy Day", + "year": 1917, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Comedy", + "Short" + ] + }, + { + "title": "Luke's Lost Liberty", + "year": 1917, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Comedy", + "Short" + ] + }, + { + "title": "Luke's Trolley Troubles", + "year": 1917, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Comedy", + "Short" + ] + }, + { + "title": "The Man Without a Country", + "year": 1917, + "cast": [ + "Florence La Badie", + "Holmes Herbert" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Mate of the Sally Ann", + "year": 1917, + "cast": [ + "Mary Miles Minter", + "Allan Forrest" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "A Modern Musketeer", + "year": 1917, + "cast": [ + "Douglas Fairbanks", + "Marjorie Daw" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "A Mormon Maid", + "year": 1917, + "cast": [ + "Mae Murray", + "Frank Borzage" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Move On", + "year": 1917, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Oh Doctor!", + "year": 1917, + "cast": [ + "Fatty Arbuckle", + "Buster Keaton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "On Record", + "year": 1917, + "cast": [ + "Mae Murray", + "Tom Forman" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Over the Fence", + "year": 1917, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Panthea", + "year": 1917, + "cast": [ + "Norma Talmadge", + "Earle Foxe" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Peggy, the Will O' the Wisp", + "year": 1917, + "cast": [ + "Mabel Taliaferro", + "Thomas Carrigan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Pinched", + "year": 1917, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Poor Little Rich Girl", + "year": 1917, + "cast": [ + "Mary Pickford" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Primrose Ring", + "year": 1917, + "cast": [ + "Mae Murray", + "Tom Moore" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Princess of Patches", + "year": 1917, + "cast": [ + "Violet De Biccari", + "Vivian Reed" + ], + "genres": [] + }, + { + "title": "Princess Virtue", + "year": 1917, + "cast": [ + "Mae Marsh", + "Wheeler Oakman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Rainbow Island", + "year": 1917, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Reaching for the Moon", + "year": 1917, + "cast": [ + "Douglas Fairbanks", + "Eileen Percy" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Rebecca of Sunnybrook Farm", + "year": 1917, + "cast": [ + "Mary Pickford" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Reckless Romeo", + "year": 1917, + "cast": [ + "Fatty Arbuckle", + "Al St. John" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Reward of the Faithless", + "year": 1917, + "cast": [ + "Claire DuBray", + "Betty Schade", + "Wedgwood Nowell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Romance of the Redwoods", + "year": 1917, + "cast": [ + "Mary Pickford", + "Elliott Dexter" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Rough House", + "year": 1917, + "cast": [ + "Fatty Arbuckle", + "Buster Keaton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Souls in Pawn", + "year": 1917, + "cast": [ + "Gail Kane", + "Douglas MacLean" + ], + "genres": [ + "Spy" + ] + }, + { + "title": "Souls Triumphant", + "year": 1917, + "cast": [ + "Lillian Gish", + "Wilfred Lucas" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Step Lively", + "year": 1917, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Stop! Luke! Listen!", + "year": 1917, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Straight Shooting", + "year": 1917, + "cast": [ + "Harry Carey" + ], + "genres": [ + "Western" + ] + }, + { + "title": "A Strange Transgressor", + "year": 1917, + "cast": [ + "Louise Glaum" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Teddy at the Throttle", + "year": 1917, + "cast": [ + "Gloria Swanson", + "Bobby Vernon", + "Wallace Beery" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Tom Sawyer", + "year": 1917, + "cast": [ + "Jack Pickford" + ], + "genres": [] + }, + { + "title": "The Tornado", + "year": 1917, + "cast": [ + "John Ford" + ], + "genres": [ + "Western" + ] + }, + { + "title": "We Never Sleep", + "year": 1917, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Wild and Woolly", + "year": 1917, + "cast": [ + "Douglas Fairbanks" + ], + "genres": [] + }, + { + "title": "The Wild Girl", + "year": 1917, + "cast": [ + "Eva Tanguay", + "Thomas J. Moore" + ], + "genres": [] + }, + { + "title": "The Woman God Forgot", + "year": 1917, + "cast": [ + "Wallace Reid" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Accident Attorney", + "year": 1918, + "cast": [], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Accusing Toe", + "year": 1918, + "cast": [ + "Sadie Clayton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Ali Baba and the Forty Thieves", + "year": 1918, + "cast": [ + "George Stone", + "Gertrude Messinger" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "All Woman", + "year": 1918, + "cast": [ + "Mae Marsh", + "Jere Austin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Amarilly of Clothes-Line Alley", + "year": 1918, + "cast": [ + "Mary Pickford" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "America's Answer", + "year": 1918, + "cast": [], + "genres": [] + }, + { + "title": "Among the Cannibal Isles of the South Pacific", + "year": 1918, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "Are Crooks Dishonest?", + "year": 1918, + "cast": [ + "Harold Lloyd", + "Snub Pollard" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Arizona", + "year": 1918, + "cast": [ + "Douglas Fairbanks", + "Theodore Roberts" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Back to the Woods", + "year": 1918, + "cast": [ + "Harold Lloyd", + "Bebe Daniels" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Beat It", + "year": 1918, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Beauty and the Rogue", + "year": 1918, + "cast": [ + "Mary Miles Minter", + "Allan Forrest" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Bees in His Bonnet", + "year": 1918, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Believe Me, Xantippe", + "year": 1918, + "cast": [ + "Wallace Reid", + "Ann Little", + "Noah Beery" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Bell Boy", + "year": 1918, + "cast": [ + "Fatty Arbuckle", + "Buster Keaton" + ], + "genres": [ + "Comedy", + "Short" + ] + }, + { + "title": "The Blind Adventure", + "year": 1918, + "cast": [ + "Edward Earle", + "Betty Howe" + ], + "genres": [] + }, + { + "title": "The Blue Bird", + "year": 1918, + "cast": [ + "Tula Belle" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "The Bond", + "year": 1918, + "cast": [ + "Charles Chaplin", + "Edna Purviance", + "Sydney Chaplin" + ], + "genres": [] + }, + { + "title": "Bound in Morocco", + "year": 1918, + "cast": [ + "Douglas Fairbanks", + "Pauline Curley" + ], + "genres": [] + }, + { + "title": "Brazen Beauty", + "year": 1918, + "cast": [ + "Priscilla Dean", + "Gertrude Astor" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Bride and Gloom", + "year": 1918, + "cast": [ + "Harold Lloyd", + "Bebe Daniels" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Bride of Fear", + "year": 1918, + "cast": [ + "Jewel Carmen", + "Charles Gorman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Bride's Awakening", + "year": 1918, + "cast": [ + "Mae Murray", + "Lew Cody" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Bud's Recruit", + "year": 1918, + "cast": [ + "Wallace Brennan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Burden of Proof", + "year": 1918, + "cast": [ + "Marion Davies" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Cecilia of the Pink Roses", + "year": 1918, + "cast": [ + "Marion Davies" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Chocolate of the Gang", + "year": 1918, + "cast": [ + "Thomas Bellamy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The City of Dim Faces", + "year": 1918, + "cast": [ + "Sessue Hayakawa", + "and", + "Marin Sais" + ], + "genres": [] + }, + { + "title": "The City Slicker", + "year": 1918, + "cast": [ + "Harold Lloyd", + "Bebe Daniels" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Confession", + "year": 1918, + "cast": [ + "Jewel Carmen", + "L.C. Shumway" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Cook", + "year": 1918, + "cast": [ + "Fatty Arbuckle", + "Buster Keaton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Craving", + "year": 1918, + "cast": [ + "Francis Ford", + "Mae Gaston" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Danger, Go Slow", + "year": 1918, + "cast": [ + "Mae Murray", + "Jack Mulhall", + "Lon Chaney" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Deciding Kiss", + "year": 1918, + "cast": [ + "Edith Roberts", + "Hallam Cooley" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Dog's Life", + "year": 1918, + "cast": [ + "Charlie Chaplin", + "Edna Purviance" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Embarrassment of Riches", + "year": 1918, + "cast": [ + "Lillian Walker" + ], + "genres": [] + }, + { + "title": "The Eyes of Julia Deep", + "year": 1918, + "cast": [ + "Mary Miles Minter", + "Allan Forrest" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Eyes of Mystery", + "year": 1918, + "cast": [ + "Edith Storey", + "Bradley Barker" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Face Value", + "year": 1918, + "cast": [ + "Mae Murray", + "Wheeler Oakman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Fireman Save My Child", + "year": 1918, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Floor Below", + "year": 1918, + "cast": [ + "Mabel Normand", + "Tom Moore" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Follow the Crowd", + "year": 1918, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Forbidden City", + "year": 1918, + "cast": [ + "Norma Talmadge", + "Thomas Meighan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Friend Husband", + "year": 1918, + "cast": [ + "Madge Kennedy", + "Rockliffe Fellowes" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Fuss and Feathers", + "year": 1918, + "cast": [ + "Enid Bennett", + "Douglas MacLean" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Gasoline Wedding", + "year": 1918, + "cast": [ + "Harold Lloyd", + "Bebe Daniels" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Ghost of Slumber Mountain", + "year": 1918, + "cast": [ + "Herbert M. Dawley", + "Willis O'Brien" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "The Goddess of Lost Lake", + "year": 1918, + "cast": [ + "Louise Glaum" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Great Love", + "year": 1918, + "cast": [ + "George Fawcett", + "Lilian Gish" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "The Greatest Thing in Life", + "year": 1918, + "cast": [ + "Robert Harron", + "Lillian Gish" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "He Comes Up Smiling", + "year": 1918, + "cast": [ + "Douglas Fairbanks", + "Marjorie Daw" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Headin' South", + "year": 1918, + "cast": [ + "Douglas Fairbanks", + "Katherine MacDonald" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Hear 'Em Rave", + "year": 1918, + "cast": [ + "Harold Lloyd", + "Bebe Daniels" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Heart of Humanity", + "year": 1918, + "cast": [ + "Dorothy Phillips", + "William Stowell" + ], + "genres": [] + }, + { + "title": "Hearts of the World", + "year": 1918, + "cast": [ + "Lillian Gish", + "Dorothy Gish" + ], + "genres": [ + "War" + ] + }, + { + "title": "Hearts or Diamonds", + "year": 1918, + "cast": [ + "William Russell", + "Charlotte Burton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hell Bent", + "year": 1918, + "cast": [ + "Harry Carey", + "Duke R. Lee" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Her Only Way", + "year": 1918, + "cast": [ + "Norma Talmadge", + "Eugene O'Brien" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Here Come the Girls", + "year": 1918, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hey There!", + "year": 1918, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "His Robe of Honor", + "year": 1918, + "cast": [ + "Henry B. Walthall", + "Mary Charleson", + "Noah Beery" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hit Him Again", + "year": 1918, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The House of Mirth", + "year": 1918, + "cast": [ + "Katherine Harris Barrymore" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Huck and Tom", + "year": 1918, + "cast": [ + "Jack Pickford", + "Robert Gordon" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "I'm a Man", + "year": 1918, + "cast": [ + "Martin Pendleton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "It's a Wild Life", + "year": 1918, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Kicked Out", + "year": 1918, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Kicking the Germ Out of Germany", + "year": 1918, + "cast": [ + "Harold Lloyd", + "Bebe Daniels" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Kingdom of Youth", + "year": 1918, + "cast": [ + "Madge Kennedy", + "Tom Moore" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Lady of the Dug-Out", + "year": 1918, + "cast": [ + "Al Jennings", + "Frank Jennings" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Lamb", + "year": 1918, + "cast": [ + "Harold Lloyd", + "Bebe Daniels" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Legion of Death", + "year": 1918, + "cast": [ + "Edith Storey", + "Philo McCullough" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Let's Go", + "year": 1918, + "cast": [ + "Harold Lloyd", + "Bebe Daniels" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Light of the Western Stars", + "year": 1918, + "cast": [ + "Dustin Farnum", + "Winifred Kingston" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Look Pleasant, Please", + "year": 1918, + "cast": [ + "Harold Lloyd", + "Bebe Daniels" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Lost Lie", + "year": 1918, + "cast": [ + "Ruth Hampton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Marriage Ring", + "year": 1918, + "cast": [ + "Enid Bennett", + "Jack Holt" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Men Who Have Made Love to Me", + "year": 1918, + "cast": [ + "Mary MacLane", + "Ralph Graves" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Mickey", + "year": 1918, + "cast": [ + "Mabel Normand" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Moonshine", + "year": 1918, + "cast": [ + "Fatty Arbuckle", + "Buster Keaton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mr. Fix-It", + "year": 1918, + "cast": [ + "Douglas Fairbanks", + "Wanda Hawley" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Nine-Tenths of the Law", + "year": 1918, + "cast": [ + "Mitchell Lewis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Nocturnal Tunes", + "year": 1918, + "cast": [], + "genres": [] + }, + { + "title": "The Non-Stop Kid", + "year": 1918, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Nothing But Trouble", + "year": 1918, + "cast": [ + "Harold Lloyd", + "Bebe Daniels" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Old Wives for New", + "year": 1918, + "cast": [ + "Elliott Dexter", + "Florence Vidor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "On the Jump", + "year": 1918, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Ordeal of Rosetta", + "year": 1918, + "cast": [ + "Alice Brady", + "Crauford Kent" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Out of the Inkwell", + "year": 1918, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "Out West", + "year": 1918, + "cast": [ + "Fatty Arbuckle", + "Buster Keaton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "An Ozark Romance", + "year": 1918, + "cast": [ + "Harold Lloyd", + "Bebe Daniels" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Pipe the Whiskers", + "year": 1918, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Powers That Prey", + "year": 1918, + "cast": [ + "Mary Miles Minter", + "Allan Forrest" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Revenge", + "year": 1918, + "cast": [ + "Edith Storey", + "Wheeler Oakman" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Richest Girl", + "year": 1918, + "cast": [ + "Anna Murdock", + "David Powell" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Romance of Tarzan", + "year": 1918, + "cast": [ + "Elmo Lincoln", + "Enid Markey" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Safety Curtain", + "year": 1918, + "cast": [ + "Norma Talmadge", + "Eugene O'Brien" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Salomé", + "year": 1918, + "cast": [ + "Theda Bara", + "G. Raymond Nye" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Scarlet Drop", + "year": 1918, + "cast": [ + "Harry Carey", + "Molly Malone" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Set Free", + "year": 1918, + "cast": [ + "Edith Roberts", + "Harold Goodwin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "She Loves Me Not", + "year": 1918, + "cast": [ + "Harold Lloyd", + "Bebe Daniels" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Shoulder Arms", + "year": 1918, + "cast": [ + "Charlie Chaplin", + "Sydney Chaplin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Sic 'Em, Towser", + "year": 1918, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Sinking of the Lusitania", + "year": 1918, + "cast": [], + "genres": [ + "Short", + "Animated" + ] + }, + { + "title": "Six Shooter Andy", + "year": 1918, + "cast": [ + "Tom Mix", + "Bert Woodruff" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Social Briars", + "year": 1918, + "cast": [ + "Mary Miles Minter", + "Allan Forrest" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Somewhere in Turkey", + "year": 1918, + "cast": [ + "Harold Lloyd", + "Bebe Daniels" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Squaw Man", + "year": 1918, + "cast": [ + "Elliott Dexter", + "Ann Little" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Stella Maris", + "year": 1918, + "cast": [ + "Mary Pickford" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Swing Your Partners", + "year": 1918, + "cast": [ + "Harold Lloyd", + "Bebe Daniels" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Tad's Swimming Hole", + "year": 1918, + "cast": [ + "Ernest Butterworth" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Take a Chance", + "year": 1918, + "cast": [ + "Harold Lloyd", + "Bebe Daniels" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Tarzan of the Apes", + "year": 1918, + "cast": [ + "Elmo Lincoln", + "and", + "Enid Markey" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "That's Him", + "year": 1918, + "cast": [ + "Harold Lloyd", + "Bebe Daniels" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Till I Come Back to You", + "year": 1918, + "cast": [ + "Bryant Washburn", + "Florence Vidor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Tip", + "year": 1918, + "cast": [ + "Harold Lloyd", + "Bebe Daniels" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Treasure Island", + "year": 1918, + "cast": [ + "Francis Carpenter", + "Virginia Lee Corbin" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Triple Trouble", + "year": 1918, + "cast": [ + "Charlie Chaplin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Two-Gun Gussie", + "year": 1918, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Two Scrambled", + "year": 1918, + "cast": [ + "Harold Lloyd", + "Bebe Daniels" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Under the Yoke", + "year": 1918, + "cast": [ + "Theda Bara", + "G. Raymond Nye" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Under the Greenwood Tree", + "year": 1918, + "cast": [ + "Elsie Ferguson", + "Eugene O'Brien" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Venus Model", + "year": 1918, + "cast": [ + "Mabel Normand", + "Rod La Rocque" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "We Can't Have Everything", + "year": 1918, + "cast": [ + "Kathlyn Williams", + "Elliott Dexter" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "When Do We Eat?", + "year": 1918, + "cast": [ + "Enid Bennett", + "Albert Ray" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Which Woman?", + "year": 1918, + "cast": [ + "Ella Hall", + "A. Edward Sutherland" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Whispering Chorus", + "year": 1918, + "cast": [ + "Raymond Hatton", + "Kathlyn Williams" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Why Pick on Me?", + "year": 1918, + "cast": [ + "Harold Lloyd", + "Bebe Daniels" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "23 1/2 Hours' Leave", + "year": 1919, + "cast": [ + "Douglas MacLean", + "Doris May" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The A.B.C. of Love", + "year": 1919, + "cast": [ + "Mae Murray", + "Holmes Herbert" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Ace of the Saddle", + "year": 1919, + "cast": [ + "Harry Carey", + "Peggy Pearce" + ], + "genres": [ + "Western" + ] + }, + { + "title": "An Adventure in Hearts", + "year": 1919, + "cast": [ + "Robert Warwick", + "Helene Chadwick" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Adventure Shop", + "year": 1919, + "cast": [ + "Corinne Griffith", + "Walter McGrail" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "After His Own Heart", + "year": 1919, + "cast": [ + "Hale Hamilton", + "Naomi Childers" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Alias Mike Moran", + "year": 1919, + "cast": [ + "Wallace Reid", + "Ann Little" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "All of a Sudden Norma", + "year": 1919, + "cast": [ + "Bessie Barriscale", + "Joseph J. Dowling" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "All Wrong", + "year": 1919, + "cast": [ + "Bryant Washburn", + "Mildred Davis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Almost a Husband", + "year": 1919, + "cast": [ + "Will Rogers", + "Peggy Wood", + "Herbert Standing" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Almost Married", + "year": 1919, + "cast": [ + "May Allison", + "June Elvidge", + "Sam Hardy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Amateur Adventuress", + "year": 1919, + "cast": [ + "Emmy Wehlen", + "Eugene Pallette" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Amazing Impostor", + "year": 1919, + "cast": [ + "Mary Miles Minter", + "Carl Stockdale" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Amazing Wife", + "year": 1919, + "cast": [ + "Mary MacLaren", + "Frank Mayo" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "An Innocent Adventuress", + "year": 1919, + "cast": [ + "Vivian Martin", + "Lloyd Hughes" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Anne of Green Gables", + "year": 1919, + "cast": [ + "Mary Miles Minter", + "Paul Kelly" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "As a Man Thinks", + "year": 1919, + "cast": [ + "Leah Baird", + "Warburton Gamble" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "As the Sun Went Down", + "year": 1919, + "cast": [ + "Edith Storey", + "Lew Cody" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Avalanche", + "year": 1919, + "cast": [ + "Elsie Ferguson", + "Lumsden Hare" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Bachelor's Wife", + "year": 1919, + "cast": [ + "Mary Miles Minter", + "Allan Forrest" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Bandbox", + "year": 1919, + "cast": [ + "Doris Kenyon", + "Gretchen Hartman" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Bare-Fisted Gallagher", + "year": 1919, + "cast": [ + "William Desmond", + "Agnes Vernon" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Bare Fists", + "year": 1919, + "cast": [ + "Harry Carey", + "Betty Schade" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Be a Little Sport", + "year": 1919, + "cast": [ + "Albert Ray", + "Elinor Fair" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Beauty Market", + "year": 1919, + "cast": [ + "Katherine MacDonald", + "Winter Hall" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Beauty-Proof", + "year": 1919, + "cast": [ + "Harry T. Morey", + "Betty Blythe" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Beating the Odds", + "year": 1919, + "cast": [ + "Harry T. Morey", + "Betty Blythe" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Beckoning Roads", + "year": 1919, + "cast": [ + "Bessie Barriscale", + "Niles Welch" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Behind the Door", + "year": 1919, + "cast": [ + "Hobart Bosworth", + "Jane Novak", + "Wallace Beery" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "The Belle of New York", + "year": 1919, + "cast": [ + "Marion Davies", + "Etienne Girardot" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Best Man", + "year": 1919, + "cast": [ + "J. Warren Kerrigan", + "Lois Wilson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Better Times", + "year": 1919, + "cast": [ + "David Butler", + "ZaSu Pitts" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Better Wife", + "year": 1919, + "cast": [ + "Clara Kimball Young", + "Nigel Barrie" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Beware!", + "year": 1919, + "cast": [ + "Julia Hurley", + "Herbert Standing" + ], + "genres": [ + "War" + ] + }, + { + "title": "The Big Little Person", + "year": 1919, + "cast": [ + "Mae Marsh", + "Rudolph Valentino" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Bill Apperson's Boy", + "year": 1919, + "cast": [ + "Jack Pickford", + "Russell Simpson", + "Gloria Hope" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Bill Henry", + "year": 1919, + "cast": [ + "Charles Ray", + "Edith Roberts" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Bishop's Emeralds", + "year": 1919, + "cast": [ + "Virginia Pearson", + "Lucy Fox" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Black Circle", + "year": 1919, + "cast": [ + "Creighton Hale", + "Virginia Valli" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Black Gate", + "year": 1919, + "cast": [ + "Earle Williams", + "Ruth Clifford" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Blackie's Redemption", + "year": 1919, + "cast": [ + "Bert Lytell", + "Alice Lake" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Blind Husbands", + "year": 1919, + "cast": [ + "Erich von Stroheim", + "Francelia Billington" + ], + "genres": [ + "Drama", + "Romance" + ] + }, + { + "title": "Blind Man's Eyes", + "year": 1919, + "cast": [ + "Bert Lytell", + "Frank Currier", + "Naomi Childers" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Blinding Trail", + "year": 1919, + "cast": [ + "Monroe Salisbury", + "Claire Anderson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Blue Bandanna", + "year": 1919, + "cast": [ + "William Desmond", + "Russell Simpson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Bluffer", + "year": 1919, + "cast": [ + "June Elvidge", + "Irving Cummings", + "Frank Mayo" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Bolshevism on Trial", + "year": 1919, + "cast": [ + "Robert Frazer", + "Pinna Nesbit" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Bondage of Barbara", + "year": 1919, + "cast": [ + "Mae Marsh", + "Matt Moore" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Bonds of Honor", + "year": 1919, + "cast": [ + "Sessue Hayakawa", + "Marin Sais" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Bonds of Love", + "year": 1919, + "cast": [ + "Pauline Frederick", + "Percy Standing" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Bonnie Bonnie Lassie", + "year": 1919, + "cast": [ + "Mary MacLaren", + "Spottiswoode Aitken" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Boots", + "year": 1919, + "cast": [ + "Dorothy Gish", + "Richard Barthelmess" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Busher", + "year": 1919, + "cast": [ + "Charles Ray", + "Colleen Moore", + "John Gilbert" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Bramble Bush", + "year": 1919, + "cast": [ + "Corinne Griffith", + "Julia Swayne Gordon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Brand", + "year": 1919, + "cast": [ + "Russell Simpson", + "Robert McKim" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Brass Buttons", + "year": 1919, + "cast": [ + "William Russell", + "Eileen Percy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Brat", + "year": 1919, + "cast": [ + "Alla Nazimova", + "Charles Bryant" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Breed of Men", + "year": 1919, + "cast": [ + "William S. Hart", + "Seena Owen" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Bringing Up Betty", + "year": 1919, + "cast": [ + "Evelyn Greeley", + "Reginald Denny" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Broken Blossoms", + "year": 1919, + "cast": [ + "Lillian Gish", + "Richard Barthelmess" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Broken Butterfly", + "year": 1919, + "cast": [ + "Lew Cody", + "Mary Alden", + "Pauline Starke" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Broken Commandments", + "year": 1919, + "cast": [ + "Gladys Brockwell", + "Tom Santschi" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Broken Melody", + "year": 1919, + "cast": [ + "Eugene O'Brien", + "Lucy Cotton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Brute Breaker", + "year": 1919, + "cast": [ + "Frank Mayo", + "Harry Northrup" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Burglar by Proxy", + "year": 1919, + "cast": [ + "Jack Pickford", + "Gloria Hope" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Call of the Soul", + "year": 1919, + "cast": [ + "Gladys Brockwell", + "William Scott" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Cambric Mask", + "year": 1919, + "cast": [ + "Alice Joyce", + "Maurice Costello" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Captain Kidd, Jr.", + "year": 1919, + "cast": [ + "Mary Pickford", + "Douglas MacLean" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Captain's Captain", + "year": 1919, + "cast": [ + "Alice Joyce", + "Percy Standing" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Career of Katherine Bush", + "year": 1919, + "cast": [ + "Catherine Calvert", + "Crauford Kent" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Carolyn of the Corners", + "year": 1919, + "cast": [ + "Bessie Love", + "Charlotte Mineau" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Castles in the Air", + "year": 1919, + "cast": [ + "May Allison", + "Clarence Burton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Charge It to Me", + "year": 1919, + "cast": [ + "Margarita Fischer", + "Emory Johnson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Chasing Rainbows", + "year": 1919, + "cast": [ + "Gladys Brockwell", + "William Scott" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Cheating Cheaters", + "year": 1919, + "cast": [ + "Jack Holt", + "Clara Kimball Young" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Cheating Herself", + "year": 1919, + "cast": [ + "Peggy Hyland", + "Harry Hilliard" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Checkers", + "year": 1919, + "cast": [ + "Thomas Carrigan", + "Jean Acker" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Cinema Murder", + "year": 1919, + "cast": [ + "Marion Davies", + "Eulalie Jensen", + "Anders Randolf" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The City of Comrades", + "year": 1919, + "cast": [ + "Tom Moore", + "Seena Owen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Climbers", + "year": 1919, + "cast": [ + "Corinne Griffith", + "Percy Marmont" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Come Again Smith", + "year": 1919, + "cast": [ + "J. Warren Kerrigan", + "Lois Wilson" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Come Out of the Kitchen", + "year": 1919, + "cast": [ + "Marguerite Clark", + "Eugene O'Brien" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Coming of the Law", + "year": 1919, + "cast": [ + "Tom Mix", + "Agnes Vernon" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Common Cause", + "year": 1919, + "cast": [ + "Effie Shannon", + "Irene Castle", + "Marjorie Rambeau" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Common Clay", + "year": 1919, + "cast": [ + "Fannie Ward", + "Fred Goodwins" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Common Property", + "year": 1919, + "cast": [ + "Nell Craig", + "Colleen Moore" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Counterfeit", + "year": 1919, + "cast": [ + "Elsie Ferguson", + "David Powell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Country Cousin", + "year": 1919, + "cast": [ + "Elaine Hammerstein", + "Lumsden Hare" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Courageous Coward", + "year": 1919, + "cast": [ + "Sessue Hayakawa", + "Tsuru Aoki" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Cowardice Court", + "year": 1919, + "cast": [ + "Peggy Hyland", + "Jack Livingston" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Creaking Stairs", + "year": 1919, + "cast": [ + "Herbert Prior", + "Jack Mulhall" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Crimson Gardenia", + "year": 1919, + "cast": [ + "Owen Moore", + "Hedda Nova" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Crook of Dreams", + "year": 1919, + "cast": [ + "Louise Huff", + "Virginia Hammond", + "Frank Mayo" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Crooked Straight", + "year": 1919, + "cast": [ + "Charles Ray", + "Wade Boteler" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Cupid Forecloses", + "year": 1919, + "cast": [ + "Bessie Love", + "Wallace MacDonald" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Cry of the Weak", + "year": 1919, + "cast": [ + "Fannie Ward", + "Frank Elliott" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Daddy-Long-Legs", + "year": 1919, + "cast": [ + "Mary Pickford", + "Milla Davenport" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Damsel in Distress", + "year": 1919, + "cast": [ + "June Caprice", + "Creighton Hale" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Dangerous Hours", + "year": 1919, + "cast": [ + "Lloyd Hughes", + "Barbara Castleton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dangerous Waters", + "year": 1919, + "cast": [ + "William Desmond", + "Marguerite De La Motte" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Daring Hearts", + "year": 1919, + "cast": [ + "Francis X. Bushman", + "Beverly Bayne" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Dark Star", + "year": 1919, + "cast": [ + "Marion Davies", + "Norman Kerry" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Darkest Hour", + "year": 1919, + "cast": [ + "Harry T. Morey", + "Anna Lehr" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Daughter of Mine", + "year": 1919, + "cast": [ + "Madge Kennedy", + "John Bowers" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Daughter of the Wolf", + "year": 1919, + "cast": [ + "Lila Lee", + "Elliott Dexter", + "Clarence Geldart" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dawn", + "year": 1919, + "cast": [ + "Robert Gordon", + "Sylvia Breamer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Day Dreams", + "year": 1919, + "cast": [ + "Madge Kennedy", + "John Bowers" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Day She Paid", + "year": 1919, + "cast": [ + "Francelia Billington", + "Harry von Meter" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Delicious Little Devil", + "year": 1919, + "cast": [ + "Mae Murray", + "Rudolph Valentino" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Desert Gold", + "year": 1919, + "cast": [ + "E.K. Lincoln", + "Eileen Percy" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Destiny", + "year": 1919, + "cast": [ + "Dorothy Phillips", + "Gertrude Astor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Devil McCare", + "year": 1919, + "cast": [ + "Crane Wilbur", + "Juanita Hansen" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Diane of the Green Van", + "year": 1919, + "cast": [ + "Nigel Barrie", + "Alma Rubens" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Divorcee", + "year": 1919, + "cast": [ + "Ethel Barrymore", + "Naomi Childers" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Divorce Trap", + "year": 1919, + "cast": [ + "Gladys Brockwell", + "Francis McDonald" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Don't Change Your Husband", + "year": 1919, + "cast": [ + "Gloria Swanson", + "Elliott Dexter" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Dragon Painter", + "year": 1919, + "cast": [ + "Sessue Hayakawa", + "Tsuru Aoki" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Drifters", + "year": 1919, + "cast": [ + "J. Warren Kerrigan", + "Lois Wilson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Dub", + "year": 1919, + "cast": [ + "Wallace Reid", + "Raymond Hatton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Eastward Ho!", + "year": 1919, + "cast": [ + "William Russell", + "Johnny Hines" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Easy to Make Money", + "year": 1919, + "cast": [ + "Bert Lytell", + "Frank Currier" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Echo of Youth", + "year": 1919, + "cast": [ + "Charles Richman", + "Leah Baird" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The End of the Game", + "year": 1919, + "cast": [ + "J. Warren Kerrigan", + "Lois Wilson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Egg Crate Wallop", + "year": 1919, + "cast": [ + "Charles Ray", + "Colleen Moore" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Enchanted Barn", + "year": 1919, + "cast": [ + "Bessie Love", + "J. Frank Glendon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Eternal Magdalene", + "year": 1919, + "cast": [ + "Marguerite Marsh", + "Vernon Steele" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Evangeline", + "year": 1919, + "cast": [ + "Miriam Cooper", + "Alan Roscoe" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Eve in Exile", + "year": 1919, + "cast": [ + "Charlotte Walker", + "Tom Santschi" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Everywoman", + "year": 1919, + "cast": [ + "Theodore Roberts", + "Violet Heming" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Experimental Marriage", + "year": 1919, + "cast": [ + "Constance Talmadge", + "Harrison Ford" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Extravagance", + "year": 1919, + "cast": [ + "Dorothy Dalton", + "Charles Clary" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Exquisite Thief", + "year": 1919, + "cast": [ + "Priscilla Dean", + "Thurston Hall" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Eyes of the Soul", + "year": 1919, + "cast": [ + "Elsie Ferguson", + "Wyndham Standing" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Eyes of Youth", + "year": 1919, + "cast": [ + "Clara Kimball Young", + "Gareth Hughes" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Fair and Warmer", + "year": 1919, + "cast": [ + "May Allison", + "Eugene Pallette" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Faith", + "year": 1919, + "cast": [ + "Bert Lytell", + "Rosemary Theby" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Faith of the Strong", + "year": 1919, + "cast": [ + "Mitchell Lewis", + "Margaret Gibson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Fallen Idol", + "year": 1919, + "cast": [ + "Evelyn Nesbit", + "Lillian Lawrence" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "False Evidence", + "year": 1919, + "cast": [ + "Viola Dana", + "Wheeler Oakman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The False Faces", + "year": 1919, + "cast": [ + "Henry B. Walthall", + "Lon Chaney" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Favor to a Friend", + "year": 1919, + "cast": [ + "Emmy Wehlen", + "Jack Mulhall" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Fear Woman", + "year": 1919, + "cast": [ + "Pauline Frederick", + "Milton Sills" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Feud", + "year": 1919, + "cast": [ + "Tom Mix", + "Eva Novak" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Fight for Love", + "year": 1919, + "cast": [ + "Harry Carey", + "Neva Gerber" + ], + "genres": [ + "Western" + ] + }, + { + "title": "A Fighting Colleen", + "year": 1919, + "cast": [ + "Bessie Love", + "Anne Schaefer" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Fighting Cressy", + "year": 1919, + "cast": [ + "Blanche Sweet", + "Russell Simpson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Fighting Destiny", + "year": 1919, + "cast": [ + "Harry T. Morey", + "Betty Blythe" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Fighting for Gold", + "year": 1919, + "cast": [ + "Tom Mix", + "Teddy Sampson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Final Close-Up", + "year": 1919, + "cast": [ + "Shirley Mason", + "Francis McDonald" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Fire Flingers", + "year": 1919, + "cast": [ + "Fred Kelsey", + "Jane Novak" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Fires of Faith", + "year": 1919, + "cast": [ + "Catherine Calvert", + "Eugene O'Brien", + "Rubye De Remer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Firing Line", + "year": 1919, + "cast": [ + "Irene Castle", + "Isabel West", + "Vernon Steele" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Flame of the Desert", + "year": 1919, + "cast": [ + "Geraldine Farrar", + "Lou Tellegen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Follies Girl", + "year": 1919, + "cast": [ + "Olive Thomas", + "Wallace MacDonald" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Fools and Their Money", + "year": 1919, + "cast": [ + "Emmy Wehlen", + "Jack Mulhall" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "For a Woman's Honor", + "year": 1919, + "cast": [ + "H. B. Warner", + "Marguerite De La Motte", + "John Gilbert" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "For Better, For Worse", + "year": 1919, + "cast": [ + "Elliott Dexter", + "Gloria Swanson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Forbidden", + "year": 1919, + "cast": [ + "Mildred Harris", + "Fred Goodwins" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Forbidden Room", + "year": 1919, + "cast": [ + "Gladys Brockwell", + "William Scott" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Forfeit", + "year": 1919, + "cast": [ + "House Peters", + "Hector V. Sarno" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Four Flusher", + "year": 1919, + "cast": [ + "Hale Hamilton", + "Ruth Stonehouse" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Fugitive from Matrimony", + "year": 1919, + "cast": [ + "H. B. Warner", + "Seena Owen" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Full of Pep", + "year": 1919, + "cast": [ + "Hale Hamilton", + "Alice Lake" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Gamblers", + "year": 1919, + "cast": [ + "Harry T. Morey", + "Agnes Ayres" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Gambling in Souls", + "year": 1919, + "cast": [ + "Madlaine Traverse", + "Herbert Heyes" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Game's Up", + "year": 1919, + "cast": [ + "Albert Ray", + "Ruth Clifford" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Gates of Brass", + "year": 1919, + "cast": [ + "Frank Keenan", + "Lois Wilson" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Gay Lord Quex", + "year": 1919, + "cast": [ + "Tom Moore", + "Gloria Hope", + "Naomi Childers" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Gentleman of Quality", + "year": 1919, + "cast": [ + "Earle Williams", + "Kathryn Adams" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Getting Mary Married", + "year": 1919, + "cast": [ + "Marion Davies", + "Norman Kerry" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Girl at Bay", + "year": 1919, + "cast": [ + "Corinne Griffith", + "Walter Miller" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Girl Dodger", + "year": 1919, + "cast": [ + "Charles Ray", + "Doris May" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Girl from Outside", + "year": 1919, + "cast": [ + "Clara Horton", + "Cullen Landis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Girl in Bohemia", + "year": 1919, + "cast": [ + "Peggy Hyland", + "Josef Swickard" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Girl Problem", + "year": 1919, + "cast": [ + "Corinne Griffith", + "Agnes Ayres" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Girl Who Stayed at Home", + "year": 1919, + "cast": [ + "Adolf Lestina", + "Carol Dempster" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Girl with No Regrets", + "year": 1919, + "cast": [ + "Peggy Hyland", + "Harry von Meter" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Girl-Woman", + "year": 1919, + "cast": [ + "Gladys Leslie", + "Maurice Costello" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Girls", + "year": 1919, + "cast": [ + "Marguerite Clark", + "Helene Chadwick" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "The Glorious Lady", + "year": 1919, + "cast": [ + "Olive Thomas", + "Matt Moore", + "Evelyn Brent" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "God's Outlaw", + "year": 1919, + "cast": [ + "Francis X. Bushman", + "Helen Dunbar" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Gold Cure", + "year": 1919, + "cast": [ + "Viola Dana", + "Jack McGowan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Golden Shower", + "year": 1919, + "cast": [ + "Frank Morgan", + "Estelle Taylor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Good Gracious, Annabelle", + "year": 1919, + "cast": [ + "Billie Burke", + "Herbert Rawlinson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Gray Horizon", + "year": 1919, + "cast": [ + "Sessue Hayakawa", + "Eileen Percy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Gray Towers Mystery", + "year": 1919, + "cast": [ + "Gladys Leslie", + "Frank Morgan" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Gray Wolf's Ghost", + "year": 1919, + "cast": [ + "H. B. Warner", + "Marin Sais" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Greased Lightning", + "year": 1919, + "cast": [ + "Charles Ray", + "Wanda Hawley" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Great Air Robbery", + "year": 1919, + "cast": [ + "Ormer Locklear", + "Allan Forrest" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Great Romance", + "year": 1919, + "cast": [ + "Harold Lockwood", + "Rubye De Remer" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Great Victory", + "year": 1919, + "cast": [ + "Creighton Hale", + "Helen Ferguson" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "The Greatest Question", + "year": 1919, + "cast": [ + "Lillian Gish", + "Robert Harron", + "Ralph Graves" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Grim Game", + "year": 1919, + "cast": [ + "Harry Houdini", + "Thomas Jefferson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Gun Fightin' Gentleman", + "year": 1919, + "cast": [ + "Harry Carey", + "J. Barney Sherry" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Happiness a la Mode", + "year": 1919, + "cast": [ + "Constance Talmadge", + "Harrison Ford" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Happy Though Married", + "year": 1919, + "cast": [ + "Enid Bennett", + "Hallam Cooley" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hard Boiled", + "year": 1919, + "cast": [ + "Dorothy Dalton", + "William Courtright" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Haunted Bedroom", + "year": 1919, + "cast": [ + "Enid Bennett", + "Jack Nelson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Haunting Shadows", + "year": 1919, + "cast": [ + "H. B. Warner", + "Margaret Livingston" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Hawthorne of the U.S.A.", + "year": 1919, + "cast": [ + "Wallace Reid", + "Lila Lee" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hay Foot, Straw Foot", + "year": 1919, + "cast": [ + "Charles Ray", + "Doris May" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Heart in Pawn", + "year": 1919, + "cast": [ + "Sessue Hayakawa", + "Vola Vale" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Heart o' the Hills", + "year": 1919, + "cast": [ + "Mary Pickford", + "Harold Goodwin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Heart of Wetona", + "year": 1919, + "cast": [ + "Norma Talmadge", + "Fred Huntley" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Heart of Youth", + "year": 1919, + "cast": [ + "Lila Lee", + "Tom Forman" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hearts Asleep", + "year": 1919, + "cast": [ + "Bessie Barriscale", + "Vola Vale" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Heartsease", + "year": 1919, + "cast": [ + "Tom Moore", + "Helene Chadwick" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hell-Roarin' Reform", + "year": 1919, + "cast": [ + "Tom Mix", + "Kathleen O'Connor" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Hellion", + "year": 1919, + "cast": [ + "Margarita Fischer", + "Emory Johnson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Help! Help! Police!", + "year": 1919, + "cast": [ + "George Walsh", + "Eric Mayne" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Her Code of Honor", + "year": 1919, + "cast": [ + "Florence Reed", + "William Desmond" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Her Kingdom of Dreams", + "year": 1919, + "cast": [ + "Anita Stewart", + "Anna Q. Nilsson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Her Purchase Price", + "year": 1919, + "cast": [ + "Bessie Barriscale", + "Alan Roscoe" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Here Comes the Bride", + "year": 1919, + "cast": [ + "John Barrymore", + "Frank Losee" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Highest Trump", + "year": 1919, + "cast": [ + "Earle Williams", + "Grace Darmond" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "His Debt", + "year": 1919, + "cast": [ + "Sessue Hayakawa", + "Jane Novak" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "His Divorced Wife", + "year": 1919, + "cast": [ + "Monroe Salisbury", + "Charles Le Moyne" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "His Majesty, the American", + "year": 1919, + "cast": [ + "Douglas Fairbanks", + "Marjorie Daw" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "His Official Fiancée", + "year": 1919, + "cast": [ + "Vivian Martin", + "Forrest Stanley", + "Vera Sisson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "His Parisian Wife", + "year": 1919, + "cast": [ + "Elsie Ferguson", + "David Powell" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "His Wife's Friend", + "year": 1919, + "cast": [ + "Dorothy Dalton", + "Warren Cook" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Homebreaker", + "year": 1919, + "cast": [ + "Dorothy Dalton", + "Douglas MacLean" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Home", + "year": 1919, + "cast": [ + "Mildred Harris", + "Frank Elliott" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Home Town Girl", + "year": 1919, + "cast": [ + "Vivian Martin", + "Ralph Graves" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Hoodlum", + "year": 1919, + "cast": [ + "Mary Pickford", + "Ralph Lewis", + "Kenneth Harlan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hoop-La", + "year": 1919, + "cast": [ + "Billie Rhodes", + "Bertram Grassby" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hornet's Nest", + "year": 1919, + "cast": [ + "Earle Williams", + "Vola Vale" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A House Divided", + "year": 1919, + "cast": [ + "Sylvia Breamer", + "Herbert Rawlinson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The House of Intrigue", + "year": 1919, + "cast": [ + "Mignon Anderson", + "Lloyd Bacon" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Human Desire", + "year": 1919, + "cast": [ + "Anita Stewart", + "Conway Tearle", + "Vernon Steele" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Hushed Hour", + "year": 1919, + "cast": [ + "Blanche Sweet", + "Milton Sills" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Illustrious Prince", + "year": 1919, + "cast": [ + "Sessue Hayakawa", + "Mabel Ballin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "I'll Get Him Yet", + "year": 1919, + "cast": [ + "Dorothy Gish", + "Richard Barthelmess" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Imp", + "year": 1919, + "cast": [ + "Elsie Janis", + "Joe King" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Impossible Catherine", + "year": 1919, + "cast": [ + "Virginia Pearson", + "William B. Davidson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "In for Thirty Days", + "year": 1919, + "cast": [ + "May Allison", + "Robert Ellis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "In His Brother's Place", + "year": 1919, + "cast": [ + "Hale Hamilton", + "Marguerite Snow" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "In Honor's Web", + "year": 1919, + "cast": [ + "Harry T. Morey", + "Agnes Ayres" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "In Mizzoura", + "year": 1919, + "cast": [ + "Noah Beery", + "Eileen Percy", + "Monte Blue" + ], + "genres": [ + "Western" + ] + }, + { + "title": "In Old Kentucky", + "year": 1919, + "cast": [ + "Anita Stewart", + "Mahlon Hamilton" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "In Wrong", + "year": 1919, + "cast": [ + "Jack Pickford", + "Marguerite De La Motte" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Indestructible Wife", + "year": 1919, + "cast": [ + "Alice Brady", + "Anne Cornwall", + "Percy Marmont" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "The Intrusion of Isabel", + "year": 1919, + "cast": [ + "Mary Miles Minter", + "Allan Forrest" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Invisible Bond", + "year": 1919, + "cast": [ + "Irene Castle", + "Huntley Gordon", + "Claire Adams" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Island of Intrigue", + "year": 1919, + "cast": [ + "May Allison", + "Jack Mower" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Isle of Conquest", + "year": 1919, + "cast": [ + "Norma Talmadge", + "Wyndham Standing", + "Charles K. Gerrard" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "It Pays to Advertise", + "year": 1919, + "cast": [ + "Bryant Washburn", + "Lois Wilson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "It's a Bear", + "year": 1919, + "cast": [ + "Taylor Holmes", + "Vivian Reed" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Jacques of the Silver North", + "year": 1919, + "cast": [ + "Mitchell Lewis", + "Fritzi Brunette" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Jane Goes A' Wooing", + "year": 1919, + "cast": [ + "Vivian Martin", + "Niles Welch" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Jinx", + "year": 1919, + "cast": [ + "Mabel Normand", + "Ogden Crane" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "John Petticoats", + "year": 1919, + "cast": [ + "William S. Hart", + "Ethel Shannon" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Johnny Get Your Gun", + "year": 1919, + "cast": [ + "Fred Stone", + "James Cruze" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Johnny-on-the-Spot", + "year": 1919, + "cast": [ + "Hale Hamilton", + "Louise Lovely", + "Philo McCullough" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Josselyn's Wife", + "year": 1919, + "cast": [ + "Bessie Barriscale", + "Nigel Barrie" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Joyous Liar", + "year": 1919, + "cast": [ + "J. Warren Kerrigan", + "Lillian Walker" + ], + "genres": [ + "Comedy", + "Crime" + ] + }, + { + "title": "Jubilo", + "year": 1919, + "cast": [ + "Will Rogers", + "Josie Sedgwick" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Jungle Trail", + "year": 1919, + "cast": [ + "William Farnum", + "Anna Luther" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Kathleen Mavourneen", + "year": 1919, + "cast": [ + "Theda Bara", + "Raymond McKee" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Kitty Kelly, M.D.", + "year": 1919, + "cast": [ + "Bessie Barriscale", + "Jack Holt" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Knickerbocker Buckaroo", + "year": 1919, + "cast": [ + "Douglas Fairbanks", + "William Wellman" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Lady of Red Butte", + "year": 1919, + "cast": [ + "Dorothy Dalton", + "Tully Marshall" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Lasca", + "year": 1919, + "cast": [ + "Frank Mayo", + "Edith Roberts" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Last of the Duanes", + "year": 1919, + "cast": [ + "William Farnum", + "Louise Lovely" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Last of His People", + "year": 1919, + "cast": [ + "Mitchell Lewis", + "Harry Lonsdale" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Law of Men", + "year": 1919, + "cast": [ + "Enid Bennett", + "Niles Welch" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Leave It to Susan", + "year": 1919, + "cast": [ + "Madge Kennedy", + "Wallace MacDonald" + ], + "genres": [ + "Comedy", + "Western" + ] + }, + { + "title": "Let's Elope", + "year": 1919, + "cast": [ + "Marguerite Clark", + "Gaston Glass" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Life Line", + "year": 1919, + "cast": [ + "Jack Holt", + "Wallace Beery" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Life's a Funny Proposition", + "year": 1919, + "cast": [ + "William Desmond", + "Louise Lovely" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Light", + "year": 1919, + "cast": [ + "Theda Bara", + "Robert D. Walker" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Light of Victory", + "year": 1919, + "cast": [ + "Monroe Salisbury", + "Betty Compson" + ], + "genres": [ + "War" + ] + }, + { + "title": "The Lincoln Highwayman", + "year": 1919, + "cast": [ + "William Russell", + "Frank Brownlee" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Lion and the Mouse", + "year": 1919, + "cast": [ + "Alice Joyce", + "Conrad Nagel", + "Anders Randolf" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Lion's Den", + "year": 1919, + "cast": [ + "Bert Lytell", + "Alice Lake" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Little Brother of the Rich", + "year": 1919, + "cast": [ + "Frank Mayo", + "Lila Leslie", + "John Gilbert" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Little Comrade", + "year": 1919, + "cast": [ + "Vivian Martin", + "Niles Welch" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Little Diplomat", + "year": 1919, + "cast": [ + "Marie Osborne", + "Lydia Knott" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Little White Savage", + "year": 1919, + "cast": [ + "Carmel Myers", + "Harry Hilliard" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Lombardi, Ltd.", + "year": 1919, + "cast": [ + "Bert Lytell", + "Alice Lake" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Lone Star Ranger", + "year": 1919, + "cast": [ + "William Farnum", + "Louise Lovely" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Lone Wolf's Daughter", + "year": 1919, + "cast": [ + "Bertram Grassby", + "Louise Glaum" + ], + "genres": [ + "Crime", + "Thriller" + ] + }, + { + "title": "The Long Arm of Mannister", + "year": 1919, + "cast": [ + "Henry B. Walthall", + "Helene Chadwick" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Long Lane's Turning", + "year": 1919, + "cast": [ + "Henry B. Walthall", + "Mary Charleson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Loot", + "year": 1919, + "cast": [ + "Ora Carew", + "Joseph W. Girard" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Lord and Lady Algy", + "year": 1919, + "cast": [ + "Tom Moore", + "Naomi Childers" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Lost Battalion", + "year": 1919, + "cast": [ + "Helen Ferguson", + "Gaston Glass" + ], + "genres": [ + "War" + ] + }, + { + "title": "Lost Money", + "year": 1919, + "cast": [ + "Madlaine Traverse", + "Henry Hebert" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Lost Princess", + "year": 1919, + "cast": [ + "Albert Ray", + "Elinor Fair" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Lottery Man", + "year": 1919, + "cast": [ + "Wallace Reid", + "Wanda Hawley" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Louisiana", + "year": 1919, + "cast": [ + "Vivian Martin", + "Noah Beery" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Love Auction", + "year": 1919, + "cast": [ + "Virginia Pearson", + "Hugh Thompson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Love Cheat", + "year": 1919, + "cast": [ + "June Caprice", + "Creighton Hale" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Love Is Love", + "year": 1919, + "cast": [ + "Albert Ray", + "Elinor Fair" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Love's Prisoner", + "year": 1919, + "cast": [ + "Olive Thomas", + "Ann Kroman" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Love Burglar", + "year": 1919, + "cast": [ + "Wallace Reid", + "Anna Q. Nilsson", + "Raymond Hatton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Love Insurance", + "year": 1919, + "cast": [ + "Bryant Washburn", + "Lois Wilson", + "Theodore Roberts" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Loves of Letty", + "year": 1919, + "cast": [ + "Pauline Frederick", + "John Bowers" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Love That Dares", + "year": 1919, + "cast": [ + "Madlaine Traverse", + "Tom Santschi" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Luck and Pluck", + "year": 1919, + "cast": [ + "George Walsh", + "Virginia Lee" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Luck in Pawn", + "year": 1919, + "cast": [ + "Marguerite Clark", + "Charles Meredith" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Lure of Ambition", + "year": 1919, + "cast": [ + "Theda Bara", + "Thurlow Bergen" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Maggie Pepper", + "year": 1919, + "cast": [ + "Ethel Clayton", + "Elliott Dexter" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Male and Female", + "year": 1919, + "cast": [ + "Gloria Swanson", + "Thomas Meighan" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "A Man and His Money", + "year": 1919, + "cast": [ + "Tom Moore", + "Seena Owen" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Man Beneath", + "year": 1919, + "cast": [ + "Sessue Hayakawa", + "Helen Jerome Eddy", + "John Gilbert" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Man Hunter", + "year": 1919, + "cast": [ + "William Farnum", + "Louise Lovely", + "Charles Clary" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Man in the Moonlight", + "year": 1919, + "cast": [ + "Monroe Salisbury", + "Colleen Moore" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Man of Honor", + "year": 1919, + "cast": [ + "Harold Lockwood", + "Bessie Eyton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Man Who Stayed at Home", + "year": 1919, + "cast": [ + "King Baggot", + "Claire Whitney" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Man Who Turned White", + "year": 1919, + "cast": [ + "H. B. Warner", + "Barbara Castleton" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Man Who Won", + "year": 1919, + "cast": [ + "Harry T. Morey", + "Maurice Costello", + "Betty Blythe" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Man's Country", + "year": 1919, + "cast": [ + "Alma Rubens", + "Alan Roscoe", + "Lon Chaney" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Man's Desire", + "year": 1919, + "cast": [ + "Lewis Stone", + "Jane Novak" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Man's Fight", + "year": 1919, + "cast": [ + "Dustin Farnum", + "Harry von Meter" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Marked Men", + "year": 1919, + "cast": [ + "Harry Carey", + "Charles Le Moyne" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Market of Souls", + "year": 1919, + "cast": [ + "Dorothy Dalton", + "Holmes Herbert", + "Philo McCullough" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Marie, Ltd.", + "year": 1919, + "cast": [ + "Alice Brady", + "Frank Losee" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Marriage Price", + "year": 1919, + "cast": [ + "Elsie Ferguson", + "Wyndham Standing", + "Lionel Atwill" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Married in Haste", + "year": 1919, + "cast": [ + "Albert Ray", + "Elinor Fair" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mary Regan", + "year": 1919, + "cast": [ + "Anita Stewart", + "Frank Mayo" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Mayor of Filbert", + "year": 1919, + "cast": [ + "Jack Richardson", + "Belle Bennett" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Me and Captain Kidd", + "year": 1919, + "cast": [ + "Evelyn Greeley", + "Raymond McKee" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Men, Women, and Money", + "year": 1919, + "cast": [ + "Ethel Clayton", + "James Neill" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Merry-Go-Round", + "year": 1919, + "cast": [ + "Peggy Hyland", + "Jack Mulhall" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Microbe", + "year": 1919, + "cast": [ + "Viola Dana", + "Kenneth Harlan", + "Arthur Maude" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "A Midnight Romance", + "year": 1919, + "cast": [ + "Anita Stewart", + "Jack Holt" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Millionaire Pirate", + "year": 1919, + "cast": [ + "Monroe Salisbury", + "Ruth Clifford" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "The Mind-the-Paint Girl", + "year": 1919, + "cast": [ + "Anita Stewart", + "Conway Tearle", + "Vernon Steele" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Mints of Hell", + "year": 1919, + "cast": [ + "William Desmond", + "Vivian Rich" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Miracle Man", + "year": 1919, + "cast": [ + "Lon Chaney", + "Betty Compson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Miracle of Love", + "year": 1919, + "cast": [ + "Lucy Cotton", + "Wyndham Standing" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Misleading Widow", + "year": 1919, + "cast": [ + "Billie Burke", + "Madelyn Clare" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Miss Adventure", + "year": 1919, + "cast": [ + "Peggy Hyland", + "Gertrude Messinger" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Miss Dulcie from Dixie", + "year": 1919, + "cast": [ + "Gladys Leslie", + "Julia Swayne Gordon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Modern Husbands", + "year": 1919, + "cast": [ + "Henry B. Walthall", + "Claire Du Brey" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Molly of the Follies", + "year": 1919, + "cast": [ + "Margarita Fischer", + "Jack Mower" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Money Corral", + "year": 1919, + "cast": [ + "William S. Hart", + "Jane Novak", + "Herschel Mayall" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Moonshine Trail", + "year": 1919, + "cast": [ + "Sylvia Breamer", + "Julia Swayne Gordon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Moral Deadline", + "year": 1919, + "cast": [ + "June Elvidge", + "Frank Mayo" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "More Deadly Than the Male", + "year": 1919, + "cast": [ + "Ethel Clayton", + "Herbert Heyes" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mrs. Wiggs of the Cabbage Patch", + "year": 1919, + "cast": [ + "Marguerite Clark", + "Mary Carr" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "My Little Sister", + "year": 1919, + "cast": [ + "Evelyn Nesbit", + "Leslie Austin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Never Say Quit", + "year": 1919, + "cast": [ + "George Walsh", + "Jean Acker" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The New Moon", + "year": 1919, + "cast": [ + "Norma Talmadge", + "Pedro de Cordoba", + "Charles K. Gerrard" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Nobody Home", + "year": 1919, + "cast": [ + "Dorothy Gish", + "George Fawcett", + "Ralph Graves" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Nugget Nell", + "year": 1919, + "cast": [ + "Dorothy Gish", + "David Butler" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Oakdale Affair", + "year": 1919, + "cast": [ + "Evelyn Greeley", + "Eric Mayne" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Oh Boy!", + "year": 1919, + "cast": [ + "June Caprice", + "Creighton Hale", + "Zena Keefe" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Oh, You Women!", + "year": 1919, + "cast": [ + "Gaston Glass", + "Louise Huff" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "One of the Finest", + "year": 1919, + "cast": [ + "Tom Moore", + "Seena Owen" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "One-Thing-At-a-Time O'Day", + "year": 1919, + "cast": [ + "Bert Lytell", + "Eileen Percy" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "One Week of Life", + "year": 1919, + "cast": [ + "Pauline Frederick", + "Thomas Holding" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Open Door", + "year": 1919, + "cast": [ + "Anna Lehr", + "Walter Miller" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Open Your Eyes", + "year": 1919, + "cast": [ + "Viola Allen", + "Ben Lyon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Other Half", + "year": 1919, + "cast": [ + "Florence Vidor", + "David Butler" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Other Men's Wives", + "year": 1919, + "cast": [ + "Dorothy Dalton", + "Forrest Stanley", + "Holmes Herbert" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Our Better Selves", + "year": 1919, + "cast": [ + "Fannie Ward", + "Lew Cody" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "Out of the Fog", + "year": 1919, + "cast": [ + "Alla Nazimova", + "Charles Bryant" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Out of the Shadow", + "year": 1919, + "cast": [ + "Pauline Frederick", + "Wyndham Standing" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Out Yonder", + "year": 1919, + "cast": [ + "Olive Thomas", + "Huntley Gordon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Outcasts of Poker Flat", + "year": 1919, + "cast": [ + "Harry Carey", + "Cullen Landis", + "Gloria Hope" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Over the Garden Wall", + "year": 1919, + "cast": [ + "Bessie Love", + "Otto Lederer" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Pagan God", + "year": 1919, + "cast": [ + "H.B. Warner", + "Carmen Phillips" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Paid in Advance", + "year": 1919, + "cast": [ + "Dorothy Phillips", + "Lon Chaney" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Paid in Full", + "year": 1919, + "cast": [ + "Pauline Frederick", + "Wyndham Standing" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Painted World", + "year": 1919, + "cast": [ + "Julia Swayne Gordon", + "Harry Northrup" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Parisian Tigress", + "year": 1919, + "cast": [ + "Viola Dana", + "Henry Kolker" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Partners Three", + "year": 1919, + "cast": [ + "Enid Bennett", + "Casson Ferguson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Peace of Roaring River", + "year": 1919, + "cast": [ + "Pauline Frederick", + "Hardee Kirkland" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Peg o' My Heart", + "year": 1919, + "cast": [ + "Wanda Hawley", + "Thomas Meighan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Peggy Does Her Darndest", + "year": 1919, + "cast": [ + "May Allison", + "Rosemary Theby" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Peppy Polly", + "year": 1919, + "cast": [ + "Dorothy Gish", + "Richard Barthelmess" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Perfect Lover", + "year": 1919, + "cast": [ + "Eugene O'Brien", + "Mary Boland" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Perils of Thunder Mountain", + "year": 1919, + "cast": [ + "Antonio Moreno", + "Carol Holloway" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Pest", + "year": 1919, + "cast": [ + "Mabel Normand", + "John Bowers", + "Charles K. Gerrard" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Petal on the Current", + "year": 1919, + "cast": [ + "Mary MacLaren", + "Gertrude Claire" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Pettigrew's Girl", + "year": 1919, + "cast": [ + "Ethel Clayton", + "Monte Blue", + "Charles K. Gerrard" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Piccadilly Jim", + "year": 1919, + "cast": [ + "Owen Moore", + "Zena Keefe" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Pitfalls of a Big City", + "year": 1919, + "cast": [ + "Gladys Brockwell", + "Neva Gerber" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Pleasant Devil", + "year": 1919, + "cast": [ + "Lew Cody", + "Eileen Percy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Please Get Married", + "year": 1919, + "cast": [ + "Viola Dana", + "Antrim Short" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Prince and Betty", + "year": 1919, + "cast": [ + "William Desmond", + "Mary Thurman" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Pointing Finger", + "year": 1919, + "cast": [ + "Mary MacLaren", + "David Butler" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Poor Boob", + "year": 1919, + "cast": [ + "Bryant Washburn", + "Wanda Hawley" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Poor Relations", + "year": 1919, + "cast": [ + "Florence Vidor", + "William De Vaull" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Poppy Girl's Husband", + "year": 1919, + "cast": [ + "William S. Hart", + "Juanita Hansen" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Pretty Smooth", + "year": 1919, + "cast": [ + "Priscilla Dean", + "Francis McDonald" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Price of Innocence", + "year": 1919, + "cast": [ + "Anders Randolf", + "Margaret Campbell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Prince and Betty", + "year": 1919, + "cast": [ + "William Desmond", + "Mary Thurman" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Probation Wife", + "year": 1919, + "cast": [ + "Norma Talmadge", + "Thomas Meighan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Prodigal Liar", + "year": 1919, + "cast": [ + "William Desmond", + "Betty Compson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Profiteers", + "year": 1919, + "cast": [ + "Fannie Ward", + "Edwin Stevens" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Prudence on Broadway", + "year": 1919, + "cast": [ + "Olive Thomas", + "Francis McDonald" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Puppy Love", + "year": 1919, + "cast": [ + "Lila Lee", + "Edna Murphy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Put Up Your Hands!", + "year": 1919, + "cast": [ + "Margarita Fischer", + "Emory Johnson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Putting It Over", + "year": 1919, + "cast": [ + "Bryant Washburn", + "Shirley Mason" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Putting One Over", + "year": 1919, + "cast": [ + "George Walsh", + "Matthew Betz" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Quickening Flame", + "year": 1919, + "cast": [ + "Montagu Love", + "June Elvidge" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Ravished Armenia", + "year": 1919, + "cast": [ + "Aurora Mardiganian", + "Irving Cummings" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Rebellious Bride", + "year": 1919, + "cast": [ + "Peggy Hyland", + "George Nichols" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Red Hot Dollars", + "year": 1919, + "cast": [ + "Charles Ray", + "Gladys George" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Red Lantern", + "year": 1919, + "cast": [ + "Alla Nazimova", + "Noah Beery" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Red Viper", + "year": 1919, + "cast": [ + "Gareth Hughes", + "Ruth Stonehouse", + "John Gilbert" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Redhead", + "year": 1919, + "cast": [ + "Alice Brady", + "Conrad Nagel" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "A Regular Girl", + "year": 1919, + "cast": [ + "Elsie Janis", + "Matt Moore" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Rescuing Angel", + "year": 1919, + "cast": [ + "Shirley Mason", + "Forrest Stanley" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Restless Souls", + "year": 1919, + "cast": [ + "Alma Rubens", + "Jack Conway" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Rider of the Law", + "year": 1919, + "cast": [ + "Harry Carey", + "Gloria Hope" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Riders of Vengeance", + "year": 1919, + "cast": [ + "Harry Carey", + "Seena Owen" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Right to Happiness", + "year": 1919, + "cast": [ + "Dorothy Phillips", + "Winter Hall" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Right to Lie", + "year": 1919, + "cast": [ + "Dolores Cassinelli", + "Joe King" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Roaring Road", + "year": 1919, + "cast": [ + "Wallace Reid", + "Ann Little" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "A Rogue's Romance", + "year": 1919, + "cast": [ + "Earle Williams", + "Harry von Meter" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Romance and Arabella", + "year": 1919, + "cast": [ + "Constance Talmadge", + "Harrison Ford" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Romance of Happy Valley", + "year": 1919, + "cast": [ + "Lillian Gish", + "Robert Harron" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Roped", + "year": 1919, + "cast": [ + "Harry Carey", + "Neva Gerber" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Rose o' the River", + "year": 1919, + "cast": [ + "Lila Lee", + "George Fisher" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Rose of the West", + "year": 1919, + "cast": [ + "Madlaine Traverse", + "Tom Santschi" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Rough-Riding Romance", + "year": 1919, + "cast": [ + "Tom Mix", + "Juanita Hansen" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Rustling a Bride", + "year": 1919, + "cast": [ + "Lila Lee", + "Monte Blue" + ], + "genres": [ + "Comedy", + "Western" + ] + }, + { + "title": "Sacred Silence", + "year": 1919, + "cast": [ + "Agnes Ayres", + "George MacQuarrie" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sadie Love", + "year": 1919, + "cast": [ + "Billie Burke", + "Hedda Hopper" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Sagebrush Hamlet", + "year": 1919, + "cast": [ + "William Desmond", + "Marguerite De La Motte" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Sahara", + "year": 1919, + "cast": [ + "Louise Glaum", + "Matt Moore" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Satan Junior", + "year": 1919, + "cast": [ + "Viola Dana", + "Milton Sills" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Scarlet Days", + "year": 1919, + "cast": [ + "Richard Barthelmess", + "Eugenie Besserer" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Scarlet Shadow", + "year": 1919, + "cast": [ + "Mae Murray", + "Ralph Graves" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Sealed Envelope", + "year": 1919, + "cast": [ + "Fritzi Brunette", + "Joseph W. Girard" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Sealed Hearts", + "year": 1919, + "cast": [ + "Eugene O'Brien", + "Robert Edeson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Secret Service", + "year": 1919, + "cast": [ + "Robert Warwick", + "Wanda Hawley" + ], + "genres": [ + "War" + ] + }, + { + "title": "Shadows", + "year": 1919, + "cast": [ + "Geraldine Farrar", + "Milton Sills" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Shadows of Suspicion", + "year": 1919, + "cast": [ + "Harold Lockwood", + "Naomi Childers" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Shadows of the Past", + "year": 1919, + "cast": [ + "Anita Stewart", + "Harry T. Morey" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Sheriff's Son", + "year": 1919, + "cast": [ + "Charles Ray", + "Seena Owen" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Should a Husband Forgive?", + "year": 1919, + "cast": [ + "Miriam Cooper", + "Eric Mayne" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Should a Woman Tell?", + "year": 1919, + "cast": [ + "Alice Lake", + "Jack Mulhall" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Silent Strength", + "year": 1919, + "cast": [ + "Harry T. Morey", + "Betty Blythe" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Silk-Lined Burglar", + "year": 1919, + "cast": [ + "Priscilla Dean", + "Ashton Dearholt" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Silver King", + "year": 1919, + "cast": [ + "William Faversham", + "Barbara Castleton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Silver Girl", + "year": 1919, + "cast": [ + "Frank Keenan", + "Irene Rich" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Siren's Song", + "year": 1919, + "cast": [ + "Theda Bara", + "Alan Roscoe" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sis Hopkins", + "year": 1919, + "cast": [ + "Mabel Normand", + "John Bowers", + "Sam De Grasse" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Six Feet Four", + "year": 1919, + "cast": [ + "William Russell", + "Vola Vale" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Sleeping Lion", + "year": 1919, + "cast": [ + "Monroe Salisbury", + "Rhea Mitchell" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Smiles", + "year": 1919, + "cast": [ + "Jane Lee", + "Katherine Lee" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Snares of Paris", + "year": 1919, + "cast": [ + "Madlaine Traverse", + "Charles Arling" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Sneak", + "year": 1919, + "cast": [ + "Gladys Brockwell", + "William Scott" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Society Exile", + "year": 1919, + "cast": [ + "Elsie Ferguson", + "Zeffie Tilbury" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Soldiers of Fortune", + "year": 1919, + "cast": [ + "Wallace Beery", + "Ogden Crane" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Some Bride", + "year": 1919, + "cast": [ + "Viola Dana", + "Irving Cummings" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Some Liar", + "year": 1919, + "cast": [ + "William Russell", + "Eileen Percy" + ], + "genres": [ + "Western", + "Comedy" + ] + }, + { + "title": "Something to Do", + "year": 1919, + "cast": [ + "Bryant Washburn", + "Ann Little", + "Charles K. Gerrard" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Spark Divine", + "year": 1919, + "cast": [ + "Alice Joyce", + "Eulalie Jensen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Speedy Meade", + "year": 1919, + "cast": [ + "Katherine MacDonald", + "Claire Adams" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Speed Maniac", + "year": 1919, + "cast": [ + "Tom Mix", + "Eva Novak" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Spender", + "year": 1919, + "cast": [ + "Bert Lytell", + "William V. Mong" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Spite Bride", + "year": 1919, + "cast": [ + "Olive Thomas", + "Jack Mulhall" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Spitfire of Seville", + "year": 1919, + "cast": [ + "Hedda Nova", + "Thurston Hall" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Splendid Sin", + "year": 1919, + "cast": [ + "Madlaine Traverse", + "Charles Clary" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Sporting Chance", + "year": 1919, + "cast": [ + "Ethel Clayton", + "Jack Holt", + "Anna Q. Nilsson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Sporting Chance", + "year": 1919, + "cast": [ + "William Russell", + "Fritzi Brunette" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Spotlight Sadie", + "year": 1919, + "cast": [ + "Mae Marsh", + "Wallace MacDonald" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Square Deal Sanderson", + "year": 1919, + "cast": [ + "William S. Hart", + "Ann Little" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Steel King", + "year": 1919, + "cast": [ + "Montagu Love", + "June Elvidge" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Stepping Out", + "year": 1919, + "cast": [ + "Enid Bennett", + "Niles Welch" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Stitch in Time", + "year": 1919, + "cast": [ + "Agnes Ayres", + "Gladys Leslie" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Strictly Confidential", + "year": 1919, + "cast": [ + "Madge Kennedy", + "John Bowers" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Stronger Vow", + "year": 1919, + "cast": [ + "Geraldine Farrar", + "Milton Sills" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sue of the South", + "year": 1919, + "cast": [ + "Edith Roberts", + "George Hackathorne" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Sundown Trail", + "year": 1919, + "cast": [ + "Monroe Salisbury", + "Carl Stockdale" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Tangled Threads", + "year": 1919, + "cast": [ + "Rosemary Theby", + "Nigel Barrie" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Taste of Life", + "year": 1919, + "cast": [ + "Edith Roberts", + "Billy Mason" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Teeth of the Tiger", + "year": 1919, + "cast": [ + "David Powell", + "Marguerite Courtot" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Temperamental Wife", + "year": 1919, + "cast": [ + "Constance Talmadge", + "Wyndham Standing" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Test of Honor", + "year": 1919, + "cast": [ + "John Barrymore", + "Constance Binney" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "That's Good", + "year": 1919, + "cast": [ + "Hale Hamilton", + "Herbert Prior" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Thieves", + "year": 1919, + "cast": [ + "Gladys Brockwell", + "William Scott" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Thin Ice", + "year": 1919, + "cast": [ + "Corinne Griffith", + "Charles Kent" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Third Degree", + "year": 1919, + "cast": [ + "Alice Joyce", + "Anders Randolf", + "Hedda Hopper" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Third Kiss", + "year": 1919, + "cast": [ + "Vivian Martin", + "Harrison Ford" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "This Hero Stuff", + "year": 1919, + "cast": [ + "William Russell", + "Winifred Westover" + ], + "genres": [ + "Western", + "Comedy" + ] + }, + { + "title": "Thou Shalt Not", + "year": 1919, + "cast": [ + "Evelyn Nesbit", + "Crauford Kent" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Three Men and a Girl", + "year": 1919, + "cast": [ + "Marguerite Clarlk", + "Richard Barthelmess", + "Percy Marmont" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Through the Wrong Door", + "year": 1919, + "cast": [ + "Madge Kennedy", + "John Bowers" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Thunderbolt", + "year": 1919, + "cast": [ + "Katherine MacDonald", + "Thomas Meighan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Thunderbolts of Fate", + "year": 1919, + "cast": [ + "House Peters", + "Anna Lehr" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Tiger Lily", + "year": 1919, + "cast": [ + "Margarita Fischer", + "Emory Johnson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Tin Pan Alley", + "year": 1919, + "cast": [ + "Albert Ray", + "Elinor Fair" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Toby's Bow", + "year": 1919, + "cast": [ + "Tom Moore", + "Doris Pawn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Told in the Hills", + "year": 1919, + "cast": [ + "Robert Warwick", + "Ann Little", + "Wanda Hawley" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Tong Man", + "year": 1919, + "cast": [ + "Sessue Hayakawa", + "Helen Jerome Eddy" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Too Many Crooks", + "year": 1919, + "cast": [ + "Gladys Leslie", + "Jean Paige" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Too Much Johnson", + "year": 1919, + "cast": [ + "Bryant Washburn", + "Lois Wilson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Toton the Apache", + "year": 1919, + "cast": [ + "Olive Thomas", + "Norman Kerry" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Trap", + "year": 1919, + "cast": [ + "Olive Tell", + "Rod La Rocque" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Treat 'Em Rough", + "year": 1919, + "cast": [ + "Tom Mix", + "Jane Novak" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Trembling Hour", + "year": 1919, + "cast": [ + "Helen Jerome Eddy", + "Kenneth Harlan" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "A Trick of Fate", + "year": 1919, + "cast": [ + "Bessie Barriscale", + "Gayne Whitman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Trixie from Broadway", + "year": 1919, + "cast": [ + "Margarita Fischer", + "Emory Johnson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "True Heart Susie", + "year": 1919, + "cast": [ + "Lillian Gish", + "Bobby Harron" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Turn in the Road", + "year": 1919, + "cast": [ + "George Nichols", + "Lloyd Hughes" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Turning the Tables", + "year": 1919, + "cast": [ + "Dorothy Gish", + "Raymond Cannon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Twin Pawns", + "year": 1919, + "cast": [ + "Mae Murray", + "Warner Oland" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Two Brides", + "year": 1919, + "cast": [ + "Lina Cavalieri", + "Warburton Gamble" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Two Women", + "year": 1919, + "cast": [ + "Anita Stewart", + "Earle Williams" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Under Suspicion", + "year": 1919, + "cast": [ + "Ora Carew", + "Charles Clary" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Under the Top", + "year": 1919, + "cast": [ + "Fred Stone", + "Ella Hall", + "James Cruze" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Unknown Love", + "year": 1919, + "cast": [ + "Dolores Cassinelli", + "E.K. Lincoln" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "The Unknown Quantity", + "year": 1919, + "cast": [ + "Corinne Griffith", + "Huntley Gordon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Unpainted Woman", + "year": 1919, + "cast": [ + "Mary MacLaren", + "Thurston Hall" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Unpardonable Sin", + "year": 1919, + "cast": [ + "Blanche Sweet", + "Mary Alden", + "Wallace Beery" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "The Uplifters", + "year": 1919, + "cast": [ + "May Allison", + "Howard Gaye" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Upstairs", + "year": 1919, + "cast": [ + "Mabel Normand", + "Cullen Landis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Upstairs and Down", + "year": 1919, + "cast": [ + "Olive Thomas", + "David Butler" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Usurper", + "year": 1919, + "cast": [ + "Earle Williams", + "Louise Lovely" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Vagabond Luck", + "year": 1919, + "cast": [ + "Albert Ray", + "Elinor Fair" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Valley of the Giants", + "year": 1919, + "cast": [ + "Wallace Reid", + "Grace Darmond" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Venus in the East", + "year": 1919, + "cast": [ + "Bryant Washburn", + "Margery Wilson", + "Anna Q. Nilsson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Very Good Young Man", + "year": 1919, + "cast": [ + "Bryant Washburn", + "Helene Chadwick" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Victory", + "year": 1919, + "cast": [ + "Jack Holt", + "Seena Owen" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Virtuous Thief", + "year": 1919, + "cast": [ + "Enid Bennett", + "Niles Welch" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Veiled Adventure", + "year": 1919, + "cast": [ + "Harrison Ford", + "Constance Talmadge" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Vengeance of Durand", + "year": 1919, + "cast": [ + "Alice Joyce", + "Gustav von Seyffertitz", + "Percy Marmont" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Virtuous Model", + "year": 1919, + "cast": [ + "Dolores Cassinelli", + "Helen Lowell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Virtuous Thief", + "year": 1919, + "cast": [ + "Enid Bennett", + "Niles Welch" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Virtuous Vamp", + "year": 1919, + "cast": [ + "Constance Talmadge", + "Conway Tearle" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Wagon Tracks", + "year": 1919, + "cast": [ + "William S. Hart", + "Jane Novak" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Wanted: A Husband", + "year": 1919, + "cast": [ + "Billie Burke", + "Charles Willis Lane" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Water Lily", + "year": 1919, + "cast": [ + "Alice Mann", + "Donald Hall" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Way of a Woman", + "year": 1919, + "cast": [ + "Norma Talmadge", + "Conway Tearle" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Way of the Strong", + "year": 1919, + "cast": [ + "Anna Q. Nilsson", + "Harry Northrup" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Weaker Vessel", + "year": 1919, + "cast": [ + "Mary MacLaren", + "Thurston Hall" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Web of Chance", + "year": 1919, + "cast": [ + "Peggy Hyland", + "Harry Hamm" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Westerners", + "year": 1919, + "cast": [ + "Robert McKim", + "Wilfred Lucas" + ], + "genres": [ + "Western" + ] + }, + { + "title": "What Am I Bid?", + "year": 1919, + "cast": [ + "Mae Murray", + "Ralph Graves" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "What Every Woman Learns", + "year": 1919, + "cast": [ + "Enid Bennett", + "Milton Sills" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "What Every Woman Wants", + "year": 1919, + "cast": [ + "Grace Darmond", + "Wilfred Lucas" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "When a Girl Loves", + "year": 1919, + "cast": [ + "Mildred Harris", + "William Stowell" + ], + "genres": [ + "Western" + ] + }, + { + "title": "When a Man Loves", + "year": 1919, + "cast": [ + "Earle Williams", + "Margaret Loomis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "When a Man Rides Alone", + "year": 1919, + "cast": [ + "William Russell", + "Carl Stockdale" + ], + "genres": [ + "Western" + ] + }, + { + "title": "When Doctors Disagree", + "year": 1919, + "cast": [ + "Mabel Normand", + "Walter Hiers" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "When Fate Decides", + "year": 1919, + "cast": [ + "Madlaine Traverse", + "William Conklin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "When Men Desire", + "year": 1919, + "cast": [ + "Theda Bara", + "G. Raymond Nye" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "When the Clouds Roll By", + "year": 1919, + "cast": [ + "Douglas Fairbanks", + "Kathleen Clifford" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Where the West Begins", + "year": 1919, + "cast": [ + "William Russell", + "Eileen Percy", + "Cullen Landis" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The White Heather", + "year": 1919, + "cast": [ + "Holmes Herbert", + "Ben Alexander" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A White Man's Chance", + "year": 1919, + "cast": [ + "J. Warren Kerrigan", + "Lillian Walker" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Whitewashed Walls", + "year": 1919, + "cast": [ + "William Desmond", + "Fritzi Brunette" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Who Cares?", + "year": 1919, + "cast": [ + "Constance Talmadge", + "Harrison Ford" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Who Will Marry Me?", + "year": 1919, + "cast": [ + "Carmel Myers", + "Thurston Hall" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Whom the Gods Would Destroy", + "year": 1919, + "cast": [ + "Jack Mulhall", + "Pauline Starke" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Why Smith Left Home", + "year": 1919, + "cast": [ + "Bryant Washburn", + "Lois Wilson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Wicked Darling", + "year": 1919, + "cast": [ + "Priscilla Dean", + "Lon Chaney" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Widow by Proxy", + "year": 1919, + "cast": [ + "Marguerite Clark", + "Agnes Vernon", + "Nigel Barrie" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Wilderness Trail", + "year": 1919, + "cast": [ + "Tom Mix", + "Colleen Moore" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Winchester Woman", + "year": 1919, + "cast": [ + "Alice Joyce", + "Percy Marmont" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Wings of the Morning", + "year": 1919, + "cast": [ + "William Farnum", + "Herschel Mayall" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Winning Girl", + "year": 1919, + "cast": [ + "Shirley Mason", + "Theodore Roberts" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Winning Stroke", + "year": 1919, + "cast": [ + "George Walsh", + "Jane McAlpine" + ], + "genres": [ + "Sports" + ] + }, + { + "title": "The Wishing Ring Man", + "year": 1919, + "cast": [ + "Bessie Love", + "Claire Du Brey" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Witness for the Defense", + "year": 1919, + "cast": [ + "Elsie Ferguson", + "Warner Oland" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Wolf", + "year": 1919, + "cast": [ + "Earle Williams", + "Jane Novak" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Wolves of the Night", + "year": 1919, + "cast": [ + "William Farnum", + "Louise Lovely", + "Lamar Johnstone" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Woman Michael Married", + "year": 1919, + "cast": [ + "Bessie Barriscale", + "Jack Holt" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Woman Next Door", + "year": 1919, + "cast": [ + "Ethel Clayton", + "Emory Johnson", + "Noah Beery" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Woman of Pleasure", + "year": 1919, + "cast": [ + "Blanche Sweet", + "Wheeler Oakman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Woman on the Index", + "year": 1919, + "cast": [ + "Pauline Frederick", + "Wyndham Standing" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Woman There Was", + "year": 1919, + "cast": [ + "Theda Bara", + "William B. Davidson" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Woman Thou Gavest Me", + "year": 1919, + "cast": [ + "Jack Holt", + "Katherine MacDonald", + "Milton Sills" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Woman Under Cover", + "year": 1919, + "cast": [ + "Fritzi Brunette", + "Fontaine La Rue" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Woman, Woman!", + "year": 1919, + "cast": [ + "Evelyn Nesbit", + "Gareth Hughes" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Words and Music by-", + "year": 1919, + "cast": [ + "Albert Ray", + "Elinor Fair" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The World Aflame", + "year": 1919, + "cast": [ + "Frank Keenan", + "Kathleen Kerrigan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The World and Its Woman", + "year": 1919, + "cast": [ + "Geraldine Farrar", + "Lou Tellegen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The World to Live In", + "year": 1919, + "cast": [ + "Alice Brady", + "Virginia Hammond" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Yankee Doodle in Berlin", + "year": 1919, + "cast": [ + "Bothwell Browne", + "Ford Sterling" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Yankee Princess", + "year": 1919, + "cast": [ + "Bessie Love", + "Robert Gordon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "You Never Saw Such a Girl", + "year": 1919, + "cast": [ + "Vivian Martin", + "Harrison Ford" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "You're Fired", + "year": 1919, + "cast": [ + "Wallace Reid", + "Wanda Hawley" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Yvonne from Paris", + "year": 1919, + "cast": [ + "Mary Miles Minter", + "Vera Lewis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Ask Father", + "year": 1919, + "cast": [ + "Harold Lloyd", + "Bebe Daniels" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "At the Old Stage Door", + "year": 1919, + "cast": [ + "Harold Lloyd", + "Bebe Daniels" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Back Stage", + "year": 1919, + "cast": [ + "Fatty Arbuckle", + "Buster Keaton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Be My Wife", + "year": 1919, + "cast": [ + "Harold Lloyd", + "Bebe Daniels" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Before Breakfast", + "year": 1919, + "cast": [ + "Harold Lloyd", + "Bebe Daniels" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Billy Blazes, Esq.", + "year": 1919, + "cast": [ + "Harold Lloyd", + "Bebe Daniels" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Bumping Into Broadway", + "year": 1919, + "cast": [ + "Harold Lloyd", + "Bebe Daniels" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "By Indian Post", + "year": 1919, + "cast": [ + "Pete Morrison", + "Duke R. Lee" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Captain Kidd's Kids", + "year": 1919, + "cast": [ + "Harold Lloyd", + "Bebe Daniels" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Chop Suey & Co.", + "year": 1919, + "cast": [ + "Harold Lloyd", + "Snub Pollard", + "Bebe Daniels" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Count the Votes", + "year": 1919, + "cast": [ + "Harold Lloyd", + "Snub Pollard", + "Bebe Daniels" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Count Your Change", + "year": 1919, + "cast": [ + "Harold Lloyd", + "Snub Pollard", + "Bebe Daniels" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Crack Your Heels", + "year": 1919, + "cast": [ + "Harold Lloyd", + "Snub Pollard", + "Bebe Daniels" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Crow", + "year": 1919, + "cast": [ + "Hoot Gibson", + "Arthur Mackley" + ], + "genres": [ + "Western" + ] + }, + { + "title": "A Day's Pleasure", + "year": 1919, + "cast": [ + "Charlie Chaplin", + "Edna Purviance" + ], + "genres": [] + }, + { + "title": "Don't Shove", + "year": 1919, + "cast": [ + "Harold Lloyd", + "Bebe Daniels", + "Bud Jamison" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Dutiful Dub", + "year": 1919, + "cast": [ + "Harold Lloyd", + "Snub Pollard", + "Bebe Daniels" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Fighting Heart", + "year": 1919, + "cast": [ + "Jack Perrin", + "Hoot Gibson", + "Josephine Hill" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Fighting Line", + "year": 1919, + "cast": [ + "Art Acord", + "Mildred Moore" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Four-Bit Man", + "year": 1919, + "cast": [ + "Hoot Gibson", + "Jack Perrin", + "Josephine Hill" + ], + "genres": [ + "Western" + ] + }, + { + "title": "From Hand to Mouth", + "year": 1919, + "cast": [ + "Harold Lloyd", + "Mildred Davis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Going! Going! Gone!", + "year": 1919, + "cast": [ + "Harold Lloyd", + "Snub Pollard", + "Bebe Daniels" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Grocery Clerk", + "year": 1919, + "cast": [ + "Larry Semon", + "Lucille Carlisle", + "Monty Banks" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "He Leads, Others Follow", + "year": 1919, + "cast": [ + "Harold Lloyd", + "Bebe Daniels" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Heap Big Chief", + "year": 1919, + "cast": [ + "Harold Lloyd", + "Snub Pollard" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "His Only Father", + "year": 1919, + "cast": [ + "Harold Lloyd", + "Snub Pollard" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "How the Telephone Talks", + "year": 1919, + "cast": [], + "genres": [] + }, + { + "title": "I'm on My Way", + "year": 1919, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Jack of Hearts", + "year": 1919, + "cast": [ + "Hoot Gibson", + "Jack Perrin" + ], + "genres": [ + "Western" + ] + }, + { + "title": "A Jazzed Honeymoon", + "year": 1919, + "cast": [ + "Harold Lloyd", + "Bebe Daniels" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Just Dropped In", + "year": 1919, + "cast": [ + "Harold Lloyd", + "Bebe Daniels" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Just Neighbors", + "year": 1919, + "cast": [ + "Harold Lloyd", + "Snub Pollard" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Kid and the Cowboy", + "year": 1919, + "cast": [ + "Art Acord" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Last Outlaw", + "year": 1919, + "cast": [ + "Richard Cummings", + "Lucille Hutton" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Look Out Below", + "year": 1919, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Marathon", + "year": 1919, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Never Touched Me", + "year": 1919, + "cast": [ + "Harold Lloyd", + "Snub Pollard" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Next Aisle Over", + "year": 1919, + "cast": [ + "Harold Lloyd", + "Bebe Daniels" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Nine-Tenths of the Law", + "year": 1919, + "cast": [ + "Mitchell Lewis", + "Jimsy Maye" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Off the Trolley", + "year": 1919, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "On the Fire", + "year": 1919, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Pay Your Dues", + "year": 1919, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Pistols for Breakfast", + "year": 1919, + "cast": [ + "Harold Lloyd", + "Bebe Daniels" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Rajah", + "year": 1919, + "cast": [ + "Harold Lloyd", + "Bebe Daniels" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Ring Up the Curtain", + "year": 1919, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Si, Senor", + "year": 1919, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Soft Money", + "year": 1919, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Spring Fever", + "year": 1919, + "cast": [ + "Harold Lloyd", + "Bebe Daniels" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Sunnyside", + "year": 1919, + "cast": [ + "Charlie Chaplin", + "Edna Purviance" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Swat the Crook", + "year": 1919, + "cast": [ + "Harold Lloyd", + "Snub Pollard" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Tell Tale Wire", + "year": 1919, + "cast": [ + "Hoot Gibson", + "Josephine Hill" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Wanted - $5,000", + "year": 1919, + "cast": [ + "Harold Lloyd", + "Bebe Daniels" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Young Mr. Jazz", + "year": 1919, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The $1,000,000 Reward", + "year": 1920, + "cast": [ + "Lillian Walker", + "Coit Albertson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "813", + "year": 1920, + "cast": [ + "Wedgwood Nowell", + "Ralph Lewis", + "Wallace Beery", + "Laura La Plante" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Among Those Present", + "year": 1920, + "cast": [ + "Harold Lloyd", + "Mildred Davis" + ], + "genres": [ + "Comedy", + "Short" + ] + }, + { + "title": "April Folly", + "year": 1920, + "cast": [ + "Marion Davies", + "Conway Tearle" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Are All Men Alike?", + "year": 1920, + "cast": [ + "May Allison", + "Wallace MacDonald" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Big Catch", + "year": 1920, + "cast": [ + "Hoot Gibson" + ], + "genres": [ + "Western", + "Short" + ] + }, + { + "title": "Blind Youth", + "year": 1920, + "cast": [ + "Walter McGrail", + "Leatrice Joy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Brand Blotter", + "year": 1920, + "cast": [ + "Hoot Gibson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Broncho Kid", + "year": 1920, + "cast": [ + "Hoot Gibson" + ], + "genres": [ + "Western", + "Short" + ] + }, + { + "title": "The Champion Liar", + "year": 1920, + "cast": [ + "Hoot Gibson" + ], + "genres": [ + "Western", + "Short" + ] + }, + { + "title": "A Child for Sale", + "year": 1920, + "cast": [ + "Gladys Leslie", + "Creighton Hale" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Cinders", + "year": 1920, + "cast": [ + "Hoot Gibson" + ], + "genres": [ + "Short" + ] + }, + { + "title": "The Common Sin", + "year": 1920, + "cast": [ + "Rod La Rocque", + "Nita Naldi" + ], + "genres": [] + }, + { + "title": "Convict 13", + "year": 1920, + "cast": [ + "Buster Keaton", + "Joe Roberts" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Copperhead", + "year": 1920, + "cast": [ + "Lionel Barrymore", + "Doris Rankin" + ], + "genres": [ + "Historical", + "Drama" + ] + }, + { + "title": "The Dangerous Paradise", + "year": 1920, + "cast": [ + "Louise Huff", + "Harry Benham" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Daredevil Jack", + "year": 1920, + "cast": [ + "Jack Dempsey", + "Josie Sedgwick" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Desperate Hero", + "year": 1920, + "cast": [ + "Owen Moore", + "Gloria Hope" + ], + "genres": [] + }, + { + "title": "The Devil's Pass Key", + "year": 1920, + "cast": [ + "Sam de Grasse", + "Mae Busch" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Double Danger", + "year": 1920, + "cast": [ + "Hoot Gibson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "A Double-Dyed Deceiver", + "year": 1920, + "cast": [ + "Jack Pickford", + "Marie Dunn" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Dr. Jekyll and Mr. Hyde", + "year": 1920, + "cast": [ + "John Barrymore" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "An Eastern Westerner", + "year": 1920, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The False Road", + "year": 1920, + "cast": [ + "Enid Bennett", + "Lloyd Hughes" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Family Honor", + "year": 1920, + "cast": [ + "Florence Vidor", + "Roscoe Karns" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Fight It Out", + "year": 1920, + "cast": [ + "Hoot Gibson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Fightin' Terror", + "year": 1920, + "cast": [ + "Hoot Gibson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Forbidden Thing", + "year": 1920, + "cast": [ + "James Kirkwood Sr.", + "Helen Jerome Eddy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Gamblin' Fool", + "year": 1920, + "cast": [ + "Hoot Gibson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Garage", + "year": 1920, + "cast": [ + "Fatty Arbuckle", + "Buster Keaton" + ], + "genres": [ + "Comedy", + "Short" + ] + }, + { + "title": "Get Out and Get Under", + "year": 1920, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Girl in Number 29", + "year": 1920, + "cast": [ + "Frank Mayo", + "Elinor Fair" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Great Lover", + "year": 1920, + "cast": [ + "John St. Polis", + "Claire Adams" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Great Redeemer", + "year": 1920, + "cast": [ + "House Peters", + "Marjorie Daw" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Grinning Granger", + "year": 1920, + "cast": [ + "Hoot Gibson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Hair Trigger Stuff", + "year": 1920, + "cast": [ + "Hoot Gibson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Hairpins", + "year": 1920, + "cast": [ + "Enid Bennett", + "Matt Moore", + "William Conklin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Haunted Spooks", + "year": 1920, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Held Up for the Makin's", + "year": 1920, + "cast": [ + "Hoot Gibson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Her Husband's Friend", + "year": 1920, + "cast": [ + "Enid Bennett", + "Rowland V. Lee" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "High and Dizzy", + "year": 1920, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "His Nose in the Book", + "year": 1920, + "cast": [ + "Hoot Gibson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "His Royal Slyness", + "year": 1920, + "cast": [ + "Harold Lloyd", + "Mildred Davis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Honest Hutch", + "year": 1920, + "cast": [ + "Will Rogers", + "Mary Alden" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Huckleberry Finn", + "year": 1920, + "cast": [ + "Lewis Sargent", + "Wallace Beery" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Idol Dancer", + "year": 1920, + "cast": [ + "Richard Barthelmess", + "Clarine Seymour" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "If I Were King", + "year": 1920, + "cast": [ + "William Farnum", + "Betty Ross Clarke" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "In the Heart of a Fool", + "year": 1920, + "cast": [ + "James Kirkwood", + "Anna Q. Nilsson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "'In Wrong' Wright", + "year": 1920, + "cast": [ + "Hoot Gibson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Jack-Knife Man", + "year": 1920, + "cast": [ + "F. A. Turner", + "Harry Todd" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Jay Bird", + "year": 1920, + "cast": [ + "Hoot Gibson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Judy of Rogue's Harbor", + "year": 1920, + "cast": [ + "Mary Miles Minter", + "Charles Meredith" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Just Out of College", + "year": 1920, + "cast": [ + "Jack Pickford", + "Molly Malone" + ], + "genres": [] + }, + { + "title": "Just Pals", + "year": 1920, + "cast": [ + "Buck Jones", + "Helen Ferguson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Kentucky Colonel", + "year": 1920, + "cast": [ + "Joseph J. Dowling", + "Frederick Vroom" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Lady Rose's Daughter", + "year": 1920, + "cast": [ + "Elsie Ferguson", + "David Powell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Last of the Mohicans", + "year": 1920, + "cast": [ + "Wallace Beery" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Leopard Woman", + "year": 1920, + "cast": [ + "Louise Glaum", + "House Peters" + ], + "genres": [ + "Adventure", + "Romance" + ] + }, + { + "title": "Love", + "year": 1920, + "cast": [ + "Louise Glaum", + "James Kirkwood Sr." + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Love Flower", + "year": 1920, + "cast": [ + "Carol Dempster", + "Richard Barthelmess" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Love, Honor, and Behave", + "year": 1920, + "cast": [ + "Ford Sterling", + "Charlie Murray" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Madame X", + "year": 1920, + "cast": [ + "Pauline Frederick" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Man Who Had Everything", + "year": 1920, + "cast": [ + "Jack Pickford", + "Lionel Belmore" + ], + "genres": [] + }, + { + "title": "The Man Who Lost Himself", + "year": 1920, + "cast": [ + "William Faversham", + "Hedda Hopper" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Man with the Punch", + "year": 1920, + "cast": [ + "Hoot Gibson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Mark of Zorro", + "year": 1920, + "cast": [ + "Douglas Fairbanks", + "Marguerite De La Motte" + ], + "genres": [] + }, + { + "title": "Masked", + "year": 1920, + "cast": [ + "Hoot Gibson", + "Virginia Browne Faire" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Mollycoddle", + "year": 1920, + "cast": [ + "Douglas Fairbanks", + "Wallace Beery" + ], + "genres": [] + }, + { + "title": "My Lady's Garter", + "year": 1920, + "cast": [ + "Wyndham Standing", + "Sylvia Breamer" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Neighbors", + "year": 1920, + "cast": [ + "Buster Keaton", + "Virginia Fox" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Nomads of the North", + "year": 1920, + "cast": [ + "Betty Blythe", + "Lon Chaney" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Now or Never", + "year": 1920, + "cast": [ + "Harold Lloyd", + "Mildred Davis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Number, Please?", + "year": 1920, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Old Lady 31", + "year": 1920, + "cast": [ + "Emma Dunn", + "Henry Harmon" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "One Hour Before Dawn", + "year": 1920, + "cast": [ + "H. B. Warner", + "Anna Q. Nilsson" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "One Law for All", + "year": 1920, + "cast": [ + "Hoot Gibson" + ], + "genres": [ + "Western", + "Short" + ] + }, + { + "title": "One Week", + "year": 1920, + "cast": [ + "Buster Keaton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Outside the Law", + "year": 1920, + "cast": [ + "Priscilla Dean", + "Wheeler Oakman" + ], + "genres": [ + "Crime", + "Thriller" + ] + }, + { + "title": "Over the Hill to the Poorhouse", + "year": 1920, + "cast": [ + "Mary Carr" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Path She Chose", + "year": 1920, + "cast": [ + "Anne Cornwall", + "J. Farrell McDonald" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Penalty", + "year": 1920, + "cast": [ + "Charles Clary", + "Lon Chaney" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Pollyanna", + "year": 1920, + "cast": [ + "Howard Ralston" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Rattler's Hiss", + "year": 1920, + "cast": [ + "Hoot Gibson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Remodeling Her Husband", + "year": 1920, + "cast": [ + "Dorothy Gish", + "James Rennie" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Restless Sex", + "year": 1920, + "cast": [ + "Marion Davies", + "Ralph Kellard" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Road to Divorce", + "year": 1920, + "cast": [ + "Mary MacLaren", + "William Ellingford" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Roarin' Dan", + "year": 1920, + "cast": [ + "Hoot Gibson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Romance", + "year": 1920, + "cast": [ + "Doris Keane", + "Basil Sydney" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Round-Up", + "year": 1920, + "cast": [ + "Fatty Arbuckle", + "Irving Cummings" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Runnin' Straight", + "year": 1920, + "cast": [ + "Hoot Gibson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Saphead", + "year": 1920, + "cast": [ + "Buster Keaton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Scarecrow", + "year": 1920, + "cast": [ + "Buster Keaton" + ], + "genres": [ + "Comedy", + "Short" + ] + }, + { + "title": "Sex", + "year": 1920, + "cast": [ + "Louise Glaum", + "Irving Cummings" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Sheriff's Oath", + "year": 1920, + "cast": [ + "Hoot Gibson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Shipwrecked Among Cannibals", + "year": 1920, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Shootin' Fool", + "year": 1920, + "cast": [ + "Hoot Gibson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Shootin' Kid", + "year": 1920, + "cast": [ + "Hoot Gibson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Shore Acres", + "year": 1920, + "cast": [ + "Alice Lake", + "Robert D. Walker" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Silk Hosiery", + "year": 1920, + "cast": [ + "Enid Bennett", + "Geoffrey Webb" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Silk Husbands and Calico Wives", + "year": 1920, + "cast": [ + "House Peters", + "Mary Alden" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Skywayman", + "year": 1920, + "cast": [ + "Ormer Locklear", + "Louise Lovely" + ], + "genres": [] + }, + { + "title": "The Slim Princess", + "year": 1920, + "cast": [ + "Mabel Normand", + "Tully Marshall" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Smilin' Kid", + "year": 1920, + "cast": [ + "Hoot Gibson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Something to Think About", + "year": 1920, + "cast": [ + "Elliott Dexter", + "Gloria Swanson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Splendid Hazard", + "year": 1920, + "cast": [ + "Henry B. Walthall", + "Rosemary Theby" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Stolen Moments", + "year": 1920, + "cast": [ + "Rudolph Valentino", + "Marguerite Namara" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Strange Boarder", + "year": 1920, + "cast": [ + "Will Rogers", + "Irene Rich" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Stranger", + "year": 1920, + "cast": [ + "Hoot Gibson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Stronger Than Death", + "year": 1920, + "cast": [ + "Alla Nazimova", + "Charles Bryant" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Suds", + "year": 1920, + "cast": [ + "Mary Pickford", + "Albert Austin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Superstition", + "year": 1920, + "cast": [ + "Hoot Gibson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Thieves' Clothes", + "year": 1920, + "cast": [ + "Hoot Gibson", + "Alma Bennett" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Tipped Off", + "year": 1920, + "cast": [ + "Hoot Gibson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Trail of the Hound", + "year": 1920, + "cast": [ + "Hoot Gibson", + "Jeff Corey" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Treasure Island", + "year": 1920, + "cast": [ + "Lon Chaney", + "Shirley Mason" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Twins of Suffering Creek", + "year": 1920, + "cast": [ + "William Russell", + "Louise Lovely" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Two-Fisted Lover", + "year": 1920, + "cast": [ + "Hoot Gibson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Two Weeks", + "year": 1920, + "cast": [ + "Constance Talmadge", + "Conway Tearle" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Uncharted Channels", + "year": 1920, + "cast": [ + "H. B. Warner", + "Kathryn Adams", + "Sam de Grasse" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Under Crimson Skies", + "year": 1920, + "cast": [ + "Elmo Lincoln", + "Mabel Ballin", + "Harry von Meter" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Unseen Forces", + "year": 1920, + "cast": [ + "Sylvia Breamer", + "Conrad Nagel" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Virgin of Stamboul", + "year": 1920, + "cast": [ + "Priscilla Dean", + "Wallace Beery" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Way Down East", + "year": 1920, + "cast": [ + "Lillian Gish" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "West Is Best", + "year": 1920, + "cast": [ + "Hoot Gibson", + "Josephine Hill" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The White Dove", + "year": 1920, + "cast": [ + "H. B. Warner", + "Clare Adams" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Why Change Your Wife?", + "year": 1920, + "cast": [ + "Gloria Swanson", + "Thomas Meighan", + "Bebe Daniels" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Within Our Gates", + "year": 1920, + "cast": [ + "Evelyn Preer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Wolf Tracks", + "year": 1920, + "cast": [ + "Hoot Gibson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Woman in the Suitcase", + "year": 1920, + "cast": [ + "Enid Bennett", + "William Conklin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "$10,000 Under a Pillow", + "year": 1921, + "cast": [], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "The Ace of Hearts", + "year": 1921, + "cast": [ + "Lon Chaney", + "Leatrice Joy", + "John Bowers", + "Hardee Kirkland", + "Raymond Hatton" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Across the Divide", + "year": 1921, + "cast": [ + "Rex Ballard", + "Rosemary Theby" + ], + "genres": [] + }, + { + "title": "Action", + "year": 1921, + "cast": [ + "Hoot Gibson", + "Francis Ford" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Adopting a Bear Cub", + "year": 1921, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Adventures of Sherlock Holmes", + "year": 1921, + "cast": [], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Adventures of Tarzan", + "year": 1921, + "cast": [], + "genres": [] + }, + { + "title": "The Advisor", + "year": 1921, + "cast": [], + "genres": [] + }, + { + "title": "The Affairs of Anatol", + "year": 1921, + "cast": [ + "Wallace Reid", + "Gloria Swanson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Afraid of His Wife", + "year": 1921, + "cast": [], + "genres": [] + }, + { + "title": "After Midnight", + "year": 1921, + "cast": [ + "Ralph Ince", + "Zena Keefe" + ], + "genres": [] + }, + { + "title": "After the Dough", + "year": 1921, + "cast": [], + "genres": [] + }, + { + "title": "After the Show", + "year": 1921, + "cast": [ + "Jack Holt", + "Lila Lee" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "After Your Own Heart", + "year": 1921, + "cast": [ + "Tom Mix", + "Ora Carew" + ], + "genres": [] + }, + { + "title": "The Alarm", + "year": 1921, + "cast": [], + "genres": [] + }, + { + "title": "Alfalfa Love", + "year": 1921, + "cast": [], + "genres": [] + }, + { + "title": "Among Those Present", + "year": 1921, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Avenging Arrow", + "year": 1921, + "cast": [ + "Ruth Roland", + "Edward Hearn" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Bandits Beware", + "year": 1921, + "cast": [ + "Hoot Gibson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Beating the Game", + "year": 1921, + "cast": [ + "Hoot Gibson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Big Punch", + "year": 1921, + "cast": [ + "Buck Jones", + "Barbara Bedford" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Blind Hearts", + "year": 1921, + "cast": [ + "Hobart Bosworth", + "Madge Bellamy", + "Wade Boteler" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Blot", + "year": 1921, + "cast": [ + "Claire Windsor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Boat", + "year": 1921, + "cast": [ + "Buster Keaton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Brewster's Millions", + "year": 1921, + "cast": [ + "Fatty Arbuckle", + "Betty Ross Clarke" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Brownie's Baby Doll", + "year": 1921, + "cast": [ + "Baby Peggy" + ], + "genres": [] + }, + { + "title": "Brownie's Little Venus", + "year": 1921, + "cast": [ + "Baby Peggy" + ], + "genres": [] + }, + { + "title": "Bullets or Ballots", + "year": 1921, + "cast": [ + "Mary Astor" + ], + "genres": [] + }, + { + "title": "The Cactus Kid", + "year": 1921, + "cast": [ + "Hoot Gibson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Call of Youth", + "year": 1921, + "cast": [], + "genres": [] + }, + { + "title": "Camille", + "year": 1921, + "cast": [ + "Alla Nazimova", + "Rudolph Valentino", + "Patsy Ruth Miller" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Clean Up", + "year": 1921, + "cast": [ + "Baby Peggy" + ], + "genres": [] + }, + { + "title": "The Conquering Power", + "year": 1921, + "cast": [ + "Rudolph Valentino", + "Alice Terry" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "Crossed Clues", + "year": 1921, + "cast": [ + "Hoot Gibson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Cup of Life", + "year": 1921, + "cast": [ + "Hobart Bosworth", + "Madge Bellamy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Disraeli", + "year": 1921, + "cast": [ + "George Arliss", + "Florence Arliss" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Double Adventure", + "year": 1921, + "cast": [ + "Charles Hutchison", + "Josie Sedgwick" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Double Crossers", + "year": 1921, + "cast": [ + "Hoot Gibson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Dream Street", + "year": 1921, + "cast": [ + "Carol Dempster", + "Charles Emmett Mack" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Driftin' Kid", + "year": 1921, + "cast": [ + "Hoot Gibson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Eden and Return", + "year": 1921, + "cast": [ + "Doris May", + "Emmett King" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Every Woman's Problem", + "year": 1921, + "cast": [ + "Dorothy Davenport", + "Willis L. Robards" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Experience", + "year": 1921, + "cast": [ + "Richard Barthelmess", + "Reginald Denny" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Extravagance", + "year": 1921, + "cast": [ + "May Allison", + "Robert Edeson", + "Theodore Von Eltz" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Fightin' Fury", + "year": 1921, + "cast": [ + "Hoot Gibson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Fire Eater", + "year": 1921, + "cast": [ + "Hoot Gibson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Fool's Paradise", + "year": 1921, + "cast": [ + "Conrad Nagel", + "Mildred Harris", + "Theodore Kosloff", + "Baby Peggy" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Foolish Age", + "year": 1921, + "cast": [ + "Doris May", + "Hallam Cooley" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Foolish Matrons", + "year": 1921, + "cast": [ + "Hobart Bosworth", + "Doris May" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Forbidden Fruit", + "year": 1921, + "cast": [ + "Agnes Ayres", + "Clarence Burton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Forever", + "year": 1921, + "cast": [ + "Wallace Reid", + "Elsie Ferguson", + "Montagu Love" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Four Horsemen of the Apocalypse", + "year": 1921, + "cast": [ + "Rudolph Valentino" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Get-Rich-Quick Peggy", + "year": 1921, + "cast": [ + "Baby Peggy" + ], + "genres": [] + }, + { + "title": "The Gilded Lily", + "year": 1921, + "cast": [ + "Mae Marsh", + "Lowell Sherman", + "Jason Robards Sr." + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Goat", + "year": 1921, + "cast": [ + "Buster Keaton", + "Joe Roberts" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "God's Crucible", + "year": 1921, + "cast": [ + "Gaston Glass", + "Gladys Coburn" + ], + "genres": [] + }, + { + "title": "Golfing", + "year": 1921, + "cast": [], + "genres": [] + }, + { + "title": "The Greater Claim", + "year": 1921, + "cast": [ + "Alice Lake", + "Jack Dougherty" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Greater Than Love", + "year": 1921, + "cast": [ + "Louise Glaum", + "Margaret Gibson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Grim Comedian", + "year": 1921, + "cast": [ + "Jack Holt", + "Gloria Hope" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hail the Woman", + "year": 1921, + "cast": [ + "Florence Vidor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Haunted House", + "year": 1921, + "cast": [ + "Buster Keaton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hearts and Masks", + "year": 1921, + "cast": [ + "Elinor Field", + "Lloyd Bacon" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Heedless Moths", + "year": 1921, + "cast": [ + "Jane Thomas", + "Holmes Herbert", + "Hedda Hopper" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Her Circus Man", + "year": 1921, + "cast": [ + "Baby Peggy" + ], + "genres": [] + }, + { + "title": "The High Sign", + "year": 1921, + "cast": [ + "Buster Keaton", + "Bartine Burkett" + ], + "genres": [ + "Comedy", + "Short" + ] + }, + { + "title": "Humor Risk", + "year": 1921, + "cast": [ + "Marx Brothers" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Hunch", + "year": 1921, + "cast": [ + "Gareth Hughes", + "Ethel Grandin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "I Do", + "year": 1921, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Idle Class", + "year": 1921, + "cast": [ + "Charles Chaplin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Jim the Penman", + "year": 1921, + "cast": [ + "Lionel Barrymore" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Kickaroo", + "year": 1921, + "cast": [ + "Hoot Gibson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Kid", + "year": 1921, + "cast": [ + "Charlie Chaplin", + "Jackie Coogan" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Kid's Pal", + "year": 1921, + "cast": [ + "Baby Peggy" + ], + "genres": [] + }, + { + "title": "The Little Fool", + "year": 1921, + "cast": [ + "Milton Sills", + "Nigel Barrie" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Little Lord Fauntleroy", + "year": 1921, + "cast": [ + "Mary Pickford" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Lotus Eater", + "year": 1921, + "cast": [ + "John Barrymore", + "Colleen Moore" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Love Charm", + "year": 1921, + "cast": [ + "Wanda Hawley", + "Mae Busch", + "Sylvia Ashton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Love Light", + "year": 1921, + "cast": [ + "Mary Pickford", + "Raymond Bloomer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Love Never Dies", + "year": 1921, + "cast": [ + "Lloyd Hughes", + "Madge Bellamy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Love's Penalty", + "year": 1921, + "cast": [ + "Hope Hampton", + "Percy Marmont", + "Virginia Valli" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Lucky Dog", + "year": 1921, + "cast": [ + "Stan Laurel", + "Oliver Hardy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Lure of Youth", + "year": 1921, + "cast": [ + "Cleo Madison", + "Gareth Hughes" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Magic Cup", + "year": 1921, + "cast": [ + "Constance Binney", + "Vincent Coleman", + "Blanche Craig" + ], + "genres": [] + }, + { + "title": "Mama's Affair", + "year": 1921, + "cast": [ + "Constance Talmadge", + "Effie Shannon", + "Kenneth Harlan" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "A Man of Stone", + "year": 1921, + "cast": [ + "Conway Tearle", + "Martha Mansfield" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Man Who Woke Up", + "year": 1921, + "cast": [ + "Hoot Gibson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Manhattan", + "year": 1921, + "cast": [], + "genres": [] + }, + { + "title": "Miss Lulu Bett", + "year": 1921, + "cast": [ + "Lois Wilson", + "Milton Sills" + ], + "genres": [] + }, + { + "title": "The Mistress of Shenstone", + "year": 1921, + "cast": [ + "Pauline Frederick", + "Roy Stewart" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Mother O' Mine", + "year": 1921, + "cast": [ + "Lloyd Hughes", + "Betty Ross Clarke" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Movie Trail", + "year": 1921, + "cast": [ + "Hoot Gibson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "A Muddy Bride", + "year": 1921, + "cast": [ + "Baby Peggy" + ], + "genres": [] + }, + { + "title": "My Boy", + "year": 1921, + "cast": [ + "Jackie Coogan", + "Mathilde Brundage" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Never Weaken", + "year": 1921, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "No Woman Knows", + "year": 1921, + "cast": [ + "Max Davidson", + "Snitz Edwards" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Not Guilty", + "year": 1921, + "cast": [ + "Sylvia Breamer", + "Richard Dix" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Now or Never", + "year": 1921, + "cast": [ + "Harold Lloyd", + "Mildred Davis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Nut", + "year": 1921, + "cast": [ + "Douglas Fairbanks", + "Marguerite De La Motte" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Offenders", + "year": 1921, + "cast": [ + "Margery Wilson", + "Percy Helton" + ], + "genres": [] + }, + { + "title": "On Account", + "year": 1921, + "cast": [ + "Baby Peggy" + ], + "genres": [] + }, + { + "title": "On with the Show", + "year": 1921, + "cast": [ + "Baby Peggy" + ], + "genres": [] + }, + { + "title": "Orphans of the Storm", + "year": 1921, + "cast": [ + "Lillian Gish", + "Dorothy Gish" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Out o' Luck", + "year": 1921, + "cast": [ + "Hoot Gibson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Over the Wire", + "year": 1921, + "cast": [ + "Alice Lake", + "Al Roscoe" + ], + "genres": [] + }, + { + "title": "Pals", + "year": 1921, + "cast": [ + "Baby Peggy" + ], + "genres": [] + }, + { + "title": "Passing Through", + "year": 1921, + "cast": [ + "Douglas MacLean", + "Madge Bellamy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Passion Flower", + "year": 1921, + "cast": [ + "Norma Talmadge", + "Courtenay Foote" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Playhouse", + "year": 1921, + "cast": [ + "Buster Keaton", + "Virginia Fox", + "Joe Roberts", + "Edward F. Cline" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Playmates", + "year": 1921, + "cast": [ + "Baby Peggy" + ], + "genres": [] + }, + { + "title": "The Queen of Sheba", + "year": 1921, + "cast": [ + "Betty Blythe", + "Fritz Leiber" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Red Courage", + "year": 1921, + "cast": [ + "Hoot Gibson" + ], + "genres": [] + }, + { + "title": "Roads of Destiny", + "year": 1921, + "cast": [ + "Pauline Frederick", + "John Bowers" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Saddle King", + "year": 1921, + "cast": [ + "Hoot Gibson" + ], + "genres": [] + }, + { + "title": "A Sailor-Made Man", + "year": 1921, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Salvage", + "year": 1921, + "cast": [ + "Pauline Frederick", + "Ralph Lewis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Sea Lion", + "year": 1921, + "cast": [ + "Hobart Bosworth", + "Bessie Love", + "Emory Johnson" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Sea Shore Shapes", + "year": 1921, + "cast": [ + "Baby Peggy" + ], + "genres": [] + }, + { + "title": "Sentimental Tommy", + "year": 1921, + "cast": [ + "Gareth Hughes" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Seven Years Bad Luck", + "year": 1921, + "cast": [ + "Max Linder", + "Alta Allen" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Sheik", + "year": 1921, + "cast": [ + "Rudolph Valentino", + "Agnes Ayres" + ], + "genres": [ + "Drama", + "Adventure" + ] + }, + { + "title": "Sheltered Daughters", + "year": 1921, + "cast": [ + "Justine Johnstone", + "Riley Hatch", + "Warner Baxter" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Silver Lining", + "year": 1921, + "cast": [ + "Leslie Austin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Sky Pilot", + "year": 1921, + "cast": [ + "John Bowers", + "Colleen Moore" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Society Secrets", + "year": 1921, + "cast": [ + "Eva Novak", + "Gertrude Claire" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Sting of the Lash", + "year": 1921, + "cast": [ + "Pauline Frederick", + "Clyde Fillmore" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sure Fire", + "year": 1921, + "cast": [ + "Hoot Gibson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Sweet Revenge", + "year": 1921, + "cast": [ + "Hoot Gibson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Teddy's Goat", + "year": 1921, + "cast": [ + "Baby Peggy" + ], + "genres": [] + }, + { + "title": "Third Class Male", + "year": 1921, + "cast": [ + "Baby Peggy" + ], + "genres": [] + }, + { + "title": "The Three Musketeers", + "year": 1921, + "cast": [ + "Douglas Fairbanks", + "Leon Bary", + "Eugene Pallette" + ], + "genres": [] + }, + { + "title": "Through the Back Door", + "year": 1921, + "cast": [ + "Mary Pickford", + "Gertrude Astor" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Tol'able David", + "year": 1921, + "cast": [ + "Richard Barthelmess" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Uncharted Seas", + "year": 1921, + "cast": [ + "Alice Lake", + "Carl Gerard", + "Rudolph Valentino" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "An Unwilling Hero", + "year": 1921, + "cast": [ + "Will Rogers", + "Molly Malone" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Week Off", + "year": 1921, + "cast": [ + "Baby Peggy" + ], + "genres": [] + }, + { + "title": "What's Your Reputation Worth?", + "year": 1921, + "cast": [ + "Corinne Griffith", + "Percy Marmont" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "When We Were Twenty-One", + "year": 1921, + "cast": [ + "H. B. Warner", + "Claire Anderson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "White and Unmarried", + "year": 1921, + "cast": [ + "Thomas Meighan" + ], + "genres": [] + }, + { + "title": "Who Was the Man?", + "year": 1921, + "cast": [ + "Hoot Gibson" + ], + "genres": [] + }, + { + "title": "The Wild Wild West", + "year": 1921, + "cast": [ + "Hoot Gibson" + ], + "genres": [] + }, + { + "title": "Woman's Place", + "year": 1921, + "cast": [ + "Constance Talmadge", + "Kenneth Harlan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Wonderful Thing", + "year": 1921, + "cast": [ + "Norma Talmadge", + "Harrison Ford" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "According to Hoyle", + "year": 1922, + "cast": [ + "David Butler", + "Helen Ferguson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Across the Continent", + "year": 1922, + "cast": [ + "Wallace Reid", + "Mary MacLaren" + ], + "genres": [ + "Sports" + ] + }, + { + "title": "Across the Deadline", + "year": 1922, + "cast": [ + "Frank Mayo", + "Russell Simpson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Adventures of Robinson Crusoe", + "year": 1922, + "cast": [ + "Harry Myers", + "Noble Johnson" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Afraid to Fight", + "year": 1922, + "cast": [ + "Frank Mayo", + "Lillian Rich" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Alias Julius Caesar", + "year": 1922, + "cast": [ + "Charles Ray", + "Barbara Bedford" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Altar Stairs", + "year": 1922, + "cast": [ + "Frank Mayo", + "Louise Lorraine" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Always the Woman", + "year": 1922, + "cast": [ + "Betty Compson", + "Emory Johnson" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Angel of Crooked Street", + "year": 1922, + "cast": [ + "Alice Calhoun", + "William McCall" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Anna Ascends", + "year": 1922, + "cast": [ + "Alice Brady", + "Robert Ellis" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Another Man's Shoes", + "year": 1922, + "cast": [ + "Herbert Rawlinson", + "Barbara Bedford" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Any Wife", + "year": 1922, + "cast": [ + "Pearl White", + "Holmes Herbert" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Apartment Wanted", + "year": 1922, + "cast": [ + "Lee Moran", + "Alberta Vaughn" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Arabian Love", + "year": 1922, + "cast": [ + "John Gilbert", + "Barbara Bedford", + "Barbara La Marr" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Bachelor Daddy", + "year": 1922, + "cast": [ + "Thomas Meighan", + "Leatrice Joy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Back Home and Broke", + "year": 1922, + "cast": [ + "Thomas Meighan", + "Lila Lee" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Back Pay", + "year": 1922, + "cast": [ + "Seena Owen", + "Matt Moore" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Barnstormer", + "year": 1922, + "cast": [ + "Wilfred Lucas", + "Florence Oberle" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Bearcat", + "year": 1922, + "cast": [ + "Hoot Gibson", + "Lillian Rich" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Beautiful and Damned", + "year": 1922, + "cast": [ + "Marie Prevost", + "Kenneth Harlan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Beauty Shop", + "year": 1922, + "cast": [ + "Raymond Hitchcock", + "Louise Fazenda" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Beauty's Worth", + "year": 1922, + "cast": [ + "Marion Davies", + "Forrest Stanley" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Bells of San Juan", + "year": 1922, + "cast": [ + "Buck Jones", + "Fritzi Brunette" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Beyond the Rainbow", + "year": 1922, + "cast": [ + "Harry T. Morey", + "Billie Dove", + "Clara Bow" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Beyond the Rocks", + "year": 1922, + "cast": [ + "Gloria Swanson", + "Rudolph Valentino" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Billy Jim", + "year": 1922, + "cast": [ + "Fred Stone", + "Billy Bletcher" + ], + "genres": [ + "Comedy", + "Western" + ] + }, + { + "title": "The Black Bag", + "year": 1922, + "cast": [ + "Herbert Rawlinson", + "Virginia Valli" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Blacksmith", + "year": 1922, + "cast": [ + "Buster Keaton", + "Virginia Fox" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Blind Bargain", + "year": 1922, + "cast": [ + "Lon Chaney", + "Raymond McKee" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Blood and Sand", + "year": 1922, + "cast": [ + "Rudolph Valentino", + "Nita Naldi", + "Lila Lee" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Bobbed Hair", + "year": 1922, + "cast": [ + "Wanda Hawley", + "William Boyd" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Bond Boy", + "year": 1922, + "cast": [ + "Richard Barthelmess", + "Charles Hill Mailes" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Bonded Woman", + "year": 1922, + "cast": [ + "Betty Compson", + "John Bowers" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Boomerang Bill", + "year": 1922, + "cast": [ + "Lionel Barrymore", + "Marguerite Marsh" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Bootleggers", + "year": 1922, + "cast": [ + "Walter Miller", + "Paul Panzer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Bootlegger's Daughter", + "year": 1922, + "cast": [ + "Enid Bennett", + "Fred Niblo" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Borderland", + "year": 1922, + "cast": [ + "Agnes Ayres", + "Milton Sills" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Boss of Camp Four", + "year": 1922, + "cast": [ + "Buck Jones", + "Fritzi Brunette" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Bought and Paid For", + "year": 1922, + "cast": [ + "Agnes Ayres", + "Jack Holt" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Boy Crazy", + "year": 1922, + "cast": [ + "Doris May", + "Fred Gamble" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Brawn of the North", + "year": 1922, + "cast": [ + "Irene Rich", + "Lee Shumway" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Bride's Play", + "year": 1922, + "cast": [ + "Marion Davies", + "John B. O'Brien" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Broad Daylight", + "year": 1922, + "cast": [ + "Lois Wilson", + "Jack Mulhall" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Broadway Madonna", + "year": 1922, + "cast": [ + "Dorothy Revier", + "Harry von Meter" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Broadway Peacock", + "year": 1922, + "cast": [ + "Pearl White", + "Joseph Striker" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Broadway Rose", + "year": 1922, + "cast": [ + "Mae Murray", + "Monte Blue" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Broken Chains", + "year": 1922, + "cast": [ + "Colleen Moore", + "Malcolm McGregor", + "Ernest Torrence" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Brothers Under the Skin", + "year": 1922, + "cast": [ + "Pat O'Malley", + "Helene Chadwick", + "Mae Busch" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Burning Sands", + "year": 1922, + "cast": [ + "Wanda Hawley", + "Milton Sills", + "Jacqueline Logan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A California Romance", + "year": 1922, + "cast": [ + "John Gilbert", + "Estelle Taylor" + ], + "genres": [ + "Historical" + ] + }, + { + "title": "The Call of Home", + "year": 1922, + "cast": [ + "Léon Bary", + "Irene Rich" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Calvert's Valley", + "year": 1922, + "cast": [ + "John Gilbert", + "Sylvia Breamer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Captain Fly-by-Night", + "year": 1922, + "cast": [ + "Johnnie Walker", + "Francis McDonald" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Catch My Smoke", + "year": 1922, + "cast": [ + "Tom Mix", + "Lillian Rich", + "Claude Payton" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Caught Bluffing", + "year": 1922, + "cast": [ + "Frank Mayo", + "Edna Murphy" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Channing of the Northwest", + "year": 1922, + "cast": [ + "Eugene O'Brien", + "Norma Shearer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Chasing the Moon", + "year": 1922, + "cast": [ + "Tom Mix", + "Eva Novak" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Clarence", + "year": 1922, + "cast": [ + "Wallace Reid", + "Agnes Ayres" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Colleen of the Pines", + "year": 1922, + "cast": [ + "Jane Novak", + "Edward Hearn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Come on Over", + "year": 1922, + "cast": [ + "Colleen Moore", + "Ralph Graves" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Confidence", + "year": 1922, + "cast": [ + "Herbert Rawlinson", + "Harriet Hammond" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Conquering the Woman", + "year": 1922, + "cast": [ + "Florence Vidor", + "Mathilde Brundage" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Cops", + "year": 1922, + "cast": [ + "Buster Keaton", + "Virginia Fox" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Country Flapper", + "year": 1922, + "cast": [ + "Dorothy Gish", + "Glenn Hunter" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Cowboy and the Lady", + "year": 1922, + "cast": [ + "Mary Miles Minter", + "Tom Moore" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Cradle", + "year": 1922, + "cast": [ + "Ethel Clayton", + "Charles Meredith" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Crimson Challenge", + "year": 1922, + "cast": [ + "Dorothy Dalton", + "Jack Mower" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Crossroads of New York", + "year": 1922, + "cast": [ + "Noah Beery", + "Ethel Grey Terry" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Crusader", + "year": 1922, + "cast": [ + "William Russell", + "Gertrude Claire", + "Helen Ferguson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "A Dangerous Game", + "year": 1922, + "cast": [ + "Gladys Walton", + "Spottiswoode Aitken" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Dangerous Little Demon", + "year": 1922, + "cast": [ + "Marie Prevost", + "Jack Perrin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Darling of the Rich", + "year": 1922, + "cast": [ + "Betty Blythe", + "Montagu Love", + "Charles K. Gerrard" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Daughter of Luxury", + "year": 1922, + "cast": [ + "Agnes Ayres", + "Tom Gallery", + "Edith Yorke" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Daydreams", + "year": 1922, + "cast": [ + "Buster Keaton", + "Renée Adorée" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Deserted at the Altar", + "year": 1922, + "cast": [ + "Bessie Love", + "Tully Marshall" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Dictator", + "year": 1922, + "cast": [ + "Wallace Reid", + "Theodore Kosloff", + "Lila Lee" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Divorce Coupons", + "year": 1922, + "cast": [ + "Corinne Griffith", + "Holmes Herbert", + "]" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Do and Dare", + "year": 1922, + "cast": [ + "Tom Mix", + "Claire Adams" + ], + "genres": [ + "Western" + ] + }, + { + "title": "A Doll's House", + "year": 1922, + "cast": [ + "Alan Hale Sr.", + "Alla Nazimova" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Domestic Relations", + "year": 1922, + "cast": [ + "Katherine MacDonald", + "William P. Carleton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Don't Get Personal", + "year": 1922, + "cast": [ + "Marie Prevost", + "George Nichols" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Don't Shoot", + "year": 1922, + "cast": [ + "Herbert Rawlinson", + "Edna Murphy" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Don't Write Letters", + "year": 1922, + "cast": [ + "Gareth Hughes", + "Bartine Burkett" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Down to the Sea in Ships", + "year": 1922, + "cast": [ + "Marguerite Courtot", + "Raymond McKee", + "Clara Bow" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dr. Jack", + "year": 1922, + "cast": [ + "Harold Lloyd", + "Mildred Davis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Deuce of Spades", + "year": 1922, + "cast": [ + "Charles Ray", + "Lincoln Plumer" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Dusk to Dawn", + "year": 1922, + "cast": [ + "Florence Vidor", + "Jack Mulhall" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dust Flower", + "year": 1922, + "cast": [ + "Helene Chadwick", + "James Rennie" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "East Is West", + "year": 1922, + "cast": [ + "Constance Talmadge", + "Edmund Burns" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Ebb Tide", + "year": 1922, + "cast": [ + "Lila Lee", + "Raymond Hatton" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Electric House", + "year": 1922, + "cast": [ + "Buster Keaton", + "Virginia Fox" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Elope If You Must", + "year": 1922, + "cast": [ + "Eileen Percy", + "A. Edward Sutherland" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Enter Madame", + "year": 1922, + "cast": [ + "Clara Kimball Young", + "Louise Dresser" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "The Eternal Flame", + "year": 1922, + "cast": [ + "Norma Talmadge", + "Adolphe Menjou", + "Conway Tearle" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Evidence", + "year": 1922, + "cast": [ + "Elaine Hammerstein", + "Niles Welch" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Extra! Extra!", + "year": 1922, + "cast": [ + "Edna Murphy", + "Johnnie Walker" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Face Between", + "year": 1922, + "cast": [ + "Bert Lytell", + "Sylvia Breamer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Face in the Fog", + "year": 1922, + "cast": [ + "Lionel Barrymore", + "Seena Owen" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Fair Lady", + "year": 1922, + "cast": [ + "Betty Blythe", + "Thurston Hall" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Fascination", + "year": 1922, + "cast": [ + "Mae Murray", + "Creighton Hale" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Fast Freight", + "year": 1922, + "cast": [ + "Roscoe Arbuckle", + "Lila Lee" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Fast Mail", + "year": 1922, + "cast": [ + "Buck Jones", + "Eileen Percy" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Fighting Guide", + "year": 1922, + "cast": [ + "William Duncan", + "Edith Johnson" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Fighting Streak", + "year": 1922, + "cast": [ + "Tom Mix", + "Patsy Ruth Miller" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Find the Woman", + "year": 1922, + "cast": [ + "Alma Rubens", + "Harrison Ford" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Fire Bride", + "year": 1922, + "cast": [ + "Ruth Renick", + "Edward Hearn" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Five Days to Live", + "year": 1922, + "cast": [ + "Sessue Hayakawa", + "Tsuru Aoki" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Five Dollar Baby", + "year": 1922, + "cast": [ + "Viola Dana", + "Ralph Lewis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Flaming Hour", + "year": 1922, + "cast": [ + "Frank Mayo", + "Helen Ferguson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Flesh and Blood", + "year": 1922, + "cast": [ + "Lon Chaney", + "Edith Roberts" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Flirt", + "year": 1922, + "cast": [ + "George Nichols", + "Eileen Percy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Fool There Was", + "year": 1922, + "cast": [ + "Estelle Taylor", + "Lewis Stone", + "Irene Rich" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Foolish Wives", + "year": 1922, + "cast": [ + "Erich von Stroheim", + "Mae Busch" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Fools First", + "year": 1922, + "cast": [ + "Richard Dix", + "Claire Windsor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "For Big Stakes", + "year": 1922, + "cast": [ + "Tom Mix", + "Patsy Ruth Miller" + ], + "genres": [ + "Western" + ] + }, + { + "title": "For the Defense", + "year": 1922, + "cast": [ + "Ethel Clayton", + "Vernon Steele" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Forget Me Not", + "year": 1922, + "cast": [ + "Irene Hunt", + "Bessie Love", + "Gareth Hughes" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Forgotten Law", + "year": 1922, + "cast": [ + "Milton Sills", + "Jack Mulhall" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Forsaking All Others", + "year": 1922, + "cast": [ + "Colleen Moore", + "Cullen Landis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Fortune's Mask", + "year": 1922, + "cast": [ + "Earle Williams", + "Patsy Ruth Miller" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Fourteenth Lover", + "year": 1922, + "cast": [ + "Viola Dana", + "Jack Mulhall", + "Theodore von Eltz" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "French Heels", + "year": 1922, + "cast": [ + "Irene Castle", + "Ward Crane", + "Charles K. Gerrard" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "A Front Page Story", + "year": 1922, + "cast": [ + "Edward Everett Horton", + "Lloyd Ingraham", + "Edith Roberts" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Frozen North", + "year": 1922, + "cast": [ + "Buster Keaton", + "Sybil Seely" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Galloping Kid", + "year": 1922, + "cast": [ + "Hoot Gibson", + "Edna Murphy" + ], + "genres": [ + "Western" + ] + }, + { + "title": "A Game Chicken", + "year": 1922, + "cast": [ + "Bebe Daniels", + "Pat O'Malley" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Gas, Oil and Water", + "year": 1922, + "cast": [ + "Charles Ray", + "Otto Hoffman" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Gay and Devilish", + "year": 1922, + "cast": [ + "Doris May", + "Cullen Landis" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "The Ghost Breaker", + "year": 1922, + "cast": [ + "Wallace Reid", + "Lila Lee" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Girl in His Room", + "year": 1922, + "cast": [ + "Alice Calhoun", + "Warner Baxter" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Girl Who Ran Wild", + "year": 1922, + "cast": [ + "Gladys Walton", + "Vernon Steele" + ], + "genres": [ + "Action" + ] + }, + { + "title": "A Girl's Desire", + "year": 1922, + "cast": [ + "Alice Calhoun", + "Warner Baxter" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Glass Houses", + "year": 1922, + "cast": [ + "Viola Dana", + "Gaston Glass" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Gleam o'Dawn", + "year": 1922, + "cast": [ + "John Gilbert", + "Barbara Bedford" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Glorious Fool", + "year": 1922, + "cast": [ + "Helene Chadwick", + "Richard Dix" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Glory of Clementina", + "year": 1922, + "cast": [ + "Pauline Frederick", + "Edward Martindel" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Golden Dreams", + "year": 1922, + "cast": [ + "Rose Dione", + "Claire Adams" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Golden Gallows", + "year": 1922, + "cast": [ + "Miss DuPont", + "Edwin Stevens", + "Eve Southern" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Golden Gift", + "year": 1922, + "cast": [ + "Alice Lake", + "John Bowers" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Good Men and True", + "year": 1922, + "cast": [ + "Harry Carey", + "Vola Vale" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Good Provider", + "year": 1922, + "cast": [ + "Vera Gordon", + "Miriam Battista" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Grand Larceny", + "year": 1922, + "cast": [ + "Elliott Dexter", + "Claire Windsor" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Grandma's Boy", + "year": 1922, + "cast": [ + "Harold Lloyd", + "Mildred Davis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Great Night", + "year": 1922, + "cast": [ + "William Russell", + "Eva Novak" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Green Temptation", + "year": 1922, + "cast": [ + "Betty Compson", + "Theodore Kosloff" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Guttersnipe", + "year": 1922, + "cast": [ + "Gladys Walton", + "Jack Perrin" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Half Breed", + "year": 1922, + "cast": [ + "Wheeler Oakman", + "Ann May" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Hands of Nara", + "year": 1922, + "cast": [ + "Clara Kimball Young", + "Elliott Dexter" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hate", + "year": 1922, + "cast": [ + "Alice Lake", + "Conrad Nagel" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Head over Heels", + "year": 1922, + "cast": [ + "Mabel Normand", + "Raymond Hatton", + "Adolphe Menjou" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Headin' West", + "year": 1922, + "cast": [ + "Hoot Gibson", + "Gertrude Short" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Headless Horseman", + "year": 1922, + "cast": [ + "Will Rogers", + "Lois Meredith" + ], + "genres": [ + "Comedy", + "Horror" + ] + }, + { + "title": "The Heart Specialist", + "year": 1922, + "cast": [ + "Mary Miles Minter", + "Allan Forrest" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Her Gilded Cage", + "year": 1922, + "cast": [ + "Gloria Swanson", + "David Powell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Her Husband's Trademark", + "year": 1922, + "cast": [ + "Gloria Swanson", + "Stuart Holmes" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Her Own Money", + "year": 1922, + "cast": [ + "Warner Baxter", + "Ethel Clayton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Heroes and Husbands", + "year": 1922, + "cast": [ + "Katherine MacDonald", + "Nigel Barrie", + "Charles K. Gerrard" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Heroes of the Street", + "year": 1922, + "cast": [ + "Wesley Barry", + "Marie Prevost", + "Jack Mulhall" + ], + "genres": [ + "Crime", + "Comedy" + ] + }, + { + "title": "His Back Against the Wall", + "year": 1922, + "cast": [ + "Raymond Hatton", + "Virginia Valli" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "His Wife's Husband", + "year": 1922, + "cast": [ + "Betty Blythe", + "Huntley Gordon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Homespun Vamp", + "year": 1922, + "cast": [ + "May McAvoy", + "Lincoln Stedman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Honor First", + "year": 1922, + "cast": [ + "John Gilbert", + "Renée Adorée" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Hottentot", + "year": 1922, + "cast": [ + "Raymond Hatton", + "Madge Bellamy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "How Women Love", + "year": 1922, + "cast": [ + "Betty Blythe", + "Gladys Hulette" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Human Hearts", + "year": 1922, + "cast": [ + "House Peters", + "George Hackathorne" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hungry Hearts", + "year": 1922, + "cast": [ + "Helen Ferguson", + "Bryant Washburn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hurricane's Gal", + "year": 1922, + "cast": [ + "Dorothy Phillips", + "Wallace Beery", + "Gertrude Astor" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "I Can Explain", + "year": 1922, + "cast": [ + "Bartine Burkett", + "Grace Darmond" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "If I Were Queen", + "year": 1922, + "cast": [ + "Ethel Clayton", + "Warner Baxter" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "If You Believe It, It's So", + "year": 1922, + "cast": [ + "Thomas Meighan", + "Pauline Starke" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Impossible Mrs. Bellew", + "year": 1922, + "cast": [ + "Gloria Swanson", + "Conrad Nagel" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "In the Name of the Law", + "year": 1922, + "cast": [ + "Ralph Lewis", + "Claire McDowell" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Infidel", + "year": 1922, + "cast": [ + "Katherine MacDonald", + "Robert Ellis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Iron to Gold", + "year": 1922, + "cast": [ + "Dustin Farnum", + "Marguerite Marsh" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Is Matrimony a Failure?", + "year": 1922, + "cast": [ + "T. Roy Barnes", + "Lila Lee", + "| Comedy" + ], + "genres": [] + }, + { + "title": "Island Wives", + "year": 1922, + "cast": [ + "Corinne Griffith", + "Charles Trowbridge" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Jilt", + "year": 1922, + "cast": [ + "Marguerite De La Motte", + "Ralph Graves" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "John Smith", + "year": 1922, + "cast": [ + "Eugene O'Brien", + "Mary Astor" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "June Madness", + "year": 1922, + "cast": [ + "Viola Dana", + "Bryant Washburn" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Just Tony", + "year": 1922, + "cast": [ + "Tom Mix", + "Claire Adams" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Kentucky Derby", + "year": 1922, + "cast": [ + "Reginald Denny", + "Lillian Rich" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Kickback", + "year": 1922, + "cast": [ + "Harry Carey", + "Henry B. Walthall" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Kick In", + "year": 1922, + "cast": [ + "Betty Compson", + "Gareth Hughes", + "May McAvoy" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Kindred of the Dust", + "year": 1922, + "cast": [ + "Miriam Cooper", + "Ralph Graves" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Kissed", + "year": 1922, + "cast": [ + "Marie Prevost", + "Lloyd Whitlock" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Kisses", + "year": 1922, + "cast": [ + "Alice Lake", + "Harry Myers" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "The Ladder Jinx", + "year": 1922, + "cast": [ + "Edward Everett Horton", + "Margaret Landis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Lane That Had No Turning", + "year": 1922, + "cast": [ + "Agnes Ayres", + "Theodore Kosloff" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Lavender Bath Lady", + "year": 1922, + "cast": [ + "Gladys Walton", + "Edmund Burns" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Law and the Woman", + "year": 1922, + "cast": [ + "Betty Compson", + "William P. Carleton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Light in the Dark", + "year": 1922, + "cast": [ + "Lon Chaney", + "Hope Hampton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Lights of New York", + "year": 1922, + "cast": [ + "Estelle Taylor", + "Charles K. Gerrard" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Lights of the Desert", + "year": 1922, + "cast": [ + "Shirley Mason", + "Allan Forrest" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Little Eva Ascends", + "year": 1922, + "cast": [ + "Gareth Hughes", + "May Collins" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Little Minister", + "year": 1922, + "cast": [ + "Alice Calhoun", + "James Morrison" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Little Miss Smiles", + "year": 1922, + "cast": [ + "Shirley Mason", + "Gaston Glass" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Little Wildcat", + "year": 1922, + "cast": [ + "Alice Calhoun", + "Oliver Hardy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Loaded Door", + "year": 1922, + "cast": [ + "Hoot Gibson", + "Gertrude Olmstead" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Lone Hand", + "year": 1922, + "cast": [ + "Hoot Gibson", + "Marjorie Daw" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Long Chance", + "year": 1922, + "cast": [ + "Henry B. Walthall", + "Marjorie Daw" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Lorna Doone", + "year": 1922, + "cast": [ + "Madge Bellamy", + "John Bowers" + ], + "genres": [ + "Historical", + "Drama" + ] + }, + { + "title": "The Love Gambler", + "year": 1922, + "cast": [ + "John Gilbert", + "Carmel Myers" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Love in the Dark", + "year": 1922, + "cast": [ + "Viola Dana", + "Cullen Landis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Love Is an Awful Thing", + "year": 1922, + "cast": [ + "Owen Moore", + "Marjorie Daw" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Love's Masquerade", + "year": 1922, + "cast": [ + "Conway Tearle", + "Winifred Westover" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Lying Truth", + "year": 1922, + "cast": [ + "Noah Beery", + "Marjorie Daw" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Making a Man", + "year": 1922, + "cast": [ + "Jack Holt", + "Eva Novak" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Man from Beyond", + "year": 1922, + "cast": [ + "Harry Houdini", + "Arthur Maude" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Man from Downing Street", + "year": 1922, + "cast": [ + "Earle Williams", + "Boris Karloff", + "Betty Ross Clarke" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Man Unconquerable", + "year": 1922, + "cast": [ + "Jack Holt", + "Sylvia Breamer" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Man to Man", + "year": 1922, + "cast": [ + "Harry Carey", + "Lillian Rich" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Man Who Married His Own Wife", + "year": 1922, + "cast": [ + "Frank Mayo", + "Sylvia Breamer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Man Who Paid", + "year": 1922, + "cast": [ + "Wilfred Lytell", + "Norma Shearer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Man Who Played God", + "year": 1922, + "cast": [ + "George Arliss", + "Ann Forrest" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Man Who Saw Tomorrow", + "year": 1922, + "cast": [ + "Thomas Meighan", + "Theodore Roberts", + "Leatrice Joy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Man Under Cover", + "year": 1922, + "cast": [ + "Herbert Rawlinson", + "George Hernandez" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Man with Two Mothers", + "year": 1922, + "cast": [ + "Cullen Landis", + "Sylvia Breamer" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Manslaughter", + "year": 1922, + "cast": [ + "Leatrice Joy", + "Thomas Meighan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Married Flapper", + "year": 1922, + "cast": [ + "Marie Prevost", + "Kenneth Harlan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Masquerader", + "year": 1922, + "cast": [ + "Guy Bates Post", + "Edward Kimball" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Men of Zanzibar", + "year": 1922, + "cast": [ + "William Russell", + "Ruth Renick" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Midnight", + "year": 1922, + "cast": [ + "Constance Binney", + "Sidney Bracey" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Minnie", + "year": 1922, + "cast": [ + "Leatrice Joy", + "Matt Moore" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Missing Millions", + "year": 1922, + "cast": [ + "Alice Brady", + "David Powell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Mixed Faces", + "year": 1922, + "cast": [ + "William Russell", + "Renee Adoree", + "DeWitt Jennings" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Money to Burn", + "year": 1922, + "cast": [ + "William Russell", + "Sylvia Breamer" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Monte Cristo", + "year": 1922, + "cast": [ + "John Gilbert", + "Estelle Taylor" + ], + "genres": [ + "Historical" + ] + }, + { + "title": "Moonshine Valley", + "year": 1922, + "cast": [ + "William Farnum", + "Anne Shirley" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Moran of the Lady Letty", + "year": 1922, + "cast": [ + "Dorothy Dalton", + "Charles Brinley" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "More to Be Pitied Than Scorned", + "year": 1922, + "cast": [ + "Rosemary Theby", + "Philo McCullough", + "Gordon Griffith" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Mr. Barnes of New York", + "year": 1922, + "cast": [ + "Tom Moore", + "Anna Lehr" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Mud and Sand", + "year": 1922, + "cast": [ + "Stan Laurel", + "Leona Anderson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "My American Wife", + "year": 1922, + "cast": [ + "Gloria Swanson", + "Antonio Moreno" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "My Dad", + "year": 1922, + "cast": [ + "Johnnie Walker", + "Ruth Clifford" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "My Friend, the Devil", + "year": 1922, + "cast": [ + "Charles Richman", + "Barbara Castleton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "My Wife's Relations", + "year": 1922, + "cast": [ + "Buster Keaton", + "Monte Collins" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "My Wild Irish Rose", + "year": 1922, + "cast": [ + "Pat O'Malley", + "Pauline Starke" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Nancy from Nowhere", + "year": 1922, + "cast": [ + "Bebe Daniels", + "Eddie Sutherland" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Nanook of the North", + "year": 1922, + "cast": [ + "Allakariallak", + "Nyla Cunayou" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Nero", + "year": 1922, + "cast": [ + "Jacques Grétillat", + "Sandro Salvini" + ], + "genres": [ + "Historical" + ] + }, + { + "title": "The New Teacher", + "year": 1922, + "cast": [ + "Shirley Mason", + "Allan Forrest" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Nice People", + "year": 1922, + "cast": [ + "Wallace Reid", + "Bebe Daniels" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Ninety and Nine", + "year": 1922, + "cast": [ + "Warner Baxter", + "Colleen Moore" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "No Trespassing", + "year": 1922, + "cast": [ + "Irene Castle", + "Ward Crane" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "North of the Rio Grande", + "year": 1922, + "cast": [ + "Bebe Daniels", + "Jack Holt" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Notoriety", + "year": 1922, + "cast": [ + "Mary Alden", + "Rod La Rocque" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Oath-Bound", + "year": 1922, + "cast": [ + "Dustin Farnum", + "Ethel Grey Terry", + "Fred Thomson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Old Homestead", + "year": 1922, + "cast": [ + "Theodore Roberts", + "George Fawcett", + "Fritzi Ridgeway" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Oliver Twist", + "year": 1922, + "cast": [ + "Jackie Coogan", + "Lon Chaney", + "Gladys Brockwell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Omar the Tentmaker", + "year": 1922, + "cast": [ + "Guy Bates Post", + "Virginia Browne Faire" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "On the High Seas", + "year": 1922, + "cast": [ + "Dorothy Dalton", + "Jack Holt" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "One Clear Call", + "year": 1922, + "cast": [ + "Milton Sills", + "Claire Windsor", + "Irene Rich" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "One Exciting Night", + "year": 1922, + "cast": [ + "Carol Dempster", + "Henry Hull" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "One Glorious Day", + "year": 1922, + "cast": [ + "Will Rogers", + "Lila Lee" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "One Week of Love", + "year": 1922, + "cast": [ + "Elaine Hammerstein", + "Conway Tearle" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "One Wonderful Night", + "year": 1922, + "cast": [ + "Herbert Rawlinson", + "Lillian Rich" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Only a Shop Girl", + "year": 1922, + "cast": [ + "Estelle Taylor", + "Mae Busch", + "Wallace Beery" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Ordeal", + "year": 1922, + "cast": [ + "Agnes Ayres", + "Conrad Nagel", + "Edna Murphy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Our Leading Citizen", + "year": 1922, + "cast": [ + "Thomas Meighan", + "Lois Wilson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Out of the Silent North", + "year": 1922, + "cast": [ + "Frank Mayo", + "Barbara Bedford" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Outcast", + "year": 1922, + "cast": [ + "Elsie Ferguson", + "William Powell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Over the Border", + "year": 1922, + "cast": [ + "Betty Compson", + "Tom Moore" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Paid Back", + "year": 1922, + "cast": [ + "Gladys Brockwell", + "Mahlon Hamilton", + "Stuart Holmes" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Paleface", + "year": 1922, + "cast": [ + "Buster Keaton", + "Virginia Fox" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Pardon My Nerve!", + "year": 1922, + "cast": [ + "Buck Jones", + "Mae Busch" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Pawn Ticket 210", + "year": 1922, + "cast": [ + "Shirley Mason", + "Robert Agnew" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Pawned", + "year": 1922, + "cast": [ + "Tom Moore", + "Edith Roberts" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Pay Day", + "year": 1922, + "cast": [ + "Charlie Chaplin", + "Phyllis Allen", + "Mack Swain" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Peacock Alley", + "year": 1922, + "cast": [ + "Mae Murray", + "Monte Blue", + "Edmund Lowe" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Peg o' My Heart", + "year": 1922, + "cast": [ + "Laurette Taylor", + "Mahlon Hamilton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Penrod", + "year": 1922, + "cast": [ + "Wesley Barry", + "Tully Marshall" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Perils of the Yukon", + "year": 1922, + "cast": [ + "William Desmond", + "Laura La Plante" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Pink Gods", + "year": 1922, + "cast": [ + "Bebe Daniels", + "Adolphe Menjou", + "Anna Q. Nilsson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Polly of the Follies", + "year": 1922, + "cast": [ + "Constance Talmadge", + "Thomas Carr" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Pride of Palomar", + "year": 1922, + "cast": [ + "Forrest Stanley", + "Marjorie Daw" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Primitive Lover", + "year": 1922, + "cast": [ + "Constance Talmadge", + "Harrison Ford" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Prisoner of Zenda", + "year": 1922, + "cast": [ + "Lewis Stone", + "Alice Terry" + ], + "genres": [] + }, + { + "title": "The Prodigal Judge", + "year": 1922, + "cast": [ + "Jean Paige", + "Earle Foxe" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Prophet's Paradise", + "year": 1922, + "cast": [ + "Eugene O'Brien", + "Sigrid Holmquist" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Question of Honor", + "year": 1922, + "cast": [ + "Anita Stewart", + "Edward Hearn" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Quincy Adams Sawyer", + "year": 1922, + "cast": [ + "John Bowers", + "Blanche Sweet", + "Lon Chaney" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Ragged Heiress", + "year": 1922, + "cast": [ + "Shirley Mason", + "John Harron" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Rags to Riches", + "year": 1922, + "cast": [ + "Wesley Barry", + "Niles Welch" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Real Adventure", + "year": 1922, + "cast": [ + "Florence Vidor", + "Clyde Fillmore" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Received Payment", + "year": 1922, + "cast": [ + "Corinne Griffith", + "Kenneth Harlan", + "David Torrence" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Reckless Youth", + "year": 1922, + "cast": [ + "Elaine Hammerstein", + "Niles Welch" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Red Hot Romance", + "year": 1922, + "cast": [ + "Basil Sydney", + "May Collins" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Referee", + "year": 1922, + "cast": [ + "Conway Tearle", + "Anders Randolf", + "Gladys Hulette" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Remembrance", + "year": 1922, + "cast": [ + "Cullen Landis", + "Claude Gillingwater", + "Patsy Ruth Miller" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Rent Free", + "year": 1922, + "cast": [ + "Wallace Reid", + "Lila Lee" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Reported Missing", + "year": 1922, + "cast": [ + "Owen Moore", + "Pauline Garon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Restless Souls", + "year": 1922, + "cast": [ + "Earle Williams", + "Francelia Billington" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Rich Men's Wives", + "year": 1922, + "cast": [ + "House Peters", + "Claire Windsor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Ridin' Wild", + "year": 1922, + "cast": [ + "Hoot Gibson", + "Edna Murphy" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Right That Failed", + "year": 1922, + "cast": [ + "Bert Lytell", + "Virginia Valli" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Robin Hood", + "year": 1922, + "cast": [ + "Douglas Fairbanks", + "Wallace Beery", + "Enid Bennett" + ], + "genres": [] + }, + { + "title": "The Rosary", + "year": 1922, + "cast": [ + "Lewis Stone", + "Jane Novak", + "Wallace Beery" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Rose o' the Sea", + "year": 1922, + "cast": [ + "Anita Stewart", + "Thomas Holding" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Roughshod", + "year": 1922, + "cast": [ + "Buck Jones", + "Helen Ferguson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Ruling Passion", + "year": 1922, + "cast": [ + "George Arliss", + "Doris Kenyon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Saturday Night", + "year": 1922, + "cast": [ + "Leatrice Joy", + "Conrad Nagel" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "The Scrapper", + "year": 1922, + "cast": [ + "Herbert Rawlinson", + "Gertrude Olmstead" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Second Hand Rose", + "year": 1922, + "cast": [ + "Gladys Walton", + "George B. Williams" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Secrets of Paris", + "year": 1922, + "cast": [ + "Lew Cody", + "Gladys Hulette" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Seeing's Believing", + "year": 1922, + "cast": [ + "Viola Dana", + "Allan Forrest", + "Gertrude Astor" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "The Seventh Day", + "year": 1922, + "cast": [ + "Richard Barthelmess", + "Frank Losee" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Self-Made Man", + "year": 1922, + "cast": [ + "William Russell", + "Renee Adoree" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Shackles of Gold", + "year": 1922, + "cast": [ + "William Farnum", + "Marie Shotwell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Shadows", + "year": 1922, + "cast": [ + "Lon Chaney", + "Marguerite De La Motte" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Shadows of the Sea", + "year": 1922, + "cast": [ + "Conway Tearle", + "Crauford Kent", + "Doris Kenyon" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Shattered Dreams", + "year": 1922, + "cast": [ + "Miss DuPont", + "Bertram Grassby" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Shattered Idols", + "year": 1922, + "cast": [ + "Marguerite De La Motte", + "James Morrison" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sherlock Brown", + "year": 1922, + "cast": [ + "Bert Lytell", + "Sylvia Breamer", + "Theodore von Eltz" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Sherlock Holmes", + "year": 1922, + "cast": [ + "John Barrymore", + "Roland Young" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Shirley of the Circus", + "year": 1922, + "cast": [ + "Shirley Mason", + "George O'Hara" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Silas Marner", + "year": 1922, + "cast": [ + "Marguerite Courtot", + "Crauford Kent" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Silent Vow", + "year": 1922, + "cast": [ + "Edith Johnson", + "Dorothy Dwan" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Silver Wings", + "year": 1922, + "cast": [ + "Mary Carr", + "Percy Helton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Sin Flood", + "year": 1922, + "cast": [ + "Richard Dix", + "Helene Chadwick" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Singed Wings", + "year": 1922, + "cast": [ + "Bebe Daniels", + "Conrad Nagel", + "Adolphe Menjou" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Siren Call", + "year": 1922, + "cast": [ + "Dorothy Dalton", + "David Powell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Skin Deep", + "year": 1922, + "cast": [ + "Milton Sills", + "Florence Vidor" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Sky High", + "year": 1922, + "cast": [ + "Tom Mix", + "Eva Novak" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Sleepwalker", + "year": 1922, + "cast": [ + "Constance Binney", + "Jack Mulhall" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Slim Shoulders", + "year": 1922, + "cast": [ + "Irene Castle", + "Rod La Rocque" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Smiles Are Trumps", + "year": 1922, + "cast": [ + "Maurice \"Lefty\" Flynn", + "Ora Carew" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Smilin' Through", + "year": 1922, + "cast": [ + "Norma Talmadge", + "Wyndham Standing", + "Harrison Ford" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "Smudge", + "year": 1922, + "cast": [ + "Charles Ray", + "Ora Carew" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Snowshoe Trail", + "year": 1922, + "cast": [ + "Jane Novak", + "Lloyd Whitlock" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Son of the Wolf", + "year": 1922, + "cast": [ + "Wheeler Oakman", + "Edith Roberts" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Song of Life", + "year": 1922, + "cast": [ + "Gaston Glass", + "Grace Darmond" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sonny", + "year": 1922, + "cast": [ + "Richard Barthelmess", + "Margaret Seddon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "South of Suva", + "year": 1922, + "cast": [ + "Mary Miles Minter", + "Winifred Bryson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Stage Romance", + "year": 1922, + "cast": [ + "William Farnum", + "Peggy Shaw" + ], + "genres": [ + "Historical" + ] + }, + { + "title": "Step on It!", + "year": 1922, + "cast": [ + "Hoot Gibson", + "Edith Yorke" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Storm", + "year": 1922, + "cast": [ + "Matt Moore", + "Virginia Valli" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Strange Idols", + "year": 1922, + "cast": [ + "Dustin Farnum", + "Doris Pawn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Strangers' Banquet", + "year": 1922, + "cast": [ + "Hobart Bosworth", + "Claire Windsor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Strength of the Pines", + "year": 1922, + "cast": [ + "William Russell", + "Irene Rich" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Tailor-Made Man", + "year": 1922, + "cast": [ + "Charles Ray", + "Tom Ricketts" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Tess of the Storm Country", + "year": 1922, + "cast": [ + "Mary Pickford", + "Lloyd Hughes", + "Gloria Hope" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Thelma", + "year": 1922, + "cast": [ + "Jane Novak", + "Barbara Tennant", + "Vernon Steele" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "They Like 'Em Rough", + "year": 1922, + "cast": [ + "Viola Dana", + "Hardee Kirkland" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Third Alarm", + "year": 1922, + "cast": [ + "Johnnie Walker", + "Ella Hall" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Thirty Days", + "year": 1922, + "cast": [ + "Wallace Reid", + "Wanda Hawley" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Thorns and Orange Blossoms", + "year": 1922, + "cast": [ + "Estelle Taylor", + "Kenneth Harlan" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Three Must-Get-Theres", + "year": 1922, + "cast": [ + "Max Linder", + "Jobyna Ralston" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Through a Glass Window", + "year": 1922, + "cast": [ + "May McAvoy", + "Fanny Midgley", + "Raymond McKee" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Till We Meet Again", + "year": 1922, + "cast": [ + "Julia Swayne Gordon", + "Mae Marsh" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Tillie", + "year": 1922, + "cast": [ + "Mary Miles Minter", + "Noah Beery" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Timber Queen", + "year": 1922, + "cast": [ + "Ruth Roland", + "Bruce Gordon" + ], + "genres": [ + "Action" + ] + }, + { + "title": "To Have and to Hold", + "year": 1922, + "cast": [ + "Bert Lytell", + "Betty Compson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Toll of the Sea", + "year": 1922, + "cast": [ + "Anna May Wong", + "Kenneth Harlan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Tom Mix in Arabia", + "year": 1922, + "cast": [ + "Tom Mix", + "Barbara Bedford" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Top o' the Morning", + "year": 1922, + "cast": [ + "Gladys Walton", + "Harry Myers" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Top of New York", + "year": 1922, + "cast": [ + "May McAvoy", + "Walter McGrail" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Town That Forgot God", + "year": 1922, + "cast": [ + "Warren William", + "Jane Thomas" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Tracked to Earth", + "year": 1922, + "cast": [ + "Frank Mayo", + "Virginia Valli" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Trap", + "year": 1922, + "cast": [ + "Lon Chaney", + "Alan Hale", + "Irene Rich" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Travelin' On", + "year": 1922, + "cast": [ + "William S. Hart", + "Ethel Grey Terry" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Trifling Women", + "year": 1922, + "cast": [ + "Barbara La Marr", + "Ramon Novarro" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Trimmed", + "year": 1922, + "cast": [ + "Hoot Gibson", + "Patsy Ruth Miller" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Trooper O'Neill", + "year": 1922, + "cast": [ + "Buck Jones", + "Beatrice Burnham" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Trouble", + "year": 1922, + "cast": [ + "Jackie Coogan", + "Wallace Beery", + "Gloria Hope" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Trouper", + "year": 1922, + "cast": [ + "Gladys Walton", + "Jack Perrin" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Truthful Liar", + "year": 1922, + "cast": [ + "Wanda Hawley", + "Guy Edward Hearn" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Turn to the Right", + "year": 1922, + "cast": [ + "Alice Terry", + "Jack Mulhall" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Too Much Business", + "year": 1922, + "cast": [ + "Edward Everett Horton", + "Ethel Grey Terry" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Too Much Wife", + "year": 1922, + "cast": [ + "Wanda Hawley", + "T. Roy Barnes" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Two Kinds of Women", + "year": 1922, + "cast": [ + "Pauline Frederick", + "Tom Santschi" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Under Oath", + "year": 1922, + "cast": [ + "Elaine Hammerstein", + "Niles Welch" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Under Two Flags", + "year": 1922, + "cast": [ + "Priscilla Dean", + "James Kirkwood" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Understudy", + "year": 1922, + "cast": [ + "Doris May", + "Wallace MacDonald" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Up and at 'Em", + "year": 1922, + "cast": [ + "Doris May", + "Hallam Cooley" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Up and Going", + "year": 1922, + "cast": [ + "Cecil Van Auker", + "Carol Holloway" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Valley of Silent Men", + "year": 1922, + "cast": [ + "Alma Rubens", + "Lew Cody" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Vermilion Pencil", + "year": 1922, + "cast": [ + "Sessue Hayakawa", + "Ann May" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Very Truly Yours", + "year": 1922, + "cast": [ + "Shirley Mason", + "Allan Forrest" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Village Blacksmith", + "year": 1922, + "cast": [ + "Will Walling", + "Virginia True Boardman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Virgin's Sacrifice", + "year": 1922, + "cast": [ + "Corinne Griffith", + "David Torrence" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Wall Flower", + "year": 1922, + "cast": [ + "Colleen Moore", + "Richard Dix", + "Gertrude Astor" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Watch Your Step", + "year": 1922, + "cast": [ + "Cullen Landis", + "Patsy Ruth Miller", + "Bert Woodruff", + "George C. Pearce" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "West of Chicago", + "year": 1922, + "cast": [ + "Buck Jones", + "Renée Adorée" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Western Speed", + "year": 1922, + "cast": [ + "Buck Jones", + "Eileen Percy" + ], + "genres": [ + "Western" + ] + }, + { + "title": "What's Wrong with the Women?", + "year": 1922, + "cast": [ + "Wilton Lackaye", + "Constance Bennett" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "When Danger Smiles", + "year": 1922, + "cast": [ + "Edith Johnson", + "James Farley" + ], + "genres": [ + "Western" + ] + }, + { + "title": "When Knighthood Was in Flower", + "year": 1922, + "cast": [ + "Marion Davies", + "Forrest Stanley" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "When Love Comes", + "year": 1922, + "cast": [ + "Helen Jerome Eddy", + "Harrison Ford" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "When Romance Rides", + "year": 1922, + "cast": [ + "Claire Adams", + "Carl Gantvoort" + ], + "genres": [ + "Western" + ] + }, + { + "title": "While Justice Waits", + "year": 1922, + "cast": [ + "Dustin Farnum", + "Irene Rich" + ], + "genres": [ + "Western" + ] + }, + { + "title": "While Satan Sleeps", + "year": 1922, + "cast": [ + "Jack Holt", + "Wade Boteler" + ], + "genres": [ + "Western" + ] + }, + { + "title": "White Hands", + "year": 1922, + "cast": [ + "Hobart Bosworth", + "Elinor Fair" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "White Shoulders", + "year": 1922, + "cast": [ + "Katherine MacDonald", + "Lillian Lawrence" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Who Are My Parents?", + "year": 1922, + "cast": [ + "Niles Welch", + "Ernest Hilliard" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Why Announce Your Marriage?", + "year": 1922, + "cast": [ + "Elaine Hammerstein", + "Niles Welch" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Wide Open Town", + "year": 1922, + "cast": [ + "Conway Tearle", + "Faire Binney" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Wild Honey", + "year": 1922, + "cast": [ + "Priscilla Dean", + "Noah Beery Sr." + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Winning with Wits", + "year": 1922, + "cast": [ + "Barbara Bedford", + "Harry Northrup" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Wise Kid", + "year": 1922, + "cast": [ + "Gladys Walton", + "David Butler" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "What Fools Men Are", + "year": 1922, + "cast": [ + "Faire Binney", + "Lucy Fox" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "White Eagle", + "year": 1922, + "cast": [ + "Ruth Roland", + "Otto Lederer" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Wildness of Youth", + "year": 1922, + "cast": [ + "Virginia Pearson", + "Harry T. Morey" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Wise Kid", + "year": 1922, + "cast": [ + "Gladys Walton", + "David Butler" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Without Compromise", + "year": 1922, + "cast": [ + "William Farnum", + "Lois Wilson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Without Fear", + "year": 1922, + "cast": [ + "Pearl White", + "Robert Elliott" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Wolf Law", + "year": 1922, + "cast": [ + "Frank Mayo", + "Sylvia Breamer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Woman Conquers", + "year": 1922, + "cast": [ + "Katherine MacDonald", + "Bryant Washburn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Woman He Married", + "year": 1922, + "cast": [ + "Anita Stewart", + "Donald MacDonald", + "Shannon Day" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Woman Who Walked Alone", + "year": 1922, + "cast": [ + "Dorothy Dalton", + "Milton Sills", + "Wanda Hawley" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Woman's Side", + "year": 1922, + "cast": [ + "Katherine MacDonald", + "Edmund Burns" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Wonderful Wife", + "year": 1922, + "cast": [ + "Miss DuPont", + "Vernon Steele" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The World's Champion", + "year": 1922, + "cast": [ + "Wallace Reid", + "Lois Wilson" + ], + "genres": [ + "Sports", + "Drama" + ] + }, + { + "title": "Yellow Men and Gold", + "year": 1922, + "cast": [ + "Richard Dix", + "Helene Chadwick" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Yellow Stain", + "year": 1922, + "cast": [ + "John Gilbert", + "Claire Anderson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Yosemite Trail", + "year": 1922, + "cast": [ + "Dustin Farnum", + "Irene Rich" + ], + "genres": [ + "Western" + ] + }, + { + "title": "You Never Know", + "year": 1922, + "cast": [ + "Earle Williams", + "Gertrude Astor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Young Diana", + "year": 1922, + "cast": [ + "Marion Davies", + "Forrest Stanley" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Young Rajah", + "year": 1922, + "cast": [ + "Rudolph Valentino", + "Wanda Hawley" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Your Best Friend", + "year": 1922, + "cast": [ + "Vera Gordon", + "Harry Benham" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Youth Must Have Love", + "year": 1922, + "cast": [ + "Shirley Mason", + "Wallace MacDonald" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Youth to Youth", + "year": 1922, + "cast": [ + "Billie Dove", + "Edythe Chapman", + "Hardee Kirkland" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Abysmal Brute", + "year": 1923, + "cast": [ + "Reginald Denny", + "Mabel Julienne Scott" + ], + "genres": [ + "Sports" + ] + }, + { + "title": "The Acquittal", + "year": 1923, + "cast": [ + "Claire Windsor", + "Norman Kerry" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Adam and Eva", + "year": 1923, + "cast": [ + "Marion Davies", + "T. Roy Barnes" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Adam's Rib", + "year": 1923, + "cast": [ + "Milton Sills", + "Elliott Dexter" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Age of Desire", + "year": 1923, + "cast": [ + "Josef Swickard", + "William Collier Jr.", + "Mary Philbin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Alias the Night Wind", + "year": 1923, + "cast": [ + "William Russell", + "Wade Boteler" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Alice Adams", + "year": 1923, + "cast": [ + "Florence Vidor", + "Claude Gillingwater", + "Gertrude Astor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "All the Brothers Were Valiant", + "year": 1923, + "cast": [ + "Lon Chaney", + "Malcolm McGregor", + "Billie Dove" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Anna Christie", + "year": 1923, + "cast": [ + "Blanche Sweet", + "William Russell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "April Showers", + "year": 1923, + "cast": [ + "Colleen Moore", + "Kenneth Harlan", + "Ruth Clifford" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Acquittal", + "year": 1923, + "cast": [ + "Claire Windsor", + "Norman Kerry", + "Barbara Bedford" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Around the World in Eighteen Days", + "year": 1923, + "cast": [ + "William Desmond", + "Laura La Plante" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Ashes of Vengeance", + "year": 1923, + "cast": [ + "Norma Talmadge", + "Conway Tearle", + "Wallace Beery" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Backbone", + "year": 1923, + "cast": [ + "Edith Roberts", + "Alfred Lunt" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Bad Man", + "year": 1923, + "cast": [ + "Holbrook Blinn", + "Jack Mulhall", + "Walter McGrail" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Bag and Baggage", + "year": 1923, + "cast": [ + "Gloria Grey", + "Carmelita Geraghty" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "The Barefoot Boy", + "year": 1923, + "cast": [ + "John Bowers", + "Marjorie Daw", + "Sylvia Breamer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Bavu", + "year": 1923, + "cast": [ + "Wallace Beery", + "Estelle Taylor", + "Forrest Stanley" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Bell Boy 13", + "year": 1923, + "cast": [ + "Douglas MacLean", + "John Steppling" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Big Brother", + "year": 1923, + "cast": [ + "Tom Moore", + "Edith Roberts" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Big Dan", + "year": 1923, + "cast": [ + "Charles Jones", + "Marian Nixon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Bishop of the Ozarks", + "year": 1923, + "cast": [ + "Milford W. Howard", + "Derelys Perdue" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Bolted Door", + "year": 1923, + "cast": [ + "Frank Mayo", + "Phyllis Haver" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Boston Blackie", + "year": 1923, + "cast": [ + "William Russell", + "Eva Novak" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Boy of Mine", + "year": 1923, + "cast": [ + "Ben Alexander", + "Rockliffe Fellowes", + "Henry B. Walthall" + ], + "genres": [ + "Family", + "Drama" + ] + }, + { + "title": "Black Oxen", + "year": 1923, + "cast": [ + "Corinne Griffith", + "Conway Tearle" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Blinky", + "year": 1923, + "cast": [ + "Hoot Gibson", + "Esther Ralston" + ], + "genres": [ + "Comedy", + "Western" + ] + }, + { + "title": "Blow Your Own Horn", + "year": 1923, + "cast": [ + "Warner Baxter", + "Ralph Lewis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Bluebeard's 8th Wife", + "year": 1923, + "cast": [ + "Gloria Swanson", + "Huntley Gordon" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Boy of Mine", + "year": 1923, + "cast": [ + "Rockliffe Fellowes", + "Irene Rich" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Brass", + "year": 1923, + "cast": [ + "Monte Blue", + "Marie Prevost" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Brass Bottle", + "year": 1923, + "cast": [ + "Harry Myers", + "Ernest Torrence" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Brass Commandments", + "year": 1923, + "cast": [ + "William Farnum", + "Wanda Hawley" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Breaking Into Society", + "year": 1923, + "cast": [ + "Bull Montana", + "Florence Gilbert" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Bright Lights of Broadway", + "year": 1923, + "cast": [ + "Doris Kenyon", + "Lowell Sherman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Bright Shawl", + "year": 1923, + "cast": [ + "Richard Barthelmess", + "Dorothy Gish", + "Mary Astor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Broad Road", + "year": 1923, + "cast": [ + "Richard Travers", + "May Allison" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Broadway Broke", + "year": 1923, + "cast": [ + "Mary Carr", + "Percy Marmont" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Broadway Gold", + "year": 1923, + "cast": [ + "Elaine Hammerstein", + "Elliott Dexter" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Broken Hearts of Broadway", + "year": 1923, + "cast": [ + "Colleen Moore", + "Johnnie Walker", + "Alice Lake" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Broken Wing", + "year": 1923, + "cast": [ + "Kenneth Harlan", + "Miriam Cooper" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mothers-in-Law", + "year": 1923, + "cast": [ + "Ruth Clifford", + "Gaston Glass" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Bucking the Barrier", + "year": 1923, + "cast": [ + "Dustin Farnum", + "Arline Pretty" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Burning Words", + "year": 1923, + "cast": [ + "Laura La Plante", + "Harold Goodwin" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Buster", + "year": 1923, + "cast": [ + "Dustin Farnum", + "Francis McDonald" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Call of the Canyon", + "year": 1923, + "cast": [ + "Richard Dix", + "Lois Wilson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Call of the Wild", + "year": 1923, + "cast": [ + "Jack Mulhall", + "Sidney D'Albrook" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Cameo Kirby", + "year": 1923, + "cast": [ + "John Gilbert", + "Gertrude Olmstead" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Can a Woman Love Twice?", + "year": 1923, + "cast": [ + "Ethel Clayton", + "Kate Lester" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Canyon of the Fools", + "year": 1923, + "cast": [ + "Harry Carey", + "Marguerite Clayton" + ], + "genres": [ + "Western" + ] + }, + { + "title": "A Chapter in Her Life", + "year": 1923, + "cast": [ + "Claude Gillingwater", + "Jacqueline Gadsden" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Chastity", + "year": 1923, + "cast": [ + "Katherine MacDonald", + "Huntley Gordon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Cheat", + "year": 1923, + "cast": [ + "Pola Negri", + "Jack Holt" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Children of Dust", + "year": 1923, + "cast": [ + "Johnnie Walker", + "Pauline Garon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Children of Jazz", + "year": 1923, + "cast": [ + "Theodore Kosloff", + "Ricardo Cortez", + "Eileen Percy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Christian", + "year": 1923, + "cast": [ + "Richard Dix", + "Mae Busch", + "Gareth Hughes" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Circus Days", + "year": 1923, + "cast": [ + "Jackie Coogan", + "Claire McDowell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Clean-Up", + "year": 1923, + "cast": [ + "Herbert Rawlinson", + "Claire Adams" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Common Law", + "year": 1923, + "cast": [ + "Corinne Griffith", + "Conway Tearle" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Cordelia the Magnificent", + "year": 1923, + "cast": [ + "Clara Kimball Young", + "Huntley Gordon" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Country Kid", + "year": 1923, + "cast": [ + "Wesley Barry", + "Spec O'Donnell", + "Bruce Guerin" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Courtship of Miles Standish", + "year": 1923, + "cast": [ + "Charles Ray", + "Enid Bennett", + "Sam De Grasse" + ], + "genres": [ + "Historical" + ] + }, + { + "title": "The Covered Wagon", + "year": 1923, + "cast": [ + "J. Warren Kerrigan", + "Lois Wilson", + "Alan Hale" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Crashin' Thru", + "year": 1923, + "cast": [ + "Harry Carey", + "Cullen Landis" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Cricket on the Hearth", + "year": 1923, + "cast": [ + "Josef Swickard", + "Fritzi Ridgeway", + "Virginia Brown Faire" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Crinoline and Romance", + "year": 1923, + "cast": [ + "Viola Dana", + "Claude Gillingwater", + "John Bowers" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Crooked Alley", + "year": 1923, + "cast": [ + "Thomas Carrigan", + "Laura La Plante" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Crossed Wires", + "year": 1923, + "cast": [ + "Gladys Walton", + "Eddie Gribbon" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Cupid's Fireman", + "year": 1923, + "cast": [ + "Buck Jones", + "Marian Nixon" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Custard Cup", + "year": 1923, + "cast": [ + "Mary Carr", + "Ben Lyon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Daddy", + "year": 1923, + "cast": [ + "Jackie Coogan", + "Josie Sedgwick" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Dancer of the Nile", + "year": 1923, + "cast": [ + "Carmel Myers", + "Sam De Grasse" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Dangerous Age", + "year": 1923, + "cast": [ + "Lewis Stone", + "Edith Roberts", + "Ruth Clifford" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Dangerous Maid", + "year": 1923, + "cast": [ + "Constance Talmadge", + "Conway Tearle", + "Charles K. Gerrard" + ], + "genres": [ + "Historical", + "Comedy" + ] + }, + { + "title": "The Daring Years", + "year": 1923, + "cast": [ + "Mildred Harris", + "Charles Emmett Mack", + "Clara Bow" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dark Secrets", + "year": 1923, + "cast": [ + "Dorothy Dalton", + "Robert Ellis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Darling of New York", + "year": 1923, + "cast": [ + "Sheldon Lewis", + "Gladys Brockwell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Daughters of the Rich", + "year": 1923, + "cast": [ + "Miriam Cooper", + "Gaston Glass" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Day of Faith", + "year": 1923, + "cast": [ + "Eleanor Boardman", + "Tyrone Power Sr" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Daytime Wives", + "year": 1923, + "cast": [ + "Wyndham Standing", + "Grace Darmond" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dead Game", + "year": 1923, + "cast": [ + "Hoot Gibson", + "Robert McKim" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Defying Destiny", + "year": 1923, + "cast": [ + "Monte Blue", + "Irene Rich" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Desert Driven", + "year": 1923, + "cast": [ + "Harry Carey", + "Marguerite Clayton" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Desire", + "year": 1923, + "cast": [ + "Marguerite De La Motte", + "John Bowers", + "Estelle Taylor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Destroying Angel", + "year": 1923, + "cast": [ + "Leah Baird", + "John Bowers" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Divorce", + "year": 1923, + "cast": [ + "Jane Novak", + "John Bowers" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Does It Pay?", + "year": 1923, + "cast": [ + "Hope Hampton", + "Robert T. Haines" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dollar Devils", + "year": 1923, + "cast": [ + "Eva Novak", + "Cullen Landis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Don Quickshot of the Rio Grande", + "year": 1923, + "cast": [ + "Jack Hoxie", + "William Steele" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Don't Call It Love", + "year": 1923, + "cast": [ + "Agnes Ayres", + "Jack Holt", + "Nita Naldi" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Don't Marry for Money", + "year": 1923, + "cast": [ + "House Peters", + "Rubye De Remer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Double Dealing", + "year": 1923, + "cast": [ + "Hoot Gibson", + "Helen Ferguson", + "Betty Francisco" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Drifting", + "year": 1923, + "cast": [ + "Priscilla Dean", + "Matt Moore" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Driven", + "year": 1923, + "cast": [ + "Emily Fitzroy", + "Burr McIntosh" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Drums of Fate", + "year": 1923, + "cast": [ + "Mary Miles Minter", + "George Fawcett" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Drums of Jeopardy", + "year": 1923, + "cast": [ + "Elaine Hammerstein", + "Wallace Beery", + "Jack Mulhall" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Dulcy", + "year": 1923, + "cast": [ + "Constance Talmadge", + "Claude Gillingwater" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Eagle's Feather", + "year": 1923, + "cast": [ + "James Kirkwood", + "Mary Alden" + ], + "genres": [ + "Western" + ] + }, + { + "title": "East Side - West Side", + "year": 1923, + "cast": [ + "Kenneth Harlan", + "Eileen Percy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Eleventh Hour", + "year": 1923, + "cast": [ + "Shirley Mason", + "Buck Jones" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Enemies of Women", + "year": 1923, + "cast": [ + "Alma Rubens", + "Lionel Barrymore", + "Gareth Hughes" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Eternal City", + "year": 1923, + "cast": [ + "Lionel Barrymore", + "Bert Lytell", + "Barbara La Marr" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Eternal Struggle", + "year": 1923, + "cast": [ + "Renée Adorée", + "Earle Williams", + "Barbara La Marr" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Eternal Three", + "year": 1923, + "cast": [ + "Hobart Bosworth", + "Claire Windsor", + "Bessie Love" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Eyes of the Forest", + "year": 1923, + "cast": [ + "Tom Mix", + "Pauline Starke" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Exciters", + "year": 1923, + "cast": [ + "Bebe Daniels", + "Antonio Moreno" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Exiles", + "year": 1923, + "cast": [ + "John Gilbert", + "John Webb Dillion" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Extra Girl", + "year": 1923, + "cast": [ + "Mabel Normand", + "Ralph Graves" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Face on the Bar-Room Floor", + "year": 1923, + "cast": [ + "Henry B. Walthall", + "Ruth Clifford" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Fair Cheat", + "year": 1923, + "cast": [ + "Edmund Breese", + "Wilfred Lytell", + "Dorothy Mackaill" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Famous Mrs. Fair", + "year": 1923, + "cast": [ + "Myrtle Stedman", + "Huntley Gordon", + "Marguerite De La Motte" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Fashion Row", + "year": 1923, + "cast": [ + "Mae Murray", + "Earle Foxe" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Fashionable Fakers", + "year": 1923, + "cast": [ + "Johnnie Walker", + "J. Farrell MacDonald" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Fighting Blade", + "year": 1923, + "cast": [ + "Richard Barthelmess", + "Dorothy Mackaill" + ], + "genres": [ + "Historical" + ] + }, + { + "title": "The First Degree", + "year": 1923, + "cast": [ + "Frank Mayo", + "Sylvia Breamer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Flame of Life", + "year": 1923, + "cast": [ + "Priscilla Dean", + "Kathryn McGuire", + "Wallace Beery" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Flaming Youth", + "year": 1923, + "cast": [ + "Colleen Moore", + "Milton Sills", + "Elliott Dexter" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Flying Dutchman", + "year": 1923, + "cast": [ + "Lawson Butt", + "Ella Hall" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Fog", + "year": 1923, + "cast": [ + "Mildred Harris", + "Louise Fazenda" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Fog Bound", + "year": 1923, + "cast": [ + "Dorothy Dalton", + "David Powell", + "Martha Mansfield" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Fools and Riches", + "year": 1923, + "cast": [ + "Herbert Rawlinson", + "Katherine Perry" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Footlight Ranger", + "year": 1923, + "cast": [ + "Buck Jones", + "Fritzi Brunette" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Forgive and Forget", + "year": 1923, + "cast": [ + "Estelle Taylor", + "Pauline Garon" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Fourth Musketeer", + "year": 1923, + "cast": [ + "Johnnie Walker", + "Eileen Percy", + "Eddie Gribbon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The French Doll", + "year": 1923, + "cast": [ + "Mae Murray", + "Orville Caldwell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Friendly Husband", + "year": 1923, + "cast": [ + "Lupino Lane", + "Alberta Vaughn", + "Eva Thatcher" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Fury", + "year": 1923, + "cast": [ + "Richard Barthelmess", + "Tyrone Power Sr" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Garrison's Finish", + "year": 1923, + "cast": [ + "Madge Bellamy", + "Jack Pickford", + "Ethel Grey Terry" + ], + "genres": [ + "Sports", + "Drama" + ] + }, + { + "title": "Gentle Julia", + "year": 1923, + "cast": [ + "Bessie Love", + "Harold Goodwin" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Gentleman from America", + "year": 1923, + "cast": [ + "Hoot Gibson", + "Louise Lorraine", + "Carmen Phillips" + ], + "genres": [ + "Comedy", + "Western" + ] + }, + { + "title": "A Gentleman of Leisure", + "year": 1923, + "cast": [ + "Jack Holt", + "Sigrid Holmquist" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Ghost Patrol", + "year": 1923, + "cast": [ + "Ralph Graves", + "Bessie Love" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Gimme", + "year": 1923, + "cast": [ + "Helene Chadwick", + "Gaston Glass" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Girl I Loved", + "year": 1923, + "cast": [ + "Charles Ray", + "Patsy Ruth Miller" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Glimpses of the Moon", + "year": 1923, + "cast": [ + "Bebe Daniels", + "David Powell", + "Nita Naldi" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Going Up", + "year": 1923, + "cast": [ + "Douglas MacLean", + "Edna Murphy", + "Francis McDonald" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Girl of the Golden West", + "year": 1923, + "cast": [ + "Sylvia Breamer", + "Russell Simpson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Girl Who Came Back", + "year": 1923, + "cast": [ + "Miriam Cooper", + "Gaston Glass", + "Kenneth Harlan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Gold Diggers", + "year": 1923, + "cast": [ + "Hope Hampton", + "Wyndham Standing", + "Louise Fazenda" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Goodbye Girls", + "year": 1923, + "cast": [ + "William Russell", + "Carmel Myers" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Gossip", + "year": 1923, + "cast": [ + "Gladys Walton", + "Ramsey Wallace" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Go-Getter", + "year": 1923, + "cast": [ + "T. Roy Barnes", + "Seena Owen" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Grail", + "year": 1923, + "cast": [ + "Dustin Farnum", + "Peggy Shaw" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Gunfighter", + "year": 1923, + "cast": [ + "William Farnum", + "Doris May" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Governor's Lady", + "year": 1923, + "cast": [ + "Jane Grey", + "Anna Luther" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Green Goddess", + "year": 1923, + "cast": [ + "George Arliss", + "Alice Joyce" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Grumpy", + "year": 1923, + "cast": [ + "Theodore Roberts", + "May McAvoy", + "Conrad Nagel" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Haldane of the Secret Service", + "year": 1923, + "cast": [ + "Harry Houdini", + "Gladys Leslie" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Hearts Aflame", + "year": 1923, + "cast": [ + "Frank Keenan", + "Anna Q. Nilsson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Heart Raider", + "year": 1923, + "cast": [ + "Agnes Ayres", + "Mahlon Hamilton", + "Charles Ruggles" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Held to Answer", + "year": 1923, + "cast": [ + "House Peters", + "Evelyn Brent" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hell's Hole", + "year": 1923, + "cast": [ + "Buck Jones", + "Ruth Clifford" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Her Accidental Husband", + "year": 1923, + "cast": [ + "Miriam Cooper", + "Forrest Stanley" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Her Fatal Millions", + "year": 1923, + "cast": [ + "Viola Dana", + "Huntley Gordon", + "Allan Forrest" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Her Reputation", + "year": 1923, + "cast": [ + "May McAvoy", + "Lloyd Hughes" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Her Temporary Husband", + "year": 1923, + "cast": [ + "Owen Moore", + "Syd Chaplin", + "Sylvia Breamer" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Hero", + "year": 1923, + "cast": [ + "Gaston Glass", + "Barbara La Marr" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "His Children's Children", + "year": 1923, + "cast": [ + "Bebe Daniels", + "James Rennie", + "Dorothy Mackaill" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "His Mystery Girl", + "year": 1923, + "cast": [ + "Herbert Rawlinson", + "Ruth Dwyer" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hollywood", + "year": 1923, + "cast": [ + "George K. Arthur", + "Ruby Lafayette" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Homeward Bound", + "year": 1923, + "cast": [ + "Thomas Meighan", + "Lila Lee" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Hoodman Blind", + "year": 1923, + "cast": [ + "David Butler", + "Gladys Hulette" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Human Wreckage", + "year": 1923, + "cast": [ + "Dorothy Davenport", + "Bessie Love" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Hunchback of Notre Dame", + "year": 1923, + "cast": [ + "Lon Chaney", + "Patsy Ruth Miller", + "Norman Kerry" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Huntress", + "year": 1923, + "cast": [ + "Colleen Moore", + "Lloyd Hughes" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "If Winter Comes", + "year": 1923, + "cast": [ + "Percy Marmont", + "Raymond Bloomer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "In Search of a Thrill", + "year": 1923, + "cast": [ + "Viola Dana", + "Warner Baxter" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "In the Palace of the King", + "year": 1923, + "cast": [ + "Blanche Sweet", + "Pauline Starke", + "Edmund Lowe" + ], + "genres": [ + "Historical" + ] + }, + { + "title": "Innocence", + "year": 1923, + "cast": [ + "Anna Q. Nilsson", + "Earle Foxe" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Isle of Lost Ships", + "year": 1923, + "cast": [ + "Anna Q. Nilsson", + "Milton Sills" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Itching Palms", + "year": 1923, + "cast": [ + "Tom Gallery", + "Herschel Mayall" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Java Head", + "year": 1923, + "cast": [ + "Leatrice Joy", + "Jacqueline Logan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Jazzmania", + "year": 1923, + "cast": [ + "Mae Murray", + "Rod LaRocque" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Jealous Husbands", + "year": 1923, + "cast": [ + "Earle Williams", + "Jane Novak" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Kentucky Days", + "year": 1923, + "cast": [ + "Dustin Farnum", + "Bruce Gordon" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Kindled Courage", + "year": 1923, + "cast": [ + "Hoot Gibson", + "Beatrice Burnham" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Last Hour", + "year": 1923, + "cast": [ + "Milton Sills", + "Carmel Myers" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Last Moment", + "year": 1923, + "cast": [ + "Henry Hull", + "Doris Kenyon" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Law of the Lawless", + "year": 1923, + "cast": [ + "Dorothy Dalton", + "Charles de Rochefort" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Lawful Larceny", + "year": 1923, + "cast": [ + "Hope Hampton", + "Conrad Nagel", + "Nita Naldi" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Leavenworth Case", + "year": 1923, + "cast": [ + "Seena Owen", + "Wilfred Lytell" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Legally Dead", + "year": 1923, + "cast": [ + "Milton Sills", + "Claire Adams" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Leopardess", + "year": 1923, + "cast": [ + "Alice Brady", + "Montagu Love" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Let's Go", + "year": 1923, + "cast": [ + "Richard Talmadge", + "Eileen Percy" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Lights Out", + "year": 1923, + "cast": [ + "Ruth Stonehouse", + "Walter McGrail", + "Theodore von Eltz" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Light That Failed", + "year": 1923, + "cast": [ + "Jacqueline Logan", + "Percy Marmont", + "David Torrence" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Little Church Around the Corner", + "year": 1923, + "cast": [ + "Claire Windsor", + "Kenneth Harlan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Little Girl Next Door", + "year": 1923, + "cast": [ + "Pauline Starke", + "James W. Morrison" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Little Johnny Jones", + "year": 1923, + "cast": [ + "Wyndham Standing", + "Margaret Seddon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Little Old New York", + "year": 1923, + "cast": [ + "Marion Davies", + "Harrison Ford" + ], + "genres": [ + "Historical" + ] + }, + { + "title": "The Lone Star Ranger", + "year": 1923, + "cast": [ + "Tom Mix", + "Billie Dove" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Lonely Road", + "year": 1923, + "cast": [ + "Katherine MacDonald", + "Orville Caldwell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Long Live the King", + "year": 1923, + "cast": [ + "Jackie Coogan", + "Rosemary Theby", + "Alan Hale" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Look Your Best", + "year": 1923, + "cast": [ + "Colleen Moore", + "Antonio Moreno" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Lost and Found on a South Sea Island", + "year": 1923, + "cast": [ + "House Peters", + "Pauline Starke", + "Antonio Moreno" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Lovebound", + "year": 1923, + "cast": [ + "Shirley Mason", + "Alan Roscoe" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Love Brand", + "year": 1923, + "cast": [ + "Roy Stewart", + "Margaret Landis" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Love Letter", + "year": 1923, + "cast": [ + "Gladys Walton", + "Fontaine La Rue" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Love Piker", + "year": 1923, + "cast": [ + "Anita Stewart", + "Robert Frazer" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Love Pirate", + "year": 1923, + "cast": [ + "Melbourne MacDowell", + "Carmel Myers" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Loyal Lives", + "year": 1923, + "cast": [ + "Mary Carr", + "Faire Binney" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Lucretia Lombard", + "year": 1923, + "cast": [ + "Irene Rich", + "Monte Blue", + "Norma Shearer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Madness of Youth", + "year": 1923, + "cast": [ + "John Gilbert", + "Billie Dove" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Mailman", + "year": 1923, + "cast": [ + "Ralph Lewis", + "Johnnie Walker" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Main Street", + "year": 1923, + "cast": [ + "Florence Vidor", + "Monte Blue", + "Louise Fazenda" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Man Between", + "year": 1923, + "cast": [ + "Allan Forrest", + "Edna Murphy" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Man from Brodney's", + "year": 1923, + "cast": [ + "Alice Calhoun", + "Wanda Hawley" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Man Life Passed By", + "year": 1923, + "cast": [ + "Jane Novak", + "Eva Novak" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Man Next Door", + "year": 1923, + "cast": [ + "David Torrence", + "Alice Calhoun" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Man of Action", + "year": 1923, + "cast": [ + "Marguerite De La Motte", + "Raymond Hatton" + ], + "genres": [ + "Crime", + "Comedy" + ] + }, + { + "title": "The Man Who Won", + "year": 1923, + "cast": [ + "Dustin Farnum", + "Jacqueline Gadsden" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Man's Size", + "year": 1923, + "cast": [ + "William Russell", + "Alma Bennett" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Marriage Maker", + "year": 1923, + "cast": [ + "Agnes Ayres", + "Jack Holt", + "Mary Astor" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Marriage Market", + "year": 1923, + "cast": [ + "Pauline Garon", + "Jack Mulhall" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Mary of the Movies", + "year": 1923, + "cast": [ + "Marion Mack", + "Creighton Hale" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Masters of Men", + "year": 1923, + "cast": [ + "Earle Williams", + "Alice Calhoun", + "Cullen Landis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Maytime", + "year": 1923, + "cast": [ + "Ethel Shannon", + "Clara Bow" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "McGuire of the Mounted", + "year": 1923, + "cast": [ + "William Desmond", + "Louise Lorraine" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Meanest Man in the World", + "year": 1923, + "cast": [ + "Bert Lytell", + "Blanche Sweet" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Men in the Raw", + "year": 1923, + "cast": [ + "Jack Hoxie", + "Marguerite Clayton" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Merry-Go-Round", + "year": 1923, + "cast": [ + "Norman Kerry", + "Mary Philbin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Midnight Alarm", + "year": 1923, + "cast": [ + "Alice Calhoun", + "Percy Marmont", + "Cullen Landis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Midnight Guest", + "year": 1923, + "cast": [ + "Grace Darmond", + "Mahlon Hamilton" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Mighty Lak' a Rose", + "year": 1923, + "cast": [ + "James Rennie", + "Dorothy Mackaill", + "Anders Randolf" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Mile-a-Minute Romeo", + "year": 1923, + "cast": [ + "Tom Mix", + "James Mason" + ], + "genres": [ + "Western" + ] + }, + { + "title": "A Million to Burn", + "year": 1923, + "cast": [ + "Herbert Rawlinson", + "Beatrice Burnham" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Miracle Baby", + "year": 1923, + "cast": [ + "Harry Carey", + "Margaret Landis" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Miracle Makers", + "year": 1923, + "cast": [ + "Leah Baird", + "George Walsh" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Modern Marriage", + "year": 1923, + "cast": [ + "Francis X. Bushman", + "Beverly Bayne" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Modern Matrimony", + "year": 1923, + "cast": [ + "Owen Moore", + "Alice Lake" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Money, Money, Money", + "year": 1923, + "cast": [ + "Katherine MacDonald", + "Carl Stockdale" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Mr. Billings Spends His Dime", + "year": 1923, + "cast": [ + "Walter Hiers", + "Jacqueline Logan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Mysterious Witness", + "year": 1923, + "cast": [ + "Robert Gordon", + "Elinor Fair" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Nth Commandment", + "year": 1923, + "cast": [ + "Colleen Moore", + "James Morrison" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Near Lady", + "year": 1923, + "cast": [ + "Gladys Walton", + "Otis Harlan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Ne'er Do-Well", + "year": 1923, + "cast": [ + "Thomas Meighan", + "Lila Lee", + "Gertrude Astor" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Net", + "year": 1923, + "cast": [ + "Barbara Castleton", + "Alan Roscoe" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "No Mother to Guide Her", + "year": 1923, + "cast": [ + "Genevieve Tobin", + "John Webb Dillion" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Nobody's Bride", + "year": 1923, + "cast": [ + "Herbert Rawlinson", + "Edna Murphy", + "Alice Lake" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Nobody's Money", + "year": 1923, + "cast": [ + "Jack Holt", + "Wanda Hawley" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Noise in Newboro", + "year": 1923, + "cast": [ + "Viola Dana", + "David Butler", + "Eva Novak" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "North of Hudson Bay", + "year": 1923, + "cast": [ + "Tom Mix", + "Kathleen Key" + ], + "genres": [ + "Action" + ] + }, + { + "title": "An Old Sweetheart of Mine", + "year": 1923, + "cast": [ + "Elliott Dexter", + "Helen Jerome Eddy" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "On the Banks of the Wabash", + "year": 1923, + "cast": [ + "Mary Carr", + "Madge Evans", + "Burr McIntosh" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "One Stolen Night", + "year": 1923, + "cast": [ + "Alice Calhoun", + "Herbert Heyes" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Only 38", + "year": 1923, + "cast": [ + "May McAvoy", + "Lois Wilson", + "Elliott Dexter" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Other Men's Daughters", + "year": 1923, + "cast": [ + "Bryant Washburn", + "Mabel Forrest" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Our Hospitality", + "year": 1923, + "cast": [ + "Buster Keaton", + "Natalie Talmadge" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Out of Luck", + "year": 1923, + "cast": [ + "Hoot Gibson", + "Laura LaPlante" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Penrod and Sam", + "year": 1923, + "cast": [ + "Ben Alexander", + "Gertrude Messinger" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Pilgrim", + "year": 1923, + "cast": [ + "Charles Chaplin", + "Edna Purviance" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Pioneer Trails", + "year": 1923, + "cast": [ + "Cullen Landis", + "Alice Calhoun" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Playing It Wild", + "year": 1923, + "cast": [ + "Edith Johnson", + "Edmund Cobb" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Pleasure Mad", + "year": 1923, + "cast": [ + "Huntley Gordon", + "Mary Alden", + "Norma Shearer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Poor Men's Wives", + "year": 1923, + "cast": [ + "Barbara La Marr", + "David Butler", + "Betty Francisco" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Potash and Perlmutter", + "year": 1923, + "cast": [ + "Martha Mansfield", + "Ben Lyon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Printer's Devil", + "year": 1923, + "cast": [ + "Wesley Barry", + "Harry Myers", + "Kathryn McGuire" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Prisoner", + "year": 1923, + "cast": [ + "Herbert Rawlinson", + "Eileen Percy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Prodigal Daughters", + "year": 1923, + "cast": [ + "Gloria Swanson", + "Ralph Graves" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Pure Grit", + "year": 1923, + "cast": [ + "Roy Stewart", + "Esther Ralston" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Puritan Passions", + "year": 1923, + "cast": [ + "Glenn Hunter", + "Mary Astor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Purple Highway", + "year": 1923, + "cast": [ + "Madge Kennedy", + "Monte Blue", + "Vincent Coleman", + "and", + "Pedro de Córdoba" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Quicksands", + "year": 1923, + "cast": [ + "Helene Chadwick", + "Richard Dix", + "Alan Hale" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Racing Hearts", + "year": 1923, + "cast": [ + "Agnes Ayres", + "Richard Dix" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Ragged Edge", + "year": 1923, + "cast": [ + "Alfred Lunt", + "George MacQuarrie" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Railroaded", + "year": 1923, + "cast": [ + "Herbert Rawlinson", + "Esther Ralston" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Ramblin' Kid", + "year": 1923, + "cast": [ + "Hoot Gibson", + "Laura La Plante" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Red Lights", + "year": 1923, + "cast": [ + "Marie Prevost", + "Raymond Griffith" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Red Warning", + "year": 1923, + "cast": [ + "Jack Hoxie", + "Fred Kohler" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Refuge", + "year": 1923, + "cast": [ + "Katherine MacDonald", + "Hugh Thompson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Remittance Woman", + "year": 1923, + "cast": [ + "Ethel Clayton", + "Rockliffe Fellowes" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Rendezvous", + "year": 1923, + "cast": [ + "Richard Travers", + "Lucille Ricksen", + "Conrad Nagel" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Reno", + "year": 1923, + "cast": [ + "Helene Chadwick", + "Lew Cody", + "George Walsh" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Richard the Lion-Hearted", + "year": 1923, + "cast": [ + "Wallace Beery", + "Charles K. Gerrard", + "Marguerite De La Motte" + ], + "genres": [ + "Historical" + ] + }, + { + "title": "Romance Land", + "year": 1923, + "cast": [ + "Tom Mix", + "Barbara Bedford" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Rosita", + "year": 1923, + "cast": [ + "Mary Pickford", + "Holbrook Blinn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Rouged Lips", + "year": 1923, + "cast": [ + "Viola Dana", + "Tom Moore" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Ruggles of Red Gap", + "year": 1923, + "cast": [ + "Edward Everett Horton", + "Ernest Torrence", + "Lois Wilson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Rupert of Hentzau", + "year": 1923, + "cast": [ + "Bert Lytell", + "Elaine Hammerstein", + "Claire Windsor" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Rustle of Silk", + "year": 1923, + "cast": [ + "Betty Compson", + "Conway Tearle", + "Anna Q. Nilsson" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Safety Last!", + "year": 1923, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Salomy Jane", + "year": 1923, + "cast": [ + "Jacqueline Logan", + "George Fawcett" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Satin Girl", + "year": 1923, + "cast": [ + "Norman Kerry", + "Marc McDermott" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Sawdust", + "year": 1923, + "cast": [ + "Gladys Walton", + "Niles Welch", + "Edith Yorke" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Scaramouche", + "year": 1923, + "cast": [ + "Ramón Novarro", + "Alice Terry", + "Lewis Stone" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Scarlet Car", + "year": 1923, + "cast": [ + "Herbert Rawlinson", + "Claire Adams" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Scarlet Lily", + "year": 1923, + "cast": [ + "Katherine MacDonald", + "Orville Caldwell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Scars of Jealousy", + "year": 1923, + "cast": [ + "Lloyd Hughes", + "Frank Keenan", + "Marguerite De La Motte" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Second Fiddle", + "year": 1923, + "cast": [ + "Glenn Hunter", + "Mary Astor" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Second Hand Love", + "year": 1923, + "cast": [ + "Buck Jones", + "Ruth Dwyer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Self-Made Wife", + "year": 1923, + "cast": [ + "Ethel Grey Terry", + "Crauford Kent" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Shadows of the North", + "year": 1923, + "cast": [ + "William Desmond", + "Virginia Brown Faire" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Shepherd King", + "year": 1923, + "cast": [ + "Violet Mersereau", + "Nerio Bernardi" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Shock", + "year": 1923, + "cast": [ + "Lon Chaney", + "Virginia Valli" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Shootin' for Love", + "year": 1923, + "cast": [ + "Hoot Gibson", + "Laura La Plante" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Shriek of Araby", + "year": 1923, + "cast": [ + "Ben Turpin", + "Kathryn McGuire" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Silent Command", + "year": 1923, + "cast": [ + "Edmund Lowe", + "Béla Lugosi" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Silent Partner", + "year": 1923, + "cast": [ + "Leatrice Joy", + "Owen Moore" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Single Handed", + "year": 1923, + "cast": [ + "Hoot Gibson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Sinner or Saint", + "year": 1923, + "cast": [ + "Betty Blythe", + "William P. Carleton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Six Cylinder Love", + "year": 1923, + "cast": [ + "Ernest Truex", + "Florence Eldridge" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Six Days", + "year": 1923, + "cast": [ + "Corinne Griffith", + "Frank Mayo", + "Myrtle Stedman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Six-Fifty", + "year": 1923, + "cast": [ + "Renée Adorée", + "Orville Caldwell", + "Gertrude Astor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sixty Cents an Hour", + "year": 1923, + "cast": [ + "Walter Hiers", + "Jacqueline Logan", + "Ricardo Cortez" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Skid Proof", + "year": 1923, + "cast": [ + "Buck Jones", + "Jacqueline Gadsden" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Slander the Woman", + "year": 1923, + "cast": [ + "Dorothy Phillips", + "Lewis Dayton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Slave of Desire", + "year": 1923, + "cast": [ + "George Walsh", + "Bessie Love", + "Carmel Myers" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Slippy McGee", + "year": 1923, + "cast": [ + "Colleen Moore", + "Wheeler Oakman", + "Sam De Grasse" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Snow Bride", + "year": 1923, + "cast": [ + "Alice Brady", + "Maurice \"Lefty\" Flynn" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Snowdrift", + "year": 1923, + "cast": [ + "Buck Jones", + "Irene Rich" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Social Code", + "year": 1923, + "cast": [ + "Viola Dana", + "Malcolm McGregor", + "Edna Flugrath" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Soft Boiled", + "year": 1923, + "cast": [ + "Tom Mix", + "Billie Dove" + ], + "genres": [ + "Western", + "Comedy" + ] + }, + { + "title": "The Song of Love", + "year": 1923, + "cast": [ + "Norma Talmadge", + "Joseph Schildkraut" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Soul of the Beast", + "year": 1923, + "cast": [ + "Madge Bellamy", + "Cullen Landis", + "Noah Beery" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Souls for Sale", + "year": 1923, + "cast": [ + "Richard Dix", + "Eleanor Boardman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "South Sea Love", + "year": 1923, + "cast": [ + "Shirley Mason", + "Francis McDonald" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Spanish Dancer", + "year": 1923, + "cast": [ + "Pola Negri", + "Antonio Moreno", + "Wallace Beery" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Spoilers", + "year": 1923, + "cast": [ + "Milton Sills", + "Anna Q. Nilsson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "St. Elmo", + "year": 1923, + "cast": [ + "John Gilbert", + "Barbara La Marr", + "Bessie Love" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Steadfast Heart", + "year": 1923, + "cast": [ + "Marguerite Courtot", + "Miriam Battista" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Stephen Steps Out", + "year": 1923, + "cast": [ + "Douglas Fairbanks Jr.", + "Harry Myers", + "Noah Beery" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Stepping Fast", + "year": 1923, + "cast": [ + "Tom Mix", + "Claire Adams" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Stormswept", + "year": 1923, + "cast": [ + "Wallace Beery", + "Noah Beery", + "Virginia Brown Faire" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Strangers of the Night", + "year": 1923, + "cast": [ + "Matt Moore", + "Enid Bennett", + "Barbara La Marr" + ], + "genres": [ + "Comedy", + "Mystery" + ] + }, + { + "title": "The Sunshine Trail", + "year": 1923, + "cast": [ + "Douglas MacLean", + "Edith Roberts" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Suzanna", + "year": 1923, + "cast": [ + "Mabel Normand", + "Walter McGrail" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Tea: With a Kick!", + "year": 1923, + "cast": [ + "Doris May", + "Creighton Hale", + "Ralph Lewis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Temple of Venus", + "year": 1923, + "cast": [ + "William Walling", + "Mary Philbin", + "Alice Day" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Temporary Marriage", + "year": 1923, + "cast": [ + "Kenneth Harlan", + "Mildred Davis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Temptation", + "year": 1923, + "cast": [ + "Bryant Washburn", + "Eva Novak" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Ten Commandments", + "year": 1923, + "cast": [ + "Theodore Roberts" + ], + "genres": [] + }, + { + "title": "Three Ages", + "year": 1923, + "cast": [ + "Buster Keaton", + "Margaret Leahy", + "Wallace Beery" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Three Jumps Ahead", + "year": 1923, + "cast": [ + "Tom Mix", + "Alma Bennett" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Three O'Clock in the Morning", + "year": 1923, + "cast": [ + "Constance Binney", + "Edmund Breese" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Three Who Paid", + "year": 1923, + "cast": [ + "Dustin Farnum", + "Bessie Love" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Three Wise Fools", + "year": 1923, + "cast": [ + "Claude Gillingwater", + "Eleanor Boardman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Thrill Chaser", + "year": 1923, + "cast": [ + "Hoot Gibson", + "Billie Dove", + "James Neill" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Thundergate", + "year": 1923, + "cast": [ + "Owen Moore", + "Virginia Brown Faire" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Thundering Dawn", + "year": 1923, + "cast": [ + "J. Warren Kerrigan", + "Anna Q. Nilsson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Tie That Binds", + "year": 1923, + "cast": [ + "Walter Miller", + "Barbara Bedford", + "Raymond Hatton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Tiger Rose", + "year": 1923, + "cast": [ + "Lenore Ulric", + "Forrest Stanley" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Tiger's Claw", + "year": 1923, + "cast": [ + "Jack Holt", + "Eva Novak" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Times Have Changed", + "year": 1923, + "cast": [ + "William Russell", + "Mabel Julienne Scott" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "To the Ladies", + "year": 1923, + "cast": [ + "Edward Everett Horton", + "Louise Dresser", + "Helen Jerome Eddy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "To the Last Man", + "year": 1923, + "cast": [ + "Richard Dix", + "Lois Wilson", + "Noah Beery Sr." + ], + "genres": [ + "Western" + ] + }, + { + "title": "Toilers of the Sea", + "year": 1923, + "cast": [ + "Lucy Fox", + "Holmes Herbert" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Town Scandal", + "year": 1923, + "cast": [ + "Gladys Walton", + "Edward Hearn" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Trail of the Lonesome Pine", + "year": 1923, + "cast": [ + "Mary Miles Minter", + "Antonio Moreno" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Trifling with Honor", + "year": 1923, + "cast": [ + "Rockliffe Fellowes", + "Fritzi Ridgeway" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Trilby", + "year": 1923, + "cast": [ + "Andrée Lafayette", + "Creighton Hale" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Trimmed in Scarlet", + "year": 1923, + "cast": [ + "Kathlyn Williams", + "Lucille Ricksen" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Truth About Wives", + "year": 1923, + "cast": [ + "Betty Blythe", + "Tyrone Power Sr." + ], + "genres": [ + "Drama" + ] + }, + { + "title": "'Truxton King", + "year": 1923, + "cast": [ + "John Gilbert", + "Ruth Clifford" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Twenty-One", + "year": 1923, + "cast": [ + "Richard Barthelmess", + "Dorothy Mackaill" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Under the Red Robe", + "year": 1923, + "cast": [ + "Robert B. Mantell", + "Alma Rubens" + ], + "genres": [ + "Historical" + ] + }, + { + "title": "The Unknown Purple", + "year": 1923, + "cast": [ + "Henry B. Walthall", + "Alice Lake", + "Stuart Holmes" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Unseeing Eyes", + "year": 1923, + "cast": [ + "Lionel Barrymore", + "Seena Owen", + "Gustav von Seyffertitz" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Untameable", + "year": 1923, + "cast": [ + "Gladys Walton", + "Malcolm McGregor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Vanity Fair", + "year": 1923, + "cast": [ + "Mabel Ballin", + "Hobart Bosworth", + "George Walsh" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Victor", + "year": 1923, + "cast": [ + "Herbert Rawlinson", + "Dorothy Manners" + ], + "genres": [ + "Sports", + "Comedy" + ] + }, + { + "title": "The Virginian", + "year": 1923, + "cast": [ + "Florence Vidor", + "Kenneth Harlan" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Voice from the Minaret", + "year": 1923, + "cast": [ + "Norma Talmadge", + "Eugene O'Brien" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Wandering Daughters", + "year": 1923, + "cast": [ + "Marguerite De La Motte", + "Marjorie Daw" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Wanters", + "year": 1923, + "cast": [ + "Marie Prevost", + "Norma Shearer", + "Gertrude Astor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The West~Bound Limited", + "year": 1923, + "cast": [ + "Ralph Lewis", + "Claire McDowell", + "Ella Hall" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "West of the Water Tower", + "year": 1923, + "cast": [ + "Glenn Hunter", + "May McAvoy", + "Ernest Torrence" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "What a Wife Learned", + "year": 1923, + "cast": [ + "John Bowers", + "Milton Sills", + "Marguerite De La Motte" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "What Wives Want", + "year": 1923, + "cast": [ + "Ethel Grey Terry", + "Vernon Steele" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The White Rose", + "year": 1923, + "cast": [ + "Mae Marsh", + "Ivor Novello", + "Carol Dempster" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The White Sister", + "year": 1923, + "cast": [ + "Lillian Gish", + "Ronald Colman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "When Odds Are Even", + "year": 1923, + "cast": [ + "William Russell", + "Dorothy Devore" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Where Is This West?", + "year": 1923, + "cast": [ + "Jack Hoxie", + "Mary Philbin" + ], + "genres": [ + "Western", + "Comedy" + ] + }, + { + "title": "Where the North Begins", + "year": 1923, + "cast": [ + "Claire Adams", + "Walter McGrail", + "Rin Tin Tin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Where the Pavement Ends", + "year": 1923, + "cast": [ + "Alice Terry", + "Ramon Novarro" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "While Paris Sleeps", + "year": 1923, + "cast": [ + "Lon Chaney", + "John Gilbert", + "Hardee Kirkland" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The White Flower", + "year": 1923, + "cast": [ + "Betty Compson", + "Edmund Lowe" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The White Rose", + "year": 1923, + "cast": [ + "Carol Dempster", + "Mae Marsh", + "Ivor Novello" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The White Sister", + "year": 1923, + "cast": [ + "Lillian Gish", + "Ronald Colman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "White Tiger", + "year": 1923, + "cast": [ + "Priscilla Dean", + "Matt Moore" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Why Worry?", + "year": 1923, + "cast": [ + "Harold Lloyd", + "Jobyna Ralston" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Wife in Name Only", + "year": 1923, + "cast": [ + "Edmund Lowe", + "Mary Thurman", + "Edna May Oliver" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Wife's Romance", + "year": 1923, + "cast": [ + "Clara Kimball Young", + "Lewis Dayton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Wild Bill Hickok", + "year": 1923, + "cast": [ + "William S. Hart", + "Ethel Grey Terry" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Wild Party", + "year": 1923, + "cast": [ + "Gladys Walton", + "Robert Ellis", + "Esther Ralston" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Within the Law", + "year": 1923, + "cast": [ + "Norma Talmadge", + "Lew Cody" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Woman in Chains", + "year": 1923, + "cast": [ + "Jean Acker", + "Martha Mansfield" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Woman of Bronze", + "year": 1923, + "cast": [ + "Clara Kimball Young", + "John Bowers" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Woman of Paris", + "year": 1923, + "cast": [ + "Edna Purviance", + "Carl Miller" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "Woman-Proof", + "year": 1923, + "cast": [ + "Thomas Meighan", + "Lila Lee", + "Louise Dresser" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Woman with Four Faces", + "year": 1923, + "cast": [ + "Betty Compson", + "Richard Dix", + "Theodore von Eltz" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The World's Applause", + "year": 1923, + "cast": [ + "Bebe Daniels", + "Lewis Stone" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Yesterday's Wife", + "year": 1923, + "cast": [ + "Irene Rich", + "Eileen Percy" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "You Can't Fool Your Wife", + "year": 1923, + "cast": [ + "Leatrice Joy", + "Nita Naldi" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Your Friend and Mine", + "year": 1923, + "cast": [ + "Enid Bennett", + "Huntley Gordon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Zaza", + "year": 1923, + "cast": [ + "Gloria Swanson", + "H. B. Warner" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "40-Horse Hawkins", + "year": 1924, + "cast": [ + "Hoot Gibson", + "Anne Cornwall" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "$50,000 Reward", + "year": 1924, + "cast": [ + "Ken Maynard", + "Esther Ralston" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Ace of Cactus Range", + "year": 1924, + "cast": [ + "Art Mix", + "Virginia Warwick" + ], + "genres": [ + "Western" + ] + }, + { + "title": "After the Ball", + "year": 1924, + "cast": [ + "Gaston Glass", + "Miriam Cooper" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Age of Innocence", + "year": 1924, + "cast": [ + "Beverly Bayne", + "Edith Roberts" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Air Hawk", + "year": 1924, + "cast": [ + "Al Wilson", + "Virginia Brown Faire" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Alaskan", + "year": 1924, + "cast": [ + "Thomas Meighan", + "Estelle Taylor" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Alimony", + "year": 1924, + "cast": [ + "Warner Baxter", + "Ruby Miller" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Along Came Ruth", + "year": 1924, + "cast": [ + "Viola Dana", + "Walter Hiers" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "America", + "year": 1924, + "cast": [ + "Carol Dempster", + "Neil Hamilton" + ], + "genres": [ + "Historical" + ] + }, + { + "title": "American Manners", + "year": 1924, + "cast": [ + "Richard Talmadge", + "Mark Fenton" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Another Man's Wife", + "year": 1924, + "cast": [ + "James Kirkwood", + "Lila Lee", + "Wallace Beery" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Another Scandal", + "year": 1924, + "cast": [ + "Lois Wilson", + "Holmes Herbert" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Arab", + "year": 1924, + "cast": [ + "Ramon Novarro", + "Alice Terry" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Arizona Express", + "year": 1924, + "cast": [ + "Pauline Starke", + "Evelyn Brent" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Argentine Love", + "year": 1924, + "cast": [ + "Bebe Daniels", + "Ricardo Cortez" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Average Woman", + "year": 1924, + "cast": [ + "Pauline Garon", + "David Powell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Babbitt", + "year": 1924, + "cast": [ + "Willard Louis", + "Mary Alden" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Baffled", + "year": 1924, + "cast": [ + "Franklyn Farnum", + "Alyce Mills" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Bandolero", + "year": 1924, + "cast": [ + "Pedro de Cordoba", + "Gustav von Seyffertitz" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Barbara Frietchie", + "year": 1924, + "cast": [ + "Florence Vidor", + "Edmund Lowe" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Battling Brewster", + "year": 1924, + "cast": [ + "Franklyn Farnum", + "Helen Holmes" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Battling Bunyan", + "year": 1924, + "cast": [ + "Wesley Barry", + "Frank Campeau" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Battling Orioles", + "year": 1924, + "cast": [ + "Glenn Tryon", + "Blanche Mehaffey" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Beau Brummel", + "year": 1924, + "cast": [ + "John Barrymore", + "Mary Astor" + ], + "genres": [ + "Historical" + ] + }, + { + "title": "The Beauty Prize", + "year": 1924, + "cast": [ + "Viola Dana", + "Pat O'Malley" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Beautiful Sinner", + "year": 1924, + "cast": [ + "William Fairbanks", + "Eva Novak" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Bedroom Window", + "year": 1924, + "cast": [ + "May McAvoy", + "Ricardo Cortez" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Behind the Curtain", + "year": 1924, + "cast": [ + "Lucille Ricksen", + "John Harron" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Behind Two Guns", + "year": 1924, + "cast": [ + "Otto Lederer", + "Marin Sais" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Behold This Woman", + "year": 1924, + "cast": [ + "Irene Rich", + "Marguerite De La Motte" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Being Respectable", + "year": 1924, + "cast": [ + "Marie Prevost", + "Monte Blue", + "Louise Fazenda" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Beloved Brute", + "year": 1924, + "cast": [ + "Marguerite De La Motte", + "Victor McLaglen" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Between Friends", + "year": 1924, + "cast": [ + "Lou Tellegen", + "Anna Q. Nilsson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Biff Bang Buddy", + "year": 1924, + "cast": [ + "Buddy Roosevelt", + "Jean Arthur" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Big Timber", + "year": 1924, + "cast": [ + "William Desmond", + "Olive Hasbrouck" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Black Lightning", + "year": 1924, + "cast": [ + "Clara Bow", + "Eddie Phillips" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Black Oxfords", + "year": 1924, + "cast": [ + "Sidney Smith", + "Vernon Dent", + "Marceline Day" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Bluff", + "year": 1924, + "cast": [ + "Agnes Ayres", + "Antonio Moreno" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Back Trail", + "year": 1924, + "cast": [ + "Jack Hoxie", + "Eugenia Gilbert" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Border Legion", + "year": 1924, + "cast": [ + "Antonio Moreno", + "Helene Chadwick" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Born Rich", + "year": 1924, + "cast": [ + "Claire Windsor", + "Bert Lytell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Borrowed Husbands", + "year": 1924, + "cast": [ + "Florence Vidor", + "Rockliffe Fellowes" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Bowery Bishop", + "year": 1924, + "cast": [ + "Henry B. Walthall", + "Leota Lorraine" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Boy of Flanders", + "year": 1924, + "cast": [ + "Jackie Coogan", + "Nigel De Brulier" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Brass Bowl", + "year": 1924, + "cast": [ + "Edmund Lowe", + "Claire Adams" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Bread", + "year": 1924, + "cast": [ + "Mae Busch", + "Pat O'Malley", + "Robert Frazer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Breaking Point", + "year": 1924, + "cast": [ + "Nita Naldi", + "Patsy Ruth Miller" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Breath of Scandal", + "year": 1924, + "cast": [ + "Betty Blythe", + "Patsy Ruth Miller", + "Jack Mulhall" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Breathless Moment", + "year": 1924, + "cast": [ + "William Desmond", + "Charlotte Merriam" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Breed of the Border", + "year": 1924, + "cast": [ + "Dorothy Dwan", + "Louise Carver" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Bringin' Home the Bacon", + "year": 1924, + "cast": [ + "Jay Wilsey", + "Jean Arthur" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Broadway After Dark", + "year": 1924, + "cast": [ + "Adolphe Menjou", + "Norma Shearer" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Broadway or Bust", + "year": 1924, + "cast": [ + "Hoot Gibson", + "Gertrude Astor" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Broken Barriers", + "year": 1924, + "cast": [ + "James Kirkwood", + "Norma Shearer", + "Adolphe Menjou" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Broken Laws", + "year": 1924, + "cast": [ + "Dorothy Davenport", + "Percy Marmont" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Butterfly", + "year": 1924, + "cast": [ + "Laura La Plante", + "Kenneth Harlan" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "By Divine Right", + "year": 1924, + "cast": [ + "Mildred Harris", + "Anders Randolf" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Cafe in Cairo", + "year": 1924, + "cast": [ + "Priscilla Dean", + "Robert Ellis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Calibre 45", + "year": 1924, + "cast": [ + "Franklyn Farnum", + "Dorothy Wood" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Captain Blood", + "year": 1924, + "cast": [ + "J. Warren Kerrigan", + "Jean Paige", + "Charlotte Merriam" + ], + "genres": [ + "Historical" + ] + }, + { + "title": "Captain January", + "year": 1924, + "cast": [ + "Baby Peggy", + "Hobart Bosworth", + "Irene Rich" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Chalk Marks", + "year": 1924, + "cast": [ + "Marguerite Snow", + "June Elvidge" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Changing Husbands", + "year": 1924, + "cast": [ + "Leatrice Joy", + "Victor Varconi" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Cheap Kisses", + "year": 1924, + "cast": [ + "Lillian Rich", + "Cullen Landis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Christine of the Hungry Heart", + "year": 1924, + "cast": [ + "Florence Vidor", + "Clive Brook" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Chorus Lady", + "year": 1924, + "cast": [ + "Margaret Livingston", + "Alan Roscoe" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Circe, the Enchantress", + "year": 1924, + "cast": [ + "Mae Murray", + "James Kirkwood Sr.", + "Tom Rickets" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Circus Cowboy", + "year": 1924, + "cast": [ + "Buck Jones", + "Marian Nixon" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The City That Never Sleeps", + "year": 1924, + "cast": [ + "Louise Dresser", + "Ricardo Cortez" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Classmates", + "year": 1924, + "cast": [ + "Richard Barthelmess", + "Madge Evans" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Clean Heart", + "year": 1924, + "cast": [ + "Percy Marmont", + "Otis Harlan", + "Marguerite De La Motte" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Code of the Sea", + "year": 1924, + "cast": [ + "Rod La Rocque", + "Jacqueline Logan" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Code of the Wilderness", + "year": 1924, + "cast": [ + "John Bowers", + "Alice Calhoun" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Conductor 1492", + "year": 1924, + "cast": [ + "Johnny Hines", + "Doris May" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Confidence Man", + "year": 1924, + "cast": [ + "Thomas Meighan", + "Virginia Valli" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Cornered", + "year": 1924, + "cast": [ + "Marie Prevost", + "Raymond Hatton" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Cowboy and the Flapper", + "year": 1924, + "cast": [ + "William Fairbanks", + "Dorothy Revier" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Crossed Trails", + "year": 1924, + "cast": [ + "Franklyn Farnum", + "Alyce Mills" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Cupid's Rustler", + "year": 1924, + "cast": [ + "Edmund Cobb", + "Florence Gilbert", + "Janet Gaynor" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Curlytop", + "year": 1924, + "cast": [ + "Shirley Mason", + "Warner Oland" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Cyclone Rider", + "year": 1924, + "cast": [ + "Reed Howes", + "Alma Bennett" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Cytherea", + "year": 1924, + "cast": [ + "Irene Rich", + "Alma Rubens", + "Constance Bennett" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Daddies", + "year": 1924, + "cast": [ + "Mae Marsh", + "Harry Myers" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Damaged Hearts", + "year": 1924, + "cast": [ + "Mary Carr", + "Jerry Devine" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dancing Cheat", + "year": 1924, + "cast": [ + "Herbert Rawlinson", + "Alice Lake" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Danger Line", + "year": 1924, + "cast": [ + "Sessue Hayakawa", + "Tsuru Aoki", + "Gina Palerme" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Dangerous Blonde", + "year": 1924, + "cast": [ + "Laura La Plante", + "Edward Hearn" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Dangerous Coward", + "year": 1924, + "cast": [ + "Fred Thomson", + "Hazel Keener" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Dangerous Flirt", + "year": 1924, + "cast": [ + "Evelyn Brent", + "Edward Earle" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dangerous Money", + "year": 1924, + "cast": [ + "William Powell", + "Bebe Daniels" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dante's Inferno", + "year": 1924, + "cast": [ + "Ralph Lewis", + "Winifred Landis" + ], + "genres": [ + "Fantasy", + "Drama" + ] + }, + { + "title": "Daring Chances", + "year": 1924, + "cast": [ + "Jack Hoxie", + "Alta Allen" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Daring Love", + "year": 1924, + "cast": [ + "Elaine Hammerstein", + "Huntley Gordon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Daring Youth", + "year": 1924, + "cast": [ + "Bebe Daniels", + "Norman Kerry", + "Lee Moran" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Dark Stairways", + "year": 1924, + "cast": [ + "Herbert Rawlinson", + "Ruth Dwyer" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Dark Swan", + "year": 1924, + "cast": [ + "Marie Prevost", + "Monte Blue" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Darwin Was Right", + "year": 1924, + "cast": [ + "Nell Brantley", + "George O'Hara" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Daughters of Pleasure", + "year": 1924, + "cast": [ + "Marie Prevost", + "and", + "Monte Blue" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Daughters of the Night", + "year": 1924, + "cast": [ + "Orville Caldwell", + "Alyce Mills" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Daughters of Today", + "year": 1924, + "cast": [ + "Patsy Ruth Miller", + "Ralph Graves" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Dawn of a Tomorrow", + "year": 1924, + "cast": [ + "Jacqueline Logan", + "David Torrence" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Deadwood Coach", + "year": 1924, + "cast": [ + "Tom Mix", + "George Bancroft" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Defying the Law", + "year": 1924, + "cast": [ + "Lew Cody", + "Renée Adorée" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Desert Outlaw", + "year": 1924, + "cast": [ + "Buck Jones", + "Evelyn Brent" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Desert Sheik", + "year": 1924, + "cast": [ + "Wanda Hawley", + "Nigel Barrie" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Diamond Bandit", + "year": 1924, + "cast": [ + "Frank Baker", + "Florence Gilbert" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Discontented Husbands", + "year": 1924, + "cast": [ + "James Kirkwood", + "Cleo Madison" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Dixie Handicap", + "year": 1924, + "cast": [ + "Claire Windsor", + "Lloyd Hughes" + ], + "genres": [ + "Sports", + "Drama" + ] + }, + { + "title": "Don't Doubt Your Husband", + "year": 1924, + "cast": [ + "Viola Dana", + "Allan Forrest" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Dorothy Vernon of Haddon Hall", + "year": 1924, + "cast": [ + "Mary Pickford", + "Anders Randolf" + ], + "genres": [ + "Historical" + ] + }, + { + "title": "The Dramatic Life of Abraham Lincoln", + "year": 1924, + "cast": [ + "George A. Billings", + "Ruth Clifford" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Dynamite Dan", + "year": 1924, + "cast": [ + "Frank Rice", + "Boris Karloff" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Dynamite Smith", + "year": 1924, + "cast": [ + "Jacqueline Logan", + "Bessie Love", + "Wallace Beery" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Eagle's Claw", + "year": 1924, + "cast": [ + "Guinn \"Big Boy\" Williams", + "Lew Meehan" + ], + "genres": [ + "Western" + ] + }, + { + "title": "East of Broadway", + "year": 1924, + "cast": [ + "Owen Moore", + "Marguerite De La Motte" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Empty Hands", + "year": 1924, + "cast": [ + "Jack Holt", + "Norma Shearer" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Empty Hearts", + "year": 1924, + "cast": [ + "John Bowers", + "Clara Bow" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Enchanted Cottage", + "year": 1924, + "cast": [ + "Richard Barthelmess", + "May McAvoy" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Enemy Sex", + "year": 1924, + "cast": [ + "Betty Compson", + "Percy Marmont" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Excitement", + "year": 1924, + "cast": [ + "Laura La Plante", + "Guy Edward Hearn" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Fair Week", + "year": 1924, + "cast": [ + "Walter Hiers", + "Carmen Phillips" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Family Secret", + "year": 1924, + "cast": [ + "Baby Peggy", + "Gladys Hulette" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Fast and Fearless", + "year": 1924, + "cast": [ + "Jay Wilsey", + "Jean Arthur" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Fast Set", + "year": 1924, + "cast": [ + "Betty Compson", + "Adolphe Menjou" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Fast Worker", + "year": 1924, + "cast": [ + "Reginald Denny", + "Laura La Plante" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Fatal Mistake", + "year": 1924, + "cast": [ + "William Fairbanks", + "Eva Novak" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Feet of Clay", + "year": 1924, + "cast": [ + "Vera Reynolds", + "Rod La Rocque" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Female", + "year": 1924, + "cast": [ + "Betty Compson", + "Warner Baxter" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Fight for Honor", + "year": 1924, + "cast": [ + "William Fairbanks", + "Eva Novak" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Fighting Coward", + "year": 1924, + "cast": [ + "Ernest Torrence", + "Mary Astor" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Fighting Fury", + "year": 1924, + "cast": [ + "Jack Hoxie", + "Helen Holmes" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Fighting Adventurer", + "year": 1924, + "cast": [ + "Pat O'Malley", + "Mary Astor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Find Your Man", + "year": 1924, + "cast": [ + "June Marlowe", + "Eric St. Clair" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Fighting Sap", + "year": 1924, + "cast": [ + "Fred Thomson", + "Hazel Keener" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Fire Patrol", + "year": 1924, + "cast": [ + "Anna Q. Nilsson", + "Madge Bellamy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Flames of Desire", + "year": 1924, + "cast": [ + "Wyndham Standing", + "Diana Miller" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Flaming Barriers", + "year": 1924, + "cast": [ + "Jacqueline Logan", + "Antonio Moreno" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Flaming Forties", + "year": 1924, + "cast": [ + "Harry Carey", + "Jacqueline Gadsden" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Flapper Wives", + "year": 1924, + "cast": [ + "May Allison", + "Rockliffe Fellowes" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Flashing Spurs", + "year": 1924, + "cast": [ + "Bob Custer", + "Marguerite Clayton" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Flirting with Love", + "year": 1924, + "cast": [ + "Colleen Moore", + "Conway Tearle" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Flowing Gold", + "year": 1924, + "cast": [ + "Anna Q. Nilsson", + "Milton Sills" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Folly of Vanity", + "year": 1924, + "cast": [ + "Billie Dove", + "Jack Mulhall" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Fool's Awakening", + "year": 1924, + "cast": [ + "Mary Alden", + "Lionel Belmore" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Fools Highway", + "year": 1924, + "cast": [ + "Mary Philbin", + "Pat O'Malley" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Fools in the Dark", + "year": 1924, + "cast": [ + "Patsy Ruth Miller", + "Matt Moore" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Foolish Virgin", + "year": 1924, + "cast": [ + "Elaine Hammerstein", + "Robert Frazer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "For Another Woman", + "year": 1924, + "cast": [ + "Kenneth Harlan", + "Florence Billings" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "For Sale", + "year": 1924, + "cast": [ + "Claire Windsor", + "Adolphe Menjou" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Forbidden Paradise", + "year": 1924, + "cast": [ + "Pola Negri", + "Rod La Rocque", + "Adolphe Menjou" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Gaiety Girl", + "year": 1924, + "cast": [ + "Mary Philbin", + "William Haines" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Galloping Ace", + "year": 1924, + "cast": [ + "Jack Hoxie", + "Margaret Morris" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Galloping Fish", + "year": 1924, + "cast": [ + "Louise Fazenda", + "Syd Chaplin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Galloping Hoofs", + "year": 1924, + "cast": [ + "Allene Ray", + "Johnnie Walker" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Gambling Wives", + "year": 1924, + "cast": [ + "Marjorie Daw", + "Edward Earle" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Garden of Weeds", + "year": 1924, + "cast": [ + "Betty Compson", + "Warner Baxter" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Geared to Go", + "year": 1924, + "cast": [ + "Reed Howes", + "Carmelita Geraghty" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "George Washington Jr.", + "year": 1924, + "cast": [ + "Wesley Barry", + "Gertrude Olmstead" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Gerald Cranston's Lady", + "year": 1924, + "cast": [ + "James Kirkwood", + "Alma Rubens" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Girl in the Limousine", + "year": 1924, + "cast": [ + "Larry Semon", + "Claire Adams" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Girl of the Limberlost", + "year": 1924, + "cast": [ + "Gloria Grey", + "Emily Fitzroy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Girl Shy", + "year": 1924, + "cast": [ + "Harold Lloyd", + "Jobyna Ralston" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Girls Men Forget", + "year": 1924, + "cast": [ + "Patsy Ruth Miller", + "Alan Hale" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Gold Heels", + "year": 1924, + "cast": [ + "Robert Agnew", + "Peggy Shaw" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Goldfish", + "year": 1924, + "cast": [ + "Constance Talmadge", + "Jack Mulhall" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Good Bad Boy", + "year": 1924, + "cast": [ + "Joe Butterworth", + "Mary Jane Irving" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Great Diamond Mystery", + "year": 1924, + "cast": [ + "Shirley Mason", + "Jackie Saunders" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Great White Way", + "year": 1924, + "cast": [ + "Anita Stewart", + "Oscar Shaw" + ], + "genres": [ + "Sports", + "Comedy" + ] + }, + { + "title": "Greater Than Marriage", + "year": 1924, + "cast": [ + "Marjorie Daw", + "Lou Tellegen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Greed", + "year": 1924, + "cast": [ + "ZaSu Pitts", + "Gibson Gowland" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Grit", + "year": 1924, + "cast": [ + "Glenn Hunter", + "Roland Young" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Guilty One", + "year": 1924, + "cast": [ + "Agnes Ayres", + "Edmund Burns" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Half-A-Dollar-Bill", + "year": 1924, + "cast": [ + "Anna Q. Nilsson", + "William P. Carleton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Hansom Cabman", + "year": 1924, + "cast": [ + "Harry Langdon", + "Marceline Day", + "Charlotte Mineau" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Happiness", + "year": 1924, + "cast": [ + "Laurette Taylor", + "Pat O'Malley", + "Hedda Hopper" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hard-Hittin' Hamilton", + "year": 1924, + "cast": [ + "Jay Wilsey", + "Hazel Keener" + ], + "genres": [ + "Action" + ] + }, + { + "title": "He Who Gets Slapped", + "year": 1924, + "cast": [ + "Lon Chaney", + "Norma Shearer", + "John Gilbert" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Heart Bandit", + "year": 1924, + "cast": [ + "Viola Dana", + "Milton Sills" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Heart Buster", + "year": 1924, + "cast": [ + "Tom Mix", + "Esther Ralston" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Hearts of Oak", + "year": 1924, + "cast": [ + "Hobart Bosworth", + "Pauline Starke" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Helen's Babies", + "year": 1924, + "cast": [ + "Baby Peggy", + "Edward Everett Horton", + "Clara Bow" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Her Love Story", + "year": 1924, + "cast": [ + "Gloria Swanson", + "Ian Keith" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Her Marriage Vow", + "year": 1924, + "cast": [ + "Monte Blue", + "Willard Louis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Her Night of Romance", + "year": 1924, + "cast": [ + "Constance Talmadge", + "Ronald Colman", + "Jean Hersholt" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Her Own Free Will", + "year": 1924, + "cast": [ + "Helene Chadwick", + "Holmes Herbert" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Heritage of the Desert", + "year": 1924, + "cast": [ + "Bebe Daniels", + "Ernest Torrence", + "Noah Beery" + ], + "genres": [ + "Western" + ] + }, + { + "title": "High Speed", + "year": 1924, + "cast": [ + "Herbert Rawlinson", + "Carmelita Geraghty" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Hill Billy", + "year": 1924, + "cast": [ + "Jack Pickford", + "Lucille Ricksen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "His Forgotten Wife", + "year": 1924, + "cast": [ + "Warner Baxter", + "Madge Bellamy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "His Hour", + "year": 1924, + "cast": [ + "Aileen Pringle", + "John Gilbert" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hit and Run", + "year": 1924, + "cast": [ + "Hoot Gibson", + "Cyril Ring" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hold Your Breath", + "year": 1924, + "cast": [ + "Dorothy Devore", + "Walter Hiers" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Honor Among Men", + "year": 1924, + "cast": [ + "Edmund Lowe", + "Claire Adams" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hook and Ladder", + "year": 1924, + "cast": [ + "Hoot Gibson", + "Frank Beal" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Hoosier Schoolmaster", + "year": 1924, + "cast": [ + "Henry Hull", + "Jane Thomas" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hot Water", + "year": 1924, + "cast": [ + "Harold Lloyd", + "Jobyna Ralston" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The House of Youth", + "year": 1924, + "cast": [ + "Jacqueline Logan", + "Malcolm McGregor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "How to Educate a Wife", + "year": 1924, + "cast": [ + "Marie Prevost", + "Monte Blue" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Humming Bird", + "year": 1924, + "cast": [ + "Gloria Swanson", + "Edmund Burns" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Husbands and Lovers", + "year": 1924, + "cast": [ + "Lewis Stone", + "Florence Vidor" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "I Am the Man", + "year": 1924, + "cast": [ + "Lionel Barrymore", + "Seena Owen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Icebound", + "year": 1924, + "cast": [ + "Richard Dix", + "Lois Wilson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Idle Tongues", + "year": 1924, + "cast": [ + "Percy Marmont", + "Doris Kenyon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "In Every Woman's Life", + "year": 1924, + "cast": [ + "Virginia Valli", + "Lloyd Hughes" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "In Fast Company", + "year": 1924, + "cast": [ + "Richard Talmadge", + "Mildred Harris" + ], + "genres": [ + "Action" + ] + }, + { + "title": "In Hollywood with Potash and Perlmutter", + "year": 1924, + "cast": [ + "Vera Gordon", + "Betty Blythe" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "In Love with Love", + "year": 1924, + "cast": [ + "Marguerite De La Motte", + "Allan Forrest" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Inez from Hollywood", + "year": 1924, + "cast": [ + "Anna Q. Nilsson", + "Lewis Stone", + "Mary Astor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Iron Horse", + "year": 1924, + "cast": [ + "George O'Brien", + "Madge Bellamy" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Is Love Everything?", + "year": 1924, + "cast": [ + "Alma Rubens", + "Frank Mayo" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Isn't Life Wonderful", + "year": 1924, + "cast": [ + "Carol Dempster", + "Neil Hamilton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "It Is the Law", + "year": 1924, + "cast": [ + "Arthur Hohl", + "Herbert Heyes" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Jack O'Clubs", + "year": 1924, + "cast": [ + "Herbert Rawlinson", + "Ruth Dwyer" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Janice Meredith", + "year": 1924, + "cast": [ + "Marion Davies", + "Holbrook Blinn", + "Tyrone Power Sr" + ], + "genres": [ + "Historical" + ] + }, + { + "title": "The Judgment of the Storm", + "year": 1924, + "cast": [ + "Lloyd Hughes", + "Lucille Ricksen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Just Off Broadway", + "year": 1924, + "cast": [ + "John Gilbert", + "Marian Nixon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "K - The Unknown", + "year": 1924, + "cast": [ + "Virginia Valli", + "Percy Marmont" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The King of the Wild Horses", + "year": 1924, + "cast": [ + "Edna Murphy", + "Charley Chase" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Ladies to Board", + "year": 1924, + "cast": [ + "Tom Mix", + "Gertrude Olmstead" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Lady of Quality", + "year": 1924, + "cast": [ + "Virginia Valli", + "Milton Sills" + ], + "genres": [ + "Historical" + ] + }, + { + "title": "The Last Man on Earth", + "year": 1924, + "cast": [ + "Earle Foxe", + "Grace Cunard" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Last of the Duanes", + "year": 1924, + "cast": [ + "Tom Mix", + "Marian Nixon" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Laughing at Danger", + "year": 1924, + "cast": [ + "Richard Talmadge", + "Eva Novak" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Law Forbids", + "year": 1924, + "cast": [ + "Robert Ellis", + "Elinor Fair" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Leap Year", + "year": 1924, + "cast": [ + "Roscoe Arbuckle", + "Mary Thurman" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Legend of Hollywood", + "year": 1924, + "cast": [ + "Percy Marmont", + "Zasu Pitts" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Lend Me Your Husband", + "year": 1924, + "cast": [ + "Doris Kenyon", + "David Powell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Let Not Man Put Asunder", + "year": 1924, + "cast": [ + "Pauline Frederick", + "Lou Tellegen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Life's Greatest Game", + "year": 1924, + "cast": [ + "Tom Santschi", + "Jane Thomas" + ], + "genres": [ + "Sports" + ] + }, + { + "title": "The Lighthouse by the Sea", + "year": 1924, + "cast": [ + "William Collier Jr.", + "Louise Fazenda" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Lightning Rider", + "year": 1924, + "cast": [ + "Harry Carey", + "Virginia Brown Faire" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Lightning Romance", + "year": 1924, + "cast": [ + "Reed Howes", + "Ethel Shannon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Lilies of the Field", + "year": 1924, + "cast": [ + "Corinne Griffith", + "Conway Tearle" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Lily of the Dust", + "year": 1924, + "cast": [ + "Pola Negri", + "Ben Lyon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Listen Lester", + "year": 1924, + "cast": [ + "Louise Fazenda", + "Harry Myers" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Little Robinson Crusoe", + "year": 1924, + "cast": [ + "Jackie Coogan", + "Will Walling" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Lone Chance", + "year": 1924, + "cast": [ + "John Gilbert", + "Evelyn Brent" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Lone Wolf", + "year": 1924, + "cast": [ + "Dorothy Dalton", + "Jack Holt" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "A Lost Lady", + "year": 1924, + "cast": [ + "Irene Rich", + "June Marlowe" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Love and Glory", + "year": 1924, + "cast": [ + "Charles de Rochefort", + "Wallace MacDonald" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Love Bandit", + "year": 1924, + "cast": [ + "Doris Kenyon", + "Victor Sutherland" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Love Letters", + "year": 1924, + "cast": [ + "Shirley Mason", + "John Miljan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Love Master", + "year": 1924, + "cast": [ + "Lillian Rich", + "Strongheart" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Love of Women", + "year": 1924, + "cast": [ + "Helene Chadwick", + "Montagu Love" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Love's Whirlpool", + "year": 1924, + "cast": [ + "James Kirkwood", + "Lila Lee" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Love's Wilderness", + "year": 1924, + "cast": [ + "Corinne Griffith", + "Holmes Herbert" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Lover of Camille", + "year": 1924, + "cast": [ + "Monte Blue", + "Willard Louis", + "Marie Prevost" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Lovers' Lane", + "year": 1924, + "cast": [ + "Robert Ellis", + "Gertrude Olmstead" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Loving Lies", + "year": 1924, + "cast": [ + "Evelyn Brent", + "Monte Blue" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Luck o' the Foolish", + "year": 1924, + "cast": [ + "Harry Langdon", + "Marceline Day", + "Frank J. Coleman" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Lullaby", + "year": 1924, + "cast": [ + "Jane Novak", + "Robert Anderson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Lure of the Yukon", + "year": 1924, + "cast": [ + "Eva Novak", + "Buddy Roosevelt" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Mademoiselle Midnight", + "year": 1924, + "cast": [ + "Mae Murray", + "Monte Blue" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Madonna of the Streets", + "year": 1924, + "cast": [ + "Alla Nazimova", + "Milton Sills" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Man's Mate", + "year": 1924, + "cast": [ + "John Gilbert", + "Renée Adorée" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Man from Wyoming", + "year": 1924, + "cast": [ + "Jack Hoxie", + "Lillian Rich" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Man Who Came Back", + "year": 1924, + "cast": [ + "George O'Brien", + "Dorothy Mackaill" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Man Who Fights Alone", + "year": 1924, + "cast": [ + "William Farnum", + "Lois Wilson", + "Edward Everett Horton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Man Who Played Square", + "year": 1924, + "cast": [ + "Buck Jones", + "Wanda Hawley" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Man Without a Heart", + "year": 1924, + "cast": [ + "Kenneth Harlan", + "Jane Novak" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Manhandled", + "year": 1924, + "cast": [ + "Gloria Swanson", + "Tom Moore" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Manhattan", + "year": 1924, + "cast": [ + "Richard Dix", + "Jacqueline Logan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Marriage Cheat", + "year": 1924, + "cast": [ + "Leatrice Joy", + "Adolphe Menjou" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Marriage Circle", + "year": 1924, + "cast": [ + "Florence Vidor", + "Adolphe Menjou", + "Monte Blue", + "Marie Prevost" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Married Flirts", + "year": 1924, + "cast": [ + "Pauline Frederick", + "Mae Busch" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Marry in Haste", + "year": 1924, + "cast": [ + "William Fairbanks", + "Dorothy Revier" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Mask of Lopez", + "year": 1924, + "cast": [ + "Fred Thomson", + "Wilfred Lucas" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Masked Dancer", + "year": 1924, + "cast": [ + "Lowell Sherman", + "Helene Chadwick" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Measure of a Man", + "year": 1924, + "cast": [ + "Francis Ford", + "Marin Sais" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Meddling Women", + "year": 1924, + "cast": [ + "Lionel Barrymore", + "Sigrid Holmquist" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Men", + "year": 1924, + "cast": [ + "Pola Negri", + "Robert Frazer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Merton of the Movies", + "year": 1924, + "cast": [ + "Glenn Hunter", + "Viola Dana" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Miami", + "year": 1924, + "cast": [ + "Betty Compson", + "Lawford Davidson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Midnight Express", + "year": 1924, + "cast": [ + "Elaine Hammerstein", + "William Haines" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Millionaire Cowboy", + "year": 1924, + "cast": [ + "Maurice \"Lefty\" Flynn", + "Gloria Grey" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Mine with the Iron Door", + "year": 1924, + "cast": [ + "Dorothy Mackaill", + "Raymond Hatton" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Mirage", + "year": 1924, + "cast": [ + "Florence Vidor", + "Clive Brook" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Missing Daughters", + "year": 1924, + "cast": [ + "Eileen Percy", + "Pauline Starke" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Monsieur Beaucaire", + "year": 1924, + "cast": [ + "Rudolph Valentino", + "Bebe Daniels", + "Lois Wilson", + "Doris Kenyon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Moral Sinner", + "year": 1924, + "cast": [ + "Dorothy Dalton", + "James Rennie" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "My Husband's Wives", + "year": 1924, + "cast": [ + "Shirley Mason", + "Bryant Washburn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "My Man", + "year": 1924, + "cast": [ + "Patsy Ruth Miller", + "Dustin Farnum" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Name the Man", + "year": 1924, + "cast": [ + "Mae Busch", + "Conrad Nagel" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Navigator", + "year": 1924, + "cast": [ + "Buster Keaton", + "Kathryn McGuire" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Nellie, the Beautiful Cloak Model", + "year": 1924, + "cast": [ + "Claire Windsor", + "Edmund Lowe" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Never Say Die", + "year": 1924, + "cast": [ + "Douglas MacLean", + "Lillian Rich" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The New School Teacher", + "year": 1924, + "cast": [ + "Doris Kenyon", + "Mickey Bennett" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Next Corner", + "year": 1924, + "cast": [ + "Dorothy Mackaill", + "Lon Chaney", + "Conway Tearle" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Night Hawk", + "year": 1924, + "cast": [ + "Harry Carey", + "Claire Adams" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Night Message", + "year": 1924, + "cast": [ + "Howard Truesdale", + "Gladys Hulette" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The No-Gun Man", + "year": 1924, + "cast": [ + "Maurice Bennett Flynn", + "Gloria Grey" + ], + "genres": [ + "Western" + ] + }, + { + "title": "No More Women", + "year": 1924, + "cast": [ + "Matt Moore", + "Madge Bellamy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "North of 36", + "year": 1924, + "cast": [ + "Jack Holt", + "Ernest Torrence", + "Lois Wilson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "North of Nevada", + "year": 1924, + "cast": [ + "Fred Thomson", + "Hazel Keener" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Not a Drum Was Heard", + "year": 1924, + "cast": [ + "Buck Jones", + "Betty Bouton" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Oh, You Tony!", + "year": 1924, + "cast": [ + "Tom Mix", + "Claire Adams" + ], + "genres": [ + "Western" + ] + }, + { + "title": "On the Stroke of Three", + "year": 1924, + "cast": [ + "Kenneth Harlan", + "Madge Bellamy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "On Time", + "year": 1924, + "cast": [ + "Richard Talmadge", + "Billie Dove" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "One Glorious Night", + "year": 1924, + "cast": [ + "Elaine Hammerstein", + "Alan Roscoe" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "One Law for the Woman", + "year": 1924, + "cast": [ + "Cullen Landis", + "Mildred Harris" + ], + "genres": [ + "Western" + ] + }, + { + "title": "One Night in Rome", + "year": 1924, + "cast": [ + "Laurette Taylor", + "Tom Moore" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Only Woman", + "year": 1924, + "cast": [ + "Norma Talmadge", + "Eugene O'Brien" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Open All Night", + "year": 1924, + "cast": [ + "Viola Dana", + "Jetta Goudal", + "Raymond Griffith" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Other Kind of Love", + "year": 1924, + "cast": [ + "William Fairbanks", + "Dorothy Revier" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Pagan Passions", + "year": 1924, + "cast": [ + "Wyndham Standing", + "June Elvidge" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Painted Flapper", + "year": 1924, + "cast": [ + "James Kirkwood", + "Pauline Garon" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Painted Lady", + "year": 1924, + "cast": [ + "George O'Brien", + "Dorothy Mackaill" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Painted People", + "year": 1924, + "cast": [ + "Colleen Moore", + "Ben Lyon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Pal o' Mine", + "year": 1924, + "cast": [ + "Irene Rich", + "Josef Swickard" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Passing of Wolf MacLean", + "year": 1924, + "cast": [ + "Jack Mower", + "Alma Rayford" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Passion's Pathway", + "year": 1924, + "cast": [ + "Estelle Taylor", + "Wilfred Lucas" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Pell Street Mystery", + "year": 1924, + "cast": [ + "George Larkin", + "Frank Whitson" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Perfect Flapper", + "year": 1924, + "cast": [ + "Colleen Moore", + "Syd Chaplin", + "Phyllis Haver" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Peter Pan", + "year": 1924, + "cast": [ + "Betty Bronson", + "Ernest Torrence", + "Virginia Browne Faire" + ], + "genres": [ + "Fantasy", + "Family" + ] + }, + { + "title": "The Phantom Horseman", + "year": 1924, + "cast": [ + "Jack Hoxie", + "Lillian Rich" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Phantom Justice", + "year": 1924, + "cast": [ + "Rod La Rocque", + "Kathryn McGuire" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Pied Piper Malone", + "year": 1924, + "cast": [ + "Thomas Meighan", + "Lois Wilson" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Playthings of Desire", + "year": 1924, + "cast": [ + "Estelle Taylor", + "Mahlon Hamilton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Plunderer", + "year": 1924, + "cast": [ + "Frank Mayo", + "Evelyn Brent" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Poisoned Paradise", + "year": 1924, + "cast": [ + "Kenneth Harlan", + "Clara Bow" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Price of a Party", + "year": 1924, + "cast": [ + "Hope Hampton", + "Mary Astor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Price She Paid", + "year": 1924, + "cast": [ + "Alma Rubens", + "Frank Mayo" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Racing for Life", + "year": 1924, + "cast": [ + "Eva Novak", + "William Fairbanks" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Racing Luck", + "year": 1924, + "cast": [ + "Monty Banks", + "Helen Ferguson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Ramshackle House", + "year": 1924, + "cast": [ + "Betty Compson", + "John Davidson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Range Blood", + "year": 1924, + "cast": [ + "Edmund Cobb", + "Florence Gilbert" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Rarin' to Go", + "year": 1924, + "cast": [ + "Jay Wilsey", + "Olin Francis" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Reckless Age", + "year": 1924, + "cast": [ + "Reginald Denny", + "Ruth Dwyer" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Reckless Romance", + "year": 1924, + "cast": [ + "Harry Myers", + "Wanda Hawley" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Recoil", + "year": 1924, + "cast": [ + "Mahlon Hamilton", + "Betty Blythe" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Red Lily", + "year": 1924, + "cast": [ + "Ramon Novarro", + "Enid Bennett" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Rejected Woman", + "year": 1924, + "cast": [ + "Alma Rubens", + "Conrad Nagel" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Restless Wives", + "year": 1924, + "cast": [ + "Doris Kenyon", + "James Rennie" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Revelation", + "year": 1924, + "cast": [ + "Viola Dana", + "Monte Blue" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Riddle Rider", + "year": 1924, + "cast": [ + "William Desmond", + "Eileen Sedgwick" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Ride for Your Life", + "year": 1924, + "cast": [ + "Hoot Gibson", + "Laura La Plante" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Riders Up", + "year": 1924, + "cast": [ + "Creighton Hale", + "George Cooper" + ], + "genres": [ + "Sports" + ] + }, + { + "title": "Ridgeway of Montana", + "year": 1924, + "cast": [ + "Jack Hoxie", + "Olive Hasbrouck" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Ridin' Kid from Powder River", + "year": 1924, + "cast": [ + "Hoot Gibson", + "Gladys Hulette" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Right of the Strongest", + "year": 1924, + "cast": [ + "E.K. Lincoln", + "Helen Ferguson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Rip Roarin' Roberts", + "year": 1924, + "cast": [ + "Buddy Roosevelt", + "Joe Rickson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Roaring Rails", + "year": 1924, + "cast": [ + "Harry Carey", + "Edith Roberts" + ], + "genres": [ + "Action" + ] + }, + { + "title": "A Rodeo Mixup", + "year": 1924, + "cast": [ + "Edmund Cobb", + "Florence Gilbert" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Roaring Lions at Home", + "year": 1924, + "cast": [ + "Oliver Hardy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Romola", + "year": 1924, + "cast": [ + "Lillian Gish", + "Dorothy Gish", + "William Powell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Rose of Paris", + "year": 1924, + "cast": [ + "Mary Philbin", + "Robert Cain" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Rough Ridin'", + "year": 1924, + "cast": [ + "Buddy Roosevelt", + "Elsa Benham" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Roughneck", + "year": 1924, + "cast": [ + "George O'Brien", + "Billie Dove" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Roulette", + "year": 1924, + "cast": [ + "Edith Roberts", + "Norman Trevor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Sainted Devil", + "year": 1924, + "cast": [ + "Rudolph Valentino", + "Nita Naldi" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sandra", + "year": 1924, + "cast": [ + "Barbara La Marr", + "Bert Lytell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Sawdust Trail", + "year": 1924, + "cast": [ + "Hoot Gibson", + "Josie Sedgwick" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Sea Hawk", + "year": 1924, + "cast": [ + "Milton Sills" + ], + "genres": [] + }, + { + "title": "Second Youth", + "year": 1924, + "cast": [ + "Alfred Lunt", + "Lynn Fontanne" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Secrets", + "year": 1924, + "cast": [ + "Norma Talmadge", + "Eugene O'Brien" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Secrets of the Night", + "year": 1924, + "cast": [ + "James Kirkwood", + "Madge Bellamy", + "Zasu Pitts" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "A Self-Made Failure", + "year": 1924, + "cast": [ + "Lloyd Hamilton", + "Ben Alexander", + "Matt Moore" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Shadow of the Desert", + "year": 1924, + "cast": [ + "Frank Mayo", + "Mildred Harris" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Shadows of Paris", + "year": 1924, + "cast": [ + "Pola Negri", + "Adolphe Menjou" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sherlock, Jr.", + "year": 1924, + "cast": [ + "Buster Keaton", + "Kathryn McGuire" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Shooting of Dan McGrew", + "year": 1924, + "cast": [ + "Barbara La Marr", + "Lew Cody", + "Mae Busch" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Side Show of Life", + "year": 1924, + "cast": [ + "Ernest Torrence", + "Anna Q. Nilsson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Signal Tower", + "year": 1924, + "cast": [ + "Virginia Valli", + "Rockliffe Fellowes" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Silent Accuser", + "year": 1924, + "cast": [ + "Eleanor Boardman", + "Raymond McKee" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Silent Stranger", + "year": 1924, + "cast": [ + "Fred Thomson", + "Hazel Keener" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Silent Watcher", + "year": 1924, + "cast": [ + "Glenn Hunter", + "Bessie Love" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Silk Stocking Sal", + "year": 1924, + "cast": [ + "Evelyn Brent", + "Robert Ellis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Singer Jim McKee", + "year": 1924, + "cast": [ + "William S. Hart", + "Phyllis Haver" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Single Wives", + "year": 1924, + "cast": [ + "Corinne Griffith", + "Milton Sills" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sinners in Heaven", + "year": 1924, + "cast": [ + "Bebe Daniels", + "Richard Dix" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sinners in Silk", + "year": 1924, + "cast": [ + "Eleanor Boardman", + "Adolphe Menjou" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Siren of Seville", + "year": 1924, + "cast": [ + "Priscilla Dean", + "Allan Forrest" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Sixth Commandment", + "year": 1924, + "cast": [ + "William Faversham", + "Charlotte Walker", + "John Boles" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Slanderers", + "year": 1924, + "cast": [ + "Johnnie Walker", + "Gladys Hulette" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Snob", + "year": 1924, + "cast": [ + "John Gilbert", + "Norma Shearer", + "Conrad Nagel" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Society Scandal", + "year": 1924, + "cast": [ + "Gloria Swanson", + "Rod La Rocque" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "So Big", + "year": 1924, + "cast": [ + "Colleen Moore", + "Joseph De Grasse" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "So This Is Marriage?", + "year": 1924, + "cast": [ + "Conrad Nagel", + "Eleanor Boardman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Son of the Sahara", + "year": 1924, + "cast": [ + "Bert Lytell", + "Claire Windsor" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Speed Spook", + "year": 1924, + "cast": [ + "Johnny Hines", + "Faire Binney" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Spirit of the USA", + "year": 1924, + "cast": [ + "Johnnie Walker", + "Mary Carr" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Spitfire", + "year": 1924, + "cast": [ + "Betty Blythe", + "Lowell Sherman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sporting Youth", + "year": 1924, + "cast": [ + "Reginald Denny", + "Laura La Plante" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Star Dust Trail", + "year": 1924, + "cast": [ + "Shirley Mason", + "Bryant Washburn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Stepping Lively", + "year": 1924, + "cast": [ + "Richard Talmadge", + "Mildred Harris" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Stolen Secrets", + "year": 1924, + "cast": [ + "Herbert Rawlinson", + "Kathleen Myers" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Storm Daughter", + "year": 1924, + "cast": [ + "Priscilla Dean", + "Tom Santschi" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Story Without a Name", + "year": 1924, + "cast": [ + "Agnes Ayres", + "Antonio Moreno" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Stranger", + "year": 1924, + "cast": [ + "Betty Compson", + "Richard Dix" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Street of Tears", + "year": 1924, + "cast": [ + "Tom Santschi", + "Marguerite Clayton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Stupid, But Brave", + "year": 1924, + "cast": [ + "Al St. John", + "Eugene Pallette" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Sundown", + "year": 1924, + "cast": [ + "Bessie Love", + "Hobart Bosworth" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Sunset Trail", + "year": 1924, + "cast": [ + "William Desmond", + "Gareth Hughes" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Tainted Money", + "year": 1924, + "cast": [ + "William Fairbanks", + "Eva Novak" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Tarnish", + "year": 1924, + "cast": [ + "May McAvoy", + "Ronald Colman", + "Marie Prevost" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Teeth", + "year": 1924, + "cast": [ + "Tom Mix", + "Lucien Littlefield" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Tenth Woman", + "year": 1924, + "cast": [ + "Beverly Bayne", + "John Roche" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Tess of the d'Urbervilles", + "year": 1924, + "cast": [ + "Blanche Sweet", + "Conrad Nagel" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "That French Lady", + "year": 1924, + "cast": [ + "Shirley Mason", + "Theodore von Eltz" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Thief of Bagdad", + "year": 1924, + "cast": [ + "Douglas Fairbanks", + "Snitz Edwards", + "Charles Belcher", + "Julanne Johnston", + "Anna May Wong" + ], + "genres": [] + }, + { + "title": "This Woman", + "year": 1924, + "cast": [ + "Irene Rich", + "Ricardo Cortez" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Those Who Dance", + "year": 1924, + "cast": [ + "Blanche Sweet", + "Bessie Love", + "Warner Baxter" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Those Who Dare", + "year": 1924, + "cast": [ + "John Bowers", + "Marguerite De La Motte" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Those Who Judge", + "year": 1924, + "cast": [ + "Patsy Ruth Miller", + "Flora le Breton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Three Miles Out", + "year": 1924, + "cast": [ + "Madge Kennedy", + "Harrison Ford" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Three Weeks", + "year": 1924, + "cast": [ + "Conrad Nagel", + "Aileen Pringle" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "Three Women", + "year": 1924, + "cast": [ + "May McAvoy", + "Pauline Frederick", + "Marie Prevost" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Through the Dark", + "year": 1924, + "cast": [ + "Colleen Moore", + "Forrest Stanley" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Thundering Hoofs", + "year": 1924, + "cast": [ + "Fred Thomson", + "William Lowery" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Thundering Romance", + "year": 1924, + "cast": [ + "Jay Wilsey", + "Jean Arthur" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Thy Name Is Woman", + "year": 1924, + "cast": [ + "Ramon Novarro", + "Barbara La Marr" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Tiger Love", + "year": 1924, + "cast": [ + "Antonio Moreno", + "Estelle Taylor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Tiger Thompson", + "year": 1924, + "cast": [ + "Harry Carey", + "Marguerite Clayton" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Tomboy", + "year": 1924, + "cast": [ + "Herbert Rawlinson", + "Dorothy Devore" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Tongues of Flame", + "year": 1924, + "cast": [ + "Thomas Meighan", + "Bessie Love" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Torment", + "year": 1924, + "cast": [ + "Bessie Love", + "Owen Moore" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Tornado", + "year": 1924, + "cast": [ + "House Peters", + "Ruth Clifford" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Traffic in Hearts", + "year": 1924, + "cast": [ + "Robert Frazer", + "Mildred Harris" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Trail Dust", + "year": 1924, + "cast": [ + "David Dunbar", + "Alfred Hewston" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Trail of the Law", + "year": 1924, + "cast": [ + "Wilfred Lytell", + "Norma Shearer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Triflers", + "year": 1924, + "cast": [ + "Mae Busch", + "Elliott Dexter" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Triumph", + "year": 1924, + "cast": [ + "Leatrice Joy", + "Rod La Rocque" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Trouble Shooter", + "year": 1924, + "cast": [ + "Tom Mix", + "Kathleen Key" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Troubles of a Bride", + "year": 1924, + "cast": [ + "Robert Agnew", + "Mildred June" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Trouping with Ellen", + "year": 1924, + "cast": [ + "Helene Chadwick", + "Mary Thurman" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "True as Steel", + "year": 1924, + "cast": [ + "Aileen Pringle", + "Huntley Gordon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Truth About Women", + "year": 1924, + "cast": [ + "Hope Hampton", + "Lowell Sherman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Try and Get It", + "year": 1924, + "cast": [ + "Billie Dove", + "Edward Everett Horton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Turmoil", + "year": 1924, + "cast": [ + "George Hackathorne", + "Theodore von Eltz" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Twenty Dollars a Week", + "year": 1924, + "cast": [ + "George Arliss", + "Ronald Colman", + "Edith Roberts" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Two Shall Be Born", + "year": 1924, + "cast": [ + "Jane Novak", + "Kenneth Harlan", + "Sigrid Holmquist" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Unguarded Women", + "year": 1924, + "cast": [ + "Bebe Daniels", + "Richard Dix", + "Mary Astor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Uninvited Guest", + "year": 1924, + "cast": [ + "Maurice \"Lefty\" Flynn", + "Mary MacLaren" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Unmarried Wives", + "year": 1924, + "cast": [ + "Mildred Harris", + "Gladys Brockwell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Unseen Hands", + "year": 1924, + "cast": [ + "Wallace Beery", + "Fontaine La Rue" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Untamed Youth", + "year": 1924, + "cast": [ + "Derelys Perdue", + "Lloyd Hughes" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Vagabond Trail", + "year": 1924, + "cast": [ + "Buck Jones", + "Marian Nixon" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Vanity's Price", + "year": 1924, + "cast": [ + "Anna Q. Nilsson", + "Wyndham Standing" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Venus of the South Seas", + "year": 1924, + "cast": [ + "Annette Kellerman", + "Roland Purdie" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Virgin", + "year": 1924, + "cast": [ + "Kenneth Harlan", + "Dorothy Revier" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Virginian Outcast", + "year": 1924, + "cast": [ + "Jack Perrin", + "Marjorie Daw", + "Otto Lederer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Virtuous Liars", + "year": 1924, + "cast": [ + "David Powell", + "Edith Allen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Wages of Virtue", + "year": 1924, + "cast": [ + "Gloria Swanson", + "Ben Lyon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Wanderer of the Wasteland", + "year": 1924, + "cast": [ + "Jack Holt", + "Noah Beery" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Wandering Husbands", + "year": 1924, + "cast": [ + "James Kirkwood", + "Lila Lee", + "Margaret Livingston" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Warrens of Virginia", + "year": 1924, + "cast": [ + "George Backus", + "Rosemary Hill" + ], + "genres": [ + "Historical" + ] + }, + { + "title": "Week End Husbands", + "year": 1924, + "cast": [ + "Holmes Herbert", + "Alma Rubens", + "Montagu Love" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Welcome Stranger", + "year": 1924, + "cast": [ + "Florence Vidor", + "Virginia Brown Faire" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Western Feuds", + "year": 1924, + "cast": [ + "Edmund Cobb", + "Florence Gilbert" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Western Luck", + "year": 1924, + "cast": [ + "Buck Jones", + "Beatrice Burnham" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Western Vengeance", + "year": 1924, + "cast": [ + "Franklyn Farnum", + "Marie Walcamp" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Western Wallop", + "year": 1924, + "cast": [ + "Jack Hoxie", + "Margaret Landis" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Western Yesterdays", + "year": 1924, + "cast": [ + "Edmund Cobb", + "Florence Gilbert" + ], + "genres": [ + "Western" + ] + }, + { + "title": "When a Girl Loves", + "year": 1924, + "cast": [ + "Agnes Ayres", + "Percy Marmont" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "When a Man's a Man", + "year": 1924, + "cast": [ + "John Bowers", + "Marguerite De La Motte" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Whispered Name", + "year": 1924, + "cast": [ + "Ruth Clifford", + "Charles Clary" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "White Man", + "year": 1924, + "cast": [ + "Kenneth Harlan", + "Alice Joyce" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The White Moth", + "year": 1924, + "cast": [ + "Barbara La Marr", + "Conway Tearle" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The White Sin", + "year": 1924, + "cast": [ + "Madge Bellamy", + "John Bowers" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The White Sheep", + "year": 1924, + "cast": [ + "Glenn Tryon", + "Blanche Mehaffey" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Why Men Leave Home", + "year": 1924, + "cast": [ + "Lewis Stone", + "Helene Chadwick" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Wife of the Centaur", + "year": 1924, + "cast": [ + "Eleanor Boardman", + "John Gilbert" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Wild Oranges", + "year": 1924, + "cast": [ + "Virginia Valli", + "Frank Mayo" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Wine", + "year": 1924, + "cast": [ + "Clara Bow", + "Forrest Stanley" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Wine of Youth", + "year": 1924, + "cast": [ + "Eleanor Boardman", + "William Haines" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Winner Take All", + "year": 1924, + "cast": [ + "Buck Jones", + "Peggy Shaw" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Wise Virgin", + "year": 1924, + "cast": [ + "Patsy Ruth Miller", + "Edythe Chapman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Wolf Man", + "year": 1924, + "cast": [ + "John Gilbert", + "Norma Shearer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Woman on the Jury", + "year": 1924, + "cast": [ + "Sylvia Breamer", + "Frank Mayo" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Woman Who Sinned", + "year": 1924, + "cast": [ + "Morgan Wallace", + "Irene Rich" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Women First", + "year": 1924, + "cast": [ + "William Fairbanks", + "Eva Novak" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Women Who Give", + "year": 1924, + "cast": [ + "Barbara Bedford", + "Frank Keenan", + "Renée Adorée" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Worldly Goods", + "year": 1924, + "cast": [ + "Agnes Ayres", + "Pat O'Malley", + "Victor Varconi" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Yankee Consul", + "year": 1924, + "cast": [ + "Douglas MacLean", + "Patsy Ruth Miller" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Yankee Madness", + "year": 1924, + "cast": [ + "George Larkin", + "Billie Dove" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Yolanda", + "year": 1924, + "cast": [ + "Marion Davies", + "Lyn Harding" + ], + "genres": [ + "Historical" + ] + }, + { + "title": "You Can't Get Away with It", + "year": 1924, + "cast": [ + "Percy Marmont", + "Malcolm McGregor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Young Ideas", + "year": 1924, + "cast": [ + "Laura La Plante", + "Lucille Ricksen" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Youth for Sale", + "year": 1924, + "cast": [ + "May Allison", + "Sigrid Holmquist" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Accused", + "year": 1925, + "cast": [ + "Marcella Daly", + "Eric Mayne" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Ace of Clubs", + "year": 1925, + "cast": [ + "Al Hoxie", + "Peggy Montgomery" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Ace of Spades", + "year": 1925, + "cast": [ + "William Desmond", + "Mary McAllister" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Adventure", + "year": 1925, + "cast": [ + "Tom Moore", + "Pauline Starke" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Adventurous Sex", + "year": 1925, + "cast": [ + "Clara Bow", + "Herbert Rawlinson" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "After Business Hours", + "year": 1925, + "cast": [ + "Elaine Hammerstein", + "Lou Tellegen", + "Phyllis Haver" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Air Mail", + "year": 1925, + "cast": [ + "Warner Baxter", + "Billie Dove", + "Douglas Fairbanks Jr." + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Alias Mary Flynn", + "year": 1925, + "cast": [ + "Evelyn Brent", + "Malcolm McGregor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "All Around Frying Pan", + "year": 1925, + "cast": [ + "Fred Thomson", + "Clara Horton" + ], + "genres": [ + "Western" + ] + }, + { + "title": "American Pluck", + "year": 1925, + "cast": [ + "George Walsh", + "Wanda Hawley" + ], + "genres": [ + "Sports" + ] + }, + { + "title": "The Ancient Highway", + "year": 1925, + "cast": [ + "Jack Holt", + "Billie Dove", + "Montagu Love" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Ancient Mariner", + "year": 1925, + "cast": [ + "Clara Bow", + "Gladys Brockwell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Any Woman", + "year": 1925, + "cast": [ + "Alice Terry", + "Donald Reed" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Are Parents People?", + "year": 1925, + "cast": [ + "Betty Bronson", + "Florence Vidor" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Arizona Romeo", + "year": 1925, + "cast": [ + "Buck Jones", + "Lucy Fox" + ], + "genres": [ + "Western", + "Comedy" + ] + }, + { + "title": "As Man Desires", + "year": 1925, + "cast": [ + "Viola Dana", + "Milton Sills" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Awful Truth", + "year": 1925, + "cast": [ + "Agnes Ayres", + "Warner Baxter" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Back to Life", + "year": 1925, + "cast": [ + "Patsy Ruth Miller", + "David Powell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Bad Company", + "year": 1925, + "cast": [ + "Madge Kennedy", + "Bigelow Cooper" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Bad Lands", + "year": 1925, + "cast": [ + "Harry Carey", + "Wilfred Lucas" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Bandit's Baby", + "year": 1925, + "cast": [ + "Fred Thomson", + "Helen Foster" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Bandit Tamer", + "year": 1925, + "cast": [ + "Franklyn Farnum", + "Marguerite Clayton" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Baree, Son of Kazan", + "year": 1925, + "cast": [ + "Anita Stewart", + "Donald Keith" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Barriers Burned Away", + "year": 1925, + "cast": [ + "Mabel Ballin", + "Frank Mayo" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Barriers of the Law", + "year": 1925, + "cast": [ + "Helen Holmes", + "William Desmond" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Bashful Buccaneer", + "year": 1925, + "cast": [ + "Reed Howes", + "Dorothy Dwan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Beautiful City", + "year": 1925, + "cast": [ + "Richard Barthelmess", + "Dorothy Gish", + "William Powell" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Beauty and the Bad Man", + "year": 1925, + "cast": [ + "Mabel Ballin", + "Forrest Stanley" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Before Midnight", + "year": 1925, + "cast": [ + "William Russell", + "Barbara Bedford" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Beggar on Horseback", + "year": 1925, + "cast": [ + "Edward Everett Horton", + "Esther Ralston" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Below the Line", + "year": 1925, + "cast": [ + "John Harron", + "June Marlowe" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Ben-Hur: A Tale of the Christ", + "year": 1925, + "cast": [ + "Ramón Novarro", + "Francis X. Bushman", + "May McAvoy", + "Betty Bronson" + ], + "genres": [] + }, + { + "title": "The Best Bad Man", + "year": 1925, + "cast": [ + "Tom Mix", + "Clara Bow" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Best People", + "year": 1925, + "cast": [ + "Warner Baxter", + "Esther Ralston" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Beyond the Border", + "year": 1925, + "cast": [ + "Harry Carey", + "Mildred Harris" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Big Pal", + "year": 1925, + "cast": [ + "William Russell", + "Julanne Johnston" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Big Parade", + "year": 1925, + "cast": [ + "John Gilbert", + "Renée Adorée" + ], + "genres": [ + "War" + ] + }, + { + "title": "The Big Stunt", + "year": 1925, + "cast": [ + "Guinn \"Big Boy\" Williams", + "Kathleen Collins" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Billy the Kid", + "year": 1925, + "cast": [ + "Franklyn Farnum", + "Dorothy Wood" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Black Cyclone", + "year": 1925, + "cast": [ + "Guinn \"Big Boy\" Williams", + "Kathleen Collins" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Blood and Steel", + "year": 1925, + "cast": [ + "Helen Holmes", + "William Desmond" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Bloodhound", + "year": 1925, + "cast": [ + "Bob Custer", + "Mary Beth Milford" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Blue Blood", + "year": 1925, + "cast": [ + "George Walsh", + "Philo McCullough" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Bobbed Hair", + "year": 1925, + "cast": [ + "Marie Prevost", + "Louise Fazenda" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Boomerang", + "year": 1925, + "cast": [ + "Anita Stewart", + "Bert Lytell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Border Intrigue", + "year": 1925, + "cast": [ + "Franklyn Farnum", + "Dorothy Wood" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Border Justice", + "year": 1925, + "cast": [ + "Bill Cody", + "Nola Luxford" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Border Vengeance", + "year": 1925, + "cast": [ + "Jack Perrin", + "Josephine Hill" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Borrowed Finery", + "year": 1925, + "cast": [ + "Louise Lorraine", + "Ward Crane" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Braveheart", + "year": 1925, + "cast": [ + "Rod La Rocque" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Bridge of Sighs", + "year": 1925, + "cast": [ + "Dorothy Mackaill", + "Creighton Hale" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Bright Lights", + "year": 1925, + "cast": [ + "Charles Ray", + "Pauline Starke", + "Lilyan Tashman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Broadway Butterfly", + "year": 1925, + "cast": [ + "Dorothy Devore", + "Louise Fazenda" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Broadway Lady", + "year": 1925, + "cast": [ + "Evelyn Brent", + "Theodore von Eltz", + "Margerie Bonner" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Burning Trail", + "year": 1925, + "cast": [ + "William Desmond", + "Albert J. Smith" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Business of Love", + "year": 1925, + "cast": [ + "Edward Everett Horton", + "Barbara Bedford", + "Zasu Pitts" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Bustin' Thru", + "year": 1925, + "cast": [ + "Jack Hoxie", + "Helen Lynch" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Cactus Trails", + "year": 1925, + "cast": [ + "Jack Perrin", + "Alma Rayford" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Calgary Stampede", + "year": 1925, + "cast": [ + "Hoot Gibson", + "Virginia Brown Faire" + ], + "genres": [ + "Western" + ] + }, + { + "title": "California Straight Ahead", + "year": 1925, + "cast": [ + "Reginald Denny", + "Gertrude Olmstead" + ], + "genres": [ + "Sports" + ] + }, + { + "title": "The Call of Courage", + "year": 1925, + "cast": [ + "Art Acord", + "Olive Hasbrouck" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Camille of the Barbary Coast", + "year": 1925, + "cast": [ + "Mae Busch", + "Owen Moore" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Champion of Lost Causes", + "year": 1925, + "cast": [ + "Edmund Lowe", + "Barbara Bedford" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Charley's Aunt", + "year": 1925, + "cast": [ + "Syd Chaplin", + "Ethel Shannon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Charmer", + "year": 1925, + "cast": [ + "Pola Negri", + "Robert Frazer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Cheaper to Marry", + "year": 1925, + "cast": [ + "Conrad Nagel", + "Lewis Stone", + "Marguerite De La Motte" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Chickie", + "year": 1925, + "cast": [ + "Dorothy Mackaill", + "John Bowers", + "Hobart Bosworth" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Children of the Whirlwind", + "year": 1925, + "cast": [ + "Lionel Barrymore", + "Marguerite De La Motte" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Circle", + "year": 1925, + "cast": [ + "Eleanor Boardman", + "Malcolm McGregor" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "The Circus Cyclone", + "year": 1925, + "cast": [ + "Art Acord", + "Cesare Gravina" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Clash of the Wolves", + "year": 1925, + "cast": [ + "Charles Farrell", + "June Marlowe" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Classified", + "year": 1925, + "cast": [ + "Corinne Griffith", + "Jack Mulhall" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Clothes Make the Pirate", + "year": 1925, + "cast": [ + "Leon Errol", + "Dorothy Gish", + "Nita Naldi" + ], + "genres": [ + "Historical", + "Comedy" + ] + }, + { + "title": "The Cloud Rider", + "year": 1925, + "cast": [ + "Al Wilson", + "Virginia Lee Corbin" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Coast of Folly", + "year": 1925, + "cast": [ + "Gloria Swanson", + "Alec B. Francis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Cobra", + "year": 1925, + "cast": [ + "Rudolph Valentino", + "Nita Naldi" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Code of the West", + "year": 1925, + "cast": [ + "Owen Moore", + "Constance Bennett", + "Mabel Ballin" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Coming of Amos", + "year": 1925, + "cast": [ + "Rod La Rocque", + "Jetta Goudal", + "Noah Beery" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Coming Through", + "year": 1925, + "cast": [ + "Thomas Meighan", + "Wallace Beery", + "and", + "Lila Lee" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Compromise", + "year": 1925, + "cast": [ + "Irene Rich", + "Clive Brook", + "Louise Fazenda" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Confessions of a Queen", + "year": 1925, + "cast": [ + "Alice Terry", + "Lewis Stone" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Contraband", + "year": 1925, + "cast": [ + "Lois Wilson", + "Noah Beery" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Counsel for the Defense", + "year": 1925, + "cast": [ + "Jay Hunt", + "Betty Compson", + "House Peters" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Cowboy Musketeer", + "year": 1925, + "cast": [ + "Tom Tyler", + "Frankie Darro" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Crack o' Dawn", + "year": 1925, + "cast": [ + "Reed Howes", + "Henry A. Barrows" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Crimson Runner", + "year": 1925, + "cast": [ + "Priscilla Dean", + "Bernard Siegel", + "Alan Hale" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Crowded Hour", + "year": 1925, + "cast": [ + "Bebe Daniels", + "Kenneth Harlan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Cyclone Cavalier", + "year": 1925, + "cast": [ + "Reed Howes", + "Carmelita Geraghty" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Daddy's Gone A-Hunting", + "year": 1925, + "cast": [ + "Alice Joyce", + "Percy Marmont" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Dancers", + "year": 1925, + "cast": [ + "George O'Brien", + "Alma Rubens" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Danger Signal", + "year": 1925, + "cast": [ + "Jane Novak", + "Dorothy Revier" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dangerous Fists", + "year": 1925, + "cast": [ + "Jack Perrin", + "Nelson McDowell" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Dangerous Innocence", + "year": 1925, + "cast": [ + "Laura La Plante", + "Eugene O'Brien" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Daring Days", + "year": 1925, + "cast": [ + "Josie Sedgwick", + "Edward Hearn" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Dark Angel", + "year": 1925, + "cast": [ + "Ronald Colman", + "Vilma Bánky" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Daughters Who Pay", + "year": 1925, + "cast": [ + "Marguerite De La Motte", + "John Bowers" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Déclassé", + "year": 1925, + "cast": [ + "Corinne Griffith", + "Clive Brook" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Demon Rider", + "year": 1925, + "cast": [ + "Ken Maynard", + "Alma Rayford" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Denial", + "year": 1925, + "cast": [ + "Claire Windsor", + "Bert Roach" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Desert Flower", + "year": 1925, + "cast": [ + "Colleen Moore", + "Lloyd Hughes" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Desert's Price", + "year": 1925, + "cast": [ + "Buck Jones", + "Florence Gilbert" + ], + "genres": [ + "Western" + ] + }, + { + "title": "A Desperate Chance", + "year": 1925, + "cast": [ + "Bob Reeves", + "Slim Whitaker" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Devil's Cargo", + "year": 1925, + "cast": [ + "Wallace Beery", + "Pauline Starke" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dick Turpin", + "year": 1925, + "cast": [ + "Tom Mix", + "Philo McCullough" + ], + "genres": [ + "Historical" + ] + }, + { + "title": "Dollar Down", + "year": 1925, + "cast": [ + "Ruth Roland", + "Henry B. Walthall" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Don Dare Devil", + "year": 1925, + "cast": [ + "Jack Hoxie", + "William Welsh" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Don Q, Son of Zorro", + "year": 1925, + "cast": [ + "Douglas Fairbanks", + "Mary Astor", + "Warner Oland" + ], + "genres": [] + }, + { + "title": "Don't", + "year": 1925, + "cast": [ + "Sally O'Neil", + "Bert Roach" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Double-Fisted", + "year": 1925, + "cast": [ + "Jack Perrin", + "Lew Meehan" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Dressmaker from Paris", + "year": 1925, + "cast": [ + "Leatrice Joy", + "Ernest Torrence" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "The Drug Store Cowboy", + "year": 1925, + "cast": [ + "Franklyn Farnum", + "Jean Arthur" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Drusilla with a Million", + "year": 1925, + "cast": [ + "Mary Carr", + "Priscilla Bonner", + "Kenneth Harlan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Duped", + "year": 1925, + "cast": [ + "William Desmond", + "Helen Holmes" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Durand of the Bad Lands", + "year": 1925, + "cast": [ + "Buck Jones", + "Marian Nixon" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Eagle", + "year": 1925, + "cast": [ + "Rudolph Valentino" + ], + "genres": [ + "Historical" + ] + }, + { + "title": "East Lynne", + "year": 1925, + "cast": [ + "Alma Rubens", + "Edmund Lowe", + "Marjorie Daw" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "East of Suez", + "year": 1925, + "cast": [ + "Pola Negri", + "Edmund Lowe" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Easy Money", + "year": 1925, + "cast": [ + "Cullen Landis", + "Mildred Harris" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Empty Saddle", + "year": 1925, + "cast": [ + "Pete Morrison", + "Lew Meehan" + ], + "genres": [ + "Western" + ] + }, + { + "title": "An Enemy of Men", + "year": 1925, + "cast": [ + "Dorothy Revier", + "Cullen Landis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Enticement", + "year": 1925, + "cast": [ + "Mary Astor", + "Clive Brook" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Everlasting Whisper", + "year": 1925, + "cast": [ + "Tom Mix", + "Alice Calhoun" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Eve's Lover", + "year": 1925, + "cast": [ + "Irene Rich", + "Bert Lytell", + "Clara Bow" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Eve's Secret", + "year": 1925, + "cast": [ + "Betty Compson", + "Jack Holt" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Every Man's Wife", + "year": 1925, + "cast": [ + "Elaine Hammerstein", + "Herbert Rawlinson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Exchange of Wives", + "year": 1925, + "cast": [ + "Eleanor Boardman", + "Renée Adorée" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Excuse Me", + "year": 1925, + "cast": [ + "Conrad Nagel", + "Norma Shearer", + "Renée Adorée" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Faint Perfume", + "year": 1925, + "cast": [ + "Seena Owen", + "William Powell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Fangs of Fate", + "year": 1925, + "cast": [ + "Bill Patton", + "William Bertram" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Fate of a Flirt", + "year": 1925, + "cast": [ + "Dorothy Revier", + "Forrest Stanley" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Fear-Bound", + "year": 1925, + "cast": [ + "Marjorie Daw", + "Niles Welch" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Fear Fighter", + "year": 1925, + "cast": [ + "Billy Sullivan", + "Ruth Dwyer" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Fearless Lover", + "year": 1925, + "cast": [ + "William Fairbanks", + "Eva Novak" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Fifth Avenue Models", + "year": 1925, + "cast": [ + "Mary Philbin", + "Norman Kerry" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Fifty-Fifty", + "year": 1925, + "cast": [ + "Hope Hampton", + "Lionel Barrymore", + "Louise Glaum" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Fight to the Finish", + "year": 1925, + "cast": [ + "William Fairbanks", + "Phyllis Haver" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Fighting Demon", + "year": 1925, + "cast": [ + "Richard Talmadge", + "Lorraine Eason" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Fighting Fate", + "year": 1925, + "cast": [ + "Billy Sullivan", + "Tom McGuire" + ], + "genres": [ + "Sports" + ] + }, + { + "title": "The Fighting Heart", + "year": 1925, + "cast": [ + "George O'Brien", + "Billie Dove" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Fighting Luck", + "year": 1925, + "cast": [ + "Bob Reeves", + "Lew Meehan" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Fighting Smile", + "year": 1925, + "cast": [ + "Bill Cody", + "Jean Arthur" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Fighting the Flames", + "year": 1925, + "cast": [ + "William Haines", + "Dorothy Devore" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Fighting Youth", + "year": 1925, + "cast": [ + "William Fairbanks", + "Pauline Garon" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Fine Clothes", + "year": 1925, + "cast": [ + "Lewis Stone", + "Percy Marmont", + "Alma Rubens" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Flaming Love", + "year": 1925, + "cast": [ + "Eugene O'Brien", + "Mae Busch" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Flaming Waters", + "year": 1925, + "cast": [ + "Malcolm McGregor", + "Pauline Garon" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Flashing Steeds", + "year": 1925, + "cast": [ + "Bill Patton", + "Merrill McCormick" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Flattery", + "year": 1925, + "cast": [ + "John Bowers", + "Marguerite De La Motte", + "Alan Hale" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Flower of Night", + "year": 1925, + "cast": [ + "Pola Negri", + "Warner Oland" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Flying Hoofs", + "year": 1925, + "cast": [ + "Jack Hoxie", + "Bartlett Carré" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Folly of Youth", + "year": 1925, + "cast": [ + "Gaston Glass", + "Noah Beery", + "Gertrude Astor" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "A Fool and His Money", + "year": 1925, + "cast": [ + "Madge Bellamy", + "William Haines" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Fool", + "year": 1925, + "cast": [ + "Edmund Lowe", + "Raymond Bloomer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Forbidden Cargo", + "year": 1925, + "cast": [ + "Evelyn Brent", + "Robert Ellis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Forty Winks", + "year": 1925, + "cast": [ + "Raymond Griffith", + "Theodore Roberts" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Four from Nowhere", + "year": 1925, + "cast": [ + "Peggy O'Day", + "Philip Ford" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Free to Love", + "year": 1925, + "cast": [ + "Clara Bow", + "Donald Keith" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Friendly Enemies", + "year": 1925, + "cast": [ + "Jack Mulhall", + "Virginia Brown Faire" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Freshman", + "year": 1925, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Full Speed", + "year": 1925, + "cast": [ + "Jay Wilsey", + "Slim Whitaker" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Galloping On", + "year": 1925, + "cast": [ + "Hal Taliaferro", + "Slim Whitaker" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Galloping Vengeance", + "year": 1925, + "cast": [ + "Bob Custer", + "Mary Beth Milford" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Gambling Fool", + "year": 1925, + "cast": [ + "Franklyn Farnum", + "Otto Meyer" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Getting 'Em Right", + "year": 1925, + "cast": [ + "George Larkin", + "Milburn Morante" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Girl of Gold", + "year": 1925, + "cast": [ + "Florence Vidor", + "Malcolm McGregor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Girl on the Stairs", + "year": 1925, + "cast": [ + "Patsy Ruth Miller", + "Frances Raymond" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Girl Who Wouldn't Work", + "year": 1925, + "cast": [ + "Lionel Barrymore", + "Marguerite De La Motte" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Go Straight", + "year": 1925, + "cast": [ + "Owen Moore", + "Mary Carr" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Go West", + "year": 1925, + "cast": [ + "Buster Keaton" + ], + "genres": [ + "Comedy", + "Western" + ] + }, + { + "title": "Goat Getter", + "year": 1925, + "cast": [ + "Billy Sullivan", + "Kathleen Myers" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Gold and the Girl", + "year": 1925, + "cast": [ + "Buck Jones", + "Elinor Fair" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Gold Rush", + "year": 1925, + "cast": [ + "Charlie Chaplin", + "Georgia Hale" + ], + "genres": [ + "Comedy", + "Adventure" + ] + }, + { + "title": "The Golden Bed", + "year": 1925, + "cast": [ + "Lillian Rich", + "Henry B. Walthall" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Golden Cocoon", + "year": 1925, + "cast": [ + "Huntley Gordon", + "Helene Chadwick" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Golden Princess", + "year": 1925, + "cast": [ + "Betty Bronson", + "Neil Hamilton", + "Phyllis Haver" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Golden Strain", + "year": 1925, + "cast": [ + "Hobart Bosworth", + "Kenneth Harlan", + "Madge Bellamy" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Goose Hangs High", + "year": 1925, + "cast": [ + "Constance Bennett", + "Myrtle Stedman", + "Esther Ralston" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Goose Woman", + "year": 1925, + "cast": [ + "Louise Dresser", + "Jack Pickford" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Grass", + "year": 1925, + "cast": [ + "Merian C. Cooper", + "Ernest B. Schoedsack", + "Marguerite Harrison" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Graustark", + "year": 1925, + "cast": [ + "Norma Talmadge", + "Eugene O'Brien" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Great Circus Mystery", + "year": 1925, + "cast": [ + "Joe Bonomo", + "Louise Lorraine" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Great Divide", + "year": 1925, + "cast": [ + "Alice Terry", + "Conway Tearle", + "Wallace Beery" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Great Love", + "year": 1925, + "cast": [ + "Robert Agnew", + "Viola Dana", + "ZaSu Pitts" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Great Sensation", + "year": 1925, + "cast": [ + "William Fairbanks", + "Pauline Garon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Greater Than a Crown", + "year": 1925, + "cast": [ + "Edmund Lowe", + "Dolores Costello" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Grounds for Divorce", + "year": 1925, + "cast": [ + "Florence Vidor", + "Matt Moore" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Half-Way Girl", + "year": 1925, + "cast": [ + "Doris Kenyon", + "Lloyd Hughes" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Handsome Brute", + "year": 1925, + "cast": [ + "William Fairbanks", + "Virginia Lee Corbin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Happy Warrior", + "year": 1925, + "cast": [ + "Malcolm McGregor", + "Alice Calhoun" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Havoc", + "year": 1925, + "cast": [ + "Madge Bellamy", + "George O'Brien" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Head Winds", + "year": 1925, + "cast": [ + "House Peters", + "Patsy Ruth Miller" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Heads Up", + "year": 1925, + "cast": [ + "Maurice \"Lefty\" Flynn", + "Kathleen Myers" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Headlines", + "year": 1925, + "cast": [ + "Alice Joyce", + "Malcolm McGregor" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Heart of a Siren", + "year": 1925, + "cast": [ + "Barbara La Marr", + "Conway Tearle" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Heartless Husbands", + "year": 1925, + "cast": [ + "John T. Prince", + "Gloria Grey" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hearts and Spurs", + "year": 1925, + "cast": [ + "Buck Jones", + "Carole Lombard" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Heir-Loons", + "year": 1925, + "cast": [ + "Wallace MacDonald", + "Edith Roberts" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hell's Highroad", + "year": 1925, + "cast": [ + "Leatrice Joy", + "Edmund Burns" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Her Husband's Secret", + "year": 1925, + "cast": [ + "Antonio Moreno", + "Patsy Ruth Miller", + "Ruth Clifford" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Her Market Value", + "year": 1925, + "cast": [ + "Agnes Ayres", + "Anders Randolf", + "Hedda Hopper" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Her Sister from Paris", + "year": 1925, + "cast": [ + "Constance Talmadge", + "Ronald Colman" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hidden Loot", + "year": 1925, + "cast": [ + "Jack Hoxie", + "Olive Hasbrouck" + ], + "genres": [ + "Western" + ] + }, + { + "title": "High and Handsome", + "year": 1925, + "cast": [ + "Maurice \"Lefty\" Flynn", + "Ethel Shannon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "His Buddy's Wife", + "year": 1925, + "cast": [ + "Glenn Hunter", + "Edna Murphy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "His Majesty, Bunker Bean", + "year": 1925, + "cast": [ + "Matt Moore", + "Dorothy Devore" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "His Master's Voice", + "year": 1925, + "cast": [ + "George Hackathorne", + "Marjorie Daw" + ], + "genres": [ + "War" + ] + }, + { + "title": "His People", + "year": 1925, + "cast": [ + "Rudolph Schildkraut", + "Rosa Rosanova" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "His Secretary", + "year": 1925, + "cast": [ + "Norma Shearer", + "Lew Cody" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "His Supreme Moment", + "year": 1925, + "cast": [ + "Blanche Sweet", + "Ronald Colman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hogan's Alley", + "year": 1925, + "cast": [ + "Monte Blue", + "Patsy Ruth Miller" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Home Maker", + "year": 1925, + "cast": [ + "Alice Joyce", + "Clive Brook" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "How Baxter Butted In", + "year": 1925, + "cast": [ + "Dorothy Devore", + "Matt Moore" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Human Tornado", + "year": 1925, + "cast": [ + "Yakima Canutt", + "Bert Sprotte" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Hunted Woman", + "year": 1925, + "cast": [ + "Seena Owen", + "Earl Schenck" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Hurricane Horseman", + "year": 1925, + "cast": [ + "Hal Taliaferro", + "Jean Arthur" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Hurricane Kid", + "year": 1925, + "cast": [ + "Hoot Gibson", + "Marian Nixon" + ], + "genres": [ + "Western" + ] + }, + { + "title": "I Want My Man", + "year": 1925, + "cast": [ + "Doris Kenyon", + "Milton Sills", + "Phyllis Haver" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "If I Marry Again", + "year": 1925, + "cast": [ + "Doris Kenyon", + "Lloyd Hughes" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "If Marriage Fails", + "year": 1925, + "cast": [ + "Jacqueline Logan", + "Clive Brook", + "Jean Hersholt" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "I'll Show You the Town", + "year": 1925, + "cast": [ + "Reginald Denny", + "Marian Nixon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "In the Name of Love", + "year": 1925, + "cast": [ + "Ricardo Cortez", + "Greta Nissen", + "Wallace Beery" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Infatuation", + "year": 1925, + "cast": [ + "Corinne Griffith", + "Percy Marmont" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Introduce Me", + "year": 1925, + "cast": [ + "Douglas MacLean", + "Anne Cornwall" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Irish Luck", + "year": 1925, + "cast": [ + "Thomas Meighan", + "Lois Wilson" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Isle of Hope", + "year": 1925, + "cast": [ + "Richard Talmadge", + "Helen Ferguson" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Jimmie's Millions", + "year": 1925, + "cast": [ + "Richard Talmadge", + "Betty Francisco" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Joanna", + "year": 1925, + "cast": [ + "Dorothy Mackaill", + "Paul Nicholson", + "Dolores del Río" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Just a Woman", + "year": 1925, + "cast": [ + "Claire Windsor", + "Conway Tearle" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Justice of the Far North", + "year": 1925, + "cast": [ + "Arthur Jasmine", + "Marcia Manon" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Keep Smiling", + "year": 1925, + "cast": [ + "Monty Banks", + "Robert Edeson", + "Anne Cornwall" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Keeper of the Bees", + "year": 1925, + "cast": [ + "Robert Frazer", + "Clara Bow" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Kentucky Pride", + "year": 1925, + "cast": [ + "Henry B. Walthall", + "Gertrude Astor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The King on Main Street", + "year": 1925, + "cast": [ + "Bessie Love", + "Adolphe Menjou" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "The Kiss Barrier", + "year": 1925, + "cast": [ + "Edmund Lowe", + "Claire Adams" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "A Kiss for Cinderella", + "year": 1925, + "cast": [ + "Betty Bronson", + "Tom Moore" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "A Kiss in the Dark", + "year": 1925, + "cast": [ + "Adolphe Menjou", + "Aileen Pringle", + "Lillian Rich" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Kiss Me Again", + "year": 1925, + "cast": [ + "Marie Prevost", + "Monte Blue" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "The Knockout Kid", + "year": 1925, + "cast": [ + "Jack Perrin", + "Eva Thatcher" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Knockout", + "year": 1925, + "cast": [ + "Milton Sills", + "Harry Cording" + ], + "genres": [ + "Sports" + ] + }, + { + "title": "The Lady", + "year": 1925, + "cast": [ + "Norma Talmadge", + "Wallace MacDonald" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Lady of the Night", + "year": 1925, + "cast": [ + "Norma Shearer", + "Malcolm McGregor" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Lady Robinhood", + "year": 1925, + "cast": [ + "Evelyn Brent", + "Robert Ellis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Lady Windermere's Fan", + "year": 1925, + "cast": [ + "Ronald Colman", + "May McAvoy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Lady Who Lied", + "year": 1925, + "cast": [ + "Virginia Valli", + "Nita Naldi", + "Lewis Stone" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Last Edition", + "year": 1925, + "cast": [ + "Ralph Lewis", + "Lila Leslie", + "Ray Hallor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Lawful Cheater", + "year": 1925, + "cast": [ + "Clara Bow", + "Raymond McKee" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Lazybones", + "year": 1925, + "cast": [ + "Madge Bellamy", + "Buck Jones", + "ZaSu Pitts" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Learning to Love", + "year": 1925, + "cast": [ + "Constance Talmadge", + "Antonio Moreno" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Lena Rivers", + "year": 1925, + "cast": [ + "Gladys Hulette", + "Earle Williams" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Let 'er Buck", + "year": 1925, + "cast": [ + "Hoot Gibson", + "Marian Nixon" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Let Women Alone", + "year": 1925, + "cast": [ + "Pat O'Malley", + "Wanda Hawley", + "Wallace Beery" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Let's Go, Gallagher", + "year": 1925, + "cast": [ + "Tom Tyler", + "Olin Francis" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Lightnin'", + "year": 1925, + "cast": [ + "Jay Hunt", + "Wallace MacDonald" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Lights of Old Broadway", + "year": 1925, + "cast": [ + "Marion Davies", + "Conrad Nagel" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Light of Western Stars", + "year": 1925, + "cast": [ + "Jack Holt", + "Billie Dove", + "Noah Beery" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Lillies of the City", + "year": 1925, + "cast": [ + "Virginia Lee Corbin", + "Wheeler Oakman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Limited Mail", + "year": 1925, + "cast": [ + "Monte Blue", + "Vera Reynolds" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Little Annie Rooney", + "year": 1925, + "cast": [ + "Mary Pickford", + "William Haines" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Little French Girl", + "year": 1925, + "cast": [ + "Mary Brian", + "Maurice de Canonge" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Little Girl in a Big City", + "year": 1925, + "cast": [ + "Gladys Walton", + "Niles Welch" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Live Wire", + "year": 1925, + "cast": [ + "Johnny Hines", + "Edmund Breese" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Locked Doors", + "year": 1925, + "cast": [ + "Betty Compson", + "Theodore von Eltz" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Lord Jim", + "year": 1925, + "cast": [ + "Percy Marmont", + "Shirley Mason", + "Noah Beery Sr." + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Lorraine of the Lions", + "year": 1925, + "cast": [ + "Norman Kerry", + "Patsy Ruth Miller" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Lost: A Wife", + "year": 1925, + "cast": [ + "Adolphe Menjou", + "Greta Nissen" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Lost Chord", + "year": 1925, + "cast": [ + "David Powell", + "Alice Lake" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Lost Express", + "year": 1925, + "cast": [ + "Helen Holmes", + "Jack Mower" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Lost World", + "year": 1925, + "cast": [ + "Bessie Love", + "Wallace Beery", + "." + ], + "genres": [ + "Fantasy", + "Adventure" + ] + }, + { + "title": "The Love Gamble", + "year": 1925, + "cast": [ + "Lillian Rich", + "Robert Frazer", + "Pauline Garon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Love Hour", + "year": 1925, + "cast": [ + "Huntley Gordon", + "Louise Fazenda" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Lovers in Quarantine", + "year": 1925, + "cast": [ + "Bebe Daniels", + "Alfred Lunt" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Lover's Oath", + "year": 1925, + "cast": [ + "Ramon Novarro", + "Kathleen Key" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Lucky Devil", + "year": 1925, + "cast": [ + "Richard Dix", + "Esther Ralston" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Lucky Horseshoe", + "year": 1925, + "cast": [ + "Tom Mix", + "Billie Dove" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Lure of the Wild", + "year": 1925, + "cast": [ + "Jane Novak", + "Alan Roscoe" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Lying Wives", + "year": 1925, + "cast": [ + "Clara Kimball Young", + "Richard Bennett", + "Madge Kennedy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Mad Marriage", + "year": 1925, + "cast": [ + "Rosemary Davies", + "Maurice Costello" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Mad Whirl", + "year": 1925, + "cast": [ + "May McAvoy", + "Jack Mulhall" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Madame Behave", + "year": 1925, + "cast": [ + "Julian Eltinge", + "Ann Pennington" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Madame Sans-Gêne", + "year": 1925, + "cast": [ + "Gloria Swanson", + "Madeleine Guitty", + "Warwick Ward" + ], + "genres": [ + "Historical", + "Romance" + ] + }, + { + "title": "The Making of O'Malley", + "year": 1925, + "cast": [ + "Milton Sills", + "Dorothy Mackaill" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Man and Maid", + "year": 1925, + "cast": [ + "Lew Cody", + "Renée Adorée" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Man from Red Gulch", + "year": 1925, + "cast": [ + "Harry Carey", + "Harriet Hammond" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Man in Blue", + "year": 1925, + "cast": [ + "Herbert Rawlinson", + "Madge Bellamy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Man Must Live", + "year": 1925, + "cast": [ + "Richard Dix", + "Jacqueline Logan" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "A Man of Iron", + "year": 1925, + "cast": [ + "Lionel Barrymore", + "Mildred Harris" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Man of Nerve", + "year": 1925, + "cast": [ + "Bob Custer", + "Jean Arthur" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Man on the Box", + "year": 1925, + "cast": [ + "Sydney Chaplin", + "Alice Calhoun" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Man Who Found Himself", + "year": 1925, + "cast": [ + "Thomas Meighan", + "Virginia Valli", + "Frank Morgan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Man Without a Conscience", + "year": 1925, + "cast": [ + "Willard Louis", + "Irene Rich", + "June Marlowe" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Man Without a Country", + "year": 1925, + "cast": [ + "Edward Hearn", + "Pauline Starke" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Manhattan Madness", + "year": 1925, + "cast": [ + "Jack Dempsey", + "Estelle Taylor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Manicure Girl", + "year": 1925, + "cast": [ + "Bebe Daniels", + "Edmund Burns" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Mansion of Aching Hearts", + "year": 1925, + "cast": [ + "Ethel Clayton", + "Barbara Bedford", + "Priscilla Bonner" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Marriage in Transit", + "year": 1925, + "cast": [ + "Edmund Lowe", + "Carole Lombard" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Marriage Whirl", + "year": 1925, + "cast": [ + "Corinne Griffith", + "Kenneth Harlan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Marry Me", + "year": 1925, + "cast": [ + "Florence Vidor", + "Edward Everett Horton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Masked Bride", + "year": 1925, + "cast": [ + "Mae Murray", + "Francis X. Bushman" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Meddler", + "year": 1925, + "cast": [ + "William Desmond", + "Claire Anderson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Men and Women", + "year": 1925, + "cast": [ + "Richard Dix", + "Claire Adams" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Merry Widow", + "year": 1925, + "cast": [ + "Mae Murray", + "John Gilbert", + "Roy D'Arcy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Midnight Flyer", + "year": 1925, + "cast": [ + "Cullen Landis", + "Dorothy Devore" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Midnight Girl", + "year": 1925, + "cast": [ + "Lila Lee", + "Bela Lugosi" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Midnight Molly", + "year": 1925, + "cast": [ + "Evelyn Brent", + "Bruce Gordon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Midshipman", + "year": 1925, + "cast": [ + "Ramon Novarro", + "Harriet Hammond" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Million Dollar Handicap", + "year": 1925, + "cast": [ + "Edmund Burns", + "Ralph Lewis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Miss Bluebeard", + "year": 1925, + "cast": [ + "Bebe Daniels", + "Robert Frazer" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mistaken Orders", + "year": 1925, + "cast": [ + "Helen Holmes", + "Jack Perrin" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Moccasins", + "year": 1925, + "cast": [ + "Bill Cody", + "Peggy O'Day" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Monster", + "year": 1925, + "cast": [ + "Lon Chaney", + "Gertrude Olmstead" + ], + "genres": [ + "Comedy", + "Horror" + ] + }, + { + "title": "Morals for Men", + "year": 1925, + "cast": [ + "Conway Tearle", + "Agnes Ayres", + "Alyce Mills" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "My Lady of Whims", + "year": 1925, + "cast": [ + "Clara Bow", + "Donald Keith" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "My Lady's Lips", + "year": 1925, + "cast": [ + "William Powell", + "Clara Bow" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "My Son", + "year": 1925, + "cast": [ + "Alla Nazimova", + "Jack Pickford" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "My Wife and I", + "year": 1925, + "cast": [ + "Irene Rich", + "Huntley Gordon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Mysterious Stranger", + "year": 1925, + "cast": [ + "Richard Talmadge", + "Josef Swickard", + "Carmelita Geraghty" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Mystic", + "year": 1925, + "cast": [ + "Aileen Pringle", + "Conway Tearle" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Narrow Street", + "year": 1925, + "cast": [ + "Matt Moore", + "Dorothy Devore" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Necessary Evil", + "year": 1925, + "cast": [ + "Ben Lyon", + "Viola Dana" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "New Brooms", + "year": 1925, + "cast": [ + "Neil Hamilton", + "Bessie Love", + "Phyllis Haver" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The New Champion", + "year": 1925, + "cast": [ + "William Fairbanks", + "Edith Roberts" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The New Commandment", + "year": 1925, + "cast": [ + "Blanche Sweet", + "Ben Lyon" + ], + "genres": [ + "War" + ] + }, + { + "title": "New Lives for Old", + "year": 1925, + "cast": [ + "Betty Compson", + "Wallace MacDonald" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "New Toys", + "year": 1925, + "cast": [ + "Richard Barthelmess", + "Clifton Webb" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Never the Twain Shall Meet", + "year": 1925, + "cast": [ + "Anita Stewart", + "Bert Lytell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Night Club", + "year": 1925, + "cast": [ + "Raymond Griffith", + "Vera Reynolds", + "Wallace Beery" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Night Life of New York", + "year": 1925, + "cast": [ + "Rod La Rocque", + "Dorothy Gish" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "No Man's Law", + "year": 1925, + "cast": [ + "Bob Custer", + "Ethan Laidlaw" + ], + "genres": [ + "Western" + ] + }, + { + "title": "North Star", + "year": 1925, + "cast": [ + "Virginia Lee Corbin", + "Stuart Holmes", + "Ken Maynard" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Northern Code", + "year": 1925, + "cast": [ + "Robert Ellis", + "Eva Novak" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Not So Long Ago", + "year": 1925, + "cast": [ + "Betty Bronson", + "Ricardo Cortez" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Off the Highway", + "year": 1925, + "cast": [ + "William V. Mong", + "Marguerite De La Motte" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Oh Doctor!", + "year": 1925, + "cast": [ + "Reginald Denny", + "Mary Astor" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Old Clothes", + "year": 1925, + "cast": [ + "Jackie Coogan", + "Joan Crawford" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Old Home Week", + "year": 1925, + "cast": [ + "Thomas Meighan", + "Lila Lee" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Old Shoes", + "year": 1925, + "cast": [ + "Noah Beery", + "ZaSu Pitts" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "On Thin Ice", + "year": 1925, + "cast": [ + "Tom Moore", + "Edith Roberts" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "One of the Bravest", + "year": 1925, + "cast": [ + "Ralph Lewis", + "Edward Hearn" + ], + "genres": [ + "Action" + ] + }, + { + "title": "One Way Street", + "year": 1925, + "cast": [ + "Ben Lyon", + "Anna Q. Nilsson", + "Marjorie Daw" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "One Year to Live", + "year": 1925, + "cast": [ + "Aileen Pringle", + "Dorothy Mackaill" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Only Thing", + "year": 1925, + "cast": [ + "Eleanor Boardman", + "Conrad Nagel" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Open Switch", + "year": 1925, + "cast": [ + "Helen Holmes", + "Jack Perrin" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Other Woman's Story", + "year": 1925, + "cast": [ + "Alice Calhoun", + "Robert Frazer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Outlaw's Daughter", + "year": 1925, + "cast": [ + "Josie Sedgwick", + "Edward Hearn" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Outwitted", + "year": 1925, + "cast": [ + "Helen Holmes", + "William Desmond" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Overland Limited", + "year": 1925, + "cast": [ + "Malcolm McGregor", + "Olive Borden" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Pace That Thrills", + "year": 1925, + "cast": [ + "Ben Lyon", + "Mary Astor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Paint and Powder", + "year": 1925, + "cast": [ + "Elaine Hammerstein", + "Theodore von Eltz" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Pampered Youth", + "year": 1925, + "cast": [ + "Cullen Landis", + "Ben Alexander" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Parasite", + "year": 1925, + "cast": [ + "Owen Moore", + "Madge Bellamy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Parisian Love", + "year": 1925, + "cast": [ + "Clara Bow", + "Donald Keith" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Parisian Nights", + "year": 1925, + "cast": [ + "Elaine Hammerstein", + "Gaston Glass" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Part Time Wife", + "year": 1925, + "cast": [ + "Alice Calhoun", + "Robert Ellis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Passionate Youth", + "year": 1925, + "cast": [ + "Beverly Bayne", + "Frank Mayo", + "Pauline Garon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Paths to Paradise", + "year": 1925, + "cast": [ + "Raymond Griffith", + "Betty Compson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Peacock Feathers", + "year": 1925, + "cast": [ + "Jacqueline Logan", + "Cullen Landis", + "Ward Crane" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The People vs. Nancy Preston", + "year": 1925, + "cast": [ + "Marguerite De La Motte", + "John Bowers" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Percy", + "year": 1925, + "cast": [ + "Charles Ray", + "Louise Dresser" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Perfect Clown", + "year": 1925, + "cast": [ + "Larry Semon", + "Dorothy Dwan", + "Oliver Hardy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Perils of the Rail", + "year": 1925, + "cast": [ + "Helen Holmes", + "Edward Hearn", + "Wilfrid North" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Phantom Express", + "year": 1925, + "cast": [ + "Ethel Shannon", + "David Butler" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Phantom of the Opera", + "year": 1925, + "cast": [ + "Lon Chaney", + "Mary Philbin", + "Norman Kerry" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Pinch Hitter", + "year": 1925, + "cast": [ + "Glenn Hunter", + "Constance Bennett" + ], + "genres": [ + "Sports", + "Comedy" + ] + }, + { + "title": "The Plastic Age", + "year": 1925, + "cast": [ + "Clara Bow", + "Gilbert Roland" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "Playing with Souls", + "year": 1925, + "cast": [ + "Jacqueline Logan", + "Mary Astor", + "Clive Brook" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Pleasure Buyers", + "year": 1925, + "cast": [ + "Irene Rich", + "Clive Brook", + "Gayne Whitman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Police Patrol", + "year": 1925, + "cast": [ + "James Kirkwood", + "Edna Murphy" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Pony Express", + "year": 1925, + "cast": [ + "Betty Compson", + "Ricardo Cortez", + "Wallace Beery" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Ports of Call", + "year": 1925, + "cast": [ + "Edmund Lowe", + "Hazel Keener" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Prairie Pirate", + "year": 1925, + "cast": [ + "Harry Carey", + "Robert Edeson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Prairie Wife", + "year": 1925, + "cast": [ + "Dorothy Devore", + "Herbert Rawlinson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Pretty Ladies", + "year": 1925, + "cast": [ + "ZaSu Pitts", + "Conrad Nagel" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Price of Pleasure", + "year": 1925, + "cast": [ + "Virginia Valli", + "Norman Kerry", + "Louise Fazenda" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Price of Success", + "year": 1925, + "cast": [ + "Alice Lake", + "Lee Shumway" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Pride of the Force", + "year": 1925, + "cast": [ + "Tom Santschi", + "Gladys Hulette" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Primrose Path", + "year": 1925, + "cast": [ + "Wallace MacDonald", + "Clara Bow" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Prince of Pep", + "year": 1925, + "cast": [ + "Richard Talmadge", + "Nola Luxford" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Private Affairs", + "year": 1925, + "cast": [ + "Gladys Hulette", + "Mildred Harris" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Proud Flesh", + "year": 1925, + "cast": [ + "Eleanor Boardman", + "Pat O'Malley" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Pursued", + "year": 1925, + "cast": [ + "Gaston Glass", + "Marcella Daly" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Raffles, the Amateur Cracksman", + "year": 1925, + "cast": [ + "House Peters", + "Miss DuPont", + "Hedda Hopper" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Rag Man", + "year": 1925, + "cast": [ + "Jackie Coogan", + "Max Davidson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Rainbow Trail", + "year": 1925, + "cast": [ + "Tom Mix", + "Anne Cornwall" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Ranchers and Rascals", + "year": 1925, + "cast": [ + "Leo D. Maloney", + "Josephine Hill" + ], + "genres": [ + "Comedy", + "Western" + ] + }, + { + "title": "Range Buzzards", + "year": 1925, + "cast": [ + "Pete Morrison", + "Hazel Keener" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Range Terror", + "year": 1925, + "cast": [ + "Bob Custer", + "Claire de Lorez" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Ranger of the Big Pines", + "year": 1925, + "cast": [ + "Kenneth Harlan", + "Eugene Pallette", + "Helene Costello" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Re-Creation of Brian Kent", + "year": 1925, + "cast": [ + "Kenneth Harlan", + "Helene Chadwick", + "Mary Carr" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Reckless Sex", + "year": 1925, + "cast": [ + "Madge Bellamy", + "William Collier Jr.", + "Wyndham Standing" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Recompense", + "year": 1925, + "cast": [ + "Marie Prevost", + "Monte Blue" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Red Hot Tires", + "year": 1925, + "cast": [ + "Monte Blue", + "Patsy Ruth Miller" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Red Kimona", + "year": 1925, + "cast": [ + "Priscilla Bonner", + "Carl Miller", + "Tyrone Power Sr" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Red Rider", + "year": 1925, + "cast": [ + "Jack Hoxie", + "Mary McAllister" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Redeeming Sin", + "year": 1925, + "cast": [ + "Nazimova", + "Lou Tellegen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Regular Fellow", + "year": 1925, + "cast": [ + "Raymond Griffith", + "Mary Brian", + "Tyrone Power Sr" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Riders of the Purple Sage", + "year": 1925, + "cast": [ + "Tom Mix", + "Mabel Ballin", + "Warner Oland" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Ridin' Pretty", + "year": 1925, + "cast": [ + "William Desmond", + "Ann Forrest" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Ridin' the Wind", + "year": 1925, + "cast": [ + "Fred Thomson", + "Jacqueline Gadsdon" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Ridin' Thunder", + "year": 1925, + "cast": [ + "Jack Hoxie", + "Katherine Grant" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Riding Comet", + "year": 1925, + "cast": [ + "Yakima Canutt", + "Dorothy Wood" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Road Agent", + "year": 1925, + "cast": [ + "Al Hoxie", + "Lew Meehan" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Road to Yesterday", + "year": 1925, + "cast": [ + "Joseph Schildkraut", + "Jetta Goudal", + "William Boyd" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Roaring Adventure", + "year": 1925, + "cast": [ + "Jack Hoxie", + "Mary McAllister", + "Marin Sais" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Rough Going", + "year": 1925, + "cast": [ + "Franklyn Farnum", + "Vester Pegg" + ], + "genres": [ + "Comedy", + "Western" + ] + }, + { + "title": "Rose of the World", + "year": 1925, + "cast": [ + "Patsy Ruth Miller", + "Allan Forrest", + "Pauline Garon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Rugged Water", + "year": 1925, + "cast": [ + "Lois Wilson", + "Wallace Beery", + "Warner Baxter" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sackcloth and Scarlet", + "year": 1925, + "cast": [ + "Alice Terry", + "Orville Caldwell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sagebrush Lady", + "year": 1925, + "cast": [ + "Eileen Sedgwick", + "Ben Corbett" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Sally", + "year": 1925, + "cast": [ + "Colleen Moore", + "Lloyd Hughes" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Sally, Irene and Mary", + "year": 1925, + "cast": [ + "Constance Bennett", + "Joan Crawford" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Sally of the Sawdust", + "year": 1925, + "cast": [ + "Carol Dempster", + "W. C. Fields" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Salome of the Tenements", + "year": 1925, + "cast": [ + "Jetta Goudal", + "Godfrey Tearle" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Salvation Hunters", + "year": 1925, + "cast": [ + "Georgia Hale", + "George K. Arthur" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Santa Fe Pete", + "year": 1925, + "cast": [ + "Pete Morrison", + "Lew Meehan" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Satan in Sables", + "year": 1925, + "cast": [ + "Lowell Sherman", + "Pauline Garon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Scandal Proof", + "year": 1925, + "cast": [ + "Shirley Mason", + "John Roche" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Scandal Street", + "year": 1925, + "cast": [ + "Niles Welch", + "Madge Kennedy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Scar Hanan", + "year": 1925, + "cast": [ + "Yakima Canutt", + "Dorothy Wood" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Scarlet Honeymoon", + "year": 1925, + "cast": [ + "Shirley Mason", + "Pierre Gendron" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Scarlet Saint", + "year": 1925, + "cast": [ + "Mary Astor", + "Lloyd Hughes", + "Frank Morgan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Scarlet West", + "year": 1925, + "cast": [ + "Robert Frazer", + "Clara Bow" + ], + "genres": [ + "Historical" + ] + }, + { + "title": "School for Wives", + "year": 1925, + "cast": [ + "Conway Tearle", + "Sigrid Holmquist" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sealed Lips", + "year": 1925, + "cast": [ + "Dorothy Revier", + "Cullen Landis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Seven Chances", + "year": 1925, + "cast": [ + "Buster Keaton", + "T. Roy Barnes" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Seven Days", + "year": 1925, + "cast": [ + "Lillian Rich", + "Creighton Hale", + "Lilyan Tashman" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Seven Keys to Baldpate", + "year": 1925, + "cast": [ + "Douglas MacLean", + "Edith Roberts" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Seven Sinners", + "year": 1925, + "cast": [ + "Marie Prevost", + "Clive Brook" + ], + "genres": [ + "Crime", + "Comedy" + ] + }, + { + "title": "The Shadow on the Wall", + "year": 1925, + "cast": [ + "Eileen Percy", + "Creighton Hale" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "She Wolves", + "year": 1925, + "cast": [ + "Alma Rubens", + "Harry Myers" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Shield of Silence", + "year": 1925, + "cast": [ + "Leo D. Maloney", + "Josephine Hill" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Ship of Souls", + "year": 1925, + "cast": [ + "Bert Lytell", + "Lillian Rich", + "Gertrude Astor" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Shock Punch", + "year": 1925, + "cast": [ + "Richard Dix", + "Frances Howard" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Shore Leave", + "year": 1925, + "cast": [ + "Richard Barthelmess", + "Dorothy Mackaill" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Siege", + "year": 1925, + "cast": [ + "Virginia Valli", + "Eugene O'Brien" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Sign of the Cactus", + "year": 1925, + "cast": [ + "Jack Hoxie", + "Helen Holmes" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Silent Sanderson", + "year": 1925, + "cast": [ + "Harry Carey", + "Trilby Clark" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Silent Sheldon", + "year": 1925, + "cast": [ + "Jack Perrin", + "Josephine Hill" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Simon the Jester", + "year": 1925, + "cast": [ + "Eugene O'Brien", + "Lillian Rich" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Sky Raider", + "year": 1925, + "cast": [ + "Jacqueline Logan", + "Gladys Walton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Slave of Fashion", + "year": 1925, + "cast": [ + "Norma Shearer", + "Lew Cody" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Smilin' at Trouble", + "year": 1925, + "cast": [ + "Maurice \"Lefty\" Flynn", + "Helen Lynch" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Smooth as Satin", + "year": 1925, + "cast": [ + "Evelyn Brent", + "Bruce Gordon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Smouldering Fires", + "year": 1925, + "cast": [ + "Laura La Plante", + "Malcolm McGregor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Snob Buster", + "year": 1925, + "cast": [ + "Reed Howes", + "Wilfred Lucas" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Soft Shoes", + "year": 1925, + "cast": [ + "Harry Carey", + "Lillian Rich" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Soiled", + "year": 1925, + "cast": [ + "Kenneth Harlan", + "Vivian Martin", + "Mildred Harris" + ], + "genres": [ + "Sports" + ] + }, + { + "title": "Some Pun'kins", + "year": 1925, + "cast": [ + "Charles Ray", + "George Fawcett" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Son of His Father", + "year": 1925, + "cast": [ + "Bessie Love", + "Warner Baxter" + ], + "genres": [ + "Western" + ] + }, + { + "title": "S.O.S. Perils of the Sea", + "year": 1925, + "cast": [ + "Elaine Hammerstein", + "Robert Ellis" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Soul Mates", + "year": 1925, + "cast": [ + "Aileen Pringle", + "Edmund Lowe" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Soul-Fire", + "year": 1925, + "cast": [ + "Richard Barthelmess", + "Bessie Love" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Souls for Sables", + "year": 1925, + "cast": [ + "Claire Windsor", + "Eugene O'Brien" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Spaniard", + "year": 1925, + "cast": [ + "Ricardo Cortez", + "Jetta Goudal" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Speed", + "year": 1925, + "cast": [ + "Betty Blythe", + "Pauline Garon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Speed Demon", + "year": 1925, + "cast": [ + "Kenneth MacDonald", + "[disambiguation needed]", + "Peggy Montgomery" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Speed Mad", + "year": 1925, + "cast": [ + "William Fairbanks", + "Edith Roberts" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Speed Wild", + "year": 1925, + "cast": [ + "Maurice 'Lefty' Flynn", + "Ethel Shannon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Splendid Crime", + "year": 1925, + "cast": [ + "Bebe Daniels", + "Neil Hamilton" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Splendid Road", + "year": 1925, + "cast": [ + "Lionel Barrymore", + "Marceline Day" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Spook Ranch", + "year": 1925, + "cast": [ + "Hoot Gibson", + "Helen Ferguson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Sporting Chance", + "year": 1925, + "cast": [ + "Lou Tellegen", + "Dorothy Phillips" + ], + "genres": [ + "Sports" + ] + }, + { + "title": "The Sporting Life", + "year": 1925, + "cast": [ + "Bert Lytell", + "Marian Nixon" + ], + "genres": [ + "Sports" + ] + }, + { + "title": "The Sporting Venus", + "year": 1925, + "cast": [ + "Blanche Sweet", + "Ronald Colman" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Stage Struck", + "year": 1925, + "cast": [ + "Gloria Swanson", + "Lawrence Gray" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Stampede Thunder", + "year": 1925, + "cast": [ + "Pete Morrison", + "Betty Goodwin" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Starlight, the Untamed", + "year": 1925, + "cast": [ + "Jack Perrin", + "Josephine Hill" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Steel Preferred", + "year": 1925, + "cast": [ + "Vera Reynolds", + "William Boyd" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Steele of the Royal Mounted", + "year": 1925, + "cast": [ + "Bert Lytell", + "Stuart Holmes" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Stella Dallas", + "year": 1925, + "cast": [ + "Ronald Colman", + "Belle Bennett" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Stella Maris", + "year": 1925, + "cast": [ + "Mary Philbin", + "Elliott Dexter" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Steppin' Out", + "year": 1925, + "cast": [ + "Dorothy Revier", + "Ford Sterling" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Stop Flirting", + "year": 1925, + "cast": [ + "Wanda Hawley", + "John T. Murray" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Storm Breaker", + "year": 1925, + "cast": [ + "House Peters", + "Ruth Clifford" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Straight Through", + "year": 1925, + "cast": [ + "William Desmond", + "Marguerite Clayton" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Street of Forgotten Men", + "year": 1925, + "cast": [ + "Percy Marmont", + "Louise Brooks" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Substitute Wife", + "year": 1925, + "cast": [ + "Jane Novak", + "Niles Welch" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sun-Up", + "year": 1925, + "cast": [ + "Pauline Starke", + "Conrad Nagel", + "Lucille La Verne" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Super Speed", + "year": 1925, + "cast": [ + "Reed Howes", + "Mildred Harris" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Swan", + "year": 1925, + "cast": [ + "Frances Howard", + "Adolphe Menjou" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "The Talker", + "year": 1925, + "cast": [ + "Anna Q. Nilsson", + "Lewis Stone" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Taming of the West", + "year": 1925, + "cast": [ + "Hoot Gibson", + "Marceline Day" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Tearin' Loose", + "year": 1925, + "cast": [ + "Hal Taliaferro", + "Jean Arthur" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Tearing Through", + "year": 1925, + "cast": [ + "Richard Talmadge", + "Kathryn McGuire" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Teaser", + "year": 1925, + "cast": [ + "Laura La Plante", + "Pat O'Malley", + "Hedda Hopper", + ".", + "Walter McGrail" + ], + "genres": [ + "Romance", + "Comedy", + "Drama" + ] + }, + { + "title": "Tessie", + "year": 1925, + "cast": [ + "May McAvoy", + "Lee Moran" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Texas Bearcat", + "year": 1925, + "cast": [ + "Bob Custer", + "Sally Rand" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Texas Trail", + "year": 1925, + "cast": [ + "Harry Carey", + "Ethel Shannon" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Thank You", + "year": 1925, + "cast": [ + "Alec B. Francis", + "Jacqueline Logan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "That Devil Quemado", + "year": 1925, + "cast": [ + "Fred Thomson", + "Nola Luxford" + ], + "genres": [ + "Western" + ] + }, + { + "title": "That Man Jack!", + "year": 1925, + "cast": [ + "Bob Custer", + "Mary Beth Milford" + ], + "genres": [ + "Western" + ] + }, + { + "title": "That Royle Girl", + "year": 1925, + "cast": [ + "Carol Dempster", + "W. C. Fields" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Thoroughbred", + "year": 1925, + "cast": [ + "Theodore von Eltz", + "Gladys Hulette" + ], + "genres": [ + "Sports" + ] + }, + { + "title": "A Thief in Paradise", + "year": 1925, + "cast": [ + "Doris Kenyon", + "Ronald Colman", + "Aileen Pringle" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Three in Exile", + "year": 1925, + "cast": [ + "Louise Lorraine", + "Art Acord" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Three of a Kind", + "year": 1925, + "cast": [ + "Evelyn Brent", + "Fanny Midgley" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Three Weeks in Paris", + "year": 1925, + "cast": [ + "Matt Moore" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Thunder Mountain", + "year": 1925, + "cast": [ + "Madge Bellamy", + "Leslie Fenton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Thundering Herd", + "year": 1925, + "cast": [ + "Jack Holt", + "Lois Wilson", + "Noah Beery Sr." + ], + "genres": [ + "Western" + ] + }, + { + "title": "Tides of Passion", + "year": 1925, + "cast": [ + "Mae Marsh", + "Laska Winter" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Timber Wolf", + "year": 1925, + "cast": [ + "Buck Jones", + "Elinor Fair" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Time, the Comedian", + "year": 1925, + "cast": [ + "Mae Busch", + "Lew Cody" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Tomorrow's Love", + "year": 1925, + "cast": [ + "Agnes Ayres", + "Raymond Hatton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Too Many Kisses", + "year": 1925, + "cast": [ + "Richard Dix", + "Frances Howard" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Top of the World", + "year": 1925, + "cast": [ + "James Kirkwood", + "Anna Q. Nilsson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Tower of Lies", + "year": 1925, + "cast": [ + "Norma Shearer", + "Lon Chaney" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Tracked in the Snow Country", + "year": 1925, + "cast": [ + "June Marlowe", + "David Butler" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Trail Rider", + "year": 1925, + "cast": [ + "Buck Jones", + "Nancy Deaver" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Train Wreckers", + "year": 1925, + "cast": [ + "Helen Holmes", + "Franklyn Farnum" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Triple Action", + "year": 1925, + "cast": [ + "Pete Morrison", + "Trilby Clark" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Trouble with Wives", + "year": 1925, + "cast": [ + "Florence Vidor", + "Esther Ralston" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Tumbleweeds", + "year": 1925, + "cast": [ + "William S. Hart" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Two-Fisted Jones", + "year": 1925, + "cast": [ + "Jack Hoxie", + "Kathryn McGuire" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Unchastened Woman", + "year": 1925, + "cast": [ + "Theda Bara", + "Wyndham Standing" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Under the Rouge", + "year": 1925, + "cast": [ + "Eileen Percy", + "Tom Moore" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Unguarded Hour", + "year": 1925, + "cast": [ + "Milton Sills", + "Doris Kenyon" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Unholy Three", + "year": 1925, + "cast": [ + "Lon Chaney", + "Mae Busch", + "Victor McLaglen" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Unknown Lover", + "year": 1925, + "cast": [ + "Elsie Ferguson", + "Frank Mayo", + "Mildred Harris" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Unnamed Woman", + "year": 1925, + "cast": [ + "Katherine MacDonald", + "Herbert Rawlinson", + "Wanda Hawley" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Unwritten Law", + "year": 1925, + "cast": [ + "Elaine Hammerstein", + "Forrest Stanley" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Up the Ladder", + "year": 1925, + "cast": [ + "Virginia Valli", + "Forrest Stanley" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Vanishing American", + "year": 1925, + "cast": [ + "Richard Dix", + "Lois Wilson", + "Noah Beery" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Wages for Wives", + "year": 1925, + "cast": [ + "Jacqueline Logan", + "Creighton Hale" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Waking Up the Town", + "year": 1925, + "cast": [ + "Jack Pickford", + "Claire McDowell", + "Norma Shearer" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Wall St. Whizz", + "year": 1925, + "cast": [ + "Richard Talmadge", + "Marceline Day" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Wanderer", + "year": 1925, + "cast": [ + "Greta Nissen", + "Wallace Beery", + "Tyrone Power Sr" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Wandering Fires", + "year": 1925, + "cast": [ + "Constance Bennett", + "George Hackathorne" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Wandering Footsteps", + "year": 1925, + "cast": [ + "Alec B. Francis", + "Estelle Taylor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Wasted Lives", + "year": 1925, + "cast": [ + "Cullen Landis", + "Edith Roberts" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Way of a Girl", + "year": 1925, + "cast": [ + "Eleanor Boardman", + "Matt Moore" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "We Moderns", + "year": 1925, + "cast": [ + "Colleen Moore", + "Jack Mulhall" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Webs of Steel", + "year": 1925, + "cast": [ + "Helen Holmes", + "Bruce Gordon" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Wedding Song", + "year": 1925, + "cast": [ + "Leatrice Joy", + "Robert Ames", + "Charles K. Gerrard" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Welcome Home", + "year": 1925, + "cast": [ + "Lois Wilson", + "Warner Baxter" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "West of Arizona", + "year": 1925, + "cast": [ + "Pete Morrison", + "Beth Darlington" + ], + "genres": [ + "Western" + ] + }, + { + "title": "What Fools Men", + "year": 1925, + "cast": [ + "Lewis Stone", + "Shirley Mason" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Wheel", + "year": 1925, + "cast": [ + "Margaret Livingston", + "Harrison Ford" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "When Husbands Flirt", + "year": 1925, + "cast": [ + "Dorothy Revier", + "Forrest Stanley" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "When the Door Opened", + "year": 1925, + "cast": [ + "Jacqueline Logan", + "Walter McGrail" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Where Was I?", + "year": 1925, + "cast": [ + "Reginald Denny", + "Marian Nixon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The White Desert", + "year": 1925, + "cast": [ + "Claire Windsor", + "Robert Frazer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "White Fang", + "year": 1925, + "cast": [ + "Theodore von Eltz", + "Ruth Dwyer" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The White Monkey", + "year": 1925, + "cast": [ + "Barbara La Marr", + "Thomas Holding" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "White Thunder", + "year": 1925, + "cast": [ + "Yakima Canutt", + "Lew Meehan" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The White Outlaw", + "year": 1925, + "cast": [ + "Jack Hoxie", + "Marceline Day" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Who Cares", + "year": 1925, + "cast": [ + "Dorothy Devore", + "William Haines" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Who's Your Friend", + "year": 1925, + "cast": [ + "Francis X. Bushman Jr.", + "Jimmy Aubrey" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Why Women Love", + "year": 1925, + "cast": [ + "Blanche Sweet", + "Robert Frazer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Wife Who Wasn't Wanted", + "year": 1925, + "cast": [ + "Irene Rich", + "Huntley Gordon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Wild Bull's Lair", + "year": 1925, + "cast": [ + "Fred Thomson", + "Herbert Prior" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Wild Horse Canyon", + "year": 1925, + "cast": [ + "Yakima Canutt", + "Helene Rosson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Wild Horse Mesa", + "year": 1925, + "cast": [ + "Jack Holt", + "Noah Beery", + "Billie Dove" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Wild Justice", + "year": 1925, + "cast": [ + "Frank Hagney", + "George Sherwood" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Wild, Wild Susan", + "year": 1925, + "cast": [ + "Bebe Daniels", + "Rod La Rocque" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Wildfire", + "year": 1925, + "cast": [ + "Aileen Pringle", + "Edna Murphy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Winding Stair", + "year": 1925, + "cast": [ + "Alma Rubens", + "Edmund Lowe", + "Warner Oland" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Winds of Chance", + "year": 1925, + "cast": [ + "Anna Q. Nilsson", + "Ben Lyon" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Wings of Youth", + "year": 1925, + "cast": [ + "Ethel Clayton", + "Madge Bellamy", + "Charles Farrell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Winning a Woman", + "year": 1925, + "cast": [ + "Jack Perrin", + "Josephine Hill" + ], + "genres": [ + "Action" + ] + }, + { + "title": "With This Ring", + "year": 1925, + "cast": [ + "Alyce Mills", + "Forrest Stanley" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Without Mercy", + "year": 1925, + "cast": [ + "Dorothy Phillips", + "Vera Reynolds" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Wizard of Oz", + "year": 1925, + "cast": [ + "Bryant Washburn", + "Dorothy Dwan" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Wolf Blood", + "year": 1925, + "cast": [ + "George Chesebro", + "Marguerite Clayton" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Womanhandled", + "year": 1925, + "cast": [ + "Richard Dix", + "Esther Ralston" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Woman Hater", + "year": 1925, + "cast": [ + "Helene Chadwick", + "Clive Brook" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Woman of the World", + "year": 1925, + "cast": [ + "Pola Negri", + "Holmes Herbert" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "A Woman's Faith", + "year": 1925, + "cast": [ + "Alma Rubens", + "Percy Marmont", + "Jean Hersholt" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Women and Gold", + "year": 1925, + "cast": [ + "Frank Mayo", + "Sylvia Breamer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Wrongdoers", + "year": 1925, + "cast": [ + "Lionel Barrymore", + "Anne Cornwall" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Wyoming Wildcat", + "year": 1925, + "cast": [ + "Tom Tyler", + "Ethan Laidlaw" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Youth and Adventure", + "year": 1925, + "cast": [ + "Richard Talmadge", + "Margaret Landis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Youth's Gamble", + "year": 1925, + "cast": [ + "Reed Howes", + "Margaret Morris" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Zander the Great", + "year": 1925, + "cast": [ + "Marion Davies", + "Emily Fitzroy", + "Hedda Hopper" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "3 Bad Men", + "year": 1926, + "cast": [ + "George O'Brien", + "Olive Borden" + ], + "genres": [ + "Western" + ] + }, + { + "title": "30 Below Zero", + "year": 1926, + "cast": [ + "Buck Jones", + "Eva Novak", + "Paul Panzer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Ace of Action", + "year": 1926, + "cast": [ + "Hal Taliaferro", + "Alma Rayford" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Across the Pacific", + "year": 1926, + "cast": [ + "Monte Blue", + "Jane Winton", + "Myrna Loy" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Adorable Deceiver", + "year": 1926, + "cast": [ + "Alberta Vaughn", + "Frank Leigh" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Almost a Lady", + "year": 1926, + "cast": [ + "Marie Prevost", + "Harrison Ford", + "George K. Arthur" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Aloma of the South Seas", + "year": 1926, + "cast": [ + "Gilda Gray", + "Warner Baxter", + "Percy Marmont" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "April Fool", + "year": 1926, + "cast": [ + "Duane Thompson", + "Mary Alden" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Arizona Streak", + "year": 1926, + "cast": [ + "Tom Tyler", + "Frankie Darro" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Arizona Sweepstakes", + "year": 1926, + "cast": [ + "Hoot Gibson", + "Helen Lynch", + "Philo McCullough" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Atta Boy", + "year": 1926, + "cast": [ + "Monty Banks", + "Virginia Bradford" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Auction Block", + "year": 1926, + "cast": [ + "Charles Ray", + "Eleanor Boardman", + "Sally O'Neil" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Bachelor Brides", + "year": 1926, + "cast": [ + "Rod La Rocque", + "Eulalie Jensen" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Bad Man's Bluff", + "year": 1926, + "cast": [ + "Jay Wilsey", + "Molly Malone" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Baited Trap", + "year": 1926, + "cast": [ + "Ben F. Wilson", + "Neva Gerber" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Bandit Buster", + "year": 1926, + "cast": [ + "Buddy Roosevelt", + "Molly Malone" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Bardelys the Magnificent", + "year": 1926, + "cast": [ + "John Gilbert", + "Eleanor Boardman" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "The Barrier", + "year": 1926, + "cast": [ + "Lionel Barrymore", + "Marceline Day" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Bat", + "year": 1926, + "cast": [ + "Tullio Carminati", + "Jewel Carmen", + "Louise Fazenda" + ], + "genres": [ + "Mystery", + "Thriller" + ] + }, + { + "title": "Battling Butler", + "year": 1926, + "cast": [ + "Buster Keaton", + "Sally O'Neil" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Beau Geste", + "year": 1926, + "cast": [ + "Ronald Colman", + "Neil Hamilton" + ], + "genres": [] + }, + { + "title": "The Beautiful Cheat", + "year": 1926, + "cast": [ + "Laura La Plante", + "Alexander Carr" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Behind the Front", + "year": 1926, + "cast": [ + "Wallace Beery", + "Raymond Hatton", + "Mary Brian" + ], + "genres": [ + "War", + "Comedy" + ] + }, + { + "title": "The Belle of Broadway", + "year": 1926, + "cast": [ + "Betty Compson", + "Herbert Rawlinson" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Bells", + "year": 1926, + "cast": [ + "Lionel Barrymore", + "Caroline Frances Cooke" + ], + "genres": [ + "Crime", + "Thriller" + ] + }, + { + "title": "Bertha, the Sewing Machine Girl", + "year": 1926, + "cast": [ + "Madge Bellamy", + "Anita Garvin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Better Man", + "year": 1926, + "cast": [ + "Richard Talmadge", + "Ena Gregory" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Better 'Ole", + "year": 1926, + "cast": [ + "Sydney Chaplin", + "Doris Hill" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Better Way", + "year": 1926, + "cast": [ + "Dorothy Revier", + "Ralph Ince" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Beverly of Graustark", + "year": 1926, + "cast": [ + "Marion Davies", + "Antonio Moreno" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Beyond All Odds", + "year": 1926, + "cast": [ + "Eileen Sedgwick", + "Lew Meehan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Beyond the Rockies", + "year": 1926, + "cast": [ + "Bob Custer", + "Eugenia Gilbert", + "David Dunbar" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Beyond the Trail", + "year": 1926, + "cast": [ + "Bill Patton", + "Stuart Holmes", + "Clara Horton" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Bigger Than Barnum's", + "year": 1926, + "cast": [ + "Ralph Lewis", + "Viola Dana" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Black Paradise", + "year": 1926, + "cast": [ + "Madge Bellamy", + "Leslie Fenton", + "Edmund Lowe" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Black Pirate", + "year": 1926, + "cast": [ + "Douglas Fairbanks", + "Billie Dove" + ], + "genres": [] + }, + { + "title": "The Blackbird", + "year": 1926, + "cast": [ + "Lon Chaney", + "Owen Moore" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Blarney", + "year": 1926, + "cast": [ + "Renée Adorée", + "Ralph Graves", + "Paulette Duval" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Blind Goddess", + "year": 1926, + "cast": [ + "Jack Holt", + "Esther Ralston" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Blonde Saint", + "year": 1926, + "cast": [ + "Lewis Stone", + "Doris Kenyon", + "Gilbert Roland" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Bluebeard's Seven Wives", + "year": 1926, + "cast": [ + "Ben Lyon", + "Lois Wilson", + "Blanche Sweet" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Blue Blazes", + "year": 1926, + "cast": [ + "Pete Morrison", + "Jim Welch" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Blue Eagle", + "year": 1926, + "cast": [ + "George O'Brien", + "Janet Gaynor" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Blue Streak", + "year": 1926, + "cast": [ + "Richard Talmadge", + "Louise Lorraine" + ], + "genres": [ + "Western" + ] + }, + { + "title": "La Bohème", + "year": 1926, + "cast": [ + "Lillian Gish", + "John Gilbert", + "Renée Adorée" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Bonanza Buckaroo", + "year": 1926, + "cast": [ + "Jay Wilsey", + "Lafe McKee" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Boob", + "year": 1926, + "cast": [ + "Gertrude Olmstead", + "George K. Arthur", + "Joan Crawford" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Border Sheriff", + "year": 1926, + "cast": [ + "Jack Hoxie", + "Olive Hasbrouck" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Border Whirlwind", + "year": 1926, + "cast": [ + "Bob Custer", + "Josef Swickard" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Born to Battle", + "year": 1926, + "cast": [ + "Tom Tyler", + "Jean Arthur" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Born to the West", + "year": 1926, + "cast": [ + "Jack Holt", + "Margaret Morris", + "Raymond Hatton" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Boy Friend", + "year": 1926, + "cast": [ + "Marceline Day", + "John Harron" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Bred in Old Kentucky", + "year": 1926, + "cast": [ + "Viola Dana", + "Jed Prouty" + ], + "genres": [ + "Sports" + ] + }, + { + "title": "Breed of the Sea", + "year": 1926, + "cast": [ + "Margaret Livingston", + "Dorothy Dunbar" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Bride of the Storm", + "year": 1926, + "cast": [ + "Dolores Costello", + "Tyrone Power Sr" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Broadway Billy", + "year": 1926, + "cast": [ + "Billy Sullivan", + "Virginia Brown Faire" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Broadway Boob", + "year": 1926, + "cast": [ + "Glenn Hunter", + "Antrim Short" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Broadway Gallant", + "year": 1926, + "cast": [ + "Richard Talmadge", + "Clara Horton" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Broken Hearts of Hollywood", + "year": 1926, + "cast": [ + "Patsy Ruth Miller", + "Louise Dresser", + "Douglas Fairbanks Jr." + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Brooding Eyes", + "year": 1926, + "cast": [ + "Lionel Barrymore", + "Ruth Clifford", + "Montagu Love" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Brown Derby", + "year": 1926, + "cast": [ + "Johnny Hines", + "Ruth Dwyer" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Brown of Harvard", + "year": 1926, + "cast": [ + "William Haines", + "Jack Pickford", + "Mary Brian" + ], + "genres": [ + "Sports" + ] + }, + { + "title": "The Buckaroo Kid", + "year": 1926, + "cast": [ + "Hoot Gibson", + "Ethel Shannon" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Bucking the Truth", + "year": 1926, + "cast": [ + "Pete Morrison", + "Bruce Gordon" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Call of the Klondike", + "year": 1926, + "cast": [ + "Gaston Glass", + "Dorothy Dwan" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Call of the Wilderness", + "year": 1926, + "cast": [ + "Edna Marion", + "Lewis Sargent" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Camille", + "year": 1926, + "cast": [ + "Norma Talmadge", + "Gilbert Roland", + "Lilyan Tashman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Campus Flirt", + "year": 1926, + "cast": [ + "Bebe Daniels", + "James Hall" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Canyon of Light", + "year": 1926, + "cast": [ + "Tom Mix", + "Dorothy Dwan", + "Barry Norton" + ], + "genres": [ + "Western" + ] + }, + { + "title": "A Captain's Courage", + "year": 1926, + "cast": [ + "Ashton Dearholt", + "Dorothy Dwan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Carnival Girl", + "year": 1926, + "cast": [ + "Marion Mack", + "Gladys Brockwell", + "Frankie Darro" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Cat's Pajamas", + "year": 1926, + "cast": [ + "Betty Bronson", + "Ricardo Cortez" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Caveman", + "year": 1926, + "cast": [ + "Matt Moore", + "Marie Prevost", + "Myrna Loy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Chasing Trouble", + "year": 1926, + "cast": [ + "Pete Morrison", + "Tom London" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Checkered Flag", + "year": 1926, + "cast": [ + "Elaine Hammerstein", + "Wallace MacDonald" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Cheerful Fraud", + "year": 1926, + "cast": [ + "Reginald Denny", + "Gertrude Olmstead" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Chip of the Flying U", + "year": 1926, + "cast": [ + "Hoot Gibson", + "Virginia Brown Faire" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Christine of the Big Tops", + "year": 1926, + "cast": [ + "Pauline Garon", + "Cullen Landis" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The City", + "year": 1926, + "cast": [ + "May Allison", + "Robert Frazer", + "Walter McGrail" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Clinging Vine", + "year": 1926, + "cast": [ + "Leatrice Joy", + "Tom Moore" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Code of the Northwest", + "year": 1926, + "cast": [ + "Tom London", + "Shirley Palmer" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The College Boob", + "year": 1926, + "cast": [ + "Maurice Bennett Flynn", + "Jean Arthur" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "College Days", + "year": 1926, + "cast": [ + "Marceline Day", + "Charles Delaney" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Collegiate", + "year": 1926, + "cast": [ + "Alberta Vaughn", + "Donald Keith" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Combat", + "year": 1926, + "cast": [ + "House Peters", + "Wanda Hawley", + "Walter McGrail" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Count of Luxembourg", + "year": 1926, + "cast": [ + "George Walsh", + "Joan Meredith" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Country Beyond", + "year": 1926, + "cast": [ + "Olive Borden", + "Ralph Graves", + "Gertrude Astor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Cowboy and the Countess", + "year": 1926, + "cast": [ + "Buck Jones", + "Helena D'Algy" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Cowboy Cop", + "year": 1926, + "cast": [ + "Tom Tyler", + "Jean Arthur" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Crossed Signals", + "year": 1926, + "cast": [ + "Helen Holmes", + "Henry Victor" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Crown of Lies", + "year": 1926, + "cast": [ + "Pola Negri", + "Noah Beery" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Cruise of the Jasper B", + "year": 1926, + "cast": [ + "Rod La Rocque", + "Mildred Harris", + "Snitz Edwards" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Dance Madness", + "year": 1926, + "cast": [ + "Conrad Nagel", + "Claire Windsor", + "Hedda Hopper" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Dancer of Paris", + "year": 1926, + "cast": [ + "Conway Tearle", + "Dorothy Mackaill" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dancing Mothers", + "year": 1926, + "cast": [ + "Alice Joyce", + "Conway Tearle", + "Clara Bow" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Danger Girl", + "year": 1926, + "cast": [ + "Priscilla Dean", + "John Bowers", + "Gustav von Seyffertitz" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Danger Quest", + "year": 1926, + "cast": [ + "Reed Howes", + "Ethel Shannon" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Dangerous Dub", + "year": 1926, + "cast": [ + "Buddy Roosevelt", + "Peggy Montgomery" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Dangerous Dude", + "year": 1926, + "cast": [ + "Reed Howes", + "Dorothy Dwan" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Dangerous Traffic", + "year": 1926, + "cast": [ + "Ralph Bushman", + "Mildred Harris", + "Tom London" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Dead Line", + "year": 1926, + "cast": [ + "Bob Custer", + "Robert McKim" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Demon", + "year": 1926, + "cast": [ + "Jack Hoxie", + "Lola Todd" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Desert Gold", + "year": 1926, + "cast": [ + "Neil Hamilton", + "Shirley Mason" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Desert's Toll", + "year": 1926, + "cast": [ + "Francis McDonald", + "Kathleen Key", + "Anna May Wong" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Desert Valley", + "year": 1926, + "cast": [ + "Buck Jones", + "Virginia Brown Faire", + "Malcolm Waite" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Desperate Game", + "year": 1926, + "cast": [ + "Pete Morrison", + "Lew Meehan" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Devil's Circus", + "year": 1926, + "cast": [ + "Norma Shearer", + "Charles Emmett Mack", + "Carmel Myers" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Devil Horse", + "year": 1926, + "cast": [ + "Yakima Canutt", + "Gladys McConnell" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Devil's Gulch", + "year": 1926, + "cast": [ + "Bob Custer", + "Hazel Deane" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Devil's Island", + "year": 1926, + "cast": [ + "Pauline Frederick", + "Marian Nixon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Dice Woman", + "year": 1926, + "cast": [ + "Priscilla Dean", + "John Bowers", + "Gustav von Seyffertitz" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Diplomacy", + "year": 1926, + "cast": [ + "Blanche Sweet", + "Neil Hamilton", + "Arlette Marchal" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Dixie Flyer", + "year": 1926, + "cast": [ + "Cullen Landis", + "Eva Novak" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Dixie Merchant", + "year": 1926, + "cast": [ + "Jack Mulhall", + "Madge Bellamy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Don Juan", + "year": 1926, + "cast": [ + "John Barrymore", + "Mary Astor", + "Warner Oland", + "Estelle Taylor" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Double Daring", + "year": 1926, + "cast": [ + "Hal Taliaferro", + "Jean Arthur" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Doubling with Danger", + "year": 1926, + "cast": [ + "Richard Talmadge", + "Ena Gregory", + "Joseph W. Girard" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Driftin' Thru", + "year": 1926, + "cast": [ + "Harry Carey", + "Stanton Heck" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Duchess of Buffalo", + "year": 1926, + "cast": [ + "Constance Talmadge", + "Tullio Carminati" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "The Dude Cowboy", + "year": 1926, + "cast": [ + "Bob Custer", + "Howard Truesdale" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Deuce High", + "year": 1926, + "cast": [ + "Jay Wilsey", + "Alma Rayford" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Early to Wed", + "year": 1926, + "cast": [ + "Matt Moore", + "Katherine Perry", + "Albert Gran" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Earth Woman", + "year": 1926, + "cast": [ + "Mary Alden", + "Priscilla Bonner" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "East Side, West Side", + "year": 1926, + "cast": [ + "George O'Brien", + "Virginia Valli" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Ella Cinders", + "year": 1926, + "cast": [ + "Colleen Moore", + "Lloyd Hughes" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Enchanted Hill", + "year": 1926, + "cast": [ + "Jack Holt", + "Florence Vidor", + "Mary Brian" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Escape", + "year": 1926, + "cast": [ + "Pete Morrison", + "Bruce Gordon" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Everybody's Acting", + "year": 1926, + "cast": [ + "Betty Bronson", + "Ford Sterling", + "Louise Dresser" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Eve's Leaves", + "year": 1926, + "cast": [ + "Leatrice Joy", + "William Boyd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Exclusive Rights", + "year": 1926, + "cast": [ + "Gayne Whitman", + "Lillian Rich", + "Gaston Glass" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Exquisite Sinner", + "year": 1926, + "cast": [ + "Conrad Nagel", + "Renee Adoree" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The False Alarm", + "year": 1926, + "cast": [ + "Ralph Lewis", + "Dorothy Revier" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Family Upstairs", + "year": 1926, + "cast": [ + "Virginia Valli", + "J. Farrell MacDonald" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Fascinating Youth", + "year": 1926, + "cast": [ + "Charles \"Buddy\" Rogers", + "Thelma Todd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Fifth Avenue", + "year": 1926, + "cast": [ + "Marguerite De La Motte", + "Allan Forrest", + "Louise Dresser" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Fig Leaves", + "year": 1926, + "cast": [ + "George O'Brien", + "Olive Borden" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Fighting Boob", + "year": 1926, + "cast": [ + "Bob Custer", + "Joan Meredith" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Fighting Buckaroo", + "year": 1926, + "cast": [ + "Buck Jones", + "Sally Long" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Fighting Cheat", + "year": 1926, + "cast": [ + "Hal Taliaferro", + "Jean Arthur" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Fighting Edge", + "year": 1926, + "cast": [ + "Kenneth Harlan", + "Patsy Ruth Miller" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Fighting Peacemaker", + "year": 1926, + "cast": [ + "Jack Hoxie", + "Lola Todd" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Fine Manners", + "year": 1926, + "cast": [ + "Gloria Swanson", + "Eugene O'Brien" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The First Year", + "year": 1926, + "cast": [ + "Matt Moore", + "Katherine Perry" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Flame of the Argentine", + "year": 1926, + "cast": [ + "Evelyn Brent", + "Orville Caldwell" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Flame of the Yukon", + "year": 1926, + "cast": [ + "Seena Owen", + "Matthew Betz" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Flaming Forest", + "year": 1926, + "cast": [ + "Antonio Moreno", + "Renée Adorée" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Flaming Fury", + "year": 1926, + "cast": [ + "Charles Delaney", + "Boris Karloff" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Flashing Fangs", + "year": 1926, + "cast": [ + "Lotus Thompson", + "Eddy Chandler" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Flesh and the Devil", + "year": 1926, + "cast": [ + "John Gilbert", + "Greta Garbo" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Flying Horseman", + "year": 1926, + "cast": [ + "Buck Jones", + "Gladys McConnell" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Flying Mail", + "year": 1926, + "cast": [ + "Joseph W. Girard", + "Kathleen Myers" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Fool's Luck", + "year": 1926, + "cast": [ + "Lupino Lane", + "George Davis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Fools of Fashion", + "year": 1926, + "cast": [ + "Mae Busch", + "Marceline Day" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Footloose Widows", + "year": 1926, + "cast": [ + "Louise Fazenda", + "Jacqueline Logan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "For Alimony Only", + "year": 1926, + "cast": [ + "Leatrice Joy", + "Clive Brook", + "Lilyan Tashman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "For Heaven's Sake", + "year": 1926, + "cast": [ + "Harold Lloyd", + "Jobyna Ralston" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "For Wives Only", + "year": 1926, + "cast": [ + "Marie Prevost", + "Victor Varconi", + "Charles K. Gerrard" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Forbidden Waters", + "year": 1926, + "cast": [ + "Priscilla Dean", + "Walter McGrail" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Forever After", + "year": 1926, + "cast": [ + "Lloyd Hughes", + "Mary Astor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Forlorn River", + "year": 1926, + "cast": [ + "Jack Holt", + "Raymond Hatton", + "Arlette Marchal" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "French Dressing", + "year": 1926, + "cast": [ + "H. B. Warner", + "Clive Brook", + "Lois Wilson" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "The Frontier Trail", + "year": 1926, + "cast": [ + "Harry Carey", + "Mabel Julienne Scott" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Gallant Fool", + "year": 1926, + "cast": [ + "Billy Sullivan", + "Hazel Deane", + "Ruth Royce" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Gay Deceiver", + "year": 1926, + "cast": [ + "Lew Cody", + "Marceline Day" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The General", + "year": 1926, + "cast": [ + "Buster Keaton", + "Marion Mack" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Gentle Cyclone", + "year": 1926, + "cast": [ + "Buck Jones", + "Will Walling" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Gilded Butterfly", + "year": 1926, + "cast": [ + "Alma Rubens", + "Bert Lytell", + "Huntley Gordon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Gilded Highway", + "year": 1926, + "cast": [ + "Dorothy Devore", + "John Harron", + "Myrna Loy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Girl from Montmartre", + "year": 1926, + "cast": [ + "Barbara LaMarr", + "Lewis Stone" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Glenister of the Mounted", + "year": 1926, + "cast": [ + "Maurice 'Lefty' Flynn", + "Bess Flowers" + ], + "genres": [ + "Western" + ] + }, + { + "title": "God Gave Me Twenty Cents", + "year": 1926, + "cast": [ + "Lois Moran", + "Lya De Putti", + "Jack Mulhall" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Going Crooked", + "year": 1926, + "cast": [ + "Bessie Love", + "Gustav von Seyffertitz" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Going the Limit", + "year": 1926, + "cast": [ + "George O'Hara", + "Sally Long" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Good and Naughty", + "year": 1926, + "cast": [ + "Pola Negri", + "Tom Moore", + "Stuart Holmes" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Grand Duchess and the Waiter", + "year": 1926, + "cast": [ + "Florence Vidor", + "Adolphe Menjou" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Great Deception", + "year": 1926, + "cast": [ + "Ben Lyon", + "Aileen Pringle", + "Basil Rathbone" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Great Gatsby", + "year": 1926, + "cast": [ + "Warner Baxter", + "Neil Hamilton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Great K & A Train Robbery", + "year": 1926, + "cast": [ + "Tom Mix", + "Dorothy Dwan" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Grey Devil", + "year": 1926, + "cast": [ + "Jack Perrin", + "Tom London" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Hair-Trigger Baxter", + "year": 1926, + "cast": [ + "Bob Custer", + "Eugenia Gilbert" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Hands Across the Border", + "year": 1926, + "cast": [ + "Fred Thomson", + "Bess Flowers" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Hands Up!", + "year": 1926, + "cast": [ + "Raymond Griffith", + "Virginia Lee Corbin", + "Marian Nixon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hard Boiled", + "year": 1926, + "cast": [ + "Tom Mix", + "Helene Chadwick" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Hearts and Fists", + "year": 1926, + "cast": [ + "John Bowers", + "Marguerite De La Motte", + "Alan Hale" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hearts and Spangles", + "year": 1926, + "cast": [ + "Wanda Hawley", + "Robert Gordon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hell-Bent for Heaven", + "year": 1926, + "cast": [ + "Patsy Ruth Miller", + "John Harron" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hell's Four Hundred", + "year": 1926, + "cast": [ + "Harrison Ford", + "Marceline Day" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Her Honor, the Governor", + "year": 1926, + "cast": [ + "Pauline Frederick", + "Carroll Nye", + "Tom Santschi" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Her Man o' War", + "year": 1926, + "cast": [ + "Jetta Goudal", + "William Boyd" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Her Second Chance", + "year": 1926, + "cast": [ + "Anna Q. Nilsson", + "Huntley Gordon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Hero of the Big Snows", + "year": 1926, + "cast": [ + "Rin Tin Tin", + "Alice Calhoun" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Hidden Way", + "year": 1926, + "cast": [ + "Mary Carr", + "Gloria Grey", + "Tom Santschi" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The High Flyer", + "year": 1926, + "cast": [ + "Reed Howes", + "Ethel Shannon" + ], + "genres": [ + "Action" + ] + }, + { + "title": "High Steppers", + "year": 1926, + "cast": [ + "Mary Astor", + "Lloyd Hughes", + "Dolores del Río" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Highbinders", + "year": 1926, + "cast": [ + "Marjorie Daw", + "George Hackathorne" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "His Jazz Bride", + "year": 1926, + "cast": [ + "Marie Prevost", + "Matt Moore" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "His New York Wife", + "year": 1926, + "cast": [ + "Alice Day", + "Theodore von Eltz", + "Ethel Clayton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "His Private Life", + "year": 1926, + "cast": [ + "Lupino Lane", + "George Davis", + "Glen Cavender", + "Wallace Lupino" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hold That Lion", + "year": 1926, + "cast": [ + "Douglas MacLean", + "Walter Hiers", + "Constance Howard" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Home Cured", + "year": 1926, + "cast": [ + "Johnny Arthur", + "Virginia Vance", + "George Davis", + "Glen Cavender" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Honesty - The Best Policy", + "year": 1926, + "cast": [ + "Rockliffe Fellowes", + "Pauline Starke", + "Johnnie Walker" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Honeymoon Express", + "year": 1926, + "cast": [ + "Willard Louis", + "Irene Rich", + "Helene Costello" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Ice Flood", + "year": 1926, + "cast": [ + "Kenneth Harlan", + "Viola Dana" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Impostor", + "year": 1926, + "cast": [ + "Evelyn Brent", + "Carroll Nye" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Into Her Kingdom", + "year": 1926, + "cast": [ + "Corinne Griffith", + "Einar Hanson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Irene", + "year": 1926, + "cast": [ + "Colleen Moore" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Is That Nice?", + "year": 1926, + "cast": [ + "George O'Hara", + "Doris Hill" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Isle of Retribution", + "year": 1926, + "cast": [ + "Lillian Rich", + "Victor McLaglen" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "It Must Be Love", + "year": 1926, + "cast": [ + "Colleen Moore", + "Jean Hersholt" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "It's the Old Army Game", + "year": 1926, + "cast": [ + "W. C. Fields", + "Louise Brooks" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Jade Cup", + "year": 1926, + "cast": [ + "Evelyn Brent", + "Jack Luden" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Jazz Girl", + "year": 1926, + "cast": [ + "Gaston Glass", + "Edith Roberts" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Jim, the Conqueror", + "year": 1926, + "cast": [ + "William Boyd", + "Elinor Fair" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Johnstown Flood", + "year": 1926, + "cast": [ + "George O'Brien", + "Janet Gaynor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Josselyn's Wife", + "year": 1926, + "cast": [ + "Pauline Frederick", + "Holmes Herbert" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Joy Girl", + "year": 1926, + "cast": [ + "Olive Borden", + "Neil Hamilton", + "Marie Dressler" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Just Another Blonde", + "year": 1926, + "cast": [ + "Dorothy Mackaill", + "Jack Mulhall", + "Louise Brooks" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Just Suppose", + "year": 1926, + "cast": [ + "Richard Barthelmess", + "Lois Moran", + "Henry Vibart" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Kentucky Handicap", + "year": 1926, + "cast": [ + "Reed Howes", + "Alice Calhoun" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Kick-Off", + "year": 1926, + "cast": [ + "George Walsh", + "Leila Hyams" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Kid Boots", + "year": 1926, + "cast": [ + "Eddie Cantor", + "Clara Bow", + "Billie Dove" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Kiki", + "year": 1926, + "cast": [ + "Norma Talmadge", + "Ronald Colman" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "King of the Saddle", + "year": 1926, + "cast": [ + "Bill Cody", + "Billy Franey" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The King of the Turf", + "year": 1926, + "cast": [ + "George Irving", + "Patsy Ruth Miller", + "Kenneth Harlan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Kiss for Cinderella", + "year": 1926, + "cast": [ + "Betty Bronson", + "Esther Ralston", + "Dorothy Cumming" + ], + "genres": [ + "Fantasy", + "Romance" + ] + }, + { + "title": "Kosher Kitty Kelly", + "year": 1926, + "cast": [ + "Viola Dana", + "Tom Forman" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Laddie", + "year": 1926, + "cast": [ + "John Bowers", + "Bess Flowers", + "Theodore von Eltz" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Ladies at Play", + "year": 1926, + "cast": [ + "Doris Kenyon", + "Lloyd Hughes" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Lady from Hell", + "year": 1926, + "cast": [ + "Roy Stewart", + "Blanche Sweet", + "Ralph Lewis" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Ladies of Leisure", + "year": 1926, + "cast": [ + "Elaine Hammerstein", + "Robert Ellis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Lady of the Harem", + "year": 1926, + "cast": [ + "Ernest Torrence", + "Greta Nissen", + "Louise Fazenda" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Last Alarm", + "year": 1926, + "cast": [ + "Rex Lease", + "Wanda Hawley" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Last Chance", + "year": 1926, + "cast": [ + "Bill Patton", + "Merrill McCormick" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Lazy Lightning", + "year": 1926, + "cast": [ + "Art Acord", + "Fay Wray" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Let's Get Married", + "year": 1926, + "cast": [ + "Richard Dix", + "Lois Wilson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Lew Tyler's Wives", + "year": 1926, + "cast": [ + "Frank Mayo", + "Ruth Clifford", + "Hedda Hopper" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Lily", + "year": 1926, + "cast": [ + "Belle Bennett", + "Ian Keith" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Little Firebrand", + "year": 1926, + "cast": [ + "George Fawcett", + "Lou Tellegen" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Little Giant", + "year": 1926, + "cast": [ + "Glenn Hunter", + "Edna Murphy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Little Irish Girl", + "year": 1926, + "cast": [ + "Dolores Costello", + "John Harron" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Lodge in the Wilderness", + "year": 1926, + "cast": [ + "Anita Stewart", + "Edmund Burns" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Lone Hand Saunders", + "year": 1926, + "cast": [ + "Fred Thomson", + "Bess Flowers" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Lone Wolf Returns", + "year": 1926, + "cast": [ + "Bert Lytell", + "Billie Dove", + "Gustav von Seyffertitz" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Looking for Trouble", + "year": 1926, + "cast": [ + "Jack Hoxie", + "Marceline Day" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Lost at Sea", + "year": 1926, + "cast": [ + "Huntley Gordon", + "Lowell Sherman", + "Jane Novak" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Love Thief", + "year": 1926, + "cast": [ + "Norman Kerry", + "Greta Nissen", + "Nigel Barrie" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Love Toy", + "year": 1926, + "cast": [ + "Lowell Sherman", + "Jane Winton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Love's Blindness", + "year": 1926, + "cast": [ + "Pauline Starke", + "Antonio Moreno", + "Lilyan Tashman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Lovey Mary", + "year": 1926, + "cast": [ + "Bessie Love", + "William Haines", + "Mary Alden" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Lucky Lady", + "year": 1926, + "cast": [ + "Greta Nissen", + "Lionel Barrymore" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Madame Mystery", + "year": 1926, + "cast": [ + "Theda Bara", + "Oliver Hardy", + "James Finlayson" + ], + "genres": [] + }, + { + "title": "Mademoiselle Modiste", + "year": 1926, + "cast": [ + "Corinne Griffith", + "Norman Kerry" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Made for Love", + "year": 1926, + "cast": [ + "Leatrice Joy", + "Edmund Burns" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Magician", + "year": 1926, + "cast": [ + "Alice Terry", + "Paul Wegener" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "A Man Four-Square", + "year": 1926, + "cast": [ + "Buck Jones", + "Harry Woods" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Man from Oklahoma", + "year": 1926, + "cast": [ + "Jack Perrin", + "Josephine Hill" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Man from the West", + "year": 1926, + "cast": [ + "Art Acord", + "Eugenia Gilbert" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Man in the Saddle", + "year": 1926, + "cast": [ + "Hoot Gibson", + "Fay Wray" + ], + "genres": [ + "Western" + ] + }, + { + "title": "A Man of Quality", + "year": 1926, + "cast": [ + "George Walsh", + "Ruth Dwyer", + "Brian Donlevy" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Man of the Forest", + "year": 1926, + "cast": [ + "Jack Holt", + "Georgia Hale" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Man Upstairs", + "year": 1926, + "cast": [ + "Monte Blue", + "Dorothy Devore" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mantrap", + "year": 1926, + "cast": [ + "Clara Bow", + "Percy Marmont", + "Ernest Torrence" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "The Man Upstairs", + "year": 1926, + "cast": [ + "Monte Blue", + "Dorothy Devore", + "Helen Dunbar" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mare Nostrum", + "year": 1926, + "cast": [ + "Antonio Moreno", + "Alice Terry" + ], + "genres": [ + "Spy" + ] + }, + { + "title": "The Masquerade Bandit", + "year": 1926, + "cast": [ + "Tom Tyler", + "Dorothy Dunbar", + "Ethan Laidlaw" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Meet the Prince", + "year": 1926, + "cast": [ + "Joseph Schildkraut", + "Marguerite De La Motte" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Men of Steel", + "year": 1926, + "cast": [ + "Milton Sills", + "Doris Kenyon", + "May Allison" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Merry Cavalier", + "year": 1926, + "cast": [ + "Richard Talmadge", + "Charlotte Stevens" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Midnight Kiss", + "year": 1926, + "cast": [ + "Janet Gaynor", + "Doris Lloyd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Midnight Limited", + "year": 1926, + "cast": [ + "Gaston Glass", + "Wanda Hawley", + "Ashton Dearholt" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Midnight Lovers", + "year": 1926, + "cast": [ + "Lewis Stone", + "Anna Q. Nilsson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Midnight Message", + "year": 1926, + "cast": [ + "Wanda Hawley", + "Mary Carr" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Midnight Sun", + "year": 1926, + "cast": [ + "Laura La Plante", + "Pat O'Malley", + "Michael Vavitch" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Mike", + "year": 1926, + "cast": [ + "Sally O'Neil", + "William Haines" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Millionaires", + "year": 1926, + "cast": [ + "Louise Fazenda", + "Vera Gordon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Miracle of Life", + "year": 1926, + "cast": [ + "Percy Marmont", + "Mae Busch", + "Nita Naldi" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Mismates", + "year": 1926, + "cast": [ + "Doris Kenyon", + "Warner Baxter" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Miss Brewster's Millions", + "year": 1926, + "cast": [ + "Bebe Daniels", + "Warner Baxter", + "Ford Sterling" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Miss Nobody", + "year": 1926, + "cast": [ + "Anna Q. Nilsson", + "Walter Pidgeon", + "Louise Fazenda" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Money Talks", + "year": 1926, + "cast": [ + "Claire Windsor", + "Owen Moore" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Monte Carlo", + "year": 1926, + "cast": [ + "Lew Cody", + "Gertrude Olmstead" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Moran of the Mounted", + "year": 1926, + "cast": [ + "Reed Howes", + "Sheldon Lewis" + ], + "genres": [ + "Western" + ] + }, + { + "title": "More Pay, Less Work", + "year": 1926, + "cast": [ + "Albert Gran", + "Mary Brian", + "Charles \"Buddy\" Rogers" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Morganson's Finish", + "year": 1926, + "cast": [ + "Anita Stewart", + "Johnnie Walker" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Mulhall's Greatest Catch", + "year": 1926, + "cast": [ + "Maurice 'Lefty' Flynn", + "Henry Victor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Music Master", + "year": 1926, + "cast": [ + "Alec B. Francis", + "Lois Moran", + "Neil Hamilton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "My Own Pal", + "year": 1926, + "cast": [ + "Tom Mix", + "Olive Borden", + "Tom Santschi" + ], + "genres": [ + "Western" + ] + }, + { + "title": "My Stars", + "year": 1926, + "cast": [ + "Johnny Arthur", + "Florence Lee" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Mystery Club", + "year": 1926, + "cast": [ + "Matt Moore", + "Edith Roberts" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Nervous Wreck", + "year": 1926, + "cast": [ + "Harrison Ford", + "Phyllis Haver" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The New Klondike", + "year": 1926, + "cast": [ + "Thomas Meighan", + "Lila Lee" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "The Night Cry", + "year": 1926, + "cast": [ + "Rin Tin Tin", + "June Marlowe", + "John Harron" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Night Owl", + "year": 1926, + "cast": [ + "Reed Howes", + "Gladys Hulette" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Night Patrol", + "year": 1926, + "cast": [ + "Richard Talmadge", + "Mary Carr" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "No Man's Gold", + "year": 1926, + "cast": [ + "Tom Mix", + "Eva Novak" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Non-Stop Flight", + "year": 1926, + "cast": [ + "Knute Erickson", + "Marcella Daly" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Obey the Law", + "year": 1926, + "cast": [ + "Bert Lytell", + "Edna Murphy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Oh, Baby!", + "year": 1926, + "cast": [ + "David Butler", + "Madge Kennedy", + "Creighton Hale" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Oh Billy, Behave", + "year": 1926, + "cast": [ + "Billy West", + "Charlotte Merriam", + "Lionel Belmore" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Oh! What a Nurse!", + "year": 1926, + "cast": [ + "Sydney Chaplin", + "Patsy Ruth Miller" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Old Ironsides", + "year": 1926, + "cast": [ + "Charles Farrell", + "Esther Ralston" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "One Minute to Play", + "year": 1926, + "cast": [ + "Red Grange", + "Mary McAllister" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "One Punch O'Day", + "year": 1926, + "cast": [ + "Billy Sullivan", + "Charlotte Merriam" + ], + "genres": [ + "Action" + ] + }, + { + "title": "One Sunday Morning", + "year": 1926, + "cast": [ + "Lloyd Hamilton", + "Estelle Bradley", + "Stanley Blystone" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Other Women's Husbands", + "year": 1926, + "cast": [ + "Monte Blue", + "Marie Prevost", + "Phyllis Haver" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Out of the Storm", + "year": 1926, + "cast": [ + "Jacqueline Logan", + "Tyrone Power Sr" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Out of the West", + "year": 1926, + "cast": [ + "Tom Tyler", + "Ethan Laidlaw" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Outlaw Express", + "year": 1926, + "cast": [ + "Leo D. Maloney", + "Melbourne MacDowell" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Outsider", + "year": 1926, + "cast": [ + "Jacqueline Logan", + "Walter Pidgeon", + "Lou Tellegen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Padlocked", + "year": 1926, + "cast": [ + "Lois Moran", + "Noah Beery Sr.", + "Louise Dresser" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Palace of Pleasure", + "year": 1926, + "cast": [ + "Betty Compson", + "Edmund Lowe" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Palm Beach Girl", + "year": 1926, + "cast": [ + "Bebe Daniels", + "Lawrence Gray" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Pals First", + "year": 1926, + "cast": [ + "Dolores del Río", + "Lloyd Hughes", + "Rita Carewe" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Pals in Paradise", + "year": 1926, + "cast": [ + "Rudolph Schildkraut", + "John Bowers", + "Marguerite De La Motte" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Paris", + "year": 1926, + "cast": [ + "Charles Ray", + "Joan Crawford" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Paris at Midnight", + "year": 1926, + "cast": [ + "Jetta Goudal", + "Lionel Barrymore", + "Mary Brian" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Partners Again", + "year": 1926, + "cast": [ + "George Sydney", + "Allan Forrest" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Passionate Quest", + "year": 1926, + "cast": [ + "May McAvoy", + "Willard Louis", + "Louise Fazenda" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Patent Leather Pug", + "year": 1926, + "cast": [ + "Billy Sullivan", + "Ruth Dwyer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Perils of the Coast Guard", + "year": 1926, + "cast": [ + "Cullen Landis", + "Dorothy Dwan" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Phantom Bullet", + "year": 1926, + "cast": [ + "Hoot Gibson", + "Eileen Percy" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Phantom Police", + "year": 1926, + "cast": [ + "Herbert Rawlinson", + "Purnell Pratt" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Pirates of the Sky", + "year": 1926, + "cast": [ + "Wanda Hawley", + "Crauford Kent" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Pleasures of the Rich", + "year": 1926, + "cast": [ + "Helene Chadwick", + "Jack Mulhall", + "Hedda Hopper" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Poor Girl's Romance", + "year": 1926, + "cast": [ + "Creighton Hale", + "Gertrude Short" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Popular Sin", + "year": 1926, + "cast": [ + "Florence Vidor", + "Clive Brook", + "Greta Nissen" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Prince of Pilsen", + "year": 1926, + "cast": [ + "Anita Stewart", + "Allan Forrest" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Prince of Tempters", + "year": 1926, + "cast": [ + "Lois Moran", + "Ben Lyon" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Prisoners of the Storm", + "year": 1926, + "cast": [ + "House Peters", + "Peggy Montgomery", + "Walter McGrail" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Private Izzy Murphy", + "year": 1926, + "cast": [ + "Patsy Ruth Miller", + "George Jessel" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Prowlers of the Night", + "year": 1926, + "cast": [ + "Fred Humes", + "Barbara Kent" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Queen o'Diamonds", + "year": 1926, + "cast": [ + "Evelyn Brent", + "Theodore von Eltz" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Racing Romance", + "year": 1926, + "cast": [ + "Reed Howes", + "Virginia Brown Faire" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Raggedy Rose", + "year": 1926, + "cast": [ + "Mabel Normand", + "Carl Miller", + "James Finlayson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Rainbow Riley", + "year": 1926, + "cast": [ + "Johnny Hines", + "Bradley Barker" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Rainmaker", + "year": 1926, + "cast": [ + "William Collier Jr.", + "Georgia Hale", + "Ernest Torrence" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Rapid Fire Romance", + "year": 1926, + "cast": [ + "Billy Sullivan", + "Marjorie Bonner" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Rawhide", + "year": 1926, + "cast": [ + "Jay Wilsey", + "Molly Malone" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Red Dice", + "year": 1926, + "cast": [ + "Rod La Rocque", + "Marguerite De La Motte", + "Gustav von Seyffertitz" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Red Hot Leather", + "year": 1926, + "cast": [ + "Jack Hoxie", + "Ena Gregory" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Redheads Preferred", + "year": 1926, + "cast": [ + "Raymond Hitchcock", + "Marjorie Daw", + "Theodore von Eltz" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Regular Scout", + "year": 1926, + "cast": [ + "Fred Thomson", + "Olive Hasbrouck" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Remember", + "year": 1926, + "cast": [ + "Dorothy Phillips", + "Lola Todd" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Return of Peter Grimm", + "year": 1926, + "cast": [ + "Alec B. Francis", + "Janet Gaynor" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "The Ridin' Rascal", + "year": 1926, + "cast": [ + "Art Acord", + "Olive Hasbrouck" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Road to Glory", + "year": 1926, + "cast": [ + "May McAvoy", + "Leslie Fenton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Road to Mandalay", + "year": 1926, + "cast": [ + "Lon Chaney", + "Lois Moran", + "Owen Moore" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Roaring Rider", + "year": 1926, + "cast": [ + "Jay Wilsey", + "Jean Arthur" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Rocking Moon", + "year": 1926, + "cast": [ + "Lilyan Tashman", + "John Bowers" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Rolling Home", + "year": 1926, + "cast": [ + "Reginald Denny", + "Marian Nixon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Romance of a Million Dollars", + "year": 1926, + "cast": [ + "Glenn Hunter", + "Alyce Mills", + "Gaston Glass" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Rose of the Tenements", + "year": 1926, + "cast": [ + "Shirley Mason", + "Johnny Harron" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Runaway", + "year": 1926, + "cast": [ + "Clara Bow", + "Warner Baxter", + "William Powell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Runaway Express", + "year": 1926, + "cast": [ + "Jack Dougherty", + "Blanche Mehaffey" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Rustlers' Ranch", + "year": 1926, + "cast": [ + "Art Acord", + "Olive Hasbrouck" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Rustling for Cupid", + "year": 1926, + "cast": [ + "George O'Brien", + "Anita Stewart" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Sap", + "year": 1926, + "cast": [ + "Kenneth Harlan", + "Heinie Conklin", + "Mary McAllister" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Savage", + "year": 1926, + "cast": [ + "Ben Lyon", + "May McAvoy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Scarlet Letter", + "year": 1926, + "cast": [ + "Lillian Gish", + "Lars Hanson", + "Henry B. Walthall", + "Karl Dane" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Scrappin' Kid", + "year": 1926, + "cast": [ + "Art Acord", + "Edmund Cobb" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Sea Beast", + "year": 1926, + "cast": [ + "John Barrymore", + "Dolores Costello", + "George O'Hara" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Sea Horses", + "year": 1926, + "cast": [ + "Jack Holt", + "Florence Vidor", + "William Powell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Sea Wolf", + "year": 1926, + "cast": [ + "Claire Adams", + "Theodore von Eltz" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Secret Orders", + "year": 1926, + "cast": [ + "Robert Frazer", + "Evelyn Brent" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Senor Daredevil", + "year": 1926, + "cast": [ + "Ken Maynard", + "Dorothy Devore" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Set-Up", + "year": 1926, + "cast": [ + "Art Acord", + "Alta Allen" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Shadow of the Law", + "year": 1926, + "cast": [ + "Clara Bow", + "Stuart Holmes" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Shameful Behavior?", + "year": 1926, + "cast": [ + "Edith Roberts", + "Richard Tucker" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Shamrock Handicap", + "year": 1926, + "cast": [ + "Janet Gaynor", + "Leslie Fenton" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Shipwrecked", + "year": 1926, + "cast": [ + "Seena Owen", + "Joseph Schildkraut" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Show-Off", + "year": 1926, + "cast": [ + "Ford Sterling", + "Louise Brooks" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Siberia", + "year": 1926, + "cast": [ + "Alma Rubens", + "Edmund Lowe" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Silent Lover", + "year": 1926, + "cast": [ + "Milton Sills", + "Natalie Kingston", + "Viola Dana" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Silken Shackles", + "year": 1926, + "cast": [ + "Irene Rich", + "Huntley Gordon", + "Victor Varconi" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Silver Treasure", + "year": 1926, + "cast": [ + "George O'Brien", + "Helena D'Algy" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Sin Cargo", + "year": 1926, + "cast": [ + "Shirley Mason", + "Robert Frazer", + "Gertrude Astor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sir Lumberjack", + "year": 1926, + "cast": [ + "Maurice 'Lefty' Flynn", + "Kathleen Myers" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Six Shootin' Romance", + "year": 1926, + "cast": [ + "Jack Hoxie", + "Olive Hasbrouck", + "William Steele" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Skinner's Dress Suit", + "year": 1926, + "cast": [ + "Reginald Denny", + "Laura La Plante" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Sky High Corral", + "year": 1926, + "cast": [ + "Art Acord", + "Marguerite Clayton" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Smoke Eaters", + "year": 1926, + "cast": [ + "Cullen Landis", + "Wanda Hawley" + ], + "genres": [ + "Action" + ] + }, + { + "title": "So This Is Paris", + "year": 1926, + "cast": [ + "Monte Blue", + "Patsy Ruth Miller" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Social Celebrity", + "year": 1926, + "cast": [ + "Adolphe Menjou", + "Louise Brooks" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Social Highwayman", + "year": 1926, + "cast": [ + "Dorothy Devore", + "Montagu Love" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Somebody's Mother", + "year": 1926, + "cast": [ + "Mary Carr", + "Rex Lease" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Son of the Sheik", + "year": 1926, + "cast": [ + "Rudolph Valentino", + "Vilma Bánky", + "Montagu Love" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Song and Dance Man", + "year": 1926, + "cast": [ + "Tom Moore", + "Bessie Love" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "So's Your Old Man", + "year": 1926, + "cast": [ + "W. C. Fields", + "Alice Joyce" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Sorrows of Satan", + "year": 1926, + "cast": [ + "Adolphe Menjou", + "Ricardo Cortez", + "Carol Dempster", + "Lya De Putti" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Sparrows", + "year": 1926, + "cast": [ + "Mary Pickford", + "Roy Stewart", + "Gustav von Seyffertitz" + ], + "genres": [] + }, + { + "title": "Speed Cop", + "year": 1926, + "cast": [ + "Billy Sullivan", + "Francis Ford" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Speed Crazed", + "year": 1926, + "cast": [ + "Billy Sullivan", + "Joseph W. Girard" + ], + "genres": [ + "Sports", + "Action" + ] + }, + { + "title": "The Speeding Venus", + "year": 1926, + "cast": [ + "Priscilla Dean", + "Robert Frazer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Speedy Spurs", + "year": 1926, + "cast": [ + "Jay Wilsey", + "Alma Rayford" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Sporting Lover", + "year": 1926, + "cast": [ + "Conway Tearle", + "Barbara Bedford", + "Ward Crane" + ], + "genres": [ + "Sports" + ] + }, + { + "title": "Stepping Along", + "year": 1926, + "cast": [ + "Johnny Hines", + "Mary Brian" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Stick to Your Story", + "year": 1926, + "cast": [ + "Billy Sullivan", + "Bruce Gordon" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Still Alarm", + "year": 1926, + "cast": [ + "Helene Chadwick", + "William Russell", + "Richard Travers" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Stolen Ranch", + "year": 1926, + "cast": [ + "Fred Humes", + "Louise Lorraine" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Stop, Look and Listen", + "year": 1926, + "cast": [ + "Dorothy Dwan", + "Mary Carr", + "Oliver Hardy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Stranded in Paris", + "year": 1926, + "cast": [ + "Bebe Daniels", + "Ford Sterling" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Strong Man", + "year": 1926, + "cast": [ + "Harry Langdon", + "Priscilla Bonner", + "Gertrude Astor" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Subway Sadie", + "year": 1926, + "cast": [ + "Dorothy Mackaill", + "Jack Mulhall" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Summer Bachelors", + "year": 1926, + "cast": [ + "Madge Bellamy", + "Allan Forrest" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Sunny Side Up", + "year": 1926, + "cast": [ + "Vera Reynolds", + "George K. Arthur" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Sunshine of Paradise Alley", + "year": 1926, + "cast": [ + "Barbara Bedford", + "Nigel Barrie" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Sweet Daddies", + "year": 1926, + "cast": [ + "George Sidney", + "Vera Gordon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Sweet Rosie O'Grady", + "year": 1926, + "cast": [ + "Shirley Mason", + "Cullen Landis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Syncopating Sue", + "year": 1926, + "cast": [ + "Corinne Griffith", + "Tom Moore" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Take It from Me", + "year": 1926, + "cast": [ + "Reginald Denny", + "Blanche Mehaffey" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Temptress", + "year": 1926, + "cast": [ + "Greta Garbo", + "Antonio Moreno" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Tentacles of the North", + "year": 1926, + "cast": [ + "Gaston Glass", + "Alice Calhoun", + "Joseph W. Girard" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Terror", + "year": 1926, + "cast": [ + "Art Acord", + "Edmund Cobb" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Test of Donald Norton", + "year": 1926, + "cast": [ + "George Walsh", + "Tyrone Power Sr", + "Eugenia Gilbert" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Texas Streak", + "year": 1926, + "cast": [ + "Hoot Gibson", + "Blanche Mehaffey" + ], + "genres": [ + "Western" + ] + }, + { + "title": "That Model from Paris", + "year": 1926, + "cast": [ + "Marceline Day", + "Bert Lytell" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "That's My Baby", + "year": 1926, + "cast": [ + "Douglas MacLean", + "Margaret Morris" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "There You Are!", + "year": 1926, + "cast": [ + "Conrad Nagel", + "Edith Roberts" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Third Degree", + "year": 1926, + "cast": [ + "Dolores Costello", + "Louise Dresser", + "Rockliffe Fellowes" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Three Faces East", + "year": 1926, + "cast": [ + "Jetta Goudal", + "Robert Ames", + "Clive Brook" + ], + "genres": [ + "Spy", + "Drama" + ] + }, + { + "title": "The Thrill Hunter", + "year": 1926, + "cast": [ + "William Haines", + "Kathryn McGuire", + "Alma Bennett" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Thrilling Youth", + "year": 1926, + "cast": [ + "Billy West", + "Gloria Grey" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Timid Terror", + "year": 1926, + "cast": [ + "George O'Hara", + "Edith Yorke" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Tin Gods", + "year": 1926, + "cast": [ + "Thomas Meighan", + "Renee Adoree", + "William Powell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Tin Hats", + "year": 1926, + "cast": [ + "Claire Windsor", + "Conrad Nagel" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Tom and His Pals", + "year": 1926, + "cast": [ + "Tom Tyler", + "Doris Hill" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Tony Runs Wild", + "year": 1926, + "cast": [ + "Tom Mix", + "Jacqueline Logan" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Too Much Money", + "year": 1926, + "cast": [ + "Lewis Stone", + "Anna Q. Nilsson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Torrent", + "year": 1926, + "cast": [ + "Greta Garbo", + "Ricardo Cortez" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Tough Guy", + "year": 1926, + "cast": [ + "Fred Thomson", + "Lola Todd", + "Robert McKim" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Traffic Cop", + "year": 1926, + "cast": [ + "Maurice 'Lefty' Flynn", + "Nigel Barrie" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Tramp, Tramp, Tramp", + "year": 1926, + "cast": [ + "Harry Langdon", + "Joan Crawford" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Transcontinental Limited", + "year": 1926, + "cast": [ + "Johnnie Walker", + "Eugenia Gilbert" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "A Trip to Chinatown", + "year": 1926, + "cast": [ + "Earle Foxe", + "Anna May Wong" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Trooper 77", + "year": 1926, + "cast": [ + "Herbert Rawlinson", + "Hazel Deane" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Trumpin' Trouble", + "year": 1926, + "cast": [ + "Jay Wilsey", + "Alma Rayford" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Trunk Mystery", + "year": 1926, + "cast": [ + "Charles Hutchison", + "Alice Calhoun", + "Otto Lederer" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Truthful Sex", + "year": 1926, + "cast": [ + "Mae Busch", + "Huntley Gordon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Twisted Triggers", + "year": 1926, + "cast": [ + "Hal Taliaferro", + "Jean Arthur" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Two Can Play", + "year": 1926, + "cast": [ + "Allan Forrest", + "Clara Bow" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Two-Gun Man", + "year": 1926, + "cast": [ + "Fred Thomson", + "Olive Hasbrouck" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Under Western Skies", + "year": 1926, + "cast": [ + "Norman Kerry", + "Anne Cornwall", + "Ward Crane" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Unfair Sex", + "year": 1926, + "cast": [ + "Hope Hampton", + "Holbrook Blinn", + "Nita Naldi" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Unknown Cavalier", + "year": 1926, + "cast": [ + "Ken Maynard", + "Kathleen Collins", + "David Torrence" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Unknown Soldier", + "year": 1926, + "cast": [ + "Charles Emmett Mack", + "Marguerite De La Motte", + "Henry B. Walthall" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Untamed Lady", + "year": 1926, + "cast": [ + "Gloria Swanson", + "Lawrence Gray" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Up in Mabel's Room", + "year": 1926, + "cast": [ + "Marie Prevost", + "Harrison Ford", + "Phyllis Haver" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Upstage", + "year": 1926, + "cast": [ + "Norma Shearer", + "Oscar Shaw", + "Dorothy Phillips" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Valencia", + "year": 1926, + "cast": [ + "Mae Murray", + "Lloyd Hughes" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Valley of Bravery", + "year": 1926, + "cast": [ + "Bob Custer", + "Eugenia Gilbert" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Volcano!", + "year": 1926, + "cast": [ + "Bebe Daniels", + "Ricardo Cortez", + "Wallace Beery" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Volga Boatman", + "year": 1926, + "cast": [ + "William Boyd", + "Elinor Fair" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Waning Sex", + "year": 1926, + "cast": [ + "Norma Shearer", + "Conrad Nagel" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "War Paint", + "year": 1926, + "cast": [ + "Tim McCoy", + "Pauline Starke" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Watch Your Wife", + "year": 1926, + "cast": [ + "Virginia Valli", + "Pat O'Malley", + "Nat Carr" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "We're in the Navy Now", + "year": 1926, + "cast": [ + "Wallace Beery", + "Raymond Hatton", + "Chester Conklin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "West of Broadway", + "year": 1926, + "cast": [ + "Priscilla Dean", + "Majel Coleman" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "West of the Law", + "year": 1926, + "cast": [ + "Neva Gerber", + "Ashton Dearholt", + "Hal Walters" + ], + "genres": [ + "Western" + ] + }, + { + "title": "West of the Rainbow's End", + "year": 1926, + "cast": [ + "Jack Perrin", + "Pauline Curley" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Western Pluck", + "year": 1926, + "cast": [ + "Art Acord", + "Marceline Day" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Wet Paint", + "year": 1926, + "cast": [ + "Raymond Griffith", + "Helene Costello", + "Bryant Washburn" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "What Happened to Jones", + "year": 1926, + "cast": [ + "Reginald Denny", + "Marian Nixon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "What Price Glory?", + "year": 1926, + "cast": [ + "Edmund Lowe", + "Victor McLaglen", + "Dolores del Río" + ], + "genres": [ + "War" + ] + }, + { + "title": "When Love Grows Cold", + "year": 1926, + "cast": [ + "Natacha Rambova", + "Clive Brook" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "When the Wife's Away", + "year": 1926, + "cast": [ + "George K. Arthur", + "Dorothy Revier" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "While London Sleeps", + "year": 1926, + "cast": [ + "Rin Tin Tin", + "Helene Costello" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Whispering Smith", + "year": 1926, + "cast": [ + "H.B. Warner", + "Lillian Rich", + "John Bowers" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Whispering Wires", + "year": 1926, + "cast": [ + "Anita Stewart", + "Edmund Burns" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The White Black Sheep", + "year": 1926, + "cast": [ + "Richard Barthelmess", + "Patsy Ruth Miller", + "Constance Howard" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "White Mice", + "year": 1926, + "cast": [ + "Jacqueline Logan", + "William Powell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Whole Town's Talking", + "year": 1926, + "cast": [ + "Edward Everett Horton", + "Virginia Lee Corbin", + "Trixie Friganza" + ], + "genres": [ + "Adventure", + "Comedy" + ] + }, + { + "title": "Why Girls Go Back Home", + "year": 1926, + "cast": [ + "Patsy Ruth Miller", + "Clive Brook", + "Myrna Loy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Wild Horse Stampede", + "year": 1926, + "cast": [ + "Jack Hoxie", + "Fay Wray", + "Marin Sais" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Wild Oats Lane", + "year": 1926, + "cast": [ + "Viola Dana", + "Robert Agnew" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Wild to Go", + "year": 1926, + "cast": [ + "Tom Tyler", + "Frankie Darro", + "Eugenia Gilbert" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Wings of the Storm", + "year": 1926, + "cast": [ + "Virginia Brown Faire", + "Reed Howes" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Winner", + "year": 1926, + "cast": [ + "Billy Sullivan", + "Lucille Hutton" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Winning of Barbara Worth", + "year": 1926, + "cast": [ + "Ronald Colman", + "Vilma Bánky", + "Gary Cooper" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Winning the Futurity", + "year": 1926, + "cast": [ + "Cullen Landis", + "Clara Horton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Wise Guy", + "year": 1926, + "cast": [ + "Mary Astor", + "Betty Compson" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "With Davy Crockett at the Fall of the Alamo", + "year": 1926, + "cast": [ + "Cullen Landis", + "Kathryn McGuire" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Wolf Hunters", + "year": 1926, + "cast": [ + "Robert McKim", + "Virginia Brown Faire" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Wolves of the Desert", + "year": 1926, + "cast": [ + "Neva Gerber", + "Ashton Dearholt" + ], + "genres": [ + "Western" + ] + }, + { + "title": "A Woman of the Sea", + "year": 1926, + "cast": [ + "Edna Purviance", + "Raymond Bloomer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Womanpower", + "year": 1926, + "cast": [ + "Ralph Graves", + "Katherine Perry", + "Margaret Livingston" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Yankee Señor", + "year": 1926, + "cast": [ + "Tom Mix", + "Olive Borden" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Yellow Back", + "year": 1926, + "cast": [ + "Lotus Thompson", + "Claude Payton" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Yellow Fingers", + "year": 1926, + "cast": [ + "Olive Borden", + "Ralph Ince", + "Claire Adams" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "You Never Know Women", + "year": 1926, + "cast": [ + "Florence Vidor", + "Lowell Sherman", + "Clive Brook" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "You'd Be Surprised", + "year": 1926, + "cast": [ + "Raymond Griffith", + "Dorothy Sebastian" + ], + "genres": [ + "Mystery", + "Comedy" + ] + }, + { + "title": "Young April", + "year": 1926, + "cast": [ + "Joseph Schildkraut", + "Rudolph Schildkraut", + "Bessie Love" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "7th Heaven", + "year": 1927, + "cast": [ + "Janet Gaynor", + "and", + "Charles Farrell" + ], + "genres": [ + "War" + ] + }, + { + "title": "Adam and Evil", + "year": 1927, + "cast": [ + "Lew Cody", + "Aileen Pringle" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Aflame in the Sky", + "year": 1927, + "cast": [ + "Sharon Lynn", + "Jack Luden" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Annie Laurie", + "year": 1927, + "cast": [ + "Lillian Gish", + "Norman Kerry" + ], + "genres": [ + "Historical" + ] + }, + { + "title": "The Arizona Wildcat", + "year": 1927, + "cast": [ + "Tom Mix", + "Dorothy Sebastian" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Auctioneer", + "year": 1927, + "cast": [ + "George Sidney", + "Marian Nixon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Babe Comes Home", + "year": 1927, + "cast": [ + "Babe Ruth", + "Anna Q. Nilsson" + ], + "genres": [ + "Sports" + ] + }, + { + "title": "Barbed Wire", + "year": 1927, + "cast": [ + "Pola Negri", + "Clive Brook" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Beauty Shoppers", + "year": 1927, + "cast": [ + "Mae Busch", + "Doris Hill" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Beloved Rogue", + "year": 1927, + "cast": [ + "John Barrymore", + "Marceline Day", + "Conrad Veidt" + ], + "genres": [] + }, + { + "title": "Beware of Widows", + "year": 1927, + "cast": [ + "Laura La Plante", + "Bryant Washburn" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Blazing Days", + "year": 1927, + "cast": [ + "Fred Humes", + "Ena Gregory" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Border Cavalier", + "year": 1927, + "cast": [ + "Fred Humes", + "Evelyn Pierce" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Brass Knuckles", + "year": 1927, + "cast": [ + "Monte Blue", + "Betty Bronson" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Breakfast at Sunrise", + "year": 1927, + "cast": [ + "Constance Talmadge", + "Alice White" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Cactus Trails", + "year": 1927, + "cast": [ + "Bob Custer", + "Lew Meehan" + ], + "genres": [ + "Western" + ] + }, + { + "title": "California", + "year": 1927, + "cast": [ + "Tim McCoy", + "Dorothy Sebastian" + ], + "genres": [ + "Western" + ] + }, + { + "title": "California or Bust", + "year": 1927, + "cast": [ + "George O'Hara", + "Helen Foster" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Cancelled Debt", + "year": 1927, + "cast": [ + "Rex Lease", + "Charlotte Stevens" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Captain Salvation", + "year": 1927, + "cast": [ + "Lars Hanson", + "Marceline Day", + "Pauline Starke" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Cat and the Canary", + "year": 1927, + "cast": [ + "Laura La Plante", + "Forrest Stanley", + "Creighton Hale" + ], + "genres": [ + "Comedy", + "Horror", + "Mystery" + ] + }, + { + "title": "Chang: A Drama of the Wilderness", + "year": 1927, + "cast": [ + "Kru", + "Chantui", + "Nah", + "Ladah", + "Bimbo" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Chicago", + "year": 1927, + "cast": [ + "Phyllis Haver", + "Julia Faye" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Children of Divorce", + "year": 1927, + "cast": [ + "Clara Bow", + "Esther Ralston", + "Gary Cooper" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Chinese Parrot", + "year": 1927, + "cast": [ + "Marian Nixon", + "Florence Turner" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Closed Gates", + "year": 1927, + "cast": [ + "Johnny Harron", + "Jane Novak" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "College", + "year": 1927, + "cast": [ + "Buster Keaton", + "Anne Cornwall" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "The College Hero", + "year": 1927, + "cast": [ + "Pauline Garon", + "Ben Turpin", + "Robert Agnew" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Come to My House", + "year": 1927, + "cast": [ + "Olive Borden", + "Antonio Moreno" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Cradle Snatchers", + "year": 1927, + "cast": [ + "Louise Fazenda", + "Ethel Wales" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Cruel Truth", + "year": 1927, + "cast": [ + "Hedda Hopper", + "Constance Howard" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Demi-Bride", + "year": 1927, + "cast": [ + "Norma Shearer", + "Lew Cody" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Desert Dust", + "year": 1927, + "cast": [ + "Ted Wells", + "Lotus Thompson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Desired Woman", + "year": 1927, + "cast": [ + "Irene Rich", + "William Russell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Devil Dancer", + "year": 1927, + "cast": [ + "Gilda Gray", + "Clive Brook", + "Anna May Wong" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Dove", + "year": 1927, + "cast": [ + "Norma Talmadge", + "Noah Beery", + "Gilbert Roland" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Drop Kick", + "year": 1927, + "cast": [ + "Richard Barthelmess", + "Barbara Kent" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Enemies of Society", + "year": 1927, + "cast": [ + "Conway Tearle", + "Margaret Morris" + ], + "genres": [ + "Silent" + ] + }, + { + "title": "The Enemy", + "year": 1927, + "cast": [ + "Lillian Gish", + "Ralph Forbes" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Fair Co-Ed", + "year": 1927, + "cast": [ + "Marion Davies", + "Johnny Mack Brown" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Figures Don't Lie", + "year": 1927, + "cast": [ + "Esther Ralston", + "Richard Arlen", + "Ford Sterling" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Finger Prints", + "year": 1927, + "cast": [ + "Louise Fazenda", + "John T. Murray", + "Myrna Loy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Fireman, Save My Child", + "year": 1927, + "cast": [ + "Wallace Beery", + "Raymond Hatton", + "Josephine Dunn" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The First Auto", + "year": 1927, + "cast": [ + "Russell Simpson", + "Charles Emmett Mack" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "For the Love of Mike", + "year": 1927, + "cast": [ + "Ben Lyon", + "Claudette Colbert" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Foreign Devils", + "year": 1927, + "cast": [ + "Tim McCoy", + "Claire Windsor" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Fortune Hunter", + "year": 1927, + "cast": [ + "Sydney Chaplin", + "Helene Costello" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Garden of Allah", + "year": 1927, + "cast": [ + "Alice Terry", + "Ivan Petrovich" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Gaucho", + "year": 1927, + "cast": [ + "Douglas Fairbanks", + "Lupe Velez" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Girl from Chicago", + "year": 1927, + "cast": [ + "Conrad Nagel", + "Myrna Loy" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Good Time Charley", + "year": 1927, + "cast": [ + "Helene Costello", + "Warner Oland" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Ham and Eggs at the Front", + "year": 1927, + "cast": [ + "Tom Wilson", + "Heinie Conklin", + "Myrna Loy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hard Fists", + "year": 1927, + "cast": [ + "Art Acord", + "Louise Lorraine" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Heart of Maryland", + "year": 1927, + "cast": [ + "Dolores Costello", + "Jason Robards Sr." + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Heaven on Earth", + "year": 1927, + "cast": [ + "Renee Adoree", + "Conrad Nagel" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Her Wild Oat", + "year": 1927, + "cast": [ + "Colleen Moore" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "His First Flame", + "year": 1927, + "cast": [ + "Harry Langdon", + "Natalie Kingston" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Home Struck", + "year": 1927, + "cast": [ + "Viola Dana", + "Tom Gallery" + ], + "genres": [ + "Silent" + ] + }, + { + "title": "The Honorable Mr. Buggs", + "year": 1927, + "cast": [ + "Matt Moore", + "Anna May Wong", + "Oliver Hardy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Horse Shoes", + "year": 1927, + "cast": [ + "Monty Banks", + "Jean Arthur" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hotel Imperial", + "year": 1927, + "cast": [ + "Pola Negri", + "James Hall" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hula", + "year": 1927, + "cast": [ + "Clara Bow", + "Clive Brook" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Husband Hunters", + "year": 1927, + "cast": [ + "Mae Busch", + "Charles Delaney", + "Jean Arthur" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "If I Were Single", + "year": 1927, + "cast": [ + "May McAvoy", + "Conrad Nagel", + "Myrna Loy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "In the First Degree", + "year": 1927, + "cast": [ + "Alice Calhoun", + "Bryant Washburn" + ], + "genres": [] + }, + { + "title": "Is Zat So?", + "year": 1927, + "cast": [ + "George O'Brien", + "Edmund Lowe" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "It", + "year": 1927, + "cast": [ + "Clara Bow", + "and", + "Antonio Moreno" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Jaws of Steel", + "year": 1927, + "cast": [ + "Rin Tin Tin", + "Jason Robards Sr.", + "Helen Ferguson" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Jazz Singer", + "year": 1927, + "cast": [ + "Al Jolson", + "May McAvoy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Johnny Get Your Hair Cut", + "year": 1927, + "cast": [ + "Harry Carey", + "Jackie Coogan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Kid Brother", + "year": 1927, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The King of Kings", + "year": 1927, + "cast": [ + "H. B. Warner", + "Dorothy Cumming", + "Joseph Schildkraut" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Kiss in a Taxi", + "year": 1927, + "cast": [ + "Bebe Daniels", + "Chester Conklin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Knockout Reilly", + "year": 1927, + "cast": [ + "Richard Dix", + "Mary Brian" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Ladies Must Dress", + "year": 1927, + "cast": [ + "Virginia Valli", + "Lawrence Gray" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Lady in Ermine", + "year": 1927, + "cast": [ + "Corinne Griffith", + "Francis X. Bushman" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "The Last Trail", + "year": 1927, + "cast": [ + "Tom Mix", + "Carmelita Geraghty" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Let It Rain", + "year": 1927, + "cast": [ + "Douglas MacLean", + "Shirley Mason" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Little Journey", + "year": 1927, + "cast": [ + "Claire Windsor", + "William Haines", + "Harry Carey" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "London After Midnight", + "year": 1927, + "cast": [ + "Lon Chaney", + "Marceline Day", + "Conrad Nagel" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Long Pants", + "year": 1927, + "cast": [ + "Harry Langdon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Love of Sunya", + "year": 1927, + "cast": [ + "Gloria Swanson", + "John Boles" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Lovers", + "year": 1927, + "cast": [ + "Ramon Novarro", + "Alice Terry" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "Love's Greatest Mistake", + "year": 1927, + "cast": [ + "Evelyn Brent", + "William Powell", + "James Hall" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Loves of Carmen", + "year": 1927, + "cast": [ + "Dolores del Rio", + "Victor McLaglen" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Magic Flame", + "year": 1927, + "cast": [ + "Ronald Colman", + "Vilma Banky", + "Agostino Borgato" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Man Bait", + "year": 1927, + "cast": [ + "Marie Prevost", + "Douglas Fairbanks Jr." + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Man Power", + "year": 1927, + "cast": [ + "Richard Dix", + "Mary Brian" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Masked Woman", + "year": 1927, + "cast": [ + "Anna Q. Nilsson", + "Holbrook Blinn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Midnight Watch", + "year": 1927, + "cast": [ + "Roy Stewart", + "Mary McAllister", + "David Torrence" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "A Million Bid", + "year": 1927, + "cast": [ + "Dolores Costello", + "Warner Oland" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Missing Link", + "year": 1927, + "cast": [ + "Syd Chaplin", + "Ruth Hiatt" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mockery", + "year": 1927, + "cast": [ + "Lon Chaney", + "Barbara Bedford" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "My Best Girl", + "year": 1927, + "cast": [ + "Mary Pickford", + "Buddy Rogers" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Nobody's Widow", + "year": 1927, + "cast": [ + "Leatrice Joy", + "Phyllis Haver" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "No Place to Go", + "year": 1927, + "cast": [ + "Mary Astor", + "Lloyd Hughes" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Not for Publication", + "year": 1927, + "cast": [ + "Ralph Ince", + "Rex Lease" + ], + "genres": [ + "Silent" + ] + }, + { + "title": "Out All Night", + "year": 1927, + "cast": [ + "Reginald Denny", + "Marian Nixon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Outlaws of Red River", + "year": 1927, + "cast": [ + "Tom Mix", + "Marjorie Daw" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Paid to Love", + "year": 1927, + "cast": [ + "George O'Brien", + "Virginia Valli" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Patent Leather Kid", + "year": 1927, + "cast": [ + "Richard Barthelmess", + "Molly O'Day" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Peaceful Oscar", + "year": 1927, + "cast": [ + "Lloyd Hamilton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Potters", + "year": 1927, + "cast": [ + "W. C. Fields", + "Mary Alden" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Princess from Hoboken", + "year": 1927, + "cast": [ + "Edmund Burns", + "Blanche Mehaffey" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Private Life of Helen of Troy", + "year": 1927, + "cast": [ + "Maria Corda", + "Lewis Stone", + "Ricardo Cortez" + ], + "genres": [] + }, + { + "title": "Quality Street", + "year": 1927, + "cast": [ + "Marion Davies", + "Conrad Nagel" + ], + "genres": [] + }, + { + "title": "Red Clay", + "year": 1927, + "cast": [ + "William Desmond", + "Marceline Day" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Red Mill", + "year": 1927, + "cast": [ + "Marion Davies", + "Owen Moore" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Resurrection", + "year": 1927, + "cast": [ + "Dolores del Rio", + "Rod La Rocque" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Road to Romance", + "year": 1927, + "cast": [ + "Ramon Novarro", + "Marceline Day" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Rookies", + "year": 1927, + "cast": [ + "Karl Dane", + "George K. Arthur", + "Marceline Day" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Rough Riders", + "year": 1927, + "cast": [ + "Noah Beery", + "Charles Farrell", + "George Bancroft" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "A Sailor's Sweetheart", + "year": 1927, + "cast": [ + "Louise Fazenda", + "Clyde Cook", + "Myrna Loy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Salvation Jane", + "year": 1927, + "cast": [ + "Viola Dana", + "J. Parks Jones" + ], + "genres": [] + }, + { + "title": "The Scar of Shame", + "year": 1927, + "cast": [ + "Harry Henderson", + "and", + "Lucia Lynn Moses" + ], + "genres": [] + }, + { + "title": "Shanghaied", + "year": 1927, + "cast": [ + "Patsy Ruth Miller", + "Gertrude Astor" + ], + "genres": [ + "Silent" + ] + }, + { + "title": "Senorita", + "year": 1927, + "cast": [ + "Bebe Daniels", + "James Hall" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Serenade", + "year": 1927, + "cast": [ + "Adolphe Menjou", + "Kathryn Carver" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "She's a Sheik", + "year": 1927, + "cast": [ + "Bebe Daniels", + "Richard Arlen", + "William Powell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Show", + "year": 1927, + "cast": [ + "John Gilbert", + "Renee Adoree", + "Lionel Barrymore" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Silk Stockings", + "year": 1927, + "cast": [ + "Laura La Plante", + "John Harron" + ], + "genres": [] + }, + { + "title": "Singed", + "year": 1927, + "cast": [ + "Blanche Sweet", + "Warner Baxter" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Slide, Kelly, Slide", + "year": 1927, + "cast": [ + "William Haines", + "Sally O'Neil" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Small Bachelor", + "year": 1927, + "cast": [ + "Barbara Kent", + "George Beranger" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Snowbound", + "year": 1927, + "cast": [ + "Betty Blythe", + "Robert Agnew" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Soft Cushions", + "year": 1927, + "cast": [ + "Douglas MacLean", + "Sue Carol" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Sorrell and Son", + "year": 1927, + "cast": [ + "H. B. Warner", + "Anna Q. Nilsson", + "Louis Wolheim", + "Alice Joyce", + "Nils Asther", + "Mary Nolan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "South Sea Love", + "year": 1927, + "cast": [ + "Patsy Ruth Miller", + "Lee Shumway" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Special Delivery", + "year": 1927, + "cast": [ + "Eddie Cantor", + "Jobyna Ralston", + "William Powell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Spoilers of the West", + "year": 1927, + "cast": [ + "Tim McCoy", + "Marjorie Daw" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Spotlight", + "year": 1927, + "cast": [ + "Esther Ralston", + "Neil Hamilton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Spring Fever", + "year": 1927, + "cast": [ + "William Haines", + "Joan Crawford" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Stolen Bride", + "year": 1927, + "cast": [ + "Billie Dove", + "Lloyd Hughes" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Stolen Pleasures", + "year": 1927, + "cast": [ + "Helene Chadwick", + "Gayne Whitman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Straight Shootin'", + "year": 1927, + "cast": [ + "Ted Wells", + "Lillian Gilmore" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Stranded", + "year": 1927, + "cast": [ + "Shirley Mason", + "William Collier Jr." + ], + "genres": [] + }, + { + "title": "Streets of Shanghai", + "year": 1927, + "cast": [ + "Pauline Starke", + "Kenneth Harlan", + "Eddie Gribbon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Student Prince in Old Heidelberg", + "year": 1927, + "cast": [ + "Ramon Novarro", + "Norma Shearer" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Sunrise: A Song of Two Humans", + "year": 1927, + "cast": [ + "George O'Brien", + "Janet Gaynor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Swim Girl, Swim", + "year": 1927, + "cast": [ + "Bebe Daniels", + "James Hall" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Tea for Three", + "year": 1927, + "cast": [ + "Lew Cody", + "Aileen Pringle", + "Owen Moore" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Thumbs Down", + "year": 1927, + "cast": [ + "Creighton Hale", + "Lois Boyd" + ], + "genres": [] + }, + { + "title": "Time to Love", + "year": 1927, + "cast": [ + "Raymond Griffith", + "William Powell", + "Vera Voronina" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Topsy and Eva", + "year": 1927, + "cast": [ + "Rosetta Duncan", + "Vivian Duncan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Tracked by the Police", + "year": 1927, + "cast": [ + "Rin Tin Tin", + "Jason Robards Sr.", + "Virginia Browne Faire" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Tumbling River", + "year": 1927, + "cast": [ + "Tom Mix", + "Dorothy Dwan" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Turkish Delight", + "year": 1927, + "cast": [ + "Julia Faye", + "Rudolph Schildkraut" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Twelve Miles Out", + "year": 1927, + "cast": [ + "John Gilbert", + "Joan Crawford" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Two Arabian Knights", + "year": 1927, + "cast": [ + "William Boyd", + "Mary Astor", + "Louis Wolheim", + "Ian Keith" + ], + "genres": [ + "Comedy", + "Adventure" + ] + }, + { + "title": "Two Girls Wanted", + "year": 1927, + "cast": [ + "Janet Gaynor", + "Glenn Tryon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Underworld", + "year": 1927, + "cast": [ + "George Bancroft", + "Evelyn Brent", + "Clive Brook" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Unknown", + "year": 1927, + "cast": [ + "Lon Chaney", + "Joan Crawford" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Upstream", + "year": 1927, + "cast": [ + "Nancy Nash", + "Earle Foxe" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Vanity", + "year": 1927, + "cast": [ + "Leatrice Joy", + "Alan Hale" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Wandering Girls", + "year": 1927, + "cast": [ + "Dorothy Revier", + "Eugenie Besserer" + ], + "genres": [ + "Silent" + ] + }, + { + "title": "The Way of All Flesh", + "year": 1927, + "cast": [ + "Emil Jannings", + "Belle Bennett", + "Phyllis Haver" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "When a Man Loves", + "year": 1927, + "cast": [ + "John Barrymore", + "Dolores Costello" + ], + "genres": [ + "Historical", + "Drama" + ] + }, + { + "title": "The Whirlwind of Youth", + "year": 1927, + "cast": [ + "Lois Moran", + "Vera Veronina" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "White Flannels", + "year": 1927, + "cast": [ + "Virginia Brown", + "Louise Dresser", + "Jason Robards Sr." + ], + "genres": [ + "Drama" + ] + }, + { + "title": "White Gold", + "year": 1927, + "cast": [ + "Jetta Goudal", + "George Bancroft" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Why Girls Love Sailors", + "year": 1927, + "cast": [ + "Stan Laurel", + "Oliver Hardy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Wings", + "year": 1927, + "cast": [ + "Clara Bow", + "Charles \"Buddy\" Rogers", + "Richard Arlen", + "Jobyna Ralston" + ], + "genres": [ + "War" + ] + }, + { + "title": "Winners of the Wilderness", + "year": 1927, + "cast": [ + "Tim McCoy", + "Joan Crawford" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Wolf Fangs", + "year": 1927, + "cast": [ + "Caryl Lincoln", + "Charles Morton" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Wolf's Clothing", + "year": 1927, + "cast": [ + "Monte Blue", + "Patsy Ruth Miller" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Woman on Trial", + "year": 1927, + "cast": [ + "Pola Negri", + "Einar Hanson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Wreck of the Hesperus", + "year": 1927, + "cast": [ + "Sam De Grasse", + "Virginia Bradford", + "Francis Ford", + "Francis Marion", + "Alan Hale", + "Ethel Wales" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Yale vs. Harvard", + "year": 1927, + "cast": [ + "Our Gang", + "kids" + ], + "genres": [ + "Comedy", + "Short" + ] + }, + { + "title": "The Yankee Clipper", + "year": 1927, + "cast": [ + "William Boyd", + "Elinor Fair", + "Junior Coghlan", + "John Miljan" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "4 Devils", + "year": 1928, + "cast": [ + "Janet Gaynor", + "Anders Randolf" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "13 Washington Square", + "year": 1928, + "cast": [ + "Jean Hersholt", + "Alice Joyce" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Abie's Irish Rose", + "year": 1928, + "cast": [ + "Charles \"Buddy\" Rogers", + "Nancy Carroll" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Across the Atlantic", + "year": 1928, + "cast": [ + "Monte Blue", + "Edna Murphy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Across to Singapore", + "year": 1928, + "cast": [ + "Ramón Novarro", + "Joan Crawford" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "The Actress", + "year": 1928, + "cast": [ + "Norma Shearer", + "Owen Moore" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Adorable Cheat", + "year": 1928, + "cast": [ + "Lila Lee", + "Reginald Sheffield" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Adoration", + "year": 1928, + "cast": [ + "Billie Dove", + "Antonio Moreno" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Adventurer", + "year": 1928, + "cast": [ + "Tim McCoy", + "Dorothy Sebastian" + ], + "genres": [ + "Western" + ] + }, + { + "title": "After the Storm", + "year": 1928, + "cast": [ + "Hobart Bosworth", + "Maude George" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Air Circus", + "year": 1928, + "cast": [ + "Arthur Lake", + "Sue Carol" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Air Patrol", + "year": 1928, + "cast": [ + "Al Wilson", + "Elsa Benham" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Alex the Great", + "year": 1928, + "cast": [ + "Richard \"Skeets\" Gallagher", + "Albert Conti" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Alias Jimmy Valentine", + "year": 1928, + "cast": [ + "Lionel Barrymore", + "William Haines" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Alias the Deacon", + "year": 1928, + "cast": [ + "Jean Hersholt", + "June Marlowe" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Apache", + "year": 1928, + "cast": [ + "Margaret Livingston", + "Warner Richmond" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Arizona Cyclone", + "year": 1928, + "cast": [ + "Fred Humes", + "George B. French" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Arizona Days", + "year": 1928, + "cast": [ + "Bob Custer", + "Peggy Montgomery" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Avalanche", + "year": 1928, + "cast": [ + "Jack Holt", + "Olga Baclanova" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Awakening", + "year": 1928, + "cast": [ + "Vilma Bánky", + "Louis Wolheim" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Baby Cyclone", + "year": 1928, + "cast": [ + "Lew Cody", + "Aileen Pringle" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Baby Mine", + "year": 1928, + "cast": [ + "Karl Dane", + "George K. Arthur", + "Charlotte Greenwood" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Barker", + "year": 1928, + "cast": [ + "Milton Sills", + "Dorothy Mackaill" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Battle of the Sexes", + "year": 1928, + "cast": [ + "Jean Hersholt", + "Phyllis Haver" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Beau Broadway", + "year": 1928, + "cast": [ + "Lew Cody", + "Aileen Pringle" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Beau Sabreur", + "year": 1928, + "cast": [ + "Gary Cooper", + "Evelyn Brent", + "Noah Beery" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Beauty and Bullets", + "year": 1928, + "cast": [ + "Ted Wells", + "Duane Thompson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Beggars of Life", + "year": 1928, + "cast": [ + "Wallace Beery", + "Louise Brooks", + "Richard Arlen" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Beware of Bachelors", + "year": 1928, + "cast": [ + "Audrey Ferris", + "William Collier Jr." + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Beware of Blondes", + "year": 1928, + "cast": [ + "Dorothy Revier", + "Matt Moore" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Beware of Married Men", + "year": 1928, + "cast": [ + "Irene Rich", + "Clyde Cook" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Beyond London Lights", + "year": 1928, + "cast": [ + "Adrienne Dore", + "Lee Shumway" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Beyond the Sierras", + "year": 1928, + "cast": [ + "Tim McCoy", + "Polly Moran" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Big City", + "year": 1928, + "cast": [ + "Lon Chaney", + "Betty Compson", + "Marceline Day" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Big Killing", + "year": 1928, + "cast": [ + "Wallace Beery", + "Raymond Hatton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Big Noise", + "year": 1928, + "cast": [ + "Chester Conklin", + "Alice White" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Black Pearl", + "year": 1928, + "cast": [ + "Lila Lee", + "Ray Hallor" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "'Blindfold", + "year": 1928, + "cast": [ + "Lois Moran", + "George O'Brien" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Blockade", + "year": 1928, + "cast": [ + "Anna Q. Nilsson", + "Wallace MacDonald" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Blonde for a Night", + "year": 1928, + "cast": [ + "Marie Prevost", + "Franklin Pangborn" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Blue Danube", + "year": 1928, + "cast": [ + "Leatrice Joy", + "Joseph Schildkraut", + "Nils Asther" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Border Patrol", + "year": 1928, + "cast": [ + "Harry Carey", + "Phillips Smalley" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Boss of Rustler's Roost", + "year": 1928, + "cast": [ + "Don Coleman", + "Ben Corbett" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Branded Man", + "year": 1928, + "cast": [ + "Charles Delaney", + "June Marlowe" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Branded Sombrero", + "year": 1928, + "cast": [ + "Buck Jones", + "Leila Hyams" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Breed of the Sunsets", + "year": 1928, + "cast": [ + "Bob Steele", + "Nancy Drexel" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Bringing Up Father", + "year": 1928, + "cast": [ + "Marie Dressler", + "Polly Moran" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Broadway Daddies", + "year": 1928, + "cast": [ + "Jacqueline Logan", + "Alec B. Francis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Broken Mask", + "year": 1928, + "cast": [ + "Cullen Landis", + "Barbara Bedford" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Bronc Stomper", + "year": 1928, + "cast": [ + "Don Coleman", + "Ben Corbett" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Brotherly Love", + "year": 1928, + "cast": [ + "Karl Dane", + "George K. Arthur" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Buck Privates", + "year": 1928, + "cast": [ + "Lya De Putti", + "Malcolm McGregor" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Burning Bridges", + "year": 1928, + "cast": [ + "Harry Carey", + "William Bailey" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Burning Daylight", + "year": 1928, + "cast": [ + "Milton Sills", + "Doris Kenyon" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Burning the Wind", + "year": 1928, + "cast": [ + "Hoot Gibson", + "Virginia Brown Faire" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Burning Up Broadway", + "year": 1928, + "cast": [ + "Helene Costello", + "Robert Frazer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Bushranger", + "year": 1928, + "cast": [ + "Tim McCoy", + "Ena Gregory" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Butter and Egg Man", + "year": 1928, + "cast": [ + "Jack Mulhall", + "Greta Nissen" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Call of the Heart", + "year": 1928, + "cast": [ + "Joan Alden", + "Edmund Cobb" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Cameraman", + "year": 1928, + "cast": [ + "Buster Keaton", + "Marceline Day" + ], + "genres": [ + "Comedy", + "Romance" + ] + }, + { + "title": "The Cardboard Lover", + "year": 1928, + "cast": [ + "Marion Davies", + "Nils Asther" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Caught in the Fog", + "year": 1928, + "cast": [ + "May McAvoy", + "Conrad Nagel" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Cavalier", + "year": 1928, + "cast": [ + "Richard Talmadge", + "Barbara Bedford" + ], + "genres": [ + "Western" + ] + }, + { + "title": "A Certain Young Man", + "year": 1928, + "cast": [ + "Ramon Novarro", + "Marceline Day" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Charge of the Gauchos", + "year": 1928, + "cast": [ + "Francis X. Bushman", + "Jacqueline Logan" + ], + "genres": [ + "Historical" + ] + }, + { + "title": "The Chaser", + "year": 1928, + "cast": [ + "Harry Langdon", + "Gladys McConnell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Chicago After Midnight", + "year": 1928, + "cast": [ + "Ralph Ince", + "James Mason" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Chicken A La King", + "year": 1928, + "cast": [ + "Nancy Carroll", + "George Meeker" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Chinatown Charlie", + "year": 1928, + "cast": [ + "Louise Lorraine", + "Harry Gribbon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Circus", + "year": 1928, + "cast": [ + "Charles Chaplin" + ], + "genres": [ + "Comedy", + "Adventure" + ] + }, + { + "title": "The Circus Kid", + "year": 1928, + "cast": [ + "Frankie Darro", + "Joe E. Brown" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Circus Rookies", + "year": 1928, + "cast": [ + "Karl Dane", + "George K. Arthur" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Clean-Up Man", + "year": 1928, + "cast": [ + "Ted Wells", + "Peggy O'Day" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Clothes Make the Woman", + "year": 1928, + "cast": [ + "Eve Southern", + "Walter Pidgeon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Code of the Scarlet", + "year": 1928, + "cast": [ + "Ken Maynard", + "Gladys McConnell" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Cohens and the Kellys in Paris", + "year": 1928, + "cast": [ + "J. Farrell MacDonald", + "Kate Price" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Companionate Marriage", + "year": 1928, + "cast": [ + "Betty Bronson", + "William Welsh" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Comrades", + "year": 1928, + "cast": [ + "Donald Keith", + "Helene Costello" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Coney Island", + "year": 1928, + "cast": [ + "Lois Wilson", + "Eugene Strong" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Conquest", + "year": 1928, + "cast": [ + "Monte Blue", + "H. B. Warner" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Cop", + "year": 1928, + "cast": [ + "William Boyd", + "Jacqueline Logan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Cossacks", + "year": 1928, + "cast": [ + "John Gilbert", + "Renée Adorée" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Count of Ten", + "year": 1928, + "cast": [ + "Charles Ray", + "Jobyna Ralston" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Court Martial", + "year": 1928, + "cast": [ + "Jack Holt", + "Betty Compson" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Cowboy Kid", + "year": 1928, + "cast": [ + "Rex Bell", + "Brooks Benedict" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Craig's Wife", + "year": 1928, + "cast": [ + "Irene Rich", + "Warner Baxter" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Crash", + "year": 1928, + "cast": [ + "Milton Sills", + "Thelma Todd" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Crimson Canyon", + "year": 1928, + "cast": [ + "Ted Wells", + "Lotus Thompson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Crimson City", + "year": 1928, + "cast": [ + "Myrna Loy", + "Leila Hyams" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Crooks Can't Win", + "year": 1928, + "cast": [ + "Ralph Lewis", + "Thelma Hill" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Crowd", + "year": 1928, + "cast": [ + "Eleanor Boardman", + "James Murray" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Danger Rider", + "year": 1928, + "cast": [ + "Hoot Gibson", + "Monte Montague" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Danger Street", + "year": 1928, + "cast": [ + "Warner Baxter", + "Martha Sleeper" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Daredevil's Reward", + "year": 1928, + "cast": [ + "Tom Mix", + "Natalie Joyce" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Dead Man's Curve", + "year": 1928, + "cast": [ + "Douglas Fairbanks Jr.", + "Sally Blane" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Desert Bride", + "year": 1928, + "cast": [ + "Betty Compson", + "Allan Forrest" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Detectives", + "year": 1928, + "cast": [ + "Karl Dane", + "George K. Arthur", + "Marceline Day" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Devil's Skipper", + "year": 1928, + "cast": [ + "Belle Bennett", + "Montagu Love" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Devil's Trademark", + "year": 1928, + "cast": [ + "Belle Bennett", + "William V. Mong" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Diamond Handcuffs", + "year": 1928, + "cast": [ + "Eleanor Boardman", + "Lawrence Gray" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Divine Woman", + "year": 1928, + "cast": [ + "Greta Garbo", + "Lars Hanson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Divine Sinner", + "year": 1928, + "cast": [ + "Vera Reynolds", + "Nigel De Brulier", + "Carole Lombard" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Do Your Duty", + "year": 1928, + "cast": [ + "Charles Murray", + "Lucien Littlefield" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Docks of New York", + "year": 1928, + "cast": [ + "George Bancroft", + "Betty Compson", + "Olga Baclanova" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Domestic Meddlers", + "year": 1928, + "cast": [ + "Claire Windsor", + "Lawrence Gray", + "Roy D'Arcy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Domestic Troubles", + "year": 1928, + "cast": [ + "Clyde Cook", + "Louise Fazenda" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Don't Marry", + "year": 1928, + "cast": [ + "Lois Moran", + "Neil Hamilton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Doomsday", + "year": 1928, + "cast": [ + "Florence Vidor", + "Gary Cooper" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Drag Net", + "year": 1928, + "cast": [ + "George Bancroft", + "Evelyn Brent", + "William Powell" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Dream of Love", + "year": 1928, + "cast": [ + "Joan Crawford", + "Nils Asther" + ], + "genres": [ + "Historical", + "Drama" + ] + }, + { + "title": "Dressed to Kill", + "year": 1928, + "cast": [ + "Edmund Lowe", + "Mary Astor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Driftin' Sands", + "year": 1928, + "cast": [ + "Bob Steele", + "Nina Quartero" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Driftwood", + "year": 1928, + "cast": [ + "Don Alvarado", + "Marceline Day" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Drums of Love", + "year": 1928, + "cast": [ + "Mary Philbin", + "Lionel Barrymore" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Dry Martini", + "year": 1928, + "cast": [ + "Mary Astor", + "Sally Eilers" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Easy Come, Easy Go", + "year": 1928, + "cast": [ + "Richard Dix", + "Nancy Carroll" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Escape", + "year": 1928, + "cast": [ + "William Russell", + "Virginia Valli" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Excess Baggage", + "year": 1928, + "cast": [ + "William Haines", + "Josephine Dunn" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Fall of the House of Usher", + "year": 1928, + "cast": [ + "Herbert Stern" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Farmer's Daughter", + "year": 1928, + "cast": [ + "Marjorie Beebe", + "Frank Albertson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Fashion Madness", + "year": 1928, + "cast": [ + "Claire Windsor", + "Reed Howes" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Fazil", + "year": 1928, + "cast": [ + "Charles Farrell", + "Greta Nissen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Fearless Rider", + "year": 1928, + "cast": [ + "Fred Humes", + "Barbara Worth" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Feel My Pulse", + "year": 1928, + "cast": [ + "Bebe Daniels", + "Richard Arlen", + "William Powell" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "The Fifty-Fifty Girl", + "year": 1928, + "cast": [ + "Bebe Daniels", + "James Hall" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Fightin' Redhead", + "year": 1928, + "cast": [ + "Buzz Barton", + "Duane Thompson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Finders Keepers", + "year": 1928, + "cast": [ + "Laura La Plante", + "John Harron" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The First Kiss", + "year": 1928, + "cast": [ + "Fay Wray", + "Gary Cooper" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Five and Ten Cent Annie", + "year": 1928, + "cast": [ + "Louise Fazenda", + "Clyde Cook" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Five O'Clock Girl", + "year": 1928, + "cast": [ + "Charles King", + "Marion Davies", + "Joel McCrea" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Fleet's In", + "year": 1928, + "cast": [ + "Clara Bow", + "James Hall", + "Jack Oakie" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Fleetwing", + "year": 1928, + "cast": [ + "Barry Norton", + "Dorothy Janis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Flying Romeos", + "year": 1928, + "cast": [ + "Charles Murray", + "Fritzi Ridgeway" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Fools for Luck", + "year": 1928, + "cast": [ + "W. C. Fields", + "Chester Conklin", + "Sally Blane" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Forbidden Hours", + "year": 1928, + "cast": [ + "Ramon Novarro", + "Renée Adorée" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Foreign Legion", + "year": 1928, + "cast": [ + "Norman Kerry", + "Lewis Stone", + "Mary Nolan" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Forgotten Faces", + "year": 1928, + "cast": [ + "Clive Brook", + "Mary Brian" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Four-Footed Ranger", + "year": 1928, + "cast": [ + "Edmund Cobb", + "Marjorie Bonner" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Four Sons", + "year": 1928, + "cast": [ + "Margaret Mann", + "James Hall" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Four Walls", + "year": 1928, + "cast": [ + "John Gilbert", + "Joan Crawford" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Fourflusher", + "year": 1928, + "cast": [ + "George J. Lewis", + "Marian Nixon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Freedom of the Press", + "year": 1928, + "cast": [ + "Lewis Stone", + "Marceline Day" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Gang War", + "year": 1928, + "cast": [ + "Jack Pickford", + "Olive Borden" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Garden of Eden", + "year": 1928, + "cast": [ + "Corinne Griffith", + "Louise Dresser" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Gate Crasher", + "year": 1928, + "cast": [ + "Glenn Tryon", + "Patsy Ruth Miller" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Gateway of the Moon", + "year": 1928, + "cast": [ + "Dolores del Río", + "Walter Pidgeon" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Gentleman Prefer Blondes", + "year": 1928, + "cast": [ + "Ruth Taylor", + "Alice White" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Girl He Didn't Buy", + "year": 1928, + "cast": [ + "Pauline Garon", + "Rosemary Cooper" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Girl in Every Port", + "year": 1928, + "cast": [ + "Victor McLaglen", + "Robert Armstrong", + "Louise Brooks" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Glorious Betsy", + "year": 1928, + "cast": [ + "Dolores Costello", + "Conrad Nagel" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Godless Girl", + "year": 1928, + "cast": [ + "Lina Basquette", + "Tom Keene" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Golf Widows", + "year": 1928, + "cast": [ + "Vera Reynolds", + "Harrison Ford" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Good-Bye Kiss", + "year": 1928, + "cast": [ + "Johnny Burke", + "Sally Eilers" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Good Morning, Judge", + "year": 1928, + "cast": [ + "Reginald Denny", + "Mary Nolan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Grain of Dust", + "year": 1928, + "cast": [ + "Ricardo Cortez", + "Claire Windsor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Greased Lightning", + "year": 1928, + "cast": [ + "Ted Wells", + "Betty Caldwell" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Green Grass Widows", + "year": 1928, + "cast": [ + "Gertrude Olmstead", + "Hedda Hopper" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Guardians of the Wild", + "year": 1928, + "cast": [ + "Jack Perrin", + "Ethlyne Clair" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Half a Bride", + "year": 1928, + "cast": [ + "Esther Ralston", + "Gary Cooper" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Hangman's House", + "year": 1928, + "cast": [ + "Victor McLaglen", + "June Collyer" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "Happiness Ahead", + "year": 1928, + "cast": [ + "Colleen Moore", + "Edmund Lowe" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Harold Teen", + "year": 1928, + "cast": [ + "Arthur Lake", + "Mary Brian" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Hawk's Nest", + "year": 1928, + "cast": [ + "Milton Sills", + "Doris Kenyon" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Haunted House", + "year": 1928, + "cast": [ + "Larry Kent", + "Thelma Todd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Head Man", + "year": 1928, + "cast": [ + "Charlie Murray", + "Loretta Young" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Heart of Broadway", + "year": 1928, + "cast": [ + "Pauline Garon", + "Robert Agnew" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Heart of a Follies Girl", + "year": 1928, + "cast": [ + "Billie Dove", + "Larry Kent" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Heart to Heart", + "year": 1928, + "cast": [ + "Mary Astor", + "Lloyd Hughes" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Heart Trouble", + "year": 1928, + "cast": [ + "Harry Langdon", + "Doris Dawson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hello Cheyenne", + "year": 1928, + "cast": [ + "Tom Mix", + "Caryl Lincoln" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Her Summer Hero", + "year": 1928, + "cast": [ + "Hugh Trevor", + "Harold Goodwin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "His Private Life", + "year": 1928, + "cast": [ + "Adolphe Menjou", + "Kathryn Carver" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "His Tiger Lady", + "year": 1928, + "cast": [ + "Adolphe Menjou", + "Evelyn Brent" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hit of the Show", + "year": 1928, + "cast": [ + "Joe E. Brown", + "Gertrude Olmstead" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Home Towners", + "year": 1928, + "cast": [ + "Richard Bennett", + "Doris Kenyon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Homesick", + "year": 1928, + "cast": [ + "Sammy Cohen", + "Marjorie Beebe" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Honeymoon", + "year": 1928, + "cast": [ + "Polly Moran", + "Harry Gribbon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Honeymoon Flats", + "year": 1928, + "cast": [ + "George J. Lewis", + "Dorothy Gulliver" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Honor Bound", + "year": 1928, + "cast": [ + "George O'Brien", + "Estelle Taylor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Horseman of the Plains", + "year": 1928, + "cast": [ + "Tom Mix", + "Sally Blane" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Hot News", + "year": 1928, + "cast": [ + "Bebe Daniels", + "Neil Hamilton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Hound of Silver Creek", + "year": 1928, + "cast": [ + "Edmund Cobb", + "Gloria Grey" + ], + "genres": [ + "Western" + ] + }, + { + "title": "How to Handle Women", + "year": 1928, + "cast": [ + "Glenn Tryon", + "Marian Nixon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "In Old Arizona", + "year": 1928, + "cast": [ + "Warner Baxter", + "Edmund Lowe", + "Dorothy Burgess" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Interference", + "year": 1928, + "cast": [ + "William Powell", + "Evelyn Brent", + "Clive Brook" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Jazz Mad", + "year": 1928, + "cast": [ + "Jean Hersholt", + "Marian Nixon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Just Married", + "year": 1928, + "cast": [ + "James Hall", + "Ruth Taylor" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "King Cowboy", + "year": 1928, + "cast": [ + "Tom Mix", + "Sally Blane" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Kit Carson", + "year": 1928, + "cast": [ + "Fred Thomson", + "Nora Lane" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Ladies' Night in a Turkish Bath", + "year": 1928, + "cast": [ + "Dorothy Mackaill", + "Sylvia Ashton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Ladies of the Mob", + "year": 1928, + "cast": [ + "Clara Bow", + "Richard Arlen", + "Helen Lynch", + "Mary Alden" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Lady Be Good", + "year": 1928, + "cast": [ + "Dorothy Mackaill", + "Jack Mulhall" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Lady of Chance", + "year": 1928, + "cast": [ + "Norma Shearer", + "Lowell Sherman" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Lady Raffles", + "year": 1928, + "cast": [ + "Estelle Taylor", + "Roland Drew" + ], + "genres": [ + "Comedy", + "Crime" + ] + }, + { + "title": "Land of the Silver Fox", + "year": 1928, + "cast": [ + "Rin Tin Tin", + "Leila Hyams" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Last Command", + "year": 1928, + "cast": [ + "Emil Jannings", + "Evelyn Brent", + "William Powell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Latest from Paris", + "year": 1928, + "cast": [ + "Norma Shearer", + "Ralph Forbes" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Laugh, Clown, Laugh", + "year": 1928, + "cast": [ + "Lon Chaney", + "Loretta Young" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Law of the Range", + "year": 1928, + "cast": [ + "Tim McCoy", + "Joan Crawford", + "Rex Lease" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Law's Lash", + "year": 1928, + "cast": [ + "Robert Ellis", + "Mary Mayberry" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Legion of the Condemned", + "year": 1928, + "cast": [ + "Fay Wray", + "Gary Cooper" + ], + "genres": [ + "War" + ] + }, + { + "title": "Let 'Er Go Gallegher", + "year": 1928, + "cast": [ + "Frank Coghlan Jr.", + "Harrison Ford" + ], + "genres": [ + "Comedy", + "Crime" + ] + }, + { + "title": "Lights of New York", + "year": 1928, + "cast": [ + "Helene Costello", + "Cullen Landis", + "Eugene Pallette" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Lilac Time", + "year": 1928, + "cast": [ + "Colleen Moore", + "Gary Cooper" + ], + "genres": [ + "War" + ] + }, + { + "title": "The Lion and the Mouse", + "year": 1928, + "cast": [ + "May McAvoy", + "Lionel Barrymore" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Little Buckaroo", + "year": 1928, + "cast": [ + "Buzz Barton", + "Milburn Morante" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Little Shepherd of Kingdom Come", + "year": 1928, + "cast": [ + "Richard Barthelmess", + "Molly O'Day" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Little Snob", + "year": 1928, + "cast": [ + "May McAvoy", + "Robert Frazer" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Little Wild Girl", + "year": 1928, + "cast": [ + "Lila Lee", + "Cullen Landis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Little Wildcat", + "year": 1928, + "cast": [ + "Audrey Ferris", + "James Murray" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Little Yellow House", + "year": 1928, + "cast": [ + "Orville Caldwell", + "Martha Sleeper" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Lookout Girl", + "year": 1928, + "cast": [ + "Jacqueline Logan", + "Ian Keith" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Love and Learn", + "year": 1928, + "cast": [ + "Esther Ralston", + "Lane Chandler" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Love Me and the World Is Mine", + "year": 1928, + "cast": [ + "Mary Philbin", + "Betty Compson" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Loves of an Actress", + "year": 1928, + "cast": [ + "Pola Negri", + "Nils Asther" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Love Hungry", + "year": 1928, + "cast": [ + "Lois Moran", + "Marjorie Beebe" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Love Thief", + "year": 1928, + "cast": [ + "Norman Kerry", + "Greta Nissen", + "Marc MacDermott" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Mad Hour", + "year": 1928, + "cast": [ + "Sally O'Neil", + "Alice White" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Magnificent Flirt", + "year": 1928, + "cast": [ + "Florence Vidor", + "Loretta Young" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Manhattan Cocktail", + "year": 1928, + "cast": [ + "Nancy Carroll", + "Richard Arlen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Manhattan Cowboy", + "year": 1928, + "cast": [ + "Bob Custer", + "Lafe McKee" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Man from Headquarters", + "year": 1928, + "cast": [ + "Cornelius Keefe", + "Edith Roberts" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Man in the Rough", + "year": 1928, + "cast": [ + "Bob Steele", + "Marjorie King" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Man Who Laughs", + "year": 1928, + "cast": [ + "Mary Philbin", + "Conrad Veidt" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Marriage by Contract", + "year": 1928, + "cast": [ + "Patsy Ruth Miller", + "Lawrence Gray" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Marry the Girl", + "year": 1928, + "cast": [ + "Barbara Bedford", + "Robert Ellis", + "DeWitt Jennings" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Masks of the Devil", + "year": 1928, + "cast": [ + "John Gilbert", + "Alma Rubens" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Matinee Idol", + "year": 1928, + "cast": [ + "Bessie Love", + "Johnnie Walker" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Mating Call", + "year": 1928, + "cast": [ + "Thomas Meighan", + "Evelyn Brent" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Me, Gangster", + "year": 1928, + "cast": [ + "June Collyer", + "Don Terry", + "Anders Randolf" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Midnight Life", + "year": 1928, + "cast": [ + "Francis X. Bushman", + "Gertrude Olmstead" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Midnight Madness", + "year": 1928, + "cast": [ + "Clive Brook", + "Jacqueline Logan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Midnight Rose", + "year": 1928, + "cast": [ + "Lya De Putti", + "Kenneth Harlan" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Midnight Taxi", + "year": 1928, + "cast": [ + "Antonio Moreno", + "Myrna Loy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Modern Mothers", + "year": 1928, + "cast": [ + "Helene Chadwick", + "Douglas Fairbanks Jr." + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Moran of the Marines", + "year": 1928, + "cast": [ + "Richard Dix", + "Ruth Elder" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Mother Knows Best", + "year": 1928, + "cast": [ + "Madge Bellamy", + "Louise Dresser", + "Barry Norton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Mother Machree", + "year": 1928, + "cast": [ + "Belle Bennett", + "Neil Hamilton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "My Man", + "year": 1928, + "cast": [ + "Fanny Brice", + "Edna Murphy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Mysterious Lady", + "year": 1928, + "cast": [ + "Greta Garbo", + "Conrad Nagel" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "Name the Woman", + "year": 1928, + "cast": [ + "Anita Stewart", + "Huntley Gordon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Nameless Men", + "year": 1928, + "cast": [ + "Claire Windsor", + "Antonio Moreno" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Naughty Baby", + "year": 1928, + "cast": [ + "Alice White", + "Jack Mulhall" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Naughty Duchess", + "year": 1928, + "cast": [ + "Eve Southern", + "H. B. Warner" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "News Parade", + "year": 1928, + "cast": [ + "Nick Stuart", + "Sally Phipps" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Night Bird", + "year": 1928, + "cast": [ + "Reginald Denny", + "Corliss Palmer" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Night of Mystery", + "year": 1928, + "cast": [ + "Adolphe Menjou", + "Evelyn Brent" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Night Watch", + "year": 1928, + "cast": [ + "Billie Dove", + "Paul Lukas" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "No Other Woman", + "year": 1928, + "cast": [ + "Dolores del Río", + "Don Alvarado" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Noah's Ark", + "year": 1928, + "cast": [ + "George O'Brien", + "Alois Reiser" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "None but the Brave", + "year": 1928, + "cast": [ + "Charles Morton", + "Sally Phipps" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Noose", + "year": 1928, + "cast": [ + "Richard Barthelmess", + "Montagu Love" + ], + "genres": [] + }, + { + "title": "Nothing to Wear", + "year": 1928, + "cast": [ + "Jacqueline Logan", + "Theodore von Eltz" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Object: Alimony", + "year": 1928, + "cast": [ + "Lois Wilson", + "Ethel Grey Terry" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Oh, Kay!", + "year": 1928, + "cast": [ + "Colleen Moore", + "Lawrence Gray" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Old Code", + "year": 1928, + "cast": [ + "Walter McGrail", + "Lillian Rich" + ], + "genres": [ + "Historical" + ] + }, + { + "title": "On Trial", + "year": 1928, + "cast": [ + "Pauline Frederick", + "Bert Lytell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Our Dancing Daughters", + "year": 1928, + "cast": [ + "Joan Crawford", + "Nils Asther" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Outcast", + "year": 1928, + "cast": [ + "Corinne Griffith", + "Edmund Lowe" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Out of the Ruins", + "year": 1928, + "cast": [ + "Richard Barthelmess", + "Marian Nixon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Painted Post", + "year": 1928, + "cast": [ + "Tom Mix", + "Natalie Kingston" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Partners in Crime", + "year": 1928, + "cast": [ + "Wallace Beery", + "Raymond Hatton", + "Mary Brian" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Patriot", + "year": 1928, + "cast": [ + "Emil Jannings", + "Florence Vidor" + ], + "genres": [ + "Historical" + ] + }, + { + "title": "The Patsy", + "year": 1928, + "cast": [ + "Marion Davies", + "Orville Caldwell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Pay as You Enter", + "year": 1928, + "cast": [ + "Louise Fazenda", + "Clyde Cook" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Perfect Crime", + "year": 1928, + "cast": [ + "Clive Brook", + "Irene Rich" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "A Perfect Gentleman", + "year": 1928, + "cast": [ + "Monty Banks", + "Ernest Wood", + "Henry Barrows", + "Ruth Dwyer" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Phantom City", + "year": 1928, + "cast": [ + "Ken Maynard", + "Eugenia Gilbert" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Phantom Flyer", + "year": 1928, + "cast": [ + "Al Wilson", + "Buck Connors" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Phyllis of the Follies", + "year": 1928, + "cast": [ + "Alice Day", + "Matt Moore" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Pinto Kid", + "year": 1928, + "cast": [ + "Buzz Barton", + "Frank Rice" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Pioneer Scout", + "year": 1928, + "cast": [ + "Fred Thomson", + "Nora Lane" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Plane Crazy", + "year": 1928, + "cast": [], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "Plastered in Paris", + "year": 1928, + "cast": [ + "Sammy Cohen", + "Jack Pennick" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Play Girl", + "year": 1928, + "cast": [ + "Madge Bellamy", + "Johnny Mack Brown" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Powder My Back", + "year": 1928, + "cast": [ + "Irene Rich", + "Audrey Ferris" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Power", + "year": 1928, + "cast": [ + "William Boyd", + "Jacqueline Logan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Power of the Press", + "year": 1928, + "cast": [ + "Douglas Fairbanks Jr.", + "Jobyna Ralston" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Prep and Pep", + "year": 1928, + "cast": [ + "David Rollins", + "Nancy Drexel" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Price of Fear", + "year": 1928, + "cast": [ + "Bill Cody", + "Duane Thompson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Prowlers of the Sea", + "year": 1928, + "cast": [ + "Carmel Myers", + "Ricardo Cortez" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Put 'Em Up", + "year": 1928, + "cast": [ + "Gloria Grey", + "Tom London" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Quick Triggers", + "year": 1928, + "cast": [ + "Fred Humes", + "Derelys Perdue" + ], + "genres": [ + "Western" + ] + }, + { + "title": "A Race for Life", + "year": 1928, + "cast": [ + "Rin Tin Tin", + "Virginia Brown Faire" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Racket", + "year": 1928, + "cast": [ + "Thomas Meighan", + "Marie Prevost" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Ramona", + "year": 1928, + "cast": [ + "Dolores del Río", + "Warner Baxter" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Ransom", + "year": 1928, + "cast": [ + "Lois Wilson", + "Edmund Burns" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Rawhide Kid", + "year": 1928, + "cast": [ + "Hoot Gibson", + "Georgia Hale" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Red Dance", + "year": 1928, + "cast": [ + "Dolores del Río", + "Charles Farrell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Red Hair", + "year": 1928, + "cast": [ + "Clara Bow", + "Lane Chandler" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Red Hot Speed", + "year": 1928, + "cast": [ + "Reginald Denny", + "Alice Day" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Red Lips", + "year": 1928, + "cast": [ + "Marian Nixon", + "Charles \"Buddy\" Rogers" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Red Riders of Canada", + "year": 1928, + "cast": [ + "Patsy Ruth Miller", + "Charles Byer" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Red Wine", + "year": 1928, + "cast": [ + "June Collyer", + "Conrad Nagel" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Restless Youth", + "year": 1928, + "cast": [ + "Marceline Day", + "Ralph Forbes" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Revenge", + "year": 1928, + "cast": [ + "Dolores del Río", + "James A. Marcus" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Riders of the Dark", + "year": 1928, + "cast": [ + "Tim McCoy", + "Dorothy Dwan" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Riding Renegade", + "year": 1928, + "cast": [ + "Bob Steele", + "Nancy Drexel" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Riley the Cop", + "year": 1928, + "cast": [ + "J. Farrell MacDonald", + "Nancy Drexel" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Rinty of the Desert", + "year": 1928, + "cast": [ + "Rin Tin Tin", + "Audrey Ferris" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The River Pirate", + "year": 1928, + "cast": [ + "Victor McLaglen", + "Lois Moran" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Road House", + "year": 1928, + "cast": [ + "Maria Alba", + "Lionel Barrymore" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Road to Ruin", + "year": 1928, + "cast": [ + "Helen Foster", + "Grant Withers" + ], + "genres": [] + }, + { + "title": "Romance of the Underworld", + "year": 1928, + "cast": [ + "Mary Astor", + "John Boles" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Rose-Marie", + "year": 1928, + "cast": [ + "Joan Crawford", + "James Murray" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Rough Ridin' Red", + "year": 1928, + "cast": [ + "Buzz Barton", + "Frank Rice" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Runaway Girls", + "year": 1928, + "cast": [ + "Shirley Mason", + "Hedda Hopper" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Rush Hour", + "year": 1928, + "cast": [ + "Marie Prevost", + "Seena Owen" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Sadie Thompson", + "year": 1928, + "cast": [ + "Gloria Swanson", + "Lionel Barrymore" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sailors' Wives", + "year": 1928, + "cast": [ + "Mary Astor", + "Lloyd Hughes" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Sally of the Scandals", + "year": 1928, + "cast": [ + "Bessie Love", + "Irene Lambert" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sally's Shoulders", + "year": 1928, + "cast": [ + "Lois Wilson", + "Huntley Gordon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Sawdust Paradise", + "year": 1928, + "cast": [ + "Esther Ralston", + "Reed Howes" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Say It with Sables", + "year": 1928, + "cast": [ + "Francis X. Bushman", + "Helene Chadwick" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Scarlet Dove", + "year": 1928, + "cast": [ + "Lowell Sherman", + "Josephine Borio" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Scarlet Lady", + "year": 1928, + "cast": [ + "Lya de Putti", + "Don Alvarado" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Secret Hour", + "year": 1928, + "cast": [ + "Pola Negri", + "Jean Hersholt" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Shadows of the Night", + "year": 1928, + "cast": [ + "Lawrence Gray", + "Louise Lorraine" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Shady Lady", + "year": 1928, + "cast": [ + "Phyllis Haver", + "Louis Wolheim" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Sharp Shooters", + "year": 1928, + "cast": [ + "George O'Brien", + "Lois Moran" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Shield of Honor", + "year": 1928, + "cast": [ + "Neil Hamilton", + "Dorothy Gulliver" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Ships of the Night", + "year": 1928, + "cast": [ + "Jacqueline Logan", + "Sôjin Kamiyama", + "Jack Mower" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Shopworn Angel", + "year": 1928, + "cast": [ + "Nancy Carroll", + "Gary Cooper" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Show Folks", + "year": 1928, + "cast": [ + "Lina Basquette", + "Carole Lombard" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Show Girl", + "year": 1928, + "cast": [ + "Alice White", + "Donald Reed" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Show People", + "year": 1928, + "cast": [ + "Marion Davies", + "William Haines" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Showdown", + "year": 1928, + "cast": [ + "George Bancroft", + "Evelyn Brent" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Sideshow", + "year": 1928, + "cast": [ + "Marie Prevost", + "Ralph Graves" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Singing Fool", + "year": 1928, + "cast": [ + "Al Jolson", + "Betty Bronson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sinners in Love", + "year": 1928, + "cast": [ + "Olive Borden", + "Huntley Gordon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sinner's Parade", + "year": 1928, + "cast": [ + "Victor Varconi", + "Dorothy Revier" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Sins of the Fathers", + "year": 1928, + "cast": [ + "Emil Jannings", + "Ruth Chatterton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sisters of Eve", + "year": 1928, + "cast": [ + "Anita Stewart", + "Betty Blythe" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Skinner's Big Idea", + "year": 1928, + "cast": [ + "Bryant Washburn", + "William Orlamond" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Skyscraper", + "year": 1928, + "cast": [ + "William Boyd", + "Alan Hale" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Sky Rider", + "year": 1928, + "cast": [ + "Gareth Hughes", + "Josephine Hill" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Smart Set", + "year": 1928, + "cast": [ + "William Haines", + "Jack Holt" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "So This Is Love?", + "year": 1928, + "cast": [ + "Shirley Mason", + "William Collier Jr." + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Soft Living", + "year": 1928, + "cast": [ + "Madge Bellamy", + "Johnny Mack Brown" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Someone to Love", + "year": 1928, + "cast": [ + "Charles \"Buddy\" Rogers", + "Mary Brian" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Something Always Happens", + "year": 1928, + "cast": [ + "Esther Ralston", + "Neil Hamilton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Son of the Golden West", + "year": 1928, + "cast": [ + "Tom Mix", + "Sharon Lynn" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Speedy", + "year": 1928, + "cast": [ + "Harold Lloyd", + "Ann Christy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Speed Classic", + "year": 1928, + "cast": [ + "Rex Lease", + "Mildred Harris" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Sporting Age", + "year": 1928, + "cast": [ + "Belle Bennett", + "Holmes Herbert" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sporting Goods", + "year": 1928, + "cast": [ + "Richard Dix", + "Ford Sterling" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Square Crooks", + "year": 1928, + "cast": [ + "Robert Armstrong", + "Johnny Mack Brown" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Stand and Deliver", + "year": 1928, + "cast": [ + "Rod La Rocque", + "Lupe Velez" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "State Street Sadie", + "year": 1928, + "cast": [ + "Conrad Nagel", + "Myrna Loy" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Steamboat Bill, Jr.", + "year": 1928, + "cast": [ + "Buster Keaton", + "Marion Byron" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Steamboat Willie", + "year": 1928, + "cast": [], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "Stocks and Blondes", + "year": 1928, + "cast": [ + "Gertrude Astor", + "Jacqueline Logan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Stolen Love", + "year": 1928, + "cast": [ + "Marceline Day", + "Rex Lease" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Stool Pigeon", + "year": 1928, + "cast": [ + "Olive Borden", + "Charles Delaney" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Stop That Man!", + "year": 1928, + "cast": [ + "Arthur Lake", + "Barbara Kent" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Street Angel", + "year": 1928, + "cast": [ + "Janet Gaynor", + "Charles Farrell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Street of Illusion", + "year": 1928, + "cast": [ + "Virginia Valli", + "Ian Keith" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Street of Sin", + "year": 1928, + "cast": [ + "Olga Baclanova", + "Emil Jannings", + "Fay Wray" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Submarine", + "year": 1928, + "cast": [ + "Jack Holt", + "Dorothy Revier" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Sunset Legion", + "year": 1928, + "cast": [ + "Fred Thomson", + "Edna Murphy" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Take Me Home", + "year": 1928, + "cast": [ + "Bebe Daniels", + "Neil Hamilton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Taking a Chance", + "year": 1928, + "cast": [ + "Rex Bell", + "Lola Todd" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Taxi 13", + "year": 1928, + "cast": [ + "Chester Conklin", + "Ethel Wales" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Telling the World", + "year": 1928, + "cast": [ + "William Haines", + "Anita Page" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Tempest", + "year": 1928, + "cast": [ + "John Barrymore", + "Camilla Horn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Tenderloin", + "year": 1928, + "cast": [ + "Dolores Costello", + "Conrad Nagel" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Terror", + "year": 1928, + "cast": [ + "May McAvoy", + "Edward Everett Horton" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Texas Tornado", + "year": 1928, + "cast": [ + "Tom Tyler", + "Frankie Darro" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Thanks for the Buggy Ride", + "year": 1928, + "cast": [ + "Laura La Plante", + "Glenn Tryon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "That Certain Thing", + "year": 1928, + "cast": [ + "Viola Dana", + "Ralph Graves" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "That's My Daddy", + "year": 1928, + "cast": [ + "Reginald Denny", + "Barbara Kent", + "Lillian Rich" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Thief in the Dark", + "year": 1928, + "cast": [ + "George Meeker", + "Doris Hill" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Their Hour", + "year": 1928, + "cast": [ + "John Harron", + "Dorothy Sebastian" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Three-Ring Marriage", + "year": 1928, + "cast": [ + "Mary Astor", + "Lloyd Hughes" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Three Sinners", + "year": 1928, + "cast": [ + "Pola Negri", + "Warner Baxter", + "Olga Baclanova" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Three Weekends", + "year": 1928, + "cast": [ + "Clara Bow", + "Neil Hamilton" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Through the Breakers", + "year": 1928, + "cast": [ + "Margaret Livingston", + "Holmes Herbert" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Thunder Riders", + "year": 1928, + "cast": [ + "Ted Wells", + "Charlotte Stevens" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Tillie's Punctured Romance", + "year": 1928, + "cast": [ + "W. C. Fields", + "Louise Fazenda", + "Chester Conklin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Tracked", + "year": 1928, + "cast": [ + "Sam Nelson", + "Caryl Lincoln" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Trail of '98", + "year": 1928, + "cast": [ + "Dolores del Río", + "Ralph Forbes" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Terror Mountain", + "year": 1928, + "cast": [ + "Tom Tyler", + "Frankie Darro" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Tropic Madness", + "year": 1928, + "cast": [ + "Leatrice Joy", + "Lena Malena" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Tropical Nights", + "year": 1928, + "cast": [ + "Patsy Ruth Miller", + "Malcolm McGregor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Two Lovers", + "year": 1928, + "cast": [ + "Vilma Bánky", + "Ronald Colman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Two Outlaws", + "year": 1928, + "cast": [ + "Jack Perrin", + "Kathleen Collins" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Tyrant of Red Gulch", + "year": 1928, + "cast": [ + "Tom Tyler", + "Frankie Darro" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Under the Black Eagle", + "year": 1928, + "cast": [ + "Ralph Forbes", + "Marceline Day" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Under the Tonto Rim", + "year": 1928, + "cast": [ + "Richard Arlen", + "Mary Brian" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Undressed", + "year": 1928, + "cast": [ + "David Torrence", + "Hedda Hopper" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Valley of Hunted Men", + "year": 1928, + "cast": [ + "Jay Wilsey", + "Oscar Apfel" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Vamping Venus", + "year": 1928, + "cast": [ + "Charles Murray", + "Louise Fazenda", + "Thelma Todd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Vanishing Pioneer", + "year": 1928, + "cast": [ + "Jack Holt", + "Sally Blane", + "William Powell" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Varsity", + "year": 1928, + "cast": [ + "Charles \"Buddy\" Rogers", + "Mary Brian" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Viking", + "year": 1928, + "cast": [ + "Pauline Starke", + "Donald Crisp" + ], + "genres": [ + "Historical" + ] + }, + { + "title": "Virgin Lips", + "year": 1928, + "cast": [ + "Olive Borden", + "John Boles" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Wagon Show", + "year": 1928, + "cast": [ + "Ken Maynard", + "Ena Gregory" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Walking Back", + "year": 1928, + "cast": [ + "Sue Carol", + "Ivan Lebedeff" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Wallflowers", + "year": 1928, + "cast": [ + "Hugh Trevor", + "Mabel Julienne Scott" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Waterfront", + "year": 1928, + "cast": [ + "Dorothy Mackaill", + "Jack Mulhall" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Water Hole", + "year": 1928, + "cast": [ + "Jack Holt", + "Nancy Carroll" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Way of the Strong", + "year": 1928, + "cast": [ + "Mitchell Lewis", + "Alice Day" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "We Americans", + "year": 1928, + "cast": [ + "George Sidney", + "Patsy Ruth Miller" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "We Faw Down", + "year": 1928, + "cast": [ + "Stan Laurel", + "Oliver Hardy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Wedding March", + "year": 1928, + "cast": [ + "Erich von Stroheim", + "Fay Wray" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "West of Zanzibar", + "year": 1928, + "cast": [ + "Lon Chaney", + "Lionel Barrymore" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "West of Santa Fe", + "year": 1928, + "cast": [ + "Bob Custer", + "Peggy Montgomery" + ], + "genres": [ + "Western" + ] + }, + { + "title": "West Point", + "year": 1928, + "cast": [ + "William Haines", + "Joan Crawford" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "What a Night!", + "year": 1928, + "cast": [ + "Bebe Daniels", + "Neil Hamilton", + "William Austin" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "What Price Beauty?", + "year": 1928, + "cast": [ + "Nita Naldi", + "Natacha Rambova" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Wheel of Chance", + "year": 1928, + "cast": [ + "Richard Barthelmess", + "Bodil Rosing" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "When the Law Rides", + "year": 1928, + "cast": [ + "Tom Tyler", + "Frankie Darro" + ], + "genres": [ + "Western" + ] + }, + { + "title": "While the City Sleeps", + "year": 1928, + "cast": [ + "Lon Chaney", + "Anita Page" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Whip", + "year": 1928, + "cast": [ + "Dorothy Mackaill", + "Ralph Forbes", + "Anna Q. Nilsson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Whip Woman", + "year": 1928, + "cast": [ + "Estelle Taylor", + "Hedda Hopper" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "White Shadows in the South Seas", + "year": 1928, + "cast": [ + "Monte Blue", + "Raquel Torres" + ], + "genres": [ + "Drama", + "Adventure" + ] + }, + { + "title": "Why Sailors Go Wrong", + "year": 1928, + "cast": [ + "Sally Phipps", + "Nick Stuart" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Wickedness Preferred", + "year": 1928, + "cast": [ + "Lew Cody", + "Aileen Pringle", + "George K. Arthur" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Wife's Relations", + "year": 1928, + "cast": [ + "Shirley Mason", + "Ben Turpin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Wife Savers", + "year": 1928, + "cast": [ + "Wallace Beery", + "ZaSu Pitts", + "Sally Blane" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Win That Girl", + "year": 1928, + "cast": [ + "David Rollins", + "Sue Carol" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Wild West Romance", + "year": 1928, + "cast": [ + "Rex Bell", + "Caryl Lincoln" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Wild West Show", + "year": 1928, + "cast": [ + "Hoot Gibson", + "Dorothy Gulliver" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Wind", + "year": 1928, + "cast": [ + "Lillian Gish", + "Lars Hanson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Wizard of the Saddle", + "year": 1928, + "cast": [ + "Buzz Barton", + "Milburn Morante" + ], + "genres": [ + "Western" + ] + }, + { + "title": "A Woman of Affairs", + "year": 1928, + "cast": [ + "Greta Garbo", + "John Gilbert" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Woman Against the World", + "year": 1928, + "cast": [ + "Harrison Ford", + "Georgia Hale" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Woman Disputed", + "year": 1928, + "cast": [ + "Norma Talmadge", + "Gilbert Roland" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Woman's Way", + "year": 1928, + "cast": [ + "Margaret Livingston", + "Warner Baxter" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Woman Wise", + "year": 1928, + "cast": [ + "June Collyer", + "Walter Pidgeon" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Women They Talk About", + "year": 1928, + "cast": [ + "Irene Rich", + "Audrey Ferris" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Won in the Clouds", + "year": 1928, + "cast": [ + "Al Wilson", + "Helen Foster" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Wreck of the Singapore", + "year": 1928, + "cast": [ + "Estelle Taylor", + "Jim Mason" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Wright Idea", + "year": 1928, + "cast": [ + "Johnny Hines", + "Louise Lorraine" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Wyoming", + "year": 1928, + "cast": [ + "Tim McCoy", + "Dorothy Sebastian" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Yellow Lily", + "year": 1928, + "cast": [ + "Billie Dove", + "Clive Brook" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Young Whirlwind", + "year": 1928, + "cast": [ + "Buzz Barton", + "Edmund Cobb" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Acquitted", + "year": 1929, + "cast": [ + "Lloyd Hughes", + "Margaret Livingston" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Air Legion", + "year": 1929, + "cast": [ + "Antonio Moreno", + "Ben Lyon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Alibi", + "year": 1929, + "cast": [ + "Chester Morris", + "Mae Busch" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "All at Sea", + "year": 1929, + "cast": [ + "Karl Dane", + "George K. Arthur" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "Applause", + "year": 1929, + "cast": [ + "Helen Morgan", + "Joan Peers" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Anne Against the World", + "year": 1929, + "cast": [ + "Shirley Mason", + "Jack Mower" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Argyle Case", + "year": 1929, + "cast": [ + "Thomas Meighan", + "H. B. Warner", + "Lila Lee" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Aviator", + "year": 1929, + "cast": [ + "Edward Everett Horton", + "Patsy Ruth Miller" + ], + "genres": [ + "Crime", + "Drama", + "Comedy" + ] + }, + { + "title": "The Awful Truth", + "year": 1929, + "cast": [ + "Ina Claire", + "Henry Daniell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Bachelor Girl", + "year": 1929, + "cast": [ + "William Collier Jr.", + "Jacqueline Logan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Barnum Was Right", + "year": 1929, + "cast": [ + "Glenn Tryon", + "Merna Kennedy", + "Otis Harlan" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "Behind Closed Doors", + "year": 1929, + "cast": [ + "Virginia Valli", + "Gaston Glass" + ], + "genres": [ + "Mystery", + "Drama" + ] + }, + { + "title": "Behind That Curtain", + "year": 1929, + "cast": [ + "Warner Baxter", + "Lois Moran" + ], + "genres": [ + "Mystery", + "Drama" + ] + }, + { + "title": "Below the Deadline", + "year": 1929, + "cast": [ + "Frank Leigh", + "Barbara Worth" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Berth Marks", + "year": 1929, + "cast": [ + "Stan Laurel", + "Oliver Hardy", + "Paulette Goddard" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Betrayal", + "year": 1929, + "cast": [ + "Emil Jannings", + "Esther Ralston", + "Gary Cooper" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Big Business", + "year": 1929, + "cast": [ + "Stan Laurel", + "Oliver Hardy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Big Diamond Robbery", + "year": 1929, + "cast": [ + "Tom Mix", + "Kathryn McGuire" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Big Time", + "year": 1929, + "cast": [ + "Lee Tracy", + "Mae Clarke" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Black Magic", + "year": 1929, + "cast": [ + "Josephine Dunn", + "Earle Foxe" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Black Watch", + "year": 1929, + "cast": [ + "Victor McLaglen", + "Myrna Loy" + ], + "genres": [ + "Adventure", + "Crime", + "Drama" + ] + }, + { + "title": "Blue Skies", + "year": 1929, + "cast": [ + "Freddie Burke Frederick", + "Ethel Wales" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "The Body Punch", + "year": 1929, + "cast": [ + "Jack Dougherty", + "Virginia Brown Faire" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Border Romance", + "year": 1929, + "cast": [ + "Armida", + "Don Terry", + "Marjorie Kane" + ], + "genres": [ + "Romance", + "Western" + ] + }, + { + "title": "Born to the Saddle", + "year": 1929, + "cast": [ + "Ted Wells", + "Duane Thompson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Bride of the Desert", + "year": 1929, + "cast": [ + "Alice Calhoun", + "LeRoy Mason" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Bridge of San Luis Rey", + "year": 1929, + "cast": [ + "Lili Damita", + "Ernest Torrence" + ], + "genres": [ + "Historical" + ] + }, + { + "title": "Broadway", + "year": 1929, + "cast": [ + "Glenn Tryon", + "Evelyn Brent" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Broadway Babies", + "year": 1929, + "cast": [ + "Alice White", + "Marion Byron" + ], + "genres": [ + "Musical", + "Drama" + ] + }, + { + "title": "Broadway Fever", + "year": 1929, + "cast": [ + "Sally O'Neil", + "Roland Drew", + "Corliss Palmer" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Broadway Hoofer", + "year": 1929, + "cast": [ + "Marie Saxon", + "Jack Egan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Broadway Melody", + "year": 1929, + "cast": [ + "Charles King", + "Anita Page", + "Bessie Love" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Broadway Scandals", + "year": 1929, + "cast": [ + "Sally O'Neil", + "Carmel Myers" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Bulldog Drummond", + "year": 1929, + "cast": [ + "Ronald Colman", + "Claud Allister", + "Lawrence Grant", + "Montagu Love" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The California Mail", + "year": 1929, + "cast": [ + "Ken Maynard", + "Dorothy Dwan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Campus Knights", + "year": 1929, + "cast": [ + "Raymond McKee", + "Shirley Palmer" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Canary Murder Case", + "year": 1929, + "cast": [ + "William Powell", + "Louise Brooks", + "Jean Arthur" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Captain Lash", + "year": 1929, + "cast": [ + "Victor McLaglen", + "Claire Windsor" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Careers", + "year": 1929, + "cast": [ + "Billie Dove", + "Thelma Todd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Careless Age", + "year": 1929, + "cast": [ + "Douglas Fairbanks Jr.", + "Carmel Myers" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Carnival Man", + "year": 1929, + "cast": [ + "Walter Huston" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Case of Lena Smith", + "year": 1929, + "cast": [ + "Esther Ralston", + "James Hall" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Charlatan", + "year": 1929, + "cast": [ + "Holmes Herbert", + "Margaret Livingston" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Chasing Through Europe", + "year": 1929, + "cast": [ + "Sue Carol", + "Nick Stuart" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Cheyenne", + "year": 1929, + "cast": [ + "Ken Maynard", + "Gladys McConnell" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Children of the Ritz", + "year": 1929, + "cast": [ + "Dorothy Mackaill", + "Jack Mulhall" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "Chinatown Nights", + "year": 1929, + "cast": [ + "Wallace Beery", + "Florence Vidor", + "Warner Oland" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Circumstantial Evidence", + "year": 1929, + "cast": [ + "Cornelius Keefe", + "Helen Foster" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Clear the Decks", + "year": 1929, + "cast": [ + "Reginald Denny", + "Olive Hasbrouck" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Close Harmony", + "year": 1929, + "cast": [ + "Charles \"Buddy\" Rogers", + "Nancy Carroll" + ], + "genres": [ + "Musical", + "Drama", + "Comedy" + ] + }, + { + "title": "The Cocoanuts", + "year": 1929, + "cast": [ + "Marx Brothers", + "Mary Eaton" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "The Cohens and the Kellys in Atlantic City", + "year": 1929, + "cast": [ + "George Sidney", + "Vera Gordon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The College Coquette", + "year": 1929, + "cast": [ + "Ruth Taylor", + "William Collier Jr." + ], + "genres": [ + "Drama" + ] + }, + { + "title": "College Love", + "year": 1929, + "cast": [ + "George J. Lewis", + "Dorothy Gulliver" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "Come Across", + "year": 1929, + "cast": [ + "Lina Basquette", + "Reed Howes" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Come and Get It", + "year": 1929, + "cast": [ + "Bob Steele", + "Marin Sais" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Coquette", + "year": 1929, + "cast": [ + "Mary Pickford", + "Johnny Mack Brown", + "Matt Moore" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Cock-Eyed World", + "year": 1929, + "cast": [ + "Victor McLaglen", + "Edmund Lowe", + "Lili Damita" + ], + "genres": [ + "Musical", + "Drama", + "Comedy" + ] + }, + { + "title": "Condemned", + "year": 1929, + "cast": [ + "Ronald Colman", + "Ann Harding", + "Dudley Digges" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Courtin' Wildcats", + "year": 1929, + "cast": [ + "Hoot Gibson", + "Harry Todd" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Christina", + "year": 1929, + "cast": [ + "Janet Gaynor", + "Charles Morton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dance Hall", + "year": 1929, + "cast": [ + "Olive Borden", + "Arthur Lake" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Dance of Life", + "year": 1929, + "cast": [ + "Hal Skelly", + "Nancy Carroll", + "Dorothy Revier" + ], + "genres": [ + "Adventure", + "Drama" + ] + }, + { + "title": "Dangerous Curves", + "year": 1929, + "cast": [ + "Clara Bow", + "Richard Arlen", + "Kay Francis" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "A Dangerous Woman", + "year": 1929, + "cast": [ + "Olga Baclanova", + "Clive Brook" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dark Streets", + "year": 1929, + "cast": [ + "Jack Mulhall", + "Lila Lee" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Delightful Rogue", + "year": 1929, + "cast": [ + "Rod La Rocque", + "Rita La Roy" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "Desert Nights", + "year": 1929, + "cast": [ + "John Gilbert", + "Ernest Torrence" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Desert Rider", + "year": 1929, + "cast": [ + "Tim McCoy", + "Raquel Torres" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Desert Song", + "year": 1929, + "cast": [ + "John Boles", + "Carlotta King" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Devil-May-Care", + "year": 1929, + "cast": [ + "Ramón Novarro", + "Dorothy Jordan" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Devil's Apple Tree", + "year": 1929, + "cast": [ + "Dorothy Sebastian", + "Larry Kent" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Disraeli", + "year": 1929, + "cast": [ + "George Arliss", + "Joan Bennett" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Divine Lady", + "year": 1929, + "cast": [ + "Corinne Griffith", + "Victor Varconi" + ], + "genres": [ + "Historical" + ] + }, + { + "title": "The Donovan Affair", + "year": 1929, + "cast": [ + "Jack Holt", + "Dorothy Revier" + ], + "genres": [ + "Mystery", + "Drama", + "Comedy" + ] + }, + { + "title": "Drag", + "year": 1929, + "cast": [ + "Richard Barthelmess", + "Alice Day" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Drake Case", + "year": 1929, + "cast": [ + "Gladys Brockwell", + "Robert Frazer" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Drifter", + "year": 1929, + "cast": [ + "Tom Mix", + "Dorothy Dwan" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Dynamite", + "year": 1929, + "cast": [ + "Conrad Nagel", + "Kay Johnson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Eternal Love", + "year": 1929, + "cast": [ + "John Barrymore", + "Camilla Horn" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Evangeline", + "year": 1929, + "cast": [ + "Dolores del Río", + "Roland Drew" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "Evidence", + "year": 1929, + "cast": [ + "Pauline Frederick", + "Conway Tearle" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Exalted Flapper", + "year": 1929, + "cast": [ + "Sue Carol", + "Irene Rich" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Eyes of the Underworld", + "year": 1929, + "cast": [ + "Bill Cody", + "Sally Blane" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Faker", + "year": 1929, + "cast": [ + "Jacqueline Logan", + "Charles Delaney", + "Warner Oland" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Fall of Eve", + "year": 1929, + "cast": [ + "Patsy Ruth Miller", + "Ford Sterling" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Fancy Baggage", + "year": 1929, + "cast": [ + "Audrey Ferris", + "Myrna Loy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Far Call", + "year": 1929, + "cast": [ + "Charles Morton", + "Leila Hyams", + "Warner Baxter" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Fashions in Love", + "year": 1929, + "cast": [ + "Adolphe Menjou", + "Fay Compton" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Fast Company", + "year": 1929, + "cast": [ + "Evelyn Brent", + "Jack Oakie" + ], + "genres": [ + "Sport", + "Romance", + "Comedy" + ] + }, + { + "title": "Fast Life", + "year": 1929, + "cast": [ + "Douglas Fairbanks Jr.", + "Loretta Young" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Flight", + "year": 1929, + "cast": [ + "Jack Holt", + "Lila Lee" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Flying Fleet", + "year": 1929, + "cast": [ + "Ramon Navarro", + "Ralph Graves", + "Anita Page" + ], + "genres": [ + "Romance", + "Crime", + "Drama" + ] + }, + { + "title": "The Flying Marine", + "year": 1929, + "cast": [ + "Ben Lyon", + "Shirley Mason" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Flying Fool", + "year": 1929, + "cast": [ + "William Boyd", + "Marie Prevost" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Footlights and Fools", + "year": 1929, + "cast": [ + "Colleen Moore", + "Raymond Hackett", + "Fredric March" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "The Forward Pass", + "year": 1929, + "cast": [ + "Douglas Fairbanks Jr.", + "Loretta Young" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Four Feathers", + "year": 1929, + "cast": [ + "Richard Arlen", + "Fay Wray", + "Clive Brook" + ], + "genres": [ + "Adventure", + "Crime", + "War" + ] + }, + { + "title": "Fox Movietone Follies of 1929", + "year": 1929, + "cast": [ + "Sue Carol", + "Dixie Lee" + ], + "genres": [ + "Musical", + "Drama", + "Comedy" + ] + }, + { + "title": "From Headquarters", + "year": 1929, + "cast": [ + "Monte Blue", + "Gladys Brockwell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Frozen Justice", + "year": 1929, + "cast": [ + "Lenore Ulric", + "Robert Frazer", + "Louis Wolheim" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Frozen River", + "year": 1929, + "cast": [ + "Rin Tin Tin", + "Davey Lee" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Fugitives", + "year": 1929, + "cast": [ + "Madge Bellamy", + "Don Terry" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Gamblers", + "year": 1929, + "cast": [ + "H. B. Warner", + "Lois Wilson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Ghost Talks", + "year": 1929, + "cast": [ + "Helen Twelvetrees", + "Charles Eaton" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "The Girl from Havana", + "year": 1929, + "cast": [ + "Lola Lane", + "Paul Page" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Girl from Woolworth's", + "year": 1929, + "cast": [ + "Alice White", + "Gladden James" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Girl in the Glass Cage", + "year": 1929, + "cast": [ + "Loretta Young", + "Carroll Nye" + ], + "genres": [ + "Drama", + "Thriller" + ] + }, + { + "title": "Girl on the Barge", + "year": 1929, + "cast": [ + "Jean Hersholt", + "Sally O'Neil" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Girl Overboard", + "year": 1929, + "cast": [ + "Mary Philbin", + "Fred Mackaye" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "Girls Gone Wild", + "year": 1929, + "cast": [ + "Sue Carol", + "Nick Stuart" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Glad Rag Doll", + "year": 1929, + "cast": [ + "Dolores Costello", + "Ralph Graves" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Glorifying the American Girl", + "year": 1929, + "cast": [ + "Mary Eaton", + "Dan Healy" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Gold Diggers of Broadway", + "year": 1929, + "cast": [ + "Nancy Welford", + "Conway Tearle" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "The Great Divide", + "year": 1929, + "cast": [ + "Dorothy Mackaill", + "Myrna Loy" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Great Gabbo", + "year": 1929, + "cast": [ + "Erich von Stroheim", + "Betty Compson" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Great Power", + "year": 1929, + "cast": [ + "Minna Gombell", + "Herschel Mayall" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Greyhound Limited", + "year": 1929, + "cast": [ + "Monte Blue", + "Edna Murphy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Grit Wins", + "year": 1929, + "cast": [ + "Ted Wells", + "Kathleen Collins" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Gun Law", + "year": 1929, + "cast": [ + "Tom Tyler", + "Barney Furey" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Half Marriage", + "year": 1929, + "cast": [ + "Olive Borden", + "Morgan Farley" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hallelujah!", + "year": 1929, + "cast": [ + "Daniel L. Haynes", + "Nina Mae McKinney" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Happy Days", + "year": 1929, + "cast": [ + "Marjorie White", + "Stuart Erwin", + "Janet Gaynor" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Hard to Get", + "year": 1929, + "cast": [ + "Dorothy Mackaill", + "Charles Delaney" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hardboiled Rose", + "year": 1929, + "cast": [ + "Myrna Loy", + "William Collier Jr." + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Harvest of Hate", + "year": 1929, + "cast": [ + "Jack Perrin", + "Helen Foster" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Hearts in Dixie", + "year": 1929, + "cast": [ + "Clarence Muse", + "Stepin Fetchit" + ], + "genres": [ + "Musical", + "Drama", + "Comedy" + ] + }, + { + "title": "Hearts in Exile", + "year": 1929, + "cast": [ + "Dolores Costello", + "Grant Withers" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Her Private Life", + "year": 1929, + "cast": [ + "Billie Dove", + "Walter Pidgeon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Heroic Lover", + "year": 1929, + "cast": [ + "Leonard St. Leo", + "Barbara Bedford" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "His Captive Woman", + "year": 1929, + "cast": [ + "Milton Sills", + "Dorothy Mackaill" + ], + "genres": [] + }, + { + "title": "His First Command", + "year": 1929, + "cast": [ + "William Boyd", + "Dorothy Sebastian" + ], + "genres": [ + "Romance", + "Drama", + "Comedy" + ] + }, + { + "title": "His Glorious Night", + "year": 1929, + "cast": [ + "John Gilbert", + "Catherine Dale Owen" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "His Lucky Day", + "year": 1929, + "cast": [ + "Reginald Denny", + "Lorayne Du Val" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hold Your Man", + "year": 1929, + "cast": [ + "Laura La Plante", + "Eugene Borden" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "The Hole in the Wall", + "year": 1929, + "cast": [ + "Claudette Colbert", + "Edward G. Robinson" + ], + "genres": [ + "Mystery", + "Drama" + ] + }, + { + "title": "The Hollywood Revue of 1929", + "year": 1929, + "cast": [ + "Conrad Nagel", + "Jack Benny" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Honky Tonk", + "year": 1929, + "cast": [ + "Sophie Tucker", + "Lila Lee" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Hot for Paris", + "year": 1929, + "cast": [ + "Victor McLaglen", + "Fifi D'Orsay" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Hot Stuff", + "year": 1929, + "cast": [ + "Alice White", + "Louise Fazenda" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Hottentot", + "year": 1929, + "cast": [ + "Edward Everett Horton", + "Patsy Ruth Miller" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "House of Horror", + "year": 1929, + "cast": [ + "Louise Fazenda", + "Thelma Todd" + ], + "genres": [ + "Mystery", + "Comedy" + ] + }, + { + "title": "Idaho Red", + "year": 1929, + "cast": [ + "Tom Tyler", + "Patricia Caron" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Illusion of Love", + "year": 1929, + "cast": [ + "John Ho", + "Florence Lee" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Innocents of Paris", + "year": 1929, + "cast": [ + "Maurice Chevalier", + "Sylvia Beecher" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "In Old Arizona", + "year": 1929, + "cast": [ + "Warner Baxter", + "Edmund Lowe" + ], + "genres": [ + "Western", + "Drama", + "Comedy" + ] + }, + { + "title": "In the Headlines", + "year": 1929, + "cast": [ + "Grant Withers", + "Marian Nixon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Iron Mask", + "year": 1929, + "cast": [ + "Douglas Fairbanks", + "Belle Bennett" + ], + "genres": [ + "Romance", + "Adventure" + ] + }, + { + "title": "Is Everybody Happy?", + "year": 1929, + "cast": [ + "Ted Lewis", + "Alice Day" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Isle of Lost Ships", + "year": 1929, + "cast": [ + "Jason Robards", + "Virginia Valli" + ], + "genres": [ + "Drama", + "Thriller" + ] + }, + { + "title": "It Can Be Done", + "year": 1929, + "cast": [ + "Glenn Tryon", + "Sue Carol" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Jazz Age", + "year": 1929, + "cast": [ + "Douglas Fairbanks Jr.", + "Marceline Day" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Jazz Heaven", + "year": 1929, + "cast": [ + "Sally O'Neil", + "Johnny Mack Brown" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "Joy Street", + "year": 1929, + "cast": [ + "Lois Moran", + "Rex Bell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Just Off Broadway", + "year": 1929, + "cast": [ + "Donald Keith", + "Ann Christy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Kid's Clever", + "year": 1929, + "cast": [ + "Glenn Tryon", + "Kathryn Crawford" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Kid Gloves", + "year": 1929, + "cast": [ + "Conrad Nagel", + "Lois Wilson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "King of the Herd", + "year": 1929, + "cast": [ + "Raymond McKee", + "Nola Luxford" + ], + "genres": [ + "Western" + ] + }, + { + "title": "King of the Rodeo", + "year": 1929, + "cast": [ + "Hoot Gibson", + "Kathryn Crawford" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Kiss", + "year": 1929, + "cast": [ + "Greta Garbo", + "Conrad Nagel" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "The Lady Lies", + "year": 1929, + "cast": [ + "Walter Huston", + "Claudette Colbert" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Lady of the Pavements", + "year": 1929, + "cast": [ + "Lupe Vélez", + "William Boyd" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "The Lariat Kid", + "year": 1929, + "cast": [ + "Hoot Gibson", + "Ann Christy" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Last of Mrs. Cheyney", + "year": 1929, + "cast": [ + "Norma Shearer", + "Basil Rathbone" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "The Last Warning", + "year": 1929, + "cast": [ + "Laura La Plante", + "Montagu Love" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Lawless Legion", + "year": 1929, + "cast": [ + "Ken Maynard", + "Nora Lane" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Law of the Plains", + "year": 1929, + "cast": [ + "Tom Tyler", + "Natalie Joyce" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Letter", + "year": 1929, + "cast": [ + "Jeanne Eagels", + "Reginald Owen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Little Johnny Jones", + "year": 1929, + "cast": [ + "Alice Day", + "Edward Buzzell" + ], + "genres": [ + "Sport", + "Drama", + "Comedy" + ] + }, + { + "title": "The Locked Door", + "year": 1929, + "cast": [ + "Rod LaRocque", + "Barbara Stanwyck", + "William \"Stage\" Boyd" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Lone Wolf's Daughter", + "year": 1929, + "cast": [ + "Bert Lytell", + "Gertrude Olmstead" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Long Long Trail", + "year": 1929, + "cast": [ + "Hoot Gibson", + "Sally Eilers" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Lost Zeppelin", + "year": 1929, + "cast": [ + "Conway Tearle", + "Virginia Valli" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Love and the Devil", + "year": 1929, + "cast": [ + "Milton Sills", + "María Corda" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Love at First Sight", + "year": 1929, + "cast": [ + "Norman Foster", + "Doris Rankin" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "The Love Doctor", + "year": 1929, + "cast": [ + "Richard Dix", + "June Collyer" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Love, Live and Laugh", + "year": 1929, + "cast": [ + "George Jessel", + "Lila Lee", + "John Loder" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "The Love Parade", + "year": 1929, + "cast": [ + "Maurice Chevalier", + "Jeanette MacDonald" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Love Racket", + "year": 1929, + "cast": [ + "Dorothy Mackaill", + "Sidney Blackmer" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Love Trap", + "year": 1929, + "cast": [ + "Laura La Plante", + "Neil Hamilton" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Lucky Boy", + "year": 1929, + "cast": [ + "George Jessel", + "Gwen Lee" + ], + "genres": [ + "Musical", + "Drama", + "Comedy" + ] + }, + { + "title": "Lucky Star", + "year": 1929, + "cast": [ + "Janet Gaynor", + "Charles Farrell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Madame X", + "year": 1929, + "cast": [ + "Ruth Chatterton", + "Lewis Stone" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Madonna of Avenue A", + "year": 1929, + "cast": [ + "Dolores Costello", + "Grant Withers", + "Louise Dresser" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Making the Grade", + "year": 1929, + "cast": [ + "Lois Moran", + "Edmund Lowe" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "The Man I Love", + "year": 1929, + "cast": [ + "Richard Arlen", + "Mary Brian", + "Olga Baclanova" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Man and the Moment", + "year": 1929, + "cast": [ + "Billie Dove", + "Rod La Rocque" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "Man, Woman and Wife", + "year": 1929, + "cast": [ + "Norman Kerry", + "Pauline Starke", + "Marian Nixon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Marianne", + "year": 1929, + "cast": [ + "Marion Davies", + "Lawrence Gray", + "Cliff Edwards" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Marquis Preferred", + "year": 1929, + "cast": [ + "Adolphe Menjou", + "Nora Lane" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Married in Hollywood", + "year": 1929, + "cast": [ + "J. Harold Murray", + "Norma Terris" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "Masked Emotions", + "year": 1929, + "cast": [ + "George O'Brien", + "Nora Lane" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Masquerade", + "year": 1929, + "cast": [ + "Alan Birmingham", + "Leila Hyams" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Melody Lane", + "year": 1929, + "cast": [ + "Eddie Leonard", + "Josephine Dunn" + ], + "genres": [ + "Musical", + "Drama" + ] + }, + { + "title": "Mexicali Rose", + "year": 1929, + "cast": [ + "Barbara Stanwyck", + "Sam Hardy" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Midstream", + "year": 1929, + "cast": [ + "Ricardo Cortez", + "Claire Windsor", + "Montagu Love" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Mighty", + "year": 1929, + "cast": [ + "George Bancroft", + "Esther Ralston", + "Warner Oland" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Million Dollar Collar", + "year": 1929, + "cast": [ + "Rin Tin Tin", + "Evelyn Peirce" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Mississippi Gambler", + "year": 1929, + "cast": [ + "Joseph Schildkraut", + "Joan Bennett" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Mister Antonio", + "year": 1929, + "cast": [ + "Leo Carrillo", + "Virginia Valli" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Molly and Me", + "year": 1929, + "cast": [ + "Belle Bennett", + "Joe E. Brown", + "Alberta Vaughn" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Modern Love", + "year": 1929, + "cast": [ + "Kathryn Crawford", + "Jean Hersholt" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "A Most Immoral Lady", + "year": 1929, + "cast": [ + "Leatrice Joy", + "Walter Pidgeon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "My Lady's Past", + "year": 1929, + "cast": [ + "Belle Bennett", + "Joe E. Brown", + "Alma Bennett" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Mysterious Dr. Fu Manchu", + "year": 1929, + "cast": [ + "Warner Oland", + "Jean Arthur" + ], + "genres": [ + "Drama", + "Thriller" + ] + }, + { + "title": "The Mysterious Island", + "year": 1929, + "cast": [ + "Lionel Barrymore", + "Jacqueline Gadsden" + ], + "genres": [ + "Adventure", + "Science Fiction" + ] + }, + { + "title": "Navy Blues", + "year": 1929, + "cast": [ + "William Haines", + "Anita Page" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "New Orleans", + "year": 1929, + "cast": [ + "Ricardo Cortez", + "William Collier Jr.", + "Alma Bennett" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "New Year's Eve", + "year": 1929, + "cast": [ + "Mary Astor", + "Charles Morton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "New York Nights", + "year": 1929, + "cast": [ + "Norma Talmadge", + "Gilbert Roland" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Night Parade", + "year": 1929, + "cast": [ + "Aileen Pringle", + "Hugh Trevor", + "Dorothy Gulliver" + ], + "genres": [ + "Sport", + "Drama" + ] + }, + { + "title": "Nix on Dames", + "year": 1929, + "cast": [ + "Mae Clarke", + "Robert Ames" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "No Defense", + "year": 1929, + "cast": [ + "Monte Blue", + "May McAvoy" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Not Quite Decent", + "year": 1929, + "cast": [ + "Louise Dresser", + "June Collyer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "One Hysterical Night", + "year": 1929, + "cast": [ + "Reginald Denny", + "Nora Lane" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "One Stolen Night", + "year": 1929, + "cast": [ + "Betty Bronson", + "William Collier" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The One Woman Idea", + "year": 1929, + "cast": [ + "Rod La Rocque", + "Marceline Day" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "On with the Show!", + "year": 1929, + "cast": [ + "Joe E. Brown", + "Betty Compson" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Our Modern Maidens", + "year": 1929, + "cast": [ + "Joan Crawford", + "Douglas Fairbanks Jr." + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Outlawed", + "year": 1929, + "cast": [ + "Tom Mix", + "Sally Blane" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Pagan", + "year": 1929, + "cast": [ + "Ramon Novarro", + "Renee Adoree", + "Donald Crisp" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "The Painted Angel", + "year": 1929, + "cast": [ + "Billie Dove", + "Edmund Lowe" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Paris", + "year": 1929, + "cast": [ + "Irene Bordoni", + "Jack Buchanan" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Paris Bound", + "year": 1929, + "cast": [ + "Ann Harding", + "Fredric March" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Peacock Fan", + "year": 1929, + "cast": [ + "Lucien Prival", + "Dorothy Dwan" + ], + "genres": [ + "Mystery", + "Thriller" + ] + }, + { + "title": "The Phantom in the House", + "year": 1929, + "cast": [ + "Ricardo Cortez", + "Nancy Welford" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Pleasure Crazed", + "year": 1929, + "cast": [ + "Marguerite Churchill", + "Kenneth MacKenna", + "Dorothy Burgess" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Plunging Hoofs", + "year": 1929, + "cast": [ + "Jack Perrin", + "Barbara Worth" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Pointed Heels", + "year": 1929, + "cast": [ + "William Powell", + "Fay Wray" + ], + "genres": [ + "Musical", + "Drama", + "Comedy" + ] + }, + { + "title": "Points West", + "year": 1929, + "cast": [ + "Hoot Gibson", + "Alberta Vaughn" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Port of Dreams", + "year": 1929, + "cast": [ + "Mary Philbin", + "Otis Harlan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Prisoners", + "year": 1929, + "cast": [ + "Corinne Griffith", + "Ian Keith" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Protection", + "year": 1929, + "cast": [ + "Dorothy Burgess", + "Paul Page" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Queen Kelly", + "year": 1929, + "cast": [ + "Gloria Swanson", + "Walter Byron" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Queen of the Night Clubs", + "year": 1929, + "cast": [ + "Texas Guinan", + "Lila Lee" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Quitter", + "year": 1929, + "cast": [ + "Ben Lyon", + "Dorothy Revier" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Rainbow", + "year": 1929, + "cast": [ + "Dorothy Sebastian", + "Lawrence Gray" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Rainbow Man", + "year": 1929, + "cast": [ + "Eddie Dowling", + "Frankie Darro" + ], + "genres": [ + "Musical", + "Drama", + "Comedy" + ] + }, + { + "title": "The Redeeming Sin", + "year": 1929, + "cast": [ + "Dolores Costello", + "Conrad Nagel" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Redskin", + "year": 1929, + "cast": [ + "Richard Dix", + "Jane Novak" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Red Hot Rhythm", + "year": 1929, + "cast": [ + "Alan Hale", + "Kathryn Crawford" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Red Hot Speed", + "year": 1929, + "cast": [ + "Reginald Denny", + "Alice Day" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Rescue", + "year": 1929, + "cast": [ + "Ronald Colman", + "Lili Damita" + ], + "genres": [ + "Adventure", + "Romance" + ] + }, + { + "title": "The Ridin' Demon", + "year": 1929, + "cast": [ + "Ted Wells", + "Kathleen Collins" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Rio Rita", + "year": 1929, + "cast": [ + "Bebe Daniels", + "Bert Wheeler", + "Robert Woolsey" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The River", + "year": 1929, + "cast": [ + "Charles Farrell", + "Mary Duncan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Romance of the Rio Grande", + "year": 1929, + "cast": [ + "Warner Baxter", + "Mona Maris" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Royal Rider", + "year": 1929, + "cast": [ + "Ken Maynard", + "Olive Hasbrouck" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Sacred Flame", + "year": 1929, + "cast": [ + "Pauline Frederick", + "Conrad Nagel", + "Lila Lee" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Sally", + "year": 1929, + "cast": [ + "Marilyn Miller", + "Alexander Gray" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Salute", + "year": 1929, + "cast": [ + "George O'Brien", + "Helen Chandler" + ], + "genres": [ + "Sports" + ] + }, + { + "title": "The Sap", + "year": 1929, + "cast": [ + "Edward Everett Horton", + "Alan Hale" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Saturday's Children", + "year": 1929, + "cast": [ + "Corinne Griffith", + "Grant Withers" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "The Saturday Night Kid", + "year": 1929, + "cast": [ + "Clara Bow", + "Jean Arthur" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Say It with Songs", + "year": 1929, + "cast": [ + "Al Jolson", + "Davey Lee" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Scandal", + "year": 1929, + "cast": [ + "Laura La Plante", + "John Boles" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Scarlet Seas", + "year": 1929, + "cast": [ + "Richard Barthelmess", + "Betty Compson", + "Loretta Young" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "Señor Americano", + "year": 1929, + "cast": [ + "Ken Maynard", + "Kathryn Crawford" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Seven Faces", + "year": 1929, + "cast": [ + "Paul Muni", + "Marguerite Churchill" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "Seven Footprints to Satan", + "year": 1929, + "cast": [ + "Thelma Todd", + "Creighton Hale" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Shakedown", + "year": 1929, + "cast": [ + "James Murray", + "Barbara Kent" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Shanghai Lady", + "year": 1929, + "cast": [ + "Mary Nolan", + "James Murray" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Shannons of Broadway", + "year": 1929, + "cast": [ + "James Gleason", + "Lucile Gleason", + "Mary Philbin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "She Goes to War", + "year": 1929, + "cast": [ + "Eleanor Boardman", + "John Holland" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Show Boat", + "year": 1929, + "cast": [ + "Laura La Plante", + "Joseph Schildkraut" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Show of Shows", + "year": 1929, + "cast": [ + "John Barrymore", + "Loretta Young", + "Richard Barthelmess" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Side Street", + "year": 1929, + "cast": [ + "Owen Moore", + "Emma Dunn" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Silent Sentinel", + "year": 1929, + "cast": [ + "Gareth Hughes", + "Josephine Hill" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Silks and Saddles", + "year": 1929, + "cast": [ + "Richard Walling", + "Marian Nixon" + ], + "genres": [ + "Sports" + ] + }, + { + "title": "The Sin Sister", + "year": 1929, + "cast": [ + "Nancy Carroll", + "Josephine Dunn" + ], + "genres": [ + "Action", + "Adventure", + "Drama" + ] + }, + { + "title": "Sin Town", + "year": 1929, + "cast": [ + "Elinor Fair", + "Ivan Lebedeff" + ], + "genres": [ + "Western" + ] + }, + { + "title": "A Single Man", + "year": 1929, + "cast": [ + "Lew Cody", + "Marceline Day" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Single Standard", + "year": 1929, + "cast": [ + "Greta Garbo", + "Nils Asther", + "Johnny Mack Brown" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "The Skeleton Dance", + "year": 1929, + "cast": [], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "Skin Deep", + "year": 1929, + "cast": [ + "Monte Blue", + "Davey Lee", + "Betty Compson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Skinner Steps Out", + "year": 1929, + "cast": [ + "Glenn Tryon", + "Merna Kennedy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Sky Hawk", + "year": 1929, + "cast": [ + "John Garrick", + "Helen Chandler" + ], + "genres": [ + "Crime", + "Romance", + "War" + ] + }, + { + "title": "The Sky Skidder", + "year": 1929, + "cast": [ + "Al Wilson", + "Helen Foster" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Slim Fingers", + "year": 1929, + "cast": [ + "Bill Cody", + "Duane Thompson" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Smilin' Guns", + "year": 1929, + "cast": [ + "Hoot Gibson", + "Blanche Mehaffey" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Smiling Irish Eyes", + "year": 1929, + "cast": [ + "Colleen Moore", + "James Hall" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "The Smiling Terror", + "year": 1929, + "cast": [ + "Ted Wells", + "Derelys Perdue" + ], + "genres": [ + "Western" + ] + }, + { + "title": "So Long Letty", + "year": 1929, + "cast": [ + "Charlotte Greenwood", + "Claude Gillingwater" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "A Song of Kentucky", + "year": 1929, + "cast": [ + "Lois Moran", + "Joseph Wagstaff" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Song of Love", + "year": 1929, + "cast": [ + "Belle Baker", + "Ralph Graves" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "South Sea Rose", + "year": 1929, + "cast": [ + "Lenore Ulric", + "Charles Bickford" + ], + "genres": [ + "Romance", + "Drama", + "Comedy" + ] + }, + { + "title": "Speakeasy", + "year": 1929, + "cast": [ + "Lola Lane", + "Paul Page" + ], + "genres": [ + "Sports", + "Romance", + "Drama" + ] + }, + { + "title": "Spite Marriage", + "year": 1929, + "cast": [ + "Buster Keaton", + "Dorothy Sebastian" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "The Squall", + "year": 1929, + "cast": [ + "Richard Tucker", + "Alice Joyce" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "St. Louis Blues", + "year": 1929, + "cast": [ + "Bessie Smith" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Stark Mad", + "year": 1929, + "cast": [ + "H. B. Warner", + "Louise Fazenda", + "Jacqueline Logan" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Stolen Kisses", + "year": 1929, + "cast": [ + "May McAvoy", + "Hallam Cooley" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Strange Cargo", + "year": 1929, + "cast": [ + "Lee Patrick", + "George Barraud" + ], + "genres": [ + "Mystery", + "Drama", + "Thriller" + ] + }, + { + "title": "Street Girl", + "year": 1929, + "cast": [ + "Betty Compson", + "John Harron" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Strong Boy", + "year": 1929, + "cast": [ + "Victor McLaglen", + "Leatrice Joy" + ], + "genres": [ + "Crime", + "Drama", + "Comedy" + ] + }, + { + "title": "Sunny Side Up", + "year": 1929, + "cast": [ + "Janet Gaynor", + "Marjorie White" + ], + "genres": [ + "Romance", + "Musical", + "Drama", + "Comedy" + ] + }, + { + "title": "Syncopation", + "year": 1929, + "cast": [ + "Barbara Bennett", + "Bobby Watson" + ], + "genres": [] + }, + { + "title": "Synthetic Sin", + "year": 1929, + "cast": [ + "Colleen Moore", + "Antonio Moreno" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "The Taming of the Shrew", + "year": 1929, + "cast": [ + "Mary Pickford", + "Douglas Fairbanks" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Tanned Legs", + "year": 1929, + "cast": [ + "Arthur Lake", + "June Clyde", + "Dorothy Revier" + ], + "genres": [ + "Musical", + "Comedy", + "Drama" + ] + }, + { + "title": "They Had to See Paris", + "year": 1929, + "cast": [ + "Will Rogers", + "Marguerite Churchill", + "Fifi D'Orsay" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Thirteenth Chair", + "year": 1929, + "cast": [ + "Conrad Nagel", + "Leila Hyams" + ], + "genres": [ + "Mystery", + "Drama" + ] + }, + { + "title": "This Is Heaven", + "year": 1929, + "cast": [ + "Vilma Bánky", + "James Hall" + ], + "genres": [ + "Romance", + "Drama", + "Comedy" + ] + }, + { + "title": "This Thing Called Love", + "year": 1929, + "cast": [ + "Edmund Lowe", + "Constance Bennett" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "Three Live Ghosts", + "year": 1929, + "cast": [ + "Joan Bennett", + "Robert Montgomery", + "Claud Allister" + ], + "genres": [ + "War", + "Comedy" + ] + }, + { + "title": "Thru Different Eyes", + "year": 1929, + "cast": [ + "Mary Duncan", + "Edmund Lowe", + "Warner Baxter" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Thunder", + "year": 1929, + "cast": [ + "Lon Chaney", + "Phyllis Haver" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Thunderbolt", + "year": 1929, + "cast": [ + "George Bancroft", + "Fay Wray", + "Richard Arlen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Tide of Empire", + "year": 1929, + "cast": [ + "Renee Adoree", + "Tom Keene" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Tiger Rose", + "year": 1929, + "cast": [ + "Monte Blue", + "Lupe Velez" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Time, the Place and the Girl", + "year": 1929, + "cast": [ + "Grant Withers", + "Betty Compson" + ], + "genres": [ + "Musical", + "Drama", + "Comedy" + ] + }, + { + "title": "The Tip Off", + "year": 1929, + "cast": [ + "Bill Cody", + "Duane Thompson" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Tonight at Twelve", + "year": 1929, + "cast": [ + "Madge Bellamy", + "Robert Ellis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Trent's Last Case", + "year": 1929, + "cast": [ + "Raymond Griffith", + "Marceline Day" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Trespasser", + "year": 1929, + "cast": [ + "Gloria Swanson", + "Robert Ames" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "True Heaven", + "year": 1929, + "cast": [ + "George O'Brien", + "Lois Moran" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "Twin Beds", + "year": 1929, + "cast": [ + "Jack Mulhall", + "Patsy Ruth Miller" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Two Men and a Maid", + "year": 1929, + "cast": [ + "William Collier Jr.", + "Alma Bennett" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Two Sisters", + "year": 1929, + "cast": [ + "Viola Dana", + "Rex Lease", + "Claire Du Brey" + ], + "genres": [ + "Action", + "Adventure", + "Crime" + ] + }, + { + "title": "Two Weeks Off", + "year": 1929, + "cast": [ + "Dorothy Mackaill", + "Gertrude Astor" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Under the Southern Cross", + "year": 1929, + "cast": [ + "Patiti Warbrick", + "Witarina Mitchell" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Vagabond Lover", + "year": 1929, + "cast": [ + "Rudy Vallée", + "Sally Blane", + "Marie Dressler" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "The Valiant", + "year": 1929, + "cast": [ + "Paul Muni", + "Marguerite Churchill" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Veiled Woman", + "year": 1929, + "cast": [ + "Lia Torá", + "Walter McGrail" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Very Idea", + "year": 1929, + "cast": [ + "Frank Craven", + "Hugh Trevor", + "Sally Blane" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Virginian", + "year": 1929, + "cast": [ + "Gary Cooper", + "Walter Huston" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Wagon Master", + "year": 1929, + "cast": [ + "Ken Maynard", + "Edith Roberts" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Wall Street", + "year": 1929, + "cast": [ + "Ralph Ince", + "Aileen Pringle" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Weary River", + "year": 1929, + "cast": [ + "Richard Barthelmess", + "Betty Compson" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "Wedding Rings", + "year": 1929, + "cast": [ + "H. B. Warner", + "Lois Wilson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Welcome Danger", + "year": 1929, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "Where East is East", + "year": 1929, + "cast": [ + "Lon Chaney", + "Lupe Vélez" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Whispering Winds", + "year": 1929, + "cast": [ + "Patsy Ruth Miller", + "Malcolm McGregor", + "Eve Southern" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Why Be Good?", + "year": 1929, + "cast": [ + "Colleen Moore", + "Neil Hamilton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Why Leave Home?", + "year": 1929, + "cast": [ + "Sue Carol", + "Nick Stuart" + ], + "genres": [ + "Musical", + "Drama", + "Comedy" + ] + }, + { + "title": "Wild Blood", + "year": 1929, + "cast": [ + "Jack Perrin", + "Ethlyne Clair" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Wild Orchids", + "year": 1929, + "cast": [ + "Greta Garbo", + "Lewis Stone", + "Nils Asther" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "The Winged Horseman", + "year": 1929, + "cast": [ + "Hoot Gibson", + "Ruth Elder" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Wolf of Wall Street", + "year": 1929, + "cast": [ + "George Bancroft", + "Olga Baclanova", + "Nancy Carroll" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Wolf Song", + "year": 1929, + "cast": [ + "Gary Cooper", + "Lupe Vélez" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Wolves of the City", + "year": 1929, + "cast": [ + "Bill Cody", + "Sally Blane" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Woman from Hell", + "year": 1929, + "cast": [ + "Mary Astor", + "Robert Armstrong" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Woman Trap", + "year": 1929, + "cast": [ + "Hal Skelly", + "Chester Morris", + "Evelyn Brent" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Wonder of Women", + "year": 1929, + "cast": [ + "Lewis Stone", + "Leila Hyams" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Words and Music", + "year": 1929, + "cast": [ + "Lois Moran", + "Helen Twelvetrees" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Young Nowheres", + "year": 1929, + "cast": [ + "Richard Barthelmess", + "Marian Nixon" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "The Younger Generation", + "year": 1929, + "cast": [ + "Jean Hersholt", + "Lina Basquette", + "Ricardo Cortez" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Abraham Lincoln", + "year": 1930, + "cast": [ + "Walter Huston", + "Kay Hammond" + ], + "genres": [ + "Historical", + "Drama" + ] + }, + { + "title": "Africa Speaks!", + "year": 1930, + "cast": [ + "Paul Hoefler", + "Lowell Thomas" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Alias French Gertie", + "year": 1930, + "cast": [ + "Bebe Daniels", + "Ben Lyon" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "All Quiet on the Western Front", + "year": 1930, + "cast": [ + "Lew Ayres", + "Louis Wolheim", + "Arnold Lucy" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "Along Came Youth", + "year": 1930, + "cast": [ + "Frances Dee", + "Charles Rogers", + "Evelyn Hall" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Animal Crackers", + "year": 1930, + "cast": [ + "Groucho Marx", + "Harpo Marx", + "Margaret Dumont" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Anna Christie", + "year": 1930, + "cast": [ + "Greta Garbo", + "Marie Dressler", + "Charles Bickford" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Anybody's War", + "year": 1930, + "cast": [ + "Joan Peers", + "Neil Hamilton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Anybody's Woman", + "year": 1930, + "cast": [ + "Ruth Chatterton", + "Paul Lukas", + "Clive Brook" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Arizona Kid", + "year": 1930, + "cast": [ + "Warner Baxter", + "Mona Maris", + "Carole Lombard" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Around the Corner", + "year": 1930, + "cast": [ + "Charles Murray", + "George Sidney", + "Joan Peers" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Back Pay", + "year": 1930, + "cast": [ + "Corinne Griffith", + "Grant Withers", + "Vivien Oakland" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "The Bad Man", + "year": 1930, + "cast": [ + "Walter Huston", + "James Rennie", + "Myrna Loy" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Bad One", + "year": 1930, + "cast": [ + "Dolores del Río", + "Edmund Lowe", + "Blanche Friderici" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Bat Whispers", + "year": 1930, + "cast": [ + "Chester Morris", + "Maude Eburne", + "Chance Ward" + ], + "genres": [ + "Mystery", + "Drama" + ] + }, + { + "title": "Be Yourself", + "year": 1930, + "cast": [ + "Fanny Brice", + "Robert Armstrong" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Beau Bandit", + "year": 1930, + "cast": [ + "Rod La Rocque", + "Doris Kenyon" + ], + "genres": [ + "Western", + "Comedy" + ] + }, + { + "title": "Behind the Make-Up", + "year": 1930, + "cast": [ + "William Powell", + "Fay Wray", + "Kay Francis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Benson Murder Case", + "year": 1930, + "cast": [ + "William Powell", + "Paul Lukas", + "Natalie Moorehead" + ], + "genres": [ + "Mystery", + "Drama" + ] + }, + { + "title": "Big Boy", + "year": 1930, + "cast": [ + "Al Jolson", + "Lloyd Hughes", + "Claudia Dell" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Big House", + "year": 1930, + "cast": [ + "Wallace Beery", + "Robert Montgomery", + "Lewis Stone" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Big Party", + "year": 1930, + "cast": [ + "Sue Carol", + "Dixie Lee" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Big Pond", + "year": 1930, + "cast": [ + "Maurice Chevalier", + "Claudette Colbert" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "The Big Trail", + "year": 1930, + "cast": [ + "John Wayne", + "Marguerite Churchill" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Billy the Kid", + "year": 1930, + "cast": [ + "Wallace Beery", + "Johnny Mack Brown" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Bishop Murder Case", + "year": 1930, + "cast": [ + "Basil Rathbone", + "Leila Hyams", + "Roland Young" + ], + "genres": [ + "Mystery", + "Drama" + ] + }, + { + "title": "The Border Legion", + "year": 1930, + "cast": [ + "Fay Wray", + "Richard Arlen" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Born Reckless", + "year": 1930, + "cast": [ + "Edmund Lowe", + "Catherine Dale Owen", + "Frank Albertson" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Borrowed Wives", + "year": 1930, + "cast": [ + "Rex Lease", + "Vera Reynolds" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Boudoir Diplomat", + "year": 1930, + "cast": [ + "Betty Compson", + "Mary Duncan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Bride of the Regiment", + "year": 1930, + "cast": [ + "Vivienne Segal", + "Walter Pidgeon" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Bright Lights", + "year": 1930, + "cast": [ + "James Murray", + "Noah Beery", + "Dorothy Mackaill" + ], + "genres": [ + "Musical", + "Drama" + ] + }, + { + "title": "Brothers", + "year": 1930, + "cast": [ + "Bert Lytell", + "Dorothy Sebastian" + ], + "genres": [ + "Crime", + "Romance" + ] + }, + { + "title": "Burning Up", + "year": 1930, + "cast": [ + "Richard Arlen", + "Francis McDonald", + "Charles Sellon" + ], + "genres": [ + "Sports", + "Drama" + ] + }, + { + "title": "The Call of the Circus", + "year": 1930, + "cast": [ + "Francis X. Bushman", + "Ethel Clayton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Call of the Flesh", + "year": 1930, + "cast": [ + "Ramón Novarro", + "Dorothy Jordan", + "Ernest Torrence" + ], + "genres": [ + "Musical", + "Romance", + "Drama" + ] + }, + { + "title": "Call of the West", + "year": 1930, + "cast": [ + "Dorothy Revier", + "Tom O'Brien", + "Alan Roscoe" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Cameo Kirby", + "year": 1930, + "cast": [ + "J. Harold Murray", + "Norma Terris", + "Myrna Loy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Captain of the Guard", + "year": 1930, + "cast": [ + "Laura La Plante", + "John Boles" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Captain Thunder", + "year": 1930, + "cast": [ + "Fay Wray", + "Victor Varconi" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "Caught Short", + "year": 1930, + "cast": [ + "Marie Dressler", + "Polly Moran", + "Anita Page" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Case of Sergeant Grischa", + "year": 1930, + "cast": [ + "Chester Morris", + "Betty Compson" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "The Cat Creeps", + "year": 1930, + "cast": [ + "Helen Twelvetrees", + "Neil Hamilton" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Charley's Aunt", + "year": 1930, + "cast": [ + "Charles Ruggles", + "Hugh Williams" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Chasing Rainbows", + "year": 1930, + "cast": [ + "Bessie Love", + "Charles King" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Check and Double Check", + "year": 1930, + "cast": [ + "Freeman F. Gosden", + "Charles J. Correll", + "Duke Ellington" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Cheer Up and Smile", + "year": 1930, + "cast": [ + "Dixie Lee", + "Olga Baclanova" + ], + "genres": [ + "Musical", + "Drama", + "Comedy" + ] + }, + { + "title": "Children of Pleasure", + "year": 1930, + "cast": [ + "Lawrence Gray", + "Wynne Gibson" + ], + "genres": [ + "Romance", + "Musical", + "Comedy" + ] + }, + { + "title": "City Girl", + "year": 1930, + "cast": [ + "Charles Farrell", + "Mary Duncan", + "Anne Shirley" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Climax", + "year": 1930, + "cast": [ + "Jean Hersholt", + "Kathryn Crawford" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Cohens and Kellys in Africa", + "year": 1930, + "cast": [ + "George Sidney", + "Vera Gordon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Cohens and the Kellys in Scotland", + "year": 1930, + "cast": [ + "George Sidney", + "Vera Gordon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "College Lovers", + "year": 1930, + "cast": [ + "Marian Nixon", + "Frank McHugh" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Common Clay", + "year": 1930, + "cast": [ + "Constance Bennett", + "Lew Ayres" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Concentratin' Kid", + "year": 1930, + "cast": [ + "Hoot Gibson", + "Kathryn Crawford" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Conspiracy", + "year": 1930, + "cast": [ + "Ned Sparks", + "Bessie Love", + "George Irving" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Courage", + "year": 1930, + "cast": [ + "Belle Bennett", + "Marian Nixon", + "Blanche Friderici" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Crazy That Way", + "year": 1930, + "cast": [ + "Kenneth MacKenna", + "Joan Bennett" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Cuckoos", + "year": 1930, + "cast": [ + "Bert Wheeler", + "Dorothy Lee" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "The Czar of Broadway", + "year": 1930, + "cast": [ + "John Wray", + "Betty Compson", + "Claud Allister" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Dames Ahoy!", + "year": 1930, + "cast": [ + "Glenn Tryon", + "Gertrude Astor" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Dancers", + "year": 1930, + "cast": [ + "Lois Moran", + "Phillips Holmes", + "Mae Clarke" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dancing Sweeties", + "year": 1930, + "cast": [ + "Grant Withers", + "Sue Carol", + "Tully Marshall" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Danger Lights", + "year": 1930, + "cast": [ + "Jean Arthur", + "Hugh Herbert", + "Louis Wolheim" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dangerous Nan McGrew", + "year": 1930, + "cast": [ + "Helen Kane", + "Victor Moore", + "Frank Morgan" + ], + "genres": [ + "Western", + "Comedy" + ] + }, + { + "title": "Dangerous Paradise", + "year": 1930, + "cast": [ + "Nancy Carroll", + "Richard Arlen", + "Warner Oland" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Dawn Patrol", + "year": 1930, + "cast": [ + "Douglas Fairbanks", + "Neil Hamilton", + "Frank McHugh" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "The Dawn Trail", + "year": 1930, + "cast": [ + "Marceline Day", + "Miriam Seegar" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Derelict", + "year": 1930, + "cast": [ + "George Bancroft", + "Jessie Royce Landis" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Devil to Pay!", + "year": 1930, + "cast": [ + "Ronald Colman", + "Loretta Young", + "Myrna Loy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Devil With Women", + "year": 1930, + "cast": [ + "Victor McLaglen", + "Humphrey Bogart", + "Mona Maris" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Devil's Holiday", + "year": 1930, + "cast": [ + "Nancy Carroll", + "Phillips Holmes" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Divorce Among Friends", + "year": 1930, + "cast": [ + "James Hall", + "Irene Delroy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Divorcee", + "year": 1930, + "cast": [ + "Norma Shearer", + "Chester Morris", + "Robert Montgomery" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dixiana", + "year": 1930, + "cast": [ + "Bebe Daniels", + "Bert Wheeler" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "The Doorway to Hell", + "year": 1930, + "cast": [ + "James Cagney", + "Lew Ayres", + "Robert Elliott" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Double Cross Roads", + "year": 1930, + "cast": [ + "Robert Ames", + "Lila Lee" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "Doughboys", + "year": 1930, + "cast": [ + "Buster Keaton", + "Sally Eilers", + "Edward Brophy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Du Barry, Woman of Passion", + "year": 1930, + "cast": [ + "Norma Talmadge", + "William Farnum" + ], + "genres": [ + "Historical" + ] + }, + { + "title": "The Dude Wrangler", + "year": 1930, + "cast": [ + "Lina Basquette", + "Tom Keene" + ], + "genres": [ + "Western", + "Comedy" + ] + }, + { + "title": "Dumbbells in Ermine", + "year": 1930, + "cast": [ + "Robert Armstrong", + "Barbara Kent", + "Beryl Mercer" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "East Is West", + "year": 1930, + "cast": [ + "Edward G. Robinson", + "Lupe Vélez", + "Lew Ayres" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Embarrassing Moments", + "year": 1930, + "cast": [ + "Reginald Denny", + "Merna Kennedy" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "Extravagance", + "year": 1930, + "cast": [ + "June Collyer", + "Lloyd Hughes" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Ex-Flame", + "year": 1930, + "cast": [ + "Neil Hamilton", + "Marian Nixon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Eyes of the World", + "year": 1930, + "cast": [ + "Eulalie Jensen", + "Hugh Huntley", + "Una Merkel" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Fall Guy", + "year": 1930, + "cast": [ + "Ned Sparks", + "Mae Clarke", + "Jack Mulhall" + ], + "genres": [ + "Crime", + "Comedy" + ] + }, + { + "title": "Fast and Loose", + "year": 1930, + "cast": [ + "Miriam Hopkins", + "Carole Lombard", + "Frank Morgan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Feet First", + "year": 1930, + "cast": [ + "Harold Lloyd", + "Barbara Kent" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Fighting Legion", + "year": 1930, + "cast": [ + "Ken Maynard", + "Dorothy Dwan" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Flirting Widow", + "year": 1930, + "cast": [ + "Dorothy Mackaill", + "Basil Rathbone" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Florodora Girl", + "year": 1930, + "cast": [ + "Marion Davies", + "Lawrence Gray" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Follow the Leader", + "year": 1930, + "cast": [ + "Ed Wynn", + "Ginger Rogers", + "Ethel Merman" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Follow Thru", + "year": 1930, + "cast": [ + "Buddy Rogers", + "Nancy Carroll" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "For the Defense", + "year": 1930, + "cast": [ + "William Powell", + "Kay Francis", + "William B. Davidson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Framed", + "year": 1930, + "cast": [ + "Evelyn Brent", + "Regis Toomey" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Free and Easy", + "year": 1930, + "cast": [ + "Buster Keaton", + "Robert Montgomery", + "Anita Page" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Free Love", + "year": 1930, + "cast": [ + "Conrad Nagel", + "Genevieve Tobin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Furies", + "year": 1930, + "cast": [ + "Lois Wilson", + "H. B. Warner" + ], + "genres": [ + "Mystery", + "Drama" + ] + }, + { + "title": "General Crack", + "year": 1930, + "cast": [ + "John Barrymore", + "Marian Nixon", + "Lowell Sherman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Girl of the Port", + "year": 1930, + "cast": [ + "Sally O'Neil", + "Mitchell Lewis" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "The Girl of the Golden West", + "year": 1930, + "cast": [ + "Ann Harding", + "James Rennie", + "Harry Bannister" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Girl Said No", + "year": 1930, + "cast": [ + "William Haines", + "Marie Dressler", + "Polly Moran" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "The Gorilla", + "year": 1930, + "cast": [ + "Joe Frisco", + "Walter Pidgeon", + "Lila Lee" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Green Goddess", + "year": 1930, + "cast": [ + "George Arliss", + "Alice Joyce", + "H.B. Warner" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Golden Calf", + "year": 1930, + "cast": [ + "Jack Mulhall", + "Sue Carol" + ], + "genres": [ + "Musical", + "Romance", + "Comedy" + ] + }, + { + "title": "Golden Dawn", + "year": 1930, + "cast": [ + "Walter Woolf King", + "Vivienne Segal" + ], + "genres": [ + "Musical", + "Drama" + ] + }, + { + "title": "Going Wild", + "year": 1930, + "cast": [ + "Joe E. Brown", + "Lawrence Gray", + "Ona Munson" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Good Intentions", + "year": 1930, + "cast": [ + "Edmund Lowe", + "Marguerite Churchill" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Good News", + "year": 1930, + "cast": [ + "Bessie Love", + "Cliff Edwards" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "The Grand Parade", + "year": 1930, + "cast": [ + "Helen Twelvetrees", + "Fred Scott" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Grumpy", + "year": 1930, + "cast": [ + "Cyril Maude", + "Frances Dade" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Guilty?", + "year": 1930, + "cast": [ + "Virginia Valli", + "John Holland" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Half Shot at Sunrise", + "year": 1930, + "cast": [ + "Bert Wheeler", + "Robert Woolsey", + "Dorothy Lee" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Harmony at Home", + "year": 1930, + "cast": [ + "Marguerite Churchill", + "Charlotte Henry" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "He Knew Women", + "year": 1930, + "cast": [ + "Lowell Sherman", + "Alice Joyce" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "Heads Up", + "year": 1930, + "cast": [ + "Charles \"Buddy\" Rogers", + "Helen Kane" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hell Harbor", + "year": 1930, + "cast": [ + "Lupe Velez", + "Jean Hersholt" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "Hell's Angels", + "year": 1930, + "cast": [ + "Jean Harlow", + "Ben Lyon", + "James Hall" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "Hell's Heroes", + "year": 1930, + "cast": [ + "Charles Bickford", + "Raymond Hatton" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Her Wedding Night", + "year": 1930, + "cast": [ + "Clara Bow", + "Ralph Forbes" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Hide-Out", + "year": 1930, + "cast": [ + "James Murray", + "Kathryn Crawford" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "High Society Blues", + "year": 1930, + "cast": [ + "Janet Gaynor", + "Charles Farrell", + "Hedda Hopper" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Hit the Deck", + "year": 1930, + "cast": [ + "Jack Oakie", + "Roger Gray" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Hold Everything", + "year": 1930, + "cast": [ + "Winnie Lightner", + "Joe E. Brown" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Holiday", + "year": 1930, + "cast": [ + "Ann Harding", + "Mary Astor" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Honey", + "year": 1930, + "cast": [ + "Nancy Carroll", + "Lillian Roth" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hook, Line and Sinker", + "year": 1930, + "cast": [ + "Bert Wheeler", + "Dorothy Lee" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Hot Curves", + "year": 1930, + "cast": [ + "Benny Rubin", + "Rex Lease", + "Alice Day" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "In Gay Madrid", + "year": 1930, + "cast": [ + "Ramon Novarro", + "Dorothy Jordan" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "In the Next Room", + "year": 1930, + "cast": [ + "Jack Mulhall", + "Alice Day" + ], + "genres": [ + "Drama", + "Thriller" + ] + }, + { + "title": "Ingagi", + "year": 1930, + "cast": [], + "genres": [] + }, + { + "title": "Inside the Lines", + "year": 1930, + "cast": [ + "Betty Compson", + "Montagu Love", + "Betty Carter" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Isle of Escape", + "year": 1930, + "cast": [ + "Monte Blue", + "Myrna Loy" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Jazz Cinderella", + "year": 1930, + "cast": [ + "Myrna Loy", + "Nancy Welford" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Journey's End", + "year": 1930, + "cast": [ + "Colin Clive", + "David Manners" + ], + "genres": [ + "War" + ] + }, + { + "title": "Just Imagine", + "year": 1930, + "cast": [ + "Maureen O'Sullivan", + "John Garrick" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Kathleen Mavourneen", + "year": 1930, + "cast": [ + "Sally O'Neil", + "Charles Delaney" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Kibitzer", + "year": 1930, + "cast": [ + "Mary Brian", + "Neil Hamilton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "King of Jazz", + "year": 1930, + "cast": [ + "Bing Crosby", + "Paul Whiteman", + "John Boles" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Kismet", + "year": 1930, + "cast": [ + "Otis Skinner", + "Loretta Young", + "David Manners" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Ladies in Love", + "year": 1930, + "cast": [ + "Alice Day", + "Johnnie Walker" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Ladies Love Brutes", + "year": 1930, + "cast": [ + "George Bancroft", + "Mary Astor", + "Fredric March" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Ladies of Leisure", + "year": 1930, + "cast": [ + "Barbara Stanwyck", + "Ralph Graves" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "The Lady of Scandal", + "year": 1930, + "cast": [ + "Ruth Chatterton", + "Basil Rathbone" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "A Lady Surrenders", + "year": 1930, + "cast": [ + "Genevieve Tobin", + "Conrad Nagel" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Lady to Love", + "year": 1930, + "cast": [ + "Edward G. Robinson", + "Vilma Bánky", + "Robert Ames" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "A Lady's Morals", + "year": 1930, + "cast": [ + "Grace Moore", + "Reginald Denny", + "Wallace Beery" + ], + "genres": [ + "Musical", + "Drama" + ] + }, + { + "title": "The Lash", + "year": 1930, + "cast": [ + "Richard Barthelmess", + "Mary Astor", + "Marian Nixon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Last of the Duanes", + "year": 1930, + "cast": [ + "George O'Brien", + "Lucile Browne" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Laughter", + "year": 1930, + "cast": [ + "Nancy Carroll", + "Fredric March" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Lawful Larceny", + "year": 1930, + "cast": [ + "Bebe Daniels", + "Olive Tell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Leathernecking", + "year": 1930, + "cast": [ + "Irene Dunne", + "Ken Murray" + ], + "genres": [ + "Musical", + "Comedy", + "Drama" + ] + }, + { + "title": "Let Us Be Gay", + "year": 1930, + "cast": [ + "Norma Shearer", + "Marie Dressler", + "Rod La Rocque" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "Let's Go Native", + "year": 1930, + "cast": [ + "Jack Oakie", + "Jeanette MacDonald" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Let's Go Places", + "year": 1930, + "cast": [ + "Joseph Wagstaff", + "Lola Lane" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Life of the Party", + "year": 1930, + "cast": [ + "Winnie Lightner", + "Jack Whiting" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Lightnin'", + "year": 1930, + "cast": [ + "Will Rogers", + "Louise Dresser", + "Joel McCrea" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Light of Western Stars", + "year": 1930, + "cast": [ + "Richard Arlen", + "Mary Brian" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Lilies of the Field", + "year": 1930, + "cast": [ + "Corinne Griffith", + "Ralph Forbes" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Liliom", + "year": 1930, + "cast": [ + "Charles Farrell", + "Rose Hobart" + ], + "genres": [ + "Drama", + "Fantasy" + ] + }, + { + "title": "The Little Accident", + "year": 1930, + "cast": [ + "Douglas Fairbanks", + "Anita Page", + "Sally Blane" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Lone Star Ranger", + "year": 1930, + "cast": [ + "George O'Brien", + "Sue Carol" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Loose Ankles", + "year": 1930, + "cast": [ + "Loretta Young", + "Douglas Fairbanks Jr." + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Lord Byron of Broadway", + "year": 1930, + "cast": [ + "Charles Kaley", + "Ethelind Terry" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "The Lottery Bride", + "year": 1930, + "cast": [ + "Jeanette MacDonald", + "John Garrick", + "Joe E. Brown" + ], + "genres": [ + "Musical", + "Drama" + ] + }, + { + "title": "Lotus Lady", + "year": 1930, + "cast": [ + "Fern Andra", + "Betty Francisco" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Love Among the Millionaires", + "year": 1930, + "cast": [ + "Clara Bow", + "Stuart Erwin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Love Comes Along", + "year": 1930, + "cast": [ + "Bebe Daniels", + "Montagu Love" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "Love in the Rough", + "year": 1930, + "cast": [ + "Robert Montgomery", + "Dorothy Jordan" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "The Love Trader", + "year": 1930, + "cast": [ + "Chester Conklin", + "Henry B. Walthall" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Lovin' the Ladies", + "year": 1930, + "cast": [ + "Richard Dix", + "Rita La Roy", + "Lois Wilson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Lucky Larkin", + "year": 1930, + "cast": [ + "Ken Maynard", + "Nora Lane" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Lummox", + "year": 1930, + "cast": [ + "Winifred Westover", + "Dorothy Janis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Madam Satan", + "year": 1930, + "cast": [ + "Kay Johnson", + "Reginald Denny" + ], + "genres": [ + "Musical", + "Romance", + "Comedy" + ] + }, + { + "title": "Madonna of the Streets", + "year": 1930, + "cast": [ + "Evelyn Brent", + "Robert Ames" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Mamba", + "year": 1930, + "cast": [ + "Jean Hersholt", + "Eleanor Boardman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Mammy", + "year": 1930, + "cast": [ + "Al Jolson", + "Lois Moran" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Man from Blankley's", + "year": 1930, + "cast": [ + "John Barrymore", + "Loretta Young" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Man from Wyoming", + "year": 1930, + "cast": [ + "Gary Cooper", + "June Collyer", + "Regis Toomey" + ], + "genres": [ + "War", + "Romance" + ] + }, + { + "title": "The Man Hunter", + "year": 1930, + "cast": [ + "Rin Tin Tin", + "Nora Lane" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Man to Man", + "year": 1930, + "cast": [ + "Phillips Holmes", + "Grant Mitchell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Man Trouble", + "year": 1930, + "cast": [ + "Dorothy Mackaill", + "Kenneth MacKenna" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Manslaughter", + "year": 1930, + "cast": [ + "Claudette Colbert", + "Fredric March", + "Natalie Moorehead" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Matrimonial Bed", + "year": 1930, + "cast": [ + "Frank Fay", + "Lilyan Tashman" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "Maybe It's Love", + "year": 1930, + "cast": [ + "Joan Bennett", + "Joe E. Brown" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "The Medicine Man", + "year": 1930, + "cast": [ + "Jack Benny", + "Betty Bronson" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "The Melody Man", + "year": 1930, + "cast": [ + "John St. Polis", + "Alice Day" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Men Are Like That", + "year": 1930, + "cast": [ + "Hal Skelly", + "Doris Hill" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Men of the North", + "year": 1930, + "cast": [ + "Gilbert Roland", + "Arnold Korff" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Men Without Women", + "year": 1930, + "cast": [ + "Kenneth MacKenna", + "Frank Albertson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Midnight Mystery", + "year": 1930, + "cast": [ + "Betty Compson", + "Lowell Sherman" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Midnight Special", + "year": 1930, + "cast": [ + "Glenn Tryon", + "Merna Kennedy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Min and Bill", + "year": 1930, + "cast": [ + "Marie Dressler", + "Wallace Beery" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "Moby Dick", + "year": 1930, + "cast": [ + "John Barrymore", + "Joan Bennett", + "Noble Johnson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Montana Moon", + "year": 1930, + "cast": [ + "Joan Crawford", + "Ricardo Cortez" + ], + "genres": [ + "Western", + "Drama", + "Comedy" + ] + }, + { + "title": "Monte Carlo", + "year": 1930, + "cast": [ + "Jeanette MacDonald", + "Jack Buchanan", + "ZaSu Pitts" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Morocco", + "year": 1930, + "cast": [ + "Marlene Dietrich", + "Gary Cooper", + "Adolphe Menjou" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Mothers Cry", + "year": 1930, + "cast": [ + "Dorothy Peterson", + "Helen Chandler", + "David Manners" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Mountain Justice", + "year": 1930, + "cast": [ + "Ken Maynard", + "Kathryn Crawford" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Mounted Stranger", + "year": 1930, + "cast": [ + "Hoot Gibson", + "Fred Burns" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Murder on the Roof", + "year": 1930, + "cast": [ + "Dorothy Revier", + "Raymond Hatton" + ], + "genres": [ + "Mystery", + "Drama" + ] + }, + { + "title": "Murder Will Out", + "year": 1930, + "cast": [ + "Jack Mulhall", + "Lila Lee", + "Noah Beery" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Near the Rainbow's End", + "year": 1930, + "cast": [ + "Bob Steele", + "Louise Lorraine" + ], + "genres": [ + "Western" + ] + }, + { + "title": "New Moon", + "year": 1930, + "cast": [ + "Lawrence Tibbett", + "Grace Moore", + "Adolphe Menjou" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "New Movietone Follies of 1930", + "year": 1930, + "cast": [ + "El Brendel", + "Marjorie White" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Night Ride", + "year": 1930, + "cast": [ + "Joseph Schildkraut", + "Barbara Kent", + "Edward G. Robinson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "No, No, Nanette", + "year": 1930, + "cast": [ + "Bernice Claire", + "Alexander Gray", + "Lucien Littlefield" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Not Damaged", + "year": 1930, + "cast": [ + "Lois Moran", + "Robert Ames" + ], + "genres": [ + "Romance", + "Drama", + "Comedy" + ] + }, + { + "title": "Not So Dumb", + "year": 1930, + "cast": [ + "Marion Davies", + "Franklin Pangborn", + "Julia Faye" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Notorious Affair", + "year": 1930, + "cast": [ + "Billie Dove", + "Basil Rathbone", + "Kay Francis" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Numbered Men", + "year": 1930, + "cast": [ + "Bernice Claire", + "Conrad Nagel" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Office Wife", + "year": 1930, + "cast": [ + "Dorothy Mackaill", + "Lewis Stone", + "Joan Blondell" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "Oh, For a Man!", + "year": 1930, + "cast": [ + "Jeanette MacDonald", + "Reginald Denny" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Oh Sailor Behave", + "year": 1930, + "cast": [ + "Irene Delroy", + "Lowell Sherman" + ], + "genres": [ + "Musical", + "Drama", + "Comedy" + ] + }, + { + "title": "Oklahoma Cyclone", + "year": 1930, + "cast": [ + "Bob Steele", + "Slim Whitaker" + ], + "genres": [ + "Western", + "Drama" + ] + }, + { + "title": "Old English", + "year": 1930, + "cast": [ + "George Arliss", + "Leon Janney" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "On the Border", + "year": 1930, + "cast": [ + "Rin Tin Tin", + "Armida" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "On the Level", + "year": 1930, + "cast": [ + "Victor McLaglen", + "Lilyan Tashman", + "Fifi D'Orsay" + ], + "genres": [ + "Action" + ] + }, + { + "title": "On Your Back", + "year": 1930, + "cast": [ + "Irene Rich", + "Raymond Hackett", + "H. B. Warner" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Once a Gentleman", + "year": 1930, + "cast": [ + "Edward Everett Horton", + "Lois Wilson", + "Francis X. Bushman" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "One Mad Kiss", + "year": 1930, + "cast": [ + "José Mojica", + "Mona Maris" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "One Night at Susie's", + "year": 1930, + "cast": [ + "Billie Dove", + "Douglas Fairbanks Jr." + ], + "genres": [ + "Drama" + ] + }, + { + "title": "One Romantic Night", + "year": 1930, + "cast": [ + "Lillian Gish", + "Rod La Rocque" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Only Saps Work", + "year": 1930, + "cast": [ + "Leon Errol", + "Richard Arlen", + "Mary Brian" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Only the Brave", + "year": 1930, + "cast": [ + "Gary Cooper", + "Mary Brian", + "Guy Oliver" + ], + "genres": [ + "War", + "Romance" + ] + }, + { + "title": "The Other Tomorrow", + "year": 1930, + "cast": [ + "Billie Dove", + "Kenneth Thomson", + "Grant Withers" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Our Blushing Brides", + "year": 1930, + "cast": [ + "Joan Crawford", + "Robert Montgomery", + "Anita Page" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Outside the Law", + "year": 1930, + "cast": [ + "Edward G. Robinson", + "Mary Nolan", + "Owen Moore" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Outward Bound", + "year": 1930, + "cast": [ + "Leslie Howard", + "Douglas Fairbanks, Jr.", + "Helen Chandler" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Paid", + "year": 1930, + "cast": [ + "Joan Crawford", + "Marie Provost", + "Robert Armstrong" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Parade of the West", + "year": 1930, + "cast": [ + "Ken Maynard", + "Gladys McConnell" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Paradise Island", + "year": 1930, + "cast": [ + "Kenneth Harlan", + "Marceline Day" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Paramount on Parade", + "year": 1930, + "cast": [ + "Jean Arthur", + "Maurice Chevalier", + "Gary Cooper" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Part Time Wife", + "year": 1930, + "cast": [ + "Edmund Lowe", + "Leila Hyams" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Party Girl", + "year": 1930, + "cast": [ + "Douglas Fairbanks Jr.", + "Jeanette Loff", + "Marie Provost" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Passion Flower", + "year": 1930, + "cast": [ + "Kay Francis", + "Kay Johnson", + "Charles Bickford" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Pay-Off", + "year": 1930, + "cast": [ + "Lowell Sherman", + "Marian Nixon", + "William Janney" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Peacock Alley", + "year": 1930, + "cast": [ + "Mae Murray", + "Jason Robards Sr." + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Playboy of Paris", + "year": 1930, + "cast": [ + "Maurice Chevalier", + "Frances Dee" + ], + "genres": [ + "Musical", + "Romance", + "Comedy" + ] + }, + { + "title": "Playing Around", + "year": 1930, + "cast": [ + "Alice White", + "Chester Morris" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Princess and the Plumber", + "year": 1930, + "cast": [ + "Charles Farrell", + "Maureen O'Sullivan" + ], + "genres": [ + "Romance", + "Drama", + "Comedy" + ] + }, + { + "title": "Puttin' On The Ritz", + "year": 1930, + "cast": [ + "Joan Bennett", + "Harry Richman", + "George Irving" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Queen High", + "year": 1930, + "cast": [ + "Charlie Ruggles", + "Frank Morgan", + "Ginger Rogers" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Raffles", + "year": 1930, + "cast": [ + "Ronald Colman", + "Kay Francis" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Rain Or Shine", + "year": 1930, + "cast": [ + "Louise Fazenda", + "Joan Peers", + "Joe Cook" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "Recaptured Love", + "year": 1930, + "cast": [ + "Belle Bennett", + "Dorothy Burgess" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Redemption", + "year": 1930, + "cast": [ + "John Gilbert", + "Renée Adorée", + "Conrad Nagel" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Remote Control", + "year": 1930, + "cast": [ + "William Haines", + "Mary Doran" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Renegades", + "year": 1930, + "cast": [ + "Warner Baxter", + "Myrna Loy", + "Noah Beery" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Return of Dr. Fu Manchu", + "year": 1930, + "cast": [ + "Warner Oland", + "Jean Arthur" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Right to Love", + "year": 1930, + "cast": [ + "Ruth Chatterton", + "Paul Lukas", + "Irving Pachel" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "River's End", + "year": 1930, + "cast": [ + "Charles Bickford", + "Evalyn Knapp" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Road to Paradise", + "year": 1930, + "cast": [ + "Loretta Young", + "Jack Mulhall", + "George Barraud" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Roadhouse Nights", + "year": 1930, + "cast": [ + "Helen Morgan", + "Charles Ruggles" + ], + "genres": [ + "Crime", + "Comedy" + ] + }, + { + "title": "Roaring Ranch", + "year": 1930, + "cast": [ + "Hoot Gibson", + "Sally Eilers" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Rogue of the Rio Grande", + "year": 1930, + "cast": [ + "José Bohr", + "Myrna Loy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Rogue Song", + "year": 1930, + "cast": [ + "Lawrence Tibbett", + "Clifford Grey" + ], + "genres": [] + }, + { + "title": "Romance", + "year": 1930, + "cast": [ + "Greta Garbo", + "Lewis Stone" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "Rough Romance", + "year": 1930, + "cast": [ + "George O'Brien", + "Helen Chandler" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Rough Waters", + "year": 1930, + "cast": [ + "Rin Tin Tin", + "Jobyna Ralston" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Runaway Bride", + "year": 1930, + "cast": [ + "Mary Astor", + "Lloyd Hughes", + "Paul Hurst" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Safety in Numbers", + "year": 1930, + "cast": [ + "Carole Lombard", + "Charles Rogers", + "Kathryn Crawford" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "The Santa Fe Trail", + "year": 1930, + "cast": [ + "Richard Arlen", + "Rosita Moreno" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Sap from Syracuse", + "year": 1930, + "cast": [ + "Jack Oakie", + "Ginger Rogers" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Sarah and Son", + "year": 1930, + "cast": [ + "Ruth Chatterton", + "Fredric March" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Scarlet Pages", + "year": 1930, + "cast": [ + "Elsie Ferguson", + "John Halliday", + "Grant Withers" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Scotland Yard", + "year": 1930, + "cast": [ + "Edmund Lowe", + "Joan Bennett" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Sea Bat", + "year": 1930, + "cast": [ + "Raquel Torres", + "Charles Bickford", + "Nils Asther" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Sea God", + "year": 1930, + "cast": [ + "Richard Arlen", + "Fay Wray" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Sea Legs", + "year": 1930, + "cast": [ + "Jack Oakie", + "Lillian Roth" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Sea Wolf", + "year": 1930, + "cast": [ + "Milton Sills", + "Raymond Hackett" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Second Choice", + "year": 1930, + "cast": [ + "Dolores Costello", + "Chester Morris" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Second Floor Mystery", + "year": 1930, + "cast": [ + "Grant Withers", + "Loretta Young", + "H. B. Warner" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Second Honeymoon", + "year": 1930, + "cast": [ + "Josephine Dunn", + "Bernice Elliott", + "Edward Earle" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Second Wife", + "year": 1930, + "cast": [ + "Conrad Nagel", + "Lila Lee" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "See America Thirst", + "year": 1930, + "cast": [ + "Harry Langdon", + "Bessie Love" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Seven Days Leave", + "year": 1930, + "cast": [ + "Gary Cooper", + "Beryl Mercer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Shadow of the Law", + "year": 1930, + "cast": [ + "William Powell", + "Marion Shilling" + ], + "genres": [ + "Crime", + "Romance" + ] + }, + { + "title": "Shadow Ranch", + "year": 1930, + "cast": [ + "Buck Jones", + "Marguerite De La Motte" + ], + "genres": [ + "Western" + ] + }, + { + "title": "She Couldn't Say No", + "year": 1930, + "cast": [ + "Winnie Lightner", + "Chester Morris" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "She Got What She Wanted", + "year": 1930, + "cast": [ + "Betty Compson", + "Lee Tracy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "She's My Weakness", + "year": 1930, + "cast": [ + "Sue Carol", + "Arthur Lake" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "The Ship from Shanghai", + "year": 1930, + "cast": [ + "Conrad Nagel", + "Kay Johnson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Shooting Straight", + "year": 1930, + "cast": [ + "Richard Dix", + "James Neill" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Show Girl in Hollywood", + "year": 1930, + "cast": [ + "Alice White", + "Jack Mulhall", + "Blanche Sweet" + ], + "genres": [ + "Musical", + "Drama", + "Comedy" + ] + }, + { + "title": "The Silver Horde", + "year": 1930, + "cast": [ + "Evelyn Brent", + "Joel McCrea", + "Jean Arthur" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sin Takes a Holiday", + "year": 1930, + "cast": [ + "Constance Bennett", + "Basil Rathbone" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Sinners' Holiday", + "year": 1930, + "cast": [ + "Grant Withers", + "Evalyn Knapp" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Sins of the Children", + "year": 1930, + "cast": [ + "Louis Mann", + "Robert Montgomery" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sisters", + "year": 1930, + "cast": [ + "Sally O'Neil", + "Molly O'Day" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Slightly Scarlet", + "year": 1930, + "cast": [ + "Evelyn Brent", + "Clive Brook" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "So This Is London", + "year": 1930, + "cast": [ + "Will Rogers", + "Irene Rich" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Social Lion", + "year": 1930, + "cast": [ + "Jack Oakie", + "Mary Brian", + "Richard 'Skeets' Gallagher" + ], + "genres": [ + "Sports", + "Romance", + "Comedy" + ] + }, + { + "title": "A Soldier's Plaything", + "year": 1930, + "cast": [ + "Ben Lyon", + "Harry Langdon", + "Noah Beery" + ], + "genres": [ + "War", + "Comedy", + "Drama" + ] + }, + { + "title": "Soldiers and Women", + "year": 1930, + "cast": [ + "Aileen Pringle", + "Grant Withers" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Son of the Gods", + "year": 1930, + "cast": [ + "Richard Barthelmess", + "Constance Bennett" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "Song o' My Heart", + "year": 1930, + "cast": [ + "John McCormack", + "Maureen O'Sullivan" + ], + "genres": [ + "Musical", + "Drama" + ] + }, + { + "title": "Song of the Caballero", + "year": 1930, + "cast": [ + "Ken Maynard", + "Doris Hill" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Song of the Flame", + "year": 1930, + "cast": [ + "Alexander Gray", + "Bernice Claire", + "Noah Beery" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Song of the West", + "year": 1930, + "cast": [ + "John Boles", + "Vivienne Segal" + ], + "genres": [ + "Musical", + "Western" + ] + }, + { + "title": "Sons of the Saddle", + "year": 1930, + "cast": [ + "Ken Maynard", + "Doris Hill" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Soup to Nuts", + "year": 1930, + "cast": [ + "Ted Healy", + "Shemp Howard", + "Frances McCoy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Spoilers", + "year": 1930, + "cast": [ + "Gary Cooper", + "Kay Johnson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Spring Is Here", + "year": 1930, + "cast": [ + "Lawrence Gray", + "Bernice Claire" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Spurs", + "year": 1930, + "cast": [ + "Hoot Gibson", + "Robert Homans" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Storm", + "year": 1930, + "cast": [ + "Lupe Vélez", + "Paul Cavanagh", + "William Boyd" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Street of Chance", + "year": 1930, + "cast": [ + "William Powell", + "Jean Arthur", + "Kay Francis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Strictly Modern", + "year": 1930, + "cast": [ + "Dorothy Mackaill", + "Sidney Blackmer" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Strictly Unconventional", + "year": 1930, + "cast": [ + "Catherine Dale Owen", + "Paul Cavanagh" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Such Men Are Dangerous", + "year": 1930, + "cast": [ + "Catherine Dale Owen", + "Hedda Hopper", + "Bela Lugosi" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sunny", + "year": 1930, + "cast": [ + "Marilyn Miller", + "Lawrence Gray", + "O. P. Heggie" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Sunny Skies", + "year": 1930, + "cast": [ + "Benny Rubin", + "Marceline Day", + "Rex Lease" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "Sweet Kitty Bellairs", + "year": 1930, + "cast": [ + "Claudia Dell", + "Walter Pidgeon", + "Ernest Torrence" + ], + "genres": [ + "Musical", + "Drama" + ] + }, + { + "title": "Sweet Mama", + "year": 1930, + "cast": [ + "Alice White", + "David Manners" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sweethearts and Wives", + "year": 1930, + "cast": [ + "Billie Dove", + "Clive Brook", + "Sidney Blackmer" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Swellhead", + "year": 1930, + "cast": [ + "James Gleason", + "Marion Shilling" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Temple Tower", + "year": 1930, + "cast": [ + "Kenneth MacKenna", + "Marceline Day" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Texan", + "year": 1930, + "cast": [ + "Gary Cooper", + "Fay Wray", + "Emma Dunn" + ], + "genres": [ + "Western" + ] + }, + { + "title": "They Learned About Women", + "year": 1930, + "cast": [ + "Van and Schenck", + "Bessie Love" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Third Alarm", + "year": 1930, + "cast": [ + "Anita Louise", + "Jean Hersholt" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "This Mad World", + "year": 1930, + "cast": [ + "Kay Johnson", + "Basil Rathbone" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "Those Three French Girls", + "year": 1930, + "cast": [ + "Fifi D'Orsay", + "Reginald Denny" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Those Who Dance", + "year": 1930, + "cast": [ + "Monte Blue", + "Lila Lee", + "Betty Compson" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Three Faces East", + "year": 1930, + "cast": [ + "Constance Bennett", + "Erich von Stroheim" + ], + "genres": [ + "War", + "Romance" + ] + }, + { + "title": "The Three Sisters", + "year": 1930, + "cast": [ + "Louise Dresser", + "Joyce Compton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Thus is Life", + "year": 1930, + "cast": [ + "José Bohr", + "Delia Magana" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Today", + "year": 1930, + "cast": [ + "Conrad Nagel", + "Catherine Dale Owen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Tol'able David", + "year": 1930, + "cast": [ + "Richard Cromwell", + "Noah Beery" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Tom Sawyer", + "year": 1930, + "cast": [ + "Jackie Coogan", + "Junior Durkin", + "Mitzi Green" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Top Speed", + "year": 1930, + "cast": [ + "Joe E. Brown", + "Laura Lee", + "Frank McHugh" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Trailing Trouble", + "year": 1930, + "cast": [ + "Hoot Gibson", + "William McCall" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Trigger Tricks", + "year": 1930, + "cast": [ + "Hoot Gibson", + "Sally Eilers" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Troopers Three", + "year": 1930, + "cast": [ + "Rex Lease", + "Dorothy Gulliver" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "True to the Navy", + "year": 1930, + "cast": [ + "Fredric March", + "Clara Bow", + "Harry Green" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Truth About Youth", + "year": 1930, + "cast": [ + "Loretta Young", + "Myrna Loy", + "David Manners" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Under a Texas Moon", + "year": 1930, + "cast": [ + "Myrna Loy", + "Noah Beery", + "Raquel Torres" + ], + "genres": [ + "Western", + "Comedy" + ] + }, + { + "title": "Undertow", + "year": 1930, + "cast": [ + "Mary Nolan", + "Johnny Mack Brown" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Unholy Three", + "year": 1930, + "cast": [ + "Lon Chaney", + "Lila Lee", + "Harry Earles" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Up the River", + "year": 1930, + "cast": [ + "Spencer Tracy", + "Humphrey Bogart", + "Claire Luce" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Utah Kid", + "year": 1930, + "cast": [ + "Rex Lease", + "Dorothy Sebastian", + "Tom Santschi" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Vagabond King", + "year": 1930, + "cast": [ + "Jeanette MacDonald", + "O.P. Heggie", + "Lillian Roth" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Viennese Nights", + "year": 1930, + "cast": [ + "Vivienne Segal", + "Walter Pidgeon" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Virtuous Sin", + "year": 1930, + "cast": [ + "Walter Huston", + "Kay Francis" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "War Nurse", + "year": 1930, + "cast": [ + "Robert Montgomery", + "Anita Page", + "June Walker" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "Way for a Sailor", + "year": 1930, + "cast": [ + "John Gilbert", + "Wallace Beery" + ], + "genres": [ + "Romance", + "Drama", + "Comedy" + ] + }, + { + "title": "The Way of All Men", + "year": 1930, + "cast": [ + "Douglas Fairbanks Jr.", + "Dorothy Revier" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Way Out West", + "year": 1930, + "cast": [ + "William Haines", + "Polly Moran", + "Leila Hyams" + ], + "genres": [ + "Western", + "Comedy", + "Drama" + ] + }, + { + "title": "What a Man!", + "year": 1930, + "cast": [ + "Reginald Denny", + "Miriam Seegar" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "What a Widow!", + "year": 1930, + "cast": [ + "Gloria Swanson", + "Owen Moore" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "What Men Want", + "year": 1930, + "cast": [ + "Pauline Starke", + "Ben Lyon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Whoopee!", + "year": 1930, + "cast": [ + "Eddie Cantor", + "Eleanor Hunt", + "Ethel Shutta" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Wide Open", + "year": 1930, + "cast": [ + "Edward Everett Horton", + "Patsy Ruth Miller" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Widow From Chicago", + "year": 1930, + "cast": [ + "Edward G. Robinson", + "Alice White", + "Frank McHugh" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "Wild Company", + "year": 1930, + "cast": [ + "Joyce Compton", + "H. B. Warner", + "Bela Lugosi" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Woman Racket", + "year": 1930, + "cast": [ + "Tom Moore", + "Blanche Sweet", + "Tenen Holtz" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "Women Everywhere", + "year": 1930, + "cast": [ + "J. Harold Murray", + "Fifi D'Orsay" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Worldly Goods", + "year": 1930, + "cast": [ + "James Kirkwood Sr.", + "Merna Kennedy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Young Desire", + "year": 1930, + "cast": [ + "Mary Nolan", + "William Janney" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Young Eagles", + "year": 1930, + "cast": [ + "Jean Arthur", + "Charles Rogers", + "Paul Lukas" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Young Man of Manhattan", + "year": 1930, + "cast": [ + "Claudette Colbert", + "Ginger Rogers", + "Charles Ruggles" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "24 Hours", + "year": 1931, + "cast": [ + "Kay Francis", + "Miriam Hopkins", + "Regis Toomey" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Age for Love", + "year": 1931, + "cast": [ + "Billie Dove", + "Edward Everett Horton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Alexander Hamilton", + "year": 1931, + "cast": [ + "George Arliss", + "Doris Kenyon", + "Montagu Love" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Alice in Wonderland", + "year": 1931, + "cast": [ + "Ruth Gilbert", + "Leslie King" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Always Goodbye", + "year": 1931, + "cast": [ + "Elissa Landi", + "Paul Cavanagh" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Ambassador Bill", + "year": 1931, + "cast": [ + "Will Rogers", + "Marguerite Churchill", + "Greta Nissen" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "An American Tragedy", + "year": 1931, + "cast": [ + "Sylvia Sidney", + "Phillips Holmes", + "Frances Dee" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Annabelle's Affairs", + "year": 1931, + "cast": [ + "Victor McLaglen", + "Jeanette MacDonald" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Are These Our Children?", + "year": 1931, + "cast": [ + "Eric Linden", + "Ben Alexander" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Are You There?", + "year": 1931, + "cast": [ + "Beatrice Lillie", + "John Garrick" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Arizona", + "year": 1931, + "cast": [ + "Laura La Plante", + "John Wayne", + "June Clyde" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Arizona Terror", + "year": 1931, + "cast": [ + "Ken Maynard", + "Lina Basquette" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Arrowsmith", + "year": 1931, + "cast": [ + "Ronald Colman", + "Helen Hayes", + "Myrna Loy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Avenger", + "year": 1931, + "cast": [ + "Buck Jones", + "Dorothy Revier" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Bachelor Apartment", + "year": 1931, + "cast": [ + "Irene Dunne", + "Lowell Sherman", + "Mae Murray" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Bachelor Father", + "year": 1931, + "cast": [ + "Marion Davies", + "Ralph Forbes", + "C. Aubrey Smith" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Bad Company", + "year": 1931, + "cast": [ + "Helen Twelvetrees", + "Ricardo Cortez", + "John Garrick" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Bad Girl", + "year": 1931, + "cast": [ + "Sally Eilers", + "James Dunn", + "Minna Gombell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Bad Sister", + "year": 1931, + "cast": [ + "Conrad Nagel", + "Bette Davis", + "Humphrey Bogart" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Bargain", + "year": 1931, + "cast": [ + "Evalyn Knapp", + "Lewis Stone", + "Doris Kenyon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Beau Ideal", + "year": 1931, + "cast": [ + "Ralph Forbes", + "Loretta Young" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Behind Office Doors", + "year": 1931, + "cast": [ + "Mary Astor", + "Ricardo Cortez", + "Catherine Dale Owen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Beloved Bachelor", + "year": 1931, + "cast": [ + "Paul Lukas", + "Dorothy Jordan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Beyond Victory", + "year": 1931, + "cast": [ + "Bill Boyd", + "James Gleason" + ], + "genres": [ + "War" + ] + }, + { + "title": "Big Business Girl", + "year": 1931, + "cast": [ + "Loretta Young", + "Frank Albertson", + "Ricardo Cortez" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Big Gamble", + "year": 1931, + "cast": [ + "William Boyd", + "James Gleason", + "June MacCloy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Big Shot", + "year": 1931, + "cast": [ + "Eddie Quillan", + "Maureen O'Sullivan", + "Mary Nolan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Black Camel", + "year": 1931, + "cast": [ + "Warner Oland", + "Sally Eilers", + "Bela Lugosi" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "Blonde Crazy", + "year": 1931, + "cast": [ + "James Cagney", + "Joan Blondell", + "Ray Milland" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Body and Soul", + "year": 1931, + "cast": [ + "Charles Farrell", + "Elissa Landi", + "Humphrey Bogart" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Border Law", + "year": 1931, + "cast": [ + "Buck Jones", + "Jim Mason", + "Lupita Tovar" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Born to Love", + "year": 1931, + "cast": [ + "Joel McCrea", + "Constance Bennett", + "Paul Cavanagh" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Bought", + "year": 1931, + "cast": [ + "Constance Bennett", + "Ben Lyon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Branded", + "year": 1931, + "cast": [ + "Buck Jones", + "Wallace MacDonald" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Branded Men", + "year": 1931, + "cast": [ + "Ken Maynard", + "June Clyde", + "Irving Bacon" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Brat", + "year": 1931, + "cast": [ + "Sally O'Neil", + "Alan Dinehart" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Broadminded", + "year": 1931, + "cast": [ + "Joe E. Brown", + "Marjorie White", + "Bela Lugosi" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Captain Applejack", + "year": 1931, + "cast": [ + "Mary Brian", + "Kay Strozzi", + "John Halliday" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Caught", + "year": 1931, + "cast": [ + "Richard Arlen", + "Louise Dresser" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Caught Cheating", + "year": 1931, + "cast": [ + "Charles Murray", + "Dorothy Christy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Caught Plastered", + "year": 1931, + "cast": [ + "Bert Wheeler", + "Robert Woolsey", + "Dorothy Lee" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Champ", + "year": 1931, + "cast": [ + "Wallace Beery", + "Jackie Cooper", + "Irene Rich" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Chances", + "year": 1931, + "cast": [ + "Douglas Fairbanks Jr.", + "Rose Hobart" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Charlie Chan Carries On", + "year": 1931, + "cast": [ + "Warner Oland", + "John Garrick" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Cheat", + "year": 1931, + "cast": [ + "Tallulah Bankhead", + "Harvey Stephens" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Children of Dreams", + "year": 1931, + "cast": [ + "Tom Patricola", + "Marion Byron" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Chinatown After Dark", + "year": 1931, + "cast": [ + "Carmel Myers", + "Rex Lease", + "Barbara Kent" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Cimarron", + "year": 1931, + "cast": [ + "Irene Dunne", + "Richard Dix", + "Estelle Taylor" + ], + "genres": [ + "Drama", + "Western" + ] + }, + { + "title": "The Cisco Kid", + "year": 1931, + "cast": [ + "Warner Baxter", + "Edmund Lowe" + ], + "genres": [ + "Western" + ] + }, + { + "title": "City Lights", + "year": 1931, + "cast": [ + "Charles Chaplin", + "Virginia Cherrill" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "City Streets", + "year": 1931, + "cast": [ + "Gary Cooper", + "Sylvia Sidney", + "Paul Lukas" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "Clearing the Range", + "year": 1931, + "cast": [ + "Hoot Gibson", + "Sally Eilers", + "Hooper Atchley" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Common Law", + "year": 1931, + "cast": [ + "Constance Bennett", + "Joel McCrea", + "Hedda Hopper" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Compromised", + "year": 1931, + "cast": [ + "Rose Hobart", + "Ben Lyon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Confessions of a Co-Ed", + "year": 1931, + "cast": [ + "Phillips Holmes", + "Sylvia Sidney" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Connecticut Yankee", + "year": 1931, + "cast": [ + "Will Rogers", + "Maureen O'Sullivan", + "Myrna Loy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Conquering Horde", + "year": 1931, + "cast": [ + "Richard Arlen", + "Fay Wray" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Consolation Marriage", + "year": 1931, + "cast": [ + "Irene Dunne", + "Pat O'Brien", + "Myrna Loy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Convicted", + "year": 1931, + "cast": [ + "Aileen Pringle", + "Jameson Thomas" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Corsair", + "year": 1931, + "cast": [ + "Chester Morris", + "Thelma Todd" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Cracked Nuts", + "year": 1931, + "cast": [ + "Bert Wheeler", + "Dorothy Lee" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Criminal Code", + "year": 1931, + "cast": [ + "Walter Huston", + "Constance Cummings", + "Boris Karloff" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "The Cuban Love Song", + "year": 1931, + "cast": [ + "Lupe Vélez", + "Lawrence Tibbett", + "Jimmy Durante" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Daddy Long Legs", + "year": 1931, + "cast": [ + "Janet Gaynor", + "Warner Baxter", + "Una Merkel" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Dance, Fools, Dance", + "year": 1931, + "cast": [ + "Joan Crawford", + "Lester Vail", + "Clark Gable" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Daughter of the Dragon", + "year": 1931, + "cast": [ + "Anna May Wong", + "Warner Oland", + "Sessue Hayakawa" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Daybreak", + "year": 1931, + "cast": [ + "Ramon Novarro", + "Helen Chandler", + "Jean Hersholt" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Deceiver", + "year": 1931, + "cast": [ + "Lloyd Hughes", + "Dorothy Sebastian" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Delicious", + "year": 1931, + "cast": [ + "Janet Gaynor", + "Charles Farrell", + "Virginia Cherrill" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Demon of the Sea", + "year": 1931, + "cast": [ + "William Dieterle", + "Lissy Arna" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Devil Plays", + "year": 1931, + "cast": [ + "Jameson Thomas", + "Dorothy Christy" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Devotion", + "year": 1931, + "cast": [ + "Ann Harding", + "Leslie Howard" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Dirigible", + "year": 1931, + "cast": [ + "Jack Holt", + "Fay Wray", + "Ralph Graves" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Dishonored", + "year": 1931, + "cast": [ + "Marlene Dietrich", + "Victor McLaglen", + "Warner Oland" + ], + "genres": [ + "Drama", + "War" + ] + }, + { + "title": "Doctors' Wives", + "year": 1931, + "cast": [ + "Warner Baxter", + "Joan Bennett" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Don't Bet on Women", + "year": 1931, + "cast": [ + "Jeanette MacDonald", + "Edmund Lowe", + "Roland Young" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Dr. Jekyll and Mr. Hyde", + "year": 1931, + "cast": [ + "Fredric March", + "Miriam Hopkins", + "Rose Hobart" + ], + "genres": [ + "Drama", + "Horror" + ] + }, + { + "title": "Dracula", + "year": 1931, + "cast": [ + "Bela Lugosi", + "Helen Chandler", + "David Manners" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Drums of Jeopardy", + "year": 1931, + "cast": [ + "Warner Oland", + "June Collyer", + "Hale Hamilton" + ], + "genres": [ + "Drama", + "Thriller" + ] + }, + { + "title": "Dude Ranch", + "year": 1931, + "cast": [ + "Jack Oakie", + "Stuart Erwin" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Easiest Way", + "year": 1931, + "cast": [ + "Constance Bennett", + "Adolphe Menjou", + "Clark Gable" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "East Lynne", + "year": 1931, + "cast": [ + "Ann Harding", + "Clive Brook" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "East of Borneo", + "year": 1931, + "cast": [ + "Rose Hobart", + "Charles Bickford", + "Lupita Tovar" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "El codigo penal", + "year": 1931, + "cast": [ + "Barry Norton", + "Maria Alba" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "El Impostor", + "year": 1931, + "cast": [ + "Juan Torena", + "Blanca Castejon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Eran Trece", + "year": 1931, + "cast": [ + "Juan Torena", + "Ana Maria Custodio" + ], + "genres": [ + "Comedy", + "Mystery" + ] + }, + { + "title": "Everything's Rosie", + "year": 1931, + "cast": [ + "Robert Woolsey", + "Anita Louise", + "John Darrow" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Ex-Bad Boy", + "year": 1931, + "cast": [ + "Robert Armstrong", + "Jean Arthur" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Expensive Women", + "year": 1931, + "cast": [ + "Dolores Costello", + "H. B. Warner" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Fair Warning", + "year": 1931, + "cast": [ + "George O'Brien", + "George Brent", + "Louise Huntington" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The False Madonna", + "year": 1931, + "cast": [ + "Kay Francis", + "Conway Tearle" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Fanny Foley Herself", + "year": 1931, + "cast": [ + "Edna May Oliver", + "Helen Chandler" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Father's Son", + "year": 1931, + "cast": [ + "Leon Janney", + "Irene Rich" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Fifty Fathoms Deep", + "year": 1931, + "cast": [ + "Jack Holt", + "Richard Cromwell" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Fifty Million Frenchmen", + "year": 1931, + "cast": [ + "Ole Olsen", + "Chic Johnson", + "William Gaxton" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Fighting Caravans", + "year": 1931, + "cast": [ + "Gary Cooper", + "Lili Damita" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Fighting Marshal", + "year": 1931, + "cast": [ + "Tim McCoy", + "Dorothy Gulliver" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Fighting Sheriff", + "year": 1931, + "cast": [ + "Buck Jones", + "Lillian Worth" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Finger Points", + "year": 1931, + "cast": [ + "Richard Barthelmess", + "Fay Wray", + "Clark Gable" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "Finn and Hattie", + "year": 1931, + "cast": [ + "Leon Errol", + "ZaSu Pitts" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Five and Ten", + "year": 1931, + "cast": [ + "Marion Davies", + "Leslie Howard", + "Irene Rich" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Five Star Final", + "year": 1931, + "cast": [ + "Edward G. Robinson", + "H. B. Warner", + "Marian Marsh" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Flying High", + "year": 1931, + "cast": [ + "Bert Lahr", + "Kathryn Crawford", + "Charles Winninger" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Forbidden Adventure", + "year": 1931, + "cast": [ + "Mitzi Green", + "Edna May Oliver" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Frankenstein", + "year": 1931, + "cast": [ + "Boris Karloff", + "Frederick Kerr", + "Mae Clarke" + ], + "genres": [ + "Horror", + "Science Fiction" + ] + }, + { + "title": "A Free Soul", + "year": 1931, + "cast": [ + "Norma Shearer", + "Lionel Barrymore", + "Clark Gable" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Freighters of Destiny", + "year": 1931, + "cast": [ + "Tom Keene", + "Barbara Kent" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Friends and Lovers", + "year": 1931, + "cast": [ + "Lili Damita", + "Adolphe Menjou", + "Laurence Olivier" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Front Page", + "year": 1931, + "cast": [ + "Pat O'Brien", + "Adolphe Menjou", + "Edward Everett Horton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Gang Buster", + "year": 1931, + "cast": [ + "Jean Arthur", + "William Boyd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Gay Diplomat", + "year": 1931, + "cast": [ + "Ivan Lebedeff", + "Genevieve Tobin" + ], + "genres": [ + "Spy", + "Drama" + ] + }, + { + "title": "Gentleman's Fate", + "year": 1931, + "cast": [ + "John Gilbert", + "Louis Wolheim", + "Leila Hyams" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Girl Habit", + "year": 1931, + "cast": [ + "Charlie Ruggles", + "Tamara Geva" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Girl of the Rio", + "year": 1931, + "cast": [ + "Dolores del Río", + "Norman Foster", + "Boris Karloff" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Girls About Town", + "year": 1931, + "cast": [ + "Kay Francis", + "Lilyan Tashman", + "Joel McCrea" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Girls Demand Excitement", + "year": 1931, + "cast": [ + "Virginia Cherrill", + "John Wayne" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "God's Gift to Women", + "year": 1931, + "cast": [ + "Frank Fay", + "Laura La Plante", + "Joan Blondell" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Gold Dust Gertie", + "year": 1931, + "cast": [ + "Winnie Lightner", + "Ole Olsen", + "Chic Johnson" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Goldie", + "year": 1931, + "cast": [ + "Spencer Tracy", + "Jean Harlow" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Good Sport", + "year": 1931, + "cast": [ + "Linda Watkins", + "John Boles", + "Greta Nissen" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Graft", + "year": 1931, + "cast": [ + "Regis Toomey", + "Boris Karloff", + "Dorothy Revier" + ], + "genres": [ + "Drama", + "Thriller" + ] + }, + { + "title": "The Great Lover", + "year": 1931, + "cast": [ + "Adolphe Menjou", + "Irene Dunne", + "Neil Hamilton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Great Meadow", + "year": 1931, + "cast": [ + "Johnny Mack Brown", + "Eleanor Boardman" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Grief Street", + "year": 1931, + "cast": [ + "Barbara Kent", + "John Holland", + "Dorothy Christy" + ], + "genres": [ + "Romance", + "Crime", + "Mystery" + ] + }, + { + "title": "The Guardsman", + "year": 1931, + "cast": [ + "Alfred Lunt", + "Lynn Fontanne" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Guilty Generation", + "year": 1931, + "cast": [ + "Leo Carillo", + "Constance Cummings", + "Robert Young" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Guilty Hands", + "year": 1931, + "cast": [ + "Lionel Barrymore", + "Kay Francis", + "Polly Moran" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "Gun Smoke", + "year": 1931, + "cast": [ + "Richard Arlen", + "Mary Brian" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Hard Hombre", + "year": 1931, + "cast": [ + "Hoot Gibson", + "Lina Basquette" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Heartbreak", + "year": 1931, + "cast": [ + "Charles Farrell", + "Madge Evans", + "Paul Cavanagh" + ], + "genres": [ + "War" + ] + }, + { + "title": "Heaven on Earth", + "year": 1931, + "cast": [ + "Lew Ayres", + "Anita Louise" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hell Divers", + "year": 1931, + "cast": [ + "Wallace Beery", + "Clark Gable", + "Conrad Nagel" + ], + "genres": [ + "Drama", + "Adventure" + ] + }, + { + "title": "Her Majesty, Love", + "year": 1931, + "cast": [ + "Marilyn Miller", + "Ben Lyon" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "High Stakes", + "year": 1931, + "cast": [ + "Mae Murray", + "Karen Morley" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "His Woman", + "year": 1931, + "cast": [ + "Gary Cooper", + "Claudette Colbert" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "A Holy Terror", + "year": 1931, + "cast": [ + "George O'Brien", + "Sally Eilers", + "Humphrey Bogart" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Homicide Squad", + "year": 1931, + "cast": [ + "Leo Carrillo", + "Mary Brian" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Honeymoon Lane", + "year": 1931, + "cast": [ + "June Collyer", + "Raymond Hatton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Honor Among Lovers", + "year": 1931, + "cast": [ + "Claudette Colbert", + "Fredric March", + "Ginger Rogers" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Honor of the Family", + "year": 1931, + "cast": [ + "Bebe Daniels", + "Warren William", + "Alan Mowbray" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Hot Heiress", + "year": 1931, + "cast": [ + "Ben Lyon", + "Ona Munson", + "Walter Pidgeon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A House Divided", + "year": 1931, + "cast": [ + "Walter Huston", + "Helen Chandler" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Huckleberry Finn", + "year": 1931, + "cast": [ + "Jackie Coogan", + "Junior Durkin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Husband's Holiday", + "year": 1931, + "cast": [ + "Clive Brook", + "Vivienne Osborne" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hush Money", + "year": 1931, + "cast": [ + "Joan Bennett", + "Myrna Loy", + "George Raft" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "I Like Your Nerve", + "year": 1931, + "cast": [ + "Douglas Fairbanks Jr.", + "Loretta Young" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "I Take This Woman", + "year": 1931, + "cast": [ + "Gary Cooper", + "Carole Lombard" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Illicit", + "year": 1931, + "cast": [ + "Barbara Stanwyck", + "James Rennie" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "In Line of Duty", + "year": 1931, + "cast": [ + "Sue Carol", + "Noah Beery" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Indiscreet", + "year": 1931, + "cast": [ + "Gloria Swanson", + "Ben Lyon", + "Monroe Owsley" + ], + "genres": [ + "Drama", + "Musical" + ] + }, + { + "title": "Inspiration", + "year": 1931, + "cast": [ + "Greta Garbo", + "Robert Montgomery", + "Lewis Stone" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Iron Man", + "year": 1931, + "cast": [ + "Lew Ayres", + "Robert Armstrong", + "Jean Harlow" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "It Pays to Advertise", + "year": 1931, + "cast": [ + "Norman Foster", + "Carole Lombard" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "It's a Wise Child", + "year": 1931, + "cast": [ + "Marion Davies", + "Sidney Blackmer", + "James Gleason" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "June Moon", + "year": 1931, + "cast": [ + "Frances Dee", + "June MacCloy", + "Wynne Gibson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Just a Gigolo", + "year": 1931, + "cast": [ + "William Haines", + "Irene Purcell", + "Ray Milland" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Kept Husbands", + "year": 1931, + "cast": [ + "Dorothy Mackaill", + "Joel McCrea" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Kick In", + "year": 1931, + "cast": [ + "Clara Bow", + "Regis Toomey" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Kiki", + "year": 1931, + "cast": [ + "Mary Pickford", + "Reginald Denny" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Kiss Me Again", + "year": 1931, + "cast": [ + "Edward Everett Horton", + "June Collyer", + "Walter Pidgeon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "L'aviateur", + "year": 1931, + "cast": [ + "Douglas Fairbanks Jr.", + "Jeanne Helbling" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "La ley del harem", + "year": 1931, + "cast": [ + "Jose Mojica", + "Carmen Larrabeiti" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Ladies' Man", + "year": 1931, + "cast": [ + "William Powell", + "Carole Lombard", + "Kay Francis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Ladies of the Big House", + "year": 1931, + "cast": [ + "Sylvia Sidney", + "Gene Raymond", + "Wynne Gibson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Lady from Nowhere", + "year": 1931, + "cast": [ + "Alice Day", + "John Holland" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Lady Refuses", + "year": 1931, + "cast": [ + "Betty Compson", + "John Darrow" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Lady Who Dared", + "year": 1931, + "cast": [ + "Billie Dove", + "Sidney Blackmer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Land of Wanted Men", + "year": 1931, + "cast": [ + "Bill Cody", + "Sheila Bromley" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Lasca of the Rio Grande", + "year": 1931, + "cast": [ + "Leo Carrillo", + "Dorothy Burgess" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Last Flight", + "year": 1931, + "cast": [ + "Richard Barthelmess", + "David Manners" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Last Ride", + "year": 1931, + "cast": [ + "Dorothy Revier", + "Virginia Brown Faire" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Laugh and Get Rich", + "year": 1931, + "cast": [ + "Hugh Herbert", + "Edna May Oliver", + "Dorothy Lee" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Laughing Sinners", + "year": 1931, + "cast": [ + "Joan Crawford", + "Neil Hamilton", + "Clark Gable" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Law of the Sea", + "year": 1931, + "cast": [ + "William Farnum", + "Sally Blane" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Lawless Woman", + "year": 1931, + "cast": [ + "Vera Reynolds", + "Carroll Nye" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Lawyer's Secret", + "year": 1931, + "cast": [ + "Richard Arlen", + "Jean Arthur", + "Clive Brook" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Lion and the Lamb", + "year": 1931, + "cast": [ + "Walter Byron", + "Carmel Myers" + ], + "genres": [ + "Comedy", + "Thriller" + ] + }, + { + "title": "Little Caesar", + "year": 1931, + "cast": [ + "Edward G. Robinson", + "Douglas Fairbanks Jr.", + "Glenda Farrell" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "Local Boy Makes Good", + "year": 1931, + "cast": [ + "Joe E. Brown", + "Dorothy Lee" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Lonely Wives", + "year": 1931, + "cast": [ + "Edward Everett Horton", + "Laura La Plante", + "Esther Ralston" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Mad Genius", + "year": 1931, + "cast": [ + "John Barrymore", + "Marian Marsh", + "Boris Karloff" + ], + "genres": [ + "Drama", + "Thriller" + ] + }, + { + "title": "The Magnificent Lie", + "year": 1931, + "cast": [ + "Ruth Chatterton", + "Ralph Bellamy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Maker of Men", + "year": 1931, + "cast": [ + "Jack Holt", + "Joan Marsh", + "John Wayne" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Maltese Falcon", + "year": 1931, + "cast": [ + "Ricardo Cortez", + "Bebe Daniels", + "Una Merkel" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Man in Possession", + "year": 1931, + "cast": [ + "Robert Montgomery", + "Charlotte Greenwood" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Man of the World", + "year": 1931, + "cast": [ + "William Powell", + "Carole Lombard" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Man Who Came Back", + "year": 1931, + "cast": [ + "Janet Gaynor", + "Charles Farrell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Manhattan Parade", + "year": 1931, + "cast": [ + "Charles Butterworth", + "Winnie Lightner" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Many a Slip", + "year": 1931, + "cast": [ + "Joan Bennett", + "Lew Ayres" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mata Hari", + "year": 1931, + "cast": [ + "Greta Garbo", + "Ramón Novarro", + "Lionel Barrymore" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Men Call It Love", + "year": 1931, + "cast": [ + "Adolphe Menjou", + "Leila Hyams" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Men in Her Life", + "year": 1931, + "cast": [ + "Lois Moran", + "Charles Bickford" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Men of Chance", + "year": 1931, + "cast": [ + "Ricardo Cortez", + "Mary Astor", + "Ralph Ince" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "Men of the Sky", + "year": 1931, + "cast": [ + "Irene Delroy", + "Bramwell Fletcher" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Men on Call", + "year": 1931, + "cast": [ + "Edmund Lowe", + "Mae Clarke" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Merely Mary Ann", + "year": 1931, + "cast": [ + "Janet Gaynor", + "Charles Farrell" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Mi ultimo amor", + "year": 1931, + "cast": [ + "Jose Mojica", + "Ana Maria Custodio" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Millie", + "year": 1931, + "cast": [ + "Helen Twelvetrees", + "Lilyan Tashman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Millionaire", + "year": 1931, + "cast": [ + "George Arliss", + "James Cagney", + "Noah Beery" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Miracle Woman", + "year": 1931, + "cast": [ + "Barbara Stanwyck", + "David Manners", + "Sam Hardy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Misbehaving Ladies", + "year": 1931, + "cast": [ + "Lila Lee", + "Ben Lyon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Monkey Business", + "year": 1931, + "cast": [ + "Groucho Marx", + "Harpo Marx", + "Chico Marx" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Montana Kid", + "year": 1931, + "cast": [ + "Bill Cody", + "Doris Hill" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Morals for Women", + "year": 1931, + "cast": [ + "Bessie Love", + "Conway Tearle" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Mr. Lemon of Orange", + "year": 1931, + "cast": [ + "El Brendel", + "Fifi D'Orsay" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Murder at Midnight", + "year": 1931, + "cast": [ + "Alice White", + "Aileen Pringle" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Murder by the Clock", + "year": 1931, + "cast": [ + "Lilyan Tashman", + "Regis Toomey" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "My Past", + "year": 1931, + "cast": [ + "Bebe Daniels", + "Lewis Stone", + "Ben Lyon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "My Sin", + "year": 1931, + "cast": [ + "Tallulah Bankhead", + "Fredric March" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Naughty Flirt", + "year": 1931, + "cast": [ + "Alice White", + "Paul Page", + "Myrna Loy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Nevada Buckaroo", + "year": 1931, + "cast": [ + "Bob Steele", + "Ed Brady" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Never the Twain Shall Meet", + "year": 1931, + "cast": [ + "Leslie Howard", + "Conchita Montenegro" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "New Adventures of Get Rich Quick Wallingford", + "year": 1931, + "cast": [ + "William Haines", + "Jimmy Durante" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Nice Women", + "year": 1931, + "cast": [ + "Sidney Fox", + "Frances Dee" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Night Angel", + "year": 1931, + "cast": [ + "Nancy Carroll", + "Fredric March" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Night Life in Reno", + "year": 1931, + "cast": [ + "Virginia Valli", + "Jameson Thomas", + "Dorothy Christy" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Night Nurse", + "year": 1931, + "cast": [ + "Barbara Stanwyck", + "Joan Blondell", + "Ben Lyon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "No Limit", + "year": 1931, + "cast": [ + "Clara Bow", + "Norman Foster" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Not Exactly Gentlemen", + "year": 1931, + "cast": [ + "Victor McLaglen", + "Fay Wray" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Once a Lady", + "year": 1931, + "cast": [ + "Ruth Chatterton", + "Ivor Novello", + "Jill Esmond" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Once a Sinner", + "year": 1931, + "cast": [ + "Dorothy Mackaill", + "Joel McCrea" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "One Heavenly Night", + "year": 1931, + "cast": [ + "Evelyn Laye", + "John Boles" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The One Way Trail", + "year": 1931, + "cast": [ + "Tim McCoy", + "Doris Hill" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Other Men's Women", + "year": 1931, + "cast": [ + "Grant Withers", + "Regis Toomey", + "Mary Astor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Over the Hill", + "year": 1931, + "cast": [ + "Mae Marsh", + "James Dunn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Pagan Lady", + "year": 1931, + "cast": [ + "Evelyn Brent", + "Conrad Nagel", + "Roland Young" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Painted Desert", + "year": 1931, + "cast": [ + "William Boyd", + "Clark Gable" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Palmy Days", + "year": 1931, + "cast": [ + "Charlotte Greenwood", + "Barbara Weeks" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Pardon Us", + "year": 1931, + "cast": [ + "Stan Laurel", + "Oliver Hardy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Parlor, Bedroom and Bath", + "year": 1931, + "cast": [ + "Buster Keaton", + "Charlotte Greenwood", + "Reginald Denny" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Partners of the Trail", + "year": 1931, + "cast": [ + "Tom Tyler", + "Betty Mack" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Party Husband", + "year": 1931, + "cast": [ + "Dorothy Mackaill", + "James Rennie", + "Dorothy Peterson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Peach O'Reno", + "year": 1931, + "cast": [ + "Bert Wheeler", + "Robert Woolsey", + "Dorothy Lee" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Penrod and Sam", + "year": 1931, + "cast": [ + "Leon Janney", + "Frank Coghlan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Personal Maid", + "year": 1931, + "cast": [ + "Nancy Carroll", + "Pat O'Brien" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Phantom", + "year": 1931, + "cast": [ + "Guinn Williams", + "Tom O'Brien" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Phantom of Paris", + "year": 1931, + "cast": [ + "John Gilbert", + "Leila Hyams" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Platinum Blonde", + "year": 1931, + "cast": [ + "Loretta Young", + "Jean Harlow", + "Robert Williams" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Pocatello Kid", + "year": 1931, + "cast": [ + "Ken Maynard", + "Marceline Day" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Politics", + "year": 1931, + "cast": [ + "Marie Dressler", + "Polly Moran", + "Roscoe Ates" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Possessed", + "year": 1931, + "cast": [ + "Joan Crawford", + "Clark Gable", + "Wallace Ford" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Private Lives", + "year": 1931, + "cast": [ + "Norma Shearer", + "Robert Montgomery", + "Reginald Denny" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Prodigal", + "year": 1931, + "cast": [ + "Lawrence Tibbett", + "Esther Ralston", + "Roland Young" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Public Defender", + "year": 1931, + "cast": [ + "Richard Dix", + "Shirley Grey" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Public Enemy", + "year": 1931, + "cast": [ + "James Cagney", + "Jean Harlow", + "Edward Woods" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "Quick Millions", + "year": 1931, + "cast": [ + "Spencer Tracy", + "Sally Eilers", + "George Raft" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "The Rainbow Trail", + "year": 1931, + "cast": [ + "George O'Brien", + "Cecilia Parker" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Range Feud", + "year": 1931, + "cast": [ + "Buck Jones", + "John Wayne" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Range Law", + "year": 1931, + "cast": [ + "Ken Maynard", + "Frances Dade" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Rebound", + "year": 1931, + "cast": [ + "Robert Ames", + "Ina Claire", + "Myrna Loy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Reckless Hour", + "year": 1931, + "cast": [ + "Dorothy Mackaill", + "Conrad Nagel", + "Joan Blondell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Reckless Living", + "year": 1931, + "cast": [ + "Ricardo Cortez", + "Mae Clarke", + "Norman Foster" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Reducing", + "year": 1931, + "cast": [ + "Marie Dressler", + "Polly Moran", + "Anita Page" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Resurrection", + "year": 1931, + "cast": [ + "Lupe Vélez", + "John Boles" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Rich Man's Folly", + "year": 1931, + "cast": [ + "Frances Dee", + "George Bancroft" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Riders of the Purple Sage", + "year": 1931, + "cast": [ + "George O'Brien", + "Marguerite Churchill" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Right of Way", + "year": 1931, + "cast": [ + "Conrad Nagel", + "Loretta Young" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Road to Reno", + "year": 1931, + "cast": [ + "Lilyan Tashman", + "Charles Rogers", + "Peggy Shannon" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Road to Singapore", + "year": 1931, + "cast": [ + "William Powell", + "Doris Kenyon", + "Louis Calhern" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Royal Bed", + "year": 1931, + "cast": [ + "Mary Astor", + "Anthony Bushell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Ruling Voice", + "year": 1931, + "cast": [ + "Walter Huston", + "Loretta Young", + "Dudley Digges" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Runaround", + "year": 1931, + "cast": [ + "Mary Brian", + "Marie Prevost" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Safe in Hell", + "year": 1931, + "cast": [ + "Dorothy Mackaill", + "Donald Cook" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Salvation Nell", + "year": 1931, + "cast": [ + "Ralph Graves", + "Helen Chandler", + "Sally O'Neil" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Scandal Sheet", + "year": 1931, + "cast": [ + "George Bancroft", + "Kay Francis", + "Clive Brook" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Sea Ghost", + "year": 1931, + "cast": [ + "Alan Hale", + "Laura La Plante" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Seas Beneath", + "year": 1931, + "cast": [ + "George O'Brien", + "Mona Maris" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Secret Call", + "year": 1931, + "cast": [ + "Peggy Shannon", + "Richard Arlen", + "William B. Davidson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Secret Service", + "year": 1931, + "cast": [ + "Richard Dix", + "Shirley Grey" + ], + "genres": [ + "War" + ] + }, + { + "title": "The Secret Six", + "year": 1931, + "cast": [ + "Wallace Beery", + "Lewis Stone" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Secret Witness", + "year": 1931, + "cast": [ + "Una Merkel", + "ZaSu Pitts" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Secrets of a Secretary", + "year": 1931, + "cast": [ + "Claudette Colbert", + "Herbert Marshall" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Seed", + "year": 1931, + "cast": [ + "John Boles", + "Lois Wilson", + "Genevieve Tobin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Shanghaied Love", + "year": 1931, + "cast": [ + "Richard Cromwell", + "Sally Blane" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The She-Wolf", + "year": 1931, + "cast": [ + "May Robson", + "Lawrence Gray" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Shipmates", + "year": 1931, + "cast": [ + "Robert Montgomery", + "Dorothy Jordan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Shotgun Pass", + "year": 1931, + "cast": [ + "Tim McCoy", + "Virginia Lee Corbin" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Side Show", + "year": 1931, + "cast": [ + "Winnie Lightner", + "Charles Butterworth" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Sidewalks of New York", + "year": 1931, + "cast": [ + "Buster Keaton", + "Anita Page", + "Cliff Edwards" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Silence", + "year": 1931, + "cast": [ + "Clive Brook", + "Peggy Shannon" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Sin of Madelon Claudet", + "year": 1931, + "cast": [ + "Helen Hayes", + "Lewis Stone" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Sin Ship", + "year": 1931, + "cast": [ + "Mary Astor", + "Ian Keith" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Single Sin", + "year": 1931, + "cast": [ + "Kay Johnson", + "Bert Lytell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Sit Tight", + "year": 1931, + "cast": [ + "Winnie Lightner", + "Joe E. Brown" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Six Cylinder Love", + "year": 1931, + "cast": [ + "Spencer Tracy", + "Edward Everett Horton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Skippy", + "year": 1931, + "cast": [ + "Jackie Cooper", + "Mitzi Green", + "Jackie Searl" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Skyline", + "year": 1931, + "cast": [ + "Thomas Meighan", + "Maureen O'Sullivan", + "Myrna Loy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sky Raiders", + "year": 1931, + "cast": [ + "Lloyd Hughes", + "Marceline Day" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Smart Money", + "year": 1931, + "cast": [ + "Edward G. Robinson", + "James Cagney", + "Margaret Livingston" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "Smart Woman", + "year": 1931, + "cast": [ + "Mary Astor", + "Robert Ames" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Smiling Lieutenant", + "year": 1931, + "cast": [ + "Maurice Chevalier", + "Claudette Colbert", + "Miriam Hopkins" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Sob Sister", + "year": 1931, + "cast": [ + "James Dunn", + "Linda Watkins" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Son of India", + "year": 1931, + "cast": [ + "Ramón Novarro", + "Madge Evans" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Sooky", + "year": 1931, + "cast": [ + "Jackie Cooper", + "Robert Coogan", + "Jackie Searl" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Spider", + "year": 1931, + "cast": [ + "Edmund Lowe", + "Lois Moran" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Spirit of Notre Dame", + "year": 1931, + "cast": [ + "Lew Ayres", + "Sally Blane", + "William Bakewell" + ], + "genres": [ + "Drama", + "Sports" + ] + }, + { + "title": "Sporting Blood", + "year": 1931, + "cast": [ + "Clark Gable", + "Madge Evans" + ], + "genres": [ + "Sports" + ] + }, + { + "title": "The Spy", + "year": 1931, + "cast": [ + "Kay Johnson", + "Neil Hamilton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Squaw Man", + "year": 1931, + "cast": [ + "Warner Baxter", + "Lupe Vélez" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Star Witness", + "year": 1931, + "cast": [ + "Walter Huston", + "Frances Starr" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Stepping Out", + "year": 1931, + "cast": [ + "Charlotte Greenwood", + "Leila Hyams", + "Reginald Denny" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Stolen Heaven", + "year": 1931, + "cast": [ + "Nancy Carroll", + "Phillips Holmes", + "Louis Calhern" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Stolen Jools", + "year": 1931, + "cast": [ + "Wallace Beery", + "Buster Keaton", + "Norma Shearer" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Strangers May Kiss", + "year": 1931, + "cast": [ + "Norma Shearer", + "Robert Montgomery" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Street Scene", + "year": 1931, + "cast": [ + "Sylvia Sidney", + "Estelle Taylor", + "Beulah Bondi" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Strictly Dishonorable", + "year": 1931, + "cast": [ + "Paul Lukas", + "Sidney Fox", + "Lewis Stone" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Struggle", + "year": 1931, + "cast": [ + "Hal Skelly", + "Zita Johann" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Subway Express", + "year": 1931, + "cast": [ + "Jack Holt", + "Aileen Pringle" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Suicide Fleet", + "year": 1931, + "cast": [ + "William Boyd", + "James Gleason", + "Ginger Rogers" + ], + "genres": [ + "War" + ] + }, + { + "title": "Sundown Trail", + "year": 1931, + "cast": [ + "Tom Keene", + "Marion Shilling" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Surrender", + "year": 1931, + "cast": [ + "Warner Baxter", + "Leila Hyams" + ], + "genres": [ + "War" + ] + }, + { + "title": "Susan Lenox (Her Fall and Rise)", + "year": 1931, + "cast": [ + "Clark Gable", + "Greta Garbo", + "Jean Hersholt" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Svengali", + "year": 1931, + "cast": [ + "John Barrymore", + "Marian Marsh", + "Donald Crisp" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sweepstakes", + "year": 1931, + "cast": [ + "James Gleason", + "Marian Nixon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Tabu", + "year": 1931, + "cast": [ + "Matahi", + "Anne Chevalier" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Tailor Made Man", + "year": 1931, + "cast": [ + "William Haines", + "Dorothy Jordan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Tarnished Lady", + "year": 1931, + "cast": [ + "Tallulah Bankhead", + "Clive Brook" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Ten Cents a Dance", + "year": 1931, + "cast": [ + "Barbara Stanwyck", + "Ricardo Cortez" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "Ten Nights in a Barroom", + "year": 1931, + "cast": [ + "William Farnum", + "Peggy Lou Lynd" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Texas Ranger", + "year": 1931, + "cast": [ + "Buck Jones", + "Carmelita Geraghty" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Their Mad Moment", + "year": 1931, + "cast": [ + "Dorothy Mackaill", + "Warner Baxter" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "This Modern Age", + "year": 1931, + "cast": [ + "Joan Crawford", + "Neil Hamilton", + "Pauline Frederick" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Three Girls Lost", + "year": 1931, + "cast": [ + "Loretta Young", + "John Wayne" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Three Who Loved", + "year": 1931, + "cast": [ + "Betty Compson", + "Conrad Nagel" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Tip-Off", + "year": 1931, + "cast": [ + "Eddie Quillan", + "Ginger Rogers", + "Robert Armstrong" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Tonight or Never", + "year": 1931, + "cast": [ + "Gloria Swanson", + "Constance Cummings" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Too Many Cooks", + "year": 1931, + "cast": [ + "Bert Wheeler", + "Dorothy Lee" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "To Young to Marry", + "year": 1931, + "cast": [ + "Loretta Young", + "Grant Withers" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Touchdown", + "year": 1931, + "cast": [ + "Richard Arlen", + "Peggy Shannon" + ], + "genres": [ + "Sports" + ] + }, + { + "title": "Trader Horn", + "year": 1931, + "cast": [ + "Harry Carey", + "Edwina Booth", + "C. Aubrey Smith" + ], + "genres": [ + "Drama", + "Adventure" + ] + }, + { + "title": "Transatlantic", + "year": 1931, + "cast": [ + "Edmund Lowe", + "Myrna Loy", + "John Halliday" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Transgression", + "year": 1931, + "cast": [ + "Kay Francis", + "Paul Cavanagh" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Traveling Husbands", + "year": 1931, + "cast": [ + "Evelyn Brent", + "Constance Cummings" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Under Eighteen", + "year": 1931, + "cast": [ + "Marian Marsh", + "Anita Page" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Under Suspicion", + "year": 1931, + "cast": [ + "Lois Moran", + "J. Harold Murray" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Unfaithful", + "year": 1931, + "cast": [ + "Ruth Chatterton", + "Paul Lukas", + "Juliette Compton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Unholy Garden", + "year": 1931, + "cast": [ + "Ronald Colman", + "Fay Wray" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Up for Murder", + "year": 1931, + "cast": [ + "Lew Ayres", + "Genevieve Tobin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Up Pops the Devil", + "year": 1931, + "cast": [ + "Richard \"Skeets\" Gallagher", + "Carole Lombard" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Vice Squad", + "year": 1931, + "cast": [ + "Kay Francis", + "Paul Lukas", + "Judith Wood" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "The Viking", + "year": 1931, + "cast": [ + "Louise Huntington", + "Charles Starrett", + "Arthur Vinton" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Virtuous Husband", + "year": 1931, + "cast": [ + "Betty Compson", + "Elliott Nugent", + "Jean Arthur" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Waterloo Bridge", + "year": 1931, + "cast": [ + "Mae Clarke", + "Bette Davis", + "Frederick Kerr" + ], + "genres": [ + "Drama", + "War" + ] + }, + { + "title": "Way Back Home", + "year": 1931, + "cast": [ + "Phillips Lord", + "Bette Davis", + "Frank Albertson" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "West of Broadway", + "year": 1931, + "cast": [ + "John Gilbert", + "Lois Moran" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "White Shoulders", + "year": 1931, + "cast": [ + "Mary Astor", + "Jack Holt" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Wicked", + "year": 1931, + "cast": [ + "Elissa Landi", + "Victor McLaglen", + "Una Merkel" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Wild Horse", + "year": 1931, + "cast": [ + "Hoot Gibson", + "Alberta Vaughn" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Woman Hungry", + "year": 1931, + "cast": [ + "Sidney Blackmer", + "Lila Lee" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Woman Between", + "year": 1931, + "cast": [ + "Lili Damita", + "Lester Vail" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Woman of Experience", + "year": 1931, + "cast": [ + "Helen Twelvetrees", + "William Bakewell" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "Women Go on Forever", + "year": 1931, + "cast": [ + "Clara Kimball Young", + "Marian Nixon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Women Love Once", + "year": 1931, + "cast": [ + "Paul Lukas", + "Eleanor Boardman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Women of All Nations", + "year": 1931, + "cast": [ + "Victor McLaglen", + "Edmund Lowe", + "Greta Nissen" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Working Girls", + "year": 1931, + "cast": [ + "Judith Wood", + "Dorothy Hall", + "Paul Lukas" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "X Marks the Spot", + "year": 1931, + "cast": [ + "Sally Blane", + "Lew Cody", + "Fred Kohler" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "The Yellow Ticket", + "year": 1931, + "cast": [ + "Lionel Barrymore", + "Laurence Olivier", + "Elissa Landi" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Young as You Feel", + "year": 1931, + "cast": [ + "Will Rogers", + "Fifi D'Orsay" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Young Donovan's Kid", + "year": 1931, + "cast": [ + "Richard Dix", + "Marion Shilling", + "Jackie Cooper" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Young Sinners", + "year": 1931, + "cast": [ + "Thomas Meighan", + "Dorothy Jordan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "20,000 Years in Sing Sing", + "year": 1932, + "cast": [ + "Spencer Tracy", + "Bette Davis", + "Arthur Byron" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "70,000 Witnesses", + "year": 1932, + "cast": [ + "Dorothy Jordan", + "Phillips Holmes" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Afraid to Talk", + "year": 1932, + "cast": [ + "Sidney Fox", + "Eric Linden", + "Louis Calhern" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "After the Ball", + "year": 1932, + "cast": [ + "Esther Ralston", + "Basil Rathbone" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "After Tomorrow", + "year": 1932, + "cast": [ + "Charles Farrell", + "Marian Nixon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Age of Consent", + "year": 1932, + "cast": [ + "Dorothy Wilson", + "Arline Judge", + "John Halliday" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Air Mail", + "year": 1932, + "cast": [ + "Ralph Bellamy", + "Pat O'Brien", + "Gloria Stuart" + ], + "genres": [ + "Drama", + "Adventure" + ] + }, + { + "title": "Alias the Doctor", + "year": 1932, + "cast": [ + "Richard Barthelmess", + "Marian Marsh" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The All American", + "year": 1932, + "cast": [ + "Richard Arlen", + "Andy Devine" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Almost Married", + "year": 1932, + "cast": [ + "Violet Heming", + "Ralph Bellamy" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Amateur Daddy", + "year": 1932, + "cast": [ + "Warner Baxter", + "Marian Nixon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "American Madness", + "year": 1932, + "cast": [ + "Walter Huston", + "Pat O'Brien", + "Kay Johnson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Animal Kingdom", + "year": 1932, + "cast": [ + "Leslie Howard", + "Ann Harding", + "Myrna Loy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Are You Listening?", + "year": 1932, + "cast": [ + "William Haines", + "Madge Evans", + "Anita Page" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Arsène Lupin", + "year": 1932, + "cast": [ + "John Barrymore", + "Lionel Barrymore" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "As You Desire Me", + "year": 1932, + "cast": [ + "Greta Garbo", + "Melvyn Douglas", + "Erich von Stroheim" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Attorney for the Defense", + "year": 1932, + "cast": [ + "Edmund Lowe", + "Constance Cummings", + "Evelyn Brent" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Bachelor's Affairs", + "year": 1932, + "cast": [ + "Adolphe Menjou", + "Minna Gombell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Bachelor Mother", + "year": 1932, + "cast": [ + "Evalyn Knapp", + "Margaret Seddon" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Back Street", + "year": 1932, + "cast": [ + "Irene Dunne", + "John Boles", + "ZaSu Pitts" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Beast of the City", + "year": 1932, + "cast": [ + "Walter Huston", + "Jean Harlow", + "Wallace Ford" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "Beauty and the Boss", + "year": 1932, + "cast": [ + "Marian Marsh", + "David Manners", + "Warren William" + ], + "genres": [ + "Comedy", + "Romance" + ] + }, + { + "title": "Beauty Parlor", + "year": 1932, + "cast": [ + "Barbara Kent", + "Joyce Compton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Behind the Mask", + "year": 1932, + "cast": [ + "Jack Holt", + "Boris Karloff", + "Constance Cummings" + ], + "genres": [ + "Drama", + "Horror" + ] + }, + { + "title": "Beyond the Rockies", + "year": 1932, + "cast": [ + "Tom Keene", + "Rochelle Hudson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Big Broadcast", + "year": 1932, + "cast": [ + "Bing Crosby", + "George Burns", + "Gracie Allen" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "Big City Blues", + "year": 1932, + "cast": [ + "Eric Linden", + "Joan Blondell", + "Walter Catlett" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Big Stampede", + "year": 1932, + "cast": [ + "John Wayne", + "Noah Beery" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Big Timer", + "year": 1932, + "cast": [ + "Ben Lyon", + "Constance Cummings", + "Thelma Todd" + ], + "genres": [ + "Sports" + ] + }, + { + "title": "A Bill of Divorcement", + "year": 1932, + "cast": [ + "John Barrymore", + "Billie Burke", + "Katharine Hepburn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Bird of Paradise", + "year": 1932, + "cast": [ + "Dolores del Río", + "Joel McCrea" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Blessed Event", + "year": 1932, + "cast": [ + "Lee Tracy", + "Mary Brian" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Blonde Venus", + "year": 1932, + "cast": [ + "Marlene Dietrich", + "Herbert Marshall", + "Cary Grant" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Blondie of the Follies", + "year": 1932, + "cast": [ + "Marion Davies", + "Robert Montgomery", + "Billie Dove" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Boiling Point", + "year": 1932, + "cast": [ + "Hoot Gibson", + "Helen Foster" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Border Devils", + "year": 1932, + "cast": [ + "Gabby Hayes", + "Kathleen Collins", + "Harry Carey" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Breach of Promise", + "year": 1932, + "cast": [ + "Chester Morris", + "Mae Clarke" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Broadway to Cheyenne", + "year": 1932, + "cast": [ + "Rex Bell", + "Marceline Day" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Broken Lullaby", + "year": 1932, + "cast": [ + "Lionel Barrymore", + "Nancy Carroll" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Broken Wing", + "year": 1932, + "cast": [ + "Lupe Vélez", + "Melvyn Douglas", + "Leo Carrillo" + ], + "genres": [ + "Drama", + "Western" + ] + }, + { + "title": "Business and Pleasure", + "year": 1932, + "cast": [ + "Will Rogers", + "Joel McCrea", + "Dorothy Peterson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "But the Flesh Is Weak", + "year": 1932, + "cast": [ + "Robert Montgomery", + "Nora Gregor", + "Heather Thatcher" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "By Whose Hand?", + "year": 1932, + "cast": [ + "Ben Lyon", + "Barbara Weeks", + "Tom Dugan" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Cabin in the Cotton", + "year": 1932, + "cast": [ + "Bette Davis", + "Richard Barthelmess", + "Dorothy Jordan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Call Her Savage", + "year": 1932, + "cast": [ + "Clara Bow", + "Thelma Todd", + "Gilbert Roland" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Careless Lady", + "year": 1932, + "cast": [ + "Joan Bennett", + "John Boles" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Carnival Boat", + "year": 1932, + "cast": [ + "William Boyd", + "Ginger Rogers" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Central Park", + "year": 1932, + "cast": [ + "Joan Blondell", + "Wallace Ford", + "Guy Kibbee" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "Chandu the Magician", + "year": 1932, + "cast": [ + "Edmund Lowe", + "Bela Lugosi" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Charlie Chan's Chance", + "year": 1932, + "cast": [ + "Warner Oland", + "Marian Nixon", + "H. B. Warner" + ], + "genres": [ + "Drama", + "Mystery" + ] + }, + { + "title": "Cheaters at Play", + "year": 1932, + "cast": [ + "Thomas Meighan", + "Charlotte Greenwood" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Cock of the Air", + "year": 1932, + "cast": [ + "Chester Morris", + "Billie Dove", + "Walter Catlett" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Cohens and Kellys in Hollywood", + "year": 1932, + "cast": [ + "June Clyde", + "Norman Foster" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Come On Danger!", + "year": 1932, + "cast": [ + "Tom Keene", + "Julie Haydon" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Conquerors", + "year": 1932, + "cast": [ + "Richard Dix", + "Edna May Oliver", + "Guy Kibbee" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Cornered", + "year": 1932, + "cast": [ + "Tim McCoy", + "Shirley Grey" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The County Fair", + "year": 1932, + "cast": [ + "Hobart Bosworth", + "Marion Shilling" + ], + "genres": [ + "Sports", + "Drama" + ] + }, + { + "title": "Cowboy Counsellor", + "year": 1932, + "cast": [ + "Hoot Gibson", + "Sheila Bromley" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Crash", + "year": 1932, + "cast": [ + "Ruth Chatterton", + "George Brent" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Crooked Circle", + "year": 1932, + "cast": [ + "ZaSu Pitts", + "Ben Lyon", + "James Gleason" + ], + "genres": [ + "Comedy", + "Mystery" + ] + }, + { + "title": "Crooner", + "year": 1932, + "cast": [ + "David Manners", + "Ann Dvorak" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Cross-Examination", + "year": 1932, + "cast": [ + "H. B. Warner", + "Sally Blane" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Crowd Roars", + "year": 1932, + "cast": [ + "James Cagney", + "Joan Blondell" + ], + "genres": [ + "Sports" + ] + }, + { + "title": "The Crusader", + "year": 1932, + "cast": [ + "Evelyn Brent", + "H. B. Warner" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Cynara", + "year": 1932, + "cast": [ + "Ronald Colman", + "Kay Francis", + "Phyllis Barry" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dancers in the Dark", + "year": 1932, + "cast": [ + "Miriam Hopkins", + "George Raft" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dance Team", + "year": 1932, + "cast": [ + "James Dunn", + "Sally Eilers" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Daring Danger", + "year": 1932, + "cast": [ + "Tim McCoy", + "Alberta Vaughn" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Dark Horse", + "year": 1932, + "cast": [ + "Bette Davis", + "Warren William", + "Guy Kibbee" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Death Kiss", + "year": 1932, + "cast": [ + "David Manners", + "Adrienne Ames" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Deception", + "year": 1932, + "cast": [ + "Leo Carillo", + "Thelma Todd" + ], + "genres": [ + "Sports", + "Drama" + ] + }, + { + "title": "The Dentist", + "year": 1932, + "cast": [ + "W. C. Fields", + "Marjorie Kane" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Destry Rides Again", + "year": 1932, + "cast": [ + "Tom Mix", + "Claudia Dell", + "ZaSu Pitts" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Devil and the Deep", + "year": 1932, + "cast": [ + "Tallulah Bankhead", + "Gary Cooper", + "Charles Laughton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Devil Is Driving", + "year": 1932, + "cast": [ + "Edmund Lowe", + "Wynne Gibson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Devil on Deck", + "year": 1932, + "cast": [ + "Reed Howes", + "Molly O'Day" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Devil's Lottery", + "year": 1932, + "cast": [ + "Elissa Landi", + "Victor McLaglen", + "Paul Cavanagh" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Discarded Lovers", + "year": 1932, + "cast": [ + "Natalie Moorhead", + "Russell Hopton" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Disorderly Conduct", + "year": 1932, + "cast": [ + "Spencer Tracy", + "Sally Eilers" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Divorce in the Family", + "year": 1932, + "cast": [ + "Jackie Cooper", + "Conrad Nagel", + "Lewis Stone" + ], + "genres": [ + "Drama", + "Romance" + ] + }, + { + "title": "The Divorce Racket", + "year": 1932, + "cast": [ + "James Rennie", + "Olive Borden" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Docks of San Francisco", + "year": 1932, + "cast": [ + "Mary Nolan", + "Marjorie Beebe" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Doctor X", + "year": 1932, + "cast": [ + "Fay Wray", + "Lionel Atwill", + "Lee Tracy" + ], + "genres": [ + "Drama", + "Horror" + ] + }, + { + "title": "Doomed Battalion", + "year": 1932, + "cast": [ + "Luis Trenker", + "Tala Birell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Down to Earth", + "year": 1932, + "cast": [ + "Will Rogers", + "Dorothy Jordan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Downstairs", + "year": 1932, + "cast": [ + "John Gilbert", + "Paul Lukas", + "Hedda Hopper" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Drifter", + "year": 1932, + "cast": [ + "William Farnum", + "Noah Beery", + "Phyllis Barrington" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Drifting Souls", + "year": 1932, + "cast": [ + "Lois Wilson", + "Theodore von Eltz" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Emma", + "year": 1932, + "cast": [ + "Marie Dressler", + "Richard Cromwell", + "Jean Hersholt" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "End of the Trail", + "year": 1932, + "cast": [ + "Tim McCoy", + "Luana Walters", + "Wheeler Oakman" + ], + "genres": [ + "Western", + "Drama" + ] + }, + { + "title": "Escapade", + "year": 1932, + "cast": [ + "Jameson Thomas", + "Sally Blane" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Evenings for Sale", + "year": 1932, + "cast": [ + "Herbert Marshall", + "Sari Maritza" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Expert", + "year": 1932, + "cast": [ + "Charles Sale", + "Dickie Moore", + "Lois Wilson" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Exposure", + "year": 1932, + "cast": [ + "Lila Lee", + "Walter Byron" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Face on the Barroom Floor", + "year": 1932, + "cast": [ + "Dulcie Cooper", + "Bramwell Fletcher" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Faithless", + "year": 1932, + "cast": [ + "Tallulah Bankhead", + "Robert Montgomery", + "Hugh Herbert" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "False Faces", + "year": 1932, + "cast": [ + "Peggy Shannon", + "Lila Lee" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Famous Ferguson Case", + "year": 1932, + "cast": [ + "Joan Blondell", + "Grant Mitchell" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "A Farewell to Arms", + "year": 1932, + "cast": [ + "Gary Cooper", + "Helen Hayes", + "Adolphe Menjou" + ], + "genres": [ + "Drama", + "War" + ] + }, + { + "title": "Fast Companions", + "year": 1932, + "cast": [ + "Tom Brown", + "Maureen O'Sullivan" + ], + "genres": [ + "Sports" + ] + }, + { + "title": "Fast Life", + "year": 1932, + "cast": [ + "William Haines", + "Madge Evans", + "Conrad Nagel" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Fighting Fool", + "year": 1932, + "cast": [ + "Tim McCoy", + "Marceline Day" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Fighting for Justice", + "year": 1932, + "cast": [ + "Tim McCoy", + "Joyce Compton" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Fighting Gentleman", + "year": 1932, + "cast": [ + "William Collier Jr.", + "Josephine Dunn" + ], + "genres": [ + "Sport" + ] + }, + { + "title": "Final Edition", + "year": 1932, + "cast": [ + "Pat O'Brien", + "Mae Clarke", + "Bradley Page" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Fireman, Save My Child", + "year": 1932, + "cast": [ + "Joe E. Brown", + "Lilian Bond" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The First Year", + "year": 1932, + "cast": [ + "Janet Gaynor", + "Charles Farrell" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Flames", + "year": 1932, + "cast": [ + "Johnny Mack Brown", + "Noel Francis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Flaming Guns", + "year": 1932, + "cast": [ + "Tom Mix", + "Ruth Hall" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Flesh", + "year": 1932, + "cast": [ + "Wallace Beery", + "Ricardo Cortez", + "Karen Morley" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Flowers and Trees", + "year": 1932, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "A Fool's Advice", + "year": 1932, + "cast": [ + "Frank Fay", + "Nat Pendleton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Forbidden", + "year": 1932, + "cast": [ + "Barbara Stanwyck", + "Adolphe Menjou", + "Ralph Bellamy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Forbidden Company", + "year": 1932, + "cast": [ + "Sally Blane", + "John Darrow" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Forbidden Trail", + "year": 1932, + "cast": [ + "Buck Jones", + "Barbara Weeks" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Forgotten Commandments", + "year": 1932, + "cast": [ + "Sari Maritza", + "Gene Raymond", + "Marguerite Churchill" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Fourth Horseman", + "year": 1932, + "cast": [ + "Tom Mix", + "Margaret Lindsay" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Freaks", + "year": 1932, + "cast": [ + "Wallace Ford", + "Leila Hyams", + "Olga Baclanova" + ], + "genres": [ + "Drama", + "Horror" + ] + }, + { + "title": "Frisco Jenny", + "year": 1932, + "cast": [ + "Ruth Chatterton", + "Louis Calhern" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Gambling Sex", + "year": 1932, + "cast": [ + "Ruth Hall", + "Grant Withers" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Gay Buckaroo", + "year": 1932, + "cast": [ + "Hoot Gibson", + "Roy D'Arcy" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Gay Caballero", + "year": 1932, + "cast": [ + "George O'Brien", + "Victor McLaglen" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Ghost Valley", + "year": 1932, + "cast": [ + "Tom Keene", + "Merna Kennedy" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Girl Crazy", + "year": 1932, + "cast": [ + "Bert Wheeler", + "Robert Woolsey" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Girl from Calgary", + "year": 1932, + "cast": [ + "Fifi D'Orsay", + "Paul Kelly" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "The Girl from Chicago", + "year": 1932, + "cast": [ + "Grace Smith", + "Carl Mahon", + "Juano Hernandez" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Girl of the Rio", + "year": 1932, + "cast": [ + "Dolores del Río", + "Leo Carrillo" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Gold", + "year": 1932, + "cast": [ + "Jack Hoxie", + "Alice Day", + "Lafe McKee" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Golden West", + "year": 1932, + "cast": [ + "George O'Brien", + "Marion Burns" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Grand Hotel", + "year": 1932, + "cast": [ + "Greta Garbo", + "John Barrymore", + "Joan Crawford" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Greeks Had a Word for Them", + "year": 1932, + "cast": [ + "Joan Blondell", + "Madge Evans" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Guilty as Hell", + "year": 1932, + "cast": [ + "Edmund Lowe", + "Victor McLaglen", + "Richard Arlen" + ], + "genres": [ + "Mystery", + "Comedy" + ] + }, + { + "title": "Guilty or Not Guilty", + "year": 1932, + "cast": [ + "Betty Compson", + "Claudia Dell" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Half-Naked Truth", + "year": 1932, + "cast": [ + "Lupe Vélez", + "Lee Tracy", + "Franklin Pangborn" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Handle with Care", + "year": 1932, + "cast": [ + "James Dunn", + "Boots Mallory" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Harlem Is Heaven", + "year": 1932, + "cast": [ + "Anise Boyer", + "Bill Robinson", + "Eubie Blake" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Hat Check Girl", + "year": 1932, + "cast": [ + "Sally Eilers", + "Ben Lyon", + "Ginger Rogers" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Hatchet Man", + "year": 1932, + "cast": [ + "Edward G. Robinson", + "Loretta Young" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Haunted Gold", + "year": 1932, + "cast": [ + "John Wayne", + "Sheila Terry", + "Blue Washington" + ], + "genres": [ + "Western" + ] + }, + { + "title": "He Learned About Women", + "year": 1932, + "cast": [ + "Stuart Erwin", + "Alison Skipworth" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Heart of New York", + "year": 1932, + "cast": [ + "George Sidney", + "Ruth Hall" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hearts of Humanity", + "year": 1932, + "cast": [ + "Jean Hersholt", + "Claudia Dell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hello Trouble", + "year": 1932, + "cast": [ + "Buck Jones", + "Lina Basquette" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Hell Fire Austin", + "year": 1932, + "cast": [ + "Ken Maynard", + "Nat Pendleton" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Hell's Highway", + "year": 1932, + "cast": [ + "Richard Dix", + "Rochelle Hudson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hell's House", + "year": 1932, + "cast": [ + "Bette Davis", + "Pat O'Brien", + "Junior Durkin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Her Mad Night", + "year": 1932, + "cast": [ + "Conway Tearle", + "Irene Rich" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Heritage of the Desert", + "year": 1932, + "cast": [ + "Randolph Scott", + "Sally Blane" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Hidden Gold", + "year": 1932, + "cast": [ + "Tom Mix", + "Raymond Hatton" + ], + "genres": [ + "Western" + ] + }, + { + "title": "High Pressure", + "year": 1932, + "cast": [ + "William Powell", + "Evelyn Brent" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "High Speed", + "year": 1932, + "cast": [ + "Buck Jones", + "Mickey Rooney" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Hold 'Em Jail", + "year": 1932, + "cast": [ + "Bert Wheeler", + "Robert Woolsey" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hollywood Speaks", + "year": 1932, + "cast": [ + "Genevieve Tobin", + "Pat O'Brien" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Horror", + "year": 1932, + "cast": [ + "Leslie King", + "Nyreda Montez" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Horse Feathers", + "year": 1932, + "cast": [ + "Groucho Marx", + "Chico Marx", + "Thelma Todd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hot Saturday", + "year": 1932, + "cast": [ + "Nancy Carroll", + "Cary Grant" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hotel Continental", + "year": 1932, + "cast": [ + "Peggy Shannon", + "Theodore von Eltz" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Huddle", + "year": 1932, + "cast": [ + "Ramon Novarro", + "Madge Evans" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "I Am a Fugitive from a Chain Gang", + "year": 1932, + "cast": [ + "Paul Muni", + "Glenda Farrell", + "Allen Jenkins" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "If I Had a Million", + "year": 1932, + "cast": [ + "Gary Cooper", + "Charles Laughton", + "W. C. Fields" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Impatient Maiden", + "year": 1932, + "cast": [ + "Lew Ayres", + "Mae Clarke", + "Una Merkel" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Island of Lost Souls", + "year": 1932, + "cast": [ + "Charles Laughton", + "Richard Arlen", + "Bela Lugosi" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Is My Face Red?", + "year": 1932, + "cast": [ + "Helen Twelvetrees", + "Ricardo Cortez", + "Jill Esmond" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "It's Tough to Be Famous", + "year": 1932, + "cast": [ + "Douglas Fairbanks Jr.", + "Mary Brian" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Jenny Lind", + "year": 1932, + "cast": [ + "Grace Moore", + "Andre Luguet" + ], + "genres": [ + "Musical", + "Biography" + ] + }, + { + "title": "Jewel Robbery", + "year": 1932, + "cast": [ + "William Powell", + "Kay Francis", + "Helen Vinson" + ], + "genres": [ + "Comedy", + "Crime" + ] + }, + { + "title": "The Kid from Spain", + "year": 1932, + "cast": [ + "Eddie Cantor", + "Lyda Roberti" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The King Murder", + "year": 1932, + "cast": [ + "Conway Tearle", + "Natalie Moorhead" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Klondike", + "year": 1932, + "cast": [ + "Thelma Todd", + "Lyle Talbot" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Kongo", + "year": 1932, + "cast": [ + "Walter Huston", + "Lupe Vélez" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Ladies of the Jury", + "year": 1932, + "cast": [ + "Edna May Oliver", + "Jill Esmond", + "Roscoe Ates" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Lady and Gent", + "year": 1932, + "cast": [ + "George Bancroft", + "Wynne Gibson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Lady with a Past", + "year": 1932, + "cast": [ + "Constance Bennett", + "Ben Lyon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Last Mile", + "year": 1932, + "cast": [ + "Preston Foster", + "Noel Madison" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Law and Lawless", + "year": 1932, + "cast": [ + "Jack Hoxie", + "Julian Rivero" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Law and Order", + "year": 1932, + "cast": [ + "Walter Huston", + "Harry Carey", + "Harry Woods" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Law of the Sea", + "year": 1932, + "cast": [ + "William Farnum", + "Priscilla Dean", + "Sally Blane" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Lawyer Man", + "year": 1932, + "cast": [ + "William Powell", + "Joan Blondell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Lena Rivers", + "year": 1932, + "cast": [ + "Charlotte Henry", + "Beryl Mercer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Letty Lynton", + "year": 1932, + "cast": [ + "Joan Crawford", + "Robert Montgomery" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Life Begins", + "year": 1932, + "cast": [ + "Loretta Young", + "Eric Linden" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Little Orphan Annie", + "year": 1932, + "cast": [ + "Mitzi Green", + "May Robson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Local Bad Man", + "year": 1932, + "cast": [ + "Hoot Gibson", + "Sally Blane" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Lost Squadron", + "year": 1932, + "cast": [ + "Richard Dix", + "Mary Astor", + "Erich von Stroheim" + ], + "genres": [ + "Drama", + "War" + ] + }, + { + "title": "Love Affair", + "year": 1932, + "cast": [ + "Dorothy Mackaill", + "Humphrey Bogart", + "Hale Hamilton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Love Bound", + "year": 1932, + "cast": [ + "Jack Mulhall", + "Natalie Moorhead" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Love in High Gear", + "year": 1932, + "cast": [ + "Alberta Vaughn", + "Tyrell Davis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Love Is a Racket", + "year": 1932, + "cast": [ + "Douglas Fairbanks Jr.", + "Ann Dvorak" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Love Me Tonight", + "year": 1932, + "cast": [ + "Jeanette MacDonald", + "Maurice Chevalier", + "Charles Ruggles" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Lovers Courageous", + "year": 1932, + "cast": [ + "Robert Montgomery", + "Madge Evans" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Madame Butterfly", + "year": 1932, + "cast": [ + "Sylvia Sidney", + "Cary Grant", + "Irving Pichel" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Madame Racketeer", + "year": 1932, + "cast": [ + "Alison Skipworth", + "Richard Bennett", + "George Raft" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Madison Square Garden", + "year": 1932, + "cast": [ + "Jack Oakie", + "Marian Nixon", + "William Boyd" + ], + "genres": [ + "Drama", + "Sports" + ] + }, + { + "title": "Make Me a Star", + "year": 1932, + "cast": [ + "Joan Blondell", + "Stuart Erwin", + "ZaSu Pitts" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Manhattan Tower", + "year": 1932, + "cast": [ + "Mary Brian", + "Irene Rich" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Man About Town", + "year": 1932, + "cast": [ + "Warner Baxter", + "Karen Morley" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Man Against Woman", + "year": 1932, + "cast": [ + "Jack Holt", + "Lillian Miles" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Man Called Back", + "year": 1932, + "cast": [ + "Conrad Nagel", + "Doris Kenyon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Man from Yesterday", + "year": 1932, + "cast": [ + "Claudette Colbert", + "Clive Brook" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "Man Wanted", + "year": 1932, + "cast": [ + "Kay Francis", + "David Manners" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Man Who Played God", + "year": 1932, + "cast": [ + "Bette Davis", + "George Arliss", + "Violet Heming" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Man's Land", + "year": 1932, + "cast": [ + "Hoot Gibson", + "Marion Shilling" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Mask of Fu Manchu", + "year": 1932, + "cast": [ + "Boris Karloff", + "Lewis Stone", + "Karen Morley" + ], + "genres": [ + "Horror", + "Science Fiction" + ] + }, + { + "title": "Mason of the Mounted", + "year": 1932, + "cast": [ + "Bill Cody", + "Nancy Drexel" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Match King", + "year": 1932, + "cast": [ + "Warren William", + "Lili Damita" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "McKenna of the Mounted", + "year": 1932, + "cast": [ + "Buck Jones", + "Greta Granstedt" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Me and My Gal", + "year": 1932, + "cast": [ + "Spencer Tracy", + "Joan Bennett" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Menace", + "year": 1932, + "cast": [ + "H. B. Warner", + "Bette Davis" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Men Are Such Fools", + "year": 1932, + "cast": [ + "Leo Carrillo", + "Vivienne Osborne" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Men of America", + "year": 1932, + "cast": [ + "William Boyd", + "Dorothy Wilson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Men of Chance", + "year": 1932, + "cast": [ + "Ricardo Cortez", + "Mary Astor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Merrily We Go to Hell", + "year": 1932, + "cast": [ + "Fredric March", + "Sylvia Sidney", + "Cary Grant" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Midnight Lady", + "year": 1932, + "cast": [ + "Sarah Padden", + "John Darrow" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Midnight Morals", + "year": 1932, + "cast": [ + "Alberta Vaughn", + "Rex Lease" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Midnight Patrol", + "year": 1932, + "cast": [ + "Regis Toomey", + "Betty Bronson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Midnight Warning", + "year": 1932, + "cast": [ + "William Boyd", + "Claudia Dell" + ], + "genres": [ + "Drama", + "Mystery" + ] + }, + { + "title": "Million Dollar Legs", + "year": 1932, + "cast": [ + "W. C. Fields", + "Jack Oakie", + "Hugh Herbert" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Miracle Man", + "year": 1932, + "cast": [ + "Sylvia Sidney", + "Chester Morris" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Misleading Lady", + "year": 1932, + "cast": [ + "Claudette Colbert", + "Edmund Lowe" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Miss Pinkerton", + "year": 1932, + "cast": [ + "Joan Blondell", + "George Brent" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Monster Walks", + "year": 1932, + "cast": [ + "Rex Lease", + "Vera Reynolds", + "Sheldon Lewis" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Most Dangerous Game", + "year": 1932, + "cast": [ + "Joel McCrea", + "Fay Wray", + "Robert Armstrong" + ], + "genres": [ + "Adventure", + "Thriller" + ] + }, + { + "title": "The Mouthpiece", + "year": 1932, + "cast": [ + "Warren William", + "Sidney Fox" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Movie Crazy", + "year": 1932, + "cast": [ + "Harold Lloyd", + "Constance Cummings", + "Kenneth Thomson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mr. Robinson Crusoe", + "year": 1932, + "cast": [ + "Douglas Fairbanks", + "William Farnum" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Mummy", + "year": 1932, + "cast": [ + "Boris Karloff", + "Zita Johann", + "David Manners" + ], + "genres": [ + "Drama", + "Horror" + ] + }, + { + "title": "Murders in the Rue Morgue", + "year": 1932, + "cast": [ + "Bela Lugosi", + "Sidney Fox", + "Leon Ames" + ], + "genres": [ + "Crime", + "Horror" + ] + }, + { + "title": "My Pal, the King", + "year": 1932, + "cast": [ + "Tom Mix", + "Mickey Rooney" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Mystery Ranch", + "year": 1932, + "cast": [ + "Charles Middleton", + "Cecilia Parker", + "George O'Brien" + ], + "genres": [ + "Western" + ] + }, + { + "title": "New Morals for Old", + "year": 1932, + "cast": [ + "Robert Young", + "Lewis Stone" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Night After Night", + "year": 1932, + "cast": [ + "George Raft", + "Constance Cummings", + "Mae West" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Night Club Lady", + "year": 1932, + "cast": [ + "Adolphe Menjou", + "Mayo Methot" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Night Court", + "year": 1932, + "cast": [ + "Walter Huston", + "Anita Page", + "Phillips Holmes" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "The Night of June 13", + "year": 1932, + "cast": [ + "Clive Brook", + "Lila Lee" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Night Mayor", + "year": 1932, + "cast": [ + "Lee Tracy", + "Evalyn Knapp" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Night Rider", + "year": 1932, + "cast": [ + "Harry Carey", + "Elinor Fair" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Night World", + "year": 1932, + "cast": [ + "Lew Ayres", + "Mae Clarke", + "Boris Karloff" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "No Living Witness", + "year": 1932, + "cast": [ + "Gilbert Roland", + "Noah Beery" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "No Man of Her Own", + "year": 1932, + "cast": [ + "Clark Gable", + "Carole Lombard" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "No More Orchids", + "year": 1932, + "cast": [ + "Carole Lombard", + "Lyle Talbot" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "No One Man", + "year": 1932, + "cast": [ + "Carole Lombard", + "Ricardo Cortez", + "Paul Lukas" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Officer Thirteen", + "year": 1932, + "cast": [ + "Monte Blue", + "Lila Lee", + "Mickey Rooney" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Okay, America!", + "year": 1932, + "cast": [ + "Lew Ayres", + "Maureen O'Sullivan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Old Dark House", + "year": 1932, + "cast": [ + "Boris Karloff", + "Melvyn Douglas", + "Charles Laughton" + ], + "genres": [ + "Comedy", + "Horror" + ] + }, + { + "title": "Once in a Lifetime", + "year": 1932, + "cast": [ + "Jack Oakie", + "Sidney Fox" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "One Hour with You", + "year": 1932, + "cast": [ + "Jeanette MacDonald", + "Maurice Chevalier", + "Genevieve Tobin" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "One Way Passage", + "year": 1932, + "cast": [ + "William Powell", + "Kay Francis", + "Aline MacMahon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Out of Singapore", + "year": 1932, + "cast": [ + "Noah Beery Sr.", + "Miriam Seegar", + "Dorothy Burgess" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Pack Up Your Troubles", + "year": 1932, + "cast": [ + "Stan Laurel", + "Oliver Hardy", + "Don Dillaway" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Painted Woman", + "year": 1932, + "cast": [ + "Spencer Tracy", + "Peggy Shannon" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Panama Flo", + "year": 1932, + "cast": [ + "Helen Twelvetrees", + "Charles Bickford" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Parisian Romance", + "year": 1932, + "cast": [ + "Lew Cody", + "Marion Shilling" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Partners", + "year": 1932, + "cast": [ + "Tom Keene", + "Nancy Drexel" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Passionate Plumber", + "year": 1932, + "cast": [ + "Buster Keaton", + "Jimmy Durante" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Passport to Hell", + "year": 1932, + "cast": [ + "Elissa Landi", + "Paul Lukas" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Passport to Paradise", + "year": 1932, + "cast": [ + "Jack Mulhall", + "Blanche Mehaffey" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Payment Deferred", + "year": 1932, + "cast": [ + "Charles Laughton", + "Maureen O'Sullivan" + ], + "genres": [ + "Crime", + "Thriller" + ] + }, + { + "title": "The Penguin Pool Murder", + "year": 1932, + "cast": [ + "Edna May Oliver", + "Mae Clarke" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Phantom Express", + "year": 1932, + "cast": [ + "William Collier Jr.", + "Sally Blane" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Phantom of Crestwood", + "year": 1932, + "cast": [ + "Ricardo Cortez", + "Karen Morley" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Phantom President", + "year": 1932, + "cast": [ + "George M. Cohan", + "Claudette Colbert" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Play Girl", + "year": 1932, + "cast": [ + "Winnie Lightner", + "Loretta Young" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Police Court", + "year": 1932, + "cast": [ + "Henry B. Walthall", + "Leon Janney" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Polly of the Circus", + "year": 1932, + "cast": [ + "Marion Davies", + "Clark Gable" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Prestige", + "year": 1932, + "cast": [ + "Adolphe Menjou", + "Melvyn Douglas", + "Ann Harding" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Pride of the Legion", + "year": 1932, + "cast": [ + "Victor Jory", + "Barbara Kent" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Probation", + "year": 1932, + "cast": [ + "Sally Blane", + "John Darrow" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Prosperity", + "year": 1932, + "cast": [ + "Marie Dressler", + "Polly Moran", + "Anita Page" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Purchase Price", + "year": 1932, + "cast": [ + "Barbara Stanwyck", + "George Brent", + "Lyle Talbot" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Rackety Rax", + "year": 1932, + "cast": [ + "Victor McLaglen", + "Greta Nissen" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Racing Youth", + "year": 1932, + "cast": [ + "Slim Summerville", + "Louise Fazenda" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Radio Patrol", + "year": 1932, + "cast": [ + "Robert Armstrong", + "Lila Lee", + "June Clyde" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Rain", + "year": 1932, + "cast": [ + "Joan Crawford", + "Walter Huston" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Rasputin and the Empress", + "year": 1932, + "cast": [ + "John Barrymore", + "Lionel Barrymore", + "Ethel Barrymore" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Rebecca of Sunnybrook Farm", + "year": 1932, + "cast": [ + "Marian Nixon", + "Mae Marsh", + "Ralph Bellamy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Reckoning", + "year": 1932, + "cast": [ + "Sally Blane", + "James Murray" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Red Dust", + "year": 1932, + "cast": [ + "Clark Gable", + "Jean Harlow", + "Mary Astor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Red Haired Alibi", + "year": 1932, + "cast": [ + "Merna Kennedy", + "Theodore von Eltz", + "Grant Withers" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Red-Headed Woman", + "year": 1932, + "cast": [ + "Jean Harlow", + "Chester Morris", + "Charles Boyer" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Renegades of the West", + "year": 1932, + "cast": [ + "Tom Keene", + "Roscoe Ates" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Rich Are Always with Us", + "year": 1932, + "cast": [ + "Ruth Chatterton", + "George Brent" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Ride Him, Cowboy", + "year": 1932, + "cast": [ + "John Wayne", + "Otis Harlan", + "Ruth Hall" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Rider of Death Valley", + "year": 1932, + "cast": [ + "Tom Mix", + "Lois Wilson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Riding Tornado", + "year": 1932, + "cast": [ + "Tim McCoy", + "Shirley Grey" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Ridin' for Justice", + "year": 1932, + "cast": [ + "Buck Jones", + "Mary Doran", + "Russell Simpson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Roadhouse Murder", + "year": 1932, + "cast": [ + "Dorothy Jordan", + "Eric Linden" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Roar of the Dragon", + "year": 1932, + "cast": [ + "Richard Dix", + "Gwili Andre", + "Edward Everett Horton" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Rockabye", + "year": 1932, + "cast": [ + "Constance Bennett", + "Joel McCrea" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Saddle Buster", + "year": 1932, + "cast": [ + "Tom Keene", + "Helen Foster" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Savage Girl", + "year": 1932, + "cast": [ + "Rochelle Hudson", + "Walter Byron", + "Harry Myers" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Scandal for Sale", + "year": 1932, + "cast": [ + "Charles Bickford", + "Rose Hobart" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Scarface", + "year": 1932, + "cast": [ + "Paul Muni", + "Ann Dvorak", + "George Raft" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "Scarlet Dawn", + "year": 1932, + "cast": [ + "Douglas Fairbanks Jr.", + "Nancy Carroll" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Secrets of the French Police", + "year": 1932, + "cast": [ + "Gwili Andre", + "Gregory Ratoff" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Secrets of Wu Sin", + "year": 1932, + "cast": [ + "Lois Wilson", + "Grant Withers" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Self Defense", + "year": 1932, + "cast": [ + "Pauline Frederick", + "Theodore von Eltz" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Shanghai Express", + "year": 1932, + "cast": [ + "Marlene Dietrich", + "Anna May Wong", + "Clive Brook" + ], + "genres": [ + "Adventure", + "Drama" + ] + }, + { + "title": "She Wanted a Millionaire", + "year": 1932, + "cast": [ + "Joan Bennett", + "Spencer Tracy" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Sherlock Holmes", + "year": 1932, + "cast": [ + "Clive Brook", + "Miriam Jordan" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Shop Angel", + "year": 1932, + "cast": [ + "Marion Shilling", + "Holmes Herbert" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Shopworn", + "year": 1932, + "cast": [ + "Barbara Stanwyck", + "Regis Toomey", + "ZaSu Pitts" + ], + "genres": [ + "Drama", + "Romance" + ] + }, + { + "title": "The Sign of the Cross", + "year": 1932, + "cast": [ + "Fredric March", + "Claudette Colbert", + "Charles Laughton" + ], + "genres": [] + }, + { + "title": "The Silent Witness", + "year": 1932, + "cast": [ + "Lionel Atwill", + "Greta Nissen", + "Helen Mack" + ], + "genres": [ + "Drama", + "Mystery" + ] + }, + { + "title": "Silver Dollar", + "year": 1932, + "cast": [ + "Edward G. Robinson", + "Bebe Daniels" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Silver Lining", + "year": 1932, + "cast": [ + "Maureen O'Sullivan", + "Betty Compson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Sinister Hands", + "year": 1932, + "cast": [ + "Jack Mulhall", + "Crauford Kent" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Sinners in the Sun", + "year": 1932, + "cast": [ + "Carole Lombard", + "Chester Morris" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Six Hours to Live", + "year": 1932, + "cast": [ + "Warner Baxter", + "Miriam Jordan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sky Bride", + "year": 1932, + "cast": [ + "Richard Arlen", + "Jack Oakie", + "Virginia Bruce" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sky Devils", + "year": 1932, + "cast": [ + "Spencer Tracy", + "Ann Dvorak" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Skyscraper Souls", + "year": 1932, + "cast": [ + "Warren William", + "Maureen O'Sullivan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Slightly Married", + "year": 1932, + "cast": [ + "Evalyn Knapp", + "Marie Prevost" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Smilin' Through", + "year": 1932, + "cast": [ + "Norma Shearer", + "Fredric March", + "Leslie Howard" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "So Big", + "year": 1932, + "cast": [ + "Barbara Stanwyck", + "George Brent", + "Dickie Moore" + ], + "genres": [ + "Drama", + "Romance" + ] + }, + { + "title": "Society Girl", + "year": 1932, + "cast": [ + "James Dunn", + "Peggy Shannon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Son-Daughter", + "year": 1932, + "cast": [ + "Helen Hayes", + "Ramon Novarro" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "South of the Rio Grande", + "year": 1932, + "cast": [ + "Buck Jones", + "Mona Maris" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Speak Easily", + "year": 1932, + "cast": [ + "Buster Keaton", + "Jimmy Durante", + "Thelma Todd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Speed Demon", + "year": 1932, + "cast": [ + "William Collier Jr.", + "Joan Marsh" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Sport Parade", + "year": 1932, + "cast": [ + "Joel McCrea", + "Marian Marsh" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "State's Attorney", + "year": 1932, + "cast": [ + "John Barrymore", + "Helen Twelvetrees", + "William Boyd" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Steady Company", + "year": 1932, + "cast": [ + "Norman Foster", + "June Clyde" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Stepping Sisters", + "year": 1932, + "cast": [ + "Louise Dresser", + "Minna Gombell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Stoker", + "year": 1932, + "cast": [ + "Monte Blue", + "Dorothy Burgess" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Stowaway", + "year": 1932, + "cast": [ + "Fay Wray", + "Leon Ames", + "Montagu Love" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "A Strange Adventure", + "year": 1932, + "cast": [ + "Regis Toomey", + "June Clyde" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Strange Case of Clara Deane", + "year": 1932, + "cast": [ + "Wynne Gibson", + "Pat O'Brien" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Strange Interlude", + "year": 1932, + "cast": [ + "Norma Shearer", + "Clark Gable" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Strange Justice", + "year": 1932, + "cast": [ + "Marian Marsh", + "Reginald Denny" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Strange Love of Molly Louvain", + "year": 1932, + "cast": [ + "Ann Dvorak", + "Lee Tracy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Strangers of the Evening", + "year": 1932, + "cast": [ + "ZaSu Pitts", + "Lucien Littlefield" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Strangers in Love", + "year": 1932, + "cast": [ + "Fredric March", + "Kay Francis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Street of Women", + "year": 1932, + "cast": [ + "Kay Francis", + "Roland Young" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Successful Calamity", + "year": 1932, + "cast": [ + "George Arliss", + "Mary Astor" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Sundown Rider", + "year": 1932, + "cast": [ + "Buck Jones", + "Barbara Weeks" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Symphony of Six Million", + "year": 1932, + "cast": [ + "Ricardo Cortez", + "Irene Dunne" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Tarzan the Ape Man", + "year": 1932, + "cast": [ + "Maureen O'Sullivan", + "Johnny Weissmuller", + "Neil Hamilton" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Taxi!", + "year": 1932, + "cast": [ + "James Cagney", + "Loretta Young" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Tenderfoot", + "year": 1932, + "cast": [ + "Joe E. Brown", + "Ginger Rogers" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Tess of the Storm Country", + "year": 1932, + "cast": [ + "Janet Gaynor", + "Charles Farrell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Texas Bad Man", + "year": 1932, + "cast": [ + "Tom Mix", + "Lucille Powers" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Texas Cyclone", + "year": 1932, + "cast": [ + "Tim McCoy", + "John Wayne" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Texas Gun Fighter", + "year": 1932, + "cast": [ + "Ken Maynard", + "Sheila Mannors" + ], + "genres": [ + "Western" + ] + }, + { + "title": "That's My Boy", + "year": 1932, + "cast": [ + "Richard Cromwell", + "Dorothy Jordan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "They Call It Sin", + "year": 1932, + "cast": [ + "Loretta Young", + "George Brent" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "They Just Had to Get Married", + "year": 1932, + "cast": [ + "Slim Summerville", + "ZaSu Pitts", + "Roland Young" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "They Never Come Back", + "year": 1932, + "cast": [ + "Regis Toomey", + "Dorothy Sebastian" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Thirteen Women", + "year": 1932, + "cast": [ + "Myrna Loy", + "Irene Dunne", + "Ricardo Cortez" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Thirteenth Guest", + "year": 1932, + "cast": [ + "Ginger Rogers", + "Lyle Talbot" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "This Is the Night", + "year": 1932, + "cast": [ + "Roland Young", + "Thelma Todd", + "Cary Grant" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "This Reckless Age", + "year": 1932, + "cast": [ + "Charles \"Buddy\" Rogers", + "Peggy Shannon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "This Sporting Age", + "year": 1932, + "cast": [ + "Jack Holt", + "Evalyn Knapp" + ], + "genres": [ + "Sports" + ] + }, + { + "title": "Those We Love", + "year": 1932, + "cast": [ + "Mary Astor", + "Kenneth MacKenna" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Three on a Match", + "year": 1932, + "cast": [ + "Joan Blondell", + "Bette Davis", + "Humphrey Bogart" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "Three Wise Girls", + "year": 1932, + "cast": [ + "Jean Harlow", + "Mae Clarke" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Thrill of Youth", + "year": 1932, + "cast": [ + "June Clyde", + "Dorothy Peterson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Thunder Below", + "year": 1932, + "cast": [ + "Tallulah Bankhead", + "Charles Bickford" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Tiger Shark", + "year": 1932, + "cast": [ + "Edward G. Robinson", + "Richard Arlen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Tomorrow and Tomorrow", + "year": 1932, + "cast": [ + "Ruth Chatterton", + "Paul Lukas" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Tom Brown of Culver", + "year": 1932, + "cast": [ + "Tom Brown", + "Richard Cromwell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Too Busy to Work", + "year": 1932, + "cast": [ + "Will Rogers", + "Marian Nixon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Trial of Vivienne Ware", + "year": 1932, + "cast": [ + "Joan Bennett", + "Donald Cook" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Trouble in Paradise", + "year": 1932, + "cast": [ + "Miriam Hopkins", + "Kay Francis", + "Herbert Marshall" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Two Against the World", + "year": 1932, + "cast": [ + "Constance Bennett", + "Neil Hamilton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Two-Fisted Law", + "year": 1932, + "cast": [ + "Tim McCoy", + "John Wayne" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Two Kinds of Women", + "year": 1932, + "cast": [ + "Miriam Hopkins", + "Phillips Holmes" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Two Seconds", + "year": 1932, + "cast": [ + "Edward G. Robinson", + "Guy Kibbee" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Unashamed", + "year": 1932, + "cast": [ + "Helen Twelvetrees", + "Robert Young" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Under-Cover Man", + "year": 1932, + "cast": [ + "George Raft", + "Nancy Carroll" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Unexpected Father", + "year": 1932, + "cast": [ + "Slim Summerville", + "ZaSu Pitts" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Unholy Love", + "year": 1932, + "cast": [ + "H. B. Warner", + "Lila Lee" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Union Depot", + "year": 1932, + "cast": [ + "Douglas Fairbanks Jr.", + "Joan Blondell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Unwritten Law", + "year": 1932, + "cast": [ + "Greta Nissen", + "Richard \"Skeets\" Gallagher" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Uptown New York", + "year": 1932, + "cast": [ + "Jack Oakie", + "Shirley Grey" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Vanishing Frontier", + "year": 1932, + "cast": [ + "Johnny Mack Brown", + "Evalyn Knapp" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Vanity Fair", + "year": 1932, + "cast": [ + "Myrna Loy", + "Conway Tearle" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Vanity Street", + "year": 1932, + "cast": [ + "Charles Bickford", + "Helen Chandler" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Virtue", + "year": 1932, + "cast": [ + "Carole Lombard", + "Pat O'Brien" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "War Babies", + "year": 1932, + "cast": [ + "Shirley Temple", + "Georgie Smith" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "War Correspondent", + "year": 1932, + "cast": [ + "Jack Holt", + "Ralph Graves", + "Lila Lee" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Washington Masquerade", + "year": 1932, + "cast": [ + "Lionel Barrymore", + "Karen Morley" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Washington Merry-Go-Round", + "year": 1932, + "cast": [ + "Lee Tracy", + "Constance Cummings" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Wayward", + "year": 1932, + "cast": [ + "Nancy Carroll", + "Richard Arlen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Week Ends Only", + "year": 1932, + "cast": [ + "Joan Bennett", + "Ben Lyon" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Week-End Marriage", + "year": 1932, + "cast": [ + "Loretta Young", + "Norman Foster" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Western Code", + "year": 1932, + "cast": [ + "Tim McCoy", + "Nora Lane" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Westward Passage", + "year": 1932, + "cast": [ + "Ann Harding", + "Laurence Olivier" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Wet Parade", + "year": 1932, + "cast": [ + "Robert Young", + "Myrna Loy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "What Price Hollywood?", + "year": 1932, + "cast": [ + "Constance Bennett", + "Neil Hamilton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "When a Fellow Needs a Friend", + "year": 1932, + "cast": [ + "Jackie Cooper", + "Ralph Graves" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "While Paris Sleeps", + "year": 1932, + "cast": [ + "Victor McLaglen", + "Helen Mack" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Whistlin' Dan", + "year": 1932, + "cast": [ + "Ken Maynard", + "Joyzelle Joyner" + ], + "genres": [ + "Western" + ] + }, + { + "title": "White Zombie", + "year": 1932, + "cast": [ + "Bela Lugosi", + "Madge Bellamy", + "Joseph Cawthorn" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Widow in Scarlet", + "year": 1932, + "cast": [ + "Dorothy Revier", + "Kenneth Harlan" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Wild Girl", + "year": 1932, + "cast": [ + "Charles Farrell", + "Joan Bennett" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Wild Horse Mesa", + "year": 1932, + "cast": [ + "Randolph Scott", + "Sally Blane" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Winner Take All", + "year": 1932, + "cast": [ + "James Cagney", + "Marian Nixon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Wiser Sex", + "year": 1932, + "cast": [ + "Claudette Colbert", + "Melvyn Douglas" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Without Honor", + "year": 1932, + "cast": [ + "Harry Carey", + "Mae Busch" + ], + "genres": [ + "Western" + ] + }, + { + "title": "A Woman Commands", + "year": 1932, + "cast": [ + "Pola Negri", + "Roland Young", + "Basil Rathbone" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Woman from Monte Carlo", + "year": 1932, + "cast": [ + "Lil Dagover", + "Walter Huston" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Woman in Room 13", + "year": 1932, + "cast": [ + "Elissa Landi", + "Ralph Bellamy" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Women Won't Tell", + "year": 1932, + "cast": [ + "Sarah Padden", + "Otis Harlan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The World and the Flesh", + "year": 1932, + "cast": [ + "George Bancroft", + "Miriam Hopkins" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "You Said a Mouthful", + "year": 1932, + "cast": [ + "Joe E. Brown", + "Ginger Rogers" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Young America", + "year": 1932, + "cast": [ + "Spencer Tracy", + "Doris Kenyon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Young Blood", + "year": 1932, + "cast": [ + "Bob Steele", + "Helen Foster" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Young Bride", + "year": 1932, + "cast": [ + "Helen Twelvetrees", + "Eric Linden" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "42nd Street", + "year": 1933, + "cast": [ + "Dick Powell", + "Ruby Keeler", + "Ginger Rogers" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Above the Clouds", + "year": 1933, + "cast": [ + "Richard Cromwell", + "Dorothy Wilson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Ace of Aces", + "year": 1933, + "cast": [ + "Richard Dix", + "Ralph Bellamy", + "Elizabeth Allan" + ], + "genres": [ + "Drama", + "War" + ] + }, + { + "title": "Adorable", + "year": 1933, + "cast": [ + "Janet Gaynor", + "Henri Garat", + "C. Aubrey Smith" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Advice to the Lovelorn", + "year": 1933, + "cast": [ + "Lee Tracy", + "Sally Blane" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "After Tonight", + "year": 1933, + "cast": [ + "Constance Bennett", + "Gilbert Roland" + ], + "genres": [ + "Spy" + ] + }, + { + "title": "Aggie Appleby, Maker of Men", + "year": 1933, + "cast": [ + "Charles Farrell", + "Wynne Gibson", + "ZaSu Pitts" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Air Hostess", + "year": 1933, + "cast": [ + "Evalyn Knapp", + "James Murray" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Alice in Wonderland", + "year": 1933, + "cast": [ + "Charlotte Henry", + "Edward Everett Horton", + "W. C. Fields" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Ann Carver's Profession", + "year": 1933, + "cast": [ + "Fay Wray", + "Gene Raymond" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Ann Vickers", + "year": 1933, + "cast": [ + "Irene Dunne", + "Walter Huston", + "Edna May Oliver" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Another Language", + "year": 1933, + "cast": [ + "Robert Montgomery", + "Helen Hayes" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Arizona to Broadway", + "year": 1933, + "cast": [ + "James Dunn", + "Joan Bennett", + "Herbert Mundin" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Avenger", + "year": 1933, + "cast": [ + "Ralph Forbes", + "Adrienne Ames", + "Charlotte Merriam" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "Baby Face", + "year": 1933, + "cast": [ + "Barbara Stanwyck", + "George Brent", + "Donald Cook" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Barbarian", + "year": 1933, + "cast": [ + "Myrna Loy", + "Ramon Novarro", + "Edward Arnold" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Beauty for Sale", + "year": 1933, + "cast": [ + "Madge Evans", + "Otto Kruger", + "Alice Brady" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Bed of Roses", + "year": 1933, + "cast": [ + "Constance Bennett", + "Joel McCrea", + "Franklin Pangborn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Bedtime Story", + "year": 1933, + "cast": [ + "Maurice Chevalier", + "Edward Everett Horton", + "Helen Twelvetrees" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Before Dawn", + "year": 1933, + "cast": [ + "Dorothy Wilson", + "Warner Oland" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Before Midnight", + "year": 1933, + "cast": [ + "Ralph Bellamy", + "June Collyer" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Below the Sea", + "year": 1933, + "cast": [ + "Ralph Bellamy", + "Fay Wray", + "Frederick Vodeding" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Berkeley Square", + "year": 1933, + "cast": [ + "Leslie Howard", + "Heather Angel", + "Valerie Taylor" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Best of Enemies", + "year": 1933, + "cast": [ + "Buddy Rogers", + "Marian Nixon", + "Greta Nissen" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Big Brain", + "year": 1933, + "cast": [ + "Phillips Holmes", + "Fay Wray" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Big Chance", + "year": 1933, + "cast": [ + "John Darrow", + "Mickey Rooney", + "Natalie Moorhead" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "The Big Cage", + "year": 1933, + "cast": [ + "Clyde Beatty", + "Anita Page" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Big Executive", + "year": 1933, + "cast": [ + "Ricardo Cortez", + "Sharon Lynn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Billion Dollar Scandal", + "year": 1933, + "cast": [ + "Robert Armstrong", + "Constance Cummings" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Bitter Tea of General Yen", + "year": 1933, + "cast": [ + "Barbara Stanwyck", + "Nils Asther", + "Toshia Mori" + ], + "genres": [ + "Drama", + "War" + ] + }, + { + "title": "Black Beauty", + "year": 1933, + "cast": [ + "Esther Ralston", + "Alexander Kirkland", + "Hale Hamilton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Blind Adventure", + "year": 1933, + "cast": [ + "Robert Armstrong", + "Helen Mack" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Blondie Johnson", + "year": 1933, + "cast": [ + "Joan Blondell", + "Chester Morris" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Blood Money", + "year": 1933, + "cast": [ + "George Bancroft", + "Judith Anderson", + "Frances Dee" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "Bombshell", + "year": 1933, + "cast": [ + "Jean Harlow", + "Lee Tracy", + "Franchot Tone" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Bondage", + "year": 1933, + "cast": [ + "Dorothy Jordan", + "Alexander Kirkland", + "Merle Tottenham" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Bowery", + "year": 1933, + "cast": [ + "Wallace Beery", + "George Raft", + "Jackie Cooper" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Breed of the Border", + "year": 1933, + "cast": [ + "Bob Steele", + "Marion Byron" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Brief Moment", + "year": 1933, + "cast": [ + "Carole Lombard", + "Gene Raymond" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Broadway Bad", + "year": 1933, + "cast": [ + "Joan Blondell", + "Ricardo Cortez", + "Ginger Rogers" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Broadway Through a Keyhole", + "year": 1933, + "cast": [ + "Constance Cummings", + "Russ Columbo" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Broadway to Hollywood", + "year": 1933, + "cast": [ + "Alice Brady", + "Frank Morgan" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Broken Dreams", + "year": 1933, + "cast": [ + "Randolph Scott", + "Martha Sleeper", + "Joseph Cawthorn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Bureau of Missing Persons", + "year": 1933, + "cast": [ + "Bette Davis", + "Pat O'Brien", + "Glenda Farrell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "By Appointment Only", + "year": 1933, + "cast": [ + "Aileen Pringle", + "Lew Cody" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The California Trail", + "year": 1933, + "cast": [ + "Buck Jones", + "Helen Mack" + ], + "genres": [ + "Western" + ] + }, + { + "title": "By Candlelight", + "year": 1933, + "cast": [ + "Elissa Landi", + "Paul Lukas" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Captured!", + "year": 1933, + "cast": [ + "Leslie Howard", + "Douglas Fairbanks Jr.", + "Margaret Lindsay" + ], + "genres": [ + "Drama", + "War" + ] + }, + { + "title": "Cavalcade", + "year": 1933, + "cast": [ + "Clive Brook", + "Diana Wynyard", + "Beryl Mercer" + ], + "genres": [ + "Drama", + "War" + ] + }, + { + "title": "Central Airport", + "year": 1933, + "cast": [ + "Richard Barthelmess", + "James Murray", + "Sally Eilers" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Chance at Heaven", + "year": 1933, + "cast": [ + "Ginger Rogers", + "Joel McCrea", + "Marian Nixon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Charlie Chan's Greatest Case", + "year": 1933, + "cast": [ + "Warner Oland", + "Heather Angel" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Cheyenne Kid", + "year": 1933, + "cast": [ + "Tom Keene", + "Roscoe Ates" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Chief", + "year": 1933, + "cast": [ + "Ed Wynn", + "Dorothy Mackaill" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Child of Manhattan", + "year": 1933, + "cast": [ + "Nancy Carroll", + "John Boles" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Christopher Bean", + "year": 1933, + "cast": [ + "Marie Dressler", + "Lionel Barrymore" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Christopher Strong", + "year": 1933, + "cast": [ + "Katharine Hepburn", + "Colin Clive" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Circus Queen Murder", + "year": 1933, + "cast": [ + "Adolphe Menjou", + "Donald Cook", + "Greta Nissen" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Clear All Wires!", + "year": 1933, + "cast": [ + "Lee Tracy", + "Benita Hume" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Cocktail Hour", + "year": 1933, + "cast": [ + "Randolph Scott", + "Bebe Daniels" + ], + "genres": [ + "Drama", + "Romance" + ] + }, + { + "title": "The Cohens and Kellys in Trouble", + "year": 1933, + "cast": [ + "Charles Murray", + "Andy Devine", + "Maureen O'Sullivan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "College Coach", + "year": 1933, + "cast": [ + "Dick Powell", + "Ann Dvorak", + "Pat O'Brien" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "College Humor", + "year": 1933, + "cast": [ + "Bing Crosby", + "Jack Oakie", + "Mary Carlisle" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "The Constant Woman", + "year": 1933, + "cast": [ + "Conrad Nagel", + "Leila Hyams", + "Claire Windsor" + ], + "genres": [ + "Drama", + "Romance" + ] + }, + { + "title": "Convention City", + "year": 1933, + "cast": [ + "Joan Blondell", + "Dick Powell", + "Mary Astor" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Corruption", + "year": 1933, + "cast": [ + "Preston Foster", + "Tully Marshall", + "Evalyn Knapp" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "Counsellor at Law", + "year": 1933, + "cast": [ + "John Barrymore", + "Bebe Daniels" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Cradle Song", + "year": 1933, + "cast": [ + "Dorothea Wieck", + "Evelyn Venable", + "Guy Standing" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Crime of the Century", + "year": 1933, + "cast": [ + "Jean Hersholt", + "Wynne Gibson", + "Frances Dee" + ], + "genres": [ + "Drama", + "Mystery" + ] + }, + { + "title": "Cross Fire", + "year": 1933, + "cast": [ + "Tom Keene", + "Betty Furness" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Damaged Lives", + "year": 1933, + "cast": [ + "Lyman Williams", + "Diane Sinclair", + "Jason Robards Sr." + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dance Girl Dance", + "year": 1933, + "cast": [ + "Alan Dinehart", + "Evalyn Knapp" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Dancing Lady", + "year": 1933, + "cast": [ + "Joan Crawford", + "Clark Gable", + "Fred Astaire" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "Dangerous Crossroads", + "year": 1933, + "cast": [ + "Jackie Searl", + "Diane Sinclair" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Dangerously Yours", + "year": 1933, + "cast": [ + "Warner Baxter", + "Miriam Jordan", + "Herbert Mundin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Daring Daughters", + "year": 1933, + "cast": [ + "Marian Marsh", + "Kenneth Thomson", + "Bert Roach" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Day of Reckoning", + "year": 1933, + "cast": [ + "Richard Dix", + "Una Merkel", + "Stuart Erwin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Deadwood Pass", + "year": 1933, + "cast": [ + "Tom Tyler", + "Lafe McKee", + "Slim Whitaker" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Deluge", + "year": 1933, + "cast": [ + "Peggy Shannon", + "Sidney Blackmer" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Design for Living", + "year": 1933, + "cast": [ + "Fredric March", + "Gary Cooper", + "Miriam Hopkins" + ], + "genres": [ + "Comedy", + "Romance" + ] + }, + { + "title": "Destination Unknown", + "year": 1933, + "cast": [ + "Pat O'Brien", + "Ralph Bellamy", + "Alan Hale" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Devil's Brother", + "year": 1933, + "cast": [ + "Stan Laurel", + "Oliver Hardy", + "Thelma Todd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Devil's in Love", + "year": 1933, + "cast": [ + "Loretta Young", + "Victor Jory", + "Vivienne Osborne" + ], + "genres": [ + "Drama", + "Romance" + ] + }, + { + "title": "The Devil's Mate", + "year": 1933, + "cast": [ + "Peggy Shannon", + "Preston Foster" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Diamond Trail", + "year": 1933, + "cast": [ + "Rex Bell", + "Frances Rich" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Dinner at Eight", + "year": 1933, + "cast": [ + "John Barrymore", + "Wallace Beery", + "Jean Harlow" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Diplomaniacs", + "year": 1933, + "cast": [ + "Bert Wheeler", + "Robert Woolsey", + "Marjorie White" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Disgraced!", + "year": 1933, + "cast": [ + "Helen Twelvetrees", + "Bruce Cabot" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Doctor Bull", + "year": 1933, + "cast": [ + "Will Rogers", + "Marian Nixon", + "Vera Allen" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Don't Bet on Love", + "year": 1933, + "cast": [ + "Lew Ayres", + "Ginger Rogers" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Dora's Dunking Doughnuts", + "year": 1933, + "cast": [ + "Andy Clyde", + "Shirley Temple" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Double Harness", + "year": 1933, + "cast": [ + "Ann Harding", + "William Powell" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Duck Soup", + "year": 1933, + "cast": [ + "Groucho Marx", + "Chico Marx", + "Margaret Dumont" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Eagle and the Hawk", + "year": 1933, + "cast": [ + "Fredric March", + "Cary Grant", + "Carole Lombard" + ], + "genres": [ + "Drama", + "War" + ] + }, + { + "title": "East of Fifth Avenue", + "year": 1933, + "cast": [ + "Wallace Ford", + "Mary Carlisle" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Eleventh Commandment", + "year": 1933, + "cast": [ + "Marian Marsh", + "Theodore von Eltz" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Elmer, the Great", + "year": 1933, + "cast": [ + "Joe E. Brown", + "Patricia Ellis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Emergency Call", + "year": 1933, + "cast": [ + "William Boyd", + "Wynne Gibson", + "Betty Furness" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Emperor Jones", + "year": 1933, + "cast": [ + "Paul Robeson", + "Frank H. Wilson", + "Dudley Digges" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Employees' Entrance", + "year": 1933, + "cast": [ + "Loretta Young", + "Warren William", + "Wallace Ford" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Eskimo", + "year": 1933, + "cast": [ + "Ray Mala", + "Lulu Wong" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Ex-Lady", + "year": 1933, + "cast": [ + "Bette Davis", + "Gene Raymond", + "Claire Dodd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Face in the Sky", + "year": 1933, + "cast": [ + "Spencer Tracy", + "Marian Nixon", + "Stuart Erwin" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "Fargo Express", + "year": 1933, + "cast": [ + "Ken Maynard", + "Helen Mack", + "Paul Fix" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Fast Workers", + "year": 1933, + "cast": [ + "John Gilbert", + "Robert Armstrong", + "Mae Clarke" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Female", + "year": 1933, + "cast": [ + "Ruth Chatterton", + "George Brent", + "Lois Wilson" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Fiddlin' Buckaroo", + "year": 1933, + "cast": [ + "Ken Maynard", + "Gloria Shea" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Fighting Code", + "year": 1933, + "cast": [ + "Buck Jones", + "Diane Sinclair", + "Ward Bond" + ], + "genres": [ + "Western" + ] + }, + { + "title": "File 113", + "year": 1933, + "cast": [ + "Lew Cody", + "Mary Nolan" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Flaming Gold", + "year": 1933, + "cast": [ + "William Boyd", + "Pat O'Brien", + "Mae Clarke" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Flying Devils", + "year": 1933, + "cast": [ + "Bruce Cabot", + "Arline Judge", + "Ralph Bellamy" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Flying Down to Rio", + "year": 1933, + "cast": [ + "Dolores del Río", + "Fred Astaire", + "Ginger Rogers" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Fog", + "year": 1933, + "cast": [ + "Mary Brian", + "Reginald Denny" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Footlight Parade", + "year": 1933, + "cast": [ + "James Cagney", + "Joan Blondell", + "Ruby Keeler" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "Forgotten", + "year": 1933, + "cast": [ + "Lee Kohlmar", + "June Clyde" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "From Headquarters", + "year": 1933, + "cast": [ + "George Brent", + "Margaret Lindsay" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "From Hell to Heaven", + "year": 1933, + "cast": [ + "Carole Lombard", + "Jack Oakie", + "Adrienne Ames" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Fury of the Jungle", + "year": 1933, + "cast": [ + "Donald Cook", + "Peggy Shannon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Gabriel Over the White House", + "year": 1933, + "cast": [ + "Walter Huston", + "Franchot Tone", + "Karen Morley" + ], + "genres": [ + "Comedy", + "Fantasy" + ] + }, + { + "title": "Galloping Romeo", + "year": 1933, + "cast": [ + "Bob Steele", + "Doris Hill" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Gambling Ship", + "year": 1933, + "cast": [ + "Cary Grant", + "Jack La Rue", + "Benita Hume" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Girl in 419", + "year": 1933, + "cast": [ + "Gloria Stuart", + "David Manners" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Girl Missing", + "year": 1933, + "cast": [ + "Glenda Farrell", + "Mary Brian", + "Ben Lyon" + ], + "genres": [ + "Drama", + "Mystery" + ] + }, + { + "title": "Girl Without a Room", + "year": 1933, + "cast": [ + "Charles Ruggles", + "Marguerite Churchill" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Going Hollywood", + "year": 1933, + "cast": [ + "Bing Crosby", + "Marion Davies", + "Ned Sparks" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "Gold Diggers of 1933", + "year": 1933, + "cast": [ + "Warren Williams", + "Ginger Rogers", + "Aline MacMahon" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Golden Harvest", + "year": 1933, + "cast": [ + "Richard Arlen", + "Genevieve Tobin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Goldie Gets Along", + "year": 1933, + "cast": [ + "Lili Damita", + "Charles Morton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Goodbye Again", + "year": 1933, + "cast": [ + "Warren William", + "Joan Blondell", + "Genevieve Tobin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Goodbye Love", + "year": 1933, + "cast": [ + "Charles Ruggles", + "Verree Teasdale" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Grand Slam", + "year": 1933, + "cast": [ + "Loretta Young", + "Paul Lukas", + "Frank McHugh" + ], + "genres": [ + "Comedy", + "Romance" + ] + }, + { + "title": "The Great Jasper", + "year": 1933, + "cast": [ + "Richard Dix", + "Edna May Oliver" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Gun Justice", + "year": 1933, + "cast": [ + "Ken Maynard", + "Cecilia Parker" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Hallelujah, I'm a Bum", + "year": 1933, + "cast": [ + "Al Jolson", + "Madge Evans", + "Frank Morgan" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Hard to Handle", + "year": 1933, + "cast": [ + "James Cagney", + "Mary Brian", + "Allen Jenkins" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Havana Widows", + "year": 1933, + "cast": [ + "Joan Blondell", + "Glenda Farrell", + "Guy Kibbee" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Headline Shooter", + "year": 1933, + "cast": [ + "William Gargan", + "Frances Dee", + "Ralph Bellamy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hell and High Water", + "year": 1933, + "cast": [ + "Richard Arlen", + "Guy Standing" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hell Below", + "year": 1933, + "cast": [ + "Robert Montgomery", + "Walter Huston", + "Jimmy Durante" + ], + "genres": [ + "Drama", + "War" + ] + }, + { + "title": "Hello, Everybody!", + "year": 1933, + "cast": [ + "Kate Smith", + "Randolph Scott" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Hello, Sister!", + "year": 1933, + "cast": [ + "James Dunn", + "ZaSu Pitts" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Her Bodyguard", + "year": 1933, + "cast": [ + "Edmund Lowe", + "Wynne Gibson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Her First Mate", + "year": 1933, + "cast": [ + "Slim Summerville", + "ZaSu Pitts", + "Una Merkel" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Heroes for Sale", + "year": 1933, + "cast": [ + "Richard Barthelmess", + "Aline MacMahon", + "Loretta Young" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "High Gear", + "year": 1933, + "cast": [ + "James Murray", + "Joan Marsh", + "Theodore von Eltz" + ], + "genres": [ + "Adventure", + "Drama" + ] + }, + { + "title": "His Double Life", + "year": 1933, + "cast": [ + "Roland Young", + "Lillian Gish", + "Montagu Love" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "His Private Secretary", + "year": 1933, + "cast": [ + "John Wayne", + "Evalyn Knapp", + "Reginald Barlow" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hold Me Tight", + "year": 1933, + "cast": [ + "James Dunn", + "Sally Eilers", + "June Clyde" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hold the Press", + "year": 1933, + "cast": [ + "Tim McCoy", + "Shirley Grey" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Hold Your Man", + "year": 1933, + "cast": [ + "Clark Gable", + "Jean Harlow", + "Stuart Erwin" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Hoop-La", + "year": 1933, + "cast": [ + "Clara Bow", + "Preston Foster" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Horse Play", + "year": 1933, + "cast": [ + "Slim Summerville", + "Andy Devine", + "Leila Hyams" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hot Pepper", + "year": 1933, + "cast": [ + "Lupe Vélez", + "Edmund Lowe", + "Victor McLaglen" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The House on 56th Street", + "year": 1933, + "cast": [ + "Kay Francis", + "Ricardo Cortez", + "Margaret Lindsay" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Humanity", + "year": 1933, + "cast": [ + "Ralph Morgan", + "Irene Ware" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "I Am Suzanne", + "year": 1933, + "cast": [ + "Lilian Harvey", + "Gene Raymond", + "Leslie Banks" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "I Cover the Waterfront", + "year": 1933, + "cast": [ + "Claudette Colbert", + "Ben Lyon", + "Ernest Torrence" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "I Have Lived", + "year": 1933, + "cast": [ + "Alan Dinehart", + "Anita Page" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "I Love That Man", + "year": 1933, + "cast": [ + "Edmund Lowe", + "Nancy Carroll" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "I Loved a Woman", + "year": 1933, + "cast": [ + "Edward G. Robinson", + "Kay Francis", + "Genevieve Tobin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "I Loved You Wednesday", + "year": 1933, + "cast": [ + "Warner Baxter", + "Elissa Landi" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "I'm No Angel", + "year": 1933, + "cast": [ + "Mae West", + "Cary Grant", + "Edward Arnold" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "If I Were Free", + "year": 1933, + "cast": [ + "Irene Dunne", + "Clive Brook", + "Nils Asther" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "In the Money", + "year": 1933, + "cast": [ + "Richard \"Skeets\" Gallagher", + "Lois Wilson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "India Speaks", + "year": 1933, + "cast": [ + "Narrated by", + "Richard Halliburton" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Infernal Machine", + "year": 1933, + "cast": [ + "Chester Morris", + "Genevieve Tobin" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "International House", + "year": 1933, + "cast": [ + "W. C. Fields", + "Stuart Erwin", + "George Burns" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Intruder", + "year": 1933, + "cast": [ + "Lila Lee", + "Monte Blue", + "William B. Davidson" + ], + "genres": [ + "Mystery", + "Drama" + ] + }, + { + "title": "The Invisible Man", + "year": 1933, + "cast": [ + "Claude Rains", + "Gloria Stuart", + "Henry Travers" + ], + "genres": [ + "Science Fiction", + "Horror" + ] + }, + { + "title": "It's Great to Be Alive", + "year": 1933, + "cast": [ + "Edna May Oliver", + "Gloria Stuart", + "Raul Roulien" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Jennie Gerhardt", + "year": 1933, + "cast": [ + "Sylvia Sidney", + "Mary Astor", + "Edward Arnold" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Jimmy and Sally", + "year": 1933, + "cast": [ + "James Dunn", + "Claire Trevor" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Jungle Bride", + "year": 1933, + "cast": [ + "Anita Page", + "Charles Starrett", + "Kenneth Thomson" + ], + "genres": [ + "Drama", + "Adventure" + ] + }, + { + "title": "The Kennel Murder Case", + "year": 1933, + "cast": [ + "William Powell", + "Mary Astor", + "Eugene Pallette" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Keyhole", + "year": 1933, + "cast": [ + "Kay Francis", + "George Brent", + "Glenda Farrell" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "King for a Night", + "year": 1933, + "cast": [ + "Chester Morris", + "Helen Twelvetrees", + "Alice White" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "King Kong", + "year": 1933, + "cast": [ + "Fay Wray", + "Robert Armstrong", + "Bruce Cabot" + ], + "genres": [ + "Adventure", + "Horror" + ] + }, + { + "title": "King of the Arena", + "year": 1933, + "cast": [ + "Ken Maynard", + "Lucile Browne" + ], + "genres": [ + "Western" + ] + }, + { + "title": "King of the Jungle", + "year": 1933, + "cast": [ + "Buster Crabbe", + "Frances Dee", + "Irving Pichel" + ], + "genres": [ + "Adventure", + "Drama" + ] + }, + { + "title": "King of the Wild Horses", + "year": 1933, + "cast": [ + "William Janney", + "Dorothy Appleby" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The King's Vacation", + "year": 1933, + "cast": [ + "George Arliss", + "Patricia Ellis" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Kiss Before the Mirror", + "year": 1933, + "cast": [ + "Nancy Carroll", + "Frank Morgan", + "Paul Lukas" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Kiss of Araby", + "year": 1933, + "cast": [ + "Maria Alba", + "Walter Byron" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Ladies Must Love", + "year": 1933, + "cast": [ + "June Knight", + "Neil Hamilton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Ladies They Talk About", + "year": 1933, + "cast": [ + "Barbara Stanwyck", + "Preston Foster" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Lady for a Day", + "year": 1933, + "cast": [ + "Warren William", + "May Robson", + "Guy Kibbee" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Lady Killer", + "year": 1933, + "cast": [ + "James Cagney", + "Margaret Lindsay", + "Mae Clarke" + ], + "genres": [ + "Comedy", + "Crime" + ] + }, + { + "title": "A Lady's Profession", + "year": 1933, + "cast": [ + "Alison Skipworth", + "Roland Young", + "Sari Maritza" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Last Trail", + "year": 1933, + "cast": [ + "George O'Brien", + "Claire Trevor" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Laughing at Life", + "year": 1933, + "cast": [ + "Victor McLaglen", + "Conchita Montenegro" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Laughter in Hell", + "year": 1933, + "cast": [ + "Pat O'Brien", + "Gloria Stuart" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Let's Fall in Love", + "year": 1933, + "cast": [ + "Edmund Lowe", + "Ann Sothern" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Life in the Raw", + "year": 1933, + "cast": [ + "George O'Brien", + "Claire Trevor", + "Greta Nissen" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Life of Jimmy Dolan", + "year": 1933, + "cast": [ + "Douglas Fairbanks Jr.", + "Loretta Young" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Lilly Turner", + "year": 1933, + "cast": [ + "Ruth Chatterton", + "Frank McHugh", + "Robert Barrat" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Little Giant", + "year": 1933, + "cast": [ + "Edward G. Robinson", + "Mary Astor", + "Russell Hopton" + ], + "genres": [ + "Comedy", + "Crime" + ] + }, + { + "title": "Little Women", + "year": 1933, + "cast": [ + "Katharine Hepburn", + "Joan Bennett", + "Paul Lukas" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Lone Cowboy", + "year": 1933, + "cast": [ + "Jackie Cooper", + "Lila Lee" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Looking Forward", + "year": 1933, + "cast": [ + "Lionel Barrymore", + "Lewis Stone", + "Benita Hume" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Lot in Sodom", + "year": 1933, + "cast": [ + "Friedrich Haak" + ], + "genres": [] + }, + { + "title": "Love, Honor, and Oh Baby!", + "year": 1933, + "cast": [ + "Slim Summerville", + "ZaSu Pitts" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Love Is Dangerous", + "year": 1933, + "cast": [ + "John Warburton", + "Rochelle Hudson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Lucky Devils", + "year": 1933, + "cast": [ + "William Boyd", + "Bruce Cabot" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Lucky Dog", + "year": 1933, + "cast": [ + "Tom O'Brien", + "Harry Holman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Luxury Liner", + "year": 1933, + "cast": [ + "George Brent", + "Zita Johann" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Mad Game", + "year": 1933, + "cast": [ + "Spencer Tracy", + "Claire Trevor", + "J. Carrol Naish" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Made on Broadway", + "year": 1933, + "cast": [ + "Robert Montgomery", + "Madge Evans", + "Sally Eilers" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Mama Loves Papa", + "year": 1933, + "cast": [ + "Charlie Ruggles", + "Mary Boland" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Man from Monterey", + "year": 1933, + "cast": [ + "John Wayne", + "Ruth Hall", + "Lafe McKee" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Man Hunt", + "year": 1933, + "cast": [ + "Junior Durkin", + "Charlotte Henry" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Man of Action", + "year": 1933, + "cast": [ + "Tim McCoy", + "Caryl Lincoln" + ], + "genres": [ + "Western" + ] + }, + { + "title": "A Man of Sentiment", + "year": 1933, + "cast": [ + "Marian Marsh", + "Owen Moore" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Man of the Forest", + "year": 1933, + "cast": [ + "Randolph Scott", + "Verna Hillie", + "Noah Beery" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Man Who Dared", + "year": 1933, + "cast": [ + "Preston Foster", + "Zita Johann" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Man's Castle", + "year": 1933, + "cast": [ + "Spencer Tracy", + "Loretta Young" + ], + "genres": [ + "Drama", + "Romance" + ] + }, + { + "title": "Mary Stevens, M.D.", + "year": 1933, + "cast": [ + "Kay Francis", + "Lyle Talbot", + "Glenda Farrell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Masquerader", + "year": 1933, + "cast": [ + "Ronald Colman", + "Elissa Landi" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Master of Men", + "year": 1933, + "cast": [ + "Jack Holt", + "Fay Wray", + "Walter Connolly" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Mayor of Hell", + "year": 1933, + "cast": [ + "James Cagney", + "Allen Jenkins", + "Dudley Digges" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "Meet the Baron", + "year": 1933, + "cast": [ + "Jack Pearl", + "Jimmy Durante", + "Edna May Oliver" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Melody Cruise", + "year": 1933, + "cast": [ + "June Brewster", + "Shirley Chambers" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Men Must Fight", + "year": 1933, + "cast": [ + "Diana Wynyard", + "Lewis Stone", + "Phillips Holmes" + ], + "genres": [ + "Drama", + "War" + ] + }, + { + "title": "Midnight Club", + "year": 1933, + "cast": [ + "George Raft", + "Clive Brook", + "Alison Skipworth" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "Midnight Mary", + "year": 1933, + "cast": [ + "Loretta Young", + "Franchot Tone" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Midnight Patrol", + "year": 1933, + "cast": [ + "Stan Laurel", + "Oliver Hardy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Midshipman Jack", + "year": 1933, + "cast": [ + "Bruce Cabot", + "Betty Furness" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Mind Reader", + "year": 1933, + "cast": [ + "Warren William", + "Constance Cummings" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Monkey's Paw", + "year": 1933, + "cast": [ + "Ivan F. Simpson", + "C. Aubrey Smith" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Moonlight and Pretzels", + "year": 1933, + "cast": [ + "William Frawley", + "Mary Brian" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Morning Glory", + "year": 1933, + "cast": [ + "Katharine Hepburn", + "Douglas Fairbanks Jr." + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Mr. Broadway", + "year": 1933, + "cast": [ + "Ed Sullivan", + "Jack Benny", + "Ruth Etting" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mr. Skitch", + "year": 1933, + "cast": [ + "Will Rogers", + "Rochelle Hudson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Murder on the Campus", + "year": 1933, + "cast": [ + "Charles Starrett" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Murders in the Zoo", + "year": 1933, + "cast": [ + "Charlie Ruggles", + "Lionel Atwill", + "Kathleen Burke" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "My Lips Betray", + "year": 1933, + "cast": [ + "Lilian Harvey", + "John Boles" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "My Weakness", + "year": 1933, + "cast": [ + "Lilian Harvey", + "Lew Ayres" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "My Woman", + "year": 1933, + "cast": [ + "Helen Twelvetrees", + "Victor Jory" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Mysterious Rider", + "year": 1933, + "cast": [ + "Kent Taylor", + "Lona Andre" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Mystic Hour", + "year": 1933, + "cast": [ + "Charles Hutchison", + "Lucille Powers", + "Montagu Love" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Mystery of the Wax Museum", + "year": 1933, + "cast": [ + "Lionel Atwill", + "Fay Wray", + "Glenda Farrell" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Nagana", + "year": 1933, + "cast": [ + "Tala Birell", + "Melvyn Douglas" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Narcotic", + "year": 1933, + "cast": [ + "Harry Cording", + "Joan Dix" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Narrow Corner", + "year": 1933, + "cast": [ + "Douglas Fairbanks", + "Patricia Ellis", + "Ralph Bellamy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Night Flight", + "year": 1933, + "cast": [ + "Lionel Barrymore", + "John Barrymore", + "Clark Gable" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Night of Terror", + "year": 1933, + "cast": [ + "Bela Lugosi", + "Sally Blane" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "No Marriage Ties", + "year": 1933, + "cast": [ + "Richard Dix", + "Elizabeth Allan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "No Other Woman", + "year": 1933, + "cast": [ + "Irene Dunne", + "Charles Bickford" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Notorious But Nice", + "year": 1933, + "cast": [ + "Marian Marsh", + "Betty Compson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Nuisance", + "year": 1933, + "cast": [ + "Lee Tracy", + "Madge Evans" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Obey the Law", + "year": 1933, + "cast": [ + "Leo Carrillo", + "Lois Wilson" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Oliver Twist", + "year": 1933, + "cast": [ + "Irving Pichel", + "Dickie Moore" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Olsen's Big Moment", + "year": 1933, + "cast": [ + "El Brendel", + "Barbara Weeks" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "One Man's Journey", + "year": 1933, + "cast": [ + "Lionel Barrymore", + "May Robson", + "Joel McCrea" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "One Sunday Afternoon", + "year": 1933, + "cast": [ + "Gary Cooper", + "Fay Wray" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Only Yesterday", + "year": 1933, + "cast": [ + "Margaret Sullavan", + "John Boles" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Our Betters", + "year": 1933, + "cast": [ + "Constance Bennett", + "Anita Louise" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Out All Night", + "year": 1933, + "cast": [ + "Slim Summerville", + "ZaSu Pitts" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Paddy the Next Best Thing", + "year": 1933, + "cast": [ + "Janet Gaynor", + "Warner Baxter" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Parachute Jumper", + "year": 1933, + "cast": [ + "Bette Davis", + "Douglas Fairbanks Jr." + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Parole Girl", + "year": 1933, + "cast": [ + "Mae Clarke", + "Ralph Bellamy" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Past of Mary Holmes", + "year": 1933, + "cast": [ + "Eric Linden", + "Jean Arthur" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Peg o' My Heart", + "year": 1933, + "cast": [ + "Marion Davies", + "Onslow Stevens" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Penthouse", + "year": 1933, + "cast": [ + "Warner Baxter", + "Myrna Loy" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Phantom Broadcast", + "year": 1933, + "cast": [ + "Ralph Forbes", + "Vivienne Osborne" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Pick-Up", + "year": 1933, + "cast": [ + "Sylvia Sidney", + "George Raft" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Picture Brides", + "year": 1933, + "cast": [ + "Dorothy Mackaill", + "Regis Toomey" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Picture Snatcher", + "year": 1933, + "cast": [ + "James Cagney", + "Ralph Bellamy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Pilgrimage", + "year": 1933, + "cast": [ + "Henrietta Crosman", + "Norman Foster" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Pleasure Cruise", + "year": 1933, + "cast": [ + "Genevieve Tobin", + "Roland Young", + "Ralph Forbes" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Police Car 17", + "year": 1933, + "cast": [ + "Tim McCoy", + "Evalyn Knapp" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Power and the Glory", + "year": 1933, + "cast": [ + "Spencer Tracy", + "Colleen Moore" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Primavera en otoño", + "year": 1933, + "cast": [ + "Catalina Bárcena" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Private Detective 62", + "year": 1933, + "cast": [ + "William Powell", + "Margaret Lindsay" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Private Jones", + "year": 1933, + "cast": [ + "Lee Tracy", + "Gloria Stuart" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Prizefighter and the Lady", + "year": 1933, + "cast": [ + "Myrna Loy", + "Walter Huston", + "Max Baer" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Professional Sweetheart", + "year": 1933, + "cast": [ + "Ginger Rogers", + "Norman Foster", + "ZaSu Pitts" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Queen Christina", + "year": 1933, + "cast": [ + "Greta Garbo", + "John Gilbert" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Rafter Romance", + "year": 1933, + "cast": [ + "Ginger Rogers", + "Norman Foster", + "George Sidney" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Rainbow Over Broadway", + "year": 1933, + "cast": [ + "Joan Marsh", + "Frank Albertson" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Reform Girl", + "year": 1933, + "cast": [ + "Noel Francis", + "Richard Gallagher" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Reunion in Vienna", + "year": 1933, + "cast": [ + "John Barrymore", + "Diana Wynyard" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Riders of Destiny", + "year": 1933, + "cast": [ + "John Wayne", + "Cecilia Parker" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Right to Romance", + "year": 1933, + "cast": [ + "Ann Harding", + "Robert Young", + "Nils Asther" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Robbers' Roost", + "year": 1933, + "cast": [ + "George O'Brien", + "Maureen O'Sullivan" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Roman Scandals", + "year": 1933, + "cast": [ + "Eddie Cantor", + "Ruth Etting", + "Gloria Stuart" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Rustlers' Roundup", + "year": 1933, + "cast": [ + "Tom Mix", + "Diane Sinclair" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Rusty Rides Alone", + "year": 1933, + "cast": [ + "Tim McCoy", + "Barbara Weeks" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Sagebrush Trail", + "year": 1933, + "cast": [ + "John Wayne", + "Lane Chandler" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Sailor Be Good", + "year": 1933, + "cast": [ + "Jack Oakie", + "Vivienne Osborne" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Sailor's Luck", + "year": 1933, + "cast": [ + "James Dunn", + "Sally Eilers" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Saturday's Millions", + "year": 1933, + "cast": [ + "Robert Young", + "Andy Devine", + "Leila Hyams" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Scarlet River", + "year": 1933, + "cast": [ + "Tom Keene", + "Dorothy Wilson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Second Hand Wife", + "year": 1933, + "cast": [ + "Sally Eilers", + "Helen Vinson", + "Ralph Bellamy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Secret of Madame Blanche", + "year": 1933, + "cast": [ + "Irene Dunne", + "Lionel Atwill" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Secret of the Blue Room", + "year": 1933, + "cast": [ + "Lionel Atwill", + "Gloria Stuart" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Secrets", + "year": 1933, + "cast": [ + "Mary Pickford", + "Leslie Howard" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Sensation Hunters", + "year": 1933, + "cast": [ + "Arline Judge", + "Preston Foster" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Shadows of Sing Sing", + "year": 1933, + "cast": [ + "Mary Brian", + "Bruce Cabot" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Shanghai Madness", + "year": 1933, + "cast": [ + "Spencer Tracy", + "Fay Wray" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "She Done Him Wrong", + "year": 1933, + "cast": [ + "Mae West", + "Cary Grant", + "Gilbert Roland" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "She Had to Say Yes", + "year": 1933, + "cast": [ + "Loretta Young", + "Lyle Talbot" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Should Ladies Behave", + "year": 1933, + "cast": [ + "Lionel Barrymore", + "Alice Brady" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Shriek in the Night", + "year": 1933, + "cast": [ + "Ginger Rogers", + "Lyle Talbot" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Silent Men", + "year": 1933, + "cast": [ + "Tim McCoy", + "J. Carrol Naish" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Silk Express", + "year": 1933, + "cast": [ + "Neil Hamilton", + "Sheila Terry" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Silver Cord", + "year": 1933, + "cast": [ + "Irene Dunne", + "Joel McCrea" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Sin of Nora Moran", + "year": 1933, + "cast": [ + "Zita Johann", + "John Miljan" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Sitting Pretty", + "year": 1933, + "cast": [ + "Jack Oakie", + "Ginger Rogers", + "Thelma Todd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Skyway", + "year": 1933, + "cast": [ + "Ray Walker", + "Kathryn Crawford" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Smoke Lightning", + "year": 1933, + "cast": [ + "George O'Brien", + "Nell O'Day" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Smoky", + "year": 1933, + "cast": [ + "Victor Jory", + "Irene Bentley" + ], + "genres": [ + "Western" + ] + }, + { + "title": "So This Is Africa", + "year": 1933, + "cast": [ + "Bert Wheeler", + "Robert Woolsey", + "Raquel Torres" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Soldiers of the Storm", + "year": 1933, + "cast": [ + "Regis Toomey", + "Anita Page" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Solitaire Man", + "year": 1933, + "cast": [ + "Herbert Marshall", + "Mary Boland" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Son of a Sailor", + "year": 1933, + "cast": [ + "Joe E. Brown", + "Jean Muir", + "Frank McHugh" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Son of the Border", + "year": 1933, + "cast": [ + "Tom Keene", + "Julie Haydon" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Son of Kong", + "year": 1933, + "cast": [ + "Robert Armstrong", + "Helen Mack" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Song of Songs", + "year": 1933, + "cast": [ + "Marlene Dietrich", + "Brian Aherne" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Sons of the Desert", + "year": 1933, + "cast": [ + "Stan Laurel", + "Oliver Hardy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Song of the Eagle", + "year": 1933, + "cast": [ + "Charles Bickford", + "Richard Arlen", + "Mary Brian" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Sphinx", + "year": 1933, + "cast": [ + "Lionel Atwill", + "Sheila Terry" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Stage Mother", + "year": 1933, + "cast": [ + "Alice Brady", + "Maureen O'Sullivan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "State Fair", + "year": 1933, + "cast": [ + "Janet Gaynor", + "Will Rogers" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "State Trooper", + "year": 1933, + "cast": [ + "Regis Toomey", + "Evalyn Knapp" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Storm at Daybreak", + "year": 1933, + "cast": [ + "Kay Francis", + "Nils Asther" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Story of Temple Drake", + "year": 1933, + "cast": [ + "Miriam Hopkins", + "Jack La Rue" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Straightaway", + "year": 1933, + "cast": [ + "Tim McCoy", + "Sue Carol" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Strange People", + "year": 1933, + "cast": [ + "John Darrow", + "Gloria Shea" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Stranger's Return", + "year": 1933, + "cast": [ + "Miriam Hopkins", + "Franchot Tone" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Strictly Personal", + "year": 1933, + "cast": [ + "Marjorie Rambeau", + "Dorothy Jordan", + "Louis Calhern" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Study in Scarlet", + "year": 1933, + "cast": [ + "Reginald Owen", + "Anna May Wong" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sunset Pass", + "year": 1933, + "cast": [ + "Randolph Scott", + "Tom Keene" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Supernatural", + "year": 1933, + "cast": [ + "Carole Lombard", + "Alan Dinehart" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Sweepings", + "year": 1933, + "cast": [ + "Lionel Barrymore", + "Gloria Stuart" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Sweetheart of Sigma Chi", + "year": 1933, + "cast": [ + "Mary Carlisle", + "Buster Crabbe" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Take a Chance", + "year": 1933, + "cast": [ + "James Dunn", + "June Knight" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Terror Aboard", + "year": 1933, + "cast": [ + "John Halliday", + "Shirley Grey" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Terror Trail", + "year": 1933, + "cast": [ + "Tom Mix", + "Raymond Hatton" + ], + "genres": [ + "Western" + ] + }, + { + "title": "This Day and Age", + "year": 1933, + "cast": [ + "Charles Bickford", + "Richard Cromwell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "This Is America", + "year": 1933, + "cast": [ + "Alois Havrilla (narrator)" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Three-Cornered Moon", + "year": 1933, + "cast": [ + "Claudette Colbert", + "Richard Arlen" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Three Little Pigs", + "year": 1933, + "cast": [ + "Pinto Colvig", + "Billy Bletcher" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "The Thrill Hunter", + "year": 1933, + "cast": [ + "Buck Jones", + "Dorothy Revier" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Thundering Herd", + "year": 1933, + "cast": [ + "Randolph Scott", + "Judith Allen", + "Buster Crabbe" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Tillie and Gus", + "year": 1933, + "cast": [ + "W. C. Fields", + "Alison Skipworth" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "To the Last Man", + "year": 1933, + "cast": [ + "Randolph Scott", + "Esther Ralston" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Today We Live", + "year": 1933, + "cast": [ + "Joan Crawford", + "Gary Cooper", + "Roland Young" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "Tomorrow at Seven", + "year": 1933, + "cast": [ + "Chester Morris", + "Vivienne Osborne", + "Frank McHugh" + ], + "genres": [ + "Crime", + "Comedy" + ] + }, + { + "title": "Tonight Is Ours", + "year": 1933, + "cast": [ + "Claudette Colbert", + "Fredric March" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Too Much Harmony", + "year": 1933, + "cast": [ + "Bing Crosby", + "Jack Oakie" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Topaze", + "year": 1933, + "cast": [ + "John Barrymore", + "Myrna Loy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Torch Singer", + "year": 1933, + "cast": [ + "Claudette Colbert", + "Ricardo Cortez" + ], + "genres": [ + "Musical", + "Romance" + ] + }, + { + "title": "Treason", + "year": 1933, + "cast": [ + "Buck Jones", + "Shirley Grey" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Trick for Trick", + "year": 1933, + "cast": [ + "Ralph Morgan", + "Sally Blane" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Tugboat Annie", + "year": 1933, + "cast": [ + "Marie Dressler", + "Wallace Beery", + "Maureen O'Sullivan" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Turn Back the Clock", + "year": 1933, + "cast": [ + "Lee Tracy", + "Mae Clarke" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Under the Tonto Rim", + "year": 1933, + "cast": [ + "Stuart Erwin", + "Fred Kohler" + ], + "genres": [ + "Comedy", + "Western" + ] + }, + { + "title": "Unknown Valley", + "year": 1933, + "cast": [ + "Buck Jones", + "Cecilia Parker" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Vampire Bat", + "year": 1933, + "cast": [ + "Fay Wray", + "Lionel Atwill", + "Melvyn Douglas" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Voltaire", + "year": 1933, + "cast": [ + "George Arliss", + "Doris Kenyon" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Walls of Gold", + "year": 1933, + "cast": [ + "Sally Eilers", + "Norman Foster" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Warrior's Husband", + "year": 1933, + "cast": [ + "Elissa Landi", + "David Manners" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Way to Love", + "year": 1933, + "cast": [ + "Maurice Chevalier", + "Ann Dvorak" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "West of Singapore", + "year": 1933, + "cast": [ + "Betty Compson", + "Weldon Heyburn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "What! No Beer?", + "year": 1933, + "cast": [ + "Buster Keaton", + "Jimmy Durante" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "What Price Decency", + "year": 1933, + "cast": [ + "Dorothy Burgess", + "Alan Hale" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "What Price Innocence?", + "year": 1933, + "cast": [ + "Jean Parker", + "Minna Gombell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "When Ladies Meet", + "year": 1933, + "cast": [ + "Ann Harding", + "Myrna Loy", + "Robert Montgomery" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "When Strangers Marry", + "year": 1933, + "cast": [ + "Jack Holt", + "Lilian Bond" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Whirlwind", + "year": 1933, + "cast": [ + "Tim McCoy", + "Pat O'Malley" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Whistling in the Dark", + "year": 1933, + "cast": [ + "Una Merkel", + "Edward Arnold" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The White Sister", + "year": 1933, + "cast": [ + "Helen Hayes", + "Clark Gable" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "White Woman", + "year": 1933, + "cast": [ + "Carole Lombard", + "Charles Laughton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Wild Boys of the Road", + "year": 1933, + "cast": [ + "Frankie Darro", + "Dorothy Coonan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Wine, Women and Song", + "year": 1933, + "cast": [ + "Lilyan Tashman", + "Lew Cody" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Woman Accused", + "year": 1933, + "cast": [ + "Cary Grant", + "Nancy Carroll" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Woman I Stole", + "year": 1933, + "cast": [ + "Jack Holt", + "Fay Wray" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Women in His Life", + "year": 1933, + "cast": [ + "Otto Kruger", + "Una Merkel" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Working Man", + "year": 1933, + "cast": [ + "George Arliss", + "Bette Davis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The World Changes", + "year": 1933, + "cast": [ + "Paul Muni", + "Aline MacMahon", + "Mary Astor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Worst Woman in Paris?", + "year": 1933, + "cast": [ + "Benita Hume", + "Adolphe Menjou" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Wrecker", + "year": 1933, + "cast": [ + "Jack Holt", + "Genevieve Tobin" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Zoo in Budapest", + "year": 1933, + "cast": [ + "Loretta Young", + "Gene Raymond" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "365 Nights in Hollywood", + "year": 1934, + "cast": [ + "Alice Faye", + "Grant Mitchell", + "James Dunn" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "6 Day Bike Rider", + "year": 1934, + "cast": [ + "Joe E. Brown", + "Maxine Doyle", + "Frank McHugh" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Affairs of Cellini", + "year": 1934, + "cast": [ + "Constance Bennett", + "Fredric March", + "Fay Wray" + ], + "genres": [ + "Historical", + "Comedy" + ] + }, + { + "title": "Affairs of a Gentleman", + "year": 1934, + "cast": [ + "Paul Lukas", + "Leila Hyams", + "Patricia Ellis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Against the Law", + "year": 1934, + "cast": [ + "Johnny Mack Brown", + "Sally Blane" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Age of Innocence", + "year": 1934, + "cast": [ + "Irene Dunne", + "John Boles", + "Helen Westley" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "All Men Are Enemies", + "year": 1934, + "cast": [ + "Helen Twelvetrees", + "Mona Barrie", + "Hugh Williams" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "All of Me", + "year": 1934, + "cast": [ + "Fredric March", + "George Raft", + "Miriam Hopkins" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Among the Missing", + "year": 1934, + "cast": [ + "Richard Cromwell", + "Billie Seward" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Anne of Green Gables", + "year": 1934, + "cast": [ + "Anne Shirley", + "Helen Westley", + "O. P. Heggie" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Are We Civilized?", + "year": 1934, + "cast": [ + "Frank McGlynn", + "William Farnum", + "Anita Louise" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "As Husbands Go", + "year": 1934, + "cast": [ + "Warner Baxter", + "Helen Vinson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "As the Earth Turns", + "year": 1934, + "cast": [ + "Donald Woods", + "Jean Muir", + "Dorothy Peterson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Babbitt", + "year": 1934, + "cast": [ + "Aline MacMahon", + "Guy Kibbee" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Babes in Toyland", + "year": 1934, + "cast": [ + "Stan Laurel", + "Oliver Hardy", + "Charlotte Henry" + ], + "genres": [ + "Comedy", + "Fantasy" + ] + }, + { + "title": "Baby Take a Bow", + "year": 1934, + "cast": [ + "Shirley Temple", + "Claire Trevor", + "James Dunn" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Bachelor Bait", + "year": 1934, + "cast": [ + "Stuart Erwin", + "Rochelle Hudson", + "Grady Sutton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Bachelor of Arts", + "year": 1934, + "cast": [ + "Anita Louise", + "Mae Marsh" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Band Plays On", + "year": 1934, + "cast": [ + "Robert Young", + "Stuart Erwin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Barrets of Wimpole Street", + "year": 1934, + "cast": [ + "Norma Shearer", + "Fredric March", + "Charles Laughton" + ], + "genres": [ + "Historical" + ] + }, + { + "title": "The Beast of Borneo", + "year": 1934, + "cast": [ + "Eugene Sigaloff", + "Mae Stuart" + ], + "genres": [ + "Drama", + "Horror" + ] + }, + { + "title": "Bedside", + "year": 1934, + "cast": [ + "Warren William", + "Jean Muir", + "Allen Jenkins" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Beggars in Ermine", + "year": 1934, + "cast": [ + "Lionel Atwill", + "Jameson Thomas", + "Betty Furness" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Behold My Wife!", + "year": 1934, + "cast": [ + "Sylvia Sidney", + "Ann Sheridan", + "H. B. Warner" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Belle of the Nineties", + "year": 1934, + "cast": [ + "Mae West", + "Johnny Mack Brown", + "Katherine DeMille" + ], + "genres": [ + "Comedy", + "Western" + ] + }, + { + "title": "Beloved", + "year": 1934, + "cast": [ + "John Boles", + "Gloria Stuart", + "Morgan Farley" + ], + "genres": [ + "Drama", + "Musical" + ] + }, + { + "title": "Beyond the Law", + "year": 1934, + "cast": [ + "Tim McCoy", + "Shirley Grey" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Big Shakedown", + "year": 1934, + "cast": [ + "Bette Davis", + "Ricardo Cortez", + "Allen Jenkins" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "The Black Cat", + "year": 1934, + "cast": [ + "Boris Karloff", + "Bela Lugosi", + "David Manners" + ], + "genres": [ + "Crime", + "Horror" + ] + }, + { + "title": "Black Moon", + "year": 1934, + "cast": [ + "Fay Wray", + "Dorothy Burgess", + "Jack Holt" + ], + "genres": [ + "Drama", + "Horror" + ] + }, + { + "title": "Blind Date", + "year": 1934, + "cast": [ + "Ann Sothern", + "Neil Hamilton", + "Paul Kelly" + ], + "genres": [ + "Comedy", + "Romance" + ] + }, + { + "title": "Blue Steel", + "year": 1934, + "cast": [ + "John Wayne", + "Eleanor Hunt" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Bolero", + "year": 1934, + "cast": [ + "George Raft", + "Carole Lombard", + "Sally Rand" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Bombay Mail", + "year": 1934, + "cast": [ + "Edmund Lowe", + "Ralph Forbes", + "Shirley Grey" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Born to be Bad", + "year": 1934, + "cast": [ + "Loretta Young", + "Cary Grant", + "Marion Burns" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Bottoms Up", + "year": 1934, + "cast": [ + "Spencer Tracy", + "John Boles", + "Pat Paterson" + ], + "genres": [ + "Drama", + "Musical" + ] + }, + { + "title": "Bright Eyes", + "year": 1934, + "cast": [ + "Shirley Temple", + "James Dunn", + "Lois Wilson" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "British Agent", + "year": 1934, + "cast": [ + "Leslie Howard", + "Kay Francis", + "Cesar Romero" + ], + "genres": [ + "Spy", + "Drama" + ] + }, + { + "title": "Broadway Bill", + "year": 1934, + "cast": [ + "Myrna Loy", + "Warner Baxter", + "Walter Connolly" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Bulldog Drummond Strikes Back", + "year": 1934, + "cast": [ + "Ronald Colman", + "Loretta Young", + "Charles Butterworth" + ], + "genres": [ + "Comedy", + "Mystery" + ] + }, + { + "title": "By Your Leave", + "year": 1934, + "cast": [ + "Frank Morgan", + "Genevieve Tobin", + "Neil Hamilton" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Call It Luck", + "year": 1934, + "cast": [ + "Pat Paterson", + "Herbert Mundin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Captain Hates the Sea", + "year": 1934, + "cast": [ + "Victor McLaglen", + "Alison Skipworth", + "John Gilbert" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Caravan", + "year": 1934, + "cast": [ + "Charles Boyer", + "Loretta Young", + "Jean Parker" + ], + "genres": [ + "Drama", + "Musical" + ] + }, + { + "title": "Carolina", + "year": 1934, + "cast": [ + "Janet Gaynor", + "Lionel Barrymore", + "Henrietta Crosman" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Case of the Howling Dog", + "year": 1934, + "cast": [ + "Warren William", + "Mary Astor" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Cat and the Fiddle", + "year": 1934, + "cast": [ + "Ramon Novarro", + "Jeanette MacDonald" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Cat's-Paw", + "year": 1934, + "cast": [ + "Harold Lloyd", + "Una Merkel" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Chained", + "year": 1934, + "cast": [ + "Joan Crawford", + "Clark Gable", + "Otto Kruger" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Change of Heart", + "year": 1934, + "cast": [ + "Janet Gaynor", + "James Dunn", + "Ginger Rogers" + ], + "genres": [ + "Drama", + "Romance" + ] + }, + { + "title": "Charlie Chan in London", + "year": 1934, + "cast": [ + "Warner Oland", + "Mona Barrie", + "Ray Milland" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Charlie Chan's Courage", + "year": 1934, + "cast": [ + "Warner Oland", + "Drue Leyton", + "Donald Woods" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Cheaters", + "year": 1934, + "cast": [ + "William Boyd", + "June Collyer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Cheating Cheaters", + "year": 1934, + "cast": [ + "Fay Wray", + "Cesar Romero" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Circus Clown", + "year": 1934, + "cast": [ + "Joe E. Brown", + "Patricia Ellis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "City Limits", + "year": 1934, + "cast": [ + "Frank Craven", + "Sally Blane", + "Claude Gillingwater" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "City Park", + "year": 1934, + "cast": [ + "Sally Blane", + "Matty Kemp" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Cleopatra", + "year": 1934, + "cast": [ + "Claudette Colbert", + "Warren William", + "Henry Wilcoxon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Cockeyed Cavaliers", + "year": 1934, + "cast": [ + "Bert Wheeler", + "Robert Woolsey", + "Thelma Todd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "College Rhythm", + "year": 1934, + "cast": [ + "Jack Oakie", + "Joe Penner" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Come On Marines!", + "year": 1934, + "cast": [ + "Richard Arlen", + "Ida Lupino" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Coming Out Party", + "year": 1934, + "cast": [ + "Frances Dee", + "Gene Raymond", + "Nigel Bruce" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Count of Monte Cristo", + "year": 1934, + "cast": [ + "Robert Donat", + "Elissa Landi", + "Louis Calhern" + ], + "genres": [ + "Drama", + "Adventure" + ] + }, + { + "title": "The Countess of Monte Cristo", + "year": 1934, + "cast": [ + "Fay Wray", + "Paul Lukas" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Crime Doctor", + "year": 1934, + "cast": [ + "Otto Kruger", + "Karen Morley" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Crime of Helen Stanley", + "year": 1934, + "cast": [ + "Ralph Bellamy", + "Shirley Grey", + "Gail Patrick" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Crime Without Passion", + "year": 1934, + "cast": [ + "Claude Rains", + "Margo" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Crimson Romance", + "year": 1934, + "cast": [ + "Ben Lyon", + "Sari Maritza", + "Erich von Stroheim" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Crosby Case", + "year": 1934, + "cast": [ + "Wynne Gibson", + "Onslow Stevens" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Cross Country Cruise", + "year": 1934, + "cast": [ + "Lew Ayres", + "June Knight", + "Alice White" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Cross Streets", + "year": 1934, + "cast": [ + "Claire Windsor", + "Johnny Mack Brown" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Curtain Falls", + "year": 1934, + "cast": [ + "Dorothy Lee", + "Holmes Herbert" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Dames", + "year": 1934, + "cast": [ + "Joan Blondell", + "Dick Powell", + "Ruby Keeler" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "Dangerous Corner", + "year": 1934, + "cast": [ + "Virginia Bruce", + "Conrad Nagel", + "Melvyn Douglas" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Dark Hazard", + "year": 1934, + "cast": [ + "Edward G. Robinson", + "Genevieve Tobin", + "Robert Barrat" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "David Harum", + "year": 1934, + "cast": [ + "Will Rogers", + "Louise Dresser" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Death on the Diamond", + "year": 1934, + "cast": [ + "Robert Young", + "Madge Evans" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Death Takes a Holiday", + "year": 1934, + "cast": [ + "Fredric March", + "Helen Westley", + "Kent Taylor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Defense Rests", + "year": 1934, + "cast": [ + "Jack Holt", + "Jean Arthur" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Devil Tiger", + "year": 1934, + "cast": [ + "Marion Burns", + "Kane Richmond" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Double Door", + "year": 1934, + "cast": [ + "Evelyn Venable", + "Anne Revere", + "Kent Taylor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Dover Road", + "year": 1934, + "cast": [ + "Diana Wynyard", + "Clive Brook" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Down to Their Last Yacht", + "year": 1934, + "cast": [ + "Mary Boland", + "Polly Moran", + "Ned Sparks" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "The Dragon Murder Case", + "year": 1934, + "cast": [ + "Warren William", + "Margaret Lindsay" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Dr. Monica", + "year": 1934, + "cast": [ + "Kay Francis", + "Warren William", + "Jean Muir" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Dude Ranger", + "year": 1934, + "cast": [ + "George O'Brien", + "Irene Hervey" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Easy to Love", + "year": 1934, + "cast": [ + "Genevieve Tobin", + "Adolphe Menjou", + "Mary Astor" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Eight Girls in a Boat", + "year": 1934, + "cast": [ + "Dorothy Wilson", + "Douglass Montgomery", + "Kay Johnson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Elinor Norton", + "year": 1934, + "cast": [ + "Claire Trevor", + "Gilbert Roland" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Elmer and Elsie", + "year": 1934, + "cast": [ + "George Bancroft", + "Frances Fuller" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Embarrassing Moments", + "year": 1934, + "cast": [ + "Chester Morris", + "Marian Nixon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Evelyn Prentice", + "year": 1934, + "cast": [ + "William Powell", + "Myrna Loy", + "Rosalind Russell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Ever Since Eve", + "year": 1934, + "cast": [ + "George O'Brien", + "Mary Brian", + "Herbert Mundin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Fashions of 1934", + "year": 1934, + "cast": [ + "William Powell", + "Bette Davis", + "Frank McHugh" + ], + "genres": [ + "Comedy", + "Drama", + "Musical" + ] + }, + { + "title": "Father Brown, Detective", + "year": 1934, + "cast": [ + "Walter Connolly", + "Paul Lukas" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Fifteen Wives", + "year": 1934, + "cast": [ + "Conway Tearle", + "Natalie Moorhead" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Fighting Hero", + "year": 1934, + "cast": [ + "Tom Tyler", + "Dick Botiller" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Fighting Ranger", + "year": 1934, + "cast": [ + "Buck Jones", + "Dorothy Revier" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Fighting to Live", + "year": 1934, + "cast": [ + "Marion Shilling", + "Steve Pendleton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Finishing School", + "year": 1934, + "cast": [ + "Frances Dee", + "Ginger Rogers", + "Bruce Cabot" + ], + "genres": [ + "Drama", + "Romance" + ] + }, + { + "title": "Flirtation Walk", + "year": 1934, + "cast": [ + "Dick Powell", + "Ruby Keeler", + "Ross Alexander" + ], + "genres": [ + "Musical", + "Romance" + ] + }, + { + "title": "Flirting with Danger", + "year": 1934, + "cast": [ + "William Cagney", + "Maria Alba" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Fog Over Frisco", + "year": 1934, + "cast": [ + "Bette Davis", + "Donald Woods", + "Margaret Lindsay" + ], + "genres": [ + "Drama", + "Mystery" + ] + }, + { + "title": "Forsaking All Others", + "year": 1934, + "cast": [ + "Joan Crawford", + "Clark Gable", + "Robert Montgomery" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Fountain", + "year": 1934, + "cast": [ + "Ann Harding", + "Jean Hersholt", + "Brian Aherne" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Four Frightened People", + "year": 1934, + "cast": [ + "Claudette Colbert", + "Mary Boland", + "Herbert Marshall" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Friends of Mr. Sweeney", + "year": 1934, + "cast": [ + "Charles Ruggles", + "Ann Dvorak", + "Eugene Pallette" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Frontier Marshal", + "year": 1934, + "cast": [ + "George O'Brien", + "Irene Bentley" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Fugitive Lady", + "year": 1934, + "cast": [ + "Florence Rice", + "Neil Hamilton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Fugitive Lovers", + "year": 1934, + "cast": [ + "Madge Evans", + "Robert Montgomery" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Fugitive Road", + "year": 1934, + "cast": [ + "Erich von Stroheim", + "Wera Engels" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Gallant Lady", + "year": 1934, + "cast": [ + "Ann Harding", + "Clive Brook" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Gambling", + "year": 1934, + "cast": [ + "George M. Cohan", + "Wynne Gibson" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Gambling Lady", + "year": 1934, + "cast": [ + "Barbara Stanwyck", + "Pat O'Brien", + "Joel McCrea" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Gay Bride", + "year": 1934, + "cast": [ + "Carole Lombard", + "Chester Morris", + "Zazu Pitts" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Gay Divorcee", + "year": 1934, + "cast": [ + "Fred Astaire", + "Ginger Rogers", + "Alice Brady" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Gentlemen Are Born", + "year": 1934, + "cast": [ + "Franchot Tone", + "Jean Muir", + "Ann Dvorak" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "George White's Scandals", + "year": 1934, + "cast": [ + "Rudy Vallée", + "Alice Faye" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Ghost Walks", + "year": 1934, + "cast": [ + "June Collyer", + "John Miljan" + ], + "genres": [ + "Mystery", + "Horror" + ] + }, + { + "title": "Gift of Gab", + "year": 1934, + "cast": [ + "Edmund Lowe", + "Gloria Stuart", + "Ruth Etting" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "The Girl from Missouri", + "year": 1934, + "cast": [ + "Jean Harlow", + "Lionel Barrymore", + "Franchot Tone" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Girl in Danger", + "year": 1934, + "cast": [ + "Ralph Bellamy", + "Shirley Grey" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "A Girl of the Limberlost", + "year": 1934, + "cast": [ + "Louise Dresser", + "Marian Marsh" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Girl o' My Dreams", + "year": 1934, + "cast": [ + "Mary Carlisle", + "Sterling Holloway" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Glamour", + "year": 1934, + "cast": [ + "Paul Lukas", + "Constance Cummings" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Good Dame", + "year": 1934, + "cast": [ + "Sylvia Sidney", + "Fredric March" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Grand Canary", + "year": 1934, + "cast": [ + "Warner Baxter", + "Madge Evans" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Great Expectations", + "year": 1934, + "cast": [ + "Phillips Holmes", + "Jane Wyatt", + "Florence Reed" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Great Flirtation", + "year": 1934, + "cast": [ + "Elissa Landi", + "Adolphe Menjou", + "David Manners" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Green Eyes", + "year": 1934, + "cast": [ + "Shirley Grey", + "Charles Starrett" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Gridiron Flash", + "year": 1934, + "cast": [ + "Eddie Quillan", + "Betty Furness" + ], + "genres": [ + "Sports" + ] + }, + { + "title": "Half a Sinner", + "year": 1934, + "cast": [ + "Sally Blane", + "Joel McCrea" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Handy Andy", + "year": 1934, + "cast": [ + "Will Rogers", + "Mary Carlisle" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Happiness Ahead", + "year": 1934, + "cast": [ + "Dick Powell", + "Josephine Hutchinson", + "Allen Jenkins" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "Happy Landing", + "year": 1934, + "cast": [ + "Julie Bishop", + "William Farnum" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Harlem After Midnight", + "year": 1934, + "cast": [ + "Rex Ingram", + "Lawrence Chenault" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hat, Coat, and Glove", + "year": 1934, + "cast": [ + "Ricardo Cortez", + "Barbara Robbins" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Have a Heart", + "year": 1934, + "cast": [ + "Jean Parker", + "James Dunn", + "Stuart Erwin" + ], + "genres": [ + "Drama", + "Romance" + ] + }, + { + "title": "He Was Her Man", + "year": 1934, + "cast": [ + "James Cagney", + "Joan Blondell", + "Victor Jory" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Heat Lightning", + "year": 1934, + "cast": [ + "Aline MacMahon", + "Ann Dvorak", + "Preston Foster" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hell Bent for Love", + "year": 1934, + "cast": [ + "Tim McCoy", + "Lilian Bond" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Hell Cat", + "year": 1934, + "cast": [ + "Robert Armstrong", + "Ann Sothern", + "Minna Gombell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hell in the Heavens", + "year": 1934, + "cast": [ + "Warner Baxter", + "Conchita Montenegro" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Helldorado", + "year": 1934, + "cast": [ + "Richard Arlen", + "Madge Evans" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Here Comes the Groom", + "year": 1934, + "cast": [ + "Mary Boland", + "Neil Hamilton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Here Comes the Navy", + "year": 1934, + "cast": [ + "James Cagney", + "Pat O'Brien", + "Gloria Stuart" + ], + "genres": [ + "Comedy", + "Romance" + ] + }, + { + "title": "Here is My Heart", + "year": 1934, + "cast": [ + "Bing Crosby", + "Kitty Carlisle", + "Roland Young" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Hi Nellie!", + "year": 1934, + "cast": [ + "Paul Muni", + "Glenda Farrell" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Hide-Out", + "year": 1934, + "cast": [ + "Maureen O'Sullivan", + "Robert Montgomery", + "Edward Arnold" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Hips, Hips, Hooray!", + "year": 1934, + "cast": [ + "Bert Wheeler", + "Robert Woolsey", + "Thelma Todd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "His Greatest Gamble", + "year": 1934, + "cast": [ + "Richard Dix", + "Dorothy Wilson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hold That Girl", + "year": 1934, + "cast": [ + "James Dunn", + "Claire Trevor" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hollywood Party", + "year": 1934, + "cast": [ + "Jimmy Durante", + "Stan Laurel", + "Oliver Hardy" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "House of Mystery", + "year": 1934, + "cast": [ + "Clay Clement", + "Joyzelle Joyner", + "Gabby Hayes" + ], + "genres": [ + "Mystery", + "Horror" + ] + }, + { + "title": "The House of Rothschild", + "year": 1934, + "cast": [ + "George Arliss", + "Boris Karloff", + "Loretta Young" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Housewife", + "year": 1934, + "cast": [ + "Bette Davis", + "George Brent", + "Ann Dvorak" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Human Side", + "year": 1934, + "cast": [ + "Adolphe Menjou", + "Doris Kenyon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "I Am a Thief", + "year": 1934, + "cast": [ + "Mary Astor", + "Ricardo Cortez", + "Dudley Digges" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "I Believed in You", + "year": 1934, + "cast": [ + "Rosemary Ames", + "John Boles" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "I Give My Love", + "year": 1934, + "cast": [ + "Paul Lukas", + "Wynne Gibson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "I Like It That Way", + "year": 1934, + "cast": [ + "Gloria Stuart", + "Marian Marsh" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "I Sell Anything", + "year": 1934, + "cast": [ + "Pat O'Brien", + "Ann Dvorak" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "I'll Fix It", + "year": 1934, + "cast": [ + "Jack Holt", + "Mona Barrie" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "I'll Tell the World", + "year": 1934, + "cast": [ + "Lee Tracy", + "Gloria Stuart" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "I've Got Your Number", + "year": 1934, + "cast": [ + "Joan Blondell", + "Pat O'Brien", + "Glenda Farrell" + ], + "genres": [ + "Comedy", + "Romance" + ] + }, + { + "title": "Imitation of Life", + "year": 1934, + "cast": [ + "Claudette Colbert", + "Fredi Washington", + "Louise Beavers" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "In Love with Life", + "year": 1934, + "cast": [ + "Lila Lee", + "Dickie Moore" + ], + "genres": [ + "Sports" + ] + }, + { + "title": "In Old Santa Fe", + "year": 1934, + "cast": [ + "Ken Maynard", + "Evalyn Knapp" + ], + "genres": [ + "Western" + ] + }, + { + "title": "It Happened One Night", + "year": 1934, + "cast": [ + "Claudette Colbert", + "Clark Gable", + "Roscoe Karns" + ], + "genres": [ + "Comedy", + "Romance" + ] + }, + { + "title": "It's a Gift", + "year": 1934, + "cast": [ + "W. C. Fields", + "Kathleen Howard" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Jane Eyre", + "year": 1934, + "cast": [ + "Virginia Bruce", + "Colin Clive" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Jealousy", + "year": 1934, + "cast": [ + "Nancy Carroll", + "George Murphy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Jimmy the Gent", + "year": 1934, + "cast": [ + "James Cagney", + "Bette Davis", + "Allen Jenkins" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Journal of a Crime", + "year": 1934, + "cast": [ + "Ruth Chatterton", + "Adolphe Menjou", + "Claire Dodd" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Judge Priest", + "year": 1934, + "cast": [ + "Will Rogers", + "Tom Brown" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Kansas City Princess", + "year": 1934, + "cast": [ + "Joan Blondell", + "Glenda Farrell", + "Robert Armstrong" + ], + "genres": [ + "Comedy", + "Romance" + ] + }, + { + "title": "Keep 'Em Rolling", + "year": 1934, + "cast": [ + "Walter Huston", + "Frank Conroy", + "G. Pat Collins" + ], + "genres": [ + "Drama", + "War" + ] + }, + { + "title": "Kentucky Kernels", + "year": 1934, + "cast": [ + "Bert Wheeler", + "Robert Woolsey", + "Mary Carlisle" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Key", + "year": 1934, + "cast": [ + "William Powell", + "Edna Best", + "Colin Clive" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Kid Millions", + "year": 1934, + "cast": [ + "Eddie Cantor", + "Ann Sothern", + "Ethel Merman" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "King Kelly of the U.S.A.", + "year": 1934, + "cast": [ + "Edgar Kennedy", + "Irene Ware" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Kiss and Make-Up", + "year": 1934, + "cast": [ + "Cary Grant", + "Genevieve Tobin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Ladies Should Listen", + "year": 1934, + "cast": [ + "Cary Grant", + "Frances Drake" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Lady by Choice", + "year": 1934, + "cast": [ + "Carole Lombard", + "May Robson", + "Walter Connolly" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Last Gentleman", + "year": 1934, + "cast": [ + "George Arliss", + "Edna May Oliver" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Last Round-Up", + "year": 1934, + "cast": [ + "Randolph Scott", + "Monte Blue", + "Barton MacLane" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Laughing Boy", + "year": 1934, + "cast": [ + "Lupe Vélez", + "Ramon Novarro", + "William B. Davidson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Lawless Frontier", + "year": 1934, + "cast": [ + "John Wayne", + "Sheila Terry" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Lazy River", + "year": 1934, + "cast": [ + "Jean Parker", + "Robert Young" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Lemon Drop Kid", + "year": 1934, + "cast": [ + "Lee Tracy", + "Helen Mack" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Let's Be Ritzy", + "year": 1934, + "cast": [ + "Lew Ayres", + "Patricia Ellis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Let's Talk It Over", + "year": 1934, + "cast": [ + "Chester Morris", + "Mae Clarke" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Let's Try Again", + "year": 1934, + "cast": [ + "Clive Brook", + "Diana Wynyard", + "Helen Vinson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Life of Vergie Winters", + "year": 1934, + "cast": [ + "Ann Harding", + "John Boles" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Lightning Strikes Twice", + "year": 1934, + "cast": [ + "Ben Lyon", + "Thelma Todd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Limehouse Blues", + "year": 1934, + "cast": [ + "George Raft", + "Jean Parker", + "Anna May Wong" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "The Line-Up", + "year": 1934, + "cast": [ + "William Gargan", + "Marian Nixon", + "John Miljan" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "Little Man, What Now?", + "year": 1934, + "cast": [ + "Margaret Sullavan", + "Douglass Montgomery", + "Alan Hale" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Little Men", + "year": 1934, + "cast": [ + "Ralph Morgan", + "Erin O'Brien-Moore" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Little Minister", + "year": 1934, + "cast": [ + "Katharine Hepburn", + "John Beal" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Little Miss Marker", + "year": 1934, + "cast": [ + "Adolphe Menjou", + "Shirley Temple", + "Charles Bickford" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Long Lost Father", + "year": 1934, + "cast": [ + "John Barrymore", + "Helen Chandler" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Looking for Trouble", + "year": 1934, + "cast": [ + "Spencer Tracy", + "Constance Cummings" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "Lost in the Stratosphere", + "year": 1934, + "cast": [ + "William Cagney", + "June Collyer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Lost Lady", + "year": 1934, + "cast": [ + "Barbara Stanwyck", + "Frank Morgan", + "Ricardo Cortez" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Lost Patrol", + "year": 1934, + "cast": [ + "Victor McLaglen", + "Wallace Ford", + "Boris Karloff" + ], + "genres": [ + "War" + ] + }, + { + "title": "Love Birds", + "year": 1934, + "cast": [ + "Slim Summerville", + "ZaSu Pitts", + "Mickey Rooney" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Love Captive", + "year": 1934, + "cast": [ + "Gloria Stuart", + "Nils Asther" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Love Time", + "year": 1934, + "cast": [ + "Pat Paterson", + "Nils Asther" + ], + "genres": [ + "Historical", + "Romance" + ] + }, + { + "title": "The Lucky Texan", + "year": 1934, + "cast": [ + "John Wayne", + "Barbara Sheldon", + "George \"Gabby\" Hayes" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Madame DuBarry", + "year": 1934, + "cast": [ + "Dolores del Río", + "Victor Jory", + "Osgood Perkins" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Madame Spy", + "year": 1934, + "cast": [ + "Fay Wray", + "Nils Asther", + "Edward Arnold" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Man from Utah", + "year": 1934, + "cast": [ + "John Wayne", + "Polly Ann Young", + "George \"Gabby\" Hayes" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Man of Two Worlds", + "year": 1934, + "cast": [ + "Elissa Landi", + "Francis Lederer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Man Trailer", + "year": 1934, + "cast": [ + "Buck Jones", + "Cecilia Parker" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Man Who Reclaimed His Head", + "year": 1934, + "cast": [ + "Claude Rains", + "Joan Bennett", + "Lionel Atwill" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Man with Two Faces", + "year": 1934, + "cast": [ + "Edward G. Robinson", + "Mary Astor", + "Ricardo Cortez" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "A Man's Game", + "year": 1934, + "cast": [ + "Tim McCoy", + "Evalyn Knapp" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Managed Money", + "year": 1934, + "cast": [ + "Junior Coghlan", + "Shirley Temple" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mandalay", + "year": 1934, + "cast": [ + "Kay Francis", + "Ricardo Cortez", + "Warner Oland" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Manhattan Love Song", + "year": 1934, + "cast": [ + "Robert Armstrong", + "Dixie Lee" + ], + "genres": [ + "Comedy", + "Romance" + ] + }, + { + "title": "Manhattan Melodrama", + "year": 1934, + "cast": [ + "Clark Gable", + "William Powell", + "Myrna Loy" + ], + "genres": [ + "Drama", + "Romance" + ] + }, + { + "title": "Maniac", + "year": 1934, + "cast": [ + "Bill Woods", + "Horace Carpenter" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Many Happy Returns", + "year": 1934, + "cast": [ + "Gracie Allen", + "George Burns", + "George Barbier" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Marie Galante", + "year": 1934, + "cast": [ + "Spencer Tracy", + "Ketti Gallian", + "Ned Sparks" + ], + "genres": [ + "Drama", + "Romance" + ] + }, + { + "title": "The Marines Are Coming", + "year": 1934, + "cast": [ + "William Haines", + "Conrad Nagel", + "Esther Ralston" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Massacre", + "year": 1934, + "cast": [ + "Richard Barthelmess", + "Ann Dvorak" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Meanest Gal in Town", + "year": 1934, + "cast": [ + "ZaSu Pitts", + "El Brendel" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Melody in Spring", + "year": 1934, + "cast": [ + "Lanny Ross", + "Charlie Ruggles", + "Mary Boland", + "Ann Sothern" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "Men in White", + "year": 1934, + "cast": [ + "Clark Gable", + "Jean Hersholt", + "Myrna Loy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Men of the Night", + "year": 1934, + "cast": [ + "Bruce Cabot", + "Judith Allen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Menace", + "year": 1934, + "cast": [ + "Gertrude Michael", + "Paul Cavanagh" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Merry Frinks", + "year": 1934, + "cast": [ + "Aline MacMahon", + "Guy Kibbee" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Merry Widow", + "year": 1934, + "cast": [ + "Jeanette MacDonald", + "Maurice Chevalier", + "Edward Everett Horton" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "Midnight", + "year": 1934, + "cast": [ + "Sidney Fox", + "Margaret Wycherly", + "Humphrey Bogart" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "Midnight Alibi", + "year": 1934, + "cast": [ + "Richard Barthelmess", + "Ann Dvorak" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Mighty Barnum", + "year": 1934, + "cast": [ + "Wallace Beery", + "Adolphe Menjou", + "Virginia Bruce" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Mills of the Gods", + "year": 1934, + "cast": [ + "May Robson", + "Fay Wray" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Million Dollar Ransom", + "year": 1934, + "cast": [ + "Phillips Holmes", + "Edward Arnold" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Miss Fane's Baby Is Stolen", + "year": 1934, + "cast": [ + "Dorothea Wieck", + "Alice Brady" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Money Means Nothing", + "year": 1934, + "cast": [ + "Wallace Ford", + "Gloria Shea" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Monte Carlo Nights", + "year": 1934, + "cast": [ + "Mary Brian", + "John Darrow", + "Gabby Hayes" + ], + "genres": [ + "Drama", + "Mystery" + ] + }, + { + "title": "The Most Precious Thing in Life", + "year": 1934, + "cast": [ + "Richard Cromwell", + "Jean Arthur" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Moulin Rouge", + "year": 1934, + "cast": [ + "Constance Bennett", + "Franchot Tone", + "Tullio Carminati" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "Murder at the Vanities", + "year": 1934, + "cast": [ + "Victor McLaglen", + "Carl Brisson" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Murder in the Clouds", + "year": 1934, + "cast": [ + "Lyle Talbot", + "Ann Dvorak" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Murder in the Private Car", + "year": 1934, + "cast": [ + "Charles Ruggles", + "Una Merkel" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Murder in Trinidad", + "year": 1934, + "cast": [ + "Nigel Bruce", + "Heather Angel" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Mrs. Wiggs of the Cabbage Patch", + "year": 1934, + "cast": [ + "W. C. Fields", + "Pauline Lord", + "ZaSu Pitts" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Murder on the Blackboard", + "year": 1934, + "cast": [ + "Edna May Oliver", + "James Gleason" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Music in the Air", + "year": 1934, + "cast": [ + "Gloria Swanson", + "John Boles" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Mysterious Mr. Wong", + "year": 1934, + "cast": [ + "Bela Lugosi", + "Arline Judge", + "Wallace Ford" + ], + "genres": [ + "Mystery", + "Horror" + ] + }, + { + "title": "The Mystery of Mr. X", + "year": 1934, + "cast": [ + "Robert Montgomery", + "Elizabeth Allan" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Mystery Liner", + "year": 1934, + "cast": [ + "Noah Beery", + "Astrid Allwyn" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Mystery Ranch", + "year": 1934, + "cast": [ + "Tom Tyler", + "Roberta Gale" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Name the Woman", + "year": 1934, + "cast": [ + "Richard Cromwell", + "Arline Judge" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Nana", + "year": 1934, + "cast": [ + "Anna Sten", + "Lionel Atwill" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Neath the Arizona Skies", + "year": 1934, + "cast": [ + "John Wayne", + "Sheila Terry" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Ninth Guest", + "year": 1934, + "cast": [ + "Genevieve Tobin", + "Donald Cook" + ], + "genres": [ + "Drama", + "Mystery" + ] + }, + { + "title": "No Greater Glory", + "year": 1934, + "cast": [ + "George P. Breakston", + "Jimmy Butler" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "No More Women", + "year": 1934, + "cast": [ + "Edmund Lowe", + "Victor McLaglen", + "Sally Blane" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "No Ransom", + "year": 1934, + "cast": [ + "Leila Hyams", + "Phillips Holmes", + "Jack La Rue" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Notorious Sophie Lang", + "year": 1934, + "cast": [ + "Gertrude Michael", + "Paul Cavanagh" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Now and Forever", + "year": 1934, + "cast": [ + "Gary Cooper", + "Carole Lombard", + "Shirley Temple" + ], + "genres": [ + "Comedy", + "Romance" + ] + }, + { + "title": "Now I'll Tell", + "year": 1934, + "cast": [ + "Spencer Tracy", + "Helen Twelvetrees", + "Alice Faye" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Of Human Bondage", + "year": 1934, + "cast": [ + "Bette Davis", + "Leslie Howard", + "Kay Johnson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Old Fashioned Way", + "year": 1934, + "cast": [ + "W. C. Fields", + "Baby LeRoy", + "Judith Allen" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Once to Every Bachelor", + "year": 1934, + "cast": [ + "Marian Nixon", + "Neil Hamilton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Once to Every Woman", + "year": 1934, + "cast": [ + "Ralph Bellamy", + "Fay Wray" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "One Exciting Adventure", + "year": 1934, + "cast": [ + "Binnie Barnes", + "Neil Hamilton", + "Paul Cavanagh" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "One Hour Late", + "year": 1934, + "cast": [ + "Helen Twelvetrees", + "Conrad Nagel" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "One in a Million", + "year": 1934, + "cast": [ + "Dorothy Wilson", + "Charles Starrett" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "One Is Guilty", + "year": 1934, + "cast": [ + "Ralph Bellamy", + "Shirley Grey" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "One More River", + "year": 1934, + "cast": [ + "Diana Wynyard", + "Frank Lawton", + "Jane Wyatt" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "One Night of Love", + "year": 1934, + "cast": [ + "Grace Moore", + "Mona Barrie", + "Tullio Carminati" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Operator 13", + "year": 1934, + "cast": [ + "Marion Davies", + "Gary Cooper", + "The Mills Brothers" + ], + "genres": [ + "Comedy", + "Drama", + "Musical" + ] + }, + { + "title": "Orient Express", + "year": 1934, + "cast": [ + "Heather Angel", + "Ralph Morgan" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Our Daily Bread", + "year": 1934, + "cast": [ + "Karen Morley", + "Tom Keene", + "Barbara Pepper" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Outcast Lady", + "year": 1934, + "cast": [ + "Constance Bennett", + "Herbert Marshall", + "Hugh Williams" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Painted Veil", + "year": 1934, + "cast": [ + "Greta Garbo", + "Herbert Marshall", + "George Brent" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Palooka", + "year": 1934, + "cast": [ + "Jimmy Durante", + "Lupe Vélez", + "Stuart Erwin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Pardon My Pups", + "year": 1934, + "cast": [ + "Junior Coghlan", + "Shirley Temple" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Paris Interlude", + "year": 1934, + "cast": [ + "Madge Evans", + "Robert Young", + "Ted Healy" + ], + "genres": [ + "Drama", + "Musical" + ] + }, + { + "title": "The Party's Over", + "year": 1934, + "cast": [ + "Stuart Erwin", + "Ann Sothern" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Peck's Bad Boy", + "year": 1934, + "cast": [ + "Jackie Cooper", + "Thomas Meighan", + "Dorothy Peterson" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Personality Kid", + "year": 1934, + "cast": [ + "Pat O'Brien", + "Glenda Farrell", + "Claire Dodd" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Poor Rich", + "year": 1934, + "cast": [ + "Edward Everett Horton", + "Edna May Oliver" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Port of Lost Dreams", + "year": 1934, + "cast": [ + "William Boyd", + "George F. Marion", + "Lola Lane" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "The Prescott Kid", + "year": 1934, + "cast": [ + "Tim McCoy", + "Sheila Mannors" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The President Vanishes", + "year": 1934, + "cast": [ + "Edward Arnold", + "Arthur Byron" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Private Scandal", + "year": 1934, + "cast": [ + "ZaSu Pitts", + "Phillips Holmes" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Pursued", + "year": 1934, + "cast": [ + "Rosemary Ames", + "Victor Jory" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Pursuit of Happiness", + "year": 1934, + "cast": [ + "Francis Lederer", + "Joan Bennett" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Quitter", + "year": 1934, + "cast": [ + "Charley Grapewin", + "Emma Dunn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Randy Rides Alone", + "year": 1934, + "cast": [ + "John Wayne", + "Alberta Vaughn" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Rawhide Mail", + "year": 1934, + "cast": [ + "Jack Perrin", + "Nelson McDowell" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Ready for Love", + "year": 1934, + "cast": [ + "Richard Arlen", + "Ida Lupino", + "Marjorie Rambeau" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Red Morning", + "year": 1934, + "cast": [ + "Steffi Duna", + "Regis Toomey" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Registered Nurse", + "year": 1934, + "cast": [ + "Bebe Daniels", + "Lyle Talbot" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Return of the Terror", + "year": 1934, + "cast": [ + "Mary Astor", + "Lyle Talbot" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Richest Girl in the World", + "year": 1934, + "cast": [ + "Miriam Hopkins", + "Fay Wray", + "Joel McCrea" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Riptide", + "year": 1934, + "cast": [ + "Norma Shearer", + "Robert Montgomery", + "Herbert Marshall" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Road to Ruin", + "year": 1934, + "cast": [ + "Helen Foster", + "Nell O'Day" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Rocky Rhodes", + "year": 1934, + "cast": [ + "Buck Jones", + "Sheila Terry" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Romance in the Rain", + "year": 1934, + "cast": [ + "Heather Angel", + "Esther Ralston" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Sadie McKee", + "year": 1934, + "cast": [ + "Joan Crawford", + "Franchot Tone", + "Edward Arnold" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Scarlet Empress", + "year": 1934, + "cast": [ + "Marlene Dietrich", + "John Lodge", + "Sam Jaffe" + ], + "genres": [ + "Historical", + "Drama" + ] + }, + { + "title": "The Scarlet Letter", + "year": 1934, + "cast": [ + "Colleen Moore", + "Henry B. Walthall", + "Alan Hale" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "School for Girls", + "year": 1934, + "cast": [ + "Sidney Fox", + "Lois Wilson" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "A Scream in the Night", + "year": 1934, + "cast": [ + "Lon Chaney Jr.", + "Sheila Terry" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Search for Beauty", + "year": 1934, + "cast": [ + "Buster Crabbe", + "Ida Lupino" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Secret Bride", + "year": 1934, + "cast": [ + "Barbara Stanwyck", + "Warren William", + "Glenda Farrell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Secret of the Chateau", + "year": 1934, + "cast": [ + "Claire Dodd", + "Alice White" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Servants' Entrance", + "year": 1934, + "cast": [ + "Janet Gaynor", + "Lew Ayres" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Sequoia", + "year": 1934, + "cast": [ + "Jean Parker", + "Samuel S. Hinds" + ], + "genres": [ + "Drama", + "Adventure" + ] + }, + { + "title": "She Had to Choose", + "year": 1934, + "cast": [ + "Isabel Jewell", + "Sally Blane" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "She Learned About Sailors", + "year": 1934, + "cast": [ + "Alice Faye", + "Lew Ayres" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "She Love Me Not", + "year": 1934, + "cast": [ + "Miriam Hopkins", + "Bing Crosby", + "Kitty Carlisle" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "She Made Her Bed", + "year": 1934, + "cast": [ + "Richard Arlen", + "Sally Eilers" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "She Was a Lady", + "year": 1934, + "cast": [ + "Helen Twelvetrees", + "Donald Woods" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Shoot the Works", + "year": 1934, + "cast": [ + "Jack Oakie", + "Ben Bernie", + "Dorothy Dell" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "The Show-Off", + "year": 1934, + "cast": [ + "Spencer Tracy", + "Madge Evans", + "Henry Wadsworth" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Side Streets", + "year": 1934, + "cast": [ + "Aline MacMahon", + "Ann Dvorak", + "Paul Kelly" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Silver Streak", + "year": 1934, + "cast": [ + "Charles Starrett", + "Sally Blane" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sing and Like It", + "year": 1934, + "cast": [ + "ZaSu Pitts", + "Pert Kelton", + "Edward Everett Horton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Sing Sing Nights", + "year": 1934, + "cast": [ + "Conway Tearle", + "Jameson Thomas" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sisters Under the Skin", + "year": 1934, + "cast": [ + "Elissa Landi", + "Frank Morgan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Six of a Kind", + "year": 1934, + "cast": [ + "Charles Ruggles", + "Mary Boland", + "George Burns" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Sixteen Fathoms Deep", + "year": 1934, + "cast": [ + "Sally O'Neil", + "Lon Chaney Jr." + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Sleepers East", + "year": 1934, + "cast": [ + "Wynne Gibson", + "Mona Barrie" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Smarty", + "year": 1934, + "cast": [ + "Joan Blondell", + "Warren William" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Smoking Guns", + "year": 1934, + "cast": [ + "Ken Maynard", + "Gloria Shea", + "Walter Miller" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Social Register", + "year": 1934, + "cast": [ + "Colleen Moore", + "Charles Winninger" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Sons of Steel", + "year": 1934, + "cast": [ + "Charles Starrett", + "Polly Ann Young" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Speed Wings", + "year": 1934, + "cast": [ + "Tim McCoy", + "Evalyn Knapp" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Spitfire", + "year": 1934, + "cast": [ + "Katharine Hepburn", + "Sara Haden", + "Ralph Bellamy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Springtime for Henry", + "year": 1934, + "cast": [ + "Otto Kruger", + "Nancy Carroll", + "Nigel Bruce" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The St. Louis Kid", + "year": 1934, + "cast": [ + "James Cagney", + "Allen Jenkins", + "Robert Barrat" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "St. Louis Woman", + "year": 1934, + "cast": [ + "Jeanette Loff", + "Johnny Mack Brown", + "Earle Foxe" + ], + "genres": [ + "Musical", + "Drama" + ] + }, + { + "title": "Stamboul Quest", + "year": 1934, + "cast": [ + "Myrna Loy", + "George Brent", + "Lionel Atwill" + ], + "genres": [ + "Spy" + ] + }, + { + "title": "Stand Up and Cheer!", + "year": 1934, + "cast": [ + "Warner Baxter", + "Madge Evans", + "Shirley Temple" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Star Packer", + "year": 1934, + "cast": [ + "John Wayne", + "Gabby Hayes", + "Verna Hillie" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Stingaree", + "year": 1934, + "cast": [ + "Irene Dunne", + "Richard Rix" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Stolen Sweets", + "year": 1934, + "cast": [ + "Sally Blane", + "Jameson Thomas" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Straight Is the Way", + "year": 1934, + "cast": [ + "Franchot Tone", + "May Robson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Strange Wives", + "year": 1934, + "cast": [ + "Roger Pryor", + "Esther Ralston" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Strictly Dynamite", + "year": 1934, + "cast": [ + "Jimmy Durante", + "Lupe Vélez" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Student Tour", + "year": 1934, + "cast": [ + "Jimmy Durante", + "Maxine Doyle" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Success at Any Price", + "year": 1934, + "cast": [ + "Douglas Fairbanks Jr.", + "Genevieve Tobin", + "Colleen Moore" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Successful Failure", + "year": 1934, + "cast": [ + "Russell Hopton", + "Gloria Shea", + "Jameson Thomas" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Such Women Are Dangerous", + "year": 1934, + "cast": [ + "Warner Baxter", + "Rosemary Ames" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sweet Adeline", + "year": 1934, + "cast": [ + "Irene Dunne", + "Hugh Herbert", + "Donald Woods" + ], + "genres": [ + "Drama", + "Musical" + ] + }, + { + "title": "Take the Stand", + "year": 1934, + "cast": [ + "Jack La Rue", + "Thelma Todd", + "Gail Patrick" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Tarzan and His Mate", + "year": 1934, + "cast": [ + "Maureen O'Sullivan", + "Johnny Weissmuller", + "Neil Hamilton" + ], + "genres": [ + "Drama", + "Adventure" + ] + }, + { + "title": "Terror of the Plains", + "year": 1934, + "cast": [ + "Tom Tyler", + "Roberta Gale" + ], + "genres": [ + "Western" + ] + }, + { + "title": "That's Gratitude", + "year": 1934, + "cast": [ + "Arthur Byron", + "Mary Carlisle" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Their Big Moment", + "year": 1934, + "cast": [ + "ZaSu Pitts", + "Slim Summerville" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "There's Always Tomorrow", + "year": 1934, + "cast": [ + "Frank Morgan", + "Binnie Barnes" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Thin Man", + "year": 1934, + "cast": [ + "William Powell", + "Myrna Loy", + "Maureen O'Sullivan" + ], + "genres": [ + "Comedy", + "Drama", + "Crime" + ] + }, + { + "title": "Thirty Day Princess", + "year": 1934, + "cast": [ + "Cary Grant", + "Sylvia Sidney", + "Edward Arnold" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "This Man Is Mine", + "year": 1934, + "cast": [ + "Irene Dunne", + "Constance Cummings", + "Ralph Bellamy" + ], + "genres": [ + "Drama", + "Romance" + ] + }, + { + "title": "This Side of Heaven", + "year": 1934, + "cast": [ + "Lionel Barrymore", + "Fay Bainter", + "Tom Brown" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Thunder Over Texas", + "year": 1934, + "cast": [ + "Guinn \"Big Boy\" Williams", + "Marion Shilling" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Tomorrow's Youth", + "year": 1934, + "cast": [ + "Dickie Moore", + "Gloria Shea" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Trail Beyond", + "year": 1934, + "cast": [ + "John Wayne", + "Verna Hillie", + "Noah Beery Sr." + ], + "genres": [ + "Western" + ] + }, + { + "title": "Transatlantic Merry-Go-Round", + "year": 1934, + "cast": [ + "Jack Benny", + "Nancy Carroll", + "Sydney Howard" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Treasure Island", + "year": 1934, + "cast": [ + "Wallace Beery", + "Jackie Cooper", + "Lionel Barrymore" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Trumpet Blows", + "year": 1934, + "cast": [ + "George Raft", + "Adolphe Menjou", + "Frances Drake" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Twentieth Century", + "year": 1934, + "cast": [ + "Carole Lombard", + "John Barrymore", + "Walter Connolly" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Twenty Million Sweethearts", + "year": 1934, + "cast": [ + "Ginger Rogers", + "Dick Powell", + "Ted Fio Rito" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "Two Alone", + "year": 1934, + "cast": [ + "Tom Brown", + "Jean Parker" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Two Heads on a Pillow", + "year": 1934, + "cast": [ + "Neil Hamilton", + "Miriam Jordan" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Uncertain Lady", + "year": 1934, + "cast": [ + "Genevieve Tobin", + "Edward Everett Horton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Upper World", + "year": 1934, + "cast": [ + "Ginger Rogers", + "Warren William", + "Mary Astor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Very Honorable Guy", + "year": 1934, + "cast": [ + "Joe E. Brown", + "Alice White" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Viva Villa!", + "year": 1934, + "cast": [ + "Wallace Beery", + "Leo Carrillo", + "Mary Astor" + ], + "genres": [ + "Drama", + "Biography" + ] + }, + { + "title": "Voice in the Night", + "year": 1934, + "cast": [ + "Tim McCoy", + "Billie Seward" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Wagon Wheels", + "year": 1934, + "cast": [ + "Randolph Scott", + "Gail Patrick" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Wake Up and Dream", + "year": 1934, + "cast": [ + "Russ Columbo", + "June Knight" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "We Live Again", + "year": 1934, + "cast": [ + "Anna Sten", + "Fredric March", + "C. Aubrey Smith" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "We're Not Dressing", + "year": 1934, + "cast": [ + "Bing Crosby", + "George Burns", + "Gracie Allen" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "We're Rich Again", + "year": 1934, + "cast": [ + "Billie Burke", + "Edna May Oliver", + "Buster Crabbe" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Wednesday's Child", + "year": 1934, + "cast": [ + "Karen Morley", + "Edward Arnold", + "Frankie Thomas" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "West of the Divide", + "year": 1934, + "cast": [ + "John Wayne", + "Virginia Faire Brown", + "George Hayes" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "West of the Pecos", + "year": 1934, + "cast": [ + "Richard Dix", + "Samuel S. Hinds", + "Martha Sleeper" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Westerner", + "year": 1934, + "cast": [ + "Tim McCoy", + "Marion Shilling" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Wharf Angel", + "year": 1934, + "cast": [ + "Victor McLaglen", + "Dorothy Dell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "What Every Woman Knows", + "year": 1934, + "cast": [ + "Helen Hayes", + "Madge Evans", + "Dudley Digges" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "When a Man Sees Red", + "year": 1934, + "cast": [ + "Buck Jones", + "Dorothy Revier" + ], + "genres": [ + "Western" + ] + }, + { + "title": "When Strangers Meet", + "year": 1934, + "cast": [ + "Richard Cromwell", + "Arline Judge" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Whirlpool", + "year": 1934, + "cast": [ + "Jean Arthur", + "Jack Holt", + "Donald Cook" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "The White Parade", + "year": 1934, + "cast": [ + "Loretta Young", + "John Boles", + "Dorothy Wilson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Whom the Gods Destroy", + "year": 1934, + "cast": [ + "Walter Connolly", + "Robert Young", + "Doris Kenyon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Wicked Woman", + "year": 1934, + "cast": [ + "Mady Christians", + "Jean Parker", + "Charles Bickford" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Wild Cargo", + "year": 1934, + "cast": [ + "Frank Buck" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Wild Gold", + "year": 1934, + "cast": [ + "John Boles", + "Claire Trevor" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Witching Hour", + "year": 1934, + "cast": [ + "John Halliday", + "Judith Allen", + "William Frawley" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Woman Condemned", + "year": 1934, + "cast": [ + "Claudia Dell", + "Lola Lane", + "Jason Robards Sr." + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "Woman in the Dark", + "year": 1934, + "cast": [ + "Fay Wray", + "Ralph Bellamy", + "Melvyn Douglas" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "A Woman's Man", + "year": 1934, + "cast": [ + "John Halliday", + "Marguerite De La Motte" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Wonder Bar", + "year": 1934, + "cast": [ + "Al Jolson", + "Dolores del Río", + "Kay Francis" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "The World Accuses", + "year": 1934, + "cast": [ + "Dickie Moore", + "Cora Sue Collins" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The World Moves On", + "year": 1934, + "cast": [ + "Franchot Tone", + "Madeleine Carroll", + "Reginald Denny" + ], + "genres": [ + "Drama", + "War" + ] + }, + { + "title": "You Belong to Me", + "year": 1934, + "cast": [ + "Lee Tracy", + "Helen Mack", + "Helen Morgan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "You Can't Buy Everything", + "year": 1934, + "cast": [ + "May Robson", + "Jean Parker", + "Lewis Stone" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "You're Telling Me!", + "year": 1934, + "cast": [ + "W. C. Fields", + "Buster Crabbe", + "Joan Marsh" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Young and Beautiful", + "year": 1934, + "cast": [ + "William Haines", + "Joseph Cawthorn", + "Judith Allen" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "$10 Raise", + "year": 1935, + "cast": [ + "Edward Everett Horton", + "Karen Morley" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "1,000 Dollars a Minute", + "year": 1935, + "cast": [ + "Leila Hyams", + "Edward Brophy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Accent on Youth", + "year": 1935, + "cast": [ + "Sylvia Sidney", + "Herbert Marshall" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Affair of Susan", + "year": 1935, + "cast": [ + "ZaSu Pitts", + "Hugh O'Connell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "After Office Hours", + "year": 1935, + "cast": [ + "Constance Bennett", + "Clark Gable", + "Billie Burke" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "After the Dance", + "year": 1935, + "cast": [ + "Nancy Carroll", + "George Murphy", + "Thelma Todd" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Age of Indiscretion", + "year": 1935, + "cast": [ + "Paul Lukas", + "Madge Evans", + "Helen Vinson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Ah, Wilderness!", + "year": 1935, + "cast": [ + "Wallace Beery", + "Lionel Barrymore", + "Mickey Rooney" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Air Hawks", + "year": 1935, + "cast": [ + "Ralph Bellamy", + "Tala Birell", + "Douglass Dumbrille" + ], + "genres": [ + "Drama", + "Action" + ] + }, + { + "title": "Alias Mary Dow", + "year": 1935, + "cast": [ + "Sally Eilers", + "Ray Milland" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Alibi Ike", + "year": 1935, + "cast": [ + "Joe E. Brown", + "Olivia de Havilland" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Alice Adams", + "year": 1935, + "cast": [ + "Katharine Hepburn", + "Fred MacMurray", + "Evelyn Venable" + ], + "genres": [ + "Drama", + "Romance" + ] + }, + { + "title": "All the King's Horses", + "year": 1935, + "cast": [ + "Carl Brisson", + "Mary Ellis", + "Edward Everett Horton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Anna Karenina", + "year": 1935, + "cast": [ + "Greta Garbo", + "Fredric March", + "Maureen O'Sullivan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Annapolis Farewell", + "year": 1935, + "cast": [ + "Guy Standing", + "Richard Cromwell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Annie Oakley", + "year": 1935, + "cast": [ + "Barbara Stanwyck", + "Melvyn Douglas", + "Preston Foster" + ], + "genres": [ + "Drama", + "Western" + ] + }, + { + "title": "Another Face", + "year": 1935, + "cast": [ + "Wallace Ford", + "Brian Donlevy", + "Phyllis Brooks" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Arizonian", + "year": 1935, + "cast": [ + "Richard Dix", + "Margot Grahame", + "Preston Foster", + "Louis Calhern" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Atlantic Adventure", + "year": 1935, + "cast": [ + "Nancy Carroll", + "Lloyd Nolan" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Awakening of Jim Burke", + "year": 1935, + "cast": [ + "Jack Holt", + "Florence Rice" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Baby Face Harrington", + "year": 1935, + "cast": [ + "Charles Butterworth", + "Una Merkel", + "Nat Pendleton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Bad Boy", + "year": 1935, + "cast": [ + "James Dunn", + "Dorothy Wilson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Bar 20 Rides Again", + "year": 1935, + "cast": [ + "William Boyd", + "Jean Rouverol" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Barbary Coast", + "year": 1935, + "cast": [ + "Edward G. Robinson", + "Miriam Hopkins", + "Joel McCrea" + ], + "genres": [ + "Drama", + "Adventure" + ] + }, + { + "title": "Becky Sharp", + "year": 1935, + "cast": [ + "Miriam Hopkins", + "Cedric Hardwicke", + "Frances Dee" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Behind the Evidence", + "year": 1935, + "cast": [ + "Norman Foster", + "Sheila Bromley" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Behind the Green Lights", + "year": 1935, + "cast": [ + "Norman Foster", + "Judith Allen" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Best Man Wins", + "year": 1935, + "cast": [ + "Edmund Lowe", + "Jack Holt", + "Bela Lugosi" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "The Big Broadcast of 1936", + "year": 1935, + "cast": [ + "George Burns", + "Gracie Allen", + "Ethel Merman" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "Biography of a Bachelor Girl", + "year": 1935, + "cast": [ + "Ann Harding", + "Robert Montgomery", + "Edward Arnold" + ], + "genres": [ + "Comedy", + "Romance" + ] + }, + { + "title": "The Bishop Misbehaves", + "year": 1935, + "cast": [ + "Edmund Gwenn", + "Maureen O'Sullivan" + ], + "genres": [ + "Comedy", + "Crime" + ] + }, + { + "title": "Black Fury", + "year": 1935, + "cast": [ + "Paul Muni", + "Karen Morley", + "Barton MacLane" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Black Room", + "year": 1935, + "cast": [ + "Boris Karloff", + "Marian Marsh", + "Katherine DeMille" + ], + "genres": [ + "Crime", + "Horror" + ] + }, + { + "title": "Black Sheep", + "year": 1935, + "cast": [ + "Edmund Lowe", + "Claire Trevor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Bonnie Scotland", + "year": 1935, + "cast": [ + "Stan Laurel", + "Oliver Hardy", + "June Lang" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Bordertown", + "year": 1935, + "cast": [ + "Paul Muni", + "Bette Davis", + "Margaret Lindsay" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "Border Brigands", + "year": 1935, + "cast": [ + "Buck Jones", + "Lona Andre" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Born to Battle", + "year": 1935, + "cast": [ + "Tom Tyler", + "Jean Carmen" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Born to Gamble", + "year": 1935, + "cast": [ + "Onslow Stevens", + "H. B. Warner", + "Maxine Doyle" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Break of Hearts", + "year": 1935, + "cast": [ + "Katharine Hepburn", + "Charles Boyer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Bride Comes Home", + "year": 1935, + "cast": [ + "Claudette Colbert", + "Fred MacMurray", + "Robert Young" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Bride of Frankenstein", + "year": 1935, + "cast": [ + "Boris Karloff", + "Elsa Lanchester", + "Colin Clive" + ], + "genres": [ + "Science Fiction", + "Horror" + ] + }, + { + "title": "Bright Lights", + "year": 1935, + "cast": [ + "Joe E. Brown", + "Ann Dvorak", + "Patricia Ellis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Broadway Gondolier", + "year": 1935, + "cast": [ + "Dick Powell", + "Joan Blondell", + "Adolphe Menjou" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Broadway Hostess", + "year": 1935, + "cast": [ + "Winifred Shaw", + "Genevieve Tobin", + "Lyle Talbot" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Broadway Melody of 1936", + "year": 1935, + "cast": [ + "Eleanor Powell", + "Robert Taylor", + "Jack Benny" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "The Call of the Wild", + "year": 1935, + "cast": [ + "Clark Gable", + "Loretta Young", + "Jack Oakie" + ], + "genres": [ + "Drama", + "Adventure" + ] + }, + { + "title": "Calling All Cars", + "year": 1935, + "cast": [ + "Jack La Rue", + "Lillian Miles" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Calling of Dan Matthews", + "year": 1935, + "cast": [ + "Richard Arlen", + "Charlotte Wynters", + "Donald Cook" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Calm Yourself", + "year": 1935, + "cast": [ + "Robert Young", + "Madge Evans" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Cappy Ricks Returns", + "year": 1935, + "cast": [ + "Robert McWade", + "Ray Walker" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Captain Blood", + "year": 1935, + "cast": [ + "Errol Flynn", + "Olivia de Havilland", + "Lionel Atwill" + ], + "genres": [ + "Adventure", + "Action" + ] + }, + { + "title": "Captain Hurricane", + "year": 1935, + "cast": [ + "James Barton", + "Helen Westley", + "Gene Lockhart" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Car 99", + "year": 1935, + "cast": [ + "Fred MacMurray", + "Ann Sheridan", + "Guy Standing" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "Cardinal Richelieu", + "year": 1935, + "cast": [ + "George Arliss", + "Maureen O'Sullivan", + "Cesar Romero" + ], + "genres": [ + "Drama", + "Romance" + ] + }, + { + "title": "Carnival", + "year": 1935, + "cast": [ + "Jimmy Durante", + "Lee Tracy", + "Sally Eilers" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Case of the Curious Bride", + "year": 1935, + "cast": [ + "Warren William", + "Claire Dodd", + "Allen Jenkins" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "The Case of the Lucky Legs", + "year": 1935, + "cast": [ + "Warren William", + "Genevieve Tobin", + "Patricia Ellis" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "Case of the Missing Man", + "year": 1935, + "cast": [ + "Roger Pryor", + "Joan Perry" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Casino Murder Case", + "year": 1935, + "cast": [ + "Paul Lukas", + "Alison Skipworth", + "Rosalind Russell" + ], + "genres": [ + "Comedy", + "Mystery" + ] + }, + { + "title": "Champagne for Breakfast", + "year": 1935, + "cast": [ + "Mary Carlisle", + "Hardie Albright" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Charlie Chan in Egypt", + "year": 1935, + "cast": [ + "Warner Oland", + "Rita Hayworth", + "Pat Paterson" + ], + "genres": [ + "Mystery", + "Comedy" + ] + }, + { + "title": "Charlie Chan in Paris", + "year": 1935, + "cast": [ + "Warner Oland", + "Mary Brian" + ], + "genres": [ + "Mystery", + "Comedy" + ] + }, + { + "title": "Charlie Chan in Shanghai", + "year": 1935, + "cast": [ + "Warner Oland", + "Irene Hervey", + "Jon Hall" + ], + "genres": [ + "Mystery", + "Comedy" + ] + }, + { + "title": "Chasing Yesterday", + "year": 1935, + "cast": [ + "Anne Shirley", + "O. P. Heggie", + "Helen Westley" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Cheers of the Crowd", + "year": 1935, + "cast": [ + "Russell Hopton", + "Irene Ware" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "China Seas", + "year": 1935, + "cast": [ + "Clark Gable", + "Jean Harlow", + "Wallace Beery" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Chinatown Squad", + "year": 1935, + "cast": [ + "Lyle Talbot", + "Valerie Hobson" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Circumstantial Evidence", + "year": 1935, + "cast": [ + "Chick Chandler", + "Shirley Grey", + "Claude King" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "Clive of India", + "year": 1935, + "cast": [ + "Ronald Colman", + "Loretta Young", + "Colin Clive" + ], + "genres": [ + "Historical" + ] + }, + { + "title": "College Scandal", + "year": 1935, + "cast": [ + "Arline Judge", + "Kent Taylor", + "Wendy Barrie" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Collegiate", + "year": 1935, + "cast": [ + "Jack Oakie", + "Frances Langford", + "Betty Grable" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Condemned to Live", + "year": 1935, + "cast": [ + "Ralph Morgan", + "Maxine Doyle", + "Russell Gleason" + ], + "genres": [ + "Mystery", + "Horror" + ] + }, + { + "title": "Confidential", + "year": 1935, + "cast": [ + "Donald Cook", + "Evalyn Knapp" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Convention Girl", + "year": 1935, + "cast": [ + "Rose Hobart", + "Weldon Heyburn" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Coronado", + "year": 1935, + "cast": [ + "Alice White", + "Johnny Downs", + "Eddy Duchin" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The County Chairman", + "year": 1935, + "cast": [ + "Will Rogers", + "Evelyn Venable" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Cowboy Millionaire", + "year": 1935, + "cast": [ + "George O'Brien", + "Edgar Kennedy" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Crime and Punishment", + "year": 1935, + "cast": [ + "Peter Lorre", + "Edward Arnold", + "Marian Marsh" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "The Crime of Dr. Crespi", + "year": 1935, + "cast": [ + "Erich von Stroheim", + "Dwight Frye" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Crimson Trail", + "year": 1935, + "cast": [ + "Buck Jones", + "Polly Ann Young", + "Ward Bond" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Crusades", + "year": 1935, + "cast": [ + "Loretta Young", + "Henry Wilcoxon", + "C. Aubrey Smith" + ], + "genres": [ + "Drama", + "Adventure" + ] + }, + { + "title": "Curly Top", + "year": 1935, + "cast": [ + "Shirley Temple", + "John Boles", + "Rochelle Hudson" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Danger Ahead", + "year": 1935, + "cast": [ + "Lawrence Gray", + "Fuzzy Knight", + "Sheila Bromley" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "Dangerous", + "year": 1935, + "cast": [ + "Bette Davis", + "Franchot Tone", + "Alison Skipworth" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dante's Inferno", + "year": 1935, + "cast": [ + "Spencer Tracy", + "Henry B. Walthall", + "Rita Hayworth" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Daring Young Man", + "year": 1935, + "cast": [ + "James Dunn", + "Mae Clarke", + "Neil Hamilton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Dark Angel", + "year": 1935, + "cast": [ + "Merle Oberon", + "Fredric March", + "Herbert Marshall" + ], + "genres": [ + "Drama", + "Romance" + ] + }, + { + "title": "David Copperfield", + "year": 1935, + "cast": [ + "Frank Lawton", + "Roland Young", + "Maureen O'Sullivan" + ], + "genres": [ + "Drama", + "Romance" + ] + }, + { + "title": "The Dawn Rider", + "year": 1935, + "cast": [ + "John Wayne", + "Marion Burns" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Death Flies East", + "year": 1935, + "cast": [ + "Conrad Nagel", + "Florence Rice" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Death from a Distance", + "year": 1935, + "cast": [ + "Russell Hopton", + "Lola Lane" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Desert Trail", + "year": 1935, + "cast": [ + "John Wayne", + "Mary Kornman" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Devil Dogs of the Air", + "year": 1935, + "cast": [ + "James Cagney", + "Pat O'Brien", + "Margaret Lindsay" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Devil is a Woman", + "year": 1935, + "cast": [ + "Marlene Dietrich", + "Lionel Atwill", + "Cesar Romero" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Diamond Jim", + "year": 1935, + "cast": [ + "Edward Arnold", + "Jean Arthur", + "Binnie Barnes" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Dinky", + "year": 1935, + "cast": [ + "Jackie Cooper", + "Mary Astor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dizzy Dames", + "year": 1935, + "cast": [ + "Marjorie Rambeau", + "Florine McKinney" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Dog of Flanders", + "year": 1935, + "cast": [ + "Frankie Thomas", + "O. P. Heggie", + "Helen Parrish" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Don't Bet on Blondes", + "year": 1935, + "cast": [ + "Warren William", + "Claire Dodd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Doubting Thomas", + "year": 1935, + "cast": [ + "Will Rogers", + "Billie Burke", + "Alison Skipworth" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Dr. Socrates", + "year": 1935, + "cast": [ + "Paul Muni", + "Ann Dvorak" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Dressed to Thrill", + "year": 1935, + "cast": [ + "Tutta Rolf", + "Clive Brook" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Eagle's Brood", + "year": 1935, + "cast": [ + "William Boyd", + "James Ellison" + ], + "genres": [ + "Western" + ] + }, + { + "title": "East of Java", + "year": 1935, + "cast": [ + "Charles Bickford", + "Elizabeth Young", + "Frank Albertson" + ], + "genres": [ + "Adventure", + "Drama" + ] + }, + { + "title": "Eight Bells", + "year": 1935, + "cast": [ + "Ann Sothern", + "Ralph Bellamy", + "Catherine Doucet" + ], + "genres": [ + "Drama", + "Adventure" + ] + }, + { + "title": "Enchanted April", + "year": 1935, + "cast": [ + "Ann Harding", + "Frank Morgan", + "Jane Baxter" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Enter Madame", + "year": 1935, + "cast": [ + "Cary Grant", + "Elissa Landi" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Escapade", + "year": 1935, + "cast": [ + "William Powell", + "Luise Rainer", + "Reginald Owen" + ], + "genres": [ + "Comedy", + "Romance" + ] + }, + { + "title": "Escape from Devil's Island", + "year": 1935, + "cast": [ + "Victor Jory", + "Florence Rice" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Every Night at Eight", + "year": 1935, + "cast": [ + "George Raft", + "Alice Faye", + "Frances Langford" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "False Pretenses", + "year": 1935, + "cast": [ + "Irene Ware", + "Sidney Blackmer" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Farmer Takes a Wife", + "year": 1935, + "cast": [ + "Henry Fonda", + "Janet Gaynor", + "Charles Bickford" + ], + "genres": [ + "Comedy", + "Romance" + ] + }, + { + "title": "A Feather in Her Hat", + "year": 1935, + "cast": [ + "Pauline Lord", + "Basil Rathbone", + "Louis Hayward" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Fighting Caballero", + "year": 1935, + "cast": [ + "Rex Lease", + "Dorothy Gulliver" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Fighting Lady", + "year": 1935, + "cast": [ + "Peggy Shannon", + "Jack Mulhall" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Fighting Pilot", + "year": 1935, + "cast": [ + "Richard Talmadge", + "Gertrude Messinger" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Fighting Shadows", + "year": 1935, + "cast": [ + "Tim McCoy", + "Geneva Mitchell" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Fighting Youth", + "year": 1935, + "cast": [ + "Charles Farrell", + "June Martel" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Flame Within", + "year": 1935, + "cast": [ + "Maureen O'Sullivan", + "Ann Harding", + "Louis Heyward" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Florentine Dagger", + "year": 1935, + "cast": [ + "Donald Woods", + "Margaret Lindsay" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Folies Bergère de Paris", + "year": 1935, + "cast": [ + "Maurice Chevalier", + "Merle Oberon", + "Ann Sothern" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Forbidden Heaven", + "year": 1935, + "cast": [ + "Charles Farrell", + "Charlotte Henry" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Forced Landing", + "year": 1935, + "cast": [ + "Esther Ralston", + "Onslow Stevens" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Four Hours to Kill!", + "year": 1935, + "cast": [ + "Richard Barthelmess", + "Roscoe Karns", + "Ray Milland" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "Freckles", + "year": 1935, + "cast": [ + "Tom Brown", + "Virginia Weidler" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Frisco Kid", + "year": 1935, + "cast": [ + "James Cagney", + "Ricardo Cortez", + "Margaret Lindsay" + ], + "genres": [ + "Drama", + "Adventure" + ] + }, + { + "title": "Frisco Waterfront", + "year": 1935, + "cast": [ + "Ben Lyon", + "Helen Twelvetrees" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Front Page Woman", + "year": 1935, + "cast": [ + "Bette Davis", + "George Brent", + "Roscoe Karns" + ], + "genres": [ + "Drama", + "Romance" + ] + }, + { + "title": "G Men", + "year": 1935, + "cast": [ + "James Cagney", + "Ann Dvorak", + "Edward Pawley" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "Gallant Defender", + "year": 1935, + "cast": [ + "Charles Starrett", + "Joan Perry" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Gay Deception", + "year": 1935, + "cast": [ + "Francis Lederer", + "Frances Dee" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "George White's 1935 Scandals", + "year": 1935, + "cast": [ + "Alice Faye", + "Eleanor Powell" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Gigolette", + "year": 1935, + "cast": [ + "Adrienne Ames", + "Ralph Bellamy", + "Donald Cook", + "Robert Armstrong" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Gilded Lily", + "year": 1935, + "cast": [ + "Claudette Colbert", + "Fred MacMurray", + "Ray Milland" + ], + "genres": [ + "Comedy", + "Romance" + ] + }, + { + "title": "Ginger", + "year": 1935, + "cast": [ + "Jane Withers", + "O. P. Heggie" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Girl Friend", + "year": 1935, + "cast": [ + "Ann Sothern", + "Jack Haley" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Girl from 10th Avenue", + "year": 1935, + "cast": [ + "Bette Davis", + "Ian Hunter", + "Alison Skipworth" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Girl Who Came Back", + "year": 1935, + "cast": [ + "Shirley Grey", + "Noel Madison" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Glass Key", + "year": 1935, + "cast": [ + "George Raft", + "Edward Arnold", + "Claire Dodd" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "Go Into Your Dance", + "year": 1935, + "cast": [ + "Al Jolson", + "Ruby Keeler", + "Glenda Farrell" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Goin' to Town", + "year": 1935, + "cast": [ + "Mae West", + "Paul Cavanagh", + "Gilbert Emery" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "Going Highbrow", + "year": 1935, + "cast": [ + "Edward Everett Horton", + "ZaSu Pitts", + "Guy Kibbee" + ], + "genres": [ + "Comedy", + "Romance" + ] + }, + { + "title": "Gold Diggers of 1935", + "year": 1935, + "cast": [ + "Dick Powell", + "Alice Brady", + "Hugh Herbert" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "The Good Fairy", + "year": 1935, + "cast": [ + "Margaret Sullavan", + "Herbert Marshall", + "Frank Morgan" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "The Goose and the Gander", + "year": 1935, + "cast": [ + "Kay Francis", + "George Brent" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Grand Exit", + "year": 1935, + "cast": [ + "Edmund Lowe", + "Ann Sothern" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Grand Old Girl", + "year": 1935, + "cast": [ + "May Robson", + "Fred MacMurray", + "Edward Van Sloan" + ], + "genres": [ + "Drama", + "Romance" + ] + }, + { + "title": "Great God Gold", + "year": 1935, + "cast": [ + "Sidney Blackmer", + "Martha Sleeper" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Great Hotel Murder", + "year": 1935, + "cast": [ + "Edmund Lowe", + "Victor McLaglen", + "Rosemary Ames" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Great Impersonation", + "year": 1935, + "cast": [ + "Edmund Lowe", + "Valerie Hobson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Guard That Girl", + "year": 1935, + "cast": [ + "Florence Rice", + "Ward Bond" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Hands Across the Table", + "year": 1935, + "cast": [ + "Carole Lombard", + "Fred MacMurray", + "Ralph Bellamy" + ], + "genres": [ + "Comedy", + "Romance" + ] + }, + { + "title": "Happiness C.O.D.", + "year": 1935, + "cast": [ + "Donald Meek", + "Irene Ware" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hard Rock Harrigan", + "year": 1935, + "cast": [ + "George O'Brien", + "Irene Hervey" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Harmony Lane", + "year": 1935, + "cast": [ + "Douglass Montgomery", + "Evelyn Venable", + "Adrienne Ames" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "The Headline Woman", + "year": 1935, + "cast": [ + "Roger Pryor", + "Heather Angel", + "Franklin Pangborn" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "The Healer", + "year": 1935, + "cast": [ + "Ralph Bellamy", + "Judith Allen", + "Mickey Rooney" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Heir to Trouble", + "year": 1935, + "cast": [ + "Ken Maynard", + "Joan Perry" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Here Comes Cookie", + "year": 1935, + "cast": [ + "George Burns", + "Gracie Allen" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Here Comes the Band", + "year": 1935, + "cast": [ + "Ted Lewis", + "Virginia Bruce", + "Nat Pendleton" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "Here's to Romance", + "year": 1935, + "cast": [ + "Nino Martini", + "Genevieve Tobin", + "Anita Louise" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Hi, Gaucho!", + "year": 1935, + "cast": [ + "John Carroll", + "Steffi Duna", + "Rod La Rocque", + "Montagu Love" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "His Family Tree", + "year": 1935, + "cast": [ + "James Barton", + "Margaret Callahan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "His Night Out", + "year": 1935, + "cast": [ + "Edward Everett Horton", + "Irene Hervey" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hitch Hike Lady", + "year": 1935, + "cast": [ + "Alison Skipworth", + "Mae Clarke" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hold 'Em Yale", + "year": 1935, + "cast": [ + "Patricia Ellis", + "Cesar Romero" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Home on the Range", + "year": 1935, + "cast": [ + "Randolph Scott", + "Jackie Coogan", + "Evelyn Brent" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Honeymoon Limited", + "year": 1935, + "cast": [ + "Neil Hamilton", + "Irene Hervey" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hong Kong Nights", + "year": 1935, + "cast": [ + "Tom Keene", + "Wera Engels" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Hooray for Love", + "year": 1935, + "cast": [ + "Ann Sothern", + "Gene Raymond" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "The Hoosier Schoolmaster", + "year": 1935, + "cast": [ + "Norman Foster", + "Charlotte Henry" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hop-Along Cassidy", + "year": 1935, + "cast": [ + "William Boyd", + "James Ellison", + "Paula Stone" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Hot Off the Press", + "year": 1935, + "cast": [ + "Jack La Rue", + "Monte Blue" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hot Tip", + "year": 1935, + "cast": [ + "ZaSu Pitts", + "James Gleason", + "Margaret Callahan", + "Russell Gleason" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "I Dream Too Much", + "year": 1935, + "cast": [ + "Henry Fonda", + "Lily Pons", + "Lucille Ball" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "I Found Stella Parish", + "year": 1935, + "cast": [ + "Kay Francis", + "Ian Hunter", + "Paul Lukas" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "I Live for Love", + "year": 1935, + "cast": [ + "Dolores del Río", + "Everett Marshall", + "Don Alvarado" + ], + "genres": [ + "Musical", + "Romance" + ] + }, + { + "title": "I Live My Life", + "year": 1935, + "cast": [ + "Joan Crawford", + "Brian Aherne" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "I'll Love You Always", + "year": 1935, + "cast": [ + "Nancy Carroll", + "George Murphy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "I've Been Around", + "year": 1935, + "cast": [ + "Chester Morris", + "Rochelle Hudson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "If You Could Only Cook", + "year": 1935, + "cast": [ + "Herbert Marshall", + "Jean Arthur" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "The Imperfect Lady", + "year": 1935, + "cast": [ + "Frank Morgan", + "Cicely Courtneidge" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "In Caliente", + "year": 1935, + "cast": [ + "Dolores del Río", + "Pat O'Brien", + "Edward Everett Horton" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "In Old Kentucky", + "year": 1935, + "cast": [ + "Will Rogers", + "Dorothy Wilson", + "Charles Sellon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "In Person", + "year": 1935, + "cast": [ + "Ginger Rogers", + "George Brent", + "Alan Mowbray" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "In Spite of Danger", + "year": 1935, + "cast": [ + "Wallace Ford", + "Marian Marsh" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Informer", + "year": 1935, + "cast": [ + "Victor McLaglen", + "Preston Foster", + "Donald Meek" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Irish in Us", + "year": 1935, + "cast": [ + "James Cagney", + "Pat O'Brien", + "Olivia de Havilland" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "It Happened in New York", + "year": 1935, + "cast": [ + "Gertrude Michael", + "Heather Angel", + "Lyle Talbot" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "It's a Great Life", + "year": 1935, + "cast": [ + "Joe Morrison", + "Paul Kelly" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "It's a Small World", + "year": 1935, + "cast": [ + "Spencer Tracy", + "Wendy Barrie", + "Raymond Walburn" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "It's in the Air", + "year": 1935, + "cast": [ + "Jack Benny", + "Una Merkel", + "Mary Carlisle" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Ivory-Handled Gun", + "year": 1935, + "cast": [ + "Buck Jones", + "Walter Miller" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Jalna", + "year": 1935, + "cast": [ + "Kay Johnson", + "Ian Hunter", + "C. Aubrey Smith" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Judgement Book", + "year": 1935, + "cast": [ + "Conway Tearle", + "Bernadene Hayes" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Justice of the Range", + "year": 1935, + "cast": [ + "Ward Bond", + "Gabby Hayes", + "Tim McCoy" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Keeper of the Bees", + "year": 1935, + "cast": [ + "Neil Hamilton", + "Betty Furness" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Kind Lady", + "year": 1935, + "cast": [ + "Aline MacMahon", + "Basil Rathbone" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "King Solomon of Broadway", + "year": 1935, + "cast": [ + "Edmund Lowe", + "Dorothy Page" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Laddie", + "year": 1935, + "cast": [ + "John Beal", + "Gloria Stuart", + "Virginia Weidler" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Ladies Crave Excitement", + "year": 1935, + "cast": [ + "Norman Foster", + "Esther Ralston" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Ladies Love Danger", + "year": 1935, + "cast": [ + "Mona Barrie", + "Gilbert Roland" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Lady in Scarlet", + "year": 1935, + "cast": [ + "Reginald Denny", + "Patricia Farr", + "Jamison Thomas" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Lady Tubbs", + "year": 1935, + "cast": [ + "Alice Brady", + "Douglass Montgomery", + "Anita Louise" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Laramie Kid", + "year": 1935, + "cast": [ + "Tom Tyler", + "Alberta Vaughn" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Last Days of Pompeii", + "year": 1935, + "cast": [ + "Preston Foster", + "Basil Rathbone", + "Alan Hale" + ], + "genres": [ + "Drama", + "Adventure" + ] + }, + { + "title": "Last of the Pagans", + "year": 1935, + "cast": [ + "Ray Mala", + "Lotus Long" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Last Outpost", + "year": 1935, + "cast": [ + "Cary Grant", + "Claude Rains", + "Kathleen Burke" + ], + "genres": [ + "Drama", + "War" + ] + }, + { + "title": "Law Beyond the Range", + "year": 1935, + "cast": [ + "Tim McCoy", + "Billie Seward" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Lawless Range", + "year": 1935, + "cast": [ + "John Wayne", + "Sheila Bromley" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Lawless Riders", + "year": 1935, + "cast": [ + "Ken Maynard", + "Geneva Mitchell" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Let 'Em Have It", + "year": 1935, + "cast": [ + "Richard Arlen", + "Virginia Bruce" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Let's Live Tonight", + "year": 1935, + "cast": [ + "Lilian Harvey", + "Tullio Carminati", + "Hugh Williams" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Life Begins at 40", + "year": 1935, + "cast": [ + "Will Rogers", + "Rochelle Hudson", + "George Barbier" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Life Returns", + "year": 1935, + "cast": [ + "Onslow Stevens", + "Lois Wilson" + ], + "genres": [ + "Drama", + "Science Fiction" + ] + }, + { + "title": "Little Big Shot", + "year": 1935, + "cast": [ + "Robert Armstrong", + "Sybil Jason", + "Ward Bond" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Little Colonel", + "year": 1935, + "cast": [ + "Shirley Temple", + "Lionel Barrymore", + "Hattie McDaniel" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Littlest Rebel", + "year": 1935, + "cast": [ + "Shirley Temple", + "John Boles", + "Jack Holt" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Lives of a Bengal Lancer", + "year": 1935, + "cast": [ + "Gary Cooper", + "Franchot Tone", + "Richard Cromwell" + ], + "genres": [ + "Drama", + "Adventure" + ] + }, + { + "title": "The Live Wire", + "year": 1935, + "cast": [ + "Richard Talmadge", + "Alberta Vaughn" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Living on Velvet", + "year": 1935, + "cast": [ + "George Brent", + "Kay Francis", + "Henry O'Neill" + ], + "genres": [ + "Drama", + "Romance" + ] + }, + { + "title": "The Lone Wolf Returns", + "year": 1935, + "cast": [ + "Melvyn Douglas", + "Gail Patrick" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Lottery Lover", + "year": 1935, + "cast": [ + "Lew Ayres", + "Pat Paterson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Love in Bloom", + "year": 1935, + "cast": [ + "George Burns", + "Gracie Allen", + "Dixie Lee" + ], + "genres": [ + "Comedy", + "Romance" + ] + }, + { + "title": "Love Me Forever", + "year": 1935, + "cast": [ + "Grace Moore", + "Leo Carrillo", + "Spring Byington" + ], + "genres": [ + "Drama", + "Musical" + ] + }, + { + "title": "Mad Love", + "year": 1935, + "cast": [ + "Peter Lorre", + "Frances Drake", + "Colin Clive" + ], + "genres": [ + "Drama", + "Horror" + ] + }, + { + "title": "Magnificent Obsession", + "year": 1935, + "cast": [ + "Robert Taylor", + "Irene Dunne", + "Ralph Morgan" + ], + "genres": [ + "Drama", + "Romance" + ] + }, + { + "title": "Make a Million", + "year": 1935, + "cast": [ + "Charles Starrett", + "Pauline Brooks", + "James Burke" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Man of Iron", + "year": 1935, + "cast": [ + "Barton MacLane", + "Mary Astor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Man on the Flying Trapeze", + "year": 1935, + "cast": [ + "W. C. Fields", + "Kathleen Howard", + "Mary Brian" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Man Who Broke the Bank at Monte Carlo", + "year": 1935, + "cast": [ + "Ronald Colman", + "Joan Bennett", + "Colin Clive" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Manhattan Moon", + "year": 1935, + "cast": [ + "Ricardo Cortez", + "Dorothy Page", + "Hugh O'Connell" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "Mark of the Vampire", + "year": 1935, + "cast": [ + "Bela Lugosi", + "Lionel Barrymore", + "Elizabeth Allan" + ], + "genres": [ + "Mystery", + "Horror" + ] + }, + { + "title": "Mary Burns, Fugitive", + "year": 1935, + "cast": [ + "Sylvia Sidney", + "Melvyn Douglas" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Mary Jane's Pa", + "year": 1935, + "cast": [ + "Aline MacMahon", + "Guy Kibbee" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Maybe It's Love", + "year": 1935, + "cast": [ + "Gloria Stuart", + "Ross Alexander", + "Ruth Donnelly" + ], + "genres": [ + "Comedy", + "Romance" + ] + }, + { + "title": "McFadden's Flats", + "year": 1935, + "cast": [ + "Walter C. Kelly", + "Andy Clyde" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Melody Lingers On", + "year": 1935, + "cast": [ + "Josephine Hutchinson", + "Mona Barrie" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Melody Trail", + "year": 1935, + "cast": [ + "Gene Autry", + "Ann Rutherford" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Men of Action", + "year": 1935, + "cast": [ + "Frankie Darro", + "Edwin Maxwell", + "Fred Kohler" + ], + "genres": [ + "Drama", + "Action" + ] + }, + { + "title": "Men of the Hour", + "year": 1935, + "cast": [ + "Richard Cromwell", + "Billie Seward", + "Wallace Ford" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Men Without Names", + "year": 1935, + "cast": [ + "Fred MacMurray", + "Madge Evans", + "J. C. Nugent" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "Metropolitan", + "year": 1935, + "cast": [ + "Lawrence Tibbett", + "Alice Brady", + "Virginia Bruce" + ], + "genres": [ + "Drama", + "Musical" + ] + }, + { + "title": "Midnight Phantom", + "year": 1935, + "cast": [ + "Reginald Denny", + "Claudia Dell", + "Lloyd Hughes" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "A Midsummer Night's Dream", + "year": 1935, + "cast": [ + "Olivia de Havilland", + "James Cagney", + "Mickey Rooney" + ], + "genres": [ + "Comedy", + "Fantasy" + ] + }, + { + "title": "Millions in the Air", + "year": 1935, + "cast": [ + "John Howard", + "Wendy Barrie" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Les Misérables", + "year": 1935, + "cast": [ + "Charles Laughton", + "Fredric March", + "Rochelle Hudson" + ], + "genres": [ + "Drama", + "Romance" + ] + }, + { + "title": "Miss Pacific Fleet", + "year": 1935, + "cast": [ + "Joan Blondell", + "Glenda Farrell", + "Hugh Herbert" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mississippi", + "year": 1935, + "cast": [ + "Bing Crosby", + "Joan Bennett", + "W. C. Fields" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "Mister Dynamite", + "year": 1935, + "cast": [ + "Edmund Lowe", + "Matt McHugh", + "Esther Ralston" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "Moonlight on the Prairie", + "year": 1935, + "cast": [ + "Dick Foran", + "Sheila Bromley", + "George E. Stone" + ], + "genres": [ + "Western", + "Musical" + ] + }, + { + "title": "Motive for Revenge", + "year": 1935, + "cast": [ + "Donald Cook", + "Irene Hervey", + "Doris Lloyd" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Murder by Television", + "year": 1935, + "cast": [ + "Bela Lugosi", + "June Collyer" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Murder in Harlem", + "year": 1935, + "cast": [ + "Clarence Brooks", + "Dorothy Van Engle", + "Alice B. Russell" + ], + "genres": [ + "Drama", + "Mystery" + ] + }, + { + "title": "Murder in the Fleet", + "year": 1935, + "cast": [ + "Robert Taylor", + "Arthur Byron", + "Una Merkel" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Murder Man", + "year": 1935, + "cast": [ + "Spencer Tracy", + "Virginia Bruce", + "William Demarest" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "Murder on a Honeymoon", + "year": 1935, + "cast": [ + "Edna May Oliver", + "Leo G. Carroll", + "Lola Lane" + ], + "genres": [ + "Comedy", + "Mystery" + ] + }, + { + "title": "Music Is Magic", + "year": 1935, + "cast": [ + "Alice Faye", + "Bebe Daniels" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Mutiny Ahead", + "year": 1935, + "cast": [ + "Neil Hamilton", + "Kathleen Burke", + "Leon Ames" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Mutiny on the Bounty", + "year": 1935, + "cast": [ + "Charles Laughton", + "Clark Gable", + "Franchot Tone" + ], + "genres": [ + "Drama", + "Adventure" + ] + }, + { + "title": "The Mystery of Edwin Drood", + "year": 1935, + "cast": [ + "Claude Rains", + "Douglass Montgomery", + "E. E. Clive" + ], + "genres": [ + "Drama", + "Mystery" + ] + }, + { + "title": "The Mystery Man", + "year": 1935, + "cast": [ + "Robert Armstrong", + "Maxine Doyle" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Mystery Woman", + "year": 1935, + "cast": [ + "Mona Barrie", + "Gilbert Roland" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Naughty Marietta", + "year": 1935, + "cast": [ + "Jeanette MacDonald", + "Nelson Eddy", + "Elsa Lanchester" + ], + "genres": [ + "Drama", + "Musical" + ] + }, + { + "title": "Navy Wife", + "year": 1935, + "cast": [ + "Claire Trevor", + "Ralph Bellamy", + "Jane Darwell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Nevada", + "year": 1935, + "cast": [ + "Buster Crabbe", + "Kathleen Burke" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Never Too Late", + "year": 1935, + "cast": [ + "Richard Talmadge", + "Thelma White" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The New Frontier", + "year": 1935, + "cast": [ + "John Wayne", + "Muriel Evans" + ], + "genres": [ + "Western" + ] + }, + { + "title": "A Night at the Opera", + "year": 1935, + "cast": [ + "Marx Brothers", + "Kitty Carlisle" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "A Night at the Ritz", + "year": 1935, + "cast": [ + "William Gargan", + "Patricia Ellis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Night Is Young", + "year": 1935, + "cast": [ + "Ramon Novarro", + "Evelyn Laye" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Night Life of the Gods", + "year": 1935, + "cast": [ + "Alan Mowbray", + "Gilbert Emery", + "Henry Armetta" + ], + "genres": [ + "Comedy", + "Fantasy" + ] + }, + { + "title": "The Nitwits", + "year": 1935, + "cast": [ + "Bert Wheeler", + "Robert Woolsey" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "No More Ladies", + "year": 1935, + "cast": [ + "Joan Crawford", + "Robert Montgomery", + "Joan Fontaine" + ], + "genres": [ + "Comedy", + "Romance" + ] + }, + { + "title": "North of Arizona", + "year": 1935, + "cast": [ + "Jack Perrin", + "Blanche Mehaffey" + ], + "genres": [ + "Western" + ] + }, + { + "title": "A Notorious Gentleman", + "year": 1935, + "cast": [ + "Charles Bickford", + "Helen Vinson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Nut Farm", + "year": 1935, + "cast": [ + "Betty Alden", + "Oscar Apfel", + "Wallace Ford" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "O'Shaughnessy's Boy", + "year": 1935, + "cast": [ + "Wallace Beery", + "Leona Maricle", + "Jackie Cooper" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Oil for the Lamps of China", + "year": 1935, + "cast": [ + "Pat O'Brien", + "Josephine Hutchinson", + "Jean Muir" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Old Homestead", + "year": 1935, + "cast": [ + "Mary Carlisle", + "Lawrence Gray" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Old Man Rhythm", + "year": 1935, + "cast": [ + "Charles \"Buddy\" Rogers", + "George Barbier", + "Barbara Kent", + "Grace Bradley" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "On Probation", + "year": 1935, + "cast": [ + "Monte Blue", + "Lucile Browne" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Once in a Blue Moon", + "year": 1935, + "cast": [ + "Jimmy Savo", + "Cecilia Loftus", + "George Mitchell" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "One Frightened Night", + "year": 1935, + "cast": [ + "Lucien Littlefield", + "Mary Carlisle", + "Regis Toomey" + ], + "genres": [ + "Comedy", + "Horror" + ] + }, + { + "title": "One More Spring", + "year": 1935, + "cast": [ + "Janet Gaynor", + "Warner Baxter" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "One New York Night", + "year": 1935, + "cast": [ + "Franchot Tone", + "Una Merkel", + "Conrad Nagel" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "One Way Ticket", + "year": 1935, + "cast": [ + "Lloyd Nolan", + "Walter Connolly" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Orchids to You", + "year": 1935, + "cast": [ + "John Boles", + "Jean Muir", + "Charles Butterworth" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Our Little Girl", + "year": 1935, + "cast": [ + "Shirley Temple", + "Rosemary Ames", + "Joel McCrea" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Outlawed Guns", + "year": 1935, + "cast": [ + "Buck Jones", + "Roy D'Arcy" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Pace That Kills", + "year": 1935, + "cast": [ + "Sheila Bromley", + "Lois January", + "Charles Delaney" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Page Miss Glory", + "year": 1935, + "cast": [ + "Marion Davies", + "Pat O'Brien", + "Dick Powell" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Paradise Canyon", + "year": 1935, + "cast": [ + "John Wayne", + "Marion Burns" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Paris in Spring", + "year": 1935, + "cast": [ + "Mary Ellis", + "Tullio Carminati", + "Ida Lupino" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Party Wire", + "year": 1935, + "cast": [ + "Jean Arthur", + "Victor Jory", + "Charley Grapewin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Payoff", + "year": 1935, + "cast": [ + "James Dunn", + "Claire Dodd", + "Patricia Ellis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "People Will Talk", + "year": 1935, + "cast": [ + "Charles Ruggles", + "Mary Boland", + "Leila Hyams" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The People's Enemy", + "year": 1935, + "cast": [ + "Melvyn Douglas", + "Preston Foster", + "Lila Lee" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "The Perfect Clue", + "year": 1935, + "cast": [ + "David Manners", + "Betty Blythe" + ], + "genres": [ + "Comedy", + "Crime" + ] + }, + { + "title": "The Perfect Gentleman", + "year": 1935, + "cast": [ + "Frank Morgan", + "Cicely Courtneidge", + "Heather Angel" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Personal Maid's Secret", + "year": 1935, + "cast": [ + "Margaret Lindsay", + "Warren Hull", + "Anita Louise" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Peter Ibbetson", + "year": 1935, + "cast": [ + "Gary Cooper", + "Ann Harding", + "Ida Lupino" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Powdersmoke Range", + "year": 1935, + "cast": [ + "Harry Carey", + "Hoot Gibson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Princess O'Hara", + "year": 1935, + "cast": [ + "Jean Parker", + "Chester Morris", + "Ralph Remley" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Private Worlds", + "year": 1935, + "cast": [ + "Claudette Colbert", + "Joel McCrea", + "Charles Boyer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Professional Soldier", + "year": 1935, + "cast": [ + "Victor McLaglen", + "Freddie Bartholomew", + "Gloria Stuart" + ], + "genres": [ + "Drama", + "Adventure" + ] + }, + { + "title": "Public Hero No. 1", + "year": 1935, + "cast": [ + "Jean Arthur", + "Lionel Barrymore", + "Joseph Calleia" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "The Public Menace", + "year": 1935, + "cast": [ + "Jean Arthur", + "George Murphy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Public Opinion", + "year": 1935, + "cast": [ + "Lois Wilson", + "Shirley Grey" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Pursuit", + "year": 1935, + "cast": [ + "Chester Morris", + "Sally Eilers" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Racing Luck", + "year": 1935, + "cast": [ + "William Boyd", + "Barbara Worth" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Rainbow's End", + "year": 1935, + "cast": [ + "Hoot Gibson", + "Oscar Apfel", + "June Gale" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Rainbow Valley", + "year": 1935, + "cast": [ + "John Wayne", + "Lucile Browne" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Rainmakers", + "year": 1935, + "cast": [ + "Bert Wheeler", + "Robert Woolsey", + "Dorothy Lee" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Raven", + "year": 1935, + "cast": [ + "Bela Lugosi", + "Boris Karloff", + "Irene Ware" + ], + "genres": [ + "Drama", + "Horror" + ] + }, + { + "title": "Reckless", + "year": 1935, + "cast": [ + "Jean Harlow", + "William Powell", + "Rosalind Russell" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "Reckless Roads", + "year": 1935, + "cast": [ + "Judith Allen", + "Regis Toomey" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Red Blood of Courage", + "year": 1935, + "cast": [ + "Kermit Maynard", + "Ann Sheridan" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Red Hot Tires", + "year": 1935, + "cast": [ + "Lyle Talbot", + "Mary Astor" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Red Salute", + "year": 1935, + "cast": [ + "Barbara Stanwyck", + "Robert Young", + "Purnell Pratt" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Redheads on Parade", + "year": 1935, + "cast": [ + "John Boles", + "Dixie Lee" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Remember Last Night?", + "year": 1935, + "cast": [ + "Constance Cummings", + "Robert Young", + "Edward Arnold" + ], + "genres": [ + "Comedy", + "Mystery" + ] + }, + { + "title": "Rendezvous", + "year": 1935, + "cast": [ + "William Powell", + "Rosalind Russell", + "Cesar Romero" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Rendezvous at Midnight", + "year": 1935, + "cast": [ + "Ralph Bellamy", + "Valerie Hobson" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Rescue Squad", + "year": 1935, + "cast": [ + "Ralph Forbes", + "Verna Hillie" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Return of Peter Grimm", + "year": 1935, + "cast": [ + "Lionel Barrymore", + "Helen Mack", + "Edward Ellis", + "Donald Meek" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Revenge Rider", + "year": 1935, + "cast": [ + "Tim McCoy", + "Billie Seward" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Riding Wild", + "year": 1935, + "cast": [ + "Tim McCoy", + "Billie Seward" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Rio Rattler", + "year": 1935, + "cast": [ + "Tom Tyler", + "Marion Shilling" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Right to Live", + "year": 1935, + "cast": [ + "Josephine Hutchinson", + "George Brent", + "Peggy Wood" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Roberta", + "year": 1935, + "cast": [ + "Irene Dunne", + "Fred Astaire", + "Ginger Rogers" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Rocky Mountain Mystery", + "year": 1935, + "cast": [ + "Randolph Scott", + "Ann Sheridan" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Romance in Manhattan", + "year": 1935, + "cast": [ + "Ginger Rogers", + "Francis Lederer", + "Jimmy Butler" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Rough Riding Ranger", + "year": 1935, + "cast": [ + "Rex Lease", + "Bobby Nelson", + "Janet Chandler" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Ruggles of Red Gap", + "year": 1935, + "cast": [ + "Charles Laughton", + "Roland Young", + "ZaSu Pitts" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Rumba", + "year": 1935, + "cast": [ + "George Raft", + "Carole Lombard", + "Gail Patrick" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Rustler's Paradise", + "year": 1935, + "cast": [ + "Harry Carey", + "Slim Whitaker", + "Carmen Bailey" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Sagebrush Troubadour", + "year": 1935, + "cast": [ + "Gene Autry", + "Barbara Pepper" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Scoundrel", + "year": 1935, + "cast": [ + "Noël Coward", + "Martha Sleeper", + "Alexander Woollcott" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Seven Keys to Baldpate", + "year": 1935, + "cast": [ + "Gene Raymond", + "Eric Blore" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Shadow of Doubt", + "year": 1935, + "cast": [ + "Ricardo Cortez", + "Virginia Bruce" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Shadow of Silk Lennox", + "year": 1935, + "cast": [ + "Lon Chaney Jr.", + "Jack Mulhall" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Shanghai", + "year": 1935, + "cast": [ + "Loretta Young", + "Charles Boyer", + "Warner Oland" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "She", + "year": 1935, + "cast": [ + "Helen Gahagan", + "Randolph Scott", + "Nigel Bruce" + ], + "genres": [ + "Adventure", + "Fantasy" + ] + }, + { + "title": "She Couldn't Take It", + "year": 1935, + "cast": [ + "Joan Bennett", + "Walter Connolly", + "Wallace Ford" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "She Gets Her Man", + "year": 1935, + "cast": [ + "Ward Bond", + "ZaSu Pitts", + "Lucien Littlefield" + ], + "genres": [ + "Comedy", + "Crime" + ] + }, + { + "title": "She Married Her Boss", + "year": 1935, + "cast": [ + "Claudette Colbert", + "Melvyn Douglas", + "Jean Dixon" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Ship Cafe", + "year": 1935, + "cast": [ + "Carl Brisson", + "Arline Judge", + "Mady Christians" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Shipmates Forever", + "year": 1935, + "cast": [ + "Dick Powell", + "Ruby Keeler" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "A Shot in the Dark", + "year": 1935, + "cast": [ + "Charles Starrett", + "Marion Shilling" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Show Them No Mercy!", + "year": 1935, + "cast": [ + "Rochelle Hudson", + "Cesar Romero" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Silk Hat Kid", + "year": 1935, + "cast": [ + "Lew Ayres", + "Mae Clarke" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Silent Valley", + "year": 1935, + "cast": [ + "Tom Tyler", + "Al Bridge" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Silver Bullet", + "year": 1935, + "cast": [ + "Tom Tyler", + "Jayne Regan" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Singing Vagabond", + "year": 1935, + "cast": [ + "Gene Autry", + "Ann Rutherford" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Smart Girl", + "year": 1935, + "cast": [ + "Ida Lupino", + "Kent Taylor", + "Joseph Cawthorn" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "So Red the Rose", + "year": 1935, + "cast": [ + "Walter Connolly", + "Margaret Sullavan", + "Randolph Scott" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Social Error", + "year": 1935, + "cast": [ + "Gertrude Messinger", + "Monte Blue" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Society Doctor", + "year": 1935, + "cast": [ + "Robert Taylor", + "Virginia Bruce" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Society Fever", + "year": 1935, + "cast": [ + "Lois Wilson", + "Guinn Williams", + "Hedda Hopper" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Spanish Cape Mystery", + "year": 1935, + "cast": [ + "Donald Cook", + "Helen Twelvetrees" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Special Agent", + "year": 1935, + "cast": [ + "Bette Davis", + "Ricardo Cortez", + "George Brent" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "Speed Limited", + "year": 1935, + "cast": [ + "Ralph Graves", + "Evelyn Brent" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Splendor", + "year": 1935, + "cast": [ + "Miriam Hopkins", + "Joel McCrea", + "Helen Westley" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Spring Tonic", + "year": 1935, + "cast": [ + "Lew Ayres", + "Claire Trevor" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Square Shooter", + "year": 1935, + "cast": [ + "Tim McCoy", + "Jacqueline Wells" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Star of Midnight", + "year": 1935, + "cast": [ + "William Powell", + "Ginger Rogers", + "Ward Bond" + ], + "genres": [ + "Comedy", + "Mystery" + ] + }, + { + "title": "Stars Over Broadway", + "year": 1935, + "cast": [ + "Pat O'Brien", + "James Melton", + "Jane Froman" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "Steamboat Round the Bend", + "year": 1935, + "cast": [ + "Will Rogers", + "Anne Shirley", + "Eugene Pallette" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Stolen Harmony", + "year": 1935, + "cast": [ + "George Raft", + "Ben Bernie", + "Lloyd Nolan" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "Stone of Silver Creek", + "year": 1935, + "cast": [ + "Buck Jones", + "Noel Francis" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Storm Over the Andes", + "year": 1935, + "cast": [ + "Gene Lockhart", + "Jack Holt", + "Antonio Moreno" + ], + "genres": [ + "Drama", + "Adventure" + ] + }, + { + "title": "Stormy", + "year": 1935, + "cast": [ + "Noah Beery Jr.", + "Fred Kohler", + "J. Farrell MacDonald" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Straight from the Heart", + "year": 1935, + "cast": [ + "Mary Astor", + "Roger Pryor", + "Juanita Quigley" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Stranded", + "year": 1935, + "cast": [ + "George Brent", + "Kay Francis", + "Robert Barrat" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Strangers All", + "year": 1935, + "cast": [ + "May Robson", + "Preston Foster" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Streamline Express", + "year": 1935, + "cast": [ + "Victor Jory", + "Esther Ralston" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Sunset Range", + "year": 1935, + "cast": [ + "Hoot Gibson", + "Mary Doran" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Super-Speed", + "year": 1935, + "cast": [ + "Norman Foster", + "Florence Rice" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Sweepstake Annie", + "year": 1935, + "cast": [ + "Marian Nixon", + "Wera Engels" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Sweet Music", + "year": 1935, + "cast": [ + "Rudy Vallée", + "Ann Dvorak", + "Helen Morgan" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Sweet Surrender", + "year": 1935, + "cast": [ + "Frank Parker", + "Tamara Drasin" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Swellhead", + "year": 1935, + "cast": [ + "Wallace Ford", + "Barbara Kent" + ], + "genres": [ + "Sports" + ] + }, + { + "title": "Sylvia Scarlett", + "year": 1935, + "cast": [ + "Katharine Hepburn", + "Cary Grant", + "Edmund Gwenn" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Symphony of Living", + "year": 1935, + "cast": [ + "Evelyn Brent", + "Al Shean" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Tale of Two Cities", + "year": 1935, + "cast": [ + "Ronald Colman", + "Edna May Oliver", + "Basil Rathbone" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Texas Jack", + "year": 1935, + "cast": [ + "Jack Perrin", + "Jayne Regan" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Texas Terror", + "year": 1935, + "cast": [ + "John Wayne", + "Lucile Brown" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Thanks a Million", + "year": 1935, + "cast": [ + "Dick Powell", + "Raymond Walburn", + "Patsy Kelly" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "This Is the Life", + "year": 1935, + "cast": [ + "Jane Withers", + "Sally Blane" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Three Kids and a Queen", + "year": 1935, + "cast": [ + "May Robson", + "Henry Armetta" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Three Musketeers", + "year": 1935, + "cast": [ + "Paul Lukas", + "Walter Abel", + "Heather Angel" + ], + "genres": [ + "Adventure", + "Action" + ] + }, + { + "title": "The Throwback", + "year": 1935, + "cast": [ + "Buck Jones", + "Muriel Evans" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Thunder in the Night", + "year": 1935, + "cast": [ + "Edmund Lowe", + "Karen Morley", + "Paul Cavanagh" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Thunder Mountain", + "year": 1935, + "cast": [ + "George O'Brien", + "Frances Grant" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Times Square Lady", + "year": 1935, + "cast": [ + "Robert Taylor", + "Virginia Bruce", + "Pinky Tomlin" + ], + "genres": [ + "Romance", + "Musical" + ] + }, + { + "title": "To Beat the Band", + "year": 1935, + "cast": [ + "Hugh Herbert", + "Roger Pryor", + "Helen Broderick" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "Together We Live", + "year": 1935, + "cast": [ + "Ben Lyon", + "Esther Ralston" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Too Tough to Kill", + "year": 1935, + "cast": [ + "Victor Jory", + "Sally O'Neil" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Top Hat", + "year": 1935, + "cast": [ + "Fred Astaire", + "Ginger Rogers", + "Edward Everett Horton" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "Transient Lady", + "year": 1935, + "cast": [ + "Gene Raymond", + "Henry Hull", + "Frances Drake" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Traveling Saleslady", + "year": 1935, + "cast": [ + "Joan Blondell", + "Glenda Farrell", + "William Gargan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Tumbling Tumbleweeds", + "year": 1935, + "cast": [ + "Gene Autry", + "Smiley Burnette", + "Lucile Browne" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Two-Fisted", + "year": 1935, + "cast": [ + "Lee Tracy", + "Gail Patrick" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Two for Tonight", + "year": 1935, + "cast": [ + "Bing Crosby", + "Joan Bennett", + "Mary Boland" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Two Sinners", + "year": 1935, + "cast": [ + "Otto Kruger", + "Martha Sleeper" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Twenty Dollars a Week", + "year": 1935, + "cast": [ + "James Murray", + "Dorothy Revier", + "William Worthington" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Unconquered Bandit", + "year": 1935, + "cast": [ + "Tom Tyler", + "William Gould" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Under Pressure", + "year": 1935, + "cast": [ + "Edmund Lowe", + "Victor McLaglen", + "Charles Bickford" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Under the Pampas Moon", + "year": 1935, + "cast": [ + "Warner Baxter", + "Ketti Gallian", + "Jack La Rue" + ], + "genres": [ + "Western", + "Musical" + ] + }, + { + "title": "Unknown Woman", + "year": 1935, + "cast": [ + "Richard Cromwell", + "Marian Marsh" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Unwelcome Stranger", + "year": 1935, + "cast": [ + "Jack Holt", + "Mona Barrie", + "Ralph Morgan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Vagabond Lady", + "year": 1935, + "cast": [ + "Robert Young", + "Evelyn Venable", + "Reginald Denny" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Vanessa: Her Love Story", + "year": 1935, + "cast": [ + "Helen Hayes", + "Robert Montgomery", + "Otto Kruger" + ], + "genres": [ + "Drama", + "Romance" + ] + }, + { + "title": "Village Tale", + "year": 1935, + "cast": [ + "Randolph Scott", + "Kay Johnson", + "Robert Barrat" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Virginia Judge", + "year": 1935, + "cast": [ + "Marsha Hunt", + "Walter C. Kelly" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Wanderer of the Wasteland", + "year": 1935, + "cast": [ + "Dean Jagger", + "Gail Patrick" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Waterfront Lady", + "year": 1935, + "cast": [ + "Ann Rutherford", + "Frank Albertson", + "Ward Bond" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Way Down East", + "year": 1935, + "cast": [ + "Henry Fonda", + "Rochelle Hudson", + "Margaret Hamilton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Wedding Night", + "year": 1935, + "cast": [ + "Gary Cooper", + "Anna Sten", + "Helen Vinson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Welcome Home", + "year": 1935, + "cast": [ + "James Dunn", + "Arline Judge" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "We're in the Money", + "year": 1935, + "cast": [ + "Joan Blondell", + "Glenda Farrell", + "Hugh Herbert" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "We're Only Human", + "year": 1935, + "cast": [ + "Preston Foster", + "Jane Wyatt" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Werewolf of London", + "year": 1935, + "cast": [ + "Henry Hull", + "Warner Oland", + "Valerie Hobson" + ], + "genres": [ + "Horror", + "Science Fiction" + ] + }, + { + "title": "West Point of the Air", + "year": 1935, + "cast": [ + "Robert Taylor", + "Wallace Beery", + "Rosalind Russell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Western Courage", + "year": 1935, + "cast": [ + "Ken Maynard", + "Geneva Mitchell" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Western Frontier", + "year": 1935, + "cast": [ + "Ken Maynard", + "Lucile Browne" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Westward Ho", + "year": 1935, + "cast": [ + "John Wayne", + "Sheila Bromley", + "Hank Bell" + ], + "genres": [ + "Western" + ] + }, + { + "title": "What Price Crime", + "year": 1935, + "cast": [ + "Charles Starrett", + "Virginia Cherrill" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "When a Man's a Man", + "year": 1935, + "cast": [ + "George O'Brien", + "Dorothy Wilson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "While the Patient Slept", + "year": 1935, + "cast": [ + "Aline MacMahon", + "Guy Kibbee", + "Allen Jenkins" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Whipsaw", + "year": 1935, + "cast": [ + "Spencer Tracy", + "Myrna Loy", + "John Qualen" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Whispering Smith Speaks", + "year": 1935, + "cast": [ + "George O'Brien", + "Irene Ware" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The White Cockatoo", + "year": 1935, + "cast": [ + "Jean Muir", + "Ricardo Cortez" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "White Lies", + "year": 1935, + "cast": [ + "Victor Jory", + "Fay Wray", + "Walter Connolly" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Whole Town's Talking", + "year": 1935, + "cast": [ + "Edward G. Robinson", + "Jean Arthur", + "Arthur Byron" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Wings in the Dark", + "year": 1935, + "cast": [ + "Cary Grant", + "Myrna Loy", + "Matt McHugh" + ], + "genres": [ + "Drama", + "Adventure" + ] + }, + { + "title": "The Winning Ticket", + "year": 1935, + "cast": [ + "Leo Carrillo", + "Louise Fazenda" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Without Children", + "year": 1935, + "cast": [ + "Marguerite Churchill", + "Bruce Cabot", + "Evelyn Brent" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Without Regret", + "year": 1935, + "cast": [ + "Elissa Landi", + "Paul Cavanagh", + "Frances Drake" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Wolf Riders", + "year": 1935, + "cast": [ + "Jack Perrin", + "Lafe McKee" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Woman in Red", + "year": 1935, + "cast": [ + "Barbara Stanwyck", + "Genevieve Tobin", + "Gene Raymond" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Woman Wanted", + "year": 1935, + "cast": [ + "Maureen O'Sullivan", + "Joel McCrea", + "Louis Calhern" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Women Must Dress", + "year": 1935, + "cast": [ + "Minna Gombell", + "Lenita Lane" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Your Uncle Dudley", + "year": 1935, + "cast": [ + "Edward Everett Horton", + "Lois Wilson", + "John McGuire" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "13 Hours by Air", + "year": 1936, + "cast": [ + "Fred MacMurray", + "Joan Bennett", + "Brian Donlevy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "15 Maiden Lane", + "year": 1936, + "cast": [ + "Claire Trevor", + "Cesar Romero", + "Lloyd Nolan" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "36 Hours to Kill", + "year": 1936, + "cast": [ + "Brian Donlevy", + "Gloria Stuart", + "Warren Hymer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Absolute Quiet", + "year": 1936, + "cast": [ + "Lionel Atwill", + "Raymond Walburn", + "Irene Hervey" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Accusing Finger", + "year": 1936, + "cast": [ + "Paul Kelly", + "Kent Taylor", + "Marsha Hunt" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "Aces and Eights", + "year": 1936, + "cast": [ + "Tim McCoy", + "Luana Walters", + "Rex Lease" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Aces Wild", + "year": 1936, + "cast": [ + "Harry Carey", + "Gertrude Messinger" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Adventure in Manhattan", + "year": 1936, + "cast": [ + "Jean Arthur", + "Joel McCrea", + "Reginald Owen" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "After the Thin Man", + "year": 1936, + "cast": [ + "William Powell", + "Myrna Loy", + "James Stewart" + ], + "genres": [ + "Comedy", + "Mystery" + ] + }, + { + "title": "Alibi for Murder", + "year": 1936, + "cast": [ + "William Gargan", + "Marguerite Churchill" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "All American Chump", + "year": 1936, + "cast": [ + "Stuart Erwin", + "Betty Furness", + "Edmund Gwenn" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Along Came Love", + "year": 1936, + "cast": [ + "Irene Hervey", + "H. B. Warner", + "Charles Starrett" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Ambush Valley", + "year": 1936, + "cast": [ + "Bob Custer", + "Victoria Vinton" + ], + "genres": [ + "Western" + ] + }, + { + "title": "And So They Were Married", + "year": 1936, + "cast": [ + "Mary Astor", + "Melvyn Douglas", + "Edith Fellows" + ], + "genres": [ + "Comedy", + "Romance" + ] + }, + { + "title": "And Sudden Death", + "year": 1936, + "cast": [ + "Randolph Scott", + "Frances Drake" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Anthony Adverse", + "year": 1936, + "cast": [ + "Fredric March", + "Olivia de Havilland", + "Donald Woods", + "Anita Louise", + "Edmund Gwenn", + "Claude Rains", + "Louis Hayward", + "Gale Sondergaard", + "(", + "Academy Award for Best Supporting Actress", + ")" + ], + "genres": [ + "Drama", + "Romance" + ] + }, + { + "title": "Anything Goes", + "year": 1936, + "cast": [ + "Bing Crosby", + "Ethel Merman", + "Ida Lupino" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "Arizona Mahoney", + "year": 1936, + "cast": [ + "Joe Cook", + "Robert Cummings", + "June Martel" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Arizona Raiders", + "year": 1936, + "cast": [ + "Buster Crabbe", + "Raymond Hatton", + "Marsha Hunt" + ], + "genres": [ + "Western" + ] + }, + { + "title": "August Weekend", + "year": 1936, + "cast": [ + "Valerie Hobson", + "Paul Harvey" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Avenging Waters", + "year": 1936, + "cast": [ + "Ken Maynard", + "Beth Marion", + "Ward Bond" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Back to Nature", + "year": 1936, + "cast": [ + "Jed Prouty", + "Shirley Deane", + "Dixie Dunbar" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Banjo on My Knee", + "year": 1936, + "cast": [ + "Barbara Stanwyck", + "Joel McCrea", + "Walter Brennan" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "Below the Deadline", + "year": 1936, + "cast": [ + "Cecilia Parker", + "Russell Hopton", + "Theodore von Eltz" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Beloved Enemy", + "year": 1936, + "cast": [ + "Merle Oberon", + "Brian Aherne", + "David Niven" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Bengal Tiger", + "year": 1936, + "cast": [ + "Barton MacLane", + "June Travis" + ], + "genres": [ + "Drama", + "Adventure" + ] + }, + { + "title": "Beware of Ladies", + "year": 1936, + "cast": [ + "Donald Cook", + "Judith Allen" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Beyond the Caribbean", + "year": 1936, + "cast": [ + "André Roosevelt", + "Carol Jeffries" + ], + "genres": [ + "Drama", + "Adventure" + ] + }, + { + "title": "The Big Broadcast of 1937", + "year": 1936, + "cast": [ + "Jack Benny", + "George Burns", + "Gracie Allen" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "Big Brown Eyes", + "year": 1936, + "cast": [ + "Cary Grant", + "Joan Bennett", + "Walter Pidgeon" + ], + "genres": [ + "Comedy", + "Mystery" + ] + }, + { + "title": "The Big Game", + "year": 1936, + "cast": [ + "James Gleason", + "Bruce Cabot", + "June Travis" + ], + "genres": [ + "Drama", + "Sports" + ] + }, + { + "title": "The Big Noise", + "year": 1936, + "cast": [ + "Guy Kibbee", + "Warren Hull", + "Alma Lloyd" + ], + "genres": [ + "Crime", + "Comedy" + ] + }, + { + "title": "The Big Show", + "year": 1936, + "cast": [ + "Gene Autry", + "Sons of the Pioneers" + ], + "genres": [ + "Western", + "Musical" + ] + }, + { + "title": "Black Gold", + "year": 1936, + "cast": [ + "Frankie Darro", + "Gloria Shea" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Blackmailer", + "year": 1936, + "cast": [ + "William Gargan", + "Florence Rice", + "H. B. Warner" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Bohemian Girl", + "year": 1936, + "cast": [ + "Stan Laurel", + "Oliver Hardy", + "Thelma Todd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Bold Caballero", + "year": 1936, + "cast": [ + "Robert Livingston", + "Heather Angel", + "Sig Ruman" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Border Caballero", + "year": 1936, + "cast": [ + "Tim McCoy", + "Lois January" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Border Flight", + "year": 1936, + "cast": [ + "Frances Farmer", + "John Howard", + "Grant Withers" + ], + "genres": [ + "Drama", + "Adventure" + ] + }, + { + "title": "The Border Patrolman", + "year": 1936, + "cast": [ + "George O'Brien", + "Polly Ann Young", + "Mary Doran" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Born to Dance", + "year": 1936, + "cast": [ + "Eleanor Powell", + "James Stewart", + "Virginia Bruce" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "Born to Fight", + "year": 1936, + "cast": [ + "Frankie Darro", + "Jack La Rue", + "Sheila Bromley" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Boss Rider of Gun Creek", + "year": 1936, + "cast": [ + "Buck Jones", + "Muriel Evans" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Boulder Dam", + "year": 1936, + "cast": [ + "Ross Alexander", + "Patricia Ellis", + "Lyle Talbot" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Bride Walks Out", + "year": 1936, + "cast": [ + "Barbara Stanwyck", + "Gene Raymond", + "Hattie McDaniel" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Brides Are Like That", + "year": 1936, + "cast": [ + "Ross Alexander", + "Anita Louise" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Bridge of Sighs", + "year": 1936, + "cast": [ + "Onslow Stevens", + "Dorothy Tree", + "Walter Byron" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Brilliant Marriage", + "year": 1936, + "cast": [ + "Joan Marsh", + "Hugh Marlowe", + "Inez Courtney" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Bulldog Edition", + "year": 1936, + "cast": [ + "Evalyn Knapp", + "Ray Walker" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Bullets or Ballots", + "year": 1936, + "cast": [ + "Edward G. Robinson", + "Barton MacLane", + "Humphrey Bogart" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "Bunker Bean", + "year": 1936, + "cast": [ + "Owen Davis", + "Louise Latimer", + "Lucille Ball" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Burning Gold", + "year": 1936, + "cast": [ + "William Boyd", + "Judith Allen" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Cain and Mabel", + "year": 1936, + "cast": [ + "Marion Davies", + "Clark Gable", + "Allen Jenkins" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "California Mail", + "year": 1936, + "cast": [ + "Dick Foran", + "Edmund Cobb" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Call of the Prairie", + "year": 1936, + "cast": [ + "William Boyd", + "Muriel Evans" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Camille", + "year": 1936, + "cast": [ + "Greta Garbo", + "Robert Taylor", + "Lionel Barrymore" + ], + "genres": [ + "Drama", + "Romance" + ] + }, + { + "title": "Can This Be Dixie?", + "year": 1936, + "cast": [ + "Jane Withers", + "Slim Summerville", + "Hattie McDaniel" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "Captain Calamity", + "year": 1936, + "cast": [ + "George Houston", + "Marian Nixon", + "Vince Barnett" + ], + "genres": [ + "Adventure", + "Romance" + ] + }, + { + "title": "Captain January", + "year": 1936, + "cast": [ + "Shirley Temple", + "Buddy Ebsen", + "Guy Kibbee" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Captain's Kid", + "year": 1936, + "cast": [ + "May Robson", + "Sybil Jason", + "Guy Kibbee" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Career Woman", + "year": 1936, + "cast": [ + "Claire Trevor", + "Michael Whalen", + "Isabel Jewell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Caryl of the Mountains", + "year": 1936, + "cast": [ + "Lois Wilde", + "Ralph Bushman" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Case Against Mrs. Ames", + "year": 1936, + "cast": [ + "Madeleine Carroll", + "George Brent", + "Beulah Bondi" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Case of the Black Cat", + "year": 1936, + "cast": [ + "Ricardo Cortez", + "June Travis", + "Guy Usher" + ], + "genres": [ + "Drama", + "Mystery" + ] + }, + { + "title": "The Case of the Velvet Claws", + "year": 1936, + "cast": [ + "Warren William", + "Claire Dodd" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Cattle Thief", + "year": 1936, + "cast": [ + "Ken Maynard", + "Geneva Mitchell", + "Ward Bond" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Cavalcade of the West", + "year": 1936, + "cast": [ + "Hoot Gibson", + "Rex Lease", + "Marion Shilling" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Cavalry", + "year": 1936, + "cast": [ + "Bob Steele", + "Frances Grant" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Ceiling Zero", + "year": 1936, + "cast": [ + "James Cagney", + "Pat O'Brien", + "Barton MacLane" + ], + "genres": [ + "Drama", + "Adventure" + ] + }, + { + "title": "Champagne Charlie", + "year": 1936, + "cast": [ + "Paul Cavanagh", + "Thomas Beck" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Charge of the Light Brigade", + "year": 1936, + "cast": [ + "Errol Flynn", + "Olivia de Havilland", + "Donald Crisp" + ], + "genres": [ + "Drama", + "Adventure" + ] + }, + { + "title": "Charlie Chan at the Circus", + "year": 1936, + "cast": [ + "Warner Oland", + "Keye Luke" + ], + "genres": [ + "Comedy", + "Mystery" + ] + }, + { + "title": "Charlie Chan at the Opera", + "year": 1936, + "cast": [ + "Warner Oland", + "Keye Luke", + "Boris Karloff" + ], + "genres": [ + "Comedy", + "Mystery" + ] + }, + { + "title": "Charlie Chan at the Race Track", + "year": 1936, + "cast": [ + "Warner Oland", + "Keye Luke" + ], + "genres": [ + "Comedy", + "Mystery" + ] + }, + { + "title": "Charlie Chan's Secret", + "year": 1936, + "cast": [ + "Warner Oland", + "Rosina Lawrence" + ], + "genres": [ + "Comedy", + "Mystery" + ] + }, + { + "title": "Chatterbox", + "year": 1936, + "cast": [ + "Anne Shirley", + "Phillips Holmes", + "Lucille Ball" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "China Clipper", + "year": 1936, + "cast": [ + "Pat O'Brien", + "Ross Alexander", + "Humphrey Bogart" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Code of the Range", + "year": 1936, + "cast": [ + "Charles Starrett", + "Edward Coxen" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Colleen", + "year": 1936, + "cast": [ + "Dick Powell", + "Joan Blondell", + "Hugh Herbert" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "College Holiday", + "year": 1936, + "cast": [ + "George Burns", + "Gracie Allen", + "Jack Benny" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Come and Get It", + "year": 1936, + "cast": [ + "Edward Arnold", + "Joel McCrea", + "Frances Farmer", + "Walter Brennan", + "(", + "Academy Award for Best Supporting Actor", + ")" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Come Closer, Folks", + "year": 1936, + "cast": [ + "James Dunn", + "Marian Marsh", + "Wynne Gibson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Comin' Round the Mountain", + "year": 1936, + "cast": [ + "Gene Autry", + "Ann Rutherford" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Conflict", + "year": 1936, + "cast": [ + "John Wayne" + ], + "genres": [ + "Drama", + "Sport" + ] + }, + { + "title": "Counterfeit", + "year": 1936, + "cast": [ + "Lloyd Nolan", + "Chester Morris", + "George McKay" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "Counterfeit Lady", + "year": 1936, + "cast": [ + "Ralph Bellamy", + "Joan Perry" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Country Beyond", + "year": 1936, + "cast": [ + "Rochelle Hudson", + "Paul Kelly", + "Alan Hale" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Country Doctor", + "year": 1936, + "cast": [ + "Jean Hersholt", + "Jane Darwell", + "John Qualen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Country Gentlemen", + "year": 1936, + "cast": [ + "Chic Johnson", + "Ole Olsen", + "Joyce Compton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Cowboy and the Kid", + "year": 1936, + "cast": [ + "Buck Jones", + "Dorothy Revier" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Cowboy Star", + "year": 1936, + "cast": [ + "Charles Starrett", + "Iris Meredith" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Crack-Up", + "year": 1936, + "cast": [ + "Peter Lorre", + "Brian Donlevy", + "Helen Wood" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Craig's Wife", + "year": 1936, + "cast": [ + "Rosalind Russell", + "John Boles", + "Alma Kruger" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Crash Donovan", + "year": 1936, + "cast": [ + "Jack Holt", + "Ward Bond", + "Nan Grey" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "Crashing Thru Danger", + "year": 1936, + "cast": [ + "Ray Walker", + "Sally Blane", + "Guinn 'Big Boy' Williams" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Crime of Dr. Forbes", + "year": 1936, + "cast": [ + "Gloria Stuart", + "Robert Kent", + "Henry Armetta" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Dancing Feet", + "year": 1936, + "cast": [ + "Ben Lyon", + "Joan Marsh" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Dancing Pirate", + "year": 1936, + "cast": [ + "Charles Collins", + "Frank Morgan", + "Steffi Duna" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Dangerous Intrigue", + "year": 1936, + "cast": [ + "Ralph Bellamy", + "Gloria Shea", + "Joan Perry" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dangerous Waters", + "year": 1936, + "cast": [ + "Robert Armstrong", + "Jack Holt", + "Edwin Maxwell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Daniel Boone", + "year": 1936, + "cast": [ + "George O'Brien", + "Heather Angel", + "John Carradine" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Dark Hour", + "year": 1936, + "cast": [ + "Irene Ware", + "Hedda Hopper" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Death in the Air", + "year": 1936, + "cast": [ + "Henry Hall", + "Wheeler Oakman", + "Leon Ames" + ], + "genres": [ + "Drama", + "Mystery" + ] + }, + { + "title": "Desert Gold", + "year": 1936, + "cast": [ + "Buster Crabbe", + "Robert Cummings", + "Marsha Hunt" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Desert Guns", + "year": 1936, + "cast": [ + "Conway Tearle", + "Margaret Morris" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Desert Phantom", + "year": 1936, + "cast": [ + "Johnny Mack Brown", + "Sheila Bromley" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Desire", + "year": 1936, + "cast": [ + "Marlene Dietrich", + "Gary Cooper", + "William Frawley" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Devil Is a Sissy", + "year": 1936, + "cast": [ + "Freddie Bartholomew", + "Jackie Cooper", + "Mickey Rooney" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Devil on Horseback", + "year": 1936, + "cast": [ + "Lili Damita", + "Fred Keating" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Devil's Squadron", + "year": 1936, + "cast": [ + "Richard Dix", + "Lloyd Nolan", + "Karen Morley" + ], + "genres": [ + "Drama", + "Action" + ] + }, + { + "title": "The Devil-Doll", + "year": 1936, + "cast": [ + "Lionel Barrymore", + "Maureen O'Sullivan", + "Pedro de Cordoba" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Dimples", + "year": 1936, + "cast": [ + "Shirley Temple", + "Frank Morgan" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Dodge City Trail", + "year": 1936, + "cast": [ + "Charles Starrett", + "Marion Weldon" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Dodsworth", + "year": 1936, + "cast": [ + "Walter Huston", + "(", + "Best Actor", + "nominee)", + "Ruth Chatterton", + "Paul Lukas", + "Mary Astor", + "Kathryn Marlow", + "David Niven", + "Gregory Gaye", + "Maria Ouspenskaya", + "(", + "Best Supporting Actress", + "nominee)" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Don't Gamble with Love", + "year": 1936, + "cast": [ + "Ann Sothern", + "Bruce Cabot" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Don't Get Personal", + "year": 1936, + "cast": [ + "James Dunn", + "Sally Eilers" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Don't Turn 'Em Loose", + "year": 1936, + "cast": [ + "Lewis Stone", + "James Gleason", + "Bruce Cabot", + "Louise Latimer", + "Betty Grable" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Doughnuts and Society", + "year": 1936, + "cast": [ + "Maude Eburne", + "Louise Fazenda", + "Franklin Pangborn" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Down the Stretch", + "year": 1936, + "cast": [ + "Willie Best", + "Mickey Rooney", + "Patricia Ellis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Down to the Sea", + "year": 1936, + "cast": [ + "Ben Lyon", + "Ann Rutherford" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dracula's Daughter", + "year": 1936, + "cast": [ + "Otto Kruger", + "Gloria Holden", + "John Carradine" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Drag-Net", + "year": 1936, + "cast": [ + "Rod La Rocque", + "Marian Nixon", + "Betty Compson" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Drift Fence", + "year": 1936, + "cast": [ + "Buster Crabbe", + "Katherine DeMille", + "Tom Keene" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Early to Bed", + "year": 1936, + "cast": [ + "Charles Ruggles", + "Mary Boland", + "Lucien Littlefield" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Earthworm Tractors", + "year": 1936, + "cast": [ + "Joe E. Brown", + "June Travis", + "Guy Kibbee" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Easy Money", + "year": 1936, + "cast": [ + "Onslow Stevens", + "Kay Linaker" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Easy to Take", + "year": 1936, + "cast": [ + "Marsha Hunt", + "John Howard", + "Eugene Pallette" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Educating Father", + "year": 1936, + "cast": [ + "Jed Prouty", + "Shirley Deane", + "Dixie Dunbar" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Ellis Island", + "year": 1936, + "cast": [ + "Donald Cook", + "Peggy Shannon", + "Bradley Page" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "Empty Saddles", + "year": 1936, + "cast": [ + "Buck Jones", + "Louise Brooks" + ], + "genres": [ + "Western" + ] + }, + { + "title": "End of the Trail", + "year": 1936, + "cast": [ + "Jack Holt", + "Louise Henry" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Everybody's Old Man", + "year": 1936, + "cast": [ + "Irvin S. Cobb", + "Rochelle Hudson", + "Sara Haden" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Every Saturday Night", + "year": 1936, + "cast": [ + "June Lang", + "Thomas Beck" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Ex-Mrs. Bradford", + "year": 1936, + "cast": [ + "William Powell", + "Jean Arthur", + "Eric Blore" + ], + "genres": [ + "Comedy", + "Mystery" + ] + }, + { + "title": "Exclusive Story", + "year": 1936, + "cast": [ + "Franchot Tone", + "Madge Evans", + "Joseph Calleia" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "F-Man", + "year": 1936, + "cast": [ + "Jack Haley", + "William Frawley" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Face in the Fog", + "year": 1936, + "cast": [ + "Lawrence Gray", + "June Collyer", + "Forrest Taylor" + ], + "genres": [ + "Drama", + "Mystery" + ] + }, + { + "title": "The Farmer in the Dell", + "year": 1936, + "cast": [ + "Frank Albertson", + "Moroni Olsen", + "Lucille Ball" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "'Fast Bullets", + "year": 1936, + "cast": [ + "Tom Tyler", + "Rex Lease" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Fatal Lady", + "year": 1936, + "cast": [ + "Mary Ellis", + "Ruth Donnelly", + "Samuel S. Hinds" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Federal Agent", + "year": 1936, + "cast": [ + "William Boyd", + "Irene Ware" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Feud of the West", + "year": 1936, + "cast": [ + "Hoot Gibson", + "Joan Barclay" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Final Hour", + "year": 1936, + "cast": [ + "Ralph Bellamy", + "Marguerite Churchill" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The First Baby", + "year": 1936, + "cast": [ + "Marjorie Gateson", + "Shirley Deane", + "Hattie McDaniel" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Florida Special", + "year": 1936, + "cast": [ + "Frances Drake", + "Jack Oakie", + "Claude Gillingwater" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Flying Hostess", + "year": 1936, + "cast": [ + "William Gargan", + "Judith Barrett" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Follow the Fleet", + "year": 1936, + "cast": [ + "Fred Astaire", + "Ginger Rogers", + "Lucille Ball" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "Follow Your Heart", + "year": 1936, + "cast": [ + "Marion Talley", + "Michael Bartlett", + "Nigel Bruce" + ], + "genres": [ + "Drama", + "Musical" + ] + }, + { + "title": "For the Service", + "year": 1936, + "cast": [ + "Buck Jones", + "Beth Marion" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Forgotten Faces", + "year": 1936, + "cast": [ + "Herbert Marshall", + "Gertrude Michael" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Four Days' Wonder", + "year": 1936, + "cast": [ + "Kenneth Howell", + "Martha Sleeper" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Frankie and Johnny", + "year": 1936, + "cast": [ + "Helen Morgan", + "Chester Morris", + "Walter Kingsford" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Freshman Love", + "year": 1936, + "cast": [ + "Frank McHugh", + "Patricia Ellis", + "Mary Treen" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "From Nine to Nine", + "year": 1936, + "cast": [ + "Ruth Roland", + "Roland Drew" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Fugitive in the Sky", + "year": 1936, + "cast": [ + "Jean Muir", + "Warren Hull" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Fugitive Sheriff", + "year": 1936, + "cast": [ + "Ken Maynard", + "Beth Marion" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Fury", + "year": 1936, + "cast": [ + "Spencer Tracy", + "Sylvia Sidney", + "Walter Brennan" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "Gambling with Souls", + "year": 1936, + "cast": [ + "Wheeler Oakman", + "Bryant Washburn" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "The Garden Murder Case", + "year": 1936, + "cast": [ + "Edmund Lowe", + "Virginia Bruce", + "Benita Hume" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Garden of Allah", + "year": 1936, + "cast": [ + "Marlene Dietrich", + "Charles Boyer", + "Basil Rathbone" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Gay Desperado", + "year": 1936, + "cast": [ + "Ida Lupino", + "Leo Carrillo" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The General Died at Dawn", + "year": 1936, + "cast": [ + "Gary Cooper", + "Madeleine Carroll", + "Akim Tamiroff", + "(", + "Best Supporting Actor", + "nominee)" + ], + "genres": [ + "Drama", + "Adventure" + ] + }, + { + "title": "General Spanky", + "year": 1936, + "cast": [ + "George McFarland", + "Phillips Holmes", + "Rosina Lawrence" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Gentle Julia", + "year": 1936, + "cast": [ + "Jane Withers", + "Tom Brown", + "Marsha Hunt" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Gentleman from Louisiana", + "year": 1936, + "cast": [ + "Eddie Quillan", + "Charlotte Henry" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Ghost Patrol", + "year": 1936, + "cast": [ + "Tim McCoy", + "Claudia Dell" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Ghost-Town Gold", + "year": 1936, + "cast": [ + "Robert Livingston", + "Ray Corrigan", + "Max Terhune" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Ghost Town", + "year": 1936, + "cast": [ + "Harry Carey", + "David Sharpe", + "Jane Novak" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Girl from Mandalay", + "year": 1936, + "cast": [ + "Conrad Nagel", + "Kay Linaker", + "Esther Ralston" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Girl of the Ozarks", + "year": 1936, + "cast": [ + "Virginia Weidler", + "Henrietta Crosman", + "Leif Erickson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Girl on the Front Page", + "year": 1936, + "cast": [ + "Gloria Stuart", + "Edmund Lowe", + "Spring Byington" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Girls' Dormitory", + "year": 1936, + "cast": [ + "Herbert Marshall", + "Ruth Chatterton", + "Simone Simon" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Give Me Your Heart", + "year": 1936, + "cast": [ + "Kay Francis", + "George Brent", + "Roland Young", + "Patric Knowles" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Give Us This Night", + "year": 1936, + "cast": [ + "Gladys Swarthout", + "Jan Kiepura" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Go-Get-'Em, Haines", + "year": 1936, + "cast": [ + "William Boyd", + "Sheila Terry", + "Eleanor Hunt" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Go West, Young Man", + "year": 1936, + "cast": [ + "Mae West", + "Warren William", + "Alice Brady" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Gold Diggers of 1937", + "year": 1936, + "cast": [ + "Dick Powell", + "Joan Blondell", + "Victor Moore" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Golden Arrow", + "year": 1936, + "cast": [ + "Bette Davis", + "George Brent", + "Eugene Pallette" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Gorgeous Hussy", + "year": 1936, + "cast": [ + "Joan Crawford", + "Robert Taylor", + "Lionel Barrymore", + "Franchot Tone", + "Melvyn Douglas", + "James Stewart", + "Alison Skipworth", + "Beulah Bondi", + "(", + "Best Supporting Actress", + "nominee)" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Grand Jury", + "year": 1936, + "cast": [ + "Fred Stone", + "Louise Latimer", + "Owen Davis Jr." + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Great Guy", + "year": 1936, + "cast": [ + "James Cagney", + "Mae Clarke" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Great Ziegfeld", + "year": 1936, + "cast": [ + "William Powell", + "Myrna Loy", + "Luise Rainer", + "(", + "Academy Award for Best Actress", + ")" + ], + "genres": [ + "Musical", + "Biography" + ] + }, + { + "title": "The Green Pastures", + "year": 1936, + "cast": [ + "Rex Ingram", + "Al Stokes", + "Eddie Anderson" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "The Gun Ranger", + "year": 1936, + "cast": [ + "Bob Steele", + "Eleanor Stewart" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Guns and Guitars", + "year": 1936, + "cast": [ + "Gene Autry", + "Smiley Burnette" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Half Angel", + "year": 1936, + "cast": [ + "Frances Dee", + "Brian Donlevy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Happy Go Lucky", + "year": 1936, + "cast": [ + "Phil Regan", + "Evelyn Venable" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Harvester", + "year": 1936, + "cast": [ + "Alice Brady", + "Ann Rutherford" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hats Off", + "year": 1936, + "cast": [ + "Mae Clarke", + "John Payne", + "Luis Alberni" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Headin' for the Rio Grande", + "year": 1936, + "cast": [ + "Tex Ritter", + "Warner Richmond", + "Eleanor Stewart" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Heart of the West", + "year": 1936, + "cast": [ + "William Boyd", + "James Ellison" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Hearts Divided", + "year": 1936, + "cast": [ + "Claude Rains", + "Dick Powell", + "Marion Davies" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "Hearts in Bondage", + "year": 1936, + "cast": [ + "James Dunn", + "Mae Clarke", + "David Manners" + ], + "genres": [ + "War" + ] + }, + { + "title": "Hell-Ship Morgan", + "year": 1936, + "cast": [ + "George Bancroft", + "Ann Sothern" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Her Master's Voice", + "year": 1936, + "cast": [ + "Edward Everett Horton", + "Peggy Conklin", + "Laura Hope Crews" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Here Comes Carter", + "year": 1936, + "cast": [ + "Ross Alexander", + "Glenda Farrell", + "Anne Nagel" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Here Comes Trouble", + "year": 1936, + "cast": [ + "Paul Kelly", + "Arline Judge" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Heroes of the Range", + "year": 1936, + "cast": [ + "Ken Maynard", + "June Gale" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Hideaway Girl", + "year": 1936, + "cast": [ + "Shirley Ross", + "Robert Cummings", + "Martha Raye" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "High Tension", + "year": 1936, + "cast": [ + "Brian Donlevy", + "Glenda Farrell", + "Norman Foster" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "His Brother's Wife", + "year": 1936, + "cast": [ + "Robert Taylor", + "Barbara Stanwyck", + "Jean Hersholt" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hitch Hike to Heaven", + "year": 1936, + "cast": [ + "Henrietta Crosman", + "Herbert Rawlinson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hollywood Boulevard", + "year": 1936, + "cast": [ + "John Halliday", + "Robert Cummings", + "Marsha Hunt" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hopalong Cassidy Returns", + "year": 1936, + "cast": [ + "William Boyd", + "Gabby Hayes", + "Gail Sheridan" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Hot Money", + "year": 1936, + "cast": [ + "Joseph Cawthorn", + "Beverly Roberts", + "Ross Alexander" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The House of a Thousand Candles", + "year": 1936, + "cast": [ + "Phillips Holmes", + "Mae Clarke" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "House of Secrets", + "year": 1936, + "cast": [ + "Muriel Evans", + "Leslie Fenton", + "Noel Madison" + ], + "genres": [ + "Drama", + "Mystery" + ] + }, + { + "title": "Human Cargo", + "year": 1936, + "cast": [ + "Claire Trevor", + "Brian Donlevy", + "and", + "Alan Dinehart" + ], + "genres": [ + "Action" + ] + }, + { + "title": "I Conquer the Sea!", + "year": 1936, + "cast": [ + "Steffi Duna", + "Dennis Morgan", + "Douglas Walton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "I Cover Chinatown", + "year": 1936, + "cast": [ + "Elaine Shepard", + "Theodore von Eltz" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "I Married a Doctor", + "year": 1936, + "cast": [ + "Pat O'Brien", + "Josephine Hutchinson", + "Ross Alexander" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "I'd Give My Life", + "year": 1936, + "cast": [ + "Guy Standing", + "Frances Drake" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Idaho Kid", + "year": 1936, + "cast": [ + "Rex Bell", + "Marion Shilling", + "David Sharpe" + ], + "genres": [ + "Western" + ] + }, + { + "title": "In His Steps", + "year": 1936, + "cast": [ + "Eric Linden", + "Cecilia Parker" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Invisible Ray", + "year": 1936, + "cast": [ + "Boris Karloff", + "Bela Lugosi", + "Frances Drake" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Isle of Fury", + "year": 1936, + "cast": [ + "Humphrey Bogart", + "Margaret Lindsay", + "Donald Woods" + ], + "genres": [ + "Drama", + "Adventure" + ] + }, + { + "title": "It Couldn't Have Happened – But It Did", + "year": 1936, + "cast": [ + "Reginald Denny", + "Evelyn Brent", + "Jack La Rue" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "It Had to Happen", + "year": 1936, + "cast": [ + "George Raft", + "Rosalind Russell", + "Alan Dinehart" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "It's Up to You", + "year": 1936, + "cast": [ + "Erville Alderson", + "Betty Blythe", + "James P. Burtis" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Jailbreak", + "year": 1936, + "cast": [ + "Barton MacLane", + "June Travis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Jungle Princess", + "year": 1936, + "cast": [ + "Dorothy Lamour", + "Ray Milland", + "Molly Lamont" + ], + "genres": [ + "Drama", + "Adventure" + ] + }, + { + "title": "Kelly of the Secret Service", + "year": 1936, + "cast": [ + "Lloyd Hughes", + "Jack Mulhall", + "Sheila Bromley" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Kelly the Second", + "year": 1936, + "cast": [ + "Patsy Kelly", + "Guinn Williams", + "Charley Chase" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Kid Ranger", + "year": 1936, + "cast": [ + "Bob Steele", + "William Farnum", + "Joan Barclay" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Killer at Large", + "year": 1936, + "cast": [ + "Mary Brian", + "George McKay", + "Betty Compson" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "King of Burlesque", + "year": 1936, + "cast": [ + "Warner Baxter", + "Alice Faye", + "Fats Waller" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "King of Hockey", + "year": 1936, + "cast": [ + "Dick Purcell", + "Anne Nagel", + "Marie Wilson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "King of the Pecos", + "year": 1936, + "cast": [ + "John Wayne", + "Muriel Evans" + ], + "genres": [ + "Western" + ] + }, + { + "title": "King of the Royal Mounted", + "year": 1936, + "cast": [ + "Robert Kent", + "Rosalind Keith", + "Alan Dinehart" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The King Steps Out", + "year": 1936, + "cast": [ + "Grace Moore", + "Franchot Tone", + "Victor Jory" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Klondike Annie", + "year": 1936, + "cast": [ + "Mae West", + "Victor McLaglen" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Ladies in Love", + "year": 1936, + "cast": [ + "Loretta Young", + "Janet Gaynor", + "Don Ameche" + ], + "genres": [ + "Comedy", + "Romance" + ] + }, + { + "title": "Lady Be Careful", + "year": 1936, + "cast": [ + "Lew Ayres", + "Mary Carlisle" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Lady Consents", + "year": 1936, + "cast": [ + "Ann Harding", + "Herbert Marshall" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Lady from Nowhere", + "year": 1936, + "cast": [ + "Mary Astor", + "Charles Quigley" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Lady Luck", + "year": 1936, + "cast": [ + "Patricia Farr", + "Iris Adrian", + "Jameson Thomas" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Lady of Secrets", + "year": 1936, + "cast": [ + "Ruth Chatterton", + "Lionel Atwill", + "Otto Kruger" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Last of the Warrens", + "year": 1936, + "cast": [ + "Bob Steele", + "Margaret Marquis" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Last Outlaw", + "year": 1936, + "cast": [ + "Harry Carey", + "Hoot Gibson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Last of the Mohicans", + "year": 1936, + "cast": [ + "Randolph Scott", + "Bruce Cabot", + "Henry Wilcoxon" + ], + "genres": [ + "Drama", + "Adventure" + ] + }, + { + "title": "Laughing at Trouble", + "year": 1936, + "cast": [ + "Jane Darwell", + "Allan Lane" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Laughing Irish Eyes", + "year": 1936, + "cast": [ + "Phil Regan", + "Evalyn Knapp" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Law in Her Hands", + "year": 1936, + "cast": [ + "Margaret Lindsay", + "Glenda Farrell", + "Warren Hull" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Lawless Nineties", + "year": 1936, + "cast": [ + "John Wayne", + "Ann Rutherford", + "Gabby Hayes" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Leathernecks Have Landed", + "year": 1936, + "cast": [ + "Lew Ayres", + "Clay Clement", + "Ward Bond" + ], + "genres": [ + "Drama", + "Adventure" + ] + }, + { + "title": "The Leavenworth Case", + "year": 1936, + "cast": [ + "Donald Cook", + "Jean Rouverol" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Legion of Terror", + "year": 1936, + "cast": [ + "Bruce Cabot", + "Ward Bond", + "Marguerite Churchill" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "Let's Make a Million", + "year": 1936, + "cast": [ + "Charlotte Wynters", + "Edward Everett Horton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Let's Sing Again", + "year": 1936, + "cast": [ + "Bobby Breen", + "Henry Armetta", + "Vivienne Osborne" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Libeled Lady", + "year": 1936, + "cast": [ + "Jean Harlow", + "William Powell", + "Spencer Tracy" + ], + "genres": [ + "Comedy", + "Romance" + ] + }, + { + "title": "Lightnin' Bill Carson", + "year": 1936, + "cast": [ + "Tim McCoy", + "Lois January", + "Rex Lease" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Lion's Den", + "year": 1936, + "cast": [ + "Tim McCoy", + "Joan Woodbury" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Lion Man", + "year": 1936, + "cast": [ + "Jon Hall", + "Kathleen Burke" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Little Lord Fauntleroy", + "year": 1936, + "cast": [ + "Freddie Bartholomew", + "C. Aubrey Smith", + "Mickey Rooney" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Little Miss Nobody", + "year": 1936, + "cast": [ + "Jane Withers", + "Jane Darwell", + "Ralph Morgan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Little Red Schoolhouse", + "year": 1936, + "cast": [ + "Lloyd Hughes", + "Dickie Moore", + "Ann Doran" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Lloyd's of London", + "year": 1936, + "cast": [ + "Freddie Bartholomew", + "Madeleine Carroll", + "Tyrone Power" + ], + "genres": [ + "Historical" + ] + }, + { + "title": "The Lonely Trail", + "year": 1936, + "cast": [ + "John Wayne", + "Ann Rutherford" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Love Before Breakfast", + "year": 1936, + "cast": [ + "Carole Lombard", + "Cesar Romero", + "Preston Foster" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Love Begins at 20", + "year": 1936, + "cast": [ + "Hugh Herbert", + "Patricia Ellis", + "Warren Hull" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Love Letters of a Star", + "year": 1936, + "cast": [ + "Polly Rowles", + "Walter Coy", + "Ralph Forbes" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Love on a Bet", + "year": 1936, + "cast": [ + "Gene Raymond", + "Wendy Barrie", + "Helen Broderick" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Love on the Run", + "year": 1936, + "cast": [ + "Joan Crawford", + "Clark Gable", + "Franchot Tone" + ], + "genres": [ + "Comedy", + "Romance" + ] + }, + { + "title": "The Luckiest Girl in the World", + "year": 1936, + "cast": [ + "Jane Wyatt", + "Eugene Pallette", + "Catherine Doucet" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Lucky Terror", + "year": 1936, + "cast": [ + "Hoot Gibson", + "Charles Hill", + "Lona Andre" + ], + "genres": [ + "Western" + ] + }, + { + "title": "M'Liss", + "year": 1936, + "cast": [ + "Anne Shirley", + "John Beal", + "Guy Kibbee" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Mad Holiday", + "year": 1936, + "cast": [ + "Edmund Lowe", + "Elissa Landi", + "ZaSu Pitts" + ], + "genres": [ + "Comedy", + "Mystery" + ] + }, + { + "title": "Magnificent Brute", + "year": 1936, + "cast": [ + "Victor McLaglen", + "William Hall", + "Jean Dixon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Make Way for a Lady", + "year": 1936, + "cast": [ + "Anne Shirley", + "Herbert Marshall", + "Gertrude Michael" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Man Betrayed", + "year": 1936, + "cast": [ + "Edward J. Nugent", + "Kay Hughes", + "Theodore von Eltz" + ], + "genres": [ + "Crime", + "Comedy" + ] + }, + { + "title": "Man Hunt", + "year": 1936, + "cast": [ + "Ricardo Cortez", + "Marguerite Churchill" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Man of the Frontier", + "year": 1936, + "cast": [ + "Gene Autry", + "Smiley Burnette" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Man I Marry", + "year": 1936, + "cast": [ + "Doris Nolan", + "Nigel Bruce" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Man Who Lived Twice", + "year": 1936, + "cast": [ + "Ralph Bellamy", + "Thurston Hall", + "Isabel Jewell" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "The Mandarin Mystery", + "year": 1936, + "cast": [ + "Eddie Quillan", + "Charlotte Henry", + "Rita La Roy" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Marihuana", + "year": 1936, + "cast": [ + "Hugh McArthur", + "Dorothy Dehn", + "Paul Ellis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Mariners of the Sky", + "year": 1936, + "cast": [ + "William Gargan", + "Claire Dodd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mary of Scotland", + "year": 1936, + "cast": [ + "Katharine Hepburn", + "Fredric March", + "Moroni Olsen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Meet Nero Wolfe", + "year": 1936, + "cast": [ + "Edward Arnold", + "Lionel Stander", + "Dennie Moore" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "A Message to Garcia", + "year": 1936, + "cast": [ + "John Boles", + "Barbara Stanwyck", + "Wallace Beery" + ], + "genres": [ + "War" + ] + }, + { + "title": "The Milky Way", + "year": 1936, + "cast": [ + "Harold Lloyd", + "Adolphe Menjou", + "Helen Mack" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Millionaire Kid", + "year": 1936, + "cast": [ + "Bryant Washburn", + "Betty Compson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Mind Your Own Business", + "year": 1936, + "cast": [ + "Charles Ruggles", + "Alice Brady", + "Gene Lockhart" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Mine with the Iron Door", + "year": 1936, + "cast": [ + "Richard Arlen", + "Cecilia Parker" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Missing Girls", + "year": 1936, + "cast": [ + "Roger Pryor", + "Muriel Evans", + "Noel Madison" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "Modern Times", + "year": 1936, + "cast": [ + "Charles Chaplin", + "Paulette Goddard" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Moon's Our Home", + "year": 1936, + "cast": [ + "Henry Fonda", + "Margaret Sullavan", + "Walter Brennan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Moonlight Murder", + "year": 1936, + "cast": [ + "Chester Morris", + "Madge Evans", + "Benita Hume" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "More Than a Secretary", + "year": 1936, + "cast": [ + "Jean Arthur", + "George Brent", + "Ruth Donnelly" + ], + "genres": [ + "Comedy", + "Romance" + ] + }, + { + "title": "Mr. Cinderella", + "year": 1936, + "cast": [ + "Betty Furness", + "Arthur Treacher" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mr. Deeds Goes to Town", + "year": 1936, + "cast": [ + "Gary Cooper", + "(", + "Best Actor", + "nominee)", + "Jean Arthur", + "Lionel Stander" + ], + "genres": [ + "Comedy", + "Romance" + ] + }, + { + "title": "Mummy's Boys", + "year": 1936, + "cast": [ + "Bert Wheeler", + "Robert Woolsey", + "Barbara Pepper" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Murder at Glen Athol", + "year": 1936, + "cast": [ + "John Miljan", + "Irene Ware", + "Iris Adrian" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Murder by an Aristocrat", + "year": 1936, + "cast": [ + "Lyle Talbot", + "Marguerite Churchill", + "Claire Dodd" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Murder of Dr. Harrigan", + "year": 1936, + "cast": [ + "Ricardo Cortez", + "Kay Linaker", + "Mary Astor" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Murder on a Bridle Path", + "year": 1936, + "cast": [ + "James Gleason", + "Helen Broderick", + "Louise Latimer" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Murder with Pictures", + "year": 1936, + "cast": [ + "Lew Ayres", + "Gail Patrick" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Music Goes 'Round", + "year": 1936, + "cast": [ + "Harry Richman", + "Rochelle Hudson", + "Walter Connolly" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Muss 'Em Up", + "year": 1936, + "cast": [ + "Preston Foster", + "Margaret Callahan" + ], + "genres": [ + "Drama", + "Mystery" + ] + }, + { + "title": "My American Wife", + "year": 1936, + "cast": [ + "Francis Lederer", + "Ann Sothern", + "Billie Burke" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "My Man Godfrey", + "year": 1936, + "cast": [ + "William Powell", + "(", + "Best Actor", + "nominee)", + "Carole Lombard", + "(", + "Best Actress", + "nominee)", + "Alice Brady", + "(", + "Best Supporting Actress", + "nominee)", + "Gail Patrick", + "Jean Dixon", + "Eugene Pallette", + "Alan Mowbray", + "Mischa Auer", + "(", + "Best Supporting Actor", + "nominee)" + ], + "genres": [ + "Comedy", + "Romance" + ] + }, + { + "title": "My Marriage", + "year": 1936, + "cast": [ + "Claire Trevor", + "Kent Taylor", + "Pauline Frederick" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Mysterious Avenger", + "year": 1936, + "cast": [ + "Charles Starrett", + "Joan Perry" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Mysterious Crossing", + "year": 1936, + "cast": [ + "James Dunn", + "Jean Rogers" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Neighborhood House", + "year": 1936, + "cast": [ + "Charley Chase", + "Rosina Lawrence", + "Darla Hood" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Next Time We Love", + "year": 1936, + "cast": [ + "James Stewart", + "Margaret Sullavan", + "Ray Milland" + ], + "genres": [ + "Drama", + "Romance" + ] + }, + { + "title": "Night Cargo", + "year": 1936, + "cast": [ + "Lloyd Hughes", + "Julie Bishop" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Night Waitress", + "year": 1936, + "cast": [ + "Margot Grahame", + "Gordon Jones", + "Billy Gilbert" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "Nobody's Fool", + "year": 1936, + "cast": [ + "Edward Everett Horton", + "Glenda Farrell", + "Cesar Romero" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "North of Nome", + "year": 1936, + "cast": [ + "Jack Holt", + "Evelyn Venable" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "O'Malley of the Mounted", + "year": 1936, + "cast": [ + "George O'Brien", + "Irene Ware" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Oh, Susanna!", + "year": 1936, + "cast": [ + "Gene Autry", + "Frances Grant" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Old Corral", + "year": 1936, + "cast": [ + "Gene Autry", + "Irene Manning" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Old Hutch", + "year": 1936, + "cast": [ + "Wallace Beery", + "Cecilia Parker" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "One in a Million", + "year": 1936, + "cast": [ + "Sonja Henie", + "Adolphe Menjou", + "Don Ameche" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "One Rainy Afternoon", + "year": 1936, + "cast": [ + "Ida Lupino", + "Hugh Herbert", + "Roland Young" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Oregon Trail", + "year": 1936, + "cast": [ + "John Wayne", + "Ann Rutherford" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Our Relations", + "year": 1936, + "cast": [ + "Stan Laurel", + "Oliver Hardy", + "Alan Hale" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Paddy O'Day", + "year": 1936, + "cast": [ + "Jane Withers", + "Pinky Tomlin", + "Rita Hayworth" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Palm Springs", + "year": 1936, + "cast": [ + "Frances Langford", + "Guy Standing" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Panic on the Air", + "year": 1936, + "cast": [ + "Lew Ayres", + "Florence Rice" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Parole!", + "year": 1936, + "cast": [ + "Henry Hunter", + "Ann Preston", + "Anthony Quinn" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "Pennies from Heaven", + "year": 1936, + "cast": [ + "Bing Crosby", + "Madge Evans", + "Louis Armstrong" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "Pepper", + "year": 1936, + "cast": [ + "Jane Withers", + "Irvin S. Cobb", + "Dean Jagger" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Petrified Forest", + "year": 1936, + "cast": [ + "Bette Davis", + "Leslie Howard", + "Humphrey Bogart" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "Petticoat Fever", + "year": 1936, + "cast": [ + "Robert Montgomery", + "Myrna Loy", + "Reginald Owen" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Phantom of the Range", + "year": 1936, + "cast": [ + "Tom Tyler", + "Beth Marion" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Phantom Patrol", + "year": 1936, + "cast": [ + "Kermit Maynard", + "Joan Barclay" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Picadilly Jim", + "year": 1936, + "cast": [ + "Robert Montgomery", + "Frank Morgan", + "Billie Burke" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Pigskin Parade", + "year": 1936, + "cast": [ + "Stuart Erwin", + "(", + "Best Supporting Actor", + "nominee)", + "Patsy Kelly", + "Jack Haley" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "Pinto Rustlers", + "year": 1936, + "cast": [ + "Tom Tyler", + "George Walsh" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Plainsman", + "year": 1936, + "cast": [ + "Gary Cooper", + "Jean Arthur", + "James Ellison" + ], + "genres": [ + "Western", + "War" + ] + }, + { + "title": "The Plot Thickens", + "year": 1936, + "cast": [ + "James Gleason", + "ZaSu Pitts", + "Louise Latimer" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Polo Joe", + "year": 1936, + "cast": [ + "Joe E. Brown", + "Carol Hughes" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Poor Little Rich Girl", + "year": 1936, + "cast": [ + "Shirley Temple", + "Alice Faye", + "Jack Haley" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Poppy", + "year": 1936, + "cast": [ + "W. C. Fields", + "Rochelle Hudson", + "Richard Cromwell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Postal Inspector", + "year": 1936, + "cast": [ + "Patricia Ellis", + "Ricardo Cortez", + "Bela Lugosi" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The President's Mystery", + "year": 1936, + "cast": [ + "Henry Wilcoxon", + "Sidney Blackmer", + "Betty Furness" + ], + "genres": [ + "Drama", + "Mystery" + ] + }, + { + "title": "The Preview Murder Mystery", + "year": 1936, + "cast": [ + "Reginald Denny", + "Frances Drake", + "Gail Patrick" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Pride of the Marines", + "year": 1936, + "cast": [ + "Charles Bickford", + "Florence Rice" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Princess Comes Across", + "year": 1936, + "cast": [ + "Carole Lombard", + "Fred MacMurray" + ], + "genres": [ + "Comedy", + "Mystery" + ] + }, + { + "title": "Prison Shadows", + "year": 1936, + "cast": [ + "Edward J. Nugent", + "Lucille Lund", + "Joan Barclay" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Prisoner of Shark Island", + "year": 1936, + "cast": [ + "Warner Baxter", + "Gloria Stuart" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Private Number", + "year": 1936, + "cast": [ + "Loretta Young", + "Robert Taylor", + "Basil Rathbone" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Public Enemy's Wife", + "year": 1936, + "cast": [ + "Pat O'Brien", + "Margaret Lindsay", + "Cesar Romero" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Put on the Spot", + "year": 1936, + "cast": [ + "Edward Nugent", + "Maxine Doyle", + "Lucille Lund" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Racing Blood", + "year": 1936, + "cast": [ + "Frankie Darro", + "Kane Richmond", + "Gladys Blake" + ], + "genres": [ + "Sports" + ] + }, + { + "title": "Rainbow on the River", + "year": 1936, + "cast": [ + "Bobby Breen", + "May Robson", + "Charles Butterworth" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Ramona", + "year": 1936, + "cast": [ + "Loretta Young", + "Don Ameche" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Rebellion", + "year": 1936, + "cast": [ + "Tom Keene", + "Rita Hayworth", + "Duncan Renaldo" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Red Lights Ahead", + "year": 1936, + "cast": [ + "Andy Clyde", + "Lucile Gleason", + "Ann Doran" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Red River Valley", + "year": 1936, + "cast": [ + "Gene Autry", + "Frances Grant" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Reefer Madness", + "year": 1936, + "cast": [ + "Dorothy Short", + "Kenneth Craig" + ], + "genres": [] + }, + { + "title": "The Return of Jimmy Valentine", + "year": 1936, + "cast": [ + "Roger Pryor", + "Charlotte Henry" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Return of Sophie Lang", + "year": 1936, + "cast": [ + "Gertrude Michael", + "Guy Standing", + "Ray Milland" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Reunion", + "year": 1936, + "cast": [ + "Jean Hersholt", + "Rochelle Hudson", + "The", + "Dionne Quintuplets" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Revolt of the Zombies", + "year": 1936, + "cast": [ + "Dean Jagger", + "Dorothy Stone", + "Roy D'Arcy" + ], + "genres": [ + "Drama", + "Horror" + ] + }, + { + "title": "Rhythm on the Range", + "year": 1936, + "cast": [ + "Bing Crosby", + "Frances Farmer", + "Bob Burns" + ], + "genres": [ + "Musical", + "Western" + ] + }, + { + "title": "Ride 'Em Cowboy", + "year": 1936, + "cast": [ + "Buck Jones", + "Luana Walters" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Ride Ranger Ride", + "year": 1936, + "cast": [ + "Gene Autry", + "Kay Hughes" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Riding Avenger", + "year": 1936, + "cast": [ + "Hoot Gibson", + "Ruth Mix", + "June Gale" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Ridin' On", + "year": 1936, + "cast": [ + "Tom Tyler", + "Joan Barclay", + "Rex Lease" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Riffraff", + "year": 1936, + "cast": [ + "Spencer Tracy", + "Jean Harlow", + "Mickey Rooney" + ], + "genres": [ + "Comedy", + "Crime" + ] + }, + { + "title": "Ring Around the Moon", + "year": 1936, + "cast": [ + "Donald Cook", + "Erin O'Brien-Moore", + "Ann Doran" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Rio Grande Ranger", + "year": 1936, + "cast": [ + "Robert Allen", + "Iris Meredith" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Rio Grande Romance", + "year": 1936, + "cast": [ + "Edward J. Nugent", + "Maxine Doyle" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Road Gang", + "year": 1936, + "cast": [ + "Donald Woods", + "Kay Linaker" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Road to Glory", + "year": 1936, + "cast": [ + "Lionel Barrymore", + "Fredric March", + "June Lang" + ], + "genres": [ + "Drama", + "War" + ] + }, + { + "title": "Roaming Lady", + "year": 1936, + "cast": [ + "Fay Wray", + "Thurston Hall", + "Ralph Bellamy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Roamin' Wild", + "year": 1936, + "cast": [ + "Tom Tyler", + "Al Ferguson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Roarin' Guns", + "year": 1936, + "cast": [ + "Tim McCoy", + "Rex Lease]]" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Roarin' Lead", + "year": 1936, + "cast": [ + "Robert Livingston", + "Ray Corrigan" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Robin Hood of El Dorado", + "year": 1936, + "cast": [ + "Warner Baxter", + "Ann Loring", + "Bruce Cabot" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Rogues Tavern", + "year": 1936, + "cast": [ + "Wallace Ford", + "Joan Woodbury", + "Barbara Pepper" + ], + "genres": [ + "Comedy", + "Horror" + ] + }, + { + "title": "Romeo and Juliet", + "year": 1936, + "cast": [ + "Norma Shearer", + "(", + "Best Actress", + "nominee)", + "Leslie Howard", + "John Barrymore", + "Basil Rathbone", + "(", + "Best Supporting Actor", + "nominee)" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Rose Bowl", + "year": 1936, + "cast": [ + "Eleanore Whitney", + "Tom Brown", + "Buster Crabbe" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Rose Marie", + "year": 1936, + "cast": [ + "Jeanette MacDonald", + "Nelson Eddy", + "James Stewart" + ], + "genres": [ + "Western", + "Musical" + ] + }, + { + "title": "Rose of the Rancho", + "year": 1936, + "cast": [ + "John Boles", + "Gladys Swarthout", + "Charles Bickford" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "San Francisco", + "year": 1936, + "cast": [ + "Clark Gable", + "Jeanette MacDonald", + "Spencer Tracy", + "(", + "Best Actor", + "nominee)" + ], + "genres": [ + "Drama", + "Adventure" + ] + }, + { + "title": "Santa Fe Bound", + "year": 1936, + "cast": [ + "Tom Tyler", + "Richard Cramer" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Satan Met a Lady", + "year": 1936, + "cast": [ + "Bette Davis", + "Warren William", + "Alison Skipworth" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Sea Spoilers", + "year": 1936, + "cast": [ + "John Wayne", + "Nan Grey" + ], + "genres": [ + "Drama", + "Mystery" + ] + }, + { + "title": "Second Wife", + "year": 1936, + "cast": [ + "Gertrude Michael", + "Walter Abel" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Secret Patrol", + "year": 1936, + "cast": [ + "Charles Starrett", + "Henry Mollison" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Shakedown", + "year": 1936, + "cast": [ + "Lew Ayres", + "Joan Perry", + "Henry Mollison" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Show Boat", + "year": 1936, + "cast": [ + "Irene Dunne", + "Allan Jones", + "Paul Robeson" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Silly Billies", + "year": 1936, + "cast": [ + "Bert Wheeler", + "Robert Woolsey", + "Dorothy Lee" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Silks and Saddles", + "year": 1936, + "cast": [ + "Bruce Bennett", + "Toby Wing" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Silver Spurs", + "year": 1936, + "cast": [ + "Gabby Hayes", + "Buck Jones", + "Muriel Evans" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Sing, Baby, Sing", + "year": 1936, + "cast": [ + "Alice Faye", + "Adolphe Menjou", + "Gregory Ratoff" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Sing Me a Love Song", + "year": 1936, + "cast": [ + "James Melton", + "Patricia Ellis", + "ZaSu Pitts" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "The Singing Cowboy", + "year": 1936, + "cast": [ + "Gene Autry", + "Lois Wilde" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Singing Kid", + "year": 1936, + "cast": [ + "Al Jolson", + "Sybil Jason", + "Beverly Roberts" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Sinner Take All", + "year": 1936, + "cast": [ + "Bruce Cabot", + "Margaret Lindsay" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Sins of Man", + "year": 1936, + "cast": [ + "Jean Hersholt", + "Don Ameche", + "Allen Jenkins" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sitting on the Moon", + "year": 1936, + "cast": [ + "Roger Pryor", + "Grace Bradley" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Sky Parade", + "year": 1936, + "cast": [ + "William Gargan", + "Katherine DeMille" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Small Town Girl", + "year": 1936, + "cast": [ + "Robert Taylor", + "Janet Gaynor", + "James Stewart" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Smartest Girl in Town", + "year": 1936, + "cast": [ + "Ann Sothern", + "Gene Raymond", + "Eric Blore" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Snowed Under", + "year": 1936, + "cast": [ + "George Brent", + "Genevieve Tobin", + "Glenda Farrell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Soak the Rich", + "year": 1936, + "cast": [ + "Walter Connolly", + "Lionel Stander", + "Ilka Chase" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Son Comes Home", + "year": 1936, + "cast": [ + "Mary Boland", + "Julie Haydon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Song and Dance Man", + "year": 1936, + "cast": [ + "Claire Trevor", + "Michael Whalen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Song of the Gringo", + "year": 1936, + "cast": [ + "Tex Ritter", + "Joan Woodbury", + "Monte Blue" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Song of the Saddle", + "year": 1936, + "cast": [ + "Dick Foran", + "Alma Lloyd" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Song of the Trail", + "year": 1936, + "cast": [ + "Kermit Maynard", + "Evelyn Brent" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Sons o' Guns", + "year": 1936, + "cast": [ + "Joe E. Brown", + "Joan Blondell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Special Investigator", + "year": 1936, + "cast": [ + "Richard Dix", + "Margaret Callahan", + "Owen Davis Jr." + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "Speed", + "year": 1936, + "cast": [ + "James Stewart", + "Wendy Barrie", + "Ralph Morgan" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Speed Reporter", + "year": 1936, + "cast": [ + "Richard Talmadge", + "Luana Walters" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Spendthrift", + "year": 1936, + "cast": [ + "Henry Fonda", + "Pat Paterson", + "Mary Brian" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Stage Struck", + "year": 1936, + "cast": [ + "Dick Powell", + "Joan Blondell", + "Frank McHugh" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "Stampede", + "year": 1936, + "cast": [ + "Charles Starrett", + "Finis Barton" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Star for a Night", + "year": 1936, + "cast": [ + "Claire Trevor", + "Jane Darwell", + "Dean Jagger" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Step on It", + "year": 1936, + "cast": [ + "Richard Talmadge", + "Lois Wilde" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Story of Louis Pasteur", + "year": 1936, + "cast": [ + "Paul Muni", + "(", + "Academy Award for Best Actor", + ")", + "Josephine Hutchinson", + "Anita Louise" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Stowaway", + "year": 1936, + "cast": [ + "Shirley Temple", + "Robert Young", + "Eugene Pallette" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "Straight from the Shoulder", + "year": 1936, + "cast": [ + "Ralph Bellamy", + "Katherine Locke" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Strike Me Pink", + "year": 1936, + "cast": [ + "Eddie Cantor", + "Ethel Merman" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Sunset of Power", + "year": 1936, + "cast": [ + "Buck Jones", + "Donald Kirke" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Sutter's Gold", + "year": 1936, + "cast": [ + "Edward Arnold", + "Lee Tracy", + "Montagu Love" + ], + "genres": [ + "Drama", + "Western" + ] + }, + { + "title": "Suzy", + "year": 1936, + "cast": [ + "Jean Harlow", + "Franchot Tone", + "Cary Grant" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Swing Time", + "year": 1936, + "cast": [ + "Fred Astaire", + "Ginger Rogers", + "Victor Moore" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "Sworn Enemy", + "year": 1936, + "cast": [ + "Florence Rice", + "Robert Young", + "Joseph Calleia" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "Tango", + "year": 1936, + "cast": [ + "Marian Nixon", + "Chick Chandler", + "Franklin Pangborn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Tarzan Escapes", + "year": 1936, + "cast": [ + "Maureen O'Sullivan", + "Johnny Weissmuller", + "John Buckler" + ], + "genres": [ + "Drama", + "Adventure" + ] + }, + { + "title": "A Tenderfoot Goes West", + "year": 1936, + "cast": [ + "Jack La Rue", + "Russell Gleason", + "Virginia Carroll" + ], + "genres": [ + "Western", + "Comedy" + ] + }, + { + "title": "The Texas Rangers", + "year": 1936, + "cast": [ + "Fred MacMurray", + "Jean Parker", + "Jack Oakie" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Thank You, Jeeves!", + "year": 1936, + "cast": [ + "Arthur Treacher", + "Virginia Field", + "David Niven" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "That Girl from Paris", + "year": 1936, + "cast": [ + "Lily Pons", + "Gene Raymond", + "Lucille Ball" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "Theodora Goes Wild", + "year": 1936, + "cast": [ + "Irene Dunne", + "(", + "Best Actress", + "nominee)", + "Melvyn Douglas", + "Thurston Hall" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "These Three", + "year": 1936, + "cast": [ + "Miriam Hopkins", + "Merle Oberon", + "Joel McCrea", + "Catherine Doucet", + "Bonita Granville", + "(", + "Best Supporting Actress", + "nominee)" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "They Met in a Taxi", + "year": 1936, + "cast": [ + "Fay Wray", + "Chester Morris", + "Raymond Walburn" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Thirteen Hours by Air", + "year": 1936, + "cast": [ + "Fred MacMurray", + "Joan Bennett", + "ZaSu Pitts" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Three Cheers for Love", + "year": 1936, + "cast": [ + "Eleanore Whitney", + "Robert Cummings" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Three Godfathers", + "year": 1936, + "cast": [ + "Chester Morris", + "Walter Brennan", + "Irene Hervey" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Three Live Ghosts", + "year": 1936, + "cast": [ + "Richard Arlen", + "Beryl Mercer", + "Claud Allister" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Three Married Men", + "year": 1936, + "cast": [ + "Lynne Overman", + "Roscoe Karns", + "Mary Brian" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Three Men on a Horse", + "year": 1936, + "cast": [ + "Frank McHugh", + "Joan Blondell", + "Guy Kibbee" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Three Mesquiteers", + "year": 1936, + "cast": [ + "Bob Livingston", + "Ray Corrigan" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Three of a Kind", + "year": 1936, + "cast": [ + "Evalyn Knapp", + "Chick Chandler", + "Berton Churchill" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Three on the Trail", + "year": 1936, + "cast": [ + "William Boyd", + "Muriel Evans" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Three Smart Girls", + "year": 1936, + "cast": [ + "Deanna Durbin", + "Binnie Barnes", + "Ray Milland" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Three Wise Guys", + "year": 1936, + "cast": [ + "Robert Young", + "Betty Furness", + "Bruce Cabot" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Ticket to Paradise", + "year": 1936, + "cast": [ + "Roger Pryor", + "Wendy Barrie" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Till We Meet Again", + "year": 1936, + "cast": [ + "Herbert Marshall", + "Gertrude Michael", + "Lionel Atwill" + ], + "genres": [ + "Drama", + "War" + ] + }, + { + "title": "Times Square Playboy", + "year": 1936, + "cast": [ + "Gene Lockhart", + "Warren William", + "June Travis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Timothy's Quest", + "year": 1936, + "cast": [ + "Eleanore Whitney", + "Tom Keene", + "Dickie Moore" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "To Mary With Love", + "year": 1936, + "cast": [ + "Myrna Loy", + "Warner Baxter", + "Claire Trevor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Too Many Parents", + "year": 1936, + "cast": [ + "Frances Farmer", + "Lester Matthews", + "Anne Grey" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Too Much Beef", + "year": 1936, + "cast": [ + "Rex Bell", + "Constance Bergen" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Tough Guy", + "year": 1936, + "cast": [ + "Jackie Cooper", + "Joseph Calleia" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Trail Dust", + "year": 1936, + "cast": [ + "William Boyd", + "James Ellison", + "Gwynne Shipman" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Trail of the Lonesome Pine", + "year": 1936, + "cast": [ + "Sylvia Sidney", + "Fred MacMurray", + "Henry Fonda" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Trailin' West", + "year": 1936, + "cast": [ + "Dick Foran", + "Paula Stone", + "Bill Elliott" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Trapped by Television", + "year": 1936, + "cast": [ + "Mary Astor", + "Lyle Talbot", + "Joyce Compton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Treachery Rides the Range", + "year": 1936, + "cast": [ + "Dick Foran", + "Paula Stone", + "Monte Blue" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Trouble for Two", + "year": 1936, + "cast": [ + "Robert Montgomery", + "Rosalind Russell", + "Frank Morgan", + "Reginald Owen" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Tugboat Princess", + "year": 1936, + "cast": [ + "Walter C. Kelly", + "Valerie Hobson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Two Against the World", + "year": 1936, + "cast": [ + "Humphrey Bogart", + "Beverly Roberts", + "Claire Dodd" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Two-Fisted Gentleman", + "year": 1936, + "cast": [ + "James Dunn", + "June Clayworth", + "Muriel Evans" + ], + "genres": [ + "Sports", + "Drama" + ] + }, + { + "title": "Two in a Crowd", + "year": 1936, + "cast": [ + "Joan Bennett", + "Joel McCrea", + "Elisha Cook Jr." + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Two in Revolt", + "year": 1936, + "cast": [ + "John Arledge", + "Louise Latimer", + "Moroni Olsen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Two in the Dark", + "year": 1936, + "cast": [ + "Walter Abel", + "Margot Grahame", + "Wallace Ford" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Two Minutes to Play", + "year": 1936, + "cast": [ + "Bruce Bennett", + "Edward Nugent", + "Betty Compson" + ], + "genres": [ + "Sports" + ] + }, + { + "title": "Under Two Flags", + "year": 1936, + "cast": [ + "Ronald Colman", + "Claudette Colbert", + "Victor McLaglen", + "Rosalind Russell", + "Nigel Bruce" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Under Your Spell", + "year": 1936, + "cast": [ + "Lawrence Tibbett", + "Wendy Barrie", + "Berton Churchill" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "Undercover Man", + "year": 1936, + "cast": [ + "Johnny Mack Brown", + "Suzanne Kaaren" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Unknown Ranger", + "year": 1936, + "cast": [ + "Walter Miller", + "Bud Osborne" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Unguarded Hour", + "year": 1936, + "cast": [ + "Loretta Young", + "Franchot Tone", + "Roland Young" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "Valiant Is the Word for Carrie", + "year": 1936, + "cast": [ + "Gladys George", + "(", + "Best Actress", + "nominee)", + "Arline Judge", + "John Howard" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Vengeance of Rannah", + "year": 1936, + "cast": [ + "Bob Custer", + "Victoria Vinton" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Voice of Bugle Ann", + "year": 1936, + "cast": [ + "Lionel Barrymore", + "Maureen O'Sullivan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Walking Dead", + "year": 1936, + "cast": [ + "Boris Karloff", + "Ricardo Cortez", + "Edmund Gwenn" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Walking on Air", + "year": 1936, + "cast": [ + "Ann Sothern", + "Gene Raymond", + "Jessie Ralph" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "Wanted! Jane Turner", + "year": 1936, + "cast": [ + "Ann Preston", + "Lee Tracy", + "John McGuire" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "We Went to College", + "year": 1936, + "cast": [ + "Charles Butterworth", + "Walter Abel", + "Una Merkel" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Wedding Present", + "year": 1936, + "cast": [ + "Cary Grant", + "Joan Bennett", + "Conrad Nagel" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "We're in the Legion Now!", + "year": 1936, + "cast": [ + "Reginald Denny", + "Esther Ralston" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "West of Nevada", + "year": 1936, + "cast": [ + "Rex Bell", + "Joan Barclay" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The White Angel", + "year": 1936, + "cast": [ + "Kay Francis", + "Ian Hunter", + "Donald Crisp" + ], + "genres": [ + "Action" + ] + }, + { + "title": "White Fang", + "year": 1936, + "cast": [ + "Michael Whalen", + "Jean Muir" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "White Hunter", + "year": 1936, + "cast": [ + "Warner Baxter", + "June Lang", + "Gail Patrick", + "Wilfrid Lawson" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "White Legion", + "year": 1936, + "cast": [ + "Ian Keith", + "Tala Birell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Wife vs. Secretary", + "year": 1936, + "cast": [ + "Clark Gable", + "Myrna Loy", + "Jean Harlow" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Widow from Monte Carlo", + "year": 1936, + "cast": [ + "Dolores del Río", + "Warren William", + "Colin Clive" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Wild Brian Kent", + "year": 1936, + "cast": [ + "Ralph Bellamy", + "Mae Clarke" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Wildcat Trooper", + "year": 1936, + "cast": [ + "Kermit Maynard", + "Hobart Bosworth", + "Lois Wilde" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Wild Horse Round-Up", + "year": 1936, + "cast": [ + "Kermit Maynard", + "Beth Marion" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Winds of the Wasteland", + "year": 1936, + "cast": [ + "John Wayne", + "Phyllis Fraser" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Winterset", + "year": 1936, + "cast": [ + "Burgess Meredith", + "Margo", + "Eduardo Ciannelli" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "With Love and Kisses", + "year": 1936, + "cast": [ + "Pinky Tomlin", + "Toby Wing", + "Kane Richmond" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Without Orders", + "year": 1936, + "cast": [ + "Sally Eilers", + "Robert Armstrong", + "Frances Sage", + "Charley Grapewin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Witness Chair", + "year": 1936, + "cast": [ + "Ann Harding", + "Walter Abel" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Wives Never Know", + "year": 1936, + "cast": [ + "Charlie Ruggles", + "Mary Boland", + "Adolphe Menjou" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Woman Rebels", + "year": 1936, + "cast": [ + "Katharine Hepburn", + "Herbert Marshall", + "Elizabeth Allan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Woman Trap", + "year": 1936, + "cast": [ + "Gertrude Michael", + "George Murphy", + "Akim Tamiroff" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Women Are Trouble", + "year": 1936, + "cast": [ + "Stuart Erwin", + "Florence Rice" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Yellow Cargo", + "year": 1936, + "cast": [ + "Conrad Hunt", + "Vince Barnett", + "Eleanor Hunt" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Yellow Dust", + "year": 1936, + "cast": [ + "Richard Dix", + "Leila Hyams", + "Moroni Olsen" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Yellowstone", + "year": 1936, + "cast": [ + "Judith Barrett", + "Alan Hale" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Yiddle with His Fiddle", + "year": 1936, + "cast": [ + "Molly Picon", + "Leon Liebgold" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "You May Be Next", + "year": 1936, + "cast": [ + "Ann Sothern", + "Lloyd Nolan" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Yours for the Asking", + "year": 1936, + "cast": [ + "George Raft", + "Ida Lupino", + "Dolores Costello" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The 13th Man", + "year": 1937, + "cast": [ + "Weldon Heyburn", + "Milburn Stone", + "Robert Homans" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "3 Dumb Clucks", + "year": 1937, + "cast": [ + "Moe Howard", + "Larry Fine", + "Curly Howard" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "45 Fathers", + "year": 1937, + "cast": [ + "Jane Withers", + "Richard Carle", + "Hattie McDaniel" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "52nd Street", + "year": 1937, + "cast": [ + "Dorothy Peterson", + "Kenny Baker", + "ZaSu Pitts" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Adventure's End", + "year": 1937, + "cast": [ + "John Wayne", + "Diana Gibson", + "Montagu Love" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Adventurous Blonde", + "year": 1937, + "cast": [ + "Glenda Farrell", + "Barton MacLane", + "Anne Nagel" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Affairs of Cappy Ricks", + "year": 1937, + "cast": [ + "Walter Brennan", + "Mary Brian", + "Lyle Talbot" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Alcatraz Island", + "year": 1937, + "cast": [ + "Ann Sheridan", + "George E. Stone", + "John Litel" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "Ali Baba Goes to Town", + "year": 1937, + "cast": [ + "Eddie Cantor", + "Tony Martin", + "Gypsy Rose Lee" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "All-American Sweetheart", + "year": 1937, + "cast": [ + "Patricia Farr", + "Scott Kolk" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "All Over Town", + "year": 1937, + "cast": [ + "Ole Olsen", + "Chic Johnson", + "Mary Howard" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Amateur Crook", + "year": 1937, + "cast": [ + "Joan Barclay", + "Bruce Bennett", + "Vivien Oakland" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Angel", + "year": 1937, + "cast": [ + "Marlene Dietrich", + "Melvyn Douglas", + "Herbert Marshall" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Angel's Holiday", + "year": 1937, + "cast": [ + "Jane Withers", + "Joan Davis", + "Sally Blane" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Annapolis Salute", + "year": 1937, + "cast": [ + "James Ellison", + "Marsha Hunt", + "Van Heflin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Another Dawn", + "year": 1937, + "cast": [ + "Kay Francis", + "Errol Flynn", + "Ian Hunter" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Arizona Days", + "year": 1937, + "cast": [ + "Tex Ritter", + "Syd Saylor", + "William Faversham" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Arizona Gunfighter", + "year": 1937, + "cast": [ + "Bob Steele", + "Jean Carmen", + "Ted Adams" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Armored Car", + "year": 1937, + "cast": [ + "Robert Wilcox", + "Judith Barrett", + "Cesar Romero" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Artists and Models", + "year": 1937, + "cast": [ + "Jack Benny", + "Ida Lupino", + "Richard Arlen" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "As Good as Married", + "year": 1937, + "cast": [ + "John Boles", + "Doris Nolan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Atlantic Flight", + "year": 1937, + "cast": [ + "Dick Merrill", + "Jack Lambie", + "Paula Stone" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Awful Truth", + "year": 1937, + "cast": [ + "Cary Grant", + "Irene Dunne", + "Ralph Bellamy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Back in Circulation", + "year": 1937, + "cast": [ + "Pat O'Brien", + "Joan Blondell", + "Margaret Lindsay" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Bad Guy", + "year": 1937, + "cast": [ + "Bruce Cabot", + "Virginia Grey", + "Charley Grapewin" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "The Bad Man of Brimstone", + "year": 1937, + "cast": [ + "Wallace Beery", + "Virginia Bruce", + "Lewis Stone" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Bank Alarm", + "year": 1937, + "cast": [ + "Conrad Nagel", + "Eleanor Hunt", + "Vince Barnett" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Bar-Z Bad Men", + "year": 1937, + "cast": [ + "Johnny Mack Brown", + "Lois January" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Barrier", + "year": 1937, + "cast": [ + "Leo Carrillo", + "Jean Parker", + "Otto Kruger" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Battle of Greed", + "year": 1937, + "cast": [ + "James Bush", + "Jimmy Butler", + "Tom Keene" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Beg, Borrow or Steal", + "year": 1937, + "cast": [ + "Florence Rice", + "Frank Morgan", + "Herman Bing" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Behind the Headlines", + "year": 1937, + "cast": [ + "Lee Tracy", + "Diana Gibson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Behind the Mike", + "year": 1937, + "cast": [ + "William Gargan", + "Judith Barrett" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Between Two Women", + "year": 1937, + "cast": [ + "Franchot Tone", + "Maureen O'Sullivan", + "Virginia Bruce" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Big Business", + "year": 1937, + "cast": [ + "Jed Prouty", + "Shirley Deane" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Big City", + "year": 1937, + "cast": [ + "Spencer Tracy", + "Luise Rainer", + "Eddie Quillan" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Big Shot", + "year": 1937, + "cast": [ + "Guy Kibbee", + "Cora Witherspoon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Big Town Girl", + "year": 1937, + "cast": [ + "Claire Trevor", + "Donald Woods", + "Spencer Charters" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Bill Cracks Down", + "year": 1937, + "cast": [ + "Grant Withers", + "Beatrice Roberts" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Black Aces", + "year": 1937, + "cast": [ + "Buck Jones", + "Kay Linaker" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Black Legion", + "year": 1937, + "cast": [ + "Humphrey Bogart", + "Ann Sheridan", + "Joe Sawyer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Blazing Sixes", + "year": 1937, + "cast": [ + "Joan Valerie", + "John Merton" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Blonde Trouble", + "year": 1937, + "cast": [ + "Eleanore Whitney", + "Johnny Downs" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Blossoms on Broadway", + "year": 1937, + "cast": [ + "Edward Arnold", + "Shirley Ross" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Boothill Brigade", + "year": 1937, + "cast": [ + "Johnny Mack Brown", + "Dick Curtis" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Boots and Saddles", + "year": 1937, + "cast": [ + "Gene Autry", + "Judith Allen" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Border Cafe", + "year": 1937, + "cast": [ + "George Irving", + "Harry Carey", + "Leona Roberts" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Border Phantom", + "year": 1937, + "cast": [ + "Bob Steele", + "Don Barclay" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Borderland", + "year": 1937, + "cast": [ + "William Boyd", + "Gabby Hayes", + "James Ellison" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Born Reckless", + "year": 1937, + "cast": [ + "Rochelle Hudson", + "Brian Donlevy" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Born to the West", + "year": 1937, + "cast": [ + "John Wayne", + "Marsha Hunt", + "Johnny Mack Brown" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Borneo", + "year": 1937, + "cast": [ + "Lowell Thomas", + "Martin E. Johnson" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Borrowing Trouble", + "year": 1937, + "cast": [ + "Jed Prouty", + "Shirley Deane" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Boy of the Streets", + "year": 1937, + "cast": [ + "Jackie Cooper", + "Kathleen Burke" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Breakfast for Two", + "year": 1937, + "cast": [ + "Barbara Stanwyck", + "Glenda Farrell", + "Herbert Marshall" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Breezing Home", + "year": 1937, + "cast": [ + "Binnie Barnes", + "William Gargan", + "Wendy Barrie" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Bride for Henry", + "year": 1937, + "cast": [ + "Anne Nagel", + "Warren Hull", + "Claudia Dell" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Bride Wore Red", + "year": 1937, + "cast": [ + "Joan Crawford", + "Franchot Tone", + "Billie Burke" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Broadway Melody of 1938", + "year": 1937, + "cast": [ + "Robert Taylor", + "Eleanor Powell", + "Judy Garland" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "Bulldog Drummond Comes Back", + "year": 1937, + "cast": [ + "John Howard", + "John Barrymore", + "Louise Campbell" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "Bulldog Drummond Escapes", + "year": 1937, + "cast": [ + "Ray Milland", + "Guy Standing", + "Heather Angel" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Bulldog Drummond's Revenge", + "year": 1937, + "cast": [ + "John Barrymore", + "John Howard", + "Louise Campbell" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Cafe Metropole", + "year": 1937, + "cast": [ + "Loretta Young", + "Tyrone Power", + "Adolphe Menjou" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "California Straight Ahead", + "year": 1937, + "cast": [ + "John Wayne", + "Louise Latimer" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Californian", + "year": 1937, + "cast": [ + "Ricardo Cortez", + "Marjorie Weaver", + "Katherine DeMille" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Call It a Day", + "year": 1937, + "cast": [ + "Olivia de Havilland", + "Alice Brady", + "Ian Hunter" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Captains Courageous", + "year": 1937, + "cast": [ + "Spencer Tracy", + "Freddie Bartholomew", + "Lionel Barrymore" + ], + "genres": [ + "Drama", + "Adventure" + ] + }, + { + "title": "Carnival Queen", + "year": 1937, + "cast": [ + "Robert Wilcox", + "Dorothea Kent" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Case of the Stuttering Bishop", + "year": 1937, + "cast": [ + "Donald Woods", + "Ann Dvorak", + "Anne Nagel" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Champagne Waltz", + "year": 1937, + "cast": [ + "Fred MacMurray", + "Jack Oakie", + "Vivienne Osborne" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Charlie Chan at Monte Carlo", + "year": 1937, + "cast": [ + "Warner Oland", + "Keye Luke", + "Virginia Field" + ], + "genres": [ + "Comedy", + "Mystery" + ] + }, + { + "title": "Charlie Chan at the Olympics", + "year": 1937, + "cast": [ + "Warner Oland", + "Katherine DeMille" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Charlie Chan on Broadway", + "year": 1937, + "cast": [ + "Warner Oland", + "Keye Luke" + ], + "genres": [ + "Comedy", + "Mystery" + ] + }, + { + "title": "Checkers", + "year": 1937, + "cast": [ + "Jane Withers", + "Stuart Erwin", + "Una Merkel" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Cherokee Strip", + "year": 1937, + "cast": [ + "Dick Foran", + "Jane Bryan", + "Joan Valerie" + ], + "genres": [ + "Western" + ] + }, + { + "title": "China Passage", + "year": 1937, + "cast": [ + "Leslie Fenton", + "Vinton Hayworth", + "Constance Worth" + ], + "genres": [ + "Drama", + "Adventure" + ] + }, + { + "title": "Circus Girl", + "year": 1937, + "cast": [ + "June Travis", + "Robert Livingston" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Clarence", + "year": 1937, + "cast": [ + "Roscoe Karns", + "Eleanore Whitney", + "Eugene Pallette" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Colorado Kid", + "year": 1937, + "cast": [ + "Bob Steele", + "Karl Hackett" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Come On, Cowboys", + "year": 1937, + "cast": [ + "Robert Livingston", + "Maxine Doyle" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Confession", + "year": 1937, + "cast": [ + "Kay Francis", + "Basil Rathbone", + "Ian Hunter" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Conquest", + "year": 1937, + "cast": [ + "Greta Garbo", + "Charles Boyer", + "Dame May Whitty" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Counsel for Crime", + "year": 1937, + "cast": [ + "Otto Kruger", + "Douglass Montgomery", + "Thurston Hall" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "County Fair", + "year": 1937, + "cast": [ + "John Arledge", + "Mary Lawrence" + ], + "genres": [ + "Sports", + "Drama" + ] + }, + { + "title": "The Crime Nobody Saw", + "year": 1937, + "cast": [ + "Lew Ayres", + "Eugene Pallette", + "Vivienne Osborne" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Criminal Lawyer", + "year": 1937, + "cast": [ + "Lee Tracy", + "Eduardo Ciannelli", + "William Stack" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Criminals of the Air", + "year": 1937, + "cast": [ + "Rosalind Keith", + "Charles Quigley", + "Rita Hayworth" + ], + "genres": [ + "Action" + ] + }, + { + "title": "A Damsel in Distress", + "year": 1937, + "cast": [ + "Fred Astaire", + "Joan Fontaine", + "Montagu Love" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "Dance Charlie Dance", + "year": 1937, + "cast": [ + "Stuart Erwin", + "Jean Muir", + "Glenda Farrell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Danger – Love at Work", + "year": 1937, + "cast": [ + "Ann Sothern", + "Edward Everett Horton", + "John Carradine" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Danger Patrol", + "year": 1937, + "cast": [ + "Sally Eilers", + "John Beal" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Danger Valley", + "year": 1937, + "cast": [ + "Addison Randall", + "Lois Wilde" + ], + "genres": [ + "Western" + ] + }, + { + "title": "A Dangerous Adventure", + "year": 1937, + "cast": [ + "Don Terry", + "Rosalind Keith" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dangerous Holiday", + "year": 1937, + "cast": [ + "Guinn \"Big Boy\" Williams", + "Hedda Hopper", + "Jack La Rue" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dangerous Number", + "year": 1937, + "cast": [ + "Robert Young", + "Ann Sothern", + "Cora Witherspoon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Dangerously Yours", + "year": 1937, + "cast": [ + "Cesar Romero", + "Phyllis Brooks" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Dark Manhattan", + "year": 1937, + "cast": [ + "Ralph Cooper", + "Clarence Brooks", + "Cleo Herndon" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "Daughter of Shanghai", + "year": 1937, + "cast": [ + "Anna May Wong", + "Buster Crabbe", + "Charles Bickford" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Day at the Races", + "year": 1937, + "cast": [ + "Groucho Marx", + "Chico Marx", + "Maureen O'Sullivan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Dead End", + "year": 1937, + "cast": [ + "Sylvia Sidney", + "Joel McCrea", + "Humphrey Bogart" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "The Devil Is Driving", + "year": 1937, + "cast": [ + "Richard Dix", + "Joan Perry" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Devil's Playground", + "year": 1937, + "cast": [ + "Dolores del Río", + "Richard Dix", + "Ward Bond" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Devil's Saddle Legion", + "year": 1937, + "cast": [ + "Dick Foran", + "Anne Nagel" + ], + "genres": [ + "Western" + ] + }, + { + "title": "A Doctor's Diary", + "year": 1937, + "cast": [ + "George Bancroft", + "Helen Burgess" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Don't Tell the Wife", + "year": 1937, + "cast": [ + "Guy Kibbee", + "Una Merkel", + "Guinn Williams" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Doomed at Sundown", + "year": 1937, + "cast": [ + "Bob Steele", + "Warner Richmond" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Double or Nothing", + "year": 1937, + "cast": [ + "Bing Crosby", + "Mary Carlisle", + "Martha Raye" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "Double Wedding", + "year": 1937, + "cast": [ + "William Powell", + "Myrna Loy", + "Florence Rice" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Draegerman Courage", + "year": 1937, + "cast": [ + "Jean Muir", + "Barton MacLane" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Duke Comes Back", + "year": 1937, + "cast": [ + "Allan Lane", + "Heather Angel", + "Genevieve Tobin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Easy Living", + "year": 1937, + "cast": [ + "Jean Arthur", + "Ray Milland", + "Edward Arnold" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Ebb Tide", + "year": 1937, + "cast": [ + "Frances Farmer", + "Ray Milland", + "Oskar Homolka" + ], + "genres": [ + "Drama", + "Adventure" + ] + }, + { + "title": "The Emperor's Candlesticks", + "year": 1937, + "cast": [ + "William Powell", + "Luise Rainer", + "Robert Young", + "Maureen O'Sullivan", + "Frank Morgan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Empty Holsters", + "year": 1937, + "cast": [ + "Dick Foran", + "Emmett Vogan" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Escape by Night", + "year": 1937, + "cast": [ + "William Hall", + "Dean Jagger", + "Ward Bond" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "Espionage", + "year": 1937, + "cast": [ + "Edmund Lowe", + "Madge Evans", + "Paul Lukas" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Ever Since Eve", + "year": 1937, + "cast": [ + "Marion Davies", + "Robert Montgomery" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Every Day's a Holiday", + "year": 1937, + "cast": [ + "Mae West", + "Edmund Lowe", + "Louis Armstrong" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Exclusive", + "year": 1937, + "cast": [ + "Fred MacMurray", + "Frances Farmer", + "Porter Hall" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Exiled to Shanghai", + "year": 1937, + "cast": [ + "Wallace Ford", + "June Travis", + "Dean Jagger" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Expensive Husbands", + "year": 1937, + "cast": [ + "Beverly Roberts", + "Patric Knowles", + "Allyn Joslyn" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Fair Warning", + "year": 1937, + "cast": [ + "J. Edward Bromberg", + "Betty Furness", + "Bill Burrud" + ], + "genres": [ + "Drama", + "Mystery" + ] + }, + { + "title": "A Family Affair", + "year": 1937, + "cast": [ + "Lionel Barrymore", + "Spring Byington", + "Mickey Rooney" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Fifty Roads to Town", + "year": 1937, + "cast": [ + "Don Ameche", + "Ann Sothern", + "Jane Darwell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Fight for Your Lady", + "year": 1937, + "cast": [ + "John Boles", + "Ida Lupino", + "Jack Oakie" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "A Fight to the Finish", + "year": 1937, + "cast": [ + "Don Terry", + "Rosalind Keith", + "Ward Bond" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Find the Witness", + "year": 1937, + "cast": [ + "Charles Quigley", + "Henry Mollison", + "Rosalind Keith" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Firefly", + "year": 1937, + "cast": [ + "Jeanette MacDonald", + "Allan Jones", + "Warren William" + ], + "genres": [ + "Drama", + "Musical" + ] + }, + { + "title": "First Lady", + "year": 1937, + "cast": [ + "Kay Francis", + "Verree Teasdale", + "Walter Connolly" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Fit for a King", + "year": 1937, + "cast": [ + "Joe E. Brown", + "Helen Mack", + "Paul Kelly" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Flight from Glory", + "year": 1937, + "cast": [ + "Chester Morris", + "Van Heflin", + "Whitney Bourne" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Fly-Away Baby", + "year": 1937, + "cast": [ + "Glenda Farrell", + "Barton MacLane" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Footloose Heiress", + "year": 1937, + "cast": [ + "Craig Reynolds", + "Ann Sheridan", + "Anne Nagel" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Forlorn River", + "year": 1937, + "cast": [ + "Buster Crabbe", + "June Martel" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Forty Naughty Girls", + "year": 1937, + "cast": [ + "ZaSu Pitts", + "James Gleason" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Frame-Up", + "year": 1937, + "cast": [ + "Paul Kelly", + "Julie Bishop" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Gambling Terror", + "year": 1937, + "cast": [ + "Johnny Mack Brown", + "Iris Meredith" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Game That Kills", + "year": 1937, + "cast": [ + "Charles Quigley", + "Rita Hayworth", + "John Gallaudet" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Girl from Scotland Yard", + "year": 1937, + "cast": [ + "Karen Morley", + "Eduardo Ciannelli", + "Katharine Alexander" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Girl Overboard", + "year": 1937, + "cast": [ + "Gloria Stuart", + "Walter Pidgeon" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Girl Said No", + "year": 1937, + "cast": [ + "Irene Hervey", + "William Danforth", + "Vera Ross" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "A Girl with Ideas", + "year": 1937, + "cast": [ + "Wendy Barrie", + "Walter Pidgeon", + "Kent Taylor" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Girls Can Play", + "year": 1937, + "cast": [ + "Julie Bishop", + "Charles Quigley", + "Rita Hayworth" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Git Along Little Dogies", + "year": 1937, + "cast": [ + "Gene Autry", + "Judith Allen" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Go Getter", + "year": 1937, + "cast": [ + "George Brent", + "Anita Louise", + "Henry O'Neill" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "God's Country and the Woman", + "year": 1937, + "cast": [ + "George Brent", + "Beverly Roberts", + "Barton MacLane" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Gold Racket", + "year": 1937, + "cast": [ + "Conrad Nagel", + "Eleanor Hunt", + "Fuzzy Knight" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "The Good Earth", + "year": 1937, + "cast": [ + "Paul Muni", + "Luise Rainer", + "Walter Connolly" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Good Old Soak", + "year": 1937, + "cast": [ + "Wallace Beery", + "Una Merkel", + "Judith Barrett" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Great Gambini", + "year": 1937, + "cast": [ + "Marian Marsh", + "Akim Tamiroff", + "William Demarest" + ], + "genres": [ + "Drama", + "Mystery" + ] + }, + { + "title": "The Great Garrick", + "year": 1937, + "cast": [ + "Olivia de Havilland", + "Brian Aherne", + "Edward Everett Horton" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Great Hospital Mystery", + "year": 1937, + "cast": [ + "Jane Darwell", + "Sig Ruman", + "Sally Blane" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Great O'Malley", + "year": 1937, + "cast": [ + "Pat O'Brien", + "Humphrey Bogart", + "Ann Sheridan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Green Fields", + "year": 1937, + "cast": [ + "Michael Goldstein", + "Helen Beverley" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Green Light", + "year": 1937, + "cast": [ + "Errol Flynn", + "Anita Louise", + "Cedric Hardwicke" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Gun Lords of Stirrup Basin", + "year": 1937, + "cast": [ + "Bob Steele", + "Louis Stanley" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Guns in the Dark", + "year": 1937, + "cast": [ + "Johnny Mack Brown", + "Syd Saylor" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Guns of the Pecos", + "year": 1937, + "cast": [ + "Dick Foran", + "Anne Nagel" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Gunsmoke Ranch", + "year": 1937, + "cast": [ + "Robert Livingston", + "Ray \"Crash\" Corrigan" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Harlem on the Prairie", + "year": 1937, + "cast": [ + "Herb Jeffries", + "Mantan Moreland", + "Nathan Curry" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Headin' East", + "year": 1937, + "cast": [ + "Buck Jones", + "Ruth Coleman" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Heart of the Rockies", + "year": 1937, + "cast": [ + "Robert Livingston", + "Ray Corrigan" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Heidi", + "year": 1937, + "cast": [ + "Shirley Temple", + "Jean Hersholt", + "Arthur Treacher" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Her Husband Lies", + "year": 1937, + "cast": [ + "Gail Patrick", + "Ricardo Cortez", + "Louis Calhern" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "Her Husband's Secretary", + "year": 1937, + "cast": [ + "Jean Muir", + "Beverly Roberts", + "Warren Hull" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Heroes of the Alamo", + "year": 1937, + "cast": [ + "Rex Lease", + "Lane Chandler", + "Earle Hodgins" + ], + "genres": [ + "Western", + "War" + ] + }, + { + "title": "Hideaway", + "year": 1937, + "cast": [ + "J. Carrol Naish", + "Emma Dunn", + "Fred Stone" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "High Flyers", + "year": 1937, + "cast": [ + "Bert Wheeler", + "Robert Woolsey", + "Lupe Velez" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "High, Wide and Handsome", + "year": 1937, + "cast": [ + "Irene Dunne", + "Randolph Scott", + "Dorothy Lamour" + ], + "genres": [ + "Western", + "Musical" + ] + }, + { + "title": "Hills of Old Wyoming", + "year": 1937, + "cast": [ + "William Boyd", + "Gabby Hayes", + "Gail Sheridan" + ], + "genres": [ + "Western" + ] + }, + { + "title": "History Is Made at Night", + "year": 1937, + "cast": [ + "Charles Boyer", + "Jean Arthur", + "Colin Clive" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hit Parade of 1937", + "year": 1937, + "cast": [ + "Louise Henry", + "Phil Regan", + "Duke Ellington" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Hit the Saddle", + "year": 1937, + "cast": [ + "Robert Livingston", + "Rita Hayworth" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Hitting a New High", + "year": 1937, + "cast": [ + "Lily Pons", + "Edward Everett Horton", + "Eric Blore" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "Hollywood Cowboy", + "year": 1937, + "cast": [ + "George O'Brien", + "Cecilia Parker" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Hollywood Hotel", + "year": 1937, + "cast": [ + "Dick Powell", + "Rosemary Lane", + "Hugh Herbert" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Hollywood Round-Up", + "year": 1937, + "cast": [ + "Buck Jones", + "Helen Twelvetrees" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Holy Terror", + "year": 1937, + "cast": [ + "Jane Withers", + "Joe E. Lewis", + "Tony Martin" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Hoosier Schoolboy", + "year": 1937, + "cast": [ + "Mickey Rooney", + "Anne Nagel" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hopalong Rides Again", + "year": 1937, + "cast": [ + "William Boyd", + "Nora Lane" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Hot Water", + "year": 1937, + "cast": [ + "Jed Prouty", + "Shirley Deane" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hotel Haywire", + "year": 1937, + "cast": [ + "Leo Carrillo", + "Lynne Overman", + "Spring Byington" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Hurricane", + "year": 1937, + "cast": [ + "Dorothy Lamour", + "Mary Astor", + "Jon Hall" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "I Cover the War", + "year": 1937, + "cast": [ + "John Wayne", + "Gwen Gaze" + ], + "genres": [ + "Action", + "Drama", + "War" + ] + }, + { + "title": "Idol of the Crowds", + "year": 1937, + "cast": [ + "John Wayne", + "Sheila Bromley" + ], + "genres": [ + "Sports", + "Drama" + ] + }, + { + "title": "I Met Him in Paris", + "year": 1937, + "cast": [ + "Claudette Colbert", + "Robert Young", + "Melvyn Douglas" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "I Promise to Pay", + "year": 1937, + "cast": [ + "Chester Morris", + "Leo Carrillo", + "Helen Mack" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "I'll Take Romance", + "year": 1937, + "cast": [ + "Grace Moore", + "Melvyn Douglas", + "Stuart Erwin" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "In Old Chicago", + "year": 1937, + "cast": [ + "Tyrone Power", + "Alice Brady", + "Don Ameche" + ], + "genres": [ + "Drama", + "Musical" + ] + }, + { + "title": "Internes Can't Take Money", + "year": 1937, + "cast": [ + "Barbara Stanwyck", + "Joel McCrea", + "Lloyd Nolan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "It Can't Last Forever", + "year": 1937, + "cast": [ + "Ralph Bellamy", + "Betty Furness" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "It Could Happen to You!", + "year": 1937, + "cast": [ + "Alan Baxter", + "Andrea Leeds", + "Astrid Allwyn" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "It Happened in Hollywood", + "year": 1937, + "cast": [ + "Fay Wray", + "Richard Dix", + "Franklin Pangborn" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "It Happened Out West", + "year": 1937, + "cast": [ + "Paul Kelly", + "Judith Allen" + ], + "genres": [ + "Western" + ] + }, + { + "title": "It's All Yours", + "year": 1937, + "cast": [ + "Madeleine Carroll", + "Mischa Auer", + "Francis Lederer" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "It's Love I'm After", + "year": 1937, + "cast": [ + "Bette Davis", + "Olivia de Havilland", + "Leslie Howard" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Jim Hanvey, Detective", + "year": 1937, + "cast": [ + "Guy Kibbee", + "Tom Brown", + "Catherine Doucet" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "John Meade's Woman", + "year": 1937, + "cast": [ + "Edward Arnold", + "Gail Patrick" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Join the Marines", + "year": 1937, + "cast": [ + "Paul Kelly", + "June Travis", + "Reginald Denny" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Jungle Menace", + "year": 1937, + "cast": [ + "Frank Buck" + ], + "genres": [] + }, + { + "title": "Kid Galahad", + "year": 1937, + "cast": [ + "Edward G. Robinson", + "Bette Davis", + "Humphrey Bogart" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "The King and the Chorus Girl", + "year": 1937, + "cast": [ + "Joan Blondell", + "Fernand Gravey", + "Edward Everett Horton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "King of Gamblers", + "year": 1937, + "cast": [ + "Akim Tamiroff", + "Claire Trevor", + "Lloyd Nolan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Lady Escapes", + "year": 1937, + "cast": [ + "Gloria Stuart", + "Michael Whalen", + "George Sanders" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Lady Fights Back", + "year": 1937, + "cast": [ + "Kent Taylor", + "Irene Hervey" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Lancer Spy", + "year": 1937, + "cast": [ + "Dolores del Río", + "George Sanders", + "Peter Lorre" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Land Beyond the Law", + "year": 1937, + "cast": [ + "Dick Foran", + "Wayne Morris" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Larceny on the Air", + "year": 1937, + "cast": [ + "Robert Livingston", + "Grace Bradley" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Last Gangster", + "year": 1937, + "cast": [ + "Edward G. Robinson", + "James Stewart", + "Douglas Scott" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "The Last of Mrs. Cheyney", + "year": 1937, + "cast": [ + "Joan Crawford", + "William Powell", + "Nigel Bruce" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Last Train from Madrid", + "year": 1937, + "cast": [ + "Dorothy Lamour", + "Lew Ayres", + "Anthony Quinn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Law of the Ranger", + "year": 1937, + "cast": [ + "Robert Allen", + "Elaine Shepard" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Lawless Land", + "year": 1937, + "cast": [ + "Johnny Mack Brown", + "Louise Stanley" + ], + "genres": [ + "Western" + ] + }, + { + "title": "A Lawman Is Born", + "year": 1937, + "cast": [ + "Johnny Mack Brown", + "Iris Meredith" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The League of Frightened Men", + "year": 1937, + "cast": [ + "Walter Connolly", + "Lionel Stander" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Left-Handed Law", + "year": 1937, + "cast": [ + "Buck Jones", + "Noel Francis", + "Nina Quartero" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Legion of Missing Men", + "year": 1937, + "cast": [ + "Ralph Forbes", + "Roy D'Arcy" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Let Them Live", + "year": 1937, + "cast": [ + "John Howard", + "Nan Grey" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Let's Get Married", + "year": 1937, + "cast": [ + "Ida Lupino", + "Ralph Bellamy", + "Walter Connolly" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Life Begins in College", + "year": 1937, + "cast": [ + "The Ritz Brothers", + "Gloria Stuart" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Life Begins with Love", + "year": 1937, + "cast": [ + "Jean Parker", + "Douglass Montgomery", + "Edith Fellows" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "The Life of Émile Zola", + "year": 1937, + "cast": [ + "Paul Muni", + "Joseph Schildkraut", + "Gale Sondergaard" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Life of the Party", + "year": 1937, + "cast": [ + "Billy Gilbert", + "Franklin Pangborn", + "Ann Miller" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Lightnin' Crandall", + "year": 1937, + "cast": [ + "Bob Steele", + "Lois January" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Live, Love and Learn", + "year": 1937, + "cast": [ + "Rosalind Russell", + "Robert Benchley", + "Monty Woolley" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Living on Love", + "year": 1937, + "cast": [ + "Whitney Bourne", + "Joan Woodbury", + "James Dunn" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "London by Night", + "year": 1937, + "cast": [ + "George Murphy", + "Rita Johnson" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Lost Horizon", + "year": 1937, + "cast": [ + "Ronald Colman", + "Jane Wyatt", + "H. B. Warner" + ], + "genres": [ + "Adventure", + "Fantasy" + ] + }, + { + "title": "Love and Hisses", + "year": 1937, + "cast": [ + "Walter Winchell", + "Simone Simon", + "Joan Davis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Love in a Bungalow", + "year": 1937, + "cast": [ + "Nan Grey", + "Kent Taylor" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Love Is News", + "year": 1937, + "cast": [ + "Tyrone Power", + "Loretta Young", + "Don Ameche" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Love Is on the Air", + "year": 1937, + "cast": [ + "Ronald Reagan", + "June Travis", + "Eddie Acuff" + ], + "genres": [ + "Drama", + "Romance" + ] + }, + { + "title": "Love on Toast", + "year": 1937, + "cast": [ + "John Payne", + "Stella Adler", + "Grant Richards" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Love Takes Flight", + "year": 1937, + "cast": [ + "Bruce Cabot", + "Beatrice Roberts", + "Edwin Maxwell" + ], + "genres": [ + "Drama", + "Romance" + ] + }, + { + "title": "Love Under Fire", + "year": 1937, + "cast": [ + "Loretta Young", + "Don Ameche", + "Katherine DeMille" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Madame X", + "year": 1937, + "cast": [ + "Gladys George", + "Warren William", + "Reginald Owen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Maid of Salem", + "year": 1937, + "cast": [ + "Claudette Colbert", + "Fred MacMurray", + "Gale Sondergaard" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Make a Wish", + "year": 1937, + "cast": [ + "Bobby Breen", + "Basil Rathbone", + "Ralph Forbes" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Make Way for Tomorrow", + "year": 1937, + "cast": [ + "Victor Moore", + "Beulah Bondi", + "Thomas Mitchell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Mama Runs Wild", + "year": 1937, + "cast": [ + "Mary Boland", + "Ernest Truex" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mama Steps Out", + "year": 1937, + "cast": [ + "Alice Brady", + "Gene Lockhart", + "Guy Kibbee" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Man in Blue", + "year": 1937, + "cast": [ + "Robert Wilcox", + "Nan Grey" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Man of the People", + "year": 1937, + "cast": [ + "Joseph Calleia", + "Florence Rice", + "Ted Healy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Man Who Cried Wolf", + "year": 1937, + "cast": [ + "Lewis Stone", + "Jameson Thomas" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Man Who Found Himself", + "year": 1937, + "cast": [ + "Joan Fontaine", + "George Irving", + "John Beal" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Manhattan Merry-Go-Round", + "year": 1937, + "cast": [ + "Ann Dvorak", + "Cab Calloway", + "Louis Prima" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Mannequin", + "year": 1937, + "cast": [ + "Joan Crawford", + "Spencer Tracy", + "Alan Curtis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Marked Woman", + "year": 1937, + "cast": [ + "Bette Davis", + "Humphrey Bogart", + "Eduardo Ciannelli" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "Married Before Breakfast", + "year": 1937, + "cast": [ + "Robert Young", + "Florence Rice", + "Barnett Parker" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Marry the Girl", + "year": 1937, + "cast": [ + "Mary Boland", + "Hugh Herbert", + "Mischa Auer" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Maytime", + "year": 1937, + "cast": [ + "Jeanette MacDonald", + "Nelson Eddy", + "John Barrymore" + ], + "genres": [ + "Drama", + "Musical" + ] + }, + { + "title": "Melody for Two", + "year": 1937, + "cast": [ + "James Melton", + "Patricia Ellis", + "Marie Wilson" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Men in Exile", + "year": 1937, + "cast": [ + "Dick Purcell", + "June Travis", + "Victor Varconi" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Meet the Boyfriend", + "year": 1937, + "cast": [ + "Robert Paige", + "Carol Hughes" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Meet the Missus", + "year": 1937, + "cast": [ + "Victor Moore", + "Helen Broderick", + "Anne Shirley" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Michael O'Halloran", + "year": 1937, + "cast": [ + "Wynne Gibson", + "Warren Hull" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Midnight Court", + "year": 1937, + "cast": [ + "Ann Dvorak", + "Carlyle Moore Jr.", + "John Litel" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Midnight Madonna", + "year": 1937, + "cast": [ + "Warren William", + "Mady Correll" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Midnight Taxi", + "year": 1937, + "cast": [ + "Brian Donlevy", + "Frances Drake" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Mighty Treve", + "year": 1937, + "cast": [ + "Noah Beery", + "Barbara Read" + ], + "genres": [ + "Western" + ] + }, + { + "title": "A Million to One", + "year": 1937, + "cast": [ + "Bruce Bennett", + "Joan Fontaine", + "Monte Blue" + ], + "genres": [ + "Drama", + "Sports" + ] + }, + { + "title": "Missing Witnesses", + "year": 1937, + "cast": [ + "John Litel", + "Dick Purcell", + "Sheila Bromley" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Motor Madness", + "year": 1937, + "cast": [ + "Rosalind Keith", + "Marc Lawrence" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Mountain Justice", + "year": 1937, + "cast": [ + "Josephine Hutchinson", + "Guy Kibbee", + "George Brent" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Mountain Music", + "year": 1937, + "cast": [ + "Bob Burns", + "Martha Raye" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Mr. Dodd Takes the Air", + "year": 1937, + "cast": [ + "Kenny Baker", + "Frank McHugh", + "Alice Brady" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Murder Goes to College", + "year": 1937, + "cast": [ + "Roscoe Karns", + "Marsha Hunt" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Murder in Greenwich Village", + "year": 1937, + "cast": [ + "Fay Wray", + "Richard Arlen", + "Raymond Walburn" + ], + "genres": [ + "Comedy", + "Mystery" + ] + }, + { + "title": "Music for Madame", + "year": 1937, + "cast": [ + "Nino Martini", + "Joan Fontaine" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "My Dear Miss Aldrich", + "year": 1937, + "cast": [ + "Maureen O'Sullivan", + "Walter Pidgeon", + "Edna May Oliver" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Nancy Steele Is Missing!", + "year": 1937, + "cast": [ + "Victor McLaglen", + "Walter Connolly", + ".", + "Peter Lorre" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Navy Blue and Gold", + "year": 1937, + "cast": [ + "James Stewart", + "Robert Young", + "Lionel Barrymore" + ], + "genres": [ + "Comedy", + "Sports" + ] + }, + { + "title": "Navy Blues", + "year": 1937, + "cast": [ + "Dick Purcell", + "Mary Brian" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Navy Spy", + "year": 1937, + "cast": [ + "Conrad Nagel", + "Eleanor Hunt", + "Judith Allen" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "New Faces of 1937", + "year": 1937, + "cast": [ + "Joe Penner", + "Milton Berle", + "Harriet Hilliard" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Night Club Scandal", + "year": 1937, + "cast": [ + "John Barrymore", + "Louise Campbell", + "Lynne Overman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Night Key", + "year": 1937, + "cast": [ + "Boris Karloff", + "Jean Rogers", + "Alan Baxter" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "Night Must Fall", + "year": 1937, + "cast": [ + "Rosalind Russell", + "Robert Montgomery", + "Dame May Whitty" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Night of Mystery", + "year": 1937, + "cast": [ + "Grant Richards", + "Roscoe Karns" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Nobody's Baby", + "year": 1937, + "cast": [ + "Patsy Kelly", + "Lyda Roberti", + "Lynne Overman" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "North of the Rio Grande", + "year": 1937, + "cast": [ + "William Boyd", + "Gabby Hayes", + "Lee J. Cobb" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Nothing Sacred", + "year": 1937, + "cast": [ + "Carole Lombard", + "Fredric March", + "Walter Connolly" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Off to the Races", + "year": 1937, + "cast": [ + "Slim Summerville", + "Jed Prouty", + "Shirley Deane" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Oh, Doctor", + "year": 1937, + "cast": [ + "Edward Everett Horton", + "Eve Arden", + "Thurston Hall" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Old Louisiana", + "year": 1937, + "cast": [ + "Rita Hayworth", + "Ramsay Hill", + "Allan Cavan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Old Wyoming Trail", + "year": 1937, + "cast": [ + "Charles Starrett", + "Barbara Weeks" + ], + "genres": [ + "Western" + ] + }, + { + "title": "On Again-Off Again", + "year": 1937, + "cast": [ + "Bert Wheeler", + "Robert Woolsey", + "Marjorie Lord" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "On Such a Night", + "year": 1937, + "cast": [ + "Grant Richards", + "Karen Morley", + "Roscoe Karns" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "On the Avenue", + "year": 1937, + "cast": [ + "Dick Powell", + "Madeleine Carroll", + "The Ritz Brothers" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Once a Doctor", + "year": 1937, + "cast": [ + "Jean Muir", + "Donald Woods" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "One Hundred Men and a Girl", + "year": 1937, + "cast": [ + "Deanna Durbin", + "Adolphe Menjou", + "Alice Brady" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "One Man Justice", + "year": 1937, + "cast": [ + "Charles Starrett", + "Barbara Weeks" + ], + "genres": [ + "Western" + ] + }, + { + "title": "One Mile from Heaven", + "year": 1937, + "cast": [ + "Claire Trevor", + "Fredi Washington", + "Sally Blane" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Outcast", + "year": 1937, + "cast": [ + "Warren William", + "Karen Morley", + "Lewis Stone" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Outcasts of Poker Flat", + "year": 1937, + "cast": [ + "Preston Foster", + "Virginia Weidler", + "Van Heflin" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Outer Gate", + "year": 1937, + "cast": [ + "Ralph Morgan", + "Kay Linaker" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Outlaws of the Orient", + "year": 1937, + "cast": [ + "Jack Holt", + "Mae Clark", + "Harold Huber" + ], + "genres": [ + "Action", + "Adventure" + ] + }, + { + "title": "Outlaws of the Prairie", + "year": 1937, + "cast": [ + "Charles Starrett", + "Iris Meredith" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Over the Goal", + "year": 1937, + "cast": [ + "William Hopper", + "June Travis" + ], + "genres": [ + "Sports", + "Drama" + ] + }, + { + "title": "Paid to Dance", + "year": 1937, + "cast": [ + "Don Terry", + "Jacqueline Wells", + "Rita Hayworth" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Paradise Express", + "year": 1937, + "cast": [ + "Grant Withers", + "Dorothy Appleby" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Paradise Isle", + "year": 1937, + "cast": [ + "Movita Castaneda", + "Warren Hull" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Park Avenue Logger", + "year": 1937, + "cast": [ + "George O'Brien", + "Beatrice Roberts", + "Ward Bond" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Parnell", + "year": 1937, + "cast": [ + "Clark Gable", + "Myrna Loy", + "Alan Marshal" + ], + "genres": [ + "Drama", + "Biography" + ] + }, + { + "title": "Parole Racket", + "year": 1937, + "cast": [ + "Paul Kelly", + "Rosalind Keith" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Partners in Crime", + "year": 1937, + "cast": [ + "Lynne Overman", + "Roscoe Karns", + "Anthony Quinn" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "Penrod and Sam", + "year": 1937, + "cast": [ + "Billy Mauch", + "Spring Byington" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Perfect Specimen", + "year": 1937, + "cast": [ + "Errol Flynn", + "Joan Blondell", + "Hugh Herbert" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Personal Property", + "year": 1937, + "cast": [ + "Jean Harlow", + "Robert Taylor", + "E. E. Clive" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Pick a Star", + "year": 1937, + "cast": [ + "Rosina Lawrence", + "Jack Haley", + "Lyda Roberti" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "The Plough and the Stars", + "year": 1937, + "cast": [ + "Barbara Stanwyck", + "Preston Foster", + "Barry Fitzgerald" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Portia on Trial", + "year": 1937, + "cast": [ + "Heather Angel", + "Neil Hamilton", + "Walter Abel" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Prairie Thunder", + "year": 1937, + "cast": [ + "Dick Foran", + "Frank Orth" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Prescription for Romance", + "year": 1937, + "cast": [ + "Wendy Barrie", + "Kent Taylor", + "Mischa Auer" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "The Prince and the Pauper", + "year": 1937, + "cast": [ + "Errol Flynn", + "Claude Rains", + "Henry Stephenson" + ], + "genres": [ + "Drama", + "Adventure" + ] + }, + { + "title": "The Prisoner of Zenda", + "year": 1937, + "cast": [ + "Ronald Colman", + "Douglas Fairbanks Jr.", + "Raymond Massey" + ], + "genres": [ + "Drama", + "Adventure" + ] + }, + { + "title": "Public Cowboy No. 1", + "year": 1937, + "cast": [ + "Gene Autry", + "Ann Rutherford" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Public Wedding", + "year": 1937, + "cast": [ + "Jane Wyman", + "Dick Purcell", + "Marie Wilson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Quality Street", + "year": 1937, + "cast": [ + "Katharine Hepburn", + "Franchot Tone", + "Estelle Winwood" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Quick Money", + "year": 1937, + "cast": [ + "Fred Stone", + "Berton Churchill" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Racing Lady", + "year": 1937, + "cast": [ + "Ann Dvorak", + "Smith Ballew", + "Harry Carey" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Racketeers in Exile", + "year": 1937, + "cast": [ + "George Bancroft", + "Evelyn Venable", + "Wynne Gibson" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Range Defenders", + "year": 1937, + "cast": [ + "Robert Livingston", + "Ray \"Crash\" Corrigan" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Ranger Courage", + "year": 1937, + "cast": [ + "Robert Allen", + "Walter Miller" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Rangers Step In", + "year": 1937, + "cast": [ + "Robert Allen", + "Eleanor Stewart" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Ready, Willing and Able", + "year": 1937, + "cast": [ + "Ruby Keeler", + "Wini Shaw", + "Carol Hughes" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Reckless Ranger", + "year": 1937, + "cast": [ + "Robert Allen", + "Jack Perrin" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Red Rope", + "year": 1937, + "cast": [ + "Bob Steele", + "Lois January" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Renfrew of the Royal Mounted", + "year": 1937, + "cast": [ + "James Newill", + "Carol Hughes" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Reported Missing", + "year": 1937, + "cast": [ + "William Gargan", + "Jean Rogers" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Rhythm in the Clouds", + "year": 1937, + "cast": [ + "Patricia Ellis", + "Warren Hull" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Riders of the Whistling Skull", + "year": 1937, + "cast": [ + "Bob Livingston", + "Ray \"Crash\" Corrigan" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Ridin' the Lone Trail", + "year": 1937, + "cast": [ + "Bob Steele", + "Claire Rochelle" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Riding on Air", + "year": 1937, + "cast": [ + "Joe E. Brown", + "Guy Kibbee", + "Florence Rice" + ], + "genres": [ + "Comedy", + "Adventure" + ] + }, + { + "title": "The Road Back", + "year": 1937, + "cast": [ + "Slim Summerville", + "Andy Devine", + "John Emery" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Roaring Timber", + "year": 1937, + "cast": [ + "Jack Holt", + "Grace Bradley" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Roll Along, Cowboy", + "year": 1937, + "cast": [ + "Smith Ballew", + "Cecilia Parker" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Rootin' Tootin' Rhythm", + "year": 1937, + "cast": [ + "Gene Autry", + "Monte Blue", + "Armida" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Rosalie", + "year": 1937, + "cast": [ + "Eleanor Powell", + "Nelson Eddy", + "Ray Bolger" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Round-Up Time in Texas", + "year": 1937, + "cast": [ + "Gene Autry", + "Maxine Doyle" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Rustlers' Valley", + "year": 1937, + "cast": [ + "William Boyd", + "Lee J. Cobb" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Sandflow", + "year": 1937, + "cast": [ + "Buck Jones", + "Lita Chevret" + ], + "genres": [ + "Western" + ] + }, + { + "title": "San Quentin", + "year": 1937, + "cast": [ + "Pat O'Brien", + "Humphrey Bogart", + "Ann Sheridan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Santa Fe Rides", + "year": 1937, + "cast": [ + "Bob Custer", + "Eleanor Stewart", + "David Sharpe" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Saratoga", + "year": 1937, + "cast": [ + "Clark Gable", + "Jean Harlow", + "Lionel Barrymore" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Saturday's Heroes", + "year": 1937, + "cast": [ + "Van Heflin", + "Marian Marsh" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sea Devils", + "year": 1937, + "cast": [ + "Victor McLaglen", + "Ida Lupino", + "Preston Foster" + ], + "genres": [ + "Drama", + "Adventure" + ] + }, + { + "title": "Sea Racketeers", + "year": 1937, + "cast": [ + "Weldon Heyburn", + "Jeanne Madden" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Second Honeymoon", + "year": 1937, + "cast": [ + "Loretta Young", + "Tyrone Power", + "Claire Trevor" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Secret Valley", + "year": 1937, + "cast": [ + "Richard Arlen", + "Virginia Grey" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Seventh Heaven", + "year": 1937, + "cast": [ + "James Stewart", + "Simone Simon", + "Jean Hersholt" + ], + "genres": [ + "Drama", + "Romance" + ] + }, + { + "title": "Sh! The Octopus", + "year": 1937, + "cast": [ + "Hugh Herbert", + "Allen Jenkins", + "Marcia Ralston" + ], + "genres": [ + "Comedy", + "Horror" + ] + }, + { + "title": "The Shadow", + "year": 1937, + "cast": [ + "Rita Hayworth", + "Charles Quigley" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Shall We Dance", + "year": 1937, + "cast": [ + "Fred Astaire", + "Ginger Rogers", + "Edward Everett Horton" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "She Asked for It", + "year": 1937, + "cast": [ + "William Gargan", + "Vivienne Osborne" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "She Had to Eat", + "year": 1937, + "cast": [ + "Rochelle Hudson", + "Jack Haley", + "Eugene Pallette" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "She Loved a Fireman", + "year": 1937, + "cast": [ + "Dick Foran", + "Ann Sheridan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "She Married an Artist", + "year": 1937, + "cast": [ + "John Boles", + "Luli Deste", + "Frances Drake" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "She's Dangerous", + "year": 1937, + "cast": [ + "Tala Birell", + "Cesar Romero", + "Walter Pidgeon" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "She's Got Everything", + "year": 1937, + "cast": [ + "Ann Sothern", + "Gene Raymond", + "Helen Broderick" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "She's No Lady", + "year": 1937, + "cast": [ + "Ann Dvorak", + "Aileen Pringle" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Sheik Steps Out", + "year": 1937, + "cast": [ + "Ramon Novarro", + "Lola Lane", + "Kathleen Burke" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Silver Trail", + "year": 1937, + "cast": [ + "Rex Lease", + "Roger Williams" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Sing and Be Happy", + "year": 1937, + "cast": [ + "Tony Martin", + "Leah Ray", + "Joan Davis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Singing Marine", + "year": 1937, + "cast": [ + "Dick Powell", + "Doris Weston", + "Lee Dixon" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Sky Racket", + "year": 1937, + "cast": [ + "Bruce Bennett", + "Monte Blue", + "Hattie McDaniel" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Slave Ship", + "year": 1937, + "cast": [ + "Wallace Beery", + "Warner Baxter", + "Mickey Rooney" + ], + "genres": [ + "Drama", + "Adventure" + ] + }, + { + "title": "Slaves in Bondage", + "year": 1937, + "cast": [ + "Lona Andre", + "Wheeler Oakman", + "Florence Dudley" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Slim", + "year": 1937, + "cast": [ + "Henry Fonda", + "Pat O'Brien" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Small Town Boy", + "year": 1937, + "cast": [ + "Stuart Erwin", + "Joyce Compton", + "Dorothy Appleby" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Smart Blonde", + "year": 1937, + "cast": [ + "Glenda Farrell", + "Barton MacLane" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Smoke Tree Range", + "year": 1937, + "cast": [ + "Buck Jones", + "Muriel Evans" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Snow White and the Seven Dwarfs", + "year": 1937, + "cast": [ + "Voices of", + "Adriana Caselotti", + "Billy Gilbert" + ], + "genres": [ + "Animated", + "Musical" + ] + }, + { + "title": "The Soldier and the Lady", + "year": 1937, + "cast": [ + "Anton Walbrook", + "Elizabeth Allan", + "Akim Tamiroff" + ], + "genres": [ + "Drama", + "Adventure" + ] + }, + { + "title": "Something to Sing About", + "year": 1937, + "cast": [ + "James Cagney", + "Evelyn Daw", + "Mona Barrie" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Song of the City", + "year": 1937, + "cast": [ + "Margaret Lindsay", + "Dean Jagger", + "Nat Pendleton" + ], + "genres": [ + "Drama", + "Musical" + ] + }, + { + "title": "Sophie Lang Goes West", + "year": 1937, + "cast": [ + "Gertrude Michael", + "Lee Bowman" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Souls at Sea", + "year": 1937, + "cast": [ + "Gary Cooper", + "George Raft", + "Robert Cummings" + ], + "genres": [ + "Drama", + "Adventure" + ] + }, + { + "title": "Speed to Spare", + "year": 1937, + "cast": [ + "Charles Quigley", + "Dorothy Wilson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Springtime in the Rockies", + "year": 1937, + "cast": [ + "Gene Autry", + "Smiley Burnette" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Stage Door", + "year": 1937, + "cast": [ + "Katharine Hepburn", + "Ginger Rogers", + "Adolphe Menjou" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Stand-In", + "year": 1937, + "cast": [ + "Leslie Howard", + "Humphrey Bogart", + "Joan Blondell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Star Is Born", + "year": 1937, + "cast": [ + "Fredric March", + "Janet Gaynor", + "Adolphe Menjou" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Stella Dallas", + "year": 1937, + "cast": [ + "Barbara Stanwyck", + "John Boles", + "Alan Hale" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Step Lively, Jeeves!", + "year": 1937, + "cast": [ + "Arthur Treacher", + "Patricia Ellis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Stolen Holiday", + "year": 1937, + "cast": [ + "Kay Francis", + "Claude Rains", + "Ian Hunter" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Submarine D-1", + "year": 1937, + "cast": [ + "Pat O'Brien", + "George Brent", + "Wayne Morris" + ], + "genres": [ + "Drama", + "Adventure" + ] + }, + { + "title": "Super-Sleuth", + "year": 1937, + "cast": [ + "Jack Oakie", + "Ann Sothern", + "Paul Guilfoyle" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Swing High, Swing Low", + "year": 1937, + "cast": [ + "Dorothy Lamour", + "Carole Lombard", + "Fred MacMurray" + ], + "genres": [ + "Drama", + "Musical" + ] + }, + { + "title": "Talent Scout", + "year": 1937, + "cast": [ + "Donald Woods", + "Jeanne Madden", + "Fred Lawrence" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Telephone Operator", + "year": 1937, + "cast": [ + "Judith Allen", + "Alice White", + "Pat Flaherty" + ], + "genres": [ + "Drama", + "Action" + ] + }, + { + "title": "Texas Trail", + "year": 1937, + "cast": [ + "William Boyd", + "Russell Hayden" + ], + "genres": [ + "Western" + ] + }, + { + "title": "That Certain Woman", + "year": 1937, + "cast": [ + "Bette Davis", + "Henry Fonda", + "Anita Louise" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "That Girl from Paris", + "year": 1937, + "cast": [ + "Lily Pons", + "Jack Oakie" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "That I May Live", + "year": 1937, + "cast": [ + "Rochelle Hudson", + "Robert Kent", + "Jack La Rue" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "That Man's Here Again", + "year": 1937, + "cast": [ + "Hugh Herbert", + "Mary Maguire" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "That Navy Spirit", + "year": 1937, + "cast": [ + "Lew Ayres", + "Mary Carlisle" + ], + "genres": [ + "Sports" + ] + }, + { + "title": "There Goes My Girl", + "year": 1937, + "cast": [ + "Ann Sothern", + "Gene Raymond", + "Richard Lane" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "There Goes the Groom", + "year": 1937, + "cast": [ + "Ann Sothern", + "Burgess Meredith", + "Mary Boland" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "They Gave Him a Gun", + "year": 1937, + "cast": [ + "Spencer Tracy", + "Gladys George", + "Franchot Tone" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "They Wanted to Marry", + "year": 1937, + "cast": [ + "Betty Furness", + "Gordon Jones" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "They Won't Forget", + "year": 1937, + "cast": [ + "Claude Rains", + "Lana Turner", + "Otto Kruger" + ], + "genres": [ + "Drama", + "Mystery" + ] + }, + { + "title": "Thin Ice", + "year": 1937, + "cast": [ + "Tyrone Power", + "Sonja Henie", + "Arthur Treacher" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Think Fast, Mr. Moto", + "year": 1937, + "cast": [ + "Peter Lorre", + "Virginia Field", + "Thomas Beck" + ], + "genres": [ + "Drama", + "Mystery" + ] + }, + { + "title": "The Thirteenth Chair", + "year": 1937, + "cast": [ + "Dame May Whitty", + "Lewis Stone", + "Elissa Landi" + ], + "genres": [ + "Drama", + "Mystery" + ] + }, + { + "title": "This Is My Affair", + "year": 1937, + "cast": [ + "Robert Taylor", + "Barbara Stanwyck", + "Brian Donlevy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "This Way Please", + "year": 1937, + "cast": [ + "Betty Grable", + "Charles Rogers", + "Porter Hall" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Thoroughbreds Don't Cry", + "year": 1937, + "cast": [ + "Mickey Rooney", + "Judy Garland", + "C. Aubrey Smith" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Thrill of a Lifetime", + "year": 1937, + "cast": [ + "James V. Kern", + "Judy Canova" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Thunder Trail", + "year": 1937, + "cast": [ + "Gilbert Roland", + "Charles Bickford", + "Marsha Hunt" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Time Out for Romance", + "year": 1937, + "cast": [ + "Claire Trevor", + "Michael Whalen", + "Joan Davis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Toast of New York", + "year": 1937, + "cast": [ + "Cary Grant", + "Frances Farmer", + "Edward Arnold" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Too Many Wives", + "year": 1937, + "cast": [ + "Anne Shirley", + "Barbara Pepper" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Top of the Town", + "year": 1937, + "cast": [ + "Doris Nolan", + "George Murphy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Topper", + "year": 1937, + "cast": [ + "Constance Bennett", + "Roland Young", + "Cary Grant" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Tovarich", + "year": 1937, + "cast": [ + "Claudette Colbert", + "Charles Boyer", + "Basil Rathbone" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Trail of Vengeance", + "year": 1937, + "cast": [ + "Johnny Mack Brown", + "Iris Meredith" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Trailin' Trouble", + "year": 1937, + "cast": [ + "Ken Maynard", + "Lona Andre" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Trapped", + "year": 1937, + "cast": [ + "Charles Starrett", + "Peggy Stratford" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Trapped by G-Men", + "year": 1937, + "cast": [ + "Jack Holt", + "Wynne Gibson" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Trigger Trio", + "year": 1937, + "cast": [ + "Ray Corrigan", + "Max Terhune" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Trouble in Morocco", + "year": 1937, + "cast": [ + "Jack Holt", + "Mae Clarke" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "True Confession", + "year": 1937, + "cast": [ + "Carole Lombard", + "Fred MacMurray", + "John Barrymore" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Trusted Outlaw", + "year": 1937, + "cast": [ + "Bob Steele", + "Lois January", + "Joan Barclay" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Turn Off the Moon", + "year": 1937, + "cast": [ + "Charlie Ruggles", + "Eleanore Whitney" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Two-Fisted Sheriff", + "year": 1937, + "cast": [ + "Charles Starrett", + "Barbara Weeks" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Two Gun Law", + "year": 1937, + "cast": [ + "Charles Starrett", + "Peggy Stratford" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Two Wise Maids", + "year": 1937, + "cast": [ + "Alison Skipworth", + "Peggy Moran", + "Donald Cook" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Under Cover of Night", + "year": 1937, + "cast": [ + "Edmund Lowe", + "Florence Rice" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Under the Red Robe", + "year": 1937, + "cast": [ + "Conrad Veidt", + "Raymond Massey", + "Annabella" + ], + "genres": [ + "Drama", + "Adventure" + ] + }, + { + "title": "Under Suspicion", + "year": 1937, + "cast": [ + "Jack Holt", + "Katherine DeMille", + "and", + "Luis Alberni" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Underworld", + "year": 1937, + "cast": [ + "Bee Freeman", + "Sol Johnson", + "Ethel Moses" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Varsity Show", + "year": 1937, + "cast": [ + "Dick Powell", + "Priscilla Lane" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Venus Makes Trouble", + "year": 1937, + "cast": [ + "James Dunn", + "Patricia Ellis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Waikiki Wedding", + "year": 1937, + "cast": [ + "Bing Crosby", + "Martha Raye", + "Shirley Ross" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Wake Up and Live", + "year": 1937, + "cast": [ + "Patsy Kelly", + "Ben Bernie", + "Walter Winchell" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "Way Out West", + "year": 1937, + "cast": [ + "Stan Laurel", + "Oliver Hardy", + "James Finlayson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "We Have Our Moments", + "year": 1937, + "cast": [ + "Sally Eilers", + "James Dunn", + "David Niven" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "We Who Are About to Die", + "year": 1937, + "cast": [ + "Ann Dvorak", + "Preston Foster", + "Willie Fung" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "Wee Willie Winkie", + "year": 1937, + "cast": [ + "Shirley Temple", + "Victor McLaglen", + "C. Aubrey Smith" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "We're on the Jury", + "year": 1937, + "cast": [ + "Victor Moore", + "Helen Broderick", + "Charles Lane" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Wells Fargo", + "year": 1937, + "cast": [ + "Joel McCrea", + "Frances Dee", + "Porter Hall" + ], + "genres": [ + "Drama", + "Western" + ] + }, + { + "title": "Westbound Mail", + "year": 1937, + "cast": [ + "Charles Starrett", + "Rosalind Keith" + ], + "genres": [ + "Western" + ] + }, + { + "title": "West Bound Limited", + "year": 1937, + "cast": [ + "Lyle Talbot", + "Polly Rowles" + ], + "genres": [ + "Action" + ] + }, + { + "title": "West of Shanghai", + "year": 1937, + "cast": [ + "Boris Karloff", + "Ricardo Cortez", + "Beverly Roberts" + ], + "genres": [ + "Drama", + "Adventure" + ] + }, + { + "title": "Western Gold", + "year": 1937, + "cast": [ + "Smith Ballew", + "Heather Angel" + ], + "genres": [ + "Western" + ] + }, + { + "title": "When Love Is Young", + "year": 1937, + "cast": [ + "Virginia Bruce", + "Kent Taylor", + "Walter Brennan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "When You're in Love", + "year": 1937, + "cast": [ + "Cary Grant", + "Grace Moore", + "Aline MacMahon" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "When's Your Birthday?", + "year": 1937, + "cast": [ + "Joe E. Brown", + "Marian Marsh" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "White Bondage", + "year": 1937, + "cast": [ + "Jean Muir", + "Gordon Oliver" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Wife, Doctor and Nurse", + "year": 1937, + "cast": [ + "Loretta Young", + "Warner Baxter", + "Virginia Bruce" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Wild and Woolly", + "year": 1937, + "cast": [ + "Jane Withers", + "Walter Brennan", + "Lon Chaney Jr." + ], + "genres": [ + "Comedy", + "Western" + ] + }, + { + "title": "Wild Horse Rodeo", + "year": 1937, + "cast": [ + "Robert Livingston", + "June Martel" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Wild Money", + "year": 1937, + "cast": [ + "Edward Everett Horton", + "Louise Campbell", + "Lynne Overman" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Wildcatter", + "year": 1937, + "cast": [ + "Scott Kolk", + "Jean Rogers" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Windjammer", + "year": 1937, + "cast": [ + "George O'Brien", + "Constance Worth" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Wine, Women and Horses", + "year": 1937, + "cast": [ + "Ann Sheridan", + "Barton MacLane", + "Walter Cassel" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Wings over Honolulu", + "year": 1937, + "cast": [ + "Wendy Barrie", + "Ray Milland", + "William Gargan" + ], + "genres": [ + "War", + "Romance" + ] + }, + { + "title": "Wise Girl", + "year": 1937, + "cast": [ + "Miriam Hopkins", + "Ray Milland", + "Guinn Williams" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Woman Chases Man", + "year": 1937, + "cast": [ + "Charles Winninger", + "Miriam Hopkins", + "Joel McCrea" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Woman I Love", + "year": 1937, + "cast": [ + "Paul Muni", + "Miriam Hopkins", + "Louis Hayward" + ], + "genres": [ + "Drama", + "War" + ] + }, + { + "title": "Woman in Distress", + "year": 1937, + "cast": [ + "May Robson", + "Irene Hervey" + ], + "genres": [ + "Comedy", + "Crime" + ] + }, + { + "title": "Woman-Wise", + "year": 1937, + "cast": [ + "Rochelle Hudson", + "Michael Whalen" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Women Men Marry", + "year": 1937, + "cast": [ + "George Murphy", + "Josephine Hutchinson", + "Claire Dodd" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Women of Glamour", + "year": 1937, + "cast": [ + "Virginia Bruce", + "Melvyn Douglas", + "Reginald Denny" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Wrong Road", + "year": 1937, + "cast": [ + "Richard Cromwell", + "Helen Mack", + "Lionel Atwill" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Yodelin' Kid from Pine Ridge", + "year": 1937, + "cast": [ + "Gene Autry", + "Betty Bronson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "You Can't Beat Love", + "year": 1937, + "cast": [ + "Preston Foster", + "Joan Fontaine", + "Herbert Mundin" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "You Can't Buy Luck", + "year": 1937, + "cast": [ + "Onslow Stevens", + "Helen Mack" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "You Can't Have Everything", + "year": 1937, + "cast": [ + "Alice Faye", + "Gypsy Rose Lee", + "The Ritz Brothers" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "You Only Live Once", + "year": 1937, + "cast": [ + "Sylvia Sidney", + "Henry Fonda", + "Barton MacLane" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "You're Only Young Once", + "year": 1937, + "cast": [ + "Mickey Rooney", + "Lewis Stone", + "Cecilia Parker" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Youth on Parole", + "year": 1937, + "cast": [ + "Marian Marsh", + "Gordon Oliver", + "Margaret Dumont" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Accidents Will Happen", + "year": 1938, + "cast": [ + "Ronald Reagan", + "Gloria Blondell", + "Dick Purcell" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "Adventure in Sahara", + "year": 1938, + "cast": [ + "Paul Kelly", + "Lorna Gray", + "C. Henry Gordon" + ], + "genres": [ + "Drama", + "Action" + ] + }, + { + "title": "The Adventures of Marco Polo", + "year": 1938, + "cast": [ + "Gary Cooper", + "George Barbier", + "Basil Rathbone" + ], + "genres": [ + "Drama", + "Biography" + ] + }, + { + "title": "The Adventures of Robin Hood", + "year": 1938, + "cast": [ + "Errol Flynn", + "Olivia de Havilland", + "Claude Rains" + ], + "genres": [ + "Drama", + "Adventure" + ] + }, + { + "title": "The Adventures of Tom Sawyer", + "year": 1938, + "cast": [ + "Tommy Kelly", + "Jackie Moran", + "Victor Jory" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Affairs of Annabel", + "year": 1938, + "cast": [ + "Lucille Ball", + "Jack Oakie", + "Bradley Page" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Air Devils", + "year": 1938, + "cast": [ + "Dick Purcell", + "Beryl Wallace" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Alexander's Ragtime Band", + "year": 1938, + "cast": [ + "Don Ameche", + "Tyrone Power", + "Ethel Merman" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Algiers", + "year": 1938, + "cast": [ + "Hedy Lamarr", + "Charles Boyer", + "Joseph Calleia" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Always Goodbye", + "year": 1938, + "cast": [ + "Barbara Stanwyck", + "Herbert Marshall", + "Cesar Romero" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Always in Trouble", + "year": 1938, + "cast": [ + "Jane Withers", + "Nana Bryant", + "Eddie Collins" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Amazing Dr. Clitterhouse", + "year": 1938, + "cast": [ + "Edward G. Robinson", + "Humphrey Bogart", + "Donald Crisp" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Angels with Dirty Faces", + "year": 1938, + "cast": [ + "James Cagney", + "Pat O'Brien", + "Humphrey Bogart" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "Annabel Takes a Tour", + "year": 1938, + "cast": [ + "Lucille Ball", + "Jack Oakie", + "Ruth Donnelly" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Arkansas Traveler", + "year": 1938, + "cast": [ + "Bob Burns", + "Jean Parker", + "John Beal" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Army Girl", + "year": 1938, + "cast": [ + "Preston Foster", + "Madge Evans", + "James Gleason" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Arrest Bulldog Drummond", + "year": 1938, + "cast": [ + "John Howard", + "Heather Angel", + "Reginald Denny" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Arsène Lupin Returns", + "year": 1938, + "cast": [ + "Melvyn Douglas", + "Virginia Bruce", + "Warren William" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Arson Gang Busters", + "year": 1938, + "cast": [ + "Robert Livingston", + "Jackie Moran", + "Rosalind Keith" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Artists and Models Abroad", + "year": 1938, + "cast": [ + "Jack Benny", + "Joan Bennett", + "Mary Boland" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "Bar 20 Justice", + "year": 1938, + "cast": [ + "William Boyd", + "Gabby Hayes", + "Russell Hayden" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Barefoot Boy", + "year": 1938, + "cast": [ + "Jackie Moran", + "Ralph Morgan", + "Claire Windsor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Baroness and the Butler", + "year": 1938, + "cast": [ + "William Powell", + "Annabella", + "Henry Stephenson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Battle of Broadway", + "year": 1938, + "cast": [ + "Victor McLaglen", + "Brian Donlevy", + "Gypsy Rose Lee" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Beloved Brat", + "year": 1938, + "cast": [ + "Bonita Granville", + "Donald Crisp", + "Dolores Costello" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Big Broadcast of 1938", + "year": 1938, + "cast": [ + "W. C. Fields", + "Bob Hope", + "Dorothy Lamour" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Billy the Kid Returns", + "year": 1938, + "cast": [ + "Roy Rogers", + "Lynne Roberts" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Black Bandit", + "year": 1938, + "cast": [ + "Bob Baker", + "Marjorie Reynolds" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Black Doll", + "year": 1938, + "cast": [ + "C. Henry Gordon", + "Nan Grey", + "Donald Woods" + ], + "genres": [ + "Comedy", + "Mystery" + ] + }, + { + "title": "Blind Alibi", + "year": 1938, + "cast": [ + "Richard Dix", + "Whitney Bourne", + "Eduardo Ciannelli" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Blockade", + "year": 1938, + "cast": [ + "Madeleine Carroll", + "Henry Fonda", + "Leo Carrillo" + ], + "genres": [ + "Drama", + "War" + ] + }, + { + "title": "Block-Heads", + "year": 1938, + "cast": [ + "Stan Laurel", + "Oliver Hardy", + "Patricia Ellis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Blond Cheat", + "year": 1938, + "cast": [ + "Joan Fontaine", + "Derrick De Marney", + "Lilian Bond" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Blondes At Work", + "year": 1938, + "cast": [ + "Glenda Farrell", + "Barton MacLane", + "Tom Kennedy" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "Blondie", + "year": 1938, + "cast": [ + "Arthur Lake", + "Penny Singleton", + "Jonathan Hale" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Bluebeard's Eighth Wife", + "year": 1938, + "cast": [ + "Claudette Colbert", + "Gary Cooper", + "David Niven" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Booloo", + "year": 1938, + "cast": [ + "Colin Tapley", + "Jayne Regan" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Border G-Man", + "year": 1938, + "cast": [ + "George O'Brien", + "Laraine Day", + "Rita La Roy" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Border Wolves", + "year": 1938, + "cast": [ + "Bob Baker", + "Constance Moore" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Born to be Wild", + "year": 1938, + "cast": [ + "Ralph Byrd", + "Doris Weston", + "Ward Bond" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Boy Meets Girl", + "year": 1938, + "cast": [ + "James Cagney", + "Pat O'Brien", + "Marie Wilson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Boys Town", + "year": 1938, + "cast": [ + "Spencer Tracy", + "Mickey Rooney", + "Henry Hull" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Breaking the Ice", + "year": 1938, + "cast": [ + "Charles Ruggles", + "Dolores Costello", + "John King" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Bringing Up Baby", + "year": 1938, + "cast": [ + "Katharine Hepburn", + "Cary Grant", + "May Robson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Broadway Musketeers", + "year": 1938, + "cast": [ + "Margaret Lindsay", + "Ann Sheridan", + "Marie Wilson" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Brother Rat", + "year": 1938, + "cast": [ + "Wayne Morris", + "Ronald Reagan", + "Jane Wyman" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Buccaneer", + "year": 1938, + "cast": [ + "Fredric March", + "Hugh Sothern", + "Margot Grahame" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Bulldog Drummond in Africa", + "year": 1938, + "cast": [ + "John Howard", + "Heather Angel", + "H. B. Warner" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Bulldog Drummond's Peril", + "year": 1938, + "cast": [ + "John Howard", + "John Barrymore", + "Louise Campbell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "California Frontier", + "year": 1938, + "cast": [ + "Buck Jones", + "Milburn Stone" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Call of the Rockies", + "year": 1938, + "cast": [ + "Charles Starrett", + "Iris Meredith" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Call of the Yukon", + "year": 1938, + "cast": [ + "Richard Arlen", + "Beverly Roberts", + "Lyle Talbot" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Call the Mesquiteers", + "year": 1938, + "cast": [ + "Robert Livingston", + "Ray Corrigan", + "Lynne Roberts" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Campus Confessions", + "year": 1938, + "cast": [ + "Betty Grable", + "Thurston Hall", + "William Henry" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Carefree", + "year": 1938, + "cast": [ + "Fred Astaire", + "Ginger Rogers", + "Jack Carson" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Cassidy of Bar 20", + "year": 1938, + "cast": [ + "William Boyd", + "Russell Hayden", + "Nora Lane" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Cattle Raiders", + "year": 1938, + "cast": [ + "Charles Starrett", + "Iris Meredith", + "Donald Grayson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Change of Heart", + "year": 1938, + "cast": [ + "Gloria Stuart", + "Michael Whalen", + "Lyle Talbot" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Charlie Chan in Honolulu", + "year": 1938, + "cast": [ + "Sidney Toler", + "Phyllis Brooks" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Chaser", + "year": 1938, + "cast": [ + "Lewis Stone", + "Nat Pendleton", + "John Qualen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Child Bride", + "year": 1938, + "cast": [ + "Shirley Mills", + "Bob Bollinger" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Christmas Carol", + "year": 1938, + "cast": [ + "Reginald Owen", + "Gene Lockhart", + "Terry Kilburn" + ], + "genres": [ + "Drama", + "Fantasy" + ] + }, + { + "title": "City Girl", + "year": 1938, + "cast": [ + "Phyllis Brooks", + "Ricardo Cortez" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "City Streets", + "year": 1938, + "cast": [ + "Leo Carrillo", + "Edith Fellows" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Cocoanut Grove", + "year": 1938, + "cast": [ + "Fred MacMurray", + "Eve Arden", + "Rufe Davis" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "College Swing", + "year": 1938, + "cast": [ + "George Burns", + "Gracie Allen", + "Bob Hope" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Come On, Rangers", + "year": 1938, + "cast": [ + "Roy Rogers", + "Lynne Roberts" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Comet Over Broadway", + "year": 1938, + "cast": [ + "Kay Francis", + "Donald Crisp", + "Ian Hunter" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Condemned Women", + "year": 1938, + "cast": [ + "Anne Shirley", + "Sally Eilers", + "Lee Patrick" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Convicted", + "year": 1938, + "cast": [ + "Charles Quigley", + "Rita Hayworth", + "Marc Lawrence" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Cowboy and the Lady", + "year": 1938, + "cast": [ + "Gary Cooper", + "Merle Oberon" + ], + "genres": [ + "Western", + "Romance" + ] + }, + { + "title": "Cowboy from Brooklyn", + "year": 1938, + "cast": [ + "Pat O'Brien", + "Dick Powell", + "Priscilla Lane" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Crashing Hollywood", + "year": 1938, + "cast": [ + "Lee Tracy", + "Joan Woodbury", + "Lee Patrick" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Crime of Doctor Hallet", + "year": 1938, + "cast": [ + "Ralph Bellamy", + "Josephine Hutchinson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Crime Ring", + "year": 1938, + "cast": [ + "Allan Lane", + "Clara Blandick", + "Bradley Page" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Crime School", + "year": 1938, + "cast": [ + "Humphrey Bogart", + "Gale Page", + "Billy Halop" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Crime Takes a Holiday", + "year": 1938, + "cast": [ + "Jack Holt", + "Marcia Ralston" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Crowd Roars", + "year": 1938, + "cast": [ + "Robert Taylor", + "Maureen O'Sullivan", + "Edward Arnold" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Danger on the Air", + "year": 1938, + "cast": [ + "Donald Woods", + "Nan Grey", + "Jed Prouty" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Dangerous to Know", + "year": 1938, + "cast": [ + "Anna May Wong", + "Akim Tamiroff", + "Gail Patrick" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "Daredevil Drivers", + "year": 1938, + "cast": [ + "Beverly Roberts", + "Dick Purcell", + "Gloria Blondell" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Dawn Patrol", + "year": 1938, + "cast": [ + "Errol Flynn", + "Basil Rathbone", + "David Niven" + ], + "genres": [ + "War" + ] + }, + { + "title": "Desert Patrol", + "year": 1938, + "cast": [ + "Bob Steele", + "Rex Lease" + ], + "genres": [ + "Western" + ] + }, + { + "title": "A Desperate Adventure", + "year": 1938, + "cast": [ + "Ramon Novarro", + "Marian Marsh", + "Eric Blore" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Devil's Party", + "year": 1938, + "cast": [ + "Victor McLaglen", + "Beatrice Roberts", + "William Gargan" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "Dr. Rhythm", + "year": 1938, + "cast": [ + "Bing Crosby", + "Mary Carlisle", + "Andy Devine" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Double Danger", + "year": 1938, + "cast": [ + "Preston Foster", + "Whitney Bourne" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Down in 'Arkansaw'", + "year": 1938, + "cast": [ + "Ralph Byrd", + "June Storey", + "Berton Churchill" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Down on the Farm", + "year": 1938, + "cast": [ + "Jed Prouty", + "Spring Byington", + "Louise Fazenda" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Dramatic School", + "year": 1938, + "cast": [ + "Luise Rainer", + "Paulette Goddard", + "Lana Turner" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Duke of West Point", + "year": 1938, + "cast": [ + "Joan Fontaine", + "Tom Brown", + "Richard Carlson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Durango Valley Raiders", + "year": 1938, + "cast": [ + "Bob Steele", + "Louise Stanley" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Everybody Sing", + "year": 1938, + "cast": [ + "Judy Garland", + "Fanny Brice", + "Billie Burke" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Everybody's Doing It", + "year": 1938, + "cast": [ + "Sally Eilers", + "Preston Foster", + "Guinn Williams" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Exposed", + "year": 1938, + "cast": [ + "Glenda Farrell", + "Otto Kruger", + "Herbert Mundin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Extortion", + "year": 1938, + "cast": [ + "Scott Kolk", + "Mary Russell" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Fast Company", + "year": 1938, + "cast": [ + "Melvyn Douglas", + "Florence Rice", + "Claire Dodd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Federal Man-Hunt", + "year": 1938, + "cast": [ + "Robert Livingston", + "June Travis" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Feud Maker", + "year": 1938, + "cast": [ + "Bob Steele", + "Karl Hackett" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The First Hundred Years", + "year": 1938, + "cast": [ + "Robert Montgomery", + "Virginia Bruce", + "Warren William" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Five of a Kind", + "year": 1938, + "cast": [ + "Jean Hersholt", + "Claire Trevor", + "Cesar Romero" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Flight into Nowhere", + "year": 1938, + "cast": [ + "Jack Holt", + "Jacqueline Wells", + "Dick Purcell" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Flight to Fame", + "year": 1938, + "cast": [ + "Charles Farrell", + "Hugh Sothern", + "Julie Bishop" + ], + "genres": [ + "Drama", + "Science Fiction" + ] + }, + { + "title": "Flirting with Fate", + "year": 1938, + "cast": [ + "Joe E. Brown", + "Beverly Roberts", + "Wynne Gibson", + "Steffi Duna" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Fools for Scandal", + "year": 1938, + "cast": [ + "Carole Lombard", + "Ralph Bellamy", + "Fernand Gravey" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "Forbidden Valley", + "year": 1938, + "cast": [ + "Noah Beery Jr.", + "Robert Barrat", + "Samuel S. Hinds" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Four Daughters", + "year": 1938, + "cast": [ + "Priscilla Lane", + "Claude Rains", + "John Garfield" + ], + "genres": [ + "Drama", + "Musical" + ] + }, + { + "title": "Four Men and a Prayer", + "year": 1938, + "cast": [ + "Loretta Young", + "David Niven", + "George Sanders" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Four's a Crowd", + "year": 1938, + "cast": [ + "Errol Flynn", + "Olivia de Havilland", + "Rosalind Russell" + ], + "genres": [ + "Comedy", + "Romance" + ] + }, + { + "title": "Freshman Year", + "year": 1938, + "cast": [ + "Constance Moore", + "Dixie Dunbar", + "William Lundigan" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Frontiersmen", + "year": 1938, + "cast": [ + "William Boyd", + "Gabby Hayes", + "Evelyn Venable" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Fugitives for a Night", + "year": 1938, + "cast": [ + "Eleanor Lynn", + "Allan Lane", + "Bradley Page" + ], + "genres": [ + "Comedy", + "Mystery" + ] + }, + { + "title": "Gambling Ship", + "year": 1938, + "cast": [ + "Robert Wilcox", + "Helen Mack" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Gang Bullets", + "year": 1938, + "cast": [ + "Anne Nagel", + "Robert Kent" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Gang Smashers", + "year": 1938, + "cast": [ + "Nina Mae McKinney", + "Mantan Moreland" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Gangs of New York", + "year": 1938, + "cast": [ + "Charles Bickford", + "Ann Dvorak" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Gangster's Boy", + "year": 1938, + "cast": [ + "Jackie Cooper", + "Lucy Gilman", + "Tommy Wonder" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Garden of the Moon", + "year": 1938, + "cast": [ + "Pat O'Brien", + "Rudy Vallée", + "Johnnie Davis" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "Gateway", + "year": 1938, + "cast": [ + "Arleen Whelan", + "Don Ameche", + "Gregory Ratoff" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Ghost Town Riders", + "year": 1938, + "cast": [ + "Bob Baker", + "Fay McKenzie" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Girl Downstairs", + "year": 1938, + "cast": [ + "Franciska Gaal", + "Franchot Tone", + "Walter Connolly" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Girl of the Golden West", + "year": 1938, + "cast": [ + "Jeanette MacDonald", + "Nelson Eddy", + "Walter Pidgeon" + ], + "genres": [ + "Western", + "Musical" + ] + }, + { + "title": "Girls on Probation", + "year": 1938, + "cast": [ + "Jane Bryan", + "Ronald Reagan", + "Susan Heyward" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Girls' School", + "year": 1938, + "cast": [ + "Anne Shirley", + "Nan Grey", + "Ralph Bellamy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Give Me a Sailor", + "year": 1938, + "cast": [ + "Martha Raye", + "Bob Hope", + "Betty Grable" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "The Gladiator", + "year": 1938, + "cast": [ + "Joe E. Brown", + "June Travis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Go Chase Yourself", + "year": 1938, + "cast": [ + "Lucille Ball", + "Joe Penner", + "Fritz Feld" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "God's Step Children", + "year": 1938, + "cast": [ + "Ethel Moses", + "Alice B. Russell", + "Columbus Jackson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Going Places", + "year": 1938, + "cast": [ + "Dick Powell", + "Anita Louise", + "Ronald Reagan" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "Gold Diggers in Paris", + "year": 1938, + "cast": [ + "Rudy Vallée", + "Rosemary Lane", + "Hugh Herbert" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "Gold Is Where You Find It", + "year": 1938, + "cast": [ + "George Brent", + "Olivia de Havilland", + "Claude Rains" + ], + "genres": [ + "Western", + "Romance" + ] + }, + { + "title": "Gold Mine in the Sky", + "year": 1938, + "cast": [ + "Gene Autry", + "Carol Hughes" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Goldwyn Follies", + "year": 1938, + "cast": [ + "Adolphe Menjou", + "Ritz Brothers", + "Vera Zorina" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "Goodbye Broadway", + "year": 1938, + "cast": [ + "Alice Brady", + "Charles Winninger", + "Dorothea Kent" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Great Waltz", + "year": 1938, + "cast": [ + "Luise Rainer", + "Fernand Gravey", + "Lionel Atwill" + ], + "genres": [ + "Drama", + "Musical" + ] + }, + { + "title": "Guilty Trails", + "year": 1938, + "cast": [ + "Bob Baker", + "Marjorie Reynolds" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Gun Law", + "year": 1938, + "cast": [ + "George O'Brien", + "Ward Bond" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Gun Packer", + "year": 1938, + "cast": [ + "Jack Randall", + "Louise Stanley" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Happy Landing", + "year": 1938, + "cast": [ + "Sonja Henie", + "Don Ameche", + "Cesar Romero" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "Hard to Get", + "year": 1938, + "cast": [ + "Olivia de Havilland", + "Dick Powell", + "Charles Winninger" + ], + "genres": [ + "Comedy", + "Romance" + ] + }, + { + "title": "Having Wonderful Time", + "year": 1938, + "cast": [ + "Ginger Rogers", + "Douglas Fairbanks Jr.", + "Eve Arden" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Hawaiian Buckaroo", + "year": 1938, + "cast": [ + "Smith Ballew", + "Evalyn Knapp" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Hawaii Calls", + "year": 1938, + "cast": [ + "Ned Sparks", + "Bobby Breen", + "Warren Hull" + ], + "genres": [ + "Drama", + "Musical" + ] + }, + { + "title": "Heart of Arizona", + "year": 1938, + "cast": [ + "William Boyd", + "Russell Hayden", + "Natalie Moorhead" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Heart of the North", + "year": 1938, + "cast": [ + "Dick Foran", + "Gale Page", + "Allen Jenkins" + ], + "genres": [ + "Drama", + "Adventure" + ] + }, + { + "title": "He Couldn't Say No", + "year": 1938, + "cast": [ + "Frank McHugh", + "Jane Wyman", + "Cora Witherspoon" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Her Jungle Love", + "year": 1938, + "cast": [ + "Dorothy Lamour", + "Ray Milland", + "Lynne Overman" + ], + "genres": [ + "Adventure", + "Musical" + ] + }, + { + "title": "Heroes of the Hills", + "year": 1938, + "cast": [ + "Robert Livingston", + "Ray Corrigan", + "Priscilla Lawson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Higgins Family", + "year": 1938, + "cast": [ + "James Gleason", + "Lucile Gleason", + "Lynne Roberts" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Highway Patrol", + "year": 1938, + "cast": [ + "Robert Paige", + "Julie Bishop" + ], + "genres": [ + "Action" + ] + }, + { + "title": "His Exciting Night", + "year": 1938, + "cast": [ + "Charles Ruggles", + "Marion Martin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hold That Co-ed", + "year": 1938, + "cast": [ + "John Barrymore", + "George Murphy", + "Joan Davis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hold That Kiss", + "year": 1938, + "cast": [ + "Maureen O'Sullivan", + "Dennis O'Keefe", + "Mickey Rooney" + ], + "genres": [ + "Comedy", + "Romance" + ] + }, + { + "title": "Holiday", + "year": 1938, + "cast": [ + "Katharine Hepburn", + "Cary Grant", + "Lew Ayres" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Hollywood Stadium Mystery", + "year": 1938, + "cast": [ + "Neil Hamilton", + "Evelyn Venable", + "Barbara Pepper" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Hunted Men", + "year": 1938, + "cast": [ + "Lloyd Nolan", + "Mary Carlisle", + "Anthony Quinn" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "I Am a Criminal", + "year": 1938, + "cast": [ + "John Carroll", + "Kay Linaker" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "I Am the Law", + "year": 1938, + "cast": [ + "Edward G. Robinson", + "Otto Kruger", + "Barbara O'Neil" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "I Demand Payment", + "year": 1938, + "cast": [ + "Jack La Rue", + "Betty Burgess", + "Guinn Williams" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "I Met My Love Again", + "year": 1938, + "cast": [ + "Joan Bennett", + "Henry Fonda" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "I Stand Accused", + "year": 1938, + "cast": [ + "Robert Cummings", + "Helen Mack", + "Lyle Talbot" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "I'll Give a Million", + "year": 1938, + "cast": [ + "Warner Baxter", + "Peter Lorre", + "Jean Hersholt" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "I'm From the City", + "year": 1938, + "cast": [ + "Joe Penner", + "Richard Lane", + "Lorraine Krueger" + ], + "genres": [ + "Western", + "Comedy" + ] + }, + { + "title": "If I Were King", + "year": 1938, + "cast": [ + "Ronald Colman", + "Basil Rathbone", + "Frances Dee" + ], + "genres": [ + "Drama", + "Adventure" + ] + }, + { + "title": "Illegal Traffic", + "year": 1938, + "cast": [ + "J. Carrol Naish", + "Mary Carlisle", + "Robert Preston" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "In Early Arizona", + "year": 1938, + "cast": [ + "Bill Elliott", + "Dorothy Gulliver" + ], + "genres": [ + "Western" + ] + }, + { + "title": "In Old Chicago", + "year": 1938, + "cast": [ + "Tyrone Power", + "Alice Faye", + "Don Ameche" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "In Old Mexico", + "year": 1938, + "cast": [ + "William Boyd", + "Gabby Hayes", + "Russell Hayden" + ], + "genres": [ + "Western" + ] + }, + { + "title": "International Settlement", + "year": 1938, + "cast": [ + "Dolores del Rio", + "George Sanders", + "June Lang" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Invisible Enemy", + "year": 1938, + "cast": [ + "Alan Marshal", + "Tala Birell", + "Herbert Mundin" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Invisible Menace", + "year": 1938, + "cast": [ + "Boris Karloff", + "Marie Wilson" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Island in the Sky", + "year": 1938, + "cast": [ + "Gloria Stuart", + "Michael Whalen", + "Leon Ames" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "Jezebel", + "year": 1938, + "cast": [ + "Bette Davis", + "Henry Fonda", + "George Brent" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Josette", + "year": 1938, + "cast": [ + "Don Ameche", + "William Collier Sr.", + "Simone Simon" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "Joy of Living", + "year": 1938, + "cast": [ + "Irene Dunne", + "Douglas Fairbanks Jr.", + "Guy Kibbee" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "Judge Hardy's Children", + "year": 1938, + "cast": [ + "Mickey Rooney", + "Lewis Stone", + "Fay Holden" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Jury's Secret", + "year": 1938, + "cast": [ + "Kent Taylor", + "Fay Wray" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Just Around the Corner", + "year": 1938, + "cast": [ + "Shirley Temple", + "Charles Farrell", + "Franklin Pangborn" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "Juvenile Court", + "year": 1938, + "cast": [ + "Paul Kelly", + "Rita Hayworth" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Kentucky", + "year": 1938, + "cast": [ + "Loretta Young", + "Walter Brennan", + "Richard Greene" + ], + "genres": [ + "Drama", + "Romance" + ] + }, + { + "title": "Kentucky Moonshine", + "year": 1938, + "cast": [ + "Ritz Brothers", + "Marjorie Weaver", + "Tony Martin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Kidnapped", + "year": 1938, + "cast": [ + "Warner Baxter", + "Freddie Bartholomew", + "Reginald Owen" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "King of Alcatraz", + "year": 1938, + "cast": [ + "Lloyd Nolan", + "Robert Preston", + "J. Carrol Naish" + ], + "genres": [ + "Drama", + "Action" + ] + }, + { + "title": "King of the Newsboys", + "year": 1938, + "cast": [ + "Lew Ayres", + "Helen Mack", + "Victor Varconi" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Ladies in Distress", + "year": 1938, + "cast": [ + "Alison Skipworth", + "Robert Livingston", + "Virginia Grey" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Lady Behave!", + "year": 1938, + "cast": [ + "Sally Eilers", + "Neil Hamilton", + "Joseph Schildkraut" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Lady in the Morgue", + "year": 1938, + "cast": [ + "Preston Foster", + "Patricia Ellis" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Lady Objects", + "year": 1938, + "cast": [ + "Gloria Stuart", + "Lanny Ross", + "Joan Marsh" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Last Express", + "year": 1938, + "cast": [ + "Kent Taylor", + "Dorothea Kent", + "Greta Granstedt" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Last Stand", + "year": 1938, + "cast": [ + "Bob Baker", + "Constance Moore" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Law of the Plains", + "year": 1938, + "cast": [ + "Charles Starrett", + "Iris Meredith" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Law of the Texan", + "year": 1938, + "cast": [ + "Buck Jones", + "Dorothy Fay" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Law of the Underworld", + "year": 1938, + "cast": [ + "Chester Morris", + "Anne Shirley", + "Eduardo Ciannelli" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Law West of Tombstone", + "year": 1938, + "cast": [ + "Tim Holt", + "Harry Carey", + "Paul Guilfoyle" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Lawless Valley", + "year": 1938, + "cast": [ + "George O'Brien", + "Kay Sutton" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Letter of Introduction", + "year": 1938, + "cast": [ + "Adolphe Menjou", + "Andrea Leeds", + "Ann Sheridan" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Little Adventuress", + "year": 1938, + "cast": [ + "Edith Fellows", + "Julie Bishop" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Listen, Darling", + "year": 1938, + "cast": [ + "Judy Garland", + "Freddie Bartholomew", + "Mary Astor" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "Little Miss Broadway", + "year": 1938, + "cast": [ + "Shirley Temple", + "Jimmy Durante", + "Edna May Oliver" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "Little Miss Roughneck", + "year": 1938, + "cast": [ + "Edith Fellows", + "Julie Bishop", + "Leo Carrillo" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Little Miss Thoroughbred", + "year": 1938, + "cast": [ + "John Litel", + "Frank McHugh", + "Ann Sheridan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Little Orphan Annie", + "year": 1938, + "cast": [ + "Ann Gillis", + "Robert Kent", + "June Travis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Little Tough Guy", + "year": 1938, + "cast": [ + "Huntz Hall", + "Helen Parrish", + "Robert Wilcox" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "Little Tough Guys in Society", + "year": 1938, + "cast": [ + "Mischa Auer", + "Mary Boland", + "Edward Everett Horton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Lone Wolf in Paris", + "year": 1938, + "cast": [ + "Francis Lederer", + "Frances Drake", + "Walter Kingsford" + ], + "genres": [ + "Drama", + "Mystery" + ] + }, + { + "title": "Lord Jeff", + "year": 1938, + "cast": [ + "Freddie Bartholomew", + "Mickey Rooney", + "Charles Coburn" + ], + "genres": [ + "Comedy", + "Crime" + ] + }, + { + "title": "Love Finds Andy Hardy", + "year": 1938, + "cast": [ + "Mickey Rooney", + "Judy Garland", + "Lewis Stone" + ], + "genres": [ + "Comedy", + "Romance" + ] + }, + { + "title": "Love, Honor and Behave", + "year": 1938, + "cast": [ + "Wayne Morris", + "Priscilla Lane" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Love Is a Headache", + "year": 1938, + "cast": [ + "Gladys George", + "Franchot Tone", + "Mickey Rooney" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Love on a Budget", + "year": 1938, + "cast": [ + "Jed Prouty", + "Shirley Deane" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mad About Music", + "year": 1938, + "cast": [ + "Deanna Durbin", + "Herbert Marshall", + "William Frawley" + ], + "genres": [ + "Drama", + "Musical" + ] + }, + { + "title": "The Mad Miss Manton", + "year": 1938, + "cast": [ + "Barbara Stanwyck", + "Henry Fonda", + "Sam Levene" + ], + "genres": [ + "Mystery", + "Comedy" + ] + }, + { + "title": "Maid's Night Out", + "year": 1938, + "cast": [ + "Joan Fontaine", + "Allan Lane" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Main Event", + "year": 1938, + "cast": [ + "Julie Bishop", + "Robert Paige" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Making the Headlines", + "year": 1938, + "cast": [ + "Jack Holt", + "Beverly Roberts" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Man-Proof", + "year": 1938, + "cast": [ + "Myrna Loy", + "Rosalind Russell", + "Walter Pidgeon" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Man from Music Mountain", + "year": 1938, + "cast": [ + "Gene Autry", + "Carol Hughes" + ], + "genres": [ + "Western" + ] + }, + { + "title": "A Man to Remember", + "year": 1938, + "cast": [ + "Anne Shirley", + "Edward Ellis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Marie Antoinette", + "year": 1938, + "cast": [ + "Norma Shearer", + "Tyrone Power", + "John Barrymore" + ], + "genres": [ + "Drama", + "Biography" + ] + }, + { + "title": "The Marines are Here", + "year": 1938, + "cast": [ + "Gordon Oliver", + "June Travis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Meet the Girls", + "year": 1938, + "cast": [ + "June Lang", + "Lynn Bari" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Men Are Such Fools", + "year": 1938, + "cast": [ + "Priscilla Lane", + "Humphrey Bogart", + "Wayne Morris" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Men with Wings", + "year": 1938, + "cast": [ + "Fred MacMurray", + "Ray Milland", + "Louise Campbell" + ], + "genres": [ + "Drama", + "Adventure" + ] + }, + { + "title": "Merrily We Live", + "year": 1938, + "cast": [ + "Constance Bennett", + "Billie Burke", + "Brian Aherne" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Midnight Intruder", + "year": 1938, + "cast": [ + "Louis Hayward", + "Eric Linden", + "Barbara Read" + ], + "genres": [ + "Drama", + "Mystery" + ] + }, + { + "title": "The Missing Guest", + "year": 1938, + "cast": [ + "Paul Kelly", + "Constance Moore" + ], + "genres": [ + "Mystery", + "Horror" + ] + }, + { + "title": "Mother Carey's Chickens", + "year": 1938, + "cast": [ + "Anne Shirley", + "Ruby Keeler" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Mr. Boggs Steps Out", + "year": 1938, + "cast": [ + "Stuart Erwin", + "Helen Chandler", + "Tully Marshall" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mr. Doodle Kicks Off", + "year": 1938, + "cast": [ + "Joe Penner", + "June Travis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mr. Moto's Gamble", + "year": 1938, + "cast": [ + "Peter Lorre", + "Keye Luke", + "Douglas Fowley" + ], + "genres": [ + "Drama", + "Mystery" + ] + }, + { + "title": "Mr. Moto Takes a Chance", + "year": 1938, + "cast": [ + "Peter Lorre", + "Rochelle Hudson" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Mr. Wong, Detective", + "year": 1938, + "cast": [ + "Boris Karloff", + "Evelyn Brent", + "Grant Withers" + ], + "genres": [ + "Drama", + "Mystery" + ] + }, + { + "title": "My Bill", + "year": 1938, + "cast": [ + "Kay Francis", + "Dickie Moore", + "Bonita Granville" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "My Lucky Star", + "year": 1938, + "cast": [ + "Sonja Henie", + "Cesar Romero", + "Richard Greene" + ], + "genres": [ + "Comedy", + "Romance" + ] + }, + { + "title": "My Old Kentucky Home", + "year": 1938, + "cast": [ + "Evelyn Venable", + "Grant Richards" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Mysterious Mr. Moto", + "year": 1938, + "cast": [ + "Peter Lorre", + "Mary Maguire", + "Henry Wilcoxon" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Mysterious Rider", + "year": 1938, + "cast": [ + "Douglass Dumbrille", + "Sidney Toler" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Mystery House", + "year": 1938, + "cast": [ + "Dick Purcell", + "Ann Sheridan", + "Anne Nagel" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Mystic Circle Murders", + "year": 1938, + "cast": [ + "Robert Fiske", + "Arthur Gardner", + "Helene Le Berthon" + ], + "genres": [ + "Drama", + "Mystery" + ] + }, + { + "title": "Nancy Drew... Detective", + "year": 1938, + "cast": [ + "Bonita Granville", + "John Litel", + "Frank Orth" + ], + "genres": [ + "Drama", + "Mystery" + ] + }, + { + "title": "Newsboys' Home", + "year": 1938, + "cast": [ + "Jackie Cooper", + "Edmund Lowe", + "Wendy Barrie" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Next Time I Marry", + "year": 1938, + "cast": [ + "Lucille Ball", + "James Ellison", + "Mantan Moreland" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Night Hawk", + "year": 1938, + "cast": [ + "Robert Livingston", + "June Travis" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Night Spot", + "year": 1938, + "cast": [ + "Allan Lane", + "Joan Woodbury", + "Lee Patrick" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "No Time to Marry", + "year": 1938, + "cast": [ + "Richard Arlen", + "Mary Astor", + "Virginia Dale" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Nurse from Brooklyn", + "year": 1938, + "cast": [ + "Sally Eilers", + "Paul Kelly" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "Of Human Hearts", + "year": 1938, + "cast": [ + "Walter Huston", + "James Stewart", + "John Carradine" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Old Barn Dance", + "year": 1938, + "cast": [ + "Gene Autry", + "Smiley Burnette", + "Roy Rogers" + ], + "genres": [ + "Western" + ] + }, + { + "title": "One Wild Night", + "year": 1938, + "cast": [ + "June Lang", + "Dick Baldwin", + "Lyle Talbot" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Orphans of the Street", + "year": 1938, + "cast": [ + "Robert Livingston", + "June Storey", + "Ralph Morgan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Out West with the Hardys", + "year": 1938, + "cast": [ + "Mickey Rooney", + "Lewis Stone", + "Fay Holden" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Outlaw Express", + "year": 1938, + "cast": [ + "Bob Baker", + "Don Barclay" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Outlaws of Sonora", + "year": 1938, + "cast": [ + "Robert Livingston", + "Ray Corrigan" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Outside of Paradise", + "year": 1938, + "cast": [ + "Phil Regan", + "Penny Singleton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Over the Wall", + "year": 1938, + "cast": [ + "Dick Foran", + "John Litel", + "Veda Ann Borg" + ], + "genres": [ + "Drama", + "Romance" + ] + }, + { + "title": "The Overland Express", + "year": 1938, + "cast": [ + "Buck Jones", + "Marjorie Reynolds" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Overland Stage Raiders", + "year": 1938, + "cast": [ + "John Wayne", + "Ray Corrigan", + "Louise Brooks" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Painted Desert", + "year": 1938, + "cast": [ + "George O'Brien", + "Laraine Day" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Painted Stallion", + "year": 1938, + "cast": [ + "Hoot Gibson", + "Jack Perrin", + "LeRoy Mason" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Painted Trail", + "year": 1938, + "cast": [ + "Tom Keene", + "Eleanor Stewart" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Pals of the Saddle", + "year": 1938, + "cast": [ + "John Wayne", + "Ray Corrigan", + "Doreen McKay" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Panamint's Bad Man", + "year": 1938, + "cast": [ + "Smith Ballew", + "Evelyn Daw", + "Noah Beery" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Paradise for Three", + "year": 1938, + "cast": [ + "Robert Young", + "Mary Astor", + "Frank Morgan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Paroled - To Die", + "year": 1938, + "cast": [ + "Bob Steele", + "Karl Hackett" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Partners of the Plains", + "year": 1938, + "cast": [ + "William Boyd", + "Russell Hayden", + "Gwen Gaze" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Passport Husband", + "year": 1938, + "cast": [ + "Stuart Erwin", + "Pauline Moore", + "Joan Woodbury" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Patient in Room 18", + "year": 1938, + "cast": [ + "Ann Sheridan", + "Patric Knowles" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Peck's Bad Boy with the Circus", + "year": 1938, + "cast": [ + "Tommy Kelly", + "Edgar Kennedy", + "Billy Gilbert" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Penitentiary", + "year": 1938, + "cast": [ + "Walter Connolly", + "Jean Parker", + "John Howard" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Penrod and His Twin Brother", + "year": 1938, + "cast": [ + "Billy and Bobby Mauch" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Penrod's Double Trouble", + "year": 1938, + "cast": [ + "Billy and Bobby Mauch", + "Gene Lockhart", + "Kathleen Lockhart" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Personal Secretary", + "year": 1938, + "cast": [ + "William Gargan", + "Joy Hodges", + "Ruth Donnelly" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Phantom Gold", + "year": 1938, + "cast": [ + "Jack Luden", + "Beth Marion" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Pioneer Trail", + "year": 1938, + "cast": [ + "Jack Luden", + "Joan Barclay" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Port of Missing Girls", + "year": 1938, + "cast": [ + "Harry Carey", + "Judith Allen", + "Milburn Stone" + ], + "genres": [ + "Drama", + "Mystery" + ] + }, + { + "title": "Port of Seven Seas", + "year": 1938, + "cast": [ + "Wallace Beery", + "Maureen O'Sullivan", + "Frank Morgan" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Prairie Justice", + "year": 1938, + "cast": [ + "Bob Baker", + "Dorothy Fay" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Prairie Moon", + "year": 1938, + "cast": [ + "Gene Autry", + "Smiley Burnette" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Pride of the West", + "year": 1938, + "cast": [ + "William Boyd", + "Russell Hayden" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Prison Break", + "year": 1938, + "cast": [ + "Barton MacLane", + "Glenda Farrell", + "Ward Bond" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Prison Farm", + "year": 1938, + "cast": [ + "Lloyd Nolan", + "Shirley Ross", + "May Boley" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Prison Nurse", + "year": 1938, + "cast": [ + "Henry Wilcoxon", + "Marian Marsh", + "Bernadene Hayes" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Professor Beware", + "year": 1938, + "cast": [ + "Harold Lloyd", + "Phyllis Welch", + "Lionel Stander" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Purple Vigilantes", + "year": 1938, + "cast": [ + "Robert Livingston", + "Ray Corrigan", + "Joan Barclay" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Racket Busters", + "year": 1938, + "cast": [ + "George Brent", + "Allen Jenkins", + "Humphrey Bogart" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "Radio City Revels", + "year": 1938, + "cast": [ + "Jack Oakie", + "Bob Burns", + "Ann Miller" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "The Rage of Paris", + "year": 1938, + "cast": [ + "Danielle Darrieux", + "Douglas Fairbanks Jr." + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Rascals", + "year": 1938, + "cast": [ + "Jane Withers", + "Rochelle Hudson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Rawhide", + "year": 1938, + "cast": [ + "Lou Gehrig", + "Smith Ballew", + "Evalyn Knapp" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Rebecca of Sunnybrook Farm", + "year": 1938, + "cast": [ + "Shirley Temple", + "Randolph Scott", + "Helen Westley" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Reckless Living", + "year": 1938, + "cast": [ + "Robert Wilcox", + "Nan Grey" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Red River Range", + "year": 1938, + "cast": [ + "John Wayne", + "Ray Corrigan", + "Max Terhune" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Reformatory", + "year": 1938, + "cast": [ + "Jack Holt", + "Charlotte Wynters" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Renegade Ranger", + "year": 1938, + "cast": [ + "George O'Brien", + "Rita Hayworth", + "Tim Holt" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Rhythm of the Saddle", + "year": 1938, + "cast": [ + "Gene Autry", + "Peggy Moran" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Rich Man, Poor Girl", + "year": 1938, + "cast": [ + "Lew Ayres", + "Robert Young", + "Lana Turner" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Ride a Crooked Mile", + "year": 1938, + "cast": [ + "Frances Farmer", + "Akim Tamiroff", + "Lynne Overman" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Riders of the Black Hills", + "year": 1938, + "cast": [ + "Robert Livingston", + "Ray Corrigan" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Rio Grande", + "year": 1938, + "cast": [ + "Charles Starrett", + "Ann Doran" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Road Demon", + "year": 1938, + "cast": [ + "Henry Arthur", + "Joan Valerie" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Road to Reno", + "year": 1938, + "cast": [ + "Randolph Scott", + "Hope Hampton", + "Glenda Farrell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Rolling Caravans", + "year": 1938, + "cast": [ + "Jack Luden", + "Eleanor Stewart" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Romance in the Dark", + "year": 1938, + "cast": [ + "Gladys Swarthout", + "John Boles", + "John Barrymore" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Romance on the Run", + "year": 1938, + "cast": [ + "Donald Woods", + "Patricia Ellis", + "Grace Bradley" + ], + "genres": [ + "Comedy", + "Crime" + ] + }, + { + "title": "Room Service", + "year": 1938, + "cast": [ + "Marx Brothers", + "Lucille Ball", + "Ann Miller" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Rose of the Rio Grande", + "year": 1938, + "cast": [ + "John Carroll", + "Movita", + "Gino Corrado" + ], + "genres": [ + "Western", + "Musical" + ] + }, + { + "title": "Safety in Numbers", + "year": 1938, + "cast": [ + "Jed Prouty", + "Shirley Deane" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Saint in New York", + "year": 1938, + "cast": [ + "Louis Hayward", + "Kay Sutton", + "Jack Carson" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "Sally, Irene and Mary", + "year": 1938, + "cast": [ + "Alice Faye", + "Marjorie Weaver", + "Joan Davis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Santa Fe Stampede", + "year": 1938, + "cast": [ + "John Wayne", + "Ray Corrigan", + "June Martel" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Say It in French", + "year": 1938, + "cast": [ + "Ray Milland", + "Irene Hervey", + "Mary Carlisle" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Scandal Street", + "year": 1938, + "cast": [ + "Lew Ayres", + "Louise Campbell", + "Lucien Littlefield" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Secrets of a Nurse", + "year": 1938, + "cast": [ + "Dick Foran", + "Helen Mack", + "Edmund Lowe" + ], + "genres": [ + "Drama", + "Mystery" + ] + }, + { + "title": "Secrets of an Actress", + "year": 1938, + "cast": [ + "Kay Francis", + "George Brent", + "Ian Hunter" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sergeant Murphy", + "year": 1938, + "cast": [ + "Ronald Reagan", + "Mary Maguire", + "Donald Crisp" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Service de Luxe", + "year": 1938, + "cast": [ + "Constance Bennett", + "Vincent Price" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Shadows Over Shanghai", + "year": 1938, + "cast": [ + "Ralph Morgan", + "Robert Barrat", + "Lynda Grey" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sharpshooters", + "year": 1938, + "cast": [ + "Brian Donlevy", + "Lynn Bari", + "Douglass Dumbrille" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Shine On, Harvest Moon", + "year": 1938, + "cast": [ + "Roy Rogers", + "Lynne Roberts" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Shining Hour", + "year": 1938, + "cast": [ + "Joan Crawford", + "Margaret Sullavan", + "Melvyn Douglas" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Ship That Died", + "year": 1938, + "cast": [ + "John Nesbitt", + "Leonard Penn", + "Rhea Mitchell" + ], + "genres": [ + "Short", + "Drama" + ] + }, + { + "title": "The Shopworn Angel", + "year": 1938, + "cast": [ + "James Stewart", + "Margaret Sullavan", + "Walter Pidgeon" + ], + "genres": [ + "Drama", + "War" + ] + }, + { + "title": "Sing You Sinners", + "year": 1938, + "cast": [ + "Bing Crosby", + "Fred MacMurray", + "Ellen Drew" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "The Singing Blacksmith", + "year": 1938, + "cast": [ + "Moishe Oysher", + "Miriam Riselle" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Singing Outlaw", + "year": 1938, + "cast": [ + "Bob Baker", + "Joan Barclay" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Sinners in Paradise", + "year": 1938, + "cast": [ + "Bruce Cabot", + "Marion Martin", + "Gene Lockhart" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Sisters", + "year": 1938, + "cast": [ + "Bette Davis", + "Errol Flynn", + "Anita Louise" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sky Giant", + "year": 1938, + "cast": [ + "Joan Fontaine", + "Richard Dix", + "Harry Carey" + ], + "genres": [ + "Drama", + "Adventure" + ] + }, + { + "title": "A Slight Case of Murder", + "year": 1938, + "cast": [ + "Edward G. Robinson", + "Jane Bryan", + "John Litel" + ], + "genres": [ + "Comedy", + "Crime" + ] + }, + { + "title": "Smashing the Rackets", + "year": 1938, + "cast": [ + "Chester Morris", + "Rita Johnson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Smashing the Spy Ring", + "year": 1938, + "cast": [ + "Ralph Bellamy", + "Fay Wray", + "Ann Doran" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Sons of the Legion", + "year": 1938, + "cast": [ + "Lynne Overman", + "Evelyn Keyes", + "Tim Holt" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "South of Arizona", + "year": 1938, + "cast": [ + "Charles Starrett", + "Iris Meredith" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Spawn of the North", + "year": 1938, + "cast": [ + "George Raft", + "Henry Fonda", + "Dorothy Lamour" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Special Inspector", + "year": 1938, + "cast": [ + "Charles Quigley", + "Rita Hayworth", + "George McKay" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Speed to Burn", + "year": 1938, + "cast": [ + "Michael Whalen", + "Lynn Bari" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Spirit of Youth", + "year": 1938, + "cast": [ + "Joe Louis", + "Mantan Moreland", + "Edna May Harris" + ], + "genres": [ + "Drama", + "Sports" + ] + }, + { + "title": "Spring Madness", + "year": 1938, + "cast": [ + "Maureen O'Sullivan", + "Lew Ayres", + "Burgess Meredith" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Spy Ring", + "year": 1938, + "cast": [ + "Jane Wyman", + "Esther Ralston" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Squadron of Honor", + "year": 1938, + "cast": [ + "Don Terry", + "Mary Russell" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Stablemates", + "year": 1938, + "cast": [ + "Wallace Beery", + "Mickey Rooney", + "Arthur Hohl" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Stagecoach Days", + "year": 1938, + "cast": [ + "Jack Luden", + "Eleanor Stewart" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Start Cheering", + "year": 1938, + "cast": [ + "Jimmy Durante", + "Joan Perry" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "State Police", + "year": 1938, + "cast": [ + "William Lundigan", + "Constance Moore" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Stolen Heaven", + "year": 1938, + "cast": [ + "Gene Raymond", + "Glenda Farrell", + "Lewis Stone" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Storm", + "year": 1938, + "cast": [ + "Charles Bickford", + "Barton MacLane", + "Nan Grey" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Storm Over Bengal", + "year": 1938, + "cast": [ + "Patric Knowles", + "Richard Cromwell", + "Rochelle Hudson" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Straight Place and Show", + "year": 1938, + "cast": [ + "Ritz Brothers", + "Ethel Merman", + "Richard Arlen" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "Strange Faces", + "year": 1938, + "cast": [ + "Dorothea Kent", + "Frank Jenks", + "Mary Treen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Stranger from Arizona", + "year": 1938, + "cast": [ + "Buck Jones", + "Dorothy Fay" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Strange Case of Dr. Meade", + "year": 1938, + "cast": [ + "Jack Holt", + "Beverly Roberts" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Submarine Patrol", + "year": 1938, + "cast": [ + "Preston Foster", + "Richard Greene", + "Nancy Kelly" + ], + "genres": [ + "Drama", + "Adventure" + ] + }, + { + "title": "Sunset Murder Case", + "year": 1938, + "cast": [ + "Sally Rand", + "Esther Muir" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Suez", + "year": 1938, + "cast": [ + "Tyrone Power", + "Loretta Young", + "Annabella" + ], + "genres": [ + "Historical" + ] + }, + { + "title": "Sweethearts", + "year": 1938, + "cast": [ + "Jeanette MacDonald", + "Nelson Eddy", + "Frank Morgan" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "Swing It, Sailor!", + "year": 1938, + "cast": [ + "Wallace Ford", + "Isabel Jewell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Swing Your Lady", + "year": 1938, + "cast": [ + "Frank McHugh", + "Humphrey Bogart", + "Penny Singleton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Swing!", + "year": 1938, + "cast": [ + "Cora Green", + "Alec Lovejoy" + ], + "genres": [ + "Drama", + "Musical" + ] + }, + { + "title": "Swing, Sister, Swing", + "year": 1938, + "cast": [ + "Ken Murray", + "Kathryn Kane", + "Nana Bryant" + ], + "genres": [ + "Comedy", + "Drama", + "Musical" + ] + }, + { + "title": "Swing That Cheer", + "year": 1938, + "cast": [ + "Tom Brown", + "Robert Wilcox", + "Constance Moore" + ], + "genres": [ + "Comedy", + "Musical", + "Sport" + ] + }, + { + "title": "Swing Your Lady", + "year": 1938, + "cast": [ + "Humphrey Bogart", + "Louise Fazenda", + "Ronald Reagan" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Swiss Miss", + "year": 1938, + "cast": [ + "Stan Laurel", + "Oliver Hardy", + "Grete Natzler", + "Eric Blore" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Tarnished Angel", + "year": 1938, + "cast": [ + "Sally Eilers", + "Ann Miller", + "Paul Guilfoyle" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Tarzan's Revenge", + "year": 1938, + "cast": [ + "Glenn Morris", + "Eleanor Holm", + "Hedda Hopper" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Tenth Avenue Kid", + "year": 1938, + "cast": [ + "Bruce Cabot", + "Beverly Roberts", + "Horace McMahon" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "The Terror of Tiny Town", + "year": 1938, + "cast": [ + "Billy Curtis", + "Yvonne Moray" + ], + "genres": [ + "Western", + "Comedy" + ] + }, + { + "title": "Test Pilot", + "year": 1938, + "cast": [ + "Clark Gable", + "Myrna Loy", + "Spencer Tracy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Texans", + "year": 1938, + "cast": [ + "Joan Bennett", + "Randolph Scott", + "Robert Cummings" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Thanks for Everything", + "year": 1938, + "cast": [ + "Jack Oakie", + "Adolphe Menjou", + "Jack Haley" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Thanks for the Memory", + "year": 1938, + "cast": [ + "Bob Hope", + "Shirley Ross", + "Otto Kruger", + "Hedda Hopper" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "That Certain Age", + "year": 1938, + "cast": [ + "Deanna Durbin", + "Melvyn Douglas", + "Jackie Cooper" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "There Goes My Heart", + "year": 1938, + "cast": [ + "Fredric March", + "Patsy Kelly", + "Virginia Bruce" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "There's Always a Woman", + "year": 1938, + "cast": [ + "Joan Blondell", + "Melvyn Douglas", + "Mary Astor" + ], + "genres": [ + "Comedy", + "Mystery" + ] + }, + { + "title": "This Marriage Business", + "year": 1938, + "cast": [ + "Victor Moore", + "Vickie Lester", + "Jack Carson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Three Blind Mice", + "year": 1938, + "cast": [ + "Loretta Young", + "Joel McCrea", + "David Niven" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Three Comrades", + "year": 1938, + "cast": [ + "Robert Taylor", + "Franchot Tone", + "Guy Kibbee" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Three Loves Has Nancy", + "year": 1938, + "cast": [ + "Janet Gaynor", + "Robert Montgomery", + "Franchot Tone" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Thunder in the Desert", + "year": 1938, + "cast": [ + "Bob Steele", + "Louise Stanley" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Time Out for Murder", + "year": 1938, + "cast": [ + "Gloria Stuart", + "Michael Whalen" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Tip-Off Girls", + "year": 1938, + "cast": [ + "Mary Carlisle", + "Lloyd Nolan", + "Roscoe Karns" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Tom Sawyer, Detective", + "year": 1938, + "cast": [ + "Billy Cook", + "Donald O'Connor" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Too Hot to Handle", + "year": 1938, + "cast": [ + "Clark Gable", + "Myrna Loy", + "Walter Pidgeon" + ], + "genres": [ + "Comedy", + "Adventure" + ] + }, + { + "title": "Too Much Johnson", + "year": 1938, + "cast": [ + "Joseph Cotton", + "Virginia Nicolson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Topper Takes a Trip", + "year": 1938, + "cast": [ + "Constance Bennett", + "Roland Young", + "Billie Burke" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Torchy Blane in Panama", + "year": 1938, + "cast": [ + "Lola Lane", + "Paul Kelly" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Torchy Gets Her Man", + "year": 1938, + "cast": [ + "Glenda Farrell", + "Barton MacLane" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Touchdown, Army", + "year": 1938, + "cast": [ + "John Howard", + "Mary Carlisle", + "Robert Cummings" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Toy Wife", + "year": 1938, + "cast": [ + "Luise Rainer", + "Melvyn Douglas", + "H. B. Warner" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Trade Winds", + "year": 1938, + "cast": [ + "Joan Bennett", + "Fredric March", + "Ann Sothern" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Trip to Paris", + "year": 1938, + "cast": [ + "Jed Prouty", + "Shirley Deane" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Tropic Holiday", + "year": 1938, + "cast": [ + "Bob Burns", + "Dorothy Lamour", + "Ray Milland", + "Martha Raye" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "Two-Gun Man from Harlem", + "year": 1938, + "cast": [ + "Herb Jeffries", + "Mantan Moreland" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Under the Big Top", + "year": 1938, + "cast": [ + "Marjorie Main", + "Anne Nagel", + "Jack La Rue" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Under Western Stars", + "year": 1938, + "cast": [ + "Roy Rogers", + "Carol Hughes" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Up the River", + "year": 1938, + "cast": [ + "Preston Foster", + "Arthur Treacher", + "Phyllis Brooks" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Vacation from Love", + "year": 1938, + "cast": [ + "Florence Rice", + "Reginald Owen" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Valley of the Giants", + "year": 1938, + "cast": [ + "Claire Trevor", + "Wayne Morris", + "Charles Bickford" + ], + "genres": [ + "Drama", + "Adventure" + ] + }, + { + "title": "Vivacious Lady", + "year": 1938, + "cast": [ + "James Stewart", + "Ginger Rogers", + "Beulah Bondi" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Walking Down Broadway", + "year": 1938, + "cast": [ + "Claire Trevor", + "Leah Ray", + "Phyllis Brooks" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "West of Cheyenne", + "year": 1938, + "cast": [ + "Charles Starrett", + "Iris Meredith" + ], + "genres": [ + "Western" + ] + }, + { + "title": "West of the Santa Fe", + "year": 1938, + "cast": [ + "Charles Starrett", + "Iris Meredith" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Western Jamboree", + "year": 1938, + "cast": [ + "Gene Autry", + "Jean Rouverol", + "Esther Muir" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Western Trails", + "year": 1938, + "cast": [ + "Bob Baker", + "Marjorie Reynolds" + ], + "genres": [ + "Western" + ] + }, + { + "title": "When G-Men Step In", + "year": 1938, + "cast": [ + "Don Terry", + "Julie Bishop" + ], + "genres": [ + "Action" + ] + }, + { + "title": "When Were You Born", + "year": 1938, + "cast": [ + "Margaret Lindsay", + "Anna May Wong", + "Lola Lane" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Where the Buffalo Roam", + "year": 1938, + "cast": [ + "Tex Ritter", + "Dorothy Short", + "Horace Murphy" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Where the West Begins", + "year": 1938, + "cast": [ + "Jack Randall", + "Fuzzy Knight", + "Luana Walters" + ], + "genres": [ + "Western" + ] + }, + { + "title": "White Banners", + "year": 1938, + "cast": [ + "Claude Rains", + "Fay Bainter", + "Jackie Cooper" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Who Killed Gail Preston?", + "year": 1938, + "cast": [ + "Don Terry", + "Rita Hayworth", + "and", + "Robert Paige" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Wide Open Faces", + "year": 1938, + "cast": [ + "Joe E. Brown", + "Jane Wyman", + "Lucien Littlefield" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Wives Under Suspicion", + "year": 1938, + "cast": [ + "Warren William", + "Gail Patrick", + "Constance Moore" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Woman Against the World", + "year": 1938, + "cast": [ + "Collette Lyons" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Woman Against Woman", + "year": 1938, + "cast": [ + "Herbert Marshall", + "Virginia Bruce", + "Mary Astor" + ], + "genres": [ + "Drama", + "Romance" + ] + }, + { + "title": "Women Are Like That", + "year": 1938, + "cast": [ + "Kay Francis", + "Pat O'Brien", + "Melville Cooper" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Women in Prison", + "year": 1938, + "cast": [ + "Scott Kolk", + "Mayo Methot" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Yank at Oxford", + "year": 1938, + "cast": [ + "Robert Taylor", + "Maureen O'Sullivan", + "Vivien Leigh" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Yellow Jack", + "year": 1938, + "cast": [ + "Robert Montgomery", + "Virginia Bruce", + "Buddy Ebsen" + ], + "genres": [ + "Drama", + "War" + ] + }, + { + "title": "You and Me", + "year": 1938, + "cast": [ + "Sylvia Sidney", + "George Raft", + "Barton MacLane" + ], + "genres": [ + "Crime", + "Noir" + ] + }, + { + "title": "You Can't Take It with You", + "year": 1938, + "cast": [ + "James Stewart", + "Jean Arthur", + "Lionel Barrymore" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Young Dr. Kildare", + "year": 1938, + "cast": [ + "Lew Ayres", + "Lionel Barrymore", + "Emma Dunn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Young Fugitives", + "year": 1938, + "cast": [ + "Robert Wilcox", + "Harry Davenport", + "Dorothea Kent" + ], + "genres": [ + "Drama", + "War" + ] + }, + { + "title": "The Young in Heart", + "year": 1938, + "cast": [ + "Janet Gaynor", + "Douglas Fairbanks Jr.", + "Billie Burke" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Youth Takes a Fling", + "year": 1938, + "cast": [ + "Joel McCrea", + "Andrea Leeds", + "Frank Jenks", + "Dorothea Kent" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "$1,000 a Touchdown", + "year": 1939, + "cast": [ + "Joe E. Brown", + "Martha Raye", + "Eric Blore", + "Susan Hayward" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "20,000 Men a Year", + "year": 1939, + "cast": [ + "Randolph Scott", + "Preston Foster", + "Margaret Lindsay" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "6,000 Enemies", + "year": 1939, + "cast": [ + "Walter Pidgeon", + "Rita Johnson", + "Paul Kelly", + "Nat Pendleton" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Across the Plains", + "year": 1939, + "cast": [ + "Addison Randall", + "Frank Yaconelli" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Adventures of Huckleberry Finn", + "year": 1939, + "cast": [ + "Mickey Rooney", + "Walter Connolly", + "William Frawley" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Adventures of Jane Arden", + "year": 1939, + "cast": [ + "Rosella Towne", + "William Gargan", + "James Stephenson" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Adventures of Sherlock Holmes", + "year": 1939, + "cast": [ + "Basil Rathbone", + "Nigel Bruce", + "Ida Lupino" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Adventures of the Masked Phantom", + "year": 1939, + "cast": [ + "Monte Rawlins", + "Betty Burgess" + ], + "genres": [ + "Western" + ] + }, + { + "title": "All Women Have Secrets", + "year": 1939, + "cast": [ + "Virginia Dale", + "Joseph Allen", + "Jeanne Cagney" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Allegheny Uprising", + "year": 1939, + "cast": [ + "Claire Trevor", + "John Wayne", + "George Sanders", + "Brian Donlevy" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Almost a Gentleman", + "year": 1939, + "cast": [ + "James Ellison", + "June Clayworth" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Amazing Mr. Williams", + "year": 1939, + "cast": [ + "Melvyn Douglas", + "Joan Blondell", + "Clarence Kolb", + "Ruth Donnelly" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Ambush", + "year": 1939, + "cast": [ + "Lloyd Nolan", + "Gladys Swarthout" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Andy Hardy Gets Spring Fever", + "year": 1939, + "cast": [ + "Lewis Stone", + "Mickey Rooney", + "Cecilia Parker", + "Fay Holden" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Angels Wash Their Faces", + "year": 1939, + "cast": [ + "Ann Sheridan", + "Ronald Reagan", + "Billy Halop", + "Bernard Punsly", + "Leo Gorcey" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Another Thin Man", + "year": 1939, + "cast": [ + "William Powell", + "Myrna Loy", + "Virginia Grey", + "Otto Kruger" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Arizona Kid", + "year": 1939, + "cast": [ + "Roy Rogers", + "George \"Gabby\" Hayes", + "Sally March" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Arizona Legion", + "year": 1939, + "cast": [ + "George O'Brien", + "Laraine Day", + "Carlyle Moore Jr.", + "Chill Wills" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Arizona Wildcat", + "year": 1939, + "cast": [ + "Jane Withers", + "Leo Carrillo" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Arrest Bulldog Drummond", + "year": 1939, + "cast": [ + "John Howard", + "Heather Angel", + "H. B. Warner", + "Reginald Denny" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "At the Circus", + "year": 1939, + "cast": [ + "Marx Brothers", + "Kenny Baker", + "Florence Rice", + "Eve Arden", + "Margaret Dumont" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Babes in Arms", + "year": 1939, + "cast": [ + "Mickey Rooney", + "Judy Garland", + "Charles Winninger", + "Guy Kibbee" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Bachelor Mother", + "year": 1939, + "cast": [ + "Ginger Rogers", + "David Niven" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Back Door to Heaven", + "year": 1939, + "cast": [ + "Wallace Ford", + "Aline MacMahon" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Bad Boy", + "year": 1939, + "cast": [ + "Johnny Downs", + "Rosalind Keith" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Bad Lands", + "year": 1939, + "cast": [ + "Robert Barrat", + "Douglas Walton" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Bad Little Angel", + "year": 1939, + "cast": [ + "Virginia Weidler", + "Gene Reynolds", + "Guy Kibbee" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Balalaika", + "year": 1939, + "cast": [ + "Nelson Eddy", + "Ilona Massey", + "Charles Ruggles", + "Frank Morgan" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Barricade", + "year": 1939, + "cast": [ + "Alice Faye", + "Warner Baxter" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Beau Geste", + "year": 1939, + "cast": [ + "Gary Cooper", + "Ray Milland", + "Robert Preston", + "Brian Donlevy", + "Susan Hayward" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Beauty for the Asking", + "year": 1939, + "cast": [ + "Lucille Ball", + "Patric Knowles" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Behind Prison Gates", + "year": 1939, + "cast": [ + "Brian Donlevy", + "Julie Bishop" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Beware Spooks!", + "year": 1939, + "cast": [ + "Joe E. Brown", + "Mary Carlisle", + "Clarence Kolb" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Big Guy", + "year": 1939, + "cast": [ + "Victor McLaglen", + "Jackie Cooper", + "Ona Munson" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Big Town Czar", + "year": 1939, + "cast": [ + "Barton MacLane", + "Tom Brown", + "Eve Arden" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Birthright", + "year": 1939, + "cast": [ + "Carman Newsome" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Blackmail", + "year": 1939, + "cast": [ + "Edward G. Robinson", + "Ruth Hussey", + "Gene Lockhart" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Blackwell's Island", + "year": 1939, + "cast": [ + "John Garfield", + "Rosemary Lane", + "Dick Purcell", + "Victor Jory" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Blind Alley", + "year": 1939, + "cast": [ + "Chester Morris", + "Ralph Bellamy", + "Ann Dvorak" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Blondie Brings Up Baby", + "year": 1939, + "cast": [ + "Penny Singleton", + "Arthur Lake" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Blondie Meets the Boss", + "year": 1939, + "cast": [ + "Penny Singleton", + "Arthur Lake" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Blondie Takes a Vacation", + "year": 1939, + "cast": [ + "Penny Singleton", + "Arthur Lake" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Blue Montana Skies", + "year": 1939, + "cast": [ + "Gene Autry", + "Smiley Burnette" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Boy Friend", + "year": 1939, + "cast": [ + "Jane Withers", + "Arleen Whelan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Boy Slaves", + "year": 1939, + "cast": [ + "Anne Shirley", + "Roger Daniel" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Boy Trouble", + "year": 1939, + "cast": [ + "Charles Ruggles", + "Mary Boland", + "Donald O'Connor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Boys' Reformatory", + "year": 1939, + "cast": [ + "Frankie Darro", + "Grant Withers" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Bridal Suite", + "year": 1939, + "cast": [ + "Annabella", + "Robert Young", + "Walter Connolly", + "Reginald Owen" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Broadway Serenade", + "year": 1939, + "cast": [ + "Jeanette MacDonald", + "Lew Ayres" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Bronze Buckaroo", + "year": 1939, + "cast": [ + "Herb Jeffries", + "Lucius Brooks" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Buck Rogers", + "year": 1939, + "cast": [ + "Buster Crabbe", + "Constance Moore" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Bulldog Drummond's Bride", + "year": 1939, + "cast": [ + "John Howard", + "Heather Angel", + "H. B. Warner", + "Reginald Denny" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Bulldog Drummond's Secret Police", + "year": 1939, + "cast": [ + "John Howard", + "Heather Angel", + "H. B. Warner", + "Reginald Denny" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Buried Alive", + "year": 1939, + "cast": [ + "Beverly Roberts", + "Robert Wilcox" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Burn 'Em Up O'Connor", + "year": 1939, + "cast": [ + "Dennis O'Keefe", + "Cecilia Parker", + "Nat Pendleton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Cafe Society", + "year": 1939, + "cast": [ + "Madeleine Carroll", + "Fred MacMurray", + "Shirley Ross" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Call a Messenger", + "year": 1939, + "cast": [ + "Billy Halop", + "Huntz Hall", + "Robert Armstrong", + "Mary Carlisle" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Calling All Curs", + "year": 1939, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Comedy", + "Short" + ] + }, + { + "title": "Calling All Marines", + "year": 1939, + "cast": [ + "Don \"Red\" Barry", + "Helen Mack" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Calling Dr. Kildare", + "year": 1939, + "cast": [ + "Lew Ayres", + "Lionel Barrymore", + "Laraine Day", + "Nat Pendleton", + "Lana Turner" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Captain Fury", + "year": 1939, + "cast": [ + "Brian Aherne", + "Victor McLaglen", + "Paul Lukas", + "June Lang" + ], + "genres": [ + "Action", + "Adventure" + ] + }, + { + "title": "Career", + "year": 1939, + "cast": [ + "Anne Shirley", + "Edward Ellis", + "Samuel S. Hinds" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Cat and the Canary", + "year": 1939, + "cast": [ + "Bob Hope", + "Paulette Goddard", + "John Beal", + "Douglass Montgomery", + "Gale Sondergaard" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Charlie Chan at Treasure Island", + "year": 1939, + "cast": [ + "Sidney Toler", + "Victor Sen Yung", + "Cesar Romero" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Charlie Chan in City in Darkness", + "year": 1939, + "cast": [ + "Sidney Toler", + "Lynn Bari" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Charlie Chan in Reno", + "year": 1939, + "cast": [ + "Sidney Toler", + "Ricardo Cortez", + "Phyllis Brooks", + "Slim Summerville" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Charlie McCarthy, Detective", + "year": 1939, + "cast": [ + "Edgar Bergen", + "Charlie McCarthy", + "Mortimer Snerd", + "Robert Cummings", + "Constance Moore" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Chasing Danger", + "year": 1939, + "cast": [ + "Preston Foster", + "Lynn Bari", + "Wally Vernon", + "Henry Wilcoxon" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Chicken Wagon Family", + "year": 1939, + "cast": [ + "Jane Withers", + "Leo Carrillo", + "Marjorie Weaver", + "Spring Byington" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Child Is Born", + "year": 1939, + "cast": [ + "Geraldine Fitzgerald", + "Jeffrey Lynn", + "Gladys George", + "Gale Page", + "Spring Byington" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Chip of the Flying U", + "year": 1939, + "cast": [ + "Johnny Mack Brown", + "Bob Baker", + "Fuzzy Knight", + "Doris Weston" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Cisco Kid and the Lady", + "year": 1939, + "cast": [ + "Cesar Romero", + "Marjorie Weaver" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Coast Guard", + "year": 1939, + "cast": [ + "Randolph Scott", + "Frances Dee", + "Ralph Bellamy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Code of the Cactus", + "year": 1939, + "cast": [ + "Tim McCoy", + "Ben Corbett", + "Dorothy Short" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Code of the Fearless", + "year": 1939, + "cast": [ + "Fred Scott", + "Claire Rochelle" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Code of the Secret Service", + "year": 1939, + "cast": [ + "Ronald Reagan", + "Rosella Towne", + "Eddie Foy Jr.", + "Moroni Olsen" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Code of the Streets", + "year": 1939, + "cast": [ + "Harry Carey", + "Frankie Thomas" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Colorado Sunset", + "year": 1939, + "cast": [ + "Gene Autry", + "June Storey", + "Patsy Montana" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Confessions of a Nazi Spy", + "year": 1939, + "cast": [ + "Edward G. Robinson", + "Francis Lederer", + "George Sanders", + "Paul Lukas" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Conspiracy", + "year": 1939, + "cast": [ + "Allan Lane", + "Linda Hayes" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Convict's Code", + "year": 1939, + "cast": [ + "Sidney Blackmer", + "Anne Nagel" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Cowboy Quarterback", + "year": 1939, + "cast": [ + "Bert Wheeler", + "Marie Wilson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Dancing Co-Ed", + "year": 1939, + "cast": [ + "Lana Turner", + "Richard Carlson", + "Artie Shaw", + "Ann Rutherford" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Danger Flight", + "year": 1939, + "cast": [ + "Marjorie Reynolds", + "Milburn Stone" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dark Victory", + "year": 1939, + "cast": [ + "Bette Davis", + "George Brent", + "Humphrey Bogart", + "Geraldine Fitzgerald", + "Ronald Reagan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Daughter of the Tong", + "year": 1939, + "cast": [ + "Evelyn Brent", + "Grant Withers" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Daughters Courageous", + "year": 1939, + "cast": [ + "John Garfield", + "Claude Rains", + "Fay Bainter" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Day the Bookies Wept", + "year": 1939, + "cast": [ + "Betty Grable" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Day-Time Wife", + "year": 1939, + "cast": [ + "Tyrone Power", + "Linda Darnell" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Death of a Champion", + "year": 1939, + "cast": [ + "Virginia Dale", + "Donald O'Connor" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Death Rides the Range", + "year": 1939, + "cast": [ + "Fay McKenzie", + "Ken Maynard" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Destry Rides Again", + "year": 1939, + "cast": [ + "Marlene Dietrich", + "James Stewart" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Devil's Island", + "year": 1939, + "cast": [ + "Boris Karloff", + "James Stephenson" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "Dick Tracy's G-Men", + "year": 1939, + "cast": [ + "Ralph Byrd", + "Jennifer Jones" + ], + "genres": [] + }, + { + "title": "Disbarred", + "year": 1939, + "cast": [ + "Gail Patrick", + "Robert Preston" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Disputed Passage", + "year": 1939, + "cast": [ + "Dorothy Lamour", + "Akim Tamiroff" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dodge City", + "year": 1939, + "cast": [ + "Errol Flynn", + "Olivia de Havilland", + "Ann Sheridan", + "Bruce Cabot", + "Frank McHugh" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Drums Along the Mohawk", + "year": 1939, + "cast": [ + "Claudette Colbert", + "Henry Fonda" + ], + "genres": [ + "Western" + ] + }, + { + "title": "A Ducking They Did Go", + "year": 1939, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Comedy", + "Short" + ] + }, + { + "title": "Dust Be My Destiny", + "year": 1939, + "cast": [ + "John Garfield", + "Priscilla Lane" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Each Dawn I Die", + "year": 1939, + "cast": [ + "James Cagney", + "George Raft", + "Jane Bryan" + ], + "genres": [] + }, + { + "title": "The Escape", + "year": 1939, + "cast": [ + "Amanda Duff", + "Kane Richmond", + "June Gale" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Escape to Paradise", + "year": 1939, + "cast": [ + "Kent Taylor", + "Joyce Compton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Espionage Agent", + "year": 1939, + "cast": [ + "Joel McCrea", + "Brenda Marshall", + "George Bancroft" + ], + "genres": [ + "Spy", + "Drama" + ] + }, + { + "title": "Eternally Yours", + "year": 1939, + "cast": [ + "Loretta Young", + "David Niven" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Everything Happens at Night", + "year": 1939, + "cast": [ + "Sonja Henie", + "Ray Milland", + "Robert Cummings" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Ex-Champ", + "year": 1939, + "cast": [ + "Victor McLaglen", + "Tom Brown", + "Nan Grey" + ], + "genres": [ + "Sports", + "Drama" + ] + }, + { + "title": "Exile Express", + "year": 1939, + "cast": [ + "Anna Sten", + "Alan Marshal" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Everybody's Hobby", + "year": 1939, + "cast": [ + "Irene Rich", + "Jackie Moran" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Fast and Furious", + "year": 1939, + "cast": [ + "Ann Sothern", + "Franchot Tone" + ], + "genres": [ + "Comedy", + "Mystery" + ] + }, + { + "title": "Fast and Loose", + "year": 1939, + "cast": [ + "Robert Montgomery", + "Rosalind Russell" + ], + "genres": [ + "Comedy", + "Mystery" + ] + }, + { + "title": "5th Ave Girl", + "year": 1939, + "cast": [ + "Ginger Rogers", + "Walter Connolly", + "Verree Teasdale" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Fighting Gringo", + "year": 1939, + "cast": [ + "George O'Brien", + "Lupita Tovar" + ], + "genres": [ + "Western" + ] + }, + { + "title": "First Love", + "year": 1939, + "cast": [ + "Deanna Durbin", + "Robert Stack", + "Eugene Pallette" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "First Offenders", + "year": 1939, + "cast": [ + "Beverly Roberts", + "Walter Abel" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Five Came Back", + "year": 1939, + "cast": [ + "Chester Morris", + "Lucille Ball", + "Wendy Barrie" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Fixer Dugan", + "year": 1939, + "cast": [ + "Lee Tracy", + "Peggy Shannon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Flight at Midnight", + "year": 1939, + "cast": [ + "Phil Regan", + "Jean Parker" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Flying Deuces", + "year": 1939, + "cast": [ + "Stan Laurel", + "Oliver Hardy", + "Jean Parker" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Flying Irishman", + "year": 1939, + "cast": [ + "Douglas Corrigan" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Four Wives", + "year": 1939, + "cast": [ + "Priscilla Lane", + "Rosemary Lane", + "Lola Lane" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Frontier Marshal", + "year": 1939, + "cast": [ + "Randolph Scott", + "Nancy Kelly", + "Cesar Romero" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Geronimo", + "year": 1939, + "cast": [ + "Preston Foster", + "Ellen Drew", + "Andy Devine" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Girl and the Gambler", + "year": 1939, + "cast": [ + "Tim Holt", + "Steffi Duna" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Girl from Mexico", + "year": 1939, + "cast": [ + "Lupe Vélez", + "Leon Errol" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Golden Boy", + "year": 1939, + "cast": [ + "Barbara Stanwyck", + "Adolphe Menjou", + "William Holden" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Great Commandment", + "year": 1939, + "cast": [ + "Albert Dekker", + "John Beal" + ], + "genres": [] + }, + { + "title": "Gone with the Wind", + "year": 1939, + "cast": [ + "Clark Gable", + "Vivien Leigh", + "Leslie Howard", + "Olivia de Havilland", + "Hattie McDaniel", + "Butterfly McQueen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Good Girls Go to Paris", + "year": 1939, + "cast": [ + "Melvyn Douglas", + "Joan Blondell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Gorilla", + "year": 1939, + "cast": [ + "Ritz Brothers", + "Anita Louise", + "Patsy Kelly" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Gracie Allen Murder Case", + "year": 1939, + "cast": [ + "Gracie Allen", + "Warren William", + "Ellen Drew" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Grand Jury Secrets", + "year": 1939, + "cast": [ + "Gail Patrick", + "John Howard" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Great Man Votes", + "year": 1939, + "cast": [ + "John Barrymore", + "Virginia Weidler" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Great Victor Herbert", + "year": 1939, + "cast": [ + "Mary Martin", + "Allan Jones" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Gulliver's Travels", + "year": 1939, + "cast": [ + "Pinto Colvig", + "Jack Mercer" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Gunga Din", + "year": 1939, + "cast": [ + "Cary Grant", + "Victor McLaglen", + "Douglas Fairbanks Jr.", + "Sam Jaffe" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Hardys Ride High", + "year": 1939, + "cast": [ + "Mickey Rooney", + "Lewis Stone", + "Fay Holden" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hawaiian Nights", + "year": 1939, + "cast": [ + "Constance Moore", + "Johnny Downs" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Heaven with a Barbed Wire Fence", + "year": 1939, + "cast": [ + "Glenn Ford", + "Jean Rogers", + "Ward Bond" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hell's Kitchen", + "year": 1939, + "cast": [ + "Dead End Kids", + "Billy Halop", + "Bobby Jordan", + "Leo Gorcey", + "Ronald Reagan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Here I Am a Stranger", + "year": 1939, + "cast": [ + "Richard Dix", + "Richard Greene" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Henry Goes Arizona", + "year": 1939, + "cast": [ + "Frank Morgan", + "Virginia Weidler", + "Guy Kibbee" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Heroes in Blue", + "year": 1939, + "cast": [ + "Dick Purcell", + "Bernadene Hayes" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hollywood Cavalcade", + "year": 1939, + "cast": [ + "Alice Faye", + "Don Ameche" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Homicide Bureau", + "year": 1939, + "cast": [ + "Bruce Cabot", + "Rita Hayworth", + "Marc Lawrence" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Honeymoon in Bali", + "year": 1939, + "cast": [ + "Madeleine Carroll", + "Fred MacMurray" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Honeymoon's Over", + "year": 1939, + "cast": [ + "Stuart Erwin", + "Marjorie Weaver" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Honolulu", + "year": 1939, + "cast": [ + "Eleanor Powell", + "Burns and Allen" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Hotel for Women", + "year": 1939, + "cast": [ + "Ann Sothern", + "Linda Darnell", + "James Ellison" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Hound of the Baskervilles", + "year": 1939, + "cast": [ + "Basil Rathbone", + "Nigel Bruce", + "Richard Greene" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The House of Fear", + "year": 1939, + "cast": [ + "William Gargan", + "Irene Hervey" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Housekeeper's Daughter", + "year": 1939, + "cast": [ + "Joan Bennett", + "John Hubbard" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Hunchback of Notre Dame", + "year": 1939, + "cast": [ + "Charles Laughton", + "Maureen O'Hara" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Ice Follies of 1939", + "year": 1939, + "cast": [ + "Joan Crawford", + "James Stewart", + "Lew Ayres", + "Lewis Stone" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Idiot's Delight", + "year": 1939, + "cast": [ + "Norma Shearer", + "Clark Gable", + "Edward Arnold" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "I'm from Missouri", + "year": 1939, + "cast": [ + "Bob Burns", + "Gladys George", + "Patricia Morison" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "In Name Only", + "year": 1939, + "cast": [ + "Carole Lombard", + "Cary Grant", + "Kay Francis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Indianapolis Speedway", + "year": 1939, + "cast": [ + "Pat O'Brien", + "Ann Sheridan", + "John Payne" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Intermezzo: A Love Story", + "year": 1939, + "cast": [ + "Leslie Howard", + "Ingrid Bergman" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "Invisible Stripes", + "year": 1939, + "cast": [ + "George Raft", + "Jane Bryan", + "William Holden" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Invitation to Happiness", + "year": 1939, + "cast": [ + "Irene Dunne", + "Fred MacMurray", + "Charlie Ruggles" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "I Stole a Million", + "year": 1939, + "cast": [ + "George Raft", + "Claire Trevor" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "It Could Happen to You", + "year": 1939, + "cast": [ + "Gloria Stuart", + "Stuart Erwin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "It's a Wonderful World", + "year": 1939, + "cast": [ + "Claudette Colbert", + "James Stewart", + "Guy Kibbee", + "Nat Pendleton" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "I Was a Convict", + "year": 1939, + "cast": [ + "Barton MacLane", + "Beverly Roberts" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Jesse James", + "year": 1939, + "cast": [ + "Tyrone Power", + "Henry Fonda", + "Nancy Kelly", + "Randolph Scott" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Joe and Ethel Turp Call on the President", + "year": 1939, + "cast": [ + "Ann Sothern", + "Lewis Stone", + "Walter Brennan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Jones Family in Hollywood", + "year": 1939, + "cast": [ + "Spring Byington", + "June Carlson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Juarez", + "year": 1939, + "cast": [ + "Paul Muni", + "Bette Davis", + "Brian Aherne", + "Claude Rains" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Judge Hardy and Son", + "year": 1939, + "cast": [ + "Mickey Rooney", + "Lewis Stone", + "Fay Holden" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Kansas Terrors", + "year": 1939, + "cast": [ + "Robert Livingston", + "Duncan Renaldo" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Kid from Kokomo", + "year": 1939, + "cast": [ + "Pat O'Brien", + "Wayne Morris", + "Joan Blondell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Kid from Texas", + "year": 1939, + "cast": [ + "Dennis O'Keefe", + "Florence Rice", + "Jessie Ralph", + "Buddy Ebsen" + ], + "genres": [ + "Western" + ] + }, + { + "title": "King of the Turf", + "year": 1939, + "cast": [ + "Adolphe Menjou", + "Dolores Costello", + "Roger Daniel" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "King of the Underworld", + "year": 1939, + "cast": [ + "Humphrey Bogart", + "Kay Francis" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Lady of the Tropics", + "year": 1939, + "cast": [ + "Robert Taylor", + "Hedy Lamarr", + "Joseph Schildkraut" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "The Lady's from Kentucky", + "year": 1939, + "cast": [ + "George Raft", + "Ellen Drew" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Laugh It Off", + "year": 1939, + "cast": [ + "Johnny Downs", + "Constance Moore" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Law of the Pampas", + "year": 1939, + "cast": [ + "William Boyd", + "Steffi Duna" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Let Freedom Ring", + "year": 1939, + "cast": [ + "Nelson Eddy", + "Virginia Bruce", + "Victor McLaglen", + "Lionel Barrymore" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Let Us Live", + "year": 1939, + "cast": [ + "Maureen O'Sullivan", + "Henry Fonda", + "Ralph Bellamy" + ], + "genres": [ + "Crime", + "Thriller" + ] + }, + { + "title": "The Light That Failed", + "year": 1939, + "cast": [ + "Ronald Colman", + "Walter Huston", + "Ida Lupino" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Little Princess", + "year": 1939, + "cast": [ + "Shirley Temple", + "Richard Greene", + "Anita Louise" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Lone Wolf Spy Hunt", + "year": 1939, + "cast": [ + "Warren William", + "Ida Lupino", + "Rita Hayworth" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Love Affair", + "year": 1939, + "cast": [ + "Irene Dunne", + "Charles Boyer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Lucky Night", + "year": 1939, + "cast": [ + "Myrna Loy", + "Robert Taylor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Made for Each Other", + "year": 1939, + "cast": [ + "James Stewart", + "Carole Lombard", + "Charles Coburn" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Mad Empress", + "year": 1939, + "cast": [ + "Conrad Nagel", + "Medea de Novara" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Magnificent Fraud", + "year": 1939, + "cast": [ + "Akim Tamiroff", + "Patricia Morison" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Main Street Lawyer", + "year": 1939, + "cast": [ + "Anita Louise" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Maisie", + "year": 1939, + "cast": [ + "Robert Young", + "Ann Sothern", + "Ruth Hussey" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Man About Town", + "year": 1939, + "cast": [ + "Jack Benny", + "Dorothy Lamour" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Man in the Iron Mask", + "year": 1939, + "cast": [ + "Louis Hayward", + "Joan Bennett", + "Warren William" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Man of Conquest", + "year": 1939, + "cast": [ + "Richard Dix", + "Gail Patrick", + "Joan Fontaine" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "The Man Who Dared", + "year": 1939, + "cast": [ + "Jane Bryan", + "Charley Grapewin" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Marshal of Mesa City", + "year": 1939, + "cast": [ + "George O'Brien", + "Virginia Vale" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Mexicali Rose", + "year": 1939, + "cast": [ + "Gene Autry", + "Smiley Burnette" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Midnight", + "year": 1939, + "cast": [ + "Claudette Colbert", + "Don Ameche", + "John Barrymore" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Million Dollar Legs", + "year": 1939, + "cast": [ + "Betty Grable", + "Buster Crabbe", + "Donald O'Connor" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Miracles for Sale", + "year": 1939, + "cast": [ + "Robert Young", + "Florence Rice" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Missing Daughters", + "year": 1939, + "cast": [ + "Richard Arlen", + "Rochelle Hudson", + "Marian Marsh", + "Isabel Jewell" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Missing Evidence", + "year": 1939, + "cast": [ + "Preston Foster", + "Irene Hervey", + "Inez Courtney" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Moon Over Harlem", + "year": 1939, + "cast": [ + "Bud Harris", + "Cora Green" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Mr. Moto in Danger Island", + "year": 1939, + "cast": [ + "Peter Lorre", + "Jean Hersholt" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Mr. Moto Takes a Vacation", + "year": 1939, + "cast": [ + "Peter Lorre", + "Joseph Schildkraut", + "Virginia Field" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Mr. Smith Goes to Washington", + "year": 1939, + "cast": [ + "James Stewart", + "Jean Arthur", + "Claude Rains" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Mr. Wong in Chinatown", + "year": 1939, + "cast": [ + "Boris Karloff", + "Marjorie Reynolds", + "Grant Withers" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "My Son Is Guilty", + "year": 1939, + "cast": [ + "Bruce Cabot", + "Glenn Ford" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Mysterious Miss X", + "year": 1939, + "cast": [ + "Mary Hart" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "The Mystery of Mr. Wong", + "year": 1939, + "cast": [ + "Boris Karloff", + "Grant Withers", + "Dorothy Tree" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Nancy Drew and the Hidden Staircase", + "year": 1939, + "cast": [ + "Bonita Granville", + "John Litel" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Nancy Drew... Reporter", + "year": 1939, + "cast": [ + "Bonita Granville", + "John Litel", + "Frankie Thomas" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Nancy Drew… Trouble Shooter", + "year": 1939, + "cast": [ + "Bonita Granville", + "Frankie Thomas", + "John Litel" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Naughty but Nice", + "year": 1939, + "cast": [ + "Dick Powell", + "Ann Sheridan", + "Gale Page" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Never Say Die", + "year": 1939, + "cast": [ + "Martha Raye", + "Bob Hope" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "New Frontier", + "year": 1939, + "cast": [ + "John Wayne", + "Jennifer Jones" + ], + "genres": [ + "Western" + ] + }, + { + "title": "News Is Made at Night", + "year": 1939, + "cast": [ + "Preston Foster", + "Lynn Bari" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Nick Carter, Master Detective", + "year": 1939, + "cast": [ + "Walter Pidgeon", + "Rita Johnson", + "Henry Hull" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Night of Nights", + "year": 1939, + "cast": [ + "Pat O'Brien", + "Olympe Bradna", + "Roland Young" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Night Riders", + "year": 1939, + "cast": [ + "John Wayne", + "Ray Corrigan" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Night Work", + "year": 1939, + "cast": [ + "Mary Boland", + "Donald O'Connor" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Ninotchka", + "year": 1939, + "cast": [ + "Greta Garbo", + "Melvyn Douglas", + "Ina Claire", + "Bela Lugosi" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "No Place to Go", + "year": 1939, + "cast": [ + "Dennis Morgan", + "Gloria Dickson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Nurse Edith Cavell", + "year": 1939, + "cast": [ + "Anna Neagle", + "Edna May Oliver" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Off the Record", + "year": 1939, + "cast": [ + "Pat O'Brien", + "Joan Blondell", + "Bobby Jordan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Of Mice and Men", + "year": 1939, + "cast": [ + "Burgess Meredith", + "Betty Field", + "Lon Chaney Jr." + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Oily to Bed, Oily to Rise", + "year": 1939, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Comedy", + "Short" + ] + }, + { + "title": "The Oklahoma Kid", + "year": 1939, + "cast": [ + "James Cagney", + "Humphrey Bogart", + "Rosemary Lane", + "Donald Crisp" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Oklahoma Terror", + "year": 1939, + "cast": [ + "Virginia Carroll", + "Addison Randall" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Old Maid", + "year": 1939, + "cast": [ + "Bette Davis", + "Miriam Hopkins", + "George Brent" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "On Borrowed Time", + "year": 1939, + "cast": [ + "Lionel Barrymore", + "Cedric Hardwicke", + "Beulah Bondi", + "Una Merkel" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "On Dress Parade", + "year": 1939, + "cast": [ + "The Dead End Kids" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "On Your Toes", + "year": 1939, + "cast": [ + "Eddie Albert", + "Vera Zorina", + "Queenie Smith" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Only Angels Have Wings", + "year": 1939, + "cast": [ + "Cary Grant", + "Jean Arthur", + "Richard Barthelmess", + "Rita Hayworth" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "On Trial", + "year": 1939, + "cast": [ + "John Litel", + "Margaret Lindsay" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Oregon Trail", + "year": 1939, + "cast": [ + "Johnny Mack Brown", + "Louise Stanley" + ], + "genres": [] + }, + { + "title": "Our Neighbors - The Carters", + "year": 1939, + "cast": [ + "Fay Bainter" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Outlaws' Paradise", + "year": 1939, + "cast": [ + "Tim McCoy", + "Joan Barclay" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Outsider", + "year": 1939, + "cast": [ + "Mary Maguire", + "George Sanders" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Outside These Walls", + "year": 1939, + "cast": [ + "Dolores Costello", + "Virginia Weidler" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Pacific Liner", + "year": 1939, + "cast": [ + "Victor McLaglen", + "Wendy Barrie" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Panama Lady", + "year": 1939, + "cast": [ + "Lucille Ball", + "Allan Lane" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Paris Honeymoon", + "year": 1939, + "cast": [ + "Bing Crosby", + "Shirley Ross" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Persons in Hiding", + "year": 1939, + "cast": [ + "Patricia Morison", + "Lynne Overman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Pirates of the Skies", + "year": 1939, + "cast": [ + "Kent Taylor", + "Rochelle Hudson", + "Regis Toomey" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Private Detective", + "year": 1939, + "cast": [ + "Jane Wyman", + "Dick Foran" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Private Lives of Elizabeth and Essex", + "year": 1939, + "cast": [ + "Bette Davis", + "Errol Flynn", + "Olivia de Havilland", + "Donald Crisp" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "Quick Millions", + "year": 1939, + "cast": [ + "Jed Prouty", + "Spring Byington" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Racketeers of the Range", + "year": 1939, + "cast": [ + "Marjorie Reynolds", + "Chill Wills" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Raffles", + "year": 1939, + "cast": [ + "David Niven", + "Olivia De Havilland" + ], + "genres": [ + "Crime", + "Comedy" + ] + }, + { + "title": "The Rains Came", + "year": 1939, + "cast": [ + "Tyrone Power", + "Myrna Loy", + "George Brent", + "Nigel Bruce", + "Brenda Joyce" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "Range War", + "year": 1939, + "cast": [ + "William Boyd" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Real Glory", + "year": 1939, + "cast": [ + "Gary Cooper", + "David Niven", + "Andrea Leeds" + ], + "genres": [ + "Adventure", + "Drama" + ] + }, + { + "title": "Remember?", + "year": 1939, + "cast": [ + "Robert Taylor", + "Greer Garson", + "Lew Ayres", + "Billie Burke" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Reno", + "year": 1939, + "cast": [ + "Gail Patrick", + "Anita Louise" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Return of Doctor X", + "year": 1939, + "cast": [ + "Wayne Morris", + "Rosemary Lane", + "Humphrey Bogart" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Rio", + "year": 1939, + "cast": [ + "Basil Rathbone", + "Robert Cummings", + "Sigrid Gurie" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Roaring Twenties", + "year": 1939, + "cast": [ + "James Cagney", + "Priscilla Lane", + "Humphrey Bogart" + ], + "genres": [ + "Crime", + "Thriller" + ] + }, + { + "title": "Rose of Washington Square", + "year": 1939, + "cast": [ + "Alice Faye", + "Tyrone Power" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Rulers of the Sea", + "year": 1939, + "cast": [ + "Douglas Fairbanks Jr.", + "Margaret Lockwood", + "Will Fyffe" + ], + "genres": [ + "Historical", + "Drama" + ] + }, + { + "title": "The Saint in London", + "year": 1939, + "cast": [ + "George Sanders", + "Sally Gray" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Saint Strikes Back", + "year": 1939, + "cast": [ + "George Sanders", + "Wendy Barrie" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Saved by the Belle", + "year": 1939, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Comedy", + "Short" + ] + }, + { + "title": "Second Fiddle", + "year": 1939, + "cast": [ + "Sonja Henie", + "Tyrone Power", + "Rudy Vallée" + ], + "genres": [ + "Musical", + "Romance" + ] + }, + { + "title": "The Secret of Dr. Kildare", + "year": 1939, + "cast": [ + "Lew Ayres", + "Lionel Barrymore", + "Lionel Atwill" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Secret Service of the Air", + "year": 1939, + "cast": [ + "Ronald Reagan", + "John Litel", + "Ila Rhodes" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Sergeant Madden", + "year": 1939, + "cast": [ + "Wallace Beery", + "Tom Brown", + "Alan Curtis", + "Laraine Day" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "She Married a Cop", + "year": 1939, + "cast": [ + "Jean Parker", + "Phil Regan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Silver on the Sage", + "year": 1939, + "cast": [ + "William Boyd", + "George \"Gabby\" Hayes", + "Russell Hayden" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Smashing the Money Ring", + "year": 1939, + "cast": [ + "Ronald Reagan", + "Margot Stevenson" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Society Lawyer", + "year": 1939, + "cast": [ + "Walter Pidgeon", + "Virginia Bruce", + "Leo Carrillo", + "Eduardo Ciannelli" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Some Like It Hot", + "year": 1939, + "cast": [ + "Bob Hope", + "Shirley Ross", + "Gene Krupa" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "The Son of Frankenstein", + "year": 1939, + "cast": [ + "Bela Lugosi", + "Boris Karloff" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Sorority House", + "year": 1939, + "cast": [ + "Anne Shirley", + "James Ellison" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "S.O.S. Tidal Wave", + "year": 1939, + "cast": [ + "Ralph Byrd" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Stagecoach", + "year": 1939, + "cast": [ + "John Wayne", + "Claire Trevor", + "Berton Churchill", + "Thomas Mitchell", + "John Carradine", + "Tim Holt" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Stand Up and Fight", + "year": 1939, + "cast": [ + "Wallace Beery", + "Robert Taylor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Stanley and Livingstone", + "year": 1939, + "cast": [ + "Spencer Tracy", + "Nancy Kelly", + "Richard Greene" + ], + "genres": [ + "Historical", + "Drama" + ] + }, + { + "title": "The Star Maker", + "year": 1939, + "cast": [ + "Bing Crosby", + "Louise Campbell" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "St. Louis Blues", + "year": 1939, + "cast": [ + "Dorothy Lamour", + "Lloyd Nolan" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Story of Vernon and Irene Castle", + "year": 1939, + "cast": [ + "Fred Astaire", + "Ginger Rogers", + "Edna May Oliver", + "Walter Brennan" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Stranger from Texas", + "year": 1939, + "cast": [ + "Charles Starrett", + "Lorna Gray" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Stronger Than Desire", + "year": 1939, + "cast": [ + "Virginia Bruce", + "Walter Pidgeon", + "Lee Bowman", + "Rita Johnson", + "Ann Dvorak" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sudden Money", + "year": 1939, + "cast": [ + "Charles Ruggles", + "Marjorie Rambeau" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Sun Never Sets", + "year": 1939, + "cast": [ + "Douglas Fairbanks Jr.", + "Basil Rathbone" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Susannah of the Mounties", + "year": 1939, + "cast": [ + "Shirley Temple", + "Randolph Scott", + "Margaret Lockwood" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Swanee River", + "year": 1939, + "cast": [ + "Don Ameche", + "Andrea Leeds" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Sweepstakes Winner", + "year": 1939, + "cast": [ + "Marie Wilson", + "Johnnie Davis", + "Allen Jenkins" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Tail Spin", + "year": 1939, + "cast": [ + "Alice Faye", + "Constance Bennett", + "Nancy Kelly" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Tarzan Finds a Son!", + "year": 1939, + "cast": [ + "Johnny Weissmuller", + "Maureen O'Sullivan", + "Johnny Sheffield" + ], + "genres": [ + "Action", + "Adventure" + ] + }, + { + "title": "Television Spy", + "year": 1939, + "cast": [ + "Judith Barrett", + "William Henry" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Tell No Tales", + "year": 1939, + "cast": [ + "Melvyn Douglas", + "Louise Platt", + "Gene Lockhart" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "That's Right - You're Wrong", + "year": 1939, + "cast": [ + "Kay Kyser", + "Adolphe Menjou", + "Lucille Ball" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "These Glamour Girls", + "year": 1939, + "cast": [ + "Lew Ayres", + "Lana Turner", + "Tom Brown" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "They All Come Out", + "year": 1939, + "cast": [ + "Rita Johnson", + "Tom Neal" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "They Made Me a Criminal", + "year": 1939, + "cast": [ + "John Garfield", + "Dead End Kids", + "Claude Rains", + "Ann Sheridan", + "May Robson", + "Gloria Dickson" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "They Shall Have Music", + "year": 1939, + "cast": [ + "Jascha Heifetz", + "Joel McCrea", + "Andrea Leeds" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Those High Grey Walls", + "year": 1939, + "cast": [ + "Walter Connolly", + "Onslow Stevens" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Three Little Sew and Sews", + "year": 1939, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Comedy", + "Short" + ] + }, + { + "title": "The Three Musketeers", + "year": 1939, + "cast": [ + "Don Ameche", + "Ritz Brothers", + "Gloria Stuart" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Three Sappy People", + "year": 1939, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Comedy", + "Short" + ] + }, + { + "title": "Three Smart Girls Grow Up", + "year": 1939, + "cast": [ + "Deanna Durbin", + "Nan Grey", + "Helen Parrish" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Three Sons", + "year": 1939, + "cast": [ + "Edward Ellis", + "Katharine Alexander" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Three Texas Steers", + "year": 1939, + "cast": [ + "John Wayne", + "Ray Corrigan", + "Max Terhune", + "Carole Landis" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Thunder Afloat", + "year": 1939, + "cast": [ + "Wallace Beery", + "Chester Morris", + "Virginia Grey", + "Douglass Dumbrille" + ], + "genres": [ + "War" + ] + }, + { + "title": "Torchy Blane in Chinatown", + "year": 1939, + "cast": [ + "Glenda Farrell", + "Barton MacLane" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Torchy Blane... Playing with Dynamite", + "year": 1939, + "cast": [ + "Jane Wyman", + "Allen Jenkins" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Torchy Runs for Mayor", + "year": 1939, + "cast": [ + "Glenda Farrell", + "Barton MacLane" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Tower of London", + "year": 1939, + "cast": [ + "Basil Rathbone", + "Boris Karloff", + "Barbara O'Neil" + ], + "genres": [ + "Historical" + ] + }, + { + "title": "Tropic Fury", + "year": 1939, + "cast": [ + "Beverly Roberts", + "Richard Arlen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Trouble in Sundown", + "year": 1939, + "cast": [ + "George O'Brien", + "Rosalind Keith" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Undercover Doctor", + "year": 1939, + "cast": [ + "Lloyd Nolan", + "Janice Logan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Unexpected Father", + "year": 1939, + "cast": [ + "Shirley Ross", + "Dennis O'Keefe" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Union Pacific", + "year": 1939, + "cast": [ + "Barbara Stanwyck", + "Joel McCrea", + "Akim Tamiroff" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Unmarried", + "year": 1939, + "cast": [ + "Helen Twelvetrees", + "Donald O'Connor", + "Buck Jones" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Waterfront", + "year": 1939, + "cast": [ + "Gloria Dickson", + "Dennis Morgan", + "Marie Wilson", + "Sheila Bromley" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Way Down South", + "year": 1939, + "cast": [ + "Bobby Breen", + "Alan Mowbray", + "Steffi Duna" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "We Are Not Alone", + "year": 1939, + "cast": [ + "Jane Bryan", + "Paul Muni" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "We Want Our Mummy", + "year": 1939, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Comedy", + "Short" + ] + }, + { + "title": "What a Life", + "year": 1939, + "cast": [ + "Jackie Cooper", + "Betty Field", + "Janice Logan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "When Tomorrow Comes", + "year": 1939, + "cast": [ + "Irene Dunne", + "Charles Boyer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Wife, Husband and Friend", + "year": 1939, + "cast": [ + "Loretta Young", + "Warner Baxter", + "Binnie Barnes" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Wings of the Navy", + "year": 1939, + "cast": [ + "George Brent", + "Olivia de Havilland", + "John Payne" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Winner Take All", + "year": 1939, + "cast": [ + "Tony Martin", + "Gloria Stuart" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Within the Law", + "year": 1939, + "cast": [ + "Ruth Hussey", + "Tom Neal" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Wizard of Oz", + "year": 1939, + "cast": [ + "Judy Garland", + "Frank Morgan", + "Ray Bolger", + "Jack Haley", + "Bert Lahr", + "Billie Burke", + "Charley Grapewin", + "Margaret Hamilton" + ], + "genres": [ + "Musical", + "Fantasy" + ] + }, + { + "title": "The Women", + "year": 1939, + "cast": [ + "Norma Shearer", + "Joan Crawford", + "Rosalind Russell", + "Paulette Goddard", + "Joan Fontaine", + "Mary Boland", + "Ruth Hussey" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Women in the Wind", + "year": 1939, + "cast": [ + "Kay Francis", + "William Gargan", + "Victor Jory" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Wuthering Heights", + "year": 1939, + "cast": [ + "Merle Oberon", + "Laurence Olivier", + "David Niven", + "Flora Robson" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "Wyoming Outlaw", + "year": 1939, + "cast": [ + "John Wayne", + "Ray Corrigan", + "Raymond Hatton", + "Don 'Red' Barry" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Yes, My Darling Daughter", + "year": 1939, + "cast": [ + "Priscilla Lane", + "Jeffrey Lynn", + "Roland Young", + "Fay Bainter" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Yes, We Have No Bonanza", + "year": 1939, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Comedy", + "Short" + ] + }, + { + "title": "You Can't Cheat an Honest Man", + "year": 1939, + "cast": [ + "W. C. Fields", + "Edgar Bergen", + "Charlie McCarthy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "You Can't Get Away with Murder", + "year": 1939, + "cast": [ + "Humphrey Bogart", + "Gale Page", + "Billy Halop", + "John Litel" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Young Mr. Lincoln", + "year": 1939, + "cast": [ + "Henry Fonda", + "Alice Brady" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Zaza", + "year": 1939, + "cast": [ + "Claudette Colbert", + "Herbert Marshall" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Zenobia", + "year": 1939, + "cast": [ + "Oliver Hardy", + "Harry Langdon", + "Billie Burke" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Zero Hour", + "year": 1939, + "cast": [ + "Frieda Inescort", + "Otto Kruger" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Zorro's Fighting Legion", + "year": 1939, + "cast": [ + "Reed Hadley", + "Sheila Darcy" + ], + "genres": [] + }, + { + "title": "20 Mule Team", + "year": 1940, + "cast": [ + "Wallace Beery", + "Leo Carrillo", + "Marjorie Rambeau", + "Anne Baxter" + ], + "genres": [ + "Western" + ] + }, + { + "title": "100 Pygmies and Andy Panda", + "year": 1940, + "cast": [ + "Bernice Hansen", + "(voice)", + "Dick Nelson", + "(voice)" + ], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "Abe Lincoln in Illinois", + "year": 1940, + "cast": [ + "Raymond Massey", + "Gene Lockhart", + "Ruth Gordon" + ], + "genres": [ + "Drama", + "Biography" + ] + }, + { + "title": "Adventure in Diamonds", + "year": 1940, + "cast": [ + "George Brent", + "Isa Miranda", + "John Loder" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Adventures of Red Ryder", + "year": 1940, + "cast": [ + "Don \"Red\" Barry", + "Noah Beery", + "Tommy Cook" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Alias the Deacon", + "year": 1940, + "cast": [ + "Bob Burns", + "Mischa Auer", + "Peggy Moran" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "All This, and Heaven Too", + "year": 1940, + "cast": [ + "Bette Davis", + "Charles Boyer", + "Jeffrey Lynn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Always a Bride", + "year": 1940, + "cast": [ + "Rosemary Lane", + "George Reeves", + "John Eldredge" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Am I Guilty?", + "year": 1940, + "cast": [ + "Ralph Cooper", + "Sam McDaniel" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Americaner Shadchen", + "year": 1940, + "cast": [ + "Leo Fuchs", + "Judith Abarbanel", + "Judel Dubinsky" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "And One Was Beautiful", + "year": 1940, + "cast": [ + "Robert Cummings", + "Laraine Day", + "Jean Muir" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "Andy Hardy Meets Debutante", + "year": 1940, + "cast": [ + "Lewis Stone", + "Mickey Rooney", + "Cecilia Parker" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "An Angel from Texas", + "year": 1940, + "cast": [ + "Eddie Albert", + "Rosemary Lane", + "Wayne Morris", + "Jane Wyman", + "Ronald Reagan" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Angels Over Broadway", + "year": 1940, + "cast": [ + "Douglas Fairbanks Jr.", + "Rita Hayworth", + "Thomas Mitchell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Anne of Windy Poplars", + "year": 1940, + "cast": [ + "Anne Shirley", + "James Ellison", + "Henry Travers" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Ape", + "year": 1940, + "cast": [ + "Boris Karloff", + "Maris Wrixon" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Argentine Nights", + "year": 1940, + "cast": [ + "Ritz Brothers", + "The Andrews Sisters", + "Constance Moore", + "George Reeves" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Arise, My Love", + "year": 1940, + "cast": [ + "Claudette Colbert", + "Ray Milland", + "Dennis O'Keefe" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Arizona", + "year": 1940, + "cast": [ + "Jean Arthur", + "William Holden", + "Warren William" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Arizona Frontier", + "year": 1940, + "cast": [ + "Tex Ritter" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Arizona Gang Busters", + "year": 1940, + "cast": [ + "Tim McCoy", + "Pauline Haddon" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Babies for Sale", + "year": 1940, + "cast": [ + "Rochelle Hudson", + "Glenn Ford", + "Miles Mander" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Bad Man from Red Butte", + "year": 1940, + "cast": [ + "Johnny Mack Brown", + "Bob Baker", + "Fuzzy Knight" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Bank Dick", + "year": 1940, + "cast": [ + "W. C. Fields", + "Cora Witherspoon", + "Una Merkel" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Barnyard Follies", + "year": 1940, + "cast": [ + "Mary Lee", + "Harry Cheshire", + "Rufe Davis", + "June Storey", + "Isabel Randolph" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Before I Hang", + "year": 1940, + "cast": [ + "Boris Karloff", + "Evelyn Keyes", + "Bruce Bennett" + ], + "genres": [ + "Crime", + "Science Fiction" + ] + }, + { + "title": "Behind the News", + "year": 1940, + "cast": [ + "Lloyd Nolan", + "Doris Davenport", + "Frank Albertson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Beyond the Sacramento", + "year": 1940, + "cast": [ + "Wild Bill Elliott", + "Evelyn Keyes", + "Dub Taylor" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Beyond Tomorrow", + "year": 1940, + "cast": [ + "Jean Parker", + "Harry Carey", + "C. Aubrey Smith", + "Charles Winninger", + "Richard Carlson" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "A Bill of Divorcement", + "year": 1940, + "cast": [ + "Maureen O'Hara", + "Adolphe Menjou", + "Fay Bainter" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Billy the Kid in Texas", + "year": 1940, + "cast": [ + "Bob Steele", + "Terry Walker", + "Al St. John", + "Carleton Young" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Billy the Kid Outlawed", + "year": 1940, + "cast": [ + "Bob Steele", + "Louise Currie", + "Al St. John", + "Carleton Young" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Billy the Kid's Gun Justice", + "year": 1940, + "cast": [ + "Bob Steele", + "Al St. John", + "Louise Currie", + "Carleton Young" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Biscuit Eater", + "year": 1940, + "cast": [ + "Billy Lee", + "Cordell Hickman", + "Richard Lane" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Bitter Sweet", + "year": 1940, + "cast": [ + "Jeanette MacDonald", + "Nelson Eddy", + "George Sanders" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Black Diamonds", + "year": 1940, + "cast": [ + "Richard Arlen", + "Andy Devine", + "Kathryn Adams Doty" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Black Friday", + "year": 1940, + "cast": [ + "Boris Karloff", + "Bela Lugosi", + "Stanley Ridges" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Blazing Six Shooters", + "year": 1940, + "cast": [ + "Charles Starrett", + "Iris Meredith", + "Dick Curtis" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Blondie Has Servant Trouble", + "year": 1940, + "cast": [ + "Penny Singleton", + "Arthur Lake" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Blondie on a Budget", + "year": 1940, + "cast": [ + "Penny Singleton", + "Arthur Lake" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Blondie Plays Cupid", + "year": 1940, + "cast": [ + "Penny Singleton", + "Arthur Lake" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Blue Bird", + "year": 1940, + "cast": [ + "Shirley Temple", + "Spring Byington", + "Nigel Bruce" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Boom Town", + "year": 1940, + "cast": [ + "Clark Gable", + "Spencer Tracy", + "Claudette Colbert" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Border Legion", + "year": 1940, + "cast": [ + "Roy Rogers", + "George \"Gabby\" Hayes" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Boss of Bullion City", + "year": 1940, + "cast": [ + "Johnny Mack Brown", + "Maria Montez", + "Nell O'Day" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Bowery Boy", + "year": 1940, + "cast": [ + "Dennis O'Keefe", + "Louise Campbell", + "Jimmy Lydon", + "Helen Vinson" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Boys of the City", + "year": 1940, + "cast": [ + "Bobby Jordan", + "Leo Gorcey", + "Hal E. Chester" + ], + "genres": [ + "Comedy", + "Thriller" + ] + }, + { + "title": "The Boys from Syracuse", + "year": 1940, + "cast": [ + "Allan Jones", + "Irene Hervey", + "Martha Raye" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Brigham Young", + "year": 1940, + "cast": [ + "Tyrone Power", + "Linda Darnell", + "Dean Jagger" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "British Intelligence", + "year": 1940, + "cast": [ + "Boris Karloff", + "Margaret Lindsay", + "Bruce Lester" + ], + "genres": [ + "War", + "Spy" + ] + }, + { + "title": "Broadway Melody of 1940", + "year": 1940, + "cast": [ + "Fred Astaire", + "Eleanor Powell", + "George Murphy" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Broken Strings", + "year": 1940, + "cast": [ + "Clarence Muse" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Brother Orchid", + "year": 1940, + "cast": [ + "Edward G. Robinson", + "Humphrey Bogart", + "Ann Sothern" + ], + "genres": [ + "Crime", + "Comedy" + ] + }, + { + "title": "Brother Rat and a Baby", + "year": 1940, + "cast": [ + "Priscilla Lane", + "Wayne Morris", + "Jane Bryan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Buck Benny Rides Again", + "year": 1940, + "cast": [ + "Jack Benny", + "Ellen Drew", + "Eddie Anderson" + ], + "genres": [ + "Western", + "Comedy" + ] + }, + { + "title": "Bullet Code", + "year": 1940, + "cast": [ + "George O'Brien", + "Virginia Vale", + "Slim Whitaker" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Bullets for Rustlers", + "year": 1940, + "cast": [ + "Charles Starrett", + "Lorna Gray", + "Bob Nolan" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Buzzy Rides the Range", + "year": 1940, + "cast": [ + "Robert \"Buzz\" Henry", + "David O'Brien" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Cafe Hostess", + "year": 1940, + "cast": [ + "Preston Foster", + "Ann Dvorak", + "Douglas Fowley" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Calling All Husbands", + "year": 1940, + "cast": [ + "George Tobias", + "Lucile Fairbanks", + "Ernest Truex" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Calling Philo Vance", + "year": 1940, + "cast": [ + "James Stephenson", + "Margot Stevenson", + "Henry O'Neill" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Captain Caution", + "year": 1940, + "cast": [ + "Victor Mature", + "Louise Platt", + "Leo Carrillo", + "Bruce Cabot", + "Alan Ladd" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Carolina Moon", + "year": 1940, + "cast": [ + "Gene Autry", + "Smiley Burnette", + "June Storey" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Carson City Kid", + "year": 1940, + "cast": [ + "Roy Rogers", + "Bob Steele" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Castle on the Hudson", + "year": 1940, + "cast": [ + "John Garfield", + "Ann Sheridan", + "Pat O'Brien" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Chad Hanna", + "year": 1940, + "cast": [ + "Henry Fonda", + "Dorothy Lamour", + "Linda Darnell" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "Charlie Chan at the Wax Museum", + "year": 1940, + "cast": [ + "Sidney Toler", + "Victor Sen Yung", + "C. Henry Gordon", + "Marguerite Chapman" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Charlie Chan in Panama", + "year": 1940, + "cast": [ + "Sidney Toler", + "Jean Rogers", + "Lionel Atwill" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Charlie Chan's Murder Cruise", + "year": 1940, + "cast": [ + "Sidney Toler", + "Marjorie Weaver", + "Lionel Atwill" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Charter Pilot", + "year": 1940, + "cast": [ + "Lloyd Nolan", + "Lynn Bari", + "Arleen Whelan" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Chasing Trouble", + "year": 1940, + "cast": [ + "Frankie Darro", + "Marjorie Reynolds", + "Mantan Moreland" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Cherokee Strip", + "year": 1940, + "cast": [ + "Richard Dix", + "Florence Rice", + "William Henry" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Christmas in July", + "year": 1940, + "cast": [ + "Dick Powell", + "Ellen Drew", + "Raymond Walburn" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Chump at Oxford", + "year": 1940, + "cast": [ + "Stan Laurel", + "Oliver Hardy", + "Forrester Harvey" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "City for Conquest", + "year": 1940, + "cast": [ + "James Cagney", + "Ann Sheridan", + "Frank Craven" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "City of Chance", + "year": 1940, + "cast": [ + "Lynn Bari", + "C. Aubrey Smith", + "Amanda Duff" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "City of Lost Men", + "year": 1940, + "cast": [ + "William \"Stage\" Boyd", + "Kane Richmond", + "Claudia Dell" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Colorado", + "year": 1940, + "cast": [ + "Roy Rogers", + "George \"Gabby\" Hayes", + "Pauline Moore" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Comes Midnight", + "year": 1940, + "cast": [ + "James Baskett", + "Eddie Green", + "Amanda Randolph" + ], + "genres": [ + "Horror", + "Comedy" + ] + }, + { + "title": "Comin' Round the Mountain", + "year": 1940, + "cast": [ + "Bob Burns", + "Una Merkel", + "Jerry Colonna" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Comrade X", + "year": 1940, + "cast": [ + "Clark Gable", + "Hedy Lamarr", + "Oskar Homolka" + ], + "genres": [ + "Comedy", + "Spy" + ] + }, + { + "title": "Congo Maisie", + "year": 1940, + "cast": [ + "Ann Sothern", + "John Carroll", + "Rita Johnson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Convicted Woman", + "year": 1940, + "cast": [ + "Rochelle Hudson", + "Frieda Inescort", + "June Lang", + "Glenn Ford" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Covered Wagon Days", + "year": 1940, + "cast": [ + "Robert Livingston", + "Raymond Hatton", + "Duncan Renaldo" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Covered Wagon Trails", + "year": 1940, + "cast": [ + "Jack Randall", + "Sally Cairns", + "David Sharpe" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Crooked Road", + "year": 1940, + "cast": [ + "Edmund Lowe", + "Irene Hervey", + "Henry Wilcoxon" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Cross-Country Romance", + "year": 1940, + "cast": [ + "Gene Raymond", + "Wendy Barrie", + "Hedda Hopper" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Curtain Call", + "year": 1940, + "cast": [ + "Barbara Read", + "Alan Mowbray", + "Helen Vinson" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Dance, Girl, Dance", + "year": 1940, + "cast": [ + "Maureen O'Hara", + "Louis Hayward", + "Lucille Ball" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Dancing on a Dime", + "year": 1940, + "cast": [ + "Robert Paige", + "Peter Lind Hayes", + "Eddie Quillan" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Danger Ahead", + "year": 1940, + "cast": [ + "James Newill", + "Dorothea Kent", + "Guy Usher" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Danger on Wheels", + "year": 1940, + "cast": [ + "Richard Arlen", + "Andy Devine", + "Peggy Moran" + ], + "genres": [ + "Sport", + "Thriller" + ] + }, + { + "title": "Dark Command", + "year": 1940, + "cast": [ + "Claire Trevor", + "John Wayne", + "Walter Pidgeon" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Dark Streets of Cairo", + "year": 1940, + "cast": [ + "Sigrid Gurie", + "Ralph Byrd", + "Eddie Quillan" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Deadwood Dick", + "year": 1940, + "cast": [ + "Don Douglas", + "Lorna Gray", + "Harry Harvey", + "Marin Sais" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Diamond Frontier", + "year": 1940, + "cast": [ + "Victor McLaglen", + "John Loder", + "Anne Nagel" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "A Dispatch from Reuter's", + "year": 1940, + "cast": [ + "Edward G. Robinson", + "Edna Best", + "Eddie Albert" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "The Doctor Takes a Wife", + "year": 1940, + "cast": [ + "Loretta Young", + "Ray Milland" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Doomed to Die", + "year": 1940, + "cast": [ + "Boris Karloff", + "Marjorie Reynolds", + "Grant Withers" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Double Alibi", + "year": 1940, + "cast": [ + "Wayne Morris", + "Margaret Lindsay", + "William Gargan" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Down Argentine Way", + "year": 1940, + "cast": [ + "Don Ameche", + "Betty Grable", + "Carmen Miranda" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Dr. Christian Meets the Women", + "year": 1940, + "cast": [ + "Jean Hersholt", + "Veda Ann Borg" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Dr. Cyclops", + "year": 1940, + "cast": [ + "Albert Dekker", + "Thomas Coley", + "Janice Logan" + ], + "genres": [ + "Science Fiction", + "Horror" + ] + }, + { + "title": "Dr. Ehrlich's Magic Bullet", + "year": 1940, + "cast": [ + "Edward G. Robinson", + "Ruth Gordon", + "Otto Kruger" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Dr. Kildare's Crisis", + "year": 1940, + "cast": [ + "Lew Ayres", + "Laraine Day", + "Robert Young" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dreaming Out Loud", + "year": 1940, + "cast": [ + "Lum and Abner", + "Frances Langford" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Drums of the Desert", + "year": 1940, + "cast": [ + "Ralph Byrd", + "Lorna Gray" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Dulcy", + "year": 1940, + "cast": [ + "Ann Sothern", + "Roland Young" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Earl of Chicago", + "year": 1940, + "cast": [ + "Robert Montgomery" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Earthbound", + "year": 1940, + "cast": [ + "Andrea Leeds", + "Warner Baxter" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "East of the River", + "year": 1940, + "cast": [ + "John Garfield", + "Marjorie Rambeau" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "East Side Kids", + "year": 1940, + "cast": [ + "Leon Ames", + "Dennis Moore", + "Joyce Bryant" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Edison, the Man", + "year": 1940, + "cast": [ + "Spencer Tracy", + "Rita Johnson", + "Lynne Overman" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Elmer's Candid Camera", + "year": 1940, + "cast": [ + "Mel Blanc", + "Arthur Q. Bryan" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Escape", + "year": 1940, + "cast": [ + "Norma Shearer", + "Robert Taylor", + "Conrad Veidt" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Eyes of the Navy", + "year": 1940, + "cast": [ + "Charles B. Middleton" + ], + "genres": [ + "Short", + "Documentary" + ] + }, + { + "title": "Fantasia", + "year": 1940, + "cast": [ + "Leopold Stokowski", + "Deems Taylor" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "The Fargo Kid", + "year": 1940, + "cast": [ + "Tim Holt", + "Ray Whitley" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Fatal Hour", + "year": 1940, + "cast": [ + "Boris Karloff", + "Marjorie Reynolds", + "Grant Withers" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Father Is a Prince", + "year": 1940, + "cast": [ + "John Litel", + "Jan Clayton", + "George Reeves" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Fight for Life", + "year": 1940, + "cast": [ + "Myron McCormick", + "Will Geer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Fighting 69th", + "year": 1940, + "cast": [ + "James Cagney", + "Pat O'Brien", + "George Brent" + ], + "genres": [ + "War" + ] + }, + { + "title": "Five Little Peppers in Trouble", + "year": 1940, + "cast": [ + "Edith Fellows" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Flight Angels", + "year": 1940, + "cast": [ + "Virginia Bruce", + "Jane Wyman", + "Ralph Bellamy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Flight Command", + "year": 1940, + "cast": [ + "Robert Taylor", + "Ruth Hussey", + "Walter Pidgeon" + ], + "genres": [ + "War" + ] + }, + { + "title": "Florian", + "year": 1940, + "cast": [ + "Robert Young", + "Charles Coburn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Flowing Gold", + "year": 1940, + "cast": [ + "John Garfield", + "Frances Farmer", + "Pat O'Brien" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Foreign Correspondent", + "year": 1940, + "cast": [ + "Joel McCrea", + "Laraine Day", + "Herbert Marshall" + ], + "genres": [ + "Spy", + "Thriller" + ] + }, + { + "title": "Forgotten Girls", + "year": 1940, + "cast": [ + "Louise Platt", + "Donald Woods" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Forty Little Mothers", + "year": 1940, + "cast": [ + "Eddie Cantor", + "Judith Anderson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Four Sons", + "year": 1940, + "cast": [ + "Don Ameche", + "Eugenie Leontovich", + "Mary Beth Hughes" + ], + "genres": [ + "Drama", + "War" + ] + }, + { + "title": "Free, Blonde and 21", + "year": 1940, + "cast": [ + "Lynn Bari", + "Joan Davis", + "Mary Beth Hughes" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "From Nurse to Worse", + "year": 1940, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Comedy", + "Short" + ] + }, + { + "title": "A Fugitive from Justice", + "year": 1940, + "cast": [ + "Roger Pryor", + "Lucile Fairbanks", + "Eddie Foy Jr." + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Gallant Sons", + "year": 1940, + "cast": [ + "Jackie Cooper", + "Gail Patrick" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Gambling on the High Seas", + "year": 1940, + "cast": [ + "Wayne Morris", + "Jane Wyman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Gangs of Chicago", + "year": 1940, + "cast": [ + "Lloyd Nolan", + "Lola Lane" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Gaucho Serenade", + "year": 1940, + "cast": [ + "Gene Autry", + "June Storey" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Ghost Breakers", + "year": 1940, + "cast": [ + "Bob Hope", + "Paulette Goddard", + "Richard Carlson", + "Anthony Quinn" + ], + "genres": [ + "Horror", + "Comedy" + ] + }, + { + "title": "The Ghost Comes Home", + "year": 1940, + "cast": [ + "Frank Morgan", + "Billie Burke" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Girl from Havana", + "year": 1940, + "cast": [ + "Claire Carleton", + "Dennis O'Keefe" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Girl in 313", + "year": 1940, + "cast": [ + "Florence Rice", + "Lionel Atwill" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Give Us Wings", + "year": 1940, + "cast": [ + "Billy Halop", + "Huntz Hall", + "Gabriel Dell" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Glamour for Sale", + "year": 1940, + "cast": [ + "Anita Louise", + "Roger Pryor" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Golden Fleecing", + "year": 1940, + "cast": [ + "Lew Ayres", + "Rita Johnson", + "Lloyd Nolan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Golden Gloves", + "year": 1940, + "cast": [ + "Richard Denning", + "Jeanne Cagney" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Gold Rush Maisie", + "year": 1940, + "cast": [ + "Ann Sothern", + "Lee Bowman" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Go West", + "year": 1940, + "cast": [ + "Marx Brothers", + "John Carroll", + "Diana Lewis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Granny Get Your Gun", + "year": 1940, + "cast": [ + "May Robson", + "Margot Stevenson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Grapes of Wrath", + "year": 1940, + "cast": [ + "Henry Fonda", + "Jane Darwell", + "John Carradine" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Great Dictator", + "year": 1940, + "cast": [ + "Charles Chaplin", + "Paulette Goddard", + "Jack Oakie" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Great McGinty", + "year": 1940, + "cast": [ + "Brian Donlevy", + "Muriel Angelus", + "Akim Tamiroff" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Green Archer", + "year": 1940, + "cast": [ + "Victor Jory", + "Iris Meredith" + ], + "genres": [] + }, + { + "title": "Green Hell", + "year": 1940, + "cast": [ + "Douglas Fairbanks Jr.", + "Joan Bennett", + "John Howard" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Green Hornet", + "year": 1940, + "cast": [ + "Gordon Jones", + "Wade Boteler", + "Anne Nagel" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Half a Sinner", + "year": 1940, + "cast": [ + "Heather Angel", + "John King" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Haunted Honeymoon", + "year": 1940, + "cast": [ + "Robert Montgomery", + "Constance Cummings" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "He Married His Wife", + "year": 1940, + "cast": [ + "Joel McCrea", + "Nancy Kelly", + "Roland Young" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Her First Romance", + "year": 1940, + "cast": [ + "Edith Fellows", + "Alan Ladd" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "High School", + "year": 1940, + "cast": [ + "Jane Withers", + "Lloyd Corrigan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hired!", + "year": 1940, + "cast": [], + "genres": [ + "Short" + ] + }, + { + "title": "Hired Wife", + "year": 1940, + "cast": [ + "Rosalind Russell", + "Brian Aherne", + "Virginia Bruce" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "His Girl Friday", + "year": 1940, + "cast": [ + "Cary Grant", + "Rosalind Russell", + "Ralph Bellamy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hit Parade of 1941", + "year": 1940, + "cast": [ + "Kenny Baker", + "Frances Langford", + "Hugh Herbert", + "Ann Miller" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Hold That Woman!", + "year": 1940, + "cast": [ + "Frances Gifford", + "James Dunn" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The House Across the Bay", + "year": 1940, + "cast": [ + "George Raft", + "Joan Bennett", + "Lloyd Nolan" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The House of the Seven Gables", + "year": 1940, + "cast": [ + "George Sanders", + "Margaret Lindsay", + "Nan Grey", + "Vincent Price", + "Dick Foran" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "How High Is Up?", + "year": 1940, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Comedy", + "Short" + ] + }, + { + "title": "The Howards of Virginia", + "year": 1940, + "cast": [ + "Cary Grant", + "Martha Scott", + "Cedric Hardwicke" + ], + "genres": [ + "Historical", + "Drama" + ] + }, + { + "title": "Hullabaloo", + "year": 1940, + "cast": [ + "Frank Morgan", + "Virginia Grey", + "Dan Dailey" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Ice-Capades", + "year": 1940, + "cast": [ + "James Ellison", + "Renie Riano", + "Phil Silvers" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "I Love You Again", + "year": 1940, + "cast": [ + "William Powell", + "Myrna Loy" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "I Take This Oath", + "year": 1940, + "cast": [ + "Joyce Compton", + "Gordon Jones" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "I Take This Woman", + "year": 1940, + "cast": [ + "Spencer Tracy", + "Hedy Lamarr", + "Laraine Day" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "I Want a Divorce", + "year": 1940, + "cast": [ + "Joan Blondell", + "Dick Powell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "If I Had My Way", + "year": 1940, + "cast": [ + "Bing Crosby", + "Gloria Jean" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "I'm Nobody's Sweetheart Now", + "year": 1940, + "cast": [ + "Helen Parrish", + "Constance Moore" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "I'm Still Alive", + "year": 1940, + "cast": [ + "Kent Taylor", + "Linda Hayes" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Invisible Man Returns", + "year": 1940, + "cast": [ + "Cedric Hardwicke", + "Vincent Price", + "Nan Grey" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Invisible Woman", + "year": 1940, + "cast": [ + "Virginia Bruce", + "John Barrymore", + "John Howard" + ], + "genres": [ + "Science Fiction", + "Comedy" + ] + }, + { + "title": "Irene", + "year": 1940, + "cast": [ + "Anna Neagle", + "Ray Milland", + "Roland Young" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Island of Doomed Men", + "year": 1940, + "cast": [ + "Peter Lorre", + "Rochelle Hudson" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "It All Came True", + "year": 1940, + "cast": [ + "Ann Sheridan", + "Jeffrey Lynn", + "Humphrey Bogart" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "It's a Date", + "year": 1940, + "cast": [ + "Deanna Durbin", + "Kay Francis", + "Walter Pidgeon" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "I Was an Adventuress", + "year": 1940, + "cast": [ + "Vera Zorina", + "Richard Greene" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Jennie", + "year": 1940, + "cast": [ + "Virginia Gilmore", + "George Montgomery" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Johnny Apollo", + "year": 1940, + "cast": [ + "Tyrone Power", + "Dorothy Lamour" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Junior G-Men", + "year": 1940, + "cast": [ + "Dead End Kids" + ], + "genres": [] + }, + { + "title": "King of the Lumberjacks", + "year": 1940, + "cast": [ + "John Payne", + "Gloria Dickson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "King of the Royal Mounted", + "year": 1940, + "cast": [ + "Allan Lane" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Kitty Foyle", + "year": 1940, + "cast": [ + "Ginger Rogers", + "Dennis Morgan", + "James Craig" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Knock Knock", + "year": 1940, + "cast": [], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "Knute Rockne, All American", + "year": 1940, + "cast": [ + "Pat O'Brien", + "Ronald Reagan" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Laddie", + "year": 1940, + "cast": [ + "Tim Holt", + "Virginia Gilmore" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Ladies Must Live", + "year": 1940, + "cast": [ + "Rosemary Lane", + "Wayne Morris" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Lady in Question", + "year": 1940, + "cast": [ + "Glenn Ford", + "Rita Hayworth" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Lady with Red Hair", + "year": 1940, + "cast": [ + "Miriam Hopkins", + "Claude Rains", + "Richard Ainley" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Legion of the Lawless", + "year": 1940, + "cast": [ + "George O'Brien", + "Virginia Vale" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Letter", + "year": 1940, + "cast": [ + "Bette Davis", + "Herbert Marshall", + "James Stephenson" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Light That Failed", + "year": 1940, + "cast": [ + "Ronald Colman", + "Walter Huston", + "Ida Lupino" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Lillian Russell", + "year": 1940, + "cast": [ + "Alice Faye", + "Don Ameche", + "Henry Fonda" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "A Little Bit of Heaven", + "year": 1940, + "cast": [ + "Gloria Jean", + "Hugh Herbert", + "Robert Stack" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Little Men", + "year": 1940, + "cast": [ + "Kay Francis", + "Jack Oakie", + "Ann Gillis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Little Nellie Kelly", + "year": 1940, + "cast": [ + "Judy Garland", + "George Murphy" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Little Old New York", + "year": 1940, + "cast": [ + "Fred MacMurray", + "Alice Faye", + "Brenda Joyce" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Lone Wolf Meets a Lady", + "year": 1940, + "cast": [ + "Warren William", + "Jean Muir" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Long Voyage Home", + "year": 1940, + "cast": [ + "John Wayne", + "Thomas Mitchell", + "Ian Hunter" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "Love Thy Neighbor", + "year": 1940, + "cast": [ + "Jack Benny", + "Fred Allen", + "Mary Martin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Lucky Cisco Kid", + "year": 1940, + "cast": [ + "Cesar Romero", + "Mary Beth Hughes" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Lucky Partners", + "year": 1940, + "cast": [ + "Ronald Colman", + "Ginger Rogers", + "Jack Carson" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Maisie Was a Lady", + "year": 1940, + "cast": [ + "Ann Sothern", + "Lew Ayres" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Man from Dakota", + "year": 1940, + "cast": [ + "Wallace Beery", + "Dolores del Río" + ], + "genres": [ + "Historical", + "Drama" + ] + }, + { + "title": "Manhattan Heartbeat", + "year": 1940, + "cast": [ + "Robert Sterling", + "Virginia Gilmore" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Man I Married", + "year": 1940, + "cast": [ + "Joan Bennett", + "Francis Lederer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Man Who Wouldn't Talk", + "year": 1940, + "cast": [ + "Lloyd Nolan", + "Jean Rogers" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Marines Fly High", + "year": 1940, + "cast": [ + "Richard Dix", + "Chester Morris", + "Lucille Ball" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Mark of Zorro", + "year": 1940, + "cast": [ + "Tyrone Power", + "Linda Darnell", + "Basil Rathbone" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Marked Men", + "year": 1940, + "cast": [ + "Warren Hull", + "Isabel Jewell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Married and in Love", + "year": 1940, + "cast": [ + "Barbara Read", + "Helen Vinson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Maryland", + "year": 1940, + "cast": [ + "Walter Brennan", + "Fay Bainter" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Meet the Wildcat", + "year": 1940, + "cast": [ + "Ralph Bellamy", + "Margaret Lindsay" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Melody and Moonlight", + "year": 1940, + "cast": [ + "Jane Frazee", + "Johnny Downs" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Melody Ranch", + "year": 1940, + "cast": [ + "Gene Autry", + "Jimmy Durante", + "Ann Miller" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Mexican Spitfire", + "year": 1940, + "cast": [ + "Lupe Vélez", + "Leon Errol" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Michael Shayne, Private Detective", + "year": 1940, + "cast": [ + "Lloyd Nolan", + "Marjorie Weaver" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Milky Way", + "year": 1940, + "cast": [ + "Bernice Hansen" + ], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "Millionaire Playboy", + "year": 1940, + "cast": [ + "Joe Penner", + "Russ Brown" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Millionaires in Prison", + "year": 1940, + "cast": [ + "Lee Tracy", + "Linda Hayes" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Misbehaving Husbands", + "year": 1940, + "cast": [ + "Betty Blythe", + "Harry Langdon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Money and the Woman", + "year": 1940, + "cast": [ + "Jeffrey Lynn", + "Brenda Marshall" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Moon Over Burma", + "year": 1940, + "cast": [ + "Dorothy Lamour", + "Robert Preston" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Mortal Storm", + "year": 1940, + "cast": [ + "James Stewart", + "Margaret Sullavan", + "Robert Young", + "Frank Morgan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Mr. Duck Steps Out", + "year": 1940, + "cast": [], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "The Mummy's Hand", + "year": 1940, + "cast": [ + "Dick Foran", + "Peggy Moran" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Murder in the Air", + "year": 1940, + "cast": [ + "Ronald Reagan", + "John Litel", + "Lya Lys" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Murder Over New York", + "year": 1940, + "cast": [ + "Sidney Toler", + "Ricardo Cortez", + "Marjorie Weaver" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Music in My Heart", + "year": 1940, + "cast": [ + "Tony Martin", + "Rita Hayworth", + "Edith Fellows" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "My Favorite Wife", + "year": 1940, + "cast": [ + "Irene Dunne", + "Cary Grant", + "Randolph Scott" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "My Little Chickadee", + "year": 1940, + "cast": [ + "Mae West", + "W. C. Fields" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "My Love Came Back", + "year": 1940, + "cast": [ + "Olivia de Havilland", + "Jeffrey Lynn", + "Jane Wyman" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "My Son, My Son!", + "year": 1940, + "cast": [ + "Madeleine Carroll", + "Brian Aherne", + "Louis Hayward" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Mysterious Doctor Satan", + "year": 1940, + "cast": [ + "Eduardo Ciannelli" + ], + "genres": [] + }, + { + "title": "Mystery Sea Raider", + "year": 1940, + "cast": [ + "Carole Landis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "New Moon", + "year": 1940, + "cast": [ + "Jeanette MacDonald", + "Nelson Eddy" + ], + "genres": [ + "Musical", + "Drama" + ] + }, + { + "title": "A Night at Earl Carroll's", + "year": 1940, + "cast": [ + "Ken Murray", + "J. Carrol Naish", + "Rose Hobart" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "No Census, No Feeling", + "year": 1940, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Comedy", + "Short" + ] + }, + { + "title": "North West Mounted Police", + "year": 1940, + "cast": [ + "Gary Cooper", + "Madeleine Carroll", + "Paulette Goddard" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Northwest Passage", + "year": 1940, + "cast": [ + "Spencer Tracy", + "Robert Young", + "Walter Brennan" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "No Time for Comedy", + "year": 1940, + "cast": [ + "James Stewart", + "Rosalind Russell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Nutty But Nice", + "year": 1940, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Comedy", + "Short" + ] + }, + { + "title": "Of Fox and Hounds", + "year": 1940, + "cast": [ + "Willoughby the Dog" + ], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "The Old Swimmin' Hole", + "year": 1940, + "cast": [ + "Jackie Moran", + "Marcia Mae Jones" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "One Man's Law", + "year": 1940, + "cast": [ + "Don \"Red\" Barry", + "Janet Waldo" + ], + "genres": [ + "Western" + ] + }, + { + "title": "One Million B.C.", + "year": 1940, + "cast": [ + "Victor Mature", + "Carole Landis", + "Lon Chaney Jr." + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "One Night in the Tropics", + "year": 1940, + "cast": [ + "Abbott and Costello", + "Nancy Kelly", + "Allan Jones" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "On Their Own", + "year": 1940, + "cast": [ + "Spring Byington", + "June Carlson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Opened by Mistake", + "year": 1940, + "cast": [ + "Charles Ruggles", + "Janice Logan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Our Town", + "year": 1940, + "cast": [ + "William Holden", + "Martha Scott", + "Fay Bainter" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Out West with the Peppers", + "year": 1940, + "cast": [ + "Edith Fellows" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Parole Fixer", + "year": 1940, + "cast": [ + "William Henry", + "Anthony Quinn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Patient Porky", + "year": 1940, + "cast": [ + "Porky Pig" + ], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "Phantom of Chinatown", + "year": 1940, + "cast": [ + "Keye Luke", + "Grant Withers" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Phantom Raiders", + "year": 1940, + "cast": [ + "Walter Pidgeon", + "Florence Rice" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Philadelphia Story", + "year": 1940, + "cast": [ + "Cary Grant", + "Katharine Hepburn", + "James Stewart" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Pier 13", + "year": 1940, + "cast": [ + "Lynn Bari", + "Lloyd Nolan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Pinocchio", + "year": 1940, + "cast": [ + "voices of", + "Cliff Edwards", + "Evelyn Venable", + "Mel Blanc" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Pride and Prejudice", + "year": 1940, + "cast": [ + "Greer Garson", + "Laurence Olivier", + "Edward Ashley" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Pride of the Bowery", + "year": 1940, + "cast": [ + "East Side Kids", + "Mary Ainslee" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Primrose Path", + "year": 1940, + "cast": [ + "Ginger Rogers", + "Joel McCrea", + "Marjorie Rambeau" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Private Affairs", + "year": 1940, + "cast": [ + "Nancy Kelly", + "Roland Young", + "Robert Cummings" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Public Deb No. 1", + "year": 1940, + "cast": [ + "Brenda Joyce", + "George Murphy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Puss Gets the Boot", + "year": 1940, + "cast": [ + "Lillian Randolph" + ], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "The Quarterback", + "year": 1940, + "cast": [ + "Wayne Morris", + "Virginia Dale", + "Lillian Cornell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Queen of the Mob", + "year": 1940, + "cast": [ + "Ralph Bellamy", + "Blanche Yurka" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Queen of the Yukon", + "year": 1940, + "cast": [ + "Charles Bickford", + "Irene Rich", + "June Carlson" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Quicker'n a Wink", + "year": 1940, + "cast": [ + "Harold E. Edgerton" + ], + "genres": [ + "Short", + "Documentary" + ] + }, + { + "title": "Rancho Grande", + "year": 1940, + "cast": [ + "Gene Autry", + "June Storey" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Ranger and the Lady", + "year": 1940, + "cast": [ + "Roy Rogers", + "Julie Bishop" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Rangers of Fortune", + "year": 1940, + "cast": [ + "Fred MacMurray", + "Albert Dekker", + "Patricia Morison" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Rebecca", + "year": 1940, + "cast": [ + "Laurence Olivier", + "Joan Fontaine" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "Remedy for Riches", + "year": 1940, + "cast": [ + "Jean Hersholt", + "Dorothy Lovett" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Remember the Night", + "year": 1940, + "cast": [ + "Barbara Stanwyck", + "Fred MacMurray" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "The Return of Frank James", + "year": 1940, + "cast": [ + "Henry Fonda", + "Gene Tierney" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Rhythm on the River", + "year": 1940, + "cast": [ + "Bing Crosby", + "Mary Martin", + "Basil Rathbone" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Riders of Black Mountain", + "year": 1940, + "cast": [ + "Tim McCoy" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Ride, Tenderfoot, Ride", + "year": 1940, + "cast": [ + "Gene Autry", + "Mary Lee" + ], + "genres": [ + "Western" + ] + }, + { + "title": "River's End", + "year": 1940, + "cast": [ + "Dennis Morgan", + "Elizabeth Inglis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Road to Singapore", + "year": 1940, + "cast": [ + "Bob Hope", + "Bing Crosby" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Rockin' Thru the Rockies", + "year": 1940, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Comedy", + "Short" + ] + }, + { + "title": "Rocky Mountain Rangers", + "year": 1940, + "cast": [ + "Robert Livingston", + "Rosella Towne" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Safari", + "year": 1940, + "cast": [ + "Madeleine Carroll", + "Douglas Fairbanks Jr." + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Sailor's Lady", + "year": 1940, + "cast": [ + "Nancy Kelly", + "Jon Hall" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Saint Takes Over", + "year": 1940, + "cast": [ + "George Sanders", + "Wendy Barrie" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Saint's Double Trouble", + "year": 1940, + "cast": [ + "George Sanders", + "Helene Whitney" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Santa Fe Marshal", + "year": 1940, + "cast": [ + "William Boyd", + "Bernadene Hayes" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Santa Fe Trail", + "year": 1940, + "cast": [ + "Errol Flynn", + "Olivia de Havilland" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Saps at Sea", + "year": 1940, + "cast": [ + "Laurel and Hardy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Saturday's Children", + "year": 1940, + "cast": [ + "John Garfield", + "Anne Shirley" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Scatterbrain", + "year": 1940, + "cast": [ + "Judy Canova", + "Alan Mowbray" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Sea Hawk", + "year": 1940, + "cast": [ + "Errol Flynn", + "Brenda Marshall", + "Claude Rains" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Second Chorus", + "year": 1940, + "cast": [ + "Fred Astaire", + "Paulette Goddard", + "Artie Shaw" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Service with the Colors", + "year": 1940, + "cast": [ + "Robert Armstrong", + "William Lundigan", + "Henry O'Neill" + ], + "genres": [ + "Drama", + "Short" + ] + }, + { + "title": "Seven Sinners", + "year": 1940, + "cast": [ + "Marlene Dietrich", + "John Wayne" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Seventeen", + "year": 1940, + "cast": [ + "Betty Field", + "Jackie Cooper" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "She Couldn't Say No", + "year": 1940, + "cast": [ + "Eve Arden", + "Roger Pryor" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "She Done Him Right", + "year": 1940, + "cast": [], + "genres": [ + "Comedy" + ] + }, + { + "title": "Shooting High", + "year": 1940, + "cast": [ + "Jane Withers", + "Gene Autry", + "Marjorie Weaver" + ], + "genres": [ + "Western", + "Musical" + ] + }, + { + "title": "The Shop Around the Corner", + "year": 1940, + "cast": [ + "James Stewart", + "Margaret Sullavan" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Siege", + "year": 1940, + "cast": [ + "Julien Bryan" + ], + "genres": [ + "Documentary", + "Short" + ] + }, + { + "title": "Sing, Dance, Plenty Hot", + "year": 1940, + "cast": [ + "Ruth Terry", + "Johnny Downs", + "Mary Lee" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Ski Patrol", + "year": 1940, + "cast": [ + "Luli Deste", + "Philip Dorn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sky Murder", + "year": 1940, + "cast": [ + "Walter Pidgeon", + "Joyce Compton" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Son of Ingagi", + "year": 1940, + "cast": [ + "Zack Williams", + "Laura Bowman" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Son of Monte Cristo", + "year": 1940, + "cast": [ + "Louis Hayward", + "Joan Bennett", + "George Sanders" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Son of the Navy", + "year": 1940, + "cast": [ + "Jean Parker", + "James Dunn" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "South of Pago Pago", + "year": 1940, + "cast": [ + "Jon Hall", + "Frances Farmer", + "Olympe Bradna" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "South of Suez", + "year": 1940, + "cast": [ + "George Brent", + "Brenda Marshall" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "So You Won't Talk", + "year": 1940, + "cast": [ + "Joe E. Brown", + "Frances Robinson", + "Vivienne Osborne" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Sporting Blood", + "year": 1940, + "cast": [ + "Robert Young", + "Maureen O'Sullivan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Spring Parade", + "year": 1940, + "cast": [ + "Deanna Durbin", + "Robert Cummings", + "Mischa Auer" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "Stage to Chino", + "year": 1940, + "cast": [ + "George O'Brien", + "Virginia Vale" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Star Dust", + "year": 1940, + "cast": [ + "Linda Darnell", + "John Payne" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Strange Cargo", + "year": 1940, + "cast": [ + "Clark Gable", + "Joan Crawford", + "Ian Hunter" + ], + "genres": [ + "Drama", + "Romance" + ] + }, + { + "title": "Stranger on the Third Floor", + "year": 1940, + "cast": [ + "Peter Lorre", + "Charles Waldron" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Strike Up the Band", + "year": 1940, + "cast": [ + "Mickey Rooney", + "Judy Garland", + "Paul Whiteman", + "and his Orchestra" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Susan and God", + "year": 1940, + "cast": [ + "Joan Crawford", + "Fredric March" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Swiss Family Robinson", + "year": 1940, + "cast": [ + "Thomas Mitchell", + "Edna Best", + "Freddie Bartholomew" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Tacoma Narrows Bridge Collapse (Galloping Gertie)", + "year": 1940, + "cast": [], + "genres": [] + }, + { + "title": "'Taint Legal", + "year": 1940, + "cast": [ + "Edgar Kennedy", + "Vivien Oakland", + "Billy Franey" + ], + "genres": [ + "Short", + "Comedy" + ] + }, + { + "title": "Tear Gas Squad", + "year": 1940, + "cast": [ + "John Payne", + "Dennis Morgan" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Teddy the Rough Rider", + "year": 1940, + "cast": [ + "Sidney Blackmer", + "Pierre Watkin", + "Arthur Loft" + ], + "genres": [ + "Short", + "Drama" + ] + }, + { + "title": "Terry and the Pirates", + "year": 1940, + "cast": [ + "William Tracy", + "Sheila Darcy" + ], + "genres": [] + }, + { + "title": "Texas Rangers Ride Again", + "year": 1940, + "cast": [ + "Ellen Drew", + "John Howard" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Texas Terrors", + "year": 1940, + "cast": [ + "Don \"Red\" Barry", + "Julie Duncan" + ], + "genres": [ + "Western" + ] + }, + { + "title": "That Gang of Mine", + "year": 1940, + "cast": [ + "Leo Gorcey" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "They Drive by Night", + "year": 1940, + "cast": [ + "George Raft", + "Humphrey Bogart", + "Ida Lupino", + "Ann Sheridan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "They Knew What They Wanted", + "year": 1940, + "cast": [ + "Carole Lombard", + "Charles Laughton", + "William Gargan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Third Finger, Left Hand", + "year": 1940, + "cast": [ + "Myrna Loy", + "Melvyn Douglas" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "This Thing Called Love", + "year": 1940, + "cast": [ + "Rosalind Russell", + "Melvyn Douglas" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Those Were the Days!", + "year": 1940, + "cast": [ + "William Holden", + "Bonita Granville", + "Judith Barrett" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Three Cheers for the Irish", + "year": 1940, + "cast": [ + "Priscilla Lane", + "Dennis Morgan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Three Faces West", + "year": 1940, + "cast": [ + "John Wayne", + "Sigrid Gurie" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "'Til We Meet Again", + "year": 1940, + "cast": [ + "Merle Oberon", + "Pat O'Brien", + "Geraldine Fitzgerald" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Tin Pan Alley", + "year": 1940, + "cast": [ + "Alice Faye", + "Betty Grable", + "Jack Oakie" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Tom Brown's School Days", + "year": 1940, + "cast": [ + "Cedric Hardwicke", + "Freddy Bartholomew" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Too Many Girls", + "year": 1940, + "cast": [ + "Lucille Ball", + "Frances Langford", + "Desi Arnaz" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Too Many Husbands", + "year": 1940, + "cast": [ + "Jean Arthur", + "Fred MacMurray", + "Melvyn Douglas" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Torrid Zone", + "year": 1940, + "cast": [ + "James Cagney", + "Ann Sheridan", + "Pat O'Brien" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Trail of the Vigilantes", + "year": 1940, + "cast": [ + "Franchot Tone", + "Warren William", + "Broderick Crawford" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Triple Justice", + "year": 1940, + "cast": [ + "George O'Brien", + "Virginia Vale" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Tugboat Annie Sails Again", + "year": 1940, + "cast": [ + "Marjorie Rambeau", + "Jane Wyman", + "Ronald Reagan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Tulsa Kid", + "year": 1940, + "cast": [ + "Don \"Red\" Barry", + "Luana Walters" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Turnabout", + "year": 1940, + "cast": [ + "Adolphe Menjou", + "Carole Landis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Two Girls on Broadway", + "year": 1940, + "cast": [ + "Lana Turner", + "Joan Blondell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Typhoon", + "year": 1940, + "cast": [ + "Dorothy Lamour", + "Robert Preston", + "Lynne Overman" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Untamed", + "year": 1940, + "cast": [ + "Ray Milland", + "Patricia Morison", + "Akim Tamiroff" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Up in the Air", + "year": 1940, + "cast": [ + "Marjorie Reynolds", + "Frankie Darrow" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Victory", + "year": 1940, + "cast": [ + "Fredric March", + "Cedric Hardwicke", + "Betty Field" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Vigil in the Night", + "year": 1940, + "cast": [ + "Carole Lombard", + "Brian Aherne" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "The Villain Still Pursued Her", + "year": 1940, + "cast": [ + "Buster Keaton", + "Billy Gilbert" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Virginia City", + "year": 1940, + "cast": [ + "Errol Flynn", + "Miriam Hopkins", + "Randolph Scott", + "Humphrey Bogart" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Viva Cisco Kid", + "year": 1940, + "cast": [ + "Cesar Romero", + "Jean Rogers" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Wagons Westward", + "year": 1940, + "cast": [ + "Anita Louise", + "Chester Morris" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Waterloo Bridge", + "year": 1940, + "cast": [ + "Vivien Leigh", + "Robert Taylor", + "Lucile Watson" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "The Way of All Flesh", + "year": 1940, + "cast": [ + "Akim Tamiroff", + "Gladys George" + ], + "genres": [] + }, + { + "title": "The Westerner", + "year": 1940, + "cast": [ + "Gary Cooper", + "Walter Brennan", + "Doris Davenport" + ], + "genres": [ + "Western" + ] + }, + { + "title": "We Who Are Young", + "year": 1940, + "cast": [ + "Lana Turner", + "Gene Lockhart" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "When the Daltons Rode", + "year": 1940, + "cast": [ + "Randolph Scott", + "Kay Francis" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Who Killed Aunt Maggie?", + "year": 1940, + "cast": [ + "Wendy Barrie", + "Mona Barrie", + "John Hubbard" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Wildcat Bus", + "year": 1940, + "cast": [ + "Fay Wray", + "Charles Lang" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Wild Hare", + "year": 1940, + "cast": [ + "Mel Blanc", + "Arthur Q. Bryan" + ], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "Winners of the West", + "year": 1940, + "cast": [ + "Dick Foran", + "Anne Nagel" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Women in War", + "year": 1940, + "cast": [ + "Elsie Janis", + "Wendy Barrie", + "Patric Knowles" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "Women Without Names", + "year": 1940, + "cast": [ + "Ellen Drew", + "Fay Helm", + "Judith Barrett" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Wyoming", + "year": 1940, + "cast": [ + "Wallace Beery", + "Leo Carrillo", + "Ann Rutherford" + ], + "genres": [ + "Western" + ] + }, + { + "title": "You Can't Fool Your Wife", + "year": 1940, + "cast": [ + "Lucille Ball", + "James Ellison" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "You Ought to Be in Pictures", + "year": 1940, + "cast": [ + "Looney Tunes" + ], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "You'll Find Out", + "year": 1940, + "cast": [ + "Kay Kyser", + "Helen Parrish", + "Ginny Simms", + "Peter Lorre", + "Boris Karloff" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Young Bill Hickok", + "year": 1940, + "cast": [ + "Roy Rogers", + "Sally Payne" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Young Buffalo Bill", + "year": 1940, + "cast": [ + "Roy Rogers", + "Pauline Moore" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Young People", + "year": 1940, + "cast": [ + "Shirley Temple", + "Jack Oakie", + "Charlotte Greenwood" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Young Tom Edison", + "year": 1940, + "cast": [ + "Mickey Rooney", + "Fay Bainter", + "George Bancroft" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Young as You Feel", + "year": 1940, + "cast": [ + "Jed Prouty", + "Spring Byington" + ], + "genres": [ + "Family" + ] + }, + { + "title": "You're Not So Tough", + "year": 1940, + "cast": [ + "Billy Halop", + "Huntz Hall", + "Bobby Jordan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Yukon Flight", + "year": 1940, + "cast": [ + "Louise Stanley", + "James Newill" + ], + "genres": [ + "Western" + ] + }, + { + "title": "An Ache in Every Stake", + "year": 1941, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Comedy", + "Short" + ] + }, + { + "title": "Adam Had Four Sons", + "year": 1941, + "cast": [ + "Ingrid Bergman", + "Warner Baxter", + "Susan Hayward" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Adventure in Washington", + "year": 1941, + "cast": [ + "Herbert Marshall", + "Virginia Bruce" + ], + "genres": [] + }, + { + "title": "Adventures of Captain Marvel", + "year": 1941, + "cast": [ + "Tom Tyler", + "Frank Coghlan Jr.", + "Louise Currie" + ], + "genres": [] + }, + { + "title": "Affectionately Yours", + "year": 1941, + "cast": [ + "Merle Oberon", + "Rita Hayworth" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "All-American Co-Ed", + "year": 1941, + "cast": [ + "Frances Langford", + "Johnny Downs" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "All the World's a Stooge", + "year": 1941, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Comedy", + "Short" + ] + }, + { + "title": "All This and Rabbit Stew", + "year": 1941, + "cast": [ + "Bugs Bunny" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "All Through the Night", + "year": 1941, + "cast": [ + "Humphrey Bogart", + "Kaaren Verne", + "Conrad Veidt", + "Jane Darwell" + ], + "genres": [ + "Mystery", + "Comedy" + ] + }, + { + "title": "Aloma of the South Seas", + "year": 1941, + "cast": [ + "Dorothy Lamour", + "Jon Hall" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Among the Living", + "year": 1941, + "cast": [ + "Albert Dekker", + "Susan Hayward", + "Harry Carey", + "Frances Farmer" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Andy Hardy's Private Secretary", + "year": 1941, + "cast": [ + "Lewis Stone", + "Mickey Rooney", + "Kathryn Grayson" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Angels with Broken Wings", + "year": 1941, + "cast": [ + "Jane Frazee", + "Mary Lee", + "Binnie Barnes" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Appointment for Love", + "year": 1941, + "cast": [ + "Charles Boyer", + "Margaret Sullavan", + "Rita Johnson" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Arizona Bound", + "year": 1941, + "cast": [ + "Buck Jones", + "Tim McCoy" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Arkansas Judge", + "year": 1941, + "cast": [ + "Roy Rogers", + "Veda Ann Borg" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Art of Self Defense", + "year": 1941, + "cast": [ + "Goofy" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Aviation Vacation", + "year": 1941, + "cast": [ + "Looney Tunes" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Babes on Broadway", + "year": 1941, + "cast": [ + "Judy Garland", + "Mickey Rooney" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Back Street", + "year": 1941, + "cast": [ + "Charles Boyer", + "Margaret Sullavan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Badlands of Dakota", + "year": 1941, + "cast": [ + "Robert Stack", + "Frances Farmer", + "Richard Dix" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Bad Man", + "year": 1941, + "cast": [ + "Wallace Beery", + "Lionel Barrymore", + "Laraine Day", + "Ronald Reagan" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Bad Men of Missouri", + "year": 1941, + "cast": [ + "Jane Wyman", + "Dennis Morgan" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Bahama Passage", + "year": 1941, + "cast": [ + "Sterling Hayden", + "Madeleine Carroll" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Ball of Fire", + "year": 1941, + "cast": [ + "Gary Cooper", + "Barbara Stanwyck" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Barnacle Bill", + "year": 1941, + "cast": [ + "Wallace Beery", + "Marjorie Main" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Bedtime Story", + "year": 1941, + "cast": [ + "Loretta Young", + "Fredric March" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Belle Starr", + "year": 1941, + "cast": [ + "Gene Tierney", + "Randolph Scott" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Big Store", + "year": 1941, + "cast": [ + "Marx Brothers", + "Tony Martin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Billy the Kid", + "year": 1941, + "cast": [ + "Robert Taylor", + "Brian Donlevy" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Birth of the Blues", + "year": 1941, + "cast": [ + "Bing Crosby", + "Mary Martin" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Black Cat", + "year": 1941, + "cast": [ + "Basil Rathbone", + "Hugh Herbert", + "Broderick Crawford", + "Bela Lugosi" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Blonde from Singapore", + "year": 1941, + "cast": [ + "Florence Rice", + "Leif Erickson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Blood and Sand", + "year": 1941, + "cast": [ + "Tyrone Power", + "Linda Darnell", + "Rita Hayworth", + "Alla Nazimova" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Blood of Jesus", + "year": 1941, + "cast": [ + "Cathryn Caviness", + "Spencer Williams" + ], + "genres": [] + }, + { + "title": "Blossoms in the Dust", + "year": 1941, + "cast": [ + "Greer Garson", + "Walter Pidgeon", + "Felix Bressart" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Blues in the Night", + "year": 1941, + "cast": [ + "Priscilla Lane", + "Betty Field" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Bombay Clipper", + "year": 1941, + "cast": [ + "William Gargan", + "Irene Hervey" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Borrowed Hero", + "year": 1941, + "cast": [ + "Florence Rice", + "Alan Baxter" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Bowery Blitzkrieg", + "year": 1941, + "cast": [ + "The", + "East Side Kids", + "Keye Luke", + "Warren Hull" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Bride Came C.O.D.", + "year": 1941, + "cast": [ + "James Cagney", + "Bette Davis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Bride Wore Crutches", + "year": 1941, + "cast": [ + "Lynne Roberts", + "Robert Armstrong" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Broadway Limited", + "year": 1941, + "cast": [ + "Victor McLaglen", + "Patsy Kelly", + "ZaSu Pitts" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Buck Privates", + "year": 1941, + "cast": [ + "Abbott and Costello" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Bullets for O'Hara", + "year": 1941, + "cast": [ + "Joan Perry", + "Anthony Quinn" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Burma Convoy", + "year": 1941, + "cast": [ + "Charles Bickford", + "Evelyn Ankers" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Buy Me That Town", + "year": 1941, + "cast": [ + "Constance Moore", + "Lloyd Nolan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Cadet Girl", + "year": 1941, + "cast": [ + "Carole Landis", + "George Montgomery" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Case of the Black Parrot", + "year": 1941, + "cast": [ + "William Lundigan", + "Maris Wrixon" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Caught in the Draft", + "year": 1941, + "cast": [ + "Bob Hope", + "Dorothy Lamour" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Charlie Chan in Rio", + "year": 1941, + "cast": [ + "Sidney Toler", + "Victor Sen Yung", + "Kay Linaker" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Cheers for Miss Bishop", + "year": 1941, + "cast": [ + "Martha Scott", + "William Gargan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Chocolate Soldier", + "year": 1941, + "cast": [ + "Nelson Eddy", + "Risë Stevens", + "Nigel Bruce" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Citadel of Crime", + "year": 1941, + "cast": [ + "Robert Armstrong" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Citizen Kane", + "year": 1941, + "cast": [ + "Orson Welles", + "Joseph Cotten", + "Everett Sloane", + "Paul Stewart", + "Dorothy Comingore", + "Agnes Moorehead" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "City of Missing Girls", + "year": 1941, + "cast": [ + "Astrid Allwyn", + "H. B. Warner" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Come Live With Me", + "year": 1941, + "cast": [ + "James Stewart", + "Hedy Lamarr" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Confessions of Boston Blackie", + "year": 1941, + "cast": [ + "Chester Morris", + "Harriet Hilliard" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Confirm or Deny", + "year": 1941, + "cast": [ + "Don Ameche", + "Joan Bennett" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Corsican Brothers", + "year": 1941, + "cast": [ + "Douglas Fairbanks Jr.", + "Ruth Warrick", + "Akim Tamiroff" + ], + "genres": [] + }, + { + "title": "Country Fair", + "year": 1941, + "cast": [ + "June Clyde", + "Eddie Foy Jr." + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Dance Hall", + "year": 1941, + "cast": [ + "Carole Landis", + "Cesar Romero" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Dangerously They Live", + "year": 1941, + "cast": [ + "John Garfield", + "Nancy Coleman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dead Men Tell", + "year": 1941, + "cast": [ + "Sidney Toler", + "Sheila Ryan" + ], + "genres": [] + }, + { + "title": "The Deadly Game", + "year": 1941, + "cast": [ + "Charles Farrell", + "June Lang" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Design for Scandal", + "year": 1941, + "cast": [ + "Rosalind Russell", + "Walter Pidgeon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Desperate Cargo", + "year": 1941, + "cast": [ + "Ralph Byrd", + "Julie Duncan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Devil and Daniel Webster", + "year": 1941, + "cast": [ + "Edward Arnold", + "Walter Huston", + "James Craig" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "The Devil and Miss Jones", + "year": 1941, + "cast": [ + "Jean Arthur", + "Charles Coburn" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Devil Commands", + "year": 1941, + "cast": [ + "Boris Karloff", + "Amanda Duff" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Devil Pays Off", + "year": 1941, + "cast": [ + "Osa Massen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dick Tracy vs Crime Inc", + "year": 1941, + "cast": [ + "Ralph Byrd" + ], + "genres": [] + }, + { + "title": "Dive Bomber", + "year": 1941, + "cast": [ + "Errol Flynn", + "Fred MacMurray" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "Doctors Don't Tell", + "year": 1941, + "cast": [ + "Florence Rice", + "John Beal" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Double Cross", + "year": 1941, + "cast": [ + "Kane Richmond", + "Wynne Gibson" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Down in San Diego", + "year": 1941, + "cast": [ + "Bonita Granville", + "Dan Dailey" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Down Mexico Way", + "year": 1941, + "cast": [ + "Gene Autry", + "Fay McKenzie" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Dr. Jekyll and Mr. Hyde", + "year": 1941, + "cast": [ + "Spencer Tracy", + "Ingrid Bergman", + "Lana Turner" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Dr. Kildare's Wedding Day", + "year": 1941, + "cast": [ + "Lew Ayres", + "Laraine Day", + "Red Skelton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dressed to Kill", + "year": 1941, + "cast": [ + "Lloyd Nolan", + "Mary Beth Hughes", + "Sheila Ryan" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Dude Cowboy", + "year": 1941, + "cast": [ + "Tim Holt", + "Marjorie Reynolds" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Dumbo", + "year": 1941, + "cast": [ + "Edward Brophy", + "Herman Bing" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Dutiful But Dumb", + "year": 1941, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Comedy", + "Short" + ] + }, + { + "title": "Elmer's Pet Rabbit", + "year": 1941, + "cast": [ + "Elmer Fudd", + "Bugs Bunny" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "The Face Behind the Mask", + "year": 1941, + "cast": [ + "Peter Lorre" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Feminine Touch", + "year": 1941, + "cast": [ + "Rosalind Russell", + "Don Ameche" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Fiesta", + "year": 1941, + "cast": [ + "Ann Ayars", + "Armida" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Flame of New Orleans", + "year": 1941, + "cast": [ + "Marlene Dietrich", + "Mischa Auer" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Flight from Destiny", + "year": 1941, + "cast": [ + "Geraldine Fitzgerald", + "Jeffrey Lynn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Flying Blind", + "year": 1941, + "cast": [ + "Jean Parker", + "Richard Arlen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Flying Wild", + "year": 1941, + "cast": [ + "Leo Gorcey", + "David Gorcey" + ], + "genres": [] + }, + { + "title": "Footsteps in the Dark", + "year": 1941, + "cast": [ + "Errol Flynn", + "Brenda Marshall", + "Ralph Bellamy" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "For Beauty's Sake", + "year": 1941, + "cast": [ + "Marjorie Weaver", + "Joan Davis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Forced Landing", + "year": 1941, + "cast": [ + "Richard Arlen", + "Eva Gabor", + "J. Carrol Naish", + "Nils Asther", + "Evelyn Brent" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Four Mothers", + "year": 1941, + "cast": [ + "Priscilla Lane", + "Rosemary Lane", + "Lola Lane" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Free and Easy", + "year": 1941, + "cast": [ + "Robert Cummings", + "Ruth Hussey" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Gambling Daughters", + "year": 1941, + "cast": [ + "Cecilia Parker", + "Gale Storm" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Gang's All Here", + "year": 1941, + "cast": [ + "Frankie Darro", + "Mantan Moreland", + "Robert Homans" + ], + "genres": [ + "Action", + "Comedy" + ] + }, + { + "title": "The Gay Falcon", + "year": 1941, + "cast": [ + "George Sanders", + "Wendy Barrie" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Gay Vagabond", + "year": 1941, + "cast": [ + "Roscoe Karns", + "Ruth Donnelly" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Get-Away", + "year": 1941, + "cast": [ + "Robert Sterling", + "Donna Reed" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "A Girl, a Guy and a Gob", + "year": 1941, + "cast": [ + "Lucille Ball", + "George Murphy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Glamour Boy", + "year": 1941, + "cast": [ + "Jackie Cooper", + "Susanna Foster" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Golden Hoofs", + "year": 1941, + "cast": [ + "Jane Withers", + "Buddy Rogers" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Go West, Young Lady", + "year": 1941, + "cast": [ + "Ann Miller", + "Glenn Ford" + ], + "genres": [ + "Western", + "Comedy" + ] + }, + { + "title": "Great Guns", + "year": 1941, + "cast": [ + "Laurel and Hardy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Great American Broadcast", + "year": 1941, + "cast": [ + "Alice Faye", + "John Payne" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Great Awakening", + "year": 1941, + "cast": [ + "Ilona Massey", + "Alan Curtis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Great Lie", + "year": 1941, + "cast": [ + "Mary Astor", + "Bette Davis", + "George Brent" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Great Mr. Nobody", + "year": 1941, + "cast": [ + "Eddie Albert", + "Joan Leslie" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Green Hornet Strikes Again", + "year": 1941, + "cast": [ + "Warren Hull", + "Keye Luke" + ], + "genres": [] + }, + { + "title": "H. M. Pulham, Esq.", + "year": 1941, + "cast": [ + "Robert Young", + "Hedy Lamarr", + "Ruth Hussey" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Hard-Boiled Canary", + "year": 1941, + "cast": [ + "Susanna Foster", + "Allan Jones" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hard Guy", + "year": 1941, + "cast": [ + "Jack LaRue", + "Mary Healy" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Harvard, Here I Come", + "year": 1941, + "cast": [ + "Maxie Rosenbloom", + "Arline Judge" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Heckling Hare", + "year": 1941, + "cast": [ + "Looney Tunes" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Hello, Sucker", + "year": 1941, + "cast": [ + "Hugh Herbert", + "Peggy Moran" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hellzapoppin'", + "year": 1941, + "cast": [ + "Ole Olsen", + "Chic Johnson", + "Martha Raye" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Henry Aldrich for President", + "year": 1941, + "cast": [ + "Jimmy Lydon", + "Mary Anderson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Here Comes Happiness", + "year": 1941, + "cast": [ + "Mildred Coles", + "Edward Norris" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Here Comes Mr. Jordan", + "year": 1941, + "cast": [ + "Robert Montgomery", + "Evelyn Keyes", + "Claude Rains" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Her First Beau", + "year": 1941, + "cast": [ + "Jane Withers", + "Jackie Cooper" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Hiawatha's Rabbit Hunt", + "year": 1941, + "cast": [ + "Bugs Bunny" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "High Sierra", + "year": 1941, + "cast": [ + "Ida Lupino", + "Humphrey Bogart", + "Joan Leslie", + "Arthur Kennedy", + "Cornel Wilde" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Hit the Road", + "year": 1941, + "cast": [ + "Gladys George", + "Barton MacLane", + "Dead End Kids" + ], + "genres": [ + "Crime", + "Comedy" + ] + }, + { + "title": "Hold Back the Dawn", + "year": 1941, + "cast": [ + "Charles Boyer", + "Olivia de Havilland", + "Paulette Goddard" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Hold That Ghost", + "year": 1941, + "cast": [ + "Abbott and Costello" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Honeymoon for Three", + "year": 1941, + "cast": [ + "Ann Sheridan", + "George Brent" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Honky Tonk", + "year": 1941, + "cast": [ + "Clark Gable", + "Lana Turner", + "Claire Trevor" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Honolulu Lu", + "year": 1941, + "cast": [ + "Lupe Velez", + "Bruce Bennett" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Horror Island", + "year": 1941, + "cast": [ + "Dick Foran", + "Peggy Moran" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "How Green Was My Valley", + "year": 1941, + "cast": [ + "Walter Pidgeon", + "Maureen O'Hara", + "Roddy McDowall" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hudson's Bay", + "year": 1941, + "cast": [ + "Paul Muni", + "Gene Tierney" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hurry, Charlie, Hurry", + "year": 1941, + "cast": [ + "Leon Errol", + "Mildred Coles" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "I Killed That Man", + "year": 1941, + "cast": [ + "Ricardo Cortez", + "Joan Woodbury" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "I Wake Up Screaming", + "year": 1941, + "cast": [ + "Betty Grable", + "Victor Mature", + "Carole Landis" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "I Wanted Wings", + "year": 1941, + "cast": [ + "Ray Milland", + "William Holden", + "Brian Donlevy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "I'll Never Heil Again", + "year": 1941, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Comedy", + "Short" + ] + }, + { + "title": "I'll Wait for You", + "year": 1941, + "cast": [ + "Robert Sterling", + "Marsha Hunt" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "In the Navy", + "year": 1941, + "cast": [ + "Abbott and Costello", + "Dick Powell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "In the Sweet Pie and Pie", + "year": 1941, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Comedy", + "Short" + ] + }, + { + "title": "International Lady", + "year": 1941, + "cast": [ + "George Brent", + "Ilona Massey" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "International Squadron", + "year": 1941, + "cast": [ + "Ronald Reagan", + "Olympe Bradna" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Invisible Ghost", + "year": 1941, + "cast": [ + "Bela Lugosi", + "Polly Ann Young" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "It Started with Eve", + "year": 1941, + "cast": [ + "Deanna Durbin", + "Charles Laughton", + "Robert Cummings" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Johnny Eager", + "year": 1941, + "cast": [ + "Robert Taylor", + "Lana Turner", + "Edward Arnold" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Jungle Girl", + "year": 1941, + "cast": [ + "Frances Gifford" + ], + "genres": [] + }, + { + "title": "Jungle Man", + "year": 1941, + "cast": [ + "Buster Crabbe", + "Sheila Darcy" + ], + "genres": [] + }, + { + "title": "Kathleen", + "year": 1941, + "cast": [ + "Shirley Temple", + "Gail Patrick", + "Laraine Day" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Keep 'Em Flying", + "year": 1941, + "cast": [ + "Abbott and Costello", + "Martha Raye" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Kid from Kansas", + "year": 1941, + "cast": [ + "Leo Carillo", + "Andy Devine" + ], + "genres": [ + "Western" + ] + }, + { + "title": "King of the Zombies", + "year": 1941, + "cast": [ + "Dick Purcell", + "Joan Woodbury" + ], + "genres": [ + "Horror", + "Comedy" + ] + }, + { + "title": "Kiss the Boys Goodbye", + "year": 1941, + "cast": [ + "Mary Martin", + "Don Ameche" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Kisses for Breakfast", + "year": 1941, + "cast": [ + "Jane Wyatt", + "Shirley Ross", + "Dennis Morgan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Ladies in Retirement", + "year": 1941, + "cast": [ + "Ida Lupino", + "Louis Hayward" + ], + "genres": [] + }, + { + "title": "Lady Be Good", + "year": 1941, + "cast": [ + "Eleanor Powell", + "Ann Sothern", + "Robert Young", + "Virginia O'Brien", + "Red Skelton", + "Phil Silvers" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Lady Eve", + "year": 1941, + "cast": [ + "Barbara Stanwyck", + "Henry Fonda" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Lady from Cheyenne", + "year": 1941, + "cast": [ + "Loretta Young", + "Robert Preston" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Lady from Louisiana", + "year": 1941, + "cast": [ + "John Wayne", + "Ona Munson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Lady Scarface", + "year": 1941, + "cast": [ + "Dennis O'Keefe", + "Mildred Coles" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Last of the Duanes", + "year": 1941, + "cast": [ + "George Montgomery", + "Eve Arden" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Las Vegas Nights", + "year": 1941, + "cast": [ + "Bert Wheeler", + "Constance Moore", + "Tommy Dorsey" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Law of the Range", + "year": 1941, + "cast": [ + "Johnny Mack Brown", + "Nell O'Day" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Law of the Tropics", + "year": 1941, + "cast": [ + "Constance Bennett", + "Jeffrey Lynn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Let's Make Music", + "year": 1941, + "cast": [ + "Jean Rogers", + "Bob Crosby" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Life Begins for Andy Hardy", + "year": 1941, + "cast": [ + "Lewis Stone", + "Mickey Rooney", + "Fay Holden" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Life with Henry", + "year": 1941, + "cast": [ + "Jackie Cooper", + "Eddie Bracken" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Little Foxes", + "year": 1941, + "cast": [ + "Bette Davis", + "Herbert Marshall", + "Teresa Wright" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Little Whirlwind", + "year": 1941, + "cast": [], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "The Lone Wolf Keeps a Date", + "year": 1941, + "cast": [ + "Warren William", + "Frances Robinson" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Look Who's Laughing", + "year": 1941, + "cast": [ + "Edgar Bergen", + "Lucille Ball", + "Jim Jordan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Louisiana Purchase", + "year": 1941, + "cast": [ + "Bob Hope", + "Vera Zorina" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Lydia", + "year": 1941, + "cast": [ + "Merle Oberon", + "Joseph Cotton", + "Edna May Oliver" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Mad Doctor", + "year": 1941, + "cast": [ + "Basil Rathbone", + "Ellen Drew" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Maltese Falcon", + "year": 1941, + "cast": [ + "Humphrey Bogart", + "Mary Astor", + "Sydney Greenstreet", + "Peter Lorre", + "Elisha Cook Jr.", + "Ward Bond" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "A Man Betrayed", + "year": 1941, + "cast": [ + "John Wayne", + "Frances Dee" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Man Hunt", + "year": 1941, + "cast": [ + "Walter Pidgeon", + "Joan Bennett", + "Roddy McDowall", + "George Sanders" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Man at Large", + "year": 1941, + "cast": [ + "George Reeves", + "Marjorie Weaver" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Man Made Monster", + "year": 1941, + "cast": [ + "Lon Chaney Jr.", + "Lionel Atwill" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Manpower", + "year": 1941, + "cast": [ + "Edward G. Robinson", + "Marlene Dietrich", + "George Raft" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Man Who Lost Himself", + "year": 1941, + "cast": [ + "Brian Aherne", + "Kay Francis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Married Bachelor", + "year": 1941, + "cast": [ + "Robert Young", + "Ruth Hussey" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Marry the Boss's Daughter", + "year": 1941, + "cast": [ + "Brenda Joyce" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Medico of Painted Springs", + "year": 1941, + "cast": [ + "Charles Starrett", + "Terry Walker", + "Ben Taggart" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Meet Boston Blackie", + "year": 1941, + "cast": [ + "Chester Morris", + "Rochelle Hudson" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Meet John Doe", + "year": 1941, + "cast": [ + "Gary Cooper", + "Barbara Stanwyck", + "Walter Brennan" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "Meet the Chump", + "year": 1941, + "cast": [ + "Hugh Herbert", + "Jeanne Kelly" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Melody for Three", + "year": 1941, + "cast": [ + "Jean Hersholt", + "Fay Wray" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Men in Her Life", + "year": 1941, + "cast": [ + "Loretta Young" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Men of Boys Town", + "year": 1941, + "cast": [ + "Spencer Tracy", + "Mickey Rooney" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Mercy Island", + "year": 1941, + "cast": [ + "Gloria Dickson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Mexican Spitfire's Baby", + "year": 1941, + "cast": [ + "Lupe Velez", + "Leon Errol" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Midnight Snack", + "year": 1941, + "cast": [], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "Million Dollar Baby", + "year": 1941, + "cast": [ + "Ronald Reagan", + "Priscilla Lane" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Miss Polly", + "year": 1941, + "cast": [ + "ZaSu Pitts", + "Slim Summerville" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mister Bug Goes to Town", + "year": 1941, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "Mob Town", + "year": 1941, + "cast": [ + "Dick Foran", + "Anne Gwynne", + "Billy Halop" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Monster and the Girl", + "year": 1941, + "cast": [ + "Ellen Drew", + "Robert Paige", + "Paul Lukas" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Moods of the Sea", + "year": 1941, + "cast": [], + "genres": [ + "Short" + ] + }, + { + "title": "Moonlight in Hawaii", + "year": 1941, + "cast": [ + "Jane Frazee", + "Johnny Downs" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Moon Over Her Shoulder", + "year": 1941, + "cast": [ + "Lynn Bari", + "John Sutton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Moon Over Miami", + "year": 1941, + "cast": [ + "Betty Grable", + "Don Ameche" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Mountain Moonlight", + "year": 1941, + "cast": [ + "Betty Jane Rhodes", + "Weaver Brothers" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Mr. & Mrs. Smith", + "year": 1941, + "cast": [ + "Carole Lombard", + "Robert Montgomery" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mr. Bug Goes to Town", + "year": 1941, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "Mr. District Attorney", + "year": 1941, + "cast": [ + "Dennis O'Keefe", + "Florence Rice", + "Peter Lorre" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Murder by Invitation", + "year": 1941, + "cast": [ + "Wallace Ford", + "Marian Marsh" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "My Life with Caroline", + "year": 1941, + "cast": [ + "Ronald Colman", + "Anna Lee", + "Charles Winninger" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Navy Blues", + "year": 1941, + "cast": [ + "Ann Sheridan", + "Martha Raye" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Never Give a Sucker an Even Break", + "year": 1941, + "cast": [ + "W. C. Fields", + "Gloria Jean" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "New York Town", + "year": 1941, + "cast": [ + "Fred MacMurray", + "Mary Martin" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Niagara Falls", + "year": 1941, + "cast": [ + "Tom Brown", + "ZaSu Pitts" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Nice Girl?", + "year": 1941, + "cast": [ + "Deanna Durbin", + "Franchot Tone", + "Walter Brennan" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Nifty Nineties", + "year": 1941, + "cast": [], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "The Night Before Christmas", + "year": 1941, + "cast": [], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "The Night of January 16th", + "year": 1941, + "cast": [ + "Robert Preston", + "Ellen Drew" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Nine Lives Are Not Enough", + "year": 1941, + "cast": [ + "Ronald Reagan", + "Joan Perry" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "No Hands on the Clock", + "year": 1941, + "cast": [ + "Jean Parker", + "Chester Morris" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Nothing but the Truth", + "year": 1941, + "cast": [ + "Bob Hope", + "Paulette Goddard" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Nurse's Secret", + "year": 1941, + "cast": [ + "Lee Patrick", + "Julie Bishop" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "One Foot in Heaven", + "year": 1941, + "cast": [ + "Fredric March", + "Martha Scott", + "Beulah Bondi", + "Gene Lockhart" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "One Night in Lisbon", + "year": 1941, + "cast": [ + "Fred MacMurray", + "Madeleine Carroll", + "Patricia Morison" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Out of the Fog", + "year": 1941, + "cast": [ + "Ida Lupino", + "John Garfield", + "Eddie Albert" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Pacific Blackout", + "year": 1941, + "cast": [ + "Robert Preston", + "Martha O'Driscoll" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Pantry Panic", + "year": 1941, + "cast": [ + "Woody Woodpecker" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Paper Bullets", + "year": 1941, + "cast": [ + "Joan Woodbury", + "Jack La Rue", + "Alan Ladd" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Parachute Battalion", + "year": 1941, + "cast": [ + "Robert Preston", + "Nancy Kelly", + "Edmond O'Brien", + "Harry Carey", + "Buddy Ebsen" + ], + "genres": [ + "War" + ] + }, + { + "title": "Paris Calling", + "year": 1941, + "cast": [ + "Elisabeth Bergner", + "Randolph Scott", + "Basil Rathbone" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Passage from Hong Kong", + "year": 1941, + "cast": [ + "Lucile Fairbanks" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "The Penalty", + "year": 1941, + "cast": [ + "Lionel Barrymore", + "Edward Arnold", + "Marsha Hunt" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Penny Serenade", + "year": 1941, + "cast": [ + "Irene Dunne", + "Cary Grant", + "Beulah Bondi", + "Edgar Buchanan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The People vs. Dr. Kildare", + "year": 1941, + "cast": [ + "Lew Ayres", + "Laraine Day", + "Bonita Granville" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Petticoat Politics", + "year": 1941, + "cast": [ + "Ruth Donnelly", + "Roscoe Karns" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Pittsburgh Kid", + "year": 1941, + "cast": [ + "Billy Conn", + "Jean Parker" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Place to Live", + "year": 1941, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "Play Girl", + "year": 1941, + "cast": [ + "Kay Francis", + "Mildred Coles" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Playmates", + "year": 1941, + "cast": [ + "Kay Kyser", + "Lupe Velez" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Pot o' Gold", + "year": 1941, + "cast": [ + "James Stewart", + "Paulette Goddard" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Power Dive", + "year": 1941, + "cast": [ + "Richard Arlen", + "Helen Mack" + ], + "genres": [ + "War" + ] + }, + { + "title": "Private Nurse", + "year": 1941, + "cast": [ + "Brenda Joyce", + "Jane Darwell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Public Enemies", + "year": 1941, + "cast": [ + "Wendy Barrie", + "Phillip Terry" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Puddin' Head", + "year": 1941, + "cast": [ + "Judy Canova", + "Francis Lederer" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Rage in Heaven", + "year": 1941, + "cast": [ + "Robert Montgomery", + "Ingrid Bergman", + "Oskar Homolka", + "George Sanders" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Reaching for the Sun", + "year": 1941, + "cast": [ + "Joel McCrea", + "Ellen Drew" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Red River Valley", + "year": 1941, + "cast": [ + "Roy Rogers", + "Gabby Hayes" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Reluctant Dragon", + "year": 1941, + "cast": [ + "Robert Benchley", + "Frances Gifford" + ], + "genres": [ + "Animated", + "Live Action" + ] + }, + { + "title": "Remember the Day", + "year": 1941, + "cast": [ + "Claudette Colbert", + "John Payne" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Riders of Death Valley", + "year": 1941, + "cast": [ + "Dick Foran", + "Buck Jones", + "Ford Beebe" + ], + "genres": [] + }, + { + "title": "Riders of the Purple Sage", + "year": 1941, + "cast": [ + "George Montgomery", + "Lynne Roberts" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Ridin' on a Rainbow", + "year": 1941, + "cast": [ + "Gene Autry", + "Mary Lee" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Ring of Steel", + "year": 1941, + "cast": [ + "Narrated by", + "Spencer Tracy" + ], + "genres": [] + }, + { + "title": "Ringside Maisie", + "year": 1941, + "cast": [ + "Ann Sothern", + "George Murphy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Rise and Shine", + "year": 1941, + "cast": [ + "Jack Oakie", + "Linda Darnell", + "George Murphy" + ], + "genres": [ + "Crime", + "Comedy" + ] + }, + { + "title": "Road Show", + "year": 1941, + "cast": [ + "Carole Landis", + "Adolphe Menjou" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Road to Zanzibar", + "year": 1941, + "cast": [ + "Bob Hope", + "Bing Crosby", + "Dorothy Lamour" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Roar of the Press", + "year": 1941, + "cast": [ + "Jean Parker", + "Wallace Ford" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Romance of the Rio Grande", + "year": 1941, + "cast": [ + "Cesar Romero", + "Patricia Morison" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Round Up", + "year": 1941, + "cast": [ + "Richard Dix", + "Patricia Morison" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Sailors on Leave", + "year": 1941, + "cast": [ + "Shirley Ross", + "William Lundigan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Saint in Palm Springs", + "year": 1941, + "cast": [ + "George Sanders", + "Wendy Barrie" + ], + "genres": [ + "Crime", + "Thriller" + ] + }, + { + "title": "The Saint's Vacation", + "year": 1941, + "cast": [ + "Hugh Sinclair", + "Leueen MacGrath" + ], + "genres": [ + "Action", + "Adventure" + ] + }, + { + "title": "San Antonio Rose", + "year": 1941, + "cast": [ + "Jane Frazee", + "Eve Arden" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Scattergood Meets Broadway", + "year": 1941, + "cast": [ + "Guy Kibbee", + "Mildred Coles" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Scotland Yard", + "year": 1941, + "cast": [ + "Nancy Kelly", + "Edmund Gwenn" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Scrub Me Mama with a Boogie Beat", + "year": 1941, + "cast": [], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "Sea Raiders", + "year": 1941, + "cast": [ + "Dead End Kids", + "Little Tough Guys" + ], + "genres": [] + }, + { + "title": "The Sea Wolf", + "year": 1941, + "cast": [ + "Edward G. Robinson", + "Ida Lupino", + "John Garfield" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Secrets of the Lone Wolf", + "year": 1941, + "cast": [ + "Warren William", + "Ruth Ford" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Sergeant York", + "year": 1941, + "cast": [ + "Gary Cooper", + "Walter Brennan", + "Joan Leslie" + ], + "genres": [ + "War", + "Biography" + ] + }, + { + "title": "Shadow of the Thin Man", + "year": 1941, + "cast": [ + "William Powell", + "Myrna Loy" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Shanghai Gesture", + "year": 1941, + "cast": [ + "Gene Tierney", + "Walter Huston", + "Victor Mature" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "She Knew All the Answers", + "year": 1941, + "cast": [ + "Joan Bennett", + "Franchot Tone" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Shepherd of the Hills", + "year": 1941, + "cast": [ + "John Wayne", + "Betty Field" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Shining Victory", + "year": 1941, + "cast": [ + "James Stephenson", + "Geraldine Fitzgerald", + "Donald Crisp" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "A Shot in the Dark", + "year": 1941, + "cast": [ + "William Lundigan", + "Nan Wynn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sierra Sue", + "year": 1941, + "cast": [ + "Gene Autry", + "Fay McKenzie" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Sing Another Chorus", + "year": 1941, + "cast": [ + "Jane Frazee", + "Johnny Downs" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Singapore Woman", + "year": 1941, + "cast": [ + "Brenda Marshall", + "Virginia Field" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Singing Hill", + "year": 1941, + "cast": [ + "Gene Autry", + "Mary Lee" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Sis Hopkins", + "year": 1941, + "cast": [ + "Judy Canova", + "Bob Crosby", + "Susan Hayward" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Six Gun Gold", + "year": 1941, + "cast": [ + "Tim Holt", + "Fern Emmett", + "Eddy Waller" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Six Lessons from Madame La Zonga", + "year": 1941, + "cast": [ + "Lupe Velez", + "Leon Errol", + "Helen Parrish" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Sky Raiders", + "year": 1941, + "cast": [ + "Donald Woods" + ], + "genres": [] + }, + { + "title": "Skylark", + "year": 1941, + "cast": [ + "Claudette Colbert", + "Ray Milland", + "Brian Aherne" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Smiling Ghost", + "year": 1941, + "cast": [ + "Alexis Smith", + "Wayne Morris" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Smilin' Through", + "year": 1941, + "cast": [ + "Jeanette MacDonald", + "Brian Aherne" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "So Ends Our Night", + "year": 1941, + "cast": [ + "Fredric March", + "Margaret Sullavan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "So Long Mr. Chumps", + "year": 1941, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Some More of Samoa", + "year": 1941, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "South of Tahiti", + "year": 1941, + "cast": [ + "Maria Montez", + "Brian Donlevy" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Spooks Run Wild", + "year": 1941, + "cast": [ + "Bela Lugosi", + "Leo Gorcey", + "Huntz Hall", + "Bobby Jordan" + ], + "genres": [] + }, + { + "title": "Steel Against the Sky", + "year": 1941, + "cast": [ + "Alexis Smith", + "Lloyd Nolan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Strange Alibi", + "year": 1941, + "cast": [ + "Arthur Kennedy", + "Joan Perry" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Strawberry Blonde", + "year": 1941, + "cast": [ + "James Cagney", + "Olivia de Havilland", + "Rita Hayworth" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Stick to Your Guns", + "year": 1941, + "cast": [ + "William Boyd", + "Jennifer Holt" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Sullivan's Travels", + "year": 1941, + "cast": [ + "Joel McCrea", + "Veronica Lake" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Sundown", + "year": 1941, + "cast": [ + "Gene Tierney", + "Bruce Cabot", + "George Sanders" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sun Valley Serenade", + "year": 1941, + "cast": [ + "Sonja Henie", + "Lynn Bari", + "John Payne", + "Milton Berle" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Sunny", + "year": 1941, + "cast": [ + "Anna Neagle", + "Ray Bolger", + "Edward Everett Horton" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Suspicion", + "year": 1941, + "cast": [ + "Cary Grant", + "Joan Fontaine", + "Nigel Bruce", + "Cedric Hardwicke", + "Dame May Whitty", + "Leo G. Carroll" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Swamp Water", + "year": 1941, + "cast": [ + "Walter Brennan", + "Walter Huston", + "Anne Baxter" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Tall, Dark and Handsome", + "year": 1941, + "cast": [ + "Cesar Romero", + "Virginia Gilmore", + "Milton Berle" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Tarzan's Secret Treasure", + "year": 1941, + "cast": [ + "Johnny Weissmuller", + "Maureen O'Sullivan", + "Johnny Sheffield", + "Barry Fitzgerald" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Texas", + "year": 1941, + "cast": [ + "William Holden", + "Glenn Ford" + ], + "genres": [ + "Western" + ] + }, + { + "title": "That Hamilton Woman", + "year": 1941, + "cast": [ + "Vivian Leigh", + "Laurence Olivier" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "That Night in Rio", + "year": 1941, + "cast": [ + "Don Ameche", + "Alice Faye", + "Carmen Miranda" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "That Uncertain Feeling", + "year": 1941, + "cast": [ + "Merle Oberon", + "Melvyn Douglas", + "Burgess Meredith" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "They Dare Not Love", + "year": 1941, + "cast": [ + "Martha Scott", + "George Brent" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "They Died with Their Boots On", + "year": 1941, + "cast": [ + "Errol Flynn", + "Olivia de Havilland" + ], + "genres": [ + "Western" + ] + }, + { + "title": "They Met in Argentina", + "year": 1941, + "cast": [ + "Maureen O'Hara", + "James Ellison" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "They Met in Bombay", + "year": 1941, + "cast": [ + "Clark Gable", + "Rosalind Russell", + "Peter Lorre" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Thieves Fall Out", + "year": 1941, + "cast": [ + "Eddie Albert", + "Joan Leslie", + "Jane Darwell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "This Woman is Mine", + "year": 1941, + "cast": [ + "Franchot Tone", + "Carol Bruce", + "Nigel Bruce" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Three Girls About Town", + "year": 1941, + "cast": [ + "Joan Blondell", + "Janet Blair" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Three Sons o' Guns", + "year": 1941, + "cast": [ + "Marjorie Rambeau", + "Wayne Morris" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Tight Shoes", + "year": 1941, + "cast": [ + "John Howard", + "Broderick Crawford" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Timber", + "year": 1941, + "cast": [ + "Donald Duck", + "Peg Leg Pete" + ], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "Time Out for Rhythm", + "year": 1941, + "cast": [ + "Rudy Vallée", + "Ann Miller", + "The Three Stooges" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Tobacco Road", + "year": 1941, + "cast": [ + "Charley Grapewin", + "Marjorie Rambeau", + "Dana Andrews", + "Gene Tierney" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Tom, Dick and Harry", + "year": 1941, + "cast": [ + "Ginger Rogers", + "George Murphy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Too Many Blondes", + "year": 1941, + "cast": [ + "Rudy Vallée", + "Helen Parrish" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Topper Returns", + "year": 1941, + "cast": [ + "Joan Blondell", + "Roland Young", + "Carole Landis", + "Dennis O'Keefe" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Tortoise Beats Hare", + "year": 1941, + "cast": [ + "Bugs Bunny", + "Cecil Turtle" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "The Trial of Mary Dugan", + "year": 1941, + "cast": [ + "Laraine Day", + "Robert Young" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Tuxedo Junction", + "year": 1941, + "cast": [ + "Sally Payne", + "Frankie Darro" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Twilight on the Trail", + "year": 1941, + "cast": [ + "William Boyd", + "Wanda McKay" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Two-Faced Woman", + "year": 1941, + "cast": [ + "Greta Garbo" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Two in a Taxi", + "year": 1941, + "cast": [ + "Anita Louise", + "Russell Hayden" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Two Latins from Manhattan", + "year": 1941, + "cast": [ + "Joan Davis", + "Jinx Falkenburg", + "Joan Woodbury" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Uncle Joe", + "year": 1941, + "cast": [ + "Gale Storm", + "ZaSu Pitts" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Under Age", + "year": 1941, + "cast": [ + "Nan Grey", + "Mary Anderson" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Underground", + "year": 1941, + "cast": [ + "Jeffrey Lynn", + "Philip Dorn" + ], + "genres": [ + "War" + ] + }, + { + "title": "Unexpected Uncle", + "year": 1941, + "cast": [ + "Charles Coburn", + "Anne Shirley" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Unfinished Business", + "year": 1941, + "cast": [ + "Irene Dunne", + "Robert Montgomery" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Unholy Partners", + "year": 1941, + "cast": [ + "Edward G. Robinson", + "Laraine Day", + "Edward Arnold", + "Marsha Hunt" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Very Young Lady", + "year": 1941, + "cast": [ + "Jane Withers", + "Nancy Kelly" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Virginia", + "year": 1941, + "cast": [ + "Madeleine Carroll", + "Fred MacMurray", + "Sterling Hayden" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Wabbit Twouble", + "year": 1941, + "cast": [ + "Bugs Bunny" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "The Wagons Roll at Night", + "year": 1941, + "cast": [ + "Humphrey Bogart", + "Eddie Albert", + "Joan Leslie", + "Sylvia Sidney" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Washington Melodrama", + "year": 1941, + "cast": [ + "Ann Rutherford", + "Frank Morgan", + "Dan Dailey" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Week-End in Havana", + "year": 1941, + "cast": [ + "Alice Faye", + "Carmen Miranda" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Weekend for Three", + "year": 1941, + "cast": [ + "Jane Wyatt", + "Dennis O'Keefe" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "We Go Fast", + "year": 1941, + "cast": [ + "Alan Curtis", + "Lynn Bari" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "West Point Widow", + "year": 1941, + "cast": [ + "Anne Shirley", + "Richard Carlson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Western Union", + "year": 1941, + "cast": [ + "Randolph Scott", + "Robert Young" + ], + "genres": [ + "Western" + ] + }, + { + "title": "When Ladies Meet", + "year": 1941, + "cast": [ + "Joan Crawford", + "Robert Taylor", + "Greer Garson" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Where Did You Get That Girl?", + "year": 1941, + "cast": [ + "Leon Errol", + "Helen Parrish" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "White Eagle", + "year": 1941, + "cast": [ + "Buck Jones", + "Dorothy Fay" + ], + "genres": [] + }, + { + "title": "Wild Geese Calling", + "year": 1941, + "cast": [ + "Henry Fonda", + "Joan Bennett" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Wild Man of Borneo", + "year": 1941, + "cast": [ + "Frank Morgan", + "Billie Burke" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Wolf Man", + "year": 1941, + "cast": [ + "Lon Chaney Jr.", + "Claude Rains", + "Ralph Bellamy", + "Bela Lugosi", + "Maria Ouspenskaya" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "A Woman's Face", + "year": 1941, + "cast": [ + "Joan Crawford", + "Melvyn Douglas", + "Conrad Veidt" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Wyoming Wildcat", + "year": 1941, + "cast": [ + "Don \"Red\" Barry", + "Julie Duncan" + ], + "genres": [ + "Western" + ] + }, + { + "title": "A Yank in the RAF", + "year": 1941, + "cast": [ + "Tyrone Power", + "Betty Grable" + ], + "genres": [ + "War", + "Romance" + ] + }, + { + "title": "You Belong to Me", + "year": 1941, + "cast": [ + "Barbara Stanwyck", + "Henry Fonda", + "Ruth Donnelly" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "You'll Never Get Rich", + "year": 1941, + "cast": [ + "Fred Astaire", + "Rita Hayworth", + "Robert Benchley" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "You're in the Army Now", + "year": 1941, + "cast": [ + "Jimmy Durante", + "Jane Wyman", + "Phil Silvers" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Ziegfeld Girl", + "year": 1941, + "cast": [ + "James Stewart", + "Judy Garland", + "Hedy Lamarr", + "Jackie Cooper", + "Lana Turner" + ], + "genres": [ + "Musical", + "Drama" + ] + }, + { + "title": "A-Haunting We Will Go", + "year": 1942, + "cast": [ + "Stan Laurel", + "Oliver Hardy", + "Dante the Magician" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Across the Pacific", + "year": 1942, + "cast": [ + "Humphrey Bogart", + "Mary Astor", + "Sydney Greenstreet", + "Charles Halton" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Adventures of Martin Eden", + "year": 1942, + "cast": [ + "Glenn Ford", + "Claire Trevor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Affairs of Jimmy Valentine", + "year": 1942, + "cast": [ + "Dennis O'Keefe", + "Ruth Terry" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Affairs of Martha", + "year": 1942, + "cast": [ + "Marsha Hunt", + "Richard Carlson" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Alias Boston Blackie", + "year": 1942, + "cast": [ + "Chester Morris", + "Adele Mara", + "George E. Stone" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Almost Married", + "year": 1942, + "cast": [ + "Jane Frazee" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Always in My Heart", + "year": 1942, + "cast": [ + "Kay Francis", + "Walter Huston" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "American Empire", + "year": 1942, + "cast": [ + "Richard Dix", + "Leo Carrillo", + "Preston Foster", + "Frances Gifford" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Andy Hardy's Double Life", + "year": 1942, + "cast": [ + "Lewis Stone", + "Mickey Rooney", + "Fay Holden" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Any Bonds Today?", + "year": 1942, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "Apache Trail", + "year": 1942, + "cast": [ + "Lloyd Nolan", + "Donna Reed", + "Ann Ayars" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Arabian Nights", + "year": 1942, + "cast": [ + "Maria Montez", + "Jon Hall", + "Sabu", + "Leif Erickson", + "Billy Gilbert", + "Turhan Bey", + "Shemp Howard" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Are Husbands Necessary?", + "year": 1942, + "cast": [ + "Ray Milland", + "Betty Field", + "Patricia Morison" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Arm Behind the Army", + "year": 1942, + "cast": [], + "genres": [ + "Short" + ] + }, + { + "title": "Army Surgeon", + "year": 1942, + "cast": [ + "Jane Wyatt", + "James Ellison" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Atlantic Convoy", + "year": 1942, + "cast": [ + "Bruce Bennett", + "Virginia Field", + "Larry Parks", + "Lloyd Bridges" + ], + "genres": [ + "War" + ] + }, + { + "title": "Bambi", + "year": 1942, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "The Bashful Bachelor", + "year": 1942, + "cast": [ + "Lum and Abner", + "ZaSu Pitts" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Battle of Midway", + "year": 1942, + "cast": [], + "genres": [] + }, + { + "title": "Bells of Capistrano", + "year": 1942, + "cast": [ + "Gene Autry", + "Virginia Grey" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Between Us Girls", + "year": 1942, + "cast": [ + "Diana Barrymore", + "Robert Cummings" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Beyond the Blue Horizon", + "year": 1942, + "cast": [ + "Dorothy Lamour", + "Richard Denning", + "Patricia Morison" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Big Shot", + "year": 1942, + "cast": [ + "Humphrey Bogart", + "Irene Manning" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Big Street", + "year": 1942, + "cast": [ + "Henry Fonda", + "Lucille Ball", + "Barton MacLane" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Billy the Kid Trapped", + "year": 1942, + "cast": [ + "Buster Crabbe", + "Anne Jeffreys" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Black Dragons", + "year": 1942, + "cast": [ + "Bela Lugosi" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Black Swan", + "year": 1942, + "cast": [ + "Tyrone Power", + "Maureen O'Hara" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Blondie Goes to College", + "year": 1942, + "cast": [ + "Penny Singleton", + "Arthur Lake", + "Janet Blair" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Bombs Over Burma", + "year": 1942, + "cast": [ + "Anna May Wong", + "Noel Madison" + ], + "genres": [ + "War" + ] + }, + { + "title": "The Boogie Man Will Get You", + "year": 1942, + "cast": [ + "Boris Karloff", + "Peter Lorre" + ], + "genres": [ + "Horror", + "Comedy" + ] + }, + { + "title": "Born to Sing", + "year": 1942, + "cast": [ + "Virginia Weidler", + "Douglas McPhail" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Boss of Big Town", + "year": 1942, + "cast": [ + "Florence Rice", + "John Litel", + "H. B. Warner" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Boston Blackie Goes Hollywood", + "year": 1942, + "cast": [ + "Chester Morris", + "Constance Worth" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Bowery at Midnight", + "year": 1942, + "cast": [ + "Bela Lugosi", + "John Archer" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Bowling Alley Cat", + "year": 1942, + "cast": [], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "Broadway", + "year": 1942, + "cast": [ + "George Raft", + "Pat O'Brien", + "Janet Blair" + ], + "genres": [ + "Crime", + "Musical" + ] + }, + { + "title": "Brooklyn Orchid", + "year": 1942, + "cast": [ + "William Bendix", + "Grace Bradley" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Bugle Sounds", + "year": 1942, + "cast": [ + "Wallace Beery", + "Marjorie Main", + "Donna Reed" + ], + "genres": [ + "War" + ] + }, + { + "title": "Bugs Bunny Gets the Boid", + "year": 1942, + "cast": [], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "Bullet Scars", + "year": 1942, + "cast": [ + "Regis Toomey", + "Howard Da Silva", + "Adele Longmire" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Busses Roar", + "year": 1942, + "cast": [ + "Richard Travis", + "Julie Bishop", + "Eleanor Parker" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Cairo", + "year": 1942, + "cast": [ + "Jeanette MacDonald", + "Robert Young" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Calling Dr. Gillespie", + "year": 1942, + "cast": [ + "Lionel Barrymore", + "Donna Reed" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Call Out the Marines", + "year": 1942, + "cast": [ + "Victor McLaglen", + "Edmund Lowe", + "Binnie Barnes" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Campus on the March", + "year": 1942, + "cast": [], + "genres": [] + }, + { + "title": "Captains of the Clouds", + "year": 1942, + "cast": [ + "James Cagney", + "Dennis Morgan" + ], + "genres": [ + "War" + ] + }, + { + "title": "Careful, Soft Shoulder", + "year": 1942, + "cast": [ + "Virginia Bruce", + "James Ellison" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Casablanca", + "year": 1942, + "cast": [ + "Humphrey Bogart", + "Ingrid Bergman", + "Claude Rains", + "Paul Henreid", + "Dooley Wilson", + "Peter Lorre" + ], + "genres": [ + "Drama", + "Romance" + ] + }, + { + "title": "Castle in the Desert", + "year": 1942, + "cast": [ + "Sidney Toler", + "Arleen Whelan" + ], + "genres": [] + }, + { + "title": "Cat People", + "year": 1942, + "cast": [ + "Simone Simon", + "Kent Smith", + "Jane Randolph" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "China Girl", + "year": 1942, + "cast": [ + "Gene Tierney", + "George Montgomery" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Commandos Strike at Dawn", + "year": 1942, + "cast": [ + "Paul Muni", + "Anna Lee", + "Lillian Gish" + ], + "genres": [ + "War" + ] + }, + { + "title": "The Corpse Vanishes", + "year": 1942, + "cast": [ + "Bela Lugosi", + "Luana Walters" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Counter-Espionage", + "year": 1942, + "cast": [ + "Warren William", + "Forrest Tucker" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Courtship of Andy Hardy", + "year": 1942, + "cast": [ + "Lewis Stone", + "Mickey Rooney", + "Cecilia Parker", + "Donna Reed" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Cowboy Serenade", + "year": 1942, + "cast": [ + "Gene Autry", + "Fay McKenzie" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Crossroads", + "year": 1942, + "cast": [ + "William Powell", + "Hedy Lamarr", + "Claire Trevor" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Danger in the Pacific", + "year": 1942, + "cast": [ + "Don Terry", + "Louise Allbritton" + ], + "genres": [ + "Spy" + ] + }, + { + "title": "A Date with the Falcon", + "year": 1942, + "cast": [ + "George Sanders", + "Wendy Barrie" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Dawn on the Great Divide", + "year": 1942, + "cast": [ + "Buck Jones", + "Mona Barrie" + ], + "genres": [ + "Western" + ] + }, + { + "title": "December 7th: The Movie", + "year": 1942, + "cast": [ + "Walter Huston", + "Dana Andrews" + ], + "genres": [] + }, + { + "title": "Desperate Journey", + "year": 1942, + "cast": [ + "Errol Flynn", + "Ronald Reagan" + ], + "genres": [ + "War" + ] + }, + { + "title": "Dog Trouble", + "year": 1942, + "cast": [], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "Don Winslow of the Navy", + "year": 1942, + "cast": [ + "Don Terry" + ], + "genres": [] + }, + { + "title": "Donald Gets Drafted", + "year": 1942, + "cast": [ + "Donald Duck" + ], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "Don't Get Personal", + "year": 1942, + "cast": [ + "Jane Frazee", + "Anne Gwynne" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Dover Boys", + "year": 1942, + "cast": [], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "The Draft Horse", + "year": 1942, + "cast": [], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "Dr. Broadway", + "year": 1942, + "cast": [ + "Macdonald Carey", + "Jean Phillips" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Dr. Gillespie's New Assistant", + "year": 1942, + "cast": [ + "Lionel Barrymore", + "Van Johnson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dr. Kildare's Victory", + "year": 1942, + "cast": [ + "Lew Ayres", + "Ann Ayars" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dr. Renault's Secret", + "year": 1942, + "cast": [ + "J. Carrol Naish", + "George Zucco" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Eagle Squadron", + "year": 1942, + "cast": [ + "Robert Stack", + "Diana Barrymore" + ], + "genres": [ + "War" + ] + }, + { + "title": "Enemy Agents Meet Ellery Queen", + "year": 1942, + "cast": [ + "William Gargan", + "Gale Sondergaard", + "Margaret Lindsay" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Escape from Crime", + "year": 1942, + "cast": [ + "Richard Travis", + "Jackie Gleason" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Escape from Hong Kong", + "year": 1942, + "cast": [ + "Marjorie Lord", + "Leo Carrillo" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Eyes in the Night", + "year": 1942, + "cast": [ + "Edward Arnold", + "Ann Harding" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Eyes of the Underworld", + "year": 1942, + "cast": [ + "Richard Dix", + "Don Porter" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Falcon's Brother", + "year": 1942, + "cast": [ + "George Sanders", + "Tom Conway" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Fine Feathered Friend", + "year": 1942, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "Fingers at the Window", + "year": 1942, + "cast": [ + "Lew Ayres", + "Laraine Day" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Fleet's In", + "year": 1942, + "cast": [ + "Dorothy Lamour", + "William Holden" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Flight Lieutenant", + "year": 1942, + "cast": [ + "Pat O'Brien", + "Glenn Ford" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Fly-by-Night", + "year": 1942, + "cast": [ + "Richard Carlson", + "Nancy Kelly" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Flying Tigers", + "year": 1942, + "cast": [ + "John Wayne" + ], + "genres": [ + "War" + ] + }, + { + "title": "Footlight Serenade", + "year": 1942, + "cast": [ + "Betty Grable", + "Victor Mature" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Foreign Agent", + "year": 1942, + "cast": [ + "John Shelton", + "Gale Storm", + "Ivan Lebedeff" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Forest Rangers", + "year": 1942, + "cast": [ + "Fred MacMurray", + "Susan Hayward", + "Paulette Goddard" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "For Me and My Gal", + "year": 1942, + "cast": [ + "Judy Garland", + "Gene Kelly" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Fraidy Cat", + "year": 1942, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "Freckles Comes Home", + "year": 1942, + "cast": [ + "Gale Storm", + "Johnny Downs" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Fresh Hare", + "year": 1942, + "cast": [], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "Friendly Enemies", + "year": 1942, + "cast": [ + "Charles Winninger", + "Charles Ruggles" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Gallant Lady", + "year": 1942, + "cast": [ + "Rose Hobart", + "Sidney Blackmer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Gang Busters", + "year": 1942, + "cast": [ + "Kent Taylor", + "Irene Hervey" + ], + "genres": [] + }, + { + "title": "The Gay Sisters", + "year": 1942, + "cast": [ + "Barbara Stanwyck", + "George Brent", + "Geraldine Fitzgerald" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Gentleman After Dark", + "year": 1942, + "cast": [ + "Miriam Hopkins", + "Brian Donlevy" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "A Gentleman at Heart", + "year": 1942, + "cast": [ + "Carole Landis", + "Milton Berle" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Gentleman Jim", + "year": 1942, + "cast": [ + "Errol Flynn" + ], + "genres": [] + }, + { + "title": "George Washington Slept Here", + "year": 1942, + "cast": [ + "Jack Benny", + "Ann Sheridan", + "Charles Coburn" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Get Hep to Love", + "year": 1942, + "cast": [ + "Donald O'Connor", + "Peggy Ryan" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "The Ghost of Frankenstein", + "year": 1942, + "cast": [ + "Lon Chaney Jr.", + "Cedric Hardwicke", + "Ralph Bellamy" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Girl from Alaska", + "year": 1942, + "cast": [ + "Jean Parker" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Girl Trouble", + "year": 1942, + "cast": [ + "Don Ameche", + "Joan Bennett" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Give Out, Sisters", + "year": 1942, + "cast": [ + "The Andrews Sisters", + "Dan Dailey", + "Donald O'Connor" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Glass Key", + "year": 1942, + "cast": [ + "Alan Ladd", + "Veronica Lake", + "Brian Donlevy", + "William Bendix" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Grand Central Murder", + "year": 1942, + "cast": [ + "Van Heflin", + "Cecilia Parker" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Great Gildersleeve", + "year": 1942, + "cast": [ + "Harold Peary", + "Jane Darwell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Great Man's Lady", + "year": 1942, + "cast": [ + "Barbara Stanwyck", + "Joel McCrea", + "Brian Donlevy" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Great Impersonation", + "year": 1942, + "cast": [ + "Ralph Bellamy", + "Evelyn Ankers" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Heart of the Rio Grande", + "year": 1942, + "cast": [ + "Gene Autry", + "Fay McKenzie" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Hemp for Victory", + "year": 1942, + "cast": [], + "genres": [] + }, + { + "title": "Henry Browne, Farmer", + "year": 1942, + "cast": [], + "genres": [ + "Short" + ] + }, + { + "title": "Henry and Dizzy", + "year": 1942, + "cast": [ + "Jimmy Lydon", + "Mary Anderson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Her Cardboard Lover", + "year": 1942, + "cast": [ + "Norma Shearer", + "Robert Taylor", + "George Sanders" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Here We Go Again", + "year": 1942, + "cast": [ + "Jim Jordan", + "Marian Jordan", + "Edgar Bergen" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Hidden Hand", + "year": 1942, + "cast": [ + "Craig Stevens", + "Elisabeth Fraser" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Highways by Night", + "year": 1942, + "cast": [ + "Richard Carlson", + "Jane Randolph" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hi, Neighbor", + "year": 1942, + "cast": [ + "Jean Parker", + "Janet Beecher" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hold the Lion, Please", + "year": 1942, + "cast": [], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "Holiday Inn", + "year": 1942, + "cast": [ + "Bing Crosby", + "Fred Astaire", + "Marjorie Reynolds", + "Virginia Dale" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Home in Wyomin'", + "year": 1942, + "cast": [ + "Gene Autry", + "Fay McKenzie" + ], + "genres": [ + "Western" + ] + }, + { + "title": "How to Play Baseball", + "year": 1942, + "cast": [], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "How to Swim", + "year": 1942, + "cast": [], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "I Live on Danger", + "year": 1942, + "cast": [ + "Chester Morris", + "Jean Parker" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "I Married a Witch", + "year": 1942, + "cast": [ + "Veronica Lake", + "Fredric March" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "I Married an Angel", + "year": 1942, + "cast": [ + "Jeanette MacDonald", + "Nelson Eddy" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "In Old California", + "year": 1942, + "cast": [ + "John Wayne", + "Binnie Barnes" + ], + "genres": [ + "Western" + ] + }, + { + "title": "In This Our Life", + "year": 1942, + "cast": [ + "Bette Davis", + "Olivia de Havilland" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Invisible Agent", + "year": 1942, + "cast": [ + "Ilona Massey", + "Jon Hall" + ], + "genres": [ + "War" + ] + }, + { + "title": "It's All True", + "year": 1942, + "cast": [], + "genres": [] + }, + { + "title": "It's Everybody's War", + "year": 1942, + "cast": [], + "genres": [ + "Short" + ] + }, + { + "title": "I Was Framed", + "year": 1942, + "cast": [ + "Julie Bishop", + "Tod Andrews" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Jackass Mail", + "year": 1942, + "cast": [ + "Wallace Beery", + "Marjorie Main" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Jam Session", + "year": 1942, + "cast": [ + "Duke Ellington", + "and orchestra" + ], + "genres": [ + "Short" + ] + }, + { + "title": "Japanese Relocation", + "year": 1942, + "cast": [], + "genres": [ + "Short", + "War" + ] + }, + { + "title": "Joan of Ozark", + "year": 1942, + "cast": [ + "Judy Canova", + "Joe E. Brown" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Joan of Paris", + "year": 1942, + "cast": [ + "Michèle Morgan", + "Paul Henreid" + ], + "genres": [ + "War" + ] + }, + { + "title": "Joe Smith, American", + "year": 1942, + "cast": [ + "Robert Young", + "Marsha Hunt" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Johnny Doughboy", + "year": 1942, + "cast": [ + "Jane Withers", + "Ruth Donnelly" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Johnny Eager", + "year": 1942, + "cast": [ + "Robert Taylor", + "Lana Turner" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Journey for Margaret", + "year": 1942, + "cast": [ + "Robert Young", + "Laraine Day", + "Fay Bainter" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Juke Girl", + "year": 1942, + "cast": [ + "Ann Sheridan", + "Ronald Reagan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Jungle Book", + "year": 1942, + "cast": [ + "Sabu" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Junior G-Men of the Air", + "year": 1942, + "cast": [ + "Dead End Kids", + "Little Tough Guys" + ], + "genres": [] + }, + { + "title": "Just Off Broadway", + "year": 1942, + "cast": [ + "Lloyd Nolan", + "Marjorie Weaver", + "Phil Silvers" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Kid Glove Killer", + "year": 1942, + "cast": [ + "Van Heflin", + "Marsha Hunt" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "King of the Mounties", + "year": 1942, + "cast": [ + "Allan Lane", + "Peggy Drake" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Kings Row", + "year": 1942, + "cast": [ + "Ann Sheridan", + "Ronald Reagan", + "Robert Cummings" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Lady for a Night", + "year": 1942, + "cast": [ + "John Wayne", + "Joan Blondell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Lady Gangster", + "year": 1942, + "cast": [ + "Faye Emerson", + "Julie Bishop" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Lady Has Plans", + "year": 1942, + "cast": [ + "Paulette Goddard", + "Ray Milland" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Lady in a Jam", + "year": 1942, + "cast": [ + "Irene Dunne", + "Ralph Bellamy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Lady Is Willing", + "year": 1942, + "cast": [ + "Marlene Dietrich", + "Fred MacMurray" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Larceny, Inc.", + "year": 1942, + "cast": [ + "Edward G. Robinson", + "Jane Wyman", + "Broderick Crawford" + ], + "genres": [ + "Crime", + "Comedy" + ] + }, + { + "title": "Law of the Jungle", + "year": 1942, + "cast": [ + "Arline Judge" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Let's Get Tough!", + "year": 1942, + "cast": [ + "East Side Kids" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Life Begins at Eight-Thirty", + "year": 1942, + "cast": [ + "Ida Lupino", + "Monty Woolley" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Living Ghost", + "year": 1942, + "cast": [ + "James Dunn", + "Joan Woodbury" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "The Loves of Edgar Allan Poe", + "year": 1942, + "cast": [ + "Linda Darnell", + "Shepperd Strudwick" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Lucky Ghost", + "year": 1942, + "cast": [ + "Mantan Moreland", + "F. E. Miller" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Mad Doctor of Market Street", + "year": 1942, + "cast": [ + "Lionel Atwill", + "Anne Nagel", + "Claire Dodd", + "Una Merkel" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Mad Martindales", + "year": 1942, + "cast": [ + "Jane Withers" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Mad Monster", + "year": 1942, + "cast": [ + "George Zucco", + "Anne Nagel" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Madame Spy", + "year": 1942, + "cast": [ + "Constance Bennett", + "Don Porter" + ], + "genres": [ + "Spy" + ] + }, + { + "title": "The Magnificent Ambersons", + "year": 1942, + "cast": [ + "Joseph Cotten", + "Anne Baxter", + "Dolores Costello", + "Agnes Moorehead", + "Tim Holt" + ], + "genres": [ + "Drama", + "Romance" + ] + }, + { + "title": "The Magnificent Dope", + "year": 1942, + "cast": [ + "Henry Fonda", + "Don Ameche" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Major and the Minor", + "year": 1942, + "cast": [ + "Ginger Rogers", + "Ray Milland" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Male Animal", + "year": 1942, + "cast": [ + "Henry Fonda", + "Olivia de Havilland" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "The Man in the Trunk", + "year": 1942, + "cast": [ + "Raymond Walburn" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Man Who Came to Dinner", + "year": 1942, + "cast": [ + "Monty Woolley", + "Bette Davis", + "Ann Sheridan", + "Billie Burke", + "Mary Wickes", + "Jimmy Durante" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Man Who Returned to Life", + "year": 1942, + "cast": [ + "Lucile Fairbanks", + "John Howard" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Man with Two Lives", + "year": 1942, + "cast": [ + "Edward Norris", + "Marlo Dwyer" + ], + "genres": [ + "Fantasy", + "Thriller" + ] + }, + { + "title": "Manila Calling", + "year": 1942, + "cast": [ + "Carole Landis", + "Cornel Wilde" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Manpower", + "year": 1942, + "cast": [], + "genres": [ + "Short" + ] + }, + { + "title": "The Mayor of 44th Street", + "year": 1942, + "cast": [ + "George Murphy", + "Anne Shirley" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The McGuerins from Brooklyn", + "year": 1942, + "cast": [ + "William Bendix", + "Grace Bradley" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Meet the Stewarts", + "year": 1942, + "cast": [ + "William Holden", + "Frances Dee" + ], + "genres": [] + }, + { + "title": "Men of Texas", + "year": 1942, + "cast": [ + "Robert Stack", + "Jackie Cooper", + "Broderick Crawford" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Mexican Spitfire at Sea", + "year": 1942, + "cast": [ + "Lupe Vélez", + "Leon Errol" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mexican Spitfire Sees a Ghost", + "year": 1942, + "cast": [ + "Lupe Vélez", + "Buddy Rogers" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mexican Spitfire's Elephant", + "year": 1942, + "cast": [ + "Lupe Vélez", + "Walter Reed" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Miss Annie Rooney", + "year": 1942, + "cast": [ + "Shirley Temple", + "Dickie Moore", + "Guy Kibbee" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Miss V from Moscow", + "year": 1942, + "cast": [ + "Lola Lane" + ], + "genres": [ + "Spy", + "Drama" + ] + }, + { + "title": "Moonlight in Havana", + "year": 1942, + "cast": [ + "Allan Jones", + "Jane Frazee", + "Marjorie Lord" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Moonlight Masquerade", + "year": 1942, + "cast": [ + "Dennis O'Keefe", + "Jane Frazee" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Moon and Sixpence", + "year": 1942, + "cast": [ + "George Sanders", + "Herbert Marshall", + "Elena Verdugo" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Moontide", + "year": 1942, + "cast": [ + "Jean Gabin", + "Ida Lupino", + "Claude Rains" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Mrs. Miniver", + "year": 1942, + "cast": [ + "Greer Garson", + "Walter Pidgeon", + "Teresa Wright" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "Mrs. Wiggs of the Cabbage Patch", + "year": 1942, + "cast": [ + "Fay Bainter", + "Hugh Herbert" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Mummy's Tomb", + "year": 1942, + "cast": [ + "Lon Chaney Jr.", + "Dick Foran" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Murder in the Big House", + "year": 1942, + "cast": [ + "Van Johnson", + "Faye Emerson" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "My Favorite Blonde", + "year": 1942, + "cast": [ + "Bob Hope", + "Madeleine Carroll" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "My Favorite Duck", + "year": 1942, + "cast": [ + "Porky Pig", + "and", + "Daffy Duck" + ], + "genres": [ + "Animated", + "Comedy" + ] + }, + { + "title": "My Gal Sal", + "year": 1942, + "cast": [ + "Rita Hayworth", + "Victor Mature", + "Carole Landis", + "Phil Silvers" + ], + "genres": [ + "Musical", + "Biography" + ] + }, + { + "title": "My Heart Belongs to Daddy", + "year": 1942, + "cast": [ + "Richard Carlson", + "Martha O'Driscoll", + "Cecil Kellaway" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "My Sister Eileen", + "year": 1942, + "cast": [ + "Rosalind Russell", + "Janet Blair" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Mystery of Marie Roget", + "year": 1942, + "cast": [ + "Maria Montez", + "Patric Knowles" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "The Navy Comes Through", + "year": 1942, + "cast": [ + "Pat O'Brien", + "George Murphy", + "Jane Wyatt" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Nazi Agent", + "year": 1942, + "cast": [ + "Conrad Veidt", + "Ann Ayars", + "Frank Reicher" + ], + "genres": [ + "Spy", + "Thriller" + ] + }, + { + "title": "'Neath Brooklyn Bridge", + "year": 1942, + "cast": [ + "East Side Kids", + "Ann Gillis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The News Parade of the Year 1942", + "year": 1942, + "cast": [], + "genres": [ + "Short", + "Documentary" + ] + }, + { + "title": "The Night Before the Divorce", + "year": 1942, + "cast": [ + "Lynn Bari", + "Mary Beth Hughes", + "Nils Asther" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Night in New Orleans", + "year": 1942, + "cast": [ + "Patricia Morison", + "Preston Foster" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Night Monster", + "year": 1942, + "cast": [ + "Bela Lugosi" + ], + "genres": [ + "Mystery", + "Horror" + ] + }, + { + "title": "Night Plane from Chungking", + "year": 1942, + "cast": [ + "Robert Preston" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "A Night to Remember", + "year": 1942, + "cast": [ + "Loretta Young", + "Brian Aherne" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Nightmare", + "year": 1942, + "cast": [ + "Diana Barrymore", + "Brian Donlevy" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "Northwest Rangers", + "year": 1942, + "cast": [ + "William Lundigan", + "Patricia Dane" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Now, Voyager", + "year": 1942, + "cast": [ + "Bette Davis", + "Paul Henreid", + "Claude Rains", + "Gladys Cooper" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Obliging Young Lady", + "year": 1942, + "cast": [ + "Joan Carroll", + "Ruth Warrick" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Old Homestead", + "year": 1942, + "cast": [ + "Anne Jeffreys", + "Maris Wrixon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Once Upon a Honeymoon", + "year": 1942, + "cast": [ + "Cary Grant", + "Ginger Rogers" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "One Thrilling Night", + "year": 1942, + "cast": [ + "Wanda McKay", + "John Beal" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "On the Sunny Side", + "year": 1942, + "cast": [ + "Roddy McDowall", + "Jane Darwell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Orchestra Wives", + "year": 1942, + "cast": [ + "Ann Rutherford", + "George Montgomery", + "Glenn Miller" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Outlaws of Pine Ridge", + "year": 1942, + "cast": [ + "Don \"Red\" Barry", + "Lynn Merrick" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Overland Mail", + "year": 1942, + "cast": [ + "Noah Beery Jr.", + "Don Terry" + ], + "genres": [] + }, + { + "title": "Over My Dead Body", + "year": 1942, + "cast": [ + "Milton Berle", + "Mary Beth Hughes" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Pacific Rendezvous", + "year": 1942, + "cast": [ + "Lee Bowman", + "Jean Rogers" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Palm Beach Story", + "year": 1942, + "cast": [ + "Claudette Colbert", + "Joel McCrea", + "Mary Astor", + "Rudy Vallée" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Panama Hattie", + "year": 1942, + "cast": [ + "Red Skelton", + "Ann Sothern" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Parachute Nurse", + "year": 1942, + "cast": [ + "Marguerite Chapman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Pardon My Sarong", + "year": 1942, + "cast": [ + "Abbott and Costello" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Pardon My Stripes", + "year": 1942, + "cast": [ + "Sheila Ryan", + "William Henry" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Paris Calling", + "year": 1942, + "cast": [ + "Basil Rathbone", + "Randolph Scott", + "Elisabeth Bergner" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Pay Off", + "year": 1942, + "cast": [ + "Lee Tracy", + "Tom Brown" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Perils of Nyoka", + "year": 1942, + "cast": [ + "Kay Aldridge" + ], + "genres": [ + "Action", + "Adventure" + ] + }, + { + "title": "Phantom Killer", + "year": 1942, + "cast": [ + "Dick Purcell", + "Joan Woodbury" + ], + "genres": [ + "Romance", + "Mystery" + ] + }, + { + "title": "The Pied Piper", + "year": 1942, + "cast": [ + "Monty Woolley", + "Roddy McDowall" + ], + "genres": [ + "War" + ] + }, + { + "title": "Pierre of the Plains", + "year": 1942, + "cast": [ + "Ruth Hussey", + "Bruce Cabot", + "Reginald Owen", + "Evelyn Ankers" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Pittsburgh", + "year": 1942, + "cast": [ + "John Wayne", + "Marlene Dietrich", + "Randolph Scott" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Postman Didn't Ring", + "year": 1942, + "cast": [ + "Brenda Joyce", + "Richard Travis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Powder Town", + "year": 1942, + "cast": [ + "Edmond O'Brien", + "Victor McLaglen", + "June Havoc" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Prelude to War", + "year": 1942, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Pride of the Yankees", + "year": 1942, + "cast": [ + "Gary Cooper", + "Teresa Wright", + "Walter Brennan", + "Babe Ruth" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Private Buckaroo", + "year": 1942, + "cast": [ + "The Andrews Sisters", + "Harry James", + "Joe E. Lewis" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Puss 'n' Toots", + "year": 1942, + "cast": [], + "genres": [ + "Short", + "Animated" + ] + }, + { + "title": "Quiet Please, Murder", + "year": 1942, + "cast": [ + "George Sanders", + "Gail Patrick" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Random Harvest", + "year": 1942, + "cast": [ + "Ronald Colman", + "Greer Garson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Reap the Wild Wind", + "year": 1942, + "cast": [ + "John Wayne", + "Paulette Goddard", + "Ray Milland" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Remarkable Andrew", + "year": 1942, + "cast": [ + "William Holden", + "Brian Donlevy", + "Ellen Drew" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Remember Pearl Harbor", + "year": 1942, + "cast": [ + "Don \"Red\" Barry", + "Fay McKenzie" + ], + "genres": [ + "War" + ] + }, + { + "title": "Reunion in France", + "year": 1942, + "cast": [ + "Joan Crawford", + "John Wayne", + "Philip Dorn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Ride 'Em Cowboy", + "year": 1942, + "cast": [ + "Abbott and Costello" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Right to the Heart", + "year": 1942, + "cast": [ + "Brenda Joyce", + "Stanley Clements" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Rings on Her Fingers", + "year": 1942, + "cast": [ + "Henry Fonda", + "Gene Tierney" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Rio Rita", + "year": 1942, + "cast": [ + "Abbott and Costello" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Road to Happiness", + "year": 1942, + "cast": [ + "John Boles", + "Mona Barrie" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Road to Morocco", + "year": 1942, + "cast": [ + "Bing Crosby", + "Bob Hope", + "Dorothy Lamour" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Roxie Hart", + "year": 1942, + "cast": [ + "Ginger Rogers" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Rubber Racketeers", + "year": 1942, + "cast": [ + "Rochelle Hudson", + "Ricardo Cortez" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Saboteur", + "year": 1942, + "cast": [ + "Robert Cummings", + "Priscilla Lane", + "Norman Lloyd" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Safeguarding Military Information", + "year": 1942, + "cast": [], + "genres": [ + "Short" + ] + }, + { + "title": "Scattergood Survives a Murder", + "year": 1942, + "cast": [ + "Guy Kibbee", + "Margaret Hayes" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Sealed Lips", + "year": 1942, + "cast": [ + "William Gargan", + "June Clyde" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Secret Agent of Japan", + "year": 1942, + "cast": [ + "Preston Foster", + "Lynn Bari" + ], + "genres": [ + "War" + ] + }, + { + "title": "Secret Enemies", + "year": 1942, + "cast": [ + "Craig Stevens", + "Faye Emerson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Seven Days' Leave", + "year": 1942, + "cast": [ + "Lucille Ball", + "Victor Mature" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Seven Miles from Alcatraz", + "year": 1942, + "cast": [ + "James Craig", + "Bonita Granville" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Seven Sweethearts", + "year": 1942, + "cast": [ + "Kathryn Grayson", + "Marsha Hunt" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Sex Hygiene", + "year": 1942, + "cast": [ + "George Reeves", + "Richard Derr" + ], + "genres": [ + "Documentary", + "Drama" + ] + }, + { + "title": "Sherlock Holmes and the Voice of Terror", + "year": 1942, + "cast": [ + "Basil Rathbone", + "Nigel Bruce" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Ship Ahoy", + "year": 1942, + "cast": [ + "Eleanor Powell", + "Red Skelton" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Silver Queen", + "year": 1942, + "cast": [ + "George Brent", + "Priscilla Lane" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Sin Town", + "year": 1942, + "cast": [ + "Constance Bennett", + "Broderick Crawford", + "Ward Bond" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Sing Your Worries Away", + "year": 1942, + "cast": [ + "Buddy Ebsen", + "Patsy Kelly", + "Bert Lahr" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Somewhere I'll Find You", + "year": 1942, + "cast": [ + "Clark Gable", + "Lana Turner" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Son of Fury: The Story of Benjamin Blake", + "year": 1942, + "cast": [ + "Tyrone Power", + "Gene Tierney" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Song of the Islands", + "year": 1942, + "cast": [ + "Betty Grable", + "Victor Mature", + "Jack Oakie" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Sons of the Pioneers", + "year": 1942, + "cast": [ + "Roy Rogers", + "George \"Gabby\" Hayes" + ], + "genres": [ + "Western" + ] + }, + { + "title": "So's Your Aunt Emma", + "year": 1942, + "cast": [ + "ZaSu Pitts", + "Roger Pryor" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "South of Santa Fe", + "year": 1942, + "cast": [ + "Roy Rogers", + "Linda Hayes" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Spoilers", + "year": 1942, + "cast": [ + "John Wayne", + "Marlene Dietrich", + "Randolph Scott" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Springtime in the Rockies", + "year": 1942, + "cast": [ + "Betty Grable", + "John Payne", + "Cesar Romero" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Spy Ship", + "year": 1942, + "cast": [ + "Craig Stevens", + "Irene Manning" + ], + "genres": [ + "Spy", + "Drama" + ] + }, + { + "title": "Spy Smasher", + "year": 1942, + "cast": [ + "Kane Richmond", + "Marguerite Chapman" + ], + "genres": [ + "Spy" + ] + }, + { + "title": "The Squawkin' Hawk", + "year": 1942, + "cast": [], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "Stand By for Action", + "year": 1942, + "cast": [ + "Robert Taylor", + "Walter Brennan", + "Charles Laughton" + ], + "genres": [ + "War" + ] + }, + { + "title": "Star Spangled Rhythm", + "year": 1942, + "cast": [ + "Betty Hutton", + "Eddie Bracken", + "Victor Moore" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Strange Case of Doctor Rx", + "year": 1942, + "cast": [ + "Lionel Atwill", + "Anne Gwynne" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Street of Chance", + "year": 1942, + "cast": [ + "Burgess Meredith", + "Claire Trevor" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Strictly in the Groove", + "year": 1942, + "cast": [ + "Mary Healy", + "Leon Errol" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Submarine Raider", + "year": 1942, + "cast": [ + "John Howard", + "Marguerite Chapman" + ], + "genres": [ + "War" + ] + }, + { + "title": "Sundown Jim", + "year": 1942, + "cast": [ + "John Kimbrough", + "Arleen Whelan", + "Virginia Gilmore" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Sweater Girl", + "year": 1942, + "cast": [ + "Eddie Bracken", + "June Preisser" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Take a Letter, Darling", + "year": 1942, + "cast": [ + "Rosalind Russell", + "Fred MacMurray" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Tale of Two Kitties", + "year": 1942, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "Tales of Manhattan", + "year": 1942, + "cast": [ + "Charles Boyer", + "Rita Hayworth", + "Ginger Rogers", + "Henry Fonda", + "Charles Laughton", + "Edward G. Robinson", + "Paul Robeson" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "The Talk of the Town", + "year": 1942, + "cast": [ + "Cary Grant", + "Jean Arthur", + "Ronald Colman" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Tarzan's New York Adventure", + "year": 1942, + "cast": [ + "Johnny Weissmuller", + "Maureen O'Sullivan" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Ten Gentlemen from West Point", + "year": 1942, + "cast": [ + "George Montgomery", + "Maureen O'Hara" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Tennessee Johnson", + "year": 1942, + "cast": [ + "Van Heflin", + "Lionel Barrymore" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "That Other Woman", + "year": 1942, + "cast": [ + "Virginia Gilmore", + "Janis Carter", + "James Ellison" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "There's One Born Every Minute", + "year": 1942, + "cast": [ + "Hugh Herbert", + "Peggy Moran" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "They All Kissed the Bride", + "year": 1942, + "cast": [ + "Joan Crawford", + "Melvyn Douglas" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "They Raid by Night", + "year": 1942, + "cast": [ + "Lyle Talbot", + "June Duprez" + ], + "genres": [ + "War" + ] + }, + { + "title": "This Above All", + "year": 1942, + "cast": [ + "Tyrone Power", + "Joan Fontaine" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "This Gun for Hire", + "year": 1942, + "cast": [ + "Alan Ladd", + "Veronica Lake" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "This Time for Keeps", + "year": 1942, + "cast": [ + "Ann Rutherford", + "Robert Sterling" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Thru Different Eyes", + "year": 1942, + "cast": [ + "Frank Craven", + "June Walker" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Thunder Birds", + "year": 1942, + "cast": [ + "Gene Tierney", + "Preston Foster" + ], + "genres": [ + "War" + ] + }, + { + "title": "Timber", + "year": 1942, + "cast": [ + "Marjorie Lord", + "Dan Dailey" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Time to Kill", + "year": 1942, + "cast": [ + "Lloyd Nolan", + "Heather Angel" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Tish", + "year": 1942, + "cast": [ + "ZaSu Pitts", + "Marjorie Main" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "To Be or Not to Be", + "year": 1942, + "cast": [ + "Carole Lombard", + "Jack Benny" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Today I Hang", + "year": 1942, + "cast": [ + "Walter Woolf King", + "Mona Barrie" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "To the Shores of Tripoli", + "year": 1942, + "cast": [ + "Maureen O'Hara", + "John Payne" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "Tombstone, the Town Too Tough to Die", + "year": 1942, + "cast": [ + "Richard Dix", + "Frances Gifford" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Too Many Women", + "year": 1942, + "cast": [ + "June Lang", + "Joyce Compton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Top Sergeant", + "year": 1942, + "cast": [ + "Don Terry", + "Elyse Knox" + ], + "genres": [ + "War" + ] + }, + { + "title": "Torpedo Boat", + "year": 1942, + "cast": [ + "Richard Arlen", + "Jean Parker" + ], + "genres": [ + "War" + ] + }, + { + "title": "Tortilla Flat", + "year": 1942, + "cast": [ + "Spencer Tracy", + "Hedy Lamarr", + "John Garfield" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "A Tragedy at Midnight", + "year": 1942, + "cast": [ + "John Howard", + "Margaret Lindsay", + "Mona Barrie" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Trail Riders", + "year": 1942, + "cast": [ + "John Dusty King", + "Max Terhune" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Treat 'Em Rough", + "year": 1942, + "cast": [ + "Eddie Albert", + "Peggy Moran" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "True to the Army", + "year": 1942, + "cast": [ + "Judy Canova", + "Ann Miller" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Tulips Shall Grow", + "year": 1942, + "cast": [], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "The Tuttles of Tahiti", + "year": 1942, + "cast": [ + "Charles Laughton", + "Jon Hall", + "Peggy Drake" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Twin Beds", + "year": 1942, + "cast": [ + "Joan Bennett", + "George Brent" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Two Yanks in Trinidad", + "year": 1942, + "cast": [ + "Pat O'Brien", + "Brian Donlevy" + ], + "genres": [ + "Spy", + "Comedy" + ] + }, + { + "title": "The Undying Monster", + "year": 1942, + "cast": [ + "James Ellison" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Unseen Enemy", + "year": 1942, + "cast": [ + "Don Terry", + "Irene Hervey" + ], + "genres": [ + "War" + ] + }, + { + "title": "Valley of Hunted Men", + "year": 1942, + "cast": [ + "Bob Steele", + "Tom Tyler" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Vanishing Virginian", + "year": 1942, + "cast": [ + "Kathryn Grayson", + "Frank Morgan" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Wabbit Who Came to Supper", + "year": 1942, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "Wake Island", + "year": 1942, + "cast": [ + "Brian Donlevy", + "Robert Preston" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "The War Against Mrs. Hadley", + "year": 1942, + "cast": [ + "Fay Bainter", + "Edward Arnold" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "We Are the Marines", + "year": 1942, + "cast": [], + "genres": [ + "War", + "Documentary" + ] + }, + { + "title": "We Were Dancing", + "year": 1942, + "cast": [ + "Norma Shearer", + "Melvyn Douglas" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Western Mail", + "year": 1942, + "cast": [ + "Tom Keene" + ], + "genres": [ + "Western" + ] + }, + { + "title": "West of Tombstone", + "year": 1942, + "cast": [ + "Charles Starrett", + "Marcella Martin" + ], + "genres": [ + "Western" + ] + }, + { + "title": "What's Cookin'?", + "year": 1942, + "cast": [ + "The Andrews Sisters", + "Jane Frazee", + "Gloria Jean" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Whispering Ghosts", + "year": 1942, + "cast": [ + "Milton Berle", + "Brenda Joyce" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "White Cargo", + "year": 1942, + "cast": [ + "Hedy Lamarr", + "Walter Pidgeon", + "Richard Carlson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Who Done It?", + "year": 1942, + "cast": [ + "Abbott and Costello" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Who Is Hope Schuyler?", + "year": 1942, + "cast": [ + "Sheila Ryan", + "Joan Valerie" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Wife Takes a Flyer", + "year": 1942, + "cast": [ + "Joan Bennett", + "Franchot Tone" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Wild Bill Hickok Rides", + "year": 1942, + "cast": [ + "Constance Bennett", + "Bruce Cabot" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Wings for the Eagle", + "year": 1942, + "cast": [ + "Ann Sheridan", + "Dennis Morgan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Winning Your Wings", + "year": 1942, + "cast": [], + "genres": [ + "Short" + ] + }, + { + "title": "Wild Bill Hickok Rides", + "year": 1942, + "cast": [ + "Constance Bennett", + "Bruce Cabot" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Woman of the Year", + "year": 1942, + "cast": [ + "Spencer Tracy", + "Katharine Hepburn" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Wood for War", + "year": 1942, + "cast": [], + "genres": [ + "Short" + ] + }, + { + "title": "The World at War", + "year": 1942, + "cast": [], + "genres": [ + "Short" + ] + }, + { + "title": "Wrecking Crew", + "year": 1942, + "cast": [ + "Jean Parker", + "Richard Arlen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "X Marks the Spot", + "year": 1942, + "cast": [ + "Dick Purcell", + "Anne Jeffreys" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Yankee Doodle Dandy", + "year": 1942, + "cast": [ + "James Cagney", + "Joan Leslie", + "Walter Huston" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "A Yank at Eton", + "year": 1942, + "cast": [ + "Mickey Rooney", + "Edmund Gwenn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Yank in Libya", + "year": 1942, + "cast": [ + "Joan Woodbury", + "H. B. Warner" + ], + "genres": [ + "Spy" + ] + }, + { + "title": "A Yank on the Burma Road", + "year": 1942, + "cast": [ + "Laraine Day", + "Barry Nelson" + ], + "genres": [ + "War", + "Adventure" + ] + }, + { + "title": "The Yanks Are Coming", + "year": 1942, + "cast": [ + "Mary Healy", + "Henry King" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Yokel Boy", + "year": 1942, + "cast": [ + "Joan Davis", + "Albert Dekker" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "You Can't Escape Forever", + "year": 1942, + "cast": [ + "George Brent", + "Brenda Marshall" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "You Were Never Lovelier", + "year": 1942, + "cast": [ + "Fred Astaire", + "Rita Hayworth" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Young America", + "year": 1942, + "cast": [ + "Jane Withers", + "Jane Darwell", + "Lynne Roberts" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "You're a Sap, Mr. Jap", + "year": 1942, + "cast": [ + "Popeye", + "cartoon" + ], + "genres": [ + "Short", + "Animated", + "Short" + ] + }, + { + "title": "Youth on Parade", + "year": 1942, + "cast": [ + "John Hubbard", + "Ruth Terry", + "Martha O'Driscoll" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Above Suspicion", + "year": 1943, + "cast": [ + "Joan Crawford", + "Fred MacMurray", + "Conrad Veidt" + ], + "genres": [ + "Spy" + ] + }, + { + "title": "Action in the North Atlantic", + "year": 1943, + "cast": [ + "Humphrey Bogart", + "Raymond Massey", + "Alan Hale Sr." + ], + "genres": [ + "War" + ] + }, + { + "title": "Adventure in Iraq", + "year": 1943, + "cast": [ + "Ruth Ford", + "John Loder" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Adventures of a Rookie", + "year": 1943, + "cast": [ + "Wally Brown", + "Alan Carney" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Adventures of Smilin' Jack", + "year": 1943, + "cast": [ + "Tom Brown", + "Rose Hobart", + "Marjorie Lord", + "Keye Luke", + "Sidney Toler" + ], + "genres": [] + }, + { + "title": "Adventures of the Flying Cadets", + "year": 1943, + "cast": [ + "Johnny Downs", + "Eduardo Ciannelli" + ], + "genres": [] + }, + { + "title": "Aerial Gunner", + "year": 1943, + "cast": [ + "Chester Morris", + "Richard Arlen" + ], + "genres": [ + "War" + ] + }, + { + "title": "After Midnight with Boston Blackie", + "year": 1943, + "cast": [ + "Chester Morris", + "Ann Savage" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Air Force", + "year": 1943, + "cast": [ + "John Garfield", + "John Ridgely", + "Gig Young" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Air Raid Wardens", + "year": 1943, + "cast": [ + "Laurel and Hardy", + "Edgar Kennedy", + "Jacqueline White" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Alaska Highway", + "year": 1943, + "cast": [ + "Jean Parker", + "Richard Arlen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "All by Myself", + "year": 1943, + "cast": [ + "Rosemary Lane", + "Evelyn Ankers", + "Patric Knowles" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Always a Bridesmaid", + "year": 1943, + "cast": [ + "The Andrews Sisters", + "Patric Knowles", + "Grace McDonald" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "The Amazing Mrs. Holliday", + "year": 1943, + "cast": [ + "Deanna Durbin", + "Edmond O'Brien", + "Barry Fitzgerald" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Ape Man", + "year": 1943, + "cast": [ + "Bela Lugosi", + "Louise Currie", + "Wallace Ford", + "Henry Hall" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Appointment in Berlin", + "year": 1943, + "cast": [ + "George Sanders", + "Marguerite Chapman" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "Arizona Trail", + "year": 1943, + "cast": [ + "Tex Ritter", + "Fuzzy Knight" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Around the World", + "year": 1943, + "cast": [ + "Kay Kyser", + "Mischa Auer", + "Joan Davis" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Assignment in Brittany", + "year": 1943, + "cast": [ + "Jean-Pierre Aumont", + "Susan Peters", + "Signe Hasso" + ], + "genres": [ + "War" + ] + }, + { + "title": "Autobiography of a 'Jeep'", + "year": 1943, + "cast": [], + "genres": [] + }, + { + "title": "The Avenging Rider", + "year": 1943, + "cast": [ + "Tim Holt", + "Cliff Edwards" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Baby Puss (Tom and Jerry)", + "year": 1943, + "cast": [], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "Back from the Front", + "year": 1943, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Comedy", + "Short" + ] + }, + { + "title": "Background to Danger", + "year": 1943, + "cast": [ + "George Raft", + "Brenda Marshall", + "Sydney Greenstreet", + "Peter Lorre" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Bad Men of Thunder Gap", + "year": 1943, + "cast": [ + "Dave O'Brien", + "Guy Wilkerson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Bar 20", + "year": 1943, + "cast": [ + "William Boyd", + "Andy Clyde", + "George Reeves", + "Robert Mitchum" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Bataan", + "year": 1943, + "cast": [ + "Robert Taylor", + "George Murphy", + "Lloyd Nolan" + ], + "genres": [ + "War" + ] + }, + { + "title": "Batman", + "year": 1943, + "cast": [ + "Lewis Wilson", + "Douglas Croft", + "J. Carrol Naish", + "Shirley Patterson" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Battle of Britain", + "year": 1943, + "cast": [ + "Narrated by", + "Walter Huston" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Battle of Russia", + "year": 1943, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "Behind the Rising Sun", + "year": 1943, + "cast": [ + "Margo Albert", + "Tom Neal" + ], + "genres": [ + "War" + ] + }, + { + "title": "Best Foot Forward", + "year": 1943, + "cast": [ + "Lucille Ball", + "June Allyson", + "Gloria DeHaven", + "Nancy Walker" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Beyond the Last Frontier", + "year": 1943, + "cast": [ + "Eddie Dew", + "Smiley Burnette", + "Robert Mitchum" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Black Hills Express", + "year": 1943, + "cast": [ + "Don \"Red\" Barry", + "Wally Vernon" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Black Market Rustlers", + "year": 1943, + "cast": [ + "Ray Corrigan", + "Max Terhune", + "Evelyn Finley" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Black Marketing", + "year": 1943, + "cast": [], + "genres": [] + }, + { + "title": "The Black Raven", + "year": 1943, + "cast": [ + "Wanda McKay", + "George Zucco" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "Blazing Frontier", + "year": 1943, + "cast": [ + "Buster Crabbe", + "Al St. John" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Blazing Guns", + "year": 1943, + "cast": [ + "Ken Maynard", + "Hoot Gibson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Blocked Trail", + "year": 1943, + "cast": [ + "Bob Steele", + "Tom Tyler" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Bombardier", + "year": 1943, + "cast": [ + "Pat O'Brien", + "Randolph Scott", + "Anne Shirley", + "Eddie Albert" + ], + "genres": [ + "War" + ] + }, + { + "title": "Bomber's Moon", + "year": 1943, + "cast": [ + "George Montgomery", + "Annabella" + ], + "genres": [ + "War" + ] + }, + { + "title": "Border Buckaroos", + "year": 1943, + "cast": [ + "Dave O'Brien", + "Christine McIntyre" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Border Patrol", + "year": 1943, + "cast": [ + "William Boyd", + "Andy Clyde", + "George Reeves", + "Robert Mitchum" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Bordertown Gun Fighters", + "year": 1943, + "cast": [ + "Wild Bill Elliott", + "Anne Jeffreys" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Boss of Rawhide", + "year": 1943, + "cast": [ + "Dave O'Brien", + "Nell O'Day" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Boy from Stalingrad", + "year": 1943, + "cast": [ + "Scotty Beckett", + "John Wengraf" + ], + "genres": [ + "War" + ] + }, + { + "title": "Brazil at War", + "year": 1943, + "cast": [], + "genres": [] + }, + { + "title": "Buckskin Frontier", + "year": 1943, + "cast": [ + "Richard Dix", + "Jane Wyatt", + "Lee J. Cobb" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Bullets and Saddles", + "year": 1943, + "cast": [ + "Ray \"Crash\" Corrigan", + "Julie Duncan" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Cabin in the Sky", + "year": 1943, + "cast": [ + "Ethel Waters", + "Eddie \"Rochester\" Anderson", + "Lena Horne", + "Louis Armstrong" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Calaboose", + "year": 1943, + "cast": [ + "Mary Brian", + "Jean Porter" + ], + "genres": [ + "Western" + ] + }, + { + "title": "California Joe", + "year": 1943, + "cast": [ + "Don \"Red\" Barry", + "Helen Talbot" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Calling Dr. Death", + "year": 1943, + "cast": [ + "Lon Chaney Jr.", + "Patricia Morison" + ], + "genres": [] + }, + { + "title": "Calling Wild Bill Elliott", + "year": 1943, + "cast": [ + "Wild Bill Elliott", + "Anne Jeffreys" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Campus Rhythm", + "year": 1943, + "cast": [ + "Johnny Downs", + "Gale Storm" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Canyon City", + "year": 1943, + "cast": [ + "Don \"Red\" Barry", + "Helen Talbot" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Captive Wild Woman", + "year": 1943, + "cast": [ + "John Carradine", + "Milburn Stone", + "Paula Dupree" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Carson City Cyclone", + "year": 1943, + "cast": [ + "Don \"Red\" Barry", + "Lynn Merrick" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Cattle Stampede", + "year": 1943, + "cast": [ + "Buster Crabbe", + "Al St. John" + ], + "genres": [ + "Western" + ] + }, + { + "title": "A Challenge to Democracy", + "year": 1943, + "cast": [], + "genres": [] + }, + { + "title": "The Chance of a Lifetime", + "year": 1943, + "cast": [ + "Chester Morris", + "Erik Rolf", + "Jeanne Bates" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Chatterbox", + "year": 1943, + "cast": [ + "Joe E. Brown", + "Judy Canova" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Chetniks! The Fighting Guerrillas", + "year": 1943, + "cast": [ + "Anna Sten", + "Philip Dorn" + ], + "genres": [ + "War" + ] + }, + { + "title": "Cheyenne Roundup", + "year": 1943, + "cast": [ + "Johnny Mack Brown", + "Jennifer Holt" + ], + "genres": [ + "Western" + ] + }, + { + "title": "China", + "year": 1943, + "cast": [ + "Loretta Young", + "Alan Ladd", + "William Bendix" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Cinderella Swings It", + "year": 1943, + "cast": [ + "Gloria Warren", + "Guy Kibbee", + "Helen Parrish" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "City Without Men", + "year": 1943, + "cast": [ + "Linda Darnell", + "Glenda Farrell" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Clancy Street Boys", + "year": 1943, + "cast": [ + "East Side Kids", + "Amelita Ward", + "Noah Beery" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Claudia", + "year": 1943, + "cast": [ + "Dorothy McGuire", + "Robert Young", + "Ina Claire" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Colt Comrades", + "year": 1943, + "cast": [ + "William Boyd", + "Andy Clyde" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Combat America", + "year": 1943, + "cast": [ + "Clark Gable" + ], + "genres": [] + }, + { + "title": "Coney Island", + "year": 1943, + "cast": [ + "Betty Grable", + "George Montgomery", + "Cesar Romero", + "Phil Silvers" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Constant Nymph", + "year": 1943, + "cast": [ + "Charles Boyer", + "Joan Fontaine", + "Peter Lorre" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Corregidor", + "year": 1943, + "cast": [ + "Otto Kruger", + "Elissa Landi", + "Donald Woods" + ], + "genres": [ + "War" + ] + }, + { + "title": "Corvette K-225", + "year": 1943, + "cast": [ + "Randolph Scott", + "Ella Raines" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Cosmo Jones, Crime Smasher", + "year": 1943, + "cast": [ + "Richard Cromwell", + "Gale Storm" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Cowboy Commandos", + "year": 1943, + "cast": [ + "Ray Corrigan", + "Max Terhune", + "Evelyn Finley" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Cowboy in Manhattan", + "year": 1943, + "cast": [ + "Frances Langford", + "Robert Paige", + "Leon Errol" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Cowboy in the Clouds", + "year": 1943, + "cast": [ + "Charles Starrett", + "Dub Taylor" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Crash Dive", + "year": 1943, + "cast": [ + "Tyrone Power", + "Dana Andrews", + "Anne Baxter" + ], + "genres": [ + "War" + ] + }, + { + "title": "Crazy House", + "year": 1943, + "cast": [ + "Olsen and Johnson", + "Cass Daley" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Crime Doctor", + "year": 1943, + "cast": [ + "Warner Baxter", + "Ray Collins" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Crime Doctor's Strangest Case", + "year": 1943, + "cast": [ + "Warner Baxter", + "Gloria Dickson" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Cross of Lorraine", + "year": 1943, + "cast": [ + "Jean-Pierre Aumont", + "Gene Kelly", + "Cedric Hardwicke" + ], + "genres": [ + "War" + ] + }, + { + "title": "Cry \"Havoc\"", + "year": 1943, + "cast": [ + "Margaret Sullavan", + "Ann Sothern", + "Joan Blondell", + "Fay Bainter" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Crystal Ball", + "year": 1943, + "cast": [ + "Paulette Goddard", + "Ray Milland" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Daffy – The Commando", + "year": 1943, + "cast": [ + "Daffy Duck" + ], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "The Dancing Masters", + "year": 1943, + "cast": [ + "Laurel and Hardy", + "Trudy Marshall" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Danger! Women at Work", + "year": 1943, + "cast": [ + "Patsy Kelly", + "Mary Brian", + "Isabel Jewell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Dangerous Blondes", + "year": 1943, + "cast": [ + "Evelyn Keyes", + "Anita Louise" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Daredevils of the West", + "year": 1943, + "cast": [ + "Allan Lane", + "Kay Aldridge" + ], + "genres": [] + }, + { + "title": "Days of Old Cheyenne", + "year": 1943, + "cast": [ + "Don \"Red\" Barry", + "Lynn Merrick" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Dead Man's Gulch", + "year": 1943, + "cast": [ + "Don \"Red\" Barry", + "Lynn Merrick" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Dead Men Walk", + "year": 1943, + "cast": [ + "George Zucco", + "Mary Carlisle" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Death Rides the Plains", + "year": 1943, + "cast": [ + "Robert Livingston", + "Al St. John" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Death Valley Manhunt", + "year": 1943, + "cast": [ + "Wild Bill Elliott", + "Anne Jeffreys" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Death Valley Rangers", + "year": 1943, + "cast": [ + "Ken Maynard", + "Hoot Gibson", + "Bob Steele" + ], + "genres": [ + "Western" + ] + }, + { + "title": "December 7th", + "year": 1943, + "cast": [], + "genres": [] + }, + { + "title": "Deerslayer", + "year": 1943, + "cast": [ + "Jean Parker", + "Larry Parks", + "Yvonne DeCarlo" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Desert Song", + "year": 1943, + "cast": [ + "Dennis Morgan", + "Irene Manning" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Desperadoes", + "year": 1943, + "cast": [ + "Randolph Scott", + "Claire Trevor", + "Glenn Ford" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Destination Tokyo", + "year": 1943, + "cast": [ + "Cary Grant", + "John Garfield" + ], + "genres": [ + "War" + ] + }, + { + "title": "Destroyer", + "year": 1943, + "cast": [ + "Glenn Ford", + "Edward G. Robinson" + ], + "genres": [ + "War" + ] + }, + { + "title": "Devil Riders", + "year": 1943, + "cast": [ + "Buster Crabbe", + "Patti McCarty" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Dixie", + "year": 1943, + "cast": [ + "Bing Crosby", + "Dorothy Lamour" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Dixie Dugan", + "year": 1943, + "cast": [ + "Lois Andrews", + "James Ellison", + "Charlotte Greenwood" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Dizzy Detectives", + "year": 1943, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Comedy", + "Short" + ] + }, + { + "title": "Dizzy Pilots", + "year": 1943, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Comedy", + "Short" + ] + }, + { + "title": "Don Winslow of the Coast Guard", + "year": 1943, + "cast": [ + "Don Terry", + "June Duprez" + ], + "genres": [] + }, + { + "title": "Doughboys in Ireland", + "year": 1943, + "cast": [ + "Kenny Baker", + "Jeff Donnell", + "Lynn Merrick" + ], + "genres": [ + "War", + "Musical" + ] + }, + { + "title": "Dr. Gillespie's Criminal Case", + "year": 1943, + "cast": [ + "Lionel Barrymore", + "Van Johnson", + "Margaret O'Brien" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "DuBarry Was a Lady", + "year": 1943, + "cast": [ + "Red Skelton", + "Lucille Ball", + "Gene Kelly" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Edge of Darkness", + "year": 1943, + "cast": [ + "Errol Flynn", + "Ann Sheridan", + "Walter Huston" + ], + "genres": [ + "War" + ] + }, + { + "title": "Education for Death", + "year": 1943, + "cast": [], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "The Falcon and the Co-eds", + "year": 1943, + "cast": [ + "Tom Conway", + "Amelita Ward" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Falcon in Danger", + "year": 1943, + "cast": [ + "Tom Conway", + "Jean Brooks" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Falcon Strikes Back", + "year": 1943, + "cast": [ + "Tom Conway", + "Harriet Hilliard" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Fallen Sparrow", + "year": 1943, + "cast": [ + "Maureen O'Hara", + "John Garfield", + "Walter Slezak", + "Patricia Morison" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Falling Hare", + "year": 1943, + "cast": [ + "Bugs Bunny" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "False Colors", + "year": 1943, + "cast": [ + "William Boyd", + "Andy Clyde" + ], + "genres": [ + "Western" + ] + }, + { + "title": "False Faces", + "year": 1943, + "cast": [ + "Stanley Ridges", + "Veda Ann Borg" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Family Troubles", + "year": 1943, + "cast": [ + "Our Gang" + ], + "genres": [ + "Short" + ] + }, + { + "title": "The Fighting Buckaroo", + "year": 1943, + "cast": [ + "Charles Starrett", + "Arthur Hunnicutt" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Fighting Frontier", + "year": 1943, + "cast": [ + "Tim Holt", + "Cliff Edwards" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Fighting Valley", + "year": 1943, + "cast": [ + "Dave O'Brien", + "Guy Wilkerson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Find the Blackmailer", + "year": 1943, + "cast": [ + "Faye Emerson", + "Gene Lockhart" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Fired Wife", + "year": 1943, + "cast": [ + "Diana Barrymore", + "Louise Allbritton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "First Comes Courage", + "year": 1943, + "cast": [ + "Merle Oberon", + "Brian Aherne" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Five Graves to Cairo", + "year": 1943, + "cast": [ + "Franchot Tone", + "Anne Baxter" + ], + "genres": [ + "War" + ] + }, + { + "title": "Flesh and Fantasy", + "year": 1943, + "cast": [ + "Edward G. Robinson", + "Charles Boyer", + "Barbara Stanwyck", + "Betty Field" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Flight for Freedom", + "year": 1943, + "cast": [ + "Rosalind Russell", + "Fred MacMurray", + "Herbert Marshall" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Follies Girl", + "year": 1943, + "cast": [ + "Doris Nolan", + "Wendy Barrie" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Follow the Band", + "year": 1943, + "cast": [ + "Mary Beth Hughes", + "Eddie Quillan" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Food for Fighters", + "year": 1943, + "cast": [], + "genres": [] + }, + { + "title": "Footlight Glamour", + "year": 1943, + "cast": [ + "Penny Singleton", + "Arthur Lake", + "Ann Savage" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "For Whom the Bell Tolls", + "year": 1943, + "cast": [ + "Gary Cooper", + "Ingrid Bergman", + "Arturo de Córdova" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "Forever and a Day", + "year": 1943, + "cast": [ + "Brian Aherne", + "Robert Cummings", + "Charles Laughton", + "Ida Lupino" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Frankenstein Meets the Wolf Man", + "year": 1943, + "cast": [ + "Lon Chaney Jr.", + "Bela Lugosi" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Frontier Badmen", + "year": 1943, + "cast": [ + "Diana Barrymore", + "Noah Beery Jr." + ], + "genres": [ + "Western" + ] + }, + { + "title": "Frontier Fury", + "year": 1943, + "cast": [ + "Charles Starrett", + "Arthur Hunnicutt" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Frontier Law", + "year": 1943, + "cast": [ + "Russell Hayden", + "Jennifer Holt" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Der Fuehrer's Face", + "year": 1943, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "Fugitive from Sonora", + "year": 1943, + "cast": [ + "Don \"Red\" Barry", + "Lynn Merrick" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Fugitive of the Plains", + "year": 1943, + "cast": [ + "Buster Crabbe", + "Kermit Maynard" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Gals, Incorporated", + "year": 1943, + "cast": [ + "Leon Errol", + "Harriet Nelson", + "Grace McDonald" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "The Gang's All Here", + "year": 1943, + "cast": [ + "Alice Faye", + "Carmen Miranda" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Gangway for Tomorrow", + "year": 1943, + "cast": [ + "John Carradine", + "Robert Ryan", + "Margo Albert" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Gem of a Jam", + "year": 1943, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Comedy", + "Short" + ] + }, + { + "title": "A Gentle Gangster", + "year": 1943, + "cast": [ + "Molly Lamont", + "Barton MacLane" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Get Going", + "year": 1943, + "cast": [ + "Robert Paige", + "Grace McDonald", + "Barbara Jo Allen" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Ghost and the Guest", + "year": 1943, + "cast": [ + "Florence Rice", + "James Dunn" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Ghost Rider", + "year": 1943, + "cast": [ + "Johnny Mack Brown", + "Raymond Hatton" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Ghost Ship", + "year": 1943, + "cast": [ + "Richard Dix", + "Edith Barrett" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Ghosts on the Loose", + "year": 1943, + "cast": [ + "East Side Kids", + "Bela Lugosi", + "Ava Gardner" + ], + "genres": [ + "Horror", + "Comedy" + ] + }, + { + "title": "Gildersleeve's Bad Day", + "year": 1943, + "cast": [ + "Harold Peary", + "Nancy Gates" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Gildersleeve on Broadway", + "year": 1943, + "cast": [ + "Harold Peary", + "Billie Burke" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Girl Crazy", + "year": 1943, + "cast": [ + "Mickey Rooney", + "Judy Garland" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Girl from Monterrey", + "year": 1943, + "cast": [ + "Armida Vendrell", + "Veda Ann Borg" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Girls in Chains", + "year": 1943, + "cast": [ + "Arline Judge", + "Roger Clark" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "G-Men vs. the Black Dragon", + "year": 1943, + "cast": [ + "Constance Worth", + "Rod Cameron" + ], + "genres": [] + }, + { + "title": "The Good Fellows", + "year": 1943, + "cast": [ + "Cecil Kellaway", + "Mabel Paige" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Good Luck, Mr. Yates", + "year": 1943, + "cast": [ + "Claire Trevor", + "Jess Barker" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "Good Morning, Judge", + "year": 1943, + "cast": [ + "Dennis O'Keefe", + "Mary Beth Hughes" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Gorilla Man", + "year": 1943, + "cast": [ + "Ruth Ford", + "John Loder" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Guadalcanal Diary", + "year": 1943, + "cast": [ + "William Bendix", + "Richard Conte", + "Anthony Quinn" + ], + "genres": [ + "War" + ] + }, + { + "title": "Gung Ho!", + "year": 1943, + "cast": [ + "Randolph Scott", + "Robert Mitchum" + ], + "genres": [ + "War" + ] + }, + { + "title": "A Guy Named Joe", + "year": 1943, + "cast": [ + "Spencer Tracy", + "Irene Dunne", + "Van Johnson" + ], + "genres": [ + "Romance", + "Fantasy" + ] + }, + { + "title": "Hail to the Rangers", + "year": 1943, + "cast": [ + "Charles Starrett", + "Arthur Hunnicutt" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Hangmen Also Die!", + "year": 1943, + "cast": [ + "Hans Heinrich von Twardowski", + "Brian Donlevy", + "Walter Brennan" + ], + "genres": [ + "War" + ] + }, + { + "title": "Happy Go Lucky", + "year": 1943, + "cast": [ + "Mary Martin", + "Betty Hutton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Happy Land", + "year": 1943, + "cast": [ + "Don Ameche", + "Frances Dee" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Hard Way", + "year": 1943, + "cast": [ + "Ida Lupino", + "Joan Leslie" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Harrigan's Kid", + "year": 1943, + "cast": [ + "Frank Craven", + "William Gargan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Harvest Melody", + "year": 1943, + "cast": [ + "Rosemary Lane", + "Johnny Downs", + "Charlotte Wynters" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Haunted Ranch", + "year": 1943, + "cast": [ + "John 'Dusty' King", + "Dave Sharpe" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Headin' for God's Country", + "year": 1943, + "cast": [ + "William Lundigan", + "Virginia Dale" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Heat's On", + "year": 1943, + "cast": [ + "Mae West", + "Victor Moore" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Heaven Can Wait", + "year": 1943, + "cast": [ + "Don Ameche", + "Gene Tierney" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "He Hired the Boss", + "year": 1943, + "cast": [ + "Stuart Erwin", + "Evelyn Venable", + "Vivian Blaine" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "He's My Guy", + "year": 1943, + "cast": [ + "Dick Foran", + "Irene Hervey", + "Joan Davis" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Hello, Frisco, Hello", + "year": 1943, + "cast": [ + "Alice Faye", + "John Payne", + "Jack Oakie" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Henry Aldrich Gets Glamour", + "year": 1943, + "cast": [ + "Jimmy Lydon", + "Olive Blakeney" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Henry Aldrich Haunts a House", + "year": 1943, + "cast": [ + "Jimmy Lydon", + "Olive Blakeney" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Henry Aldrich Swings It", + "year": 1943, + "cast": [ + "Jimmy Lydon", + "John Litel", + "Olive Blakeney" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Here Comes Elmer", + "year": 1943, + "cast": [ + "Al Pearce", + "Dale Evans", + "Gloria Stuart" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Here Comes Kelly", + "year": 1943, + "cast": [ + "Eddie Quillan", + "Joan Woodbury", + "Armida" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hers to Hold", + "year": 1943, + "cast": [ + "Deanna Durbin", + "Joseph Cotten" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Hi, Buddy", + "year": 1943, + "cast": [ + "Dick Foran", + "Harriet Nelson", + "Marjorie Lord" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Hi Diddle Diddle", + "year": 1943, + "cast": [ + "Adolphe Menjou", + "Martha Scott", + "Dennis O'Keefe" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Higher Than a Kite", + "year": 1943, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Comedy", + "Short" + ] + }, + { + "title": "High Explosive", + "year": 1943, + "cast": [ + "Jean Parker", + "Chester Morris" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "His Butler's Sister", + "year": 1943, + "cast": [ + "Deanna Durbin", + "Franchot Tone" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hit Parade of 1943", + "year": 1943, + "cast": [ + "Susan Hayward", + "Gail Patrick", + "Eve Arden" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Hit the Ice", + "year": 1943, + "cast": [ + "Abbott and Costello", + "Ginny Simms", + "Patric Knowles" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hitler's Children", + "year": 1943, + "cast": [ + "Tim Holt", + "Bonita Granville", + "Kent Smith" + ], + "genres": [] + }, + { + "title": "Hitler's Madman", + "year": 1943, + "cast": [ + "Patricia Morison", + "Alan Curtis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hi'ya, Chum", + "year": 1943, + "cast": [ + "Ritz Brothers", + "Jane Frazee" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hi'ya, Sailor", + "year": 1943, + "cast": [ + "Donald Woods", + "Elyse Knox" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Holy Matrimony", + "year": 1943, + "cast": [ + "Monty Woolley", + "Gracie Fields" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Honeymoon Lodge", + "year": 1943, + "cast": [ + "David Bruce", + "Harriet Hilliard", + "June Vincent" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Hoosier Holiday", + "year": 1943, + "cast": [ + "Dale Evans", + "Isabel Randolph" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Hoppy Serves a Writ", + "year": 1943, + "cast": [ + "William Boyd", + "George Reeves", + "Robert Mitchum" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Hostages", + "year": 1943, + "cast": [ + "Luise Rainer", + "William Bendix" + ], + "genres": [ + "War" + ] + }, + { + "title": "How's About It", + "year": 1943, + "cast": [ + "The Andrews Sisters", + "Grace McDonald" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Human Comedy", + "year": 1943, + "cast": [ + "Mickey Rooney" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "I Can Hardly Wait", + "year": 1943, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Comedy", + "Short" + ] + }, + { + "title": "I Dood It", + "year": 1943, + "cast": [ + "Red Skelton", + "Eleanor Powell" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "I Escaped from the Gestapo", + "year": 1943, + "cast": [ + "Dean Jagger", + "John Carradine", + "Mary Brian" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "I Walked with a Zombie", + "year": 1943, + "cast": [ + "Frances Dee", + "Tom Conway" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Idaho", + "year": 1943, + "cast": [ + "Roy Rogers", + "Virginia Grey" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Immortal Sergeant", + "year": 1943, + "cast": [ + "Henry Fonda", + "Maureen O'Hara" + ], + "genres": [ + "War" + ] + }, + { + "title": "In Old Oklahoma", + "year": 1943, + "cast": [ + "John Wayne", + "Martha Scott", + "Dale Evans" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Iron Major", + "year": 1943, + "cast": [ + "Pat O'Brien", + "Ruth Warrick" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Is Everybody Happy?", + "year": 1943, + "cast": [ + "Ted Lewis", + "Larry Parks" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Isle of Forgotten Sins", + "year": 1943, + "cast": [ + "Gale Sondergaard", + "John Carradine" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "It Ain't Hay", + "year": 1943, + "cast": [ + "Abbott and Costello", + "Grace McDonald" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "It Comes Up Love", + "year": 1943, + "cast": [ + "Gloria Jean", + "Donald O'Connor", + "Ian Hunter" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "An Itch in Time", + "year": 1943, + "cast": [ + "Elmer Fudd" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "It's a Great Life", + "year": 1943, + "cast": [ + "Penny Singleton", + "Arthur Lake" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Jack London", + "year": 1943, + "cast": [ + "Michael O'Shea", + "Susan Hayward" + ], + "genres": [] + }, + { + "title": "Jane Eyre", + "year": 1943, + "cast": [ + "Orson Welles", + "Joan Fontaine" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Jitterbugs", + "year": 1943, + "cast": [ + "Laurel and Hardy", + "Vivian Blaine" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Jive Junction", + "year": 1943, + "cast": [ + "Dickie Moore", + "Tina Thayer" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Johnny Come Lately", + "year": 1943, + "cast": [ + "James Cagney", + "Marjorie Lord" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Journey into Fear", + "year": 1943, + "cast": [ + "Joseph Cotten", + "Dolores del Río", + "Orson Welles" + ], + "genres": [ + "Spy", + "Thriller" + ] + }, + { + "title": "The Kansan", + "year": 1943, + "cast": [ + "Richard Dix", + "Jane Wyatt", + "Albert Dekker" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Keep 'Em Slugging", + "year": 1943, + "cast": [ + "Dead End Kids", + "Elyse Knox" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Keeper of the Flame", + "year": 1943, + "cast": [ + "Katharine Hepburn", + "Spencer Tracy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Kid Dynamite", + "year": 1943, + "cast": [ + "Leo Gorcey", + "Huntz Hall", + "Pamela Blake" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Kid Rides Again", + "year": 1943, + "cast": [ + "Buster Crabbe", + "Iris Meredith" + ], + "genres": [ + "Western" + ] + }, + { + "title": "King of the Cowboys", + "year": 1943, + "cast": [ + "Roy Rogers", + "Peggy Moran" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Klondike Kate", + "year": 1943, + "cast": [ + "Ann Savage", + "Tom Neal", + "Glenda Farrell" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Ladies' Day", + "year": 1943, + "cast": [ + "Lupe Vélez", + "Eddie Albert" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Lady Bodyguard", + "year": 1943, + "cast": [ + "Eddie Albert", + "Anne Shirley" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Lady of Burlesque", + "year": 1943, + "cast": [ + "Barbara Stanwyck", + "Michael O'Shea" + ], + "genres": [ + "Comedy", + "Mystery" + ] + }, + { + "title": "A Lady Takes a Chance", + "year": 1943, + "cast": [ + "Jean Arthur", + "John Wayne", + "Phil Silvers" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Land of Hunted Men", + "year": 1943, + "cast": [ + "Ray Corrigan", + "Max Terhune" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Larceny with Music", + "year": 1943, + "cast": [ + "Kitty Carlisle", + "Allan Jones", + "Lee Patrick" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Lassie Come Home", + "year": 1943, + "cast": [ + "Roddy McDowall", + "Donald Crisp", + "May Whitty" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Law of the Northwest", + "year": 1943, + "cast": [ + "Charles Starrett", + "Shirley Patterson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Law of the Saddle", + "year": 1943, + "cast": [ + "Robert Livingston", + "Al St. John" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Law Rides Again", + "year": 1943, + "cast": [ + "Ken Maynard", + "Hoot Gibson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Leather Burners", + "year": 1943, + "cast": [ + "William Boyd", + "Andy Clyde" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Leopard Man", + "year": 1943, + "cast": [ + "Dennis O'Keefe", + "Margo", + "Jean Brooks" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Let's Face It", + "year": 1943, + "cast": [ + "Betty Hutton", + "Bob Hope" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Let's Have Fun", + "year": 1943, + "cast": [ + "Bert Gordon", + "Margaret Lindsay" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "London Blackout Murders", + "year": 1943, + "cast": [ + "John Abbott", + "Anita Bolster" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Lone Star Trail", + "year": 1943, + "cast": [ + "Johnny Mack Brown", + "Tex Ritter" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Lonesome Mouse", + "year": 1943, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "Lost Angel", + "year": 1943, + "cast": [ + "Margaret O'Brien", + "Marsha Hunt" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Mad Ghoul", + "year": 1943, + "cast": [ + "George Zucco", + "Evelyn Ankers", + "Robert Armstrong" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Madame Curie", + "year": 1943, + "cast": [ + "Greer Garson", + "Walter Pidgeon", + "Henry Travers" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "The Man from Down Under", + "year": 1943, + "cast": [ + "Charles Laughton", + "Donna Reed" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Man from Music Mountain", + "year": 1943, + "cast": [ + "Roy Rogers", + "Ann Gillis" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Man from the Rio Grande", + "year": 1943, + "cast": [ + "Don \"Red\" Barry", + "Wally Vernon" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Man from Thunder River", + "year": 1943, + "cast": [ + "Wild Bill Elliott", + "Anne Jeffreys" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Man of Courage", + "year": 1943, + "cast": [ + "Barton MacLane", + "Charlotte Wynters", + "Lyle Talbot" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Mantrap", + "year": 1943, + "cast": [ + "Henry Stephenson", + "Lloyd Corrigan", + "Dorothy Lovett" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Margin for Error", + "year": 1943, + "cast": [ + "Joan Bennett", + "Milton Berle", + "Otto Preminger" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Masked Marvel", + "year": 1943, + "cast": [ + "William Forrest", + "Louise Currie" + ], + "genres": [] + }, + { + "title": "The Meanest Man in the World", + "year": 1943, + "cast": [ + "Jack Benny", + "Priscilla Lane" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Melody Parade", + "year": 1943, + "cast": [ + "Mary Beth Hughes", + "Eddie Quillan" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Meshes of the Afternoon", + "year": 1943, + "cast": [], + "genres": [ + "Short" + ] + }, + { + "title": "Mexican Spitfire's Blessed Event", + "year": 1943, + "cast": [ + "Lupe Vélez", + "Leon Errol" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Minesweeper", + "year": 1943, + "cast": [ + "Richard Arlen", + "Jean Parker" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "Mission Accomplished", + "year": 1943, + "cast": [], + "genres": [] + }, + { + "title": "Mission to Moscow", + "year": 1943, + "cast": [ + "Walter Huston", + "Ann Harding", + "Oskar Homolka" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "Mister Big", + "year": 1943, + "cast": [ + "Donald O'Connor", + "Gloria Jean", + "Peggy Ryan" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Moon Is Down", + "year": 1943, + "cast": [ + "Cedric Hardwicke", + "Lee J. Cobb" + ], + "genres": [ + "War" + ] + }, + { + "title": "Moonlight in Vermont", + "year": 1943, + "cast": [ + "Gloria Jean", + "Fay Helm" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The More the Merrier", + "year": 1943, + "cast": [ + "Jean Arthur", + "Joel McCrea", + "Charles Coburn" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mountain Rhythm", + "year": 1943, + "cast": [ + "Sally Payne", + "Weaver Brothers" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mr. Lucky", + "year": 1943, + "cast": [ + "Cary Grant", + "Laraine Day" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Mr. Muggs Steps Out", + "year": 1943, + "cast": [ + "Leo Gorcey", + "Huntz Hall", + "Joan Marsh" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Murder in Times Square", + "year": 1943, + "cast": [ + "Edmund Lowe", + "Marguerite Chapman" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Murder on the Waterfront", + "year": 1943, + "cast": [ + "Warren Douglas", + "Ruth Ford" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "My Friend Flicka", + "year": 1943, + "cast": [ + "Roddy McDowall", + "Preston Foster", + "Rita Johnson" + ], + "genres": [ + "Family" + ] + }, + { + "title": "My Kingdom for a Cook", + "year": 1943, + "cast": [ + "Richard Wallace" + ], + "genres": [] + }, + { + "title": "My Son, the Hero", + "year": 1943, + "cast": [ + "Patsy Kelly", + "Roscoe Karns" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mystery of the 13th Guest", + "year": 1943, + "cast": [ + "Helen Parrish", + "Dick Purcell" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Mysterious Doctor", + "year": 1943, + "cast": [ + "Eleanor Parker", + "John Loder" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Mystery Broadcast", + "year": 1943, + "cast": [ + "Ruth Terry", + "Frank Albertson" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "That Nazty Nuisance", + "year": 1943, + "cast": [ + "Bobby Watson", + "Jean Porter" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Nearly Eighteen", + "year": 1943, + "cast": [ + "Gale Storm", + "Rick Vallin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Negro Colleges in War Time", + "year": 1943, + "cast": [], + "genres": [ + "Short" + ] + }, + { + "title": "Never a Dull Moment", + "year": 1943, + "cast": [ + "Ritz Brothers", + "Frances Langford", + "Mary Beth Hughes" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The New Spirit", + "year": 1943, + "cast": [], + "genres": [] + }, + { + "title": "A Night for Crime", + "year": 1943, + "cast": [ + "Glenda Farrell", + "Lyle Talbot", + "Lina Basquette" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Night Plane from Chungking", + "year": 1943, + "cast": [ + "Robert Preston", + "Ellen Drew" + ], + "genres": [ + "War" + ] + }, + { + "title": "Nobody's Darling", + "year": 1943, + "cast": [ + "Mary Lee", + "Louis Calhern" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "No Place for a Lady", + "year": 1943, + "cast": [ + "William Gargan", + "Phyllis Brooks" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "No Time for Love", + "year": 1943, + "cast": [ + "Claudette Colbert", + "Fred MacMurray" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The North Star", + "year": 1943, + "cast": [ + "Anne Baxter", + "Dana Andrews", + "Walter Huston", + "Walter Brennan" + ], + "genres": [ + "War" + ] + }, + { + "title": "Northern Pursuit", + "year": 1943, + "cast": [ + "Errol Flynn", + "Julie Bishop" + ], + "genres": [ + "War" + ] + }, + { + "title": "Old Acquaintance", + "year": 1943, + "cast": [ + "Bette Davis", + "Miriam Hopkins" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "O, My Darling Clementine", + "year": 1943, + "cast": [ + "Roy Acuff", + "Isabel Randolph" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "One Dangerous Night", + "year": 1943, + "cast": [ + "Warren William", + "Marguerite Chapman" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Our Enemy- The Japanese", + "year": 1943, + "cast": [], + "genres": [] + }, + { + "title": "The Outlaw", + "year": 1943, + "cast": [ + "Jane Russell", + "Jack Buetel", + "Walter Huston" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Outlaws of Stampede Pass", + "year": 1943, + "cast": [ + "Johnny Mack Brown", + "Raymond Hatton" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Overland Mail Robbery", + "year": 1943, + "cast": [ + "Wild Bill Elliott", + "Anne Jeffreys" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Ox-Bow Incident", + "year": 1943, + "cast": [ + "Henry Fonda", + "Dana Andrews", + "Mary Beth Hughes", + "Anthony Quinn" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Paris After Dark", + "year": 1943, + "cast": [ + "George Sanders", + "Brenda Marshall" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "Passport to Suez", + "year": 1943, + "cast": [ + "Warren William", + "Ann Savage" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Petticoat Larceny", + "year": 1943, + "cast": [ + "Ruth Warrick", + "Joan Carroll" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Phantom of the Opera", + "year": 1943, + "cast": [ + "Nelson Eddy", + "Susanna Foster", + "Claude Rains" + ], + "genres": [ + "Horror", + "Musical" + ] + }, + { + "title": "The Phantom", + "year": 1943, + "cast": [ + "Tom Tyler", + "Jeanne Bates" + ], + "genres": [] + }, + { + "title": "Phony Express", + "year": 1943, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Comedy", + "Short" + ] + }, + { + "title": "Pigs in a Polka", + "year": 1943, + "cast": [], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "Pilot No. 5", + "year": 1943, + "cast": [ + "Gene Kelly", + "Franchot Tone", + "Van Johnson", + "Marsha Hunt" + ], + "genres": [ + "War" + ] + }, + { + "title": "Pistol Packin' Mama", + "year": 1943, + "cast": [ + "Ruth Terry", + "Robert Livingston" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Porky Pig's Feat", + "year": 1943, + "cast": [], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "Power of the Press", + "year": 1943, + "cast": [ + "Guy Kibbee", + "Gloria Dickson", + "Lee Tracy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Powers Girl", + "year": 1943, + "cast": [ + "Carole Landis", + "Anne Shirley", + "George Murphy", + "Benny Goodman", + "Peggy Lee" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Prairie Chickens", + "year": 1943, + "cast": [ + "Raymond Hatton", + "Rosemary LaPlanche" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Prelude to War", + "year": 1943, + "cast": [], + "genres": [] + }, + { + "title": "Presenting Lily Mars", + "year": 1943, + "cast": [ + "Judy Garland", + "Van Heflin" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Princess O'Rourke", + "year": 1943, + "cast": [ + "Olivia de Havilland", + "Robert Cummings", + "Charles Coburn" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "The Purple V", + "year": 1943, + "cast": [ + "John Archer", + "Peter Lawford" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Raiders of Red Gap", + "year": 1943, + "cast": [ + "Robert Livingston", + "Myrna Dell" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Raiders of San Joaquin", + "year": 1943, + "cast": [ + "Johnny Mack Brown", + "Jennifer Holt" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Raiders of Sunset Pass", + "year": 1943, + "cast": [ + "Eddie Dew", + "Jennifer Holt" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Redhead from Manhattan", + "year": 1943, + "cast": [ + "Lupe Vélez" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Red Hot Riding Hood", + "year": 1943, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "The Renegade", + "year": 1943, + "cast": [ + "Buster Crabbe", + "Al St. John" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Report from the Aleutians", + "year": 1943, + "cast": [], + "genres": [] + }, + { + "title": "The Return of the Rangers", + "year": 1943, + "cast": [ + "Dave O'Brien", + "Guy Wilkerson", + "Nell O'Day" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Return of the Vampire", + "year": 1943, + "cast": [ + "Bela Lugosi", + "Nina Foch" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Reveille with Beverly", + "year": 1943, + "cast": [ + "Ann Miller", + "Franklin Pangborn", + "Larry Parks" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Revenge of the Zombies", + "year": 1943, + "cast": [ + "Gale Storm", + "John Carradine" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Rhythm of the Islands", + "year": 1943, + "cast": [ + "Jane Frazee", + "Allan Jones" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Riders of the Deadline", + "year": 1943, + "cast": [ + "William Boyd", + "Robert Mitchum" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Riders of the Northwest Mounted", + "year": 1943, + "cast": [ + "Russell Hayden", + "Dub Taylor" + ], + "genres": [] + }, + { + "title": "Riders of the Rio Grande", + "year": 1943, + "cast": [ + "Bob Steele", + "Tom Tyler" + ], + "genres": [] + }, + { + "title": "Riding High", + "year": 1943, + "cast": [ + "Dorothy Lamour", + "Dick Powell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Robin Hood of the Range", + "year": 1943, + "cast": [ + "Charles Starrett", + "Arthur Hunnicutt" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Rookies in Burma", + "year": 1943, + "cast": [ + "Wally Brown", + "Alan Carney" + ], + "genres": [ + "War", + "Comedy" + ] + }, + { + "title": "Saddles and Sagebrush", + "year": 1943, + "cast": [ + "Russell Hayden", + "Ann Savage" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Sagebrush Law", + "year": 1943, + "cast": [ + "Tim Holt", + "Joan Barclay" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Sahara", + "year": 1943, + "cast": [ + "Humphrey Bogart", + "Dan Duryea" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "The Saint Meets the Tiger", + "year": 1943, + "cast": [ + "Hugh Sinclair", + "Jean Gillie" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Salute to the Marines", + "year": 1943, + "cast": [ + "Wallace Beery", + "Fay Bainter" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "Salute for Three", + "year": 1943, + "cast": [ + "Betty Jane Rhodes", + "Macdonald Carey" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Santa Fe Scouts", + "year": 1943, + "cast": [ + "Bob Steele", + "Tom Tyler", + "Lois Collier" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Sarong Girl", + "year": 1943, + "cast": [ + "Ann Corio", + "Tim Ryan", + "Irene Ryan" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Scrap Happy Daffy", + "year": 1943, + "cast": [ + "Daffy Duck" + ], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "A Scream in the Dark", + "year": 1943, + "cast": [ + "Robert Lowery", + "Marie McDonald" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "Secret Service in Darkest Africa", + "year": 1943, + "cast": [ + "Rod Cameron", + "Joan Marsh" + ], + "genres": [] + }, + { + "title": "The Seventh Victim", + "year": 1943, + "cast": [ + "Tom Conway", + "Jean Brooks", + "Isabel Jewell", + "Kim Hunter", + "Hugh Beaumont" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Shadow of a Doubt", + "year": 1943, + "cast": [ + "Teresa Wright", + "Joseph Cotten", + "Macdonald Carey", + "Hume Cronyn" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Shantytown", + "year": 1943, + "cast": [ + "Mary Lee", + "Marjorie Lord" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "She Has What It Takes", + "year": 1943, + "cast": [ + "Jinx Falkenburg", + "Tom Neal", + "Constance Worth" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "She's for Me", + "year": 1943, + "cast": [ + "Grace McDonald", + "David Bruce" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Sherlock Holmes Faces Death", + "year": 1943, + "cast": [ + "Basil Rathbone", + "Nigel Bruce", + "Hillary Brooke" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Sherlock Holmes and the Secret Weapon", + "year": 1943, + "cast": [ + "Basil Rathbone", + "Nigel Bruce" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Sherlock Holmes in Washington", + "year": 1943, + "cast": [ + "Basil Rathbone", + "Nigel Bruce" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Show Business at War", + "year": 1943, + "cast": [], + "genres": [ + "Short" + ] + }, + { + "title": "Silent Witness", + "year": 1943, + "cast": [ + "Frank Albertson", + "Maris Wrixon" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Silver City Raiders", + "year": 1943, + "cast": [ + "Russell Hayden", + "Dub Taylor" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Silver Skates", + "year": 1943, + "cast": [ + "Kenny Baker", + "Belita", + "Patricia Morison" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Silver Spurs", + "year": 1943, + "cast": [ + "Roy Rogers", + "Phyllis Brooks" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Six Gun Gospel", + "year": 1943, + "cast": [ + "Johnny Mack Brown", + "Raymond Hatton" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Sky's the Limit", + "year": 1943, + "cast": [ + "Fred Astaire", + "Joan Leslie", + "Robert Benchley", + "Robert Ryan" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Sleepy Lagoon", + "year": 1943, + "cast": [ + "Judy Canova", + "Dennis Day" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Slightly Dangerous", + "year": 1943, + "cast": [ + "Lana Turner", + "Robert Young" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Smart Guy", + "year": 1943, + "cast": [ + "Rick Vallin", + "Veda Ann Borg" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "So Proudly We Hail!", + "year": 1943, + "cast": [ + "Claudette Colbert", + "Paulette Goddard", + "George Reeves", + "Veronica Lake" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Someone to Remember", + "year": 1943, + "cast": [ + "Mabel Paige", + "Harry Shannon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Something to Shout About", + "year": 1943, + "cast": [ + "Don Ameche", + "Janet Blair" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Son of Dracula", + "year": 1943, + "cast": [ + "Lon Chaney Jr.", + "Evelyn Ankers" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Song of Bernadette", + "year": 1943, + "cast": [ + "Jennifer Jones" + ], + "genres": [] + }, + { + "title": "Song of Texas", + "year": 1943, + "cast": [ + "Roy Rogers", + "Sheila Ryan" + ], + "genres": [ + "Western" + ] + }, + { + "title": "So This Is Washington", + "year": 1943, + "cast": [ + "Lum and Abner", + "Mildred Coles" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "So's Your Uncle", + "year": 1943, + "cast": [ + "Billie Burke", + "Donald Woods" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Spook Louder", + "year": 1943, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Comedy", + "Short" + ] + }, + { + "title": "Spotlight Scandals", + "year": 1943, + "cast": [ + "Billy Gilbert", + "Iris Adrian" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Spy Train", + "year": 1943, + "cast": [ + "Richard Travis", + "Catherine Craig" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Stage Door Canteen", + "year": 1943, + "cast": [ + "Cheryl Walker", + "Lon McCallister" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Star Spangled Rhythm", + "year": 1943, + "cast": [ + "Victor Moore", + "Betty Hutton" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Stormy Weather", + "year": 1943, + "cast": [ + "Lena Horne", + "Bill Robinson", + "Dooley Wilson" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Strange Death of Adolf Hitler", + "year": 1943, + "cast": [ + "Ludwig Donath", + "Gale Sondergaard" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "The Stranger from Pecos", + "year": 1943, + "cast": [ + "Johnny Mack Brown", + "Raymond Hatton", + "Christine McIntyre" + ], + "genres": [ + "Western" + ] + }, + { + "title": "A Stranger in Town", + "year": 1943, + "cast": [ + "Frank Morgan", + "Jean Rogers" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "Submarine Alert", + "year": 1943, + "cast": [ + "Richard Arlen", + "Wendy Barrie" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Submarine Base", + "year": 1943, + "cast": [ + "Alan Baxter", + "John Litel" + ], + "genres": [ + "War" + ] + }, + { + "title": "Sufferin' Cats!", + "year": 1943, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "Suggestion Box", + "year": 1943, + "cast": [], + "genres": [ + "Short" + ] + }, + { + "title": "The Sultan's Daughter", + "year": 1943, + "cast": [ + "Ann Corio", + "Charles Butterworth" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Super-Rabbit", + "year": 1943, + "cast": [ + "Bugs Bunny" + ], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "Sweet Rosie O'Grady", + "year": 1943, + "cast": [ + "Betty Grable", + "Robert Young" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Swing Fever", + "year": 1943, + "cast": [ + "Kay Kyser", + "Marilyn Maxwell", + "Lena Horne" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Swing Out the Blues", + "year": 1943, + "cast": [ + "Bob Haymes", + "Lynn Merrick", + "Janis Carter" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Swing Shift Maisie", + "year": 1943, + "cast": [ + "Ann Sothern", + "James Craig" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Swing Your Partner", + "year": 1943, + "cast": [ + "Myrtle Wiseman", + "Dale Evans" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Tahiti Honey", + "year": 1943, + "cast": [ + "Simone Simon", + "Dennis O'Keefe" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Tarzan's Desert Mystery", + "year": 1943, + "cast": [ + "Johnny Weissmuller", + "Nancy Kelly" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Tarzan Triumphs", + "year": 1943, + "cast": [ + "Johnny Weissmuller", + "Frances Gifford" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Taxi, Mister", + "year": 1943, + "cast": [ + "William Bendix", + "Grace Bradley" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Tender Comrade", + "year": 1943, + "cast": [ + "Ginger Rogers", + "Robert Ryan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Tenting Tonight on the Old Camp Ground", + "year": 1943, + "cast": [ + "Johnny Mack Brown", + "Jennifer Holt" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Texas Kid", + "year": 1943, + "cast": [ + "Johnny Mack Brown", + "Raymond Hatton" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Thank Your Lucky Stars", + "year": 1943, + "cast": [ + "Dennis Morgan", + "Joan Leslie" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "There's Something About a Soldier", + "year": 1943, + "cast": [ + "Tom Neal", + "Evelyn Keyes" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "They Came to Blow Up America", + "year": 1943, + "cast": [ + "George Sanders", + "Anna Sten", + "Ward Bond" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "They Got Me Covered", + "year": 1943, + "cast": [ + "Bob Hope", + "Dorothy Lamour" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "They Stooge to Conga", + "year": 1943, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Comedy", + "Short" + ] + }, + { + "title": "This Is the Army", + "year": 1943, + "cast": [ + "George Murphy", + "Ronald Reagan", + "Joan Leslie", + "Kate Smith" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "This Land Is Mine", + "year": 1943, + "cast": [ + "Charles Laughton", + "Maureen O'Hara" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Thousands Cheer", + "year": 1943, + "cast": [ + "Kathryn Grayson", + "Gene Kelly" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Three Hearts for Julia", + "year": 1943, + "cast": [ + "Ann Sothern", + "Melvyn Douglas" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Three Little Twirps", + "year": 1943, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Comedy", + "Short" + ] + }, + { + "title": "Three Russian Girls", + "year": 1943, + "cast": [ + "Anna Sten", + "Kent Smith" + ], + "genres": [ + "War", + "Comedy" + ] + }, + { + "title": "Thumbs Up", + "year": 1943, + "cast": [ + "Brenda Joyce", + "Richard Fraser" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Thundering Trails", + "year": 1943, + "cast": [ + "Bob Steele", + "Tom Tyler", + "Nell O'Day" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Tiger Fangs", + "year": 1943, + "cast": [ + "Frank Buck", + "June Duprez" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Tonight We Raid Calais", + "year": 1943, + "cast": [ + "Anabella", + "John Sutton", + "Blanche Yurka", + "Lee J. Cobb" + ], + "genres": [ + "War" + ] + }, + { + "title": "To the People of the United States", + "year": 1943, + "cast": [], + "genres": [ + "Short" + ] + }, + { + "title": "Top Man", + "year": 1943, + "cast": [ + "Donald O'Connor", + "Susanna Foster", + "Lillian Gish" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Tornado", + "year": 1943, + "cast": [ + "Chester Morris", + "Nancy Kelly" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Trail of Terror", + "year": 1943, + "cast": [ + "Dave O'Brien", + "Guy Wilkerson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Troop Train", + "year": 1943, + "cast": [], + "genres": [ + "Short" + ] + }, + { + "title": "Truck Busters", + "year": 1943, + "cast": [ + "Richard Travis", + "Ruth Ford" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "True to Life", + "year": 1943, + "cast": [ + "Mary Martin", + "Dick Powell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Two Fisted Justice", + "year": 1943, + "cast": [ + "David Sharpe", + "Max Terhune" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Two Senoritas from Chicago", + "year": 1943, + "cast": [ + "Joan Davis", + "Jinx Falkenburg", + "Ann Savage" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Two Tickets to London", + "year": 1943, + "cast": [ + "Michèle Morgan", + "Barry Fitzgerald" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Two Weeks to Live", + "year": 1943, + "cast": [ + "Franklin Pangborn", + "Kay Linaker" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Underdog", + "year": 1943, + "cast": [ + "Barton MacLane", + "Jan Wiley" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Unknown Guest", + "year": 1943, + "cast": [ + "Victor Jory", + "Pamela Blake", + "Veda Ann Borg" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Victory Through Air Power", + "year": 1943, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "The Vigilantes Ride", + "year": 1943, + "cast": [ + "Russell Hayden", + "Dub Taylor" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Wackiki Wabbit", + "year": 1943, + "cast": [ + "Bugs Bunny" + ], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "Wagon Tracks West", + "year": 1943, + "cast": [ + "Wild Bill Elliott", + "Anne Jeffreys" + ], + "genres": [ + "Western" + ] + }, + { + "title": "War of the Wildcats", + "year": 1943, + "cast": [ + "John Wayne", + "Martha Scott", + "George \"Gabby\" Hayes", + "Dale Evans" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Wartime Nutrition", + "year": 1943, + "cast": [], + "genres": [ + "Short" + ] + }, + { + "title": "Watch on the Rhine", + "year": 1943, + "cast": [ + "Bette Davis", + "Paul Lukas", + "Geraldine Fitzgerald" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "West of Texas", + "year": 1943, + "cast": [ + "Dave O'Brien", + "Guy Wilkerson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The West Side Kid", + "year": 1943, + "cast": [ + "Don \"Red\" Barry", + "Dale Evans" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Western Cyclone", + "year": 1943, + "cast": [ + "Buster Crabbe", + "Al St. John" + ], + "genres": [ + "Western" + ] + }, + { + "title": "We've Never Been Licked", + "year": 1943, + "cast": [ + "Richard Quine", + "Anne Gwynne" + ], + "genres": [ + "War" + ] + }, + { + "title": "What a Woman!", + "year": 1943, + "cast": [ + "Rosalind Russell", + "Brian Aherne" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "What's Buzzin', Cousin?", + "year": 1943, + "cast": [ + "Ann Miller", + "Eddie 'Rochester' Anderson" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Where Are Your Children?", + "year": 1943, + "cast": [ + "Jackie Cooper", + "Gale Storm", + "Patricia Morison" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Whispering Footsteps", + "year": 1943, + "cast": [ + "John Hubbard", + "Rita Quigley" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Whistling in Brooklyn", + "year": 1943, + "cast": [ + "Red Skelton", + "Ann Rutherford", + "Jean Rogers" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "White Savage", + "year": 1943, + "cast": [ + "Maria Montez", + "Jon Hall" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Who Killed Who?", + "year": 1943, + "cast": [], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "Wild Horse Rustlers", + "year": 1943, + "cast": [ + "Robert Livingston", + "Al St. John" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Wild Horse Stampede", + "year": 1943, + "cast": [ + "Ken Maynard", + "Hoot Gibson", + "Betty Miles" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Willoughby's Magic Hat", + "year": 1943, + "cast": [], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "Wings Over the Pacific", + "year": 1943, + "cast": [ + "Edward Norris", + "Inez Cooper", + "Montagu Love" + ], + "genres": [ + "War" + ] + }, + { + "title": "Wintertime", + "year": 1943, + "cast": [ + "Sonja Henie", + "Cesar Romero" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Wolves of the Range", + "year": 1943, + "cast": [ + "Robert Livingston", + "Al St. John" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Woman of the Town", + "year": 1943, + "cast": [ + "Claire Trevor", + "Albert Dekker" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Women in Bondage", + "year": 1943, + "cast": [ + "Gail Patrick", + "Nancy Kelly" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Yankee Doodle Daffy", + "year": 1943, + "cast": [ + "Daffy Duck", + "Porky Pig" + ], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "The Yankee Doodle Mouse", + "year": 1943, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "Yanks Ahoy", + "year": 1943, + "cast": [ + "William Tracy", + "Joe Sawyer" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "You Can't Beat the Law", + "year": 1943, + "cast": [ + "Edward Norris", + "Joan Woodbury" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "You, John Jones!", + "year": 1943, + "cast": [ + "James Cagney", + "Ann Sothern" + ], + "genres": [ + "Short" + ] + }, + { + "title": "Young and Willing", + "year": 1943, + "cast": [ + "William Holden", + "Susan Hayward" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Young Ideas", + "year": 1943, + "cast": [ + "Susan Peters", + "Mary Astor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Youngest Profession", + "year": 1943, + "cast": [ + "Virginia Weidler", + "Edward Arnold", + "Agnes Moorehead" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "You're a Lucky Fellow, Mr. Smith", + "year": 1943, + "cast": [ + "Allan Jones", + "Billie Burke" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "3 Men in White", + "year": 1944, + "cast": [ + "Lionel Barrymore", + "Van Johnson", + "Marilyn Maxwell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The 957th Day", + "year": 1944, + "cast": [], + "genres": [ + "Short" + ] + }, + { + "title": "Abroad with Two Yanks", + "year": 1944, + "cast": [ + "William Bendix", + "Helen Walker", + "Dennis O'Keefe" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Accent on Crime", + "year": 1944, + "cast": [ + "June Carlson", + "Fifi D'Orsay", + "Teala Loring" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Action in Arabia", + "year": 1944, + "cast": [ + "George Sanders", + "Virginia Bruce", + "Lenore Aubert" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "Address Unknown", + "year": 1944, + "cast": [ + "Mady Christians", + "Morris Carnovsky", + "Paul Lukas", + "Peter van Eyck", + "K. T. Stevens" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Adventure in Music", + "year": 1944, + "cast": [ + "José Iturbi", + "Emanuel Feuermann", + "Mildred Dilling" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Adventures of Mark Twain", + "year": 1944, + "cast": [ + "Fredric March", + "Alexis Smith" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Alaska", + "year": 1944, + "cast": [ + "Kent Taylor", + "Margaret Lindsay", + "John Carradine" + ], + "genres": [ + "Crime", + "Adventure" + ] + }, + { + "title": "Ali Baba and the Forty Thieves", + "year": 1944, + "cast": [ + "Maria Montez", + "Jon Hall", + "Turhan Bey" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Allergic to Love", + "year": 1944, + "cast": [ + "Martha O'Driscoll", + "Noah Beery Jr.", + "David Bruce" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "An American Romance", + "year": 1944, + "cast": [ + "Brian Donlevy", + "Ann Richards", + "Walter Abel" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "And the Angels Sing", + "year": 1944, + "cast": [ + "Fred MacMurray", + "Betty Hutton", + "Dorothy Lamour" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "And Now Tomorrow", + "year": 1944, + "cast": [ + "Alan Ladd", + "Loretta Young", + "Susan Hayward" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Andy Hardy's Blonde Trouble", + "year": 1944, + "cast": [ + "Lewis Stone", + "Mickey Rooney", + "Fay Holden" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Are These Our Parents?", + "year": 1944, + "cast": [ + "Helen Vinson", + "Lyle Talbot", + "Ivan Lebedeff" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "Arizona Whirlwind", + "year": 1944, + "cast": [ + "Ken Maynard", + "Hoot Gibson", + "Bob Steele" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Army Wives", + "year": 1944, + "cast": [ + "Elyse Knox", + "Marjorie Rambeau", + "Rick Vallin" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Arsenic and Old Lace", + "year": 1944, + "cast": [ + "Cary Grant", + "Raymond Massey", + "Josephine Hull", + "Peter Lorre", + "Jack Carson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Atlantic City", + "year": 1944, + "cast": [ + "Constance Moore", + "Stanley Brown", + "Charley Grapewin" + ], + "genres": [ + "Romance", + "Musical" + ] + }, + { + "title": "Attack! Battle of New Britain", + "year": 1944, + "cast": [], + "genres": [ + "Short" + ] + }, + { + "title": "Babes on Swing Street", + "year": 1944, + "cast": [ + "Ann Blyth", + "Peggy Ryan", + "Andy Devine" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Barbary Coast Gent", + "year": 1944, + "cast": [ + "Wallace Beery", + "Binnie Barnes" + ], + "genres": [ + "Western", + "Comedy" + ] + }, + { + "title": "The Barber of Seville", + "year": 1944, + "cast": [], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "Bathing Beauty", + "year": 1944, + "cast": [ + "Esther Williams", + "Red Skelton" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Battle of China", + "year": 1944, + "cast": [], + "genres": [ + "War" + ] + }, + { + "title": "Beautiful But Broke", + "year": 1944, + "cast": [ + "Joan Davis", + "John Hubbard", + "Jane Frazee" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Belle of the Yukon", + "year": 1944, + "cast": [ + "Randolph Scott", + "Gypsy Rose Lee", + "Dinah Shore" + ], + "genres": [ + "Western", + "Comedy" + ] + }, + { + "title": "Beneath Western Skies", + "year": 1944, + "cast": [ + "Robert Livingston", + "Smiley Burnette", + "Effie Laird" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Bermuda Mystery", + "year": 1944, + "cast": [ + "Preston Foster", + "Ann Rutherford", + "Charles Butterworth", + "Helene Whitney" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Between Two Worlds", + "year": 1944, + "cast": [ + "John Garfield", + "Paul Henreid", + "Eleanor Parker" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Big Bonanza", + "year": 1944, + "cast": [ + "Jane Frazee", + "Richard Arlen", + "Lynne Roberts" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Big Noise", + "year": 1944, + "cast": [ + "Laurel and Hardy", + "Doris Merrick" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Black Arrow", + "year": 1944, + "cast": [ + "Mark Roberts", + "Adele Jergens", + "Robert Williams" + ], + "genres": [ + "Action", + "Western" + ] + }, + { + "title": "Black Magic", + "year": 1944, + "cast": [ + "Sidney Toler", + "Mantan Moreland", + "Jacqueline deWit" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Black Parachute", + "year": 1944, + "cast": [ + "John Carradine", + "Osa Massen", + "Larry Parks" + ], + "genres": [ + "War" + ] + }, + { + "title": "Block Busters", + "year": 1944, + "cast": [ + "Leo Gorcey", + "Huntz Hall", + "Gabriel Dell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Blonde Fever", + "year": 1944, + "cast": [ + "Philip Dorn", + "Mary Astor", + "Gloria Grahame" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Bluebeard", + "year": 1944, + "cast": [ + "John Carradine", + "Jean Parker" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Bodyguard", + "year": 1944, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "Bordertown Trail", + "year": 1944, + "cast": [ + "Smiley Burnette", + "Sunset Carson", + "Weldon Heyburn" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Boss of Boomtown", + "year": 1944, + "cast": [ + "Rod Cameron", + "Tom Tyler", + "Fuzzy Knight" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Bowery Champs", + "year": 1944, + "cast": [ + "Leo Gorcey", + "Huntz Hall", + "Gabriel Dell" + ], + "genres": [ + "Crime", + "Comedy" + ] + }, + { + "title": "Bowery to Broadway", + "year": 1944, + "cast": [ + "Maria Montez", + "Jack Oakie", + "Susanna Foster" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Brand of the Devil", + "year": 1944, + "cast": [ + "Dave O'Brien", + "James Newill", + "Guy Wilkerson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Brazil", + "year": 1944, + "cast": [ + "Tito Guízar", + "Virginia Bruce", + "Edward Everett Horton", + "Aurora Miranda", + "Roy Rogers" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Bride by Mistake", + "year": 1944, + "cast": [ + "Alan Marshal", + "Laraine Day", + "Marsha Hunt" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Bridge of San Luis Rey", + "year": 1944, + "cast": [ + "Lynn Bari", + "Akim Tamiroff" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Broadway Rhythm", + "year": 1944, + "cast": [ + "George Murphy", + "Ginny Simms", + "Nancy Walker", + "Lena Horne" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Buffalo Bill", + "year": 1944, + "cast": [ + "Joel McCrea", + "Maureen O'Hara" + ], + "genres": [ + "Western", + "Biography" + ] + }, + { + "title": "Bugs Bunny and the Three Bears", + "year": 1944, + "cast": [ + "Merrie Melodies" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Bugs Bunny Nips the Nips", + "year": 1944, + "cast": [ + "Merrie Melodies" + ], + "genres": [ + "Animated", + "War" + ] + }, + { + "title": "Busy Buddies", + "year": 1944, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Comedy", + "Short" + ] + }, + { + "title": "Call of the Jungle", + "year": 1944, + "cast": [ + "Ann Corio", + "James Bush", + "John Davidson" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Call of the Rockies", + "year": 1944, + "cast": [ + "Smiley Burnette", + "Sunset Carson", + "Harry Woods" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Call of the South Seas", + "year": 1944, + "cast": [ + "Janet Martin", + "Allan Lane", + "William Henry" + ], + "genres": [ + "Action", + "Comedy" + ] + }, + { + "title": "Can't Help Singing", + "year": 1944, + "cast": [ + "Deanna Durbin", + "Robert Paige" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Canterville Ghost", + "year": 1944, + "cast": [ + "Charles Laughton", + "Margaret O'Brien" + ], + "genres": [ + "Comedy", + "Fantasy" + ] + }, + { + "title": "Captain America", + "year": 1944, + "cast": [ + "Dick Purcell", + "Lorna Gray" + ], + "genres": [] + }, + { + "title": "Career Girl", + "year": 1944, + "cast": [ + "Frances Langford", + "Edward Norris", + "Iris Adrian" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Carolina Blues", + "year": 1944, + "cast": [ + "Kay Kyser", + "Ann Miller", + "Victor Moore" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Casanova Brown", + "year": 1944, + "cast": [ + "Gary Cooper", + "Teresa Wright" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Casanova in Burlesque", + "year": 1944, + "cast": [ + "Joe E. Brown", + "June Havoc", + "Dale Evans" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Cattle Call", + "year": 1944, + "cast": [], + "genres": [ + "Western" + ] + }, + { + "title": "Charlie Chan in The Chinese Cat", + "year": 1944, + "cast": [ + "Sidney Toler", + "Joan Woodbury", + "Mantan Moreland" + ], + "genres": [ + "Crime", + "Comedy" + ] + }, + { + "title": "Charlie Chan in the Secret Service", + "year": 1944, + "cast": [ + "Sidney Toler", + "Mantan Moreland", + "Arthur Loft" + ], + "genres": [ + "Crime", + "Comedy" + ] + }, + { + "title": "Cheyenne Wildcat", + "year": 1944, + "cast": [ + "Bill Elliott", + "Robert Blake", + "Alice Fleming" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Chip Off the Old Block", + "year": 1944, + "cast": [ + "Donald O'Connor", + "Peggy Ryan", + "Ann Blyth" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Christmas Holiday", + "year": 1944, + "cast": [ + "Deanna Durbin", + "Gene Kelly" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Climax", + "year": 1944, + "cast": [ + "Susanna Foster", + "Boris Karloff" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Cobra Woman", + "year": 1944, + "cast": [ + "Maria Montez", + "Jon Hall", + "Sabu" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Code of the Prairie", + "year": 1944, + "cast": [ + "Smiley Burnette", + "Sunset Carson", + "Peggy Stewart" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Conspirators", + "year": 1944, + "cast": [ + "Hedy Lamarr", + "Paul Henreid" + ], + "genres": [ + "Spy" + ] + }, + { + "title": "The Contender", + "year": 1944, + "cast": [ + "Buster Crabbe", + "Arline Judge" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Cover Girl", + "year": 1944, + "cast": [ + "Rita Hayworth", + "Gene Kelly", + "Phil Silvers" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Cowboy and the Senorita", + "year": 1944, + "cast": [ + "Roy Rogers", + "Trigger", + "Mary Lee" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Cowboy Canteen", + "year": 1944, + "cast": [ + "Jane Frazee", + "Tex Ritter" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Cowboy from Lonesome River", + "year": 1944, + "cast": [ + "Charles Starrett", + "Dub Taylor" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Crash Goes the Hash", + "year": 1944, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Comedy", + "Short" + ] + }, + { + "title": "Crazy Knights", + "year": 1944, + "cast": [ + "Billy Gilbert", + "Shemp Howard", + "Max Rosenbloom" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Crime by Night", + "year": 1944, + "cast": [ + "Jane Wyman", + "Jerome Cowan" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Cry of the Werewolf", + "year": 1944, + "cast": [ + "Nina Foch", + "Stephen Crane", + "Osa Massen" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Curse of the Cat People", + "year": 1944, + "cast": [ + "Simone Simon", + "Jane Randolph" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Cyclone Prairie Rangers", + "year": 1944, + "cast": [ + "Charles Starrett", + "Dub Taylor", + "Constance Worth" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Dancing in Manhattan", + "year": 1944, + "cast": [ + "Frederick Brady", + "Jeff Donnell", + "William Wright" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Dancing Romeo", + "year": 1944, + "cast": [ + "Our Gang" + ], + "genres": [ + "Comedy", + "Short" + ] + }, + { + "title": "Dangerous Passage", + "year": 1944, + "cast": [ + "Robert Lowery", + "Phyllis Brooks", + "Charles Arnt" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Dark Mountain", + "year": 1944, + "cast": [ + "Robert Lowery", + "Ellen Drew", + "Regis Toomey" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Dark Waters", + "year": 1944, + "cast": [ + "Merle Oberon", + "Franchot Tone", + "Thomas Mitchell" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Days of Glory", + "year": 1944, + "cast": [ + "Gregory Peck" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "Dead Man's Eyes", + "year": 1944, + "cast": [ + "Lon Chaney Jr.", + "Jean Parker" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Dead or Alive", + "year": 1944, + "cast": [ + "Tex Ritter", + "Dave O'Brien", + "Guy Wilkerson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Delinquent Daughters", + "year": 1944, + "cast": [ + "June Carlson", + "Fifi D'Orsay", + "Teala Loring" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Destiny", + "year": 1944, + "cast": [ + "Gloria Jean", + "Alan Curtis", + "Frank Craven" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Detective Kitty O'Day", + "year": 1944, + "cast": [ + "Jean Parker", + "Peter Cookson" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Dixie Jamboree", + "year": 1944, + "cast": [ + "Frances Langford", + "Guy Kibbee", + "Eddie Quillan" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Double Exposure", + "year": 1944, + "cast": [ + "Chester Morris", + "Nancy Kelly" + ], + "genres": [ + "Crime", + "Comedy" + ] + }, + { + "title": "Double Indemnity", + "year": 1944, + "cast": [ + "Fred MacMurray", + "Barbara Stanwyck", + "Edward G. Robinson" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Doughgirls", + "year": 1944, + "cast": [ + "Ann Sheridan", + "Alexis Smith", + "Jack Carson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Dragon Seed", + "year": 1944, + "cast": [ + "Katharine Hepburn", + "Walter Huston" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Drifter", + "year": 1944, + "cast": [ + "Buster Crabbe", + "Al St. John" + ], + "genres": [ + "Western" + ] + }, + { + "title": "End of the Road", + "year": 1944, + "cast": [ + "Edward Norris", + "John Abbott", + "June Storey" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Enemy of Women", + "year": 1944, + "cast": [ + "Claudia Drake", + "Wolfgang Zilzer", + "Donald Woods" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Enter Arsène Lupin", + "year": 1944, + "cast": [ + "Charles Korvin", + "Ella Raines" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Eve of St. Mark", + "year": 1944, + "cast": [ + "Anne Baxter", + "Michael O'Shea", + "Vincent Price" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Ever Since Venus", + "year": 1944, + "cast": [ + "Ina Ray Hutton", + "Hugh Herbert", + "Ann Savage" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Experiment Perilous", + "year": 1944, + "cast": [ + "Hedy Lamarr", + "George Brent" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Faces in the Fog", + "year": 1944, + "cast": [ + "Jane Withers", + "Paul Kelly", + "Lee Patrick" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Falcon in Hollywood", + "year": 1944, + "cast": [ + "Tom Conway", + "Rita Corday" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Falcon in Mexico", + "year": 1944, + "cast": [ + "Tom Conway", + "Mona Maris" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Falcon Out West", + "year": 1944, + "cast": [ + "Tom Conway", + "Barbara Hale" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Farewell, My Lovely", + "year": 1944, + "cast": [ + "Dick Powell", + "Claire Trevor" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "A Fig Leaf for Eve", + "year": 1944, + "cast": [ + "Jan Wiley", + "Eddie Dunn", + "Betty Blythe" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Fighting Lady", + "year": 1944, + "cast": [], + "genres": [ + "War", + "Documentary" + ] + }, + { + "title": "The Fighting Seabees", + "year": 1944, + "cast": [ + "John Wayne", + "Susan Hayward" + ], + "genres": [ + "War" + ] + }, + { + "title": "The Fighting Sullivans", + "year": 1944, + "cast": [ + "Anne Baxter", + "Thomas Mitchell" + ], + "genres": [ + "Biography", + "Drama" + ] + }, + { + "title": "Firebrands of Arizona", + "year": 1944, + "cast": [ + "Smiley Burnette", + "Sunset Carson", + "Peggy Stewart" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Five Were Chosen", + "year": 1944, + "cast": [ + "Victor Kilian", + "Howard Da Silva", + "Leonid Kinskey" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "Follow the Boys", + "year": 1944, + "cast": [ + "George Raft", + "Vera Zorina", + "Jeanette MacDonald" + ], + "genres": [ + "War", + "Comedy" + ] + }, + { + "title": "Follow the Leader", + "year": 1944, + "cast": [ + "Leo Gorcey", + "Huntz Hall", + "Gabriel Dell" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Forty Thieves", + "year": 1944, + "cast": [ + "William Boyd", + "Andy Clyde", + "Jimmy Rogers" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Four Jills in a Jeep", + "year": 1944, + "cast": [ + "Kay Francis", + "Carole Landis", + "Martha Raye" + ], + "genres": [ + "War", + "Musical" + ] + }, + { + "title": "Frenchman's Creek", + "year": 1944, + "cast": [ + "Joan Fontaine", + "Basil Rathbone", + "Nigel Bruce" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Frontier Outlaws", + "year": 1944, + "cast": [ + "Buster Crabbe", + "Marin Sais" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Fuzzy Settles Down", + "year": 1944, + "cast": [ + "Buster Crabbe", + "Al St. John" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Gambler's Choice", + "year": 1944, + "cast": [ + "Chester Morris", + "Nancy Kelly" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Gangsters of the Frontier", + "year": 1944, + "cast": [ + "Dave O'Brien", + "Tex Ritter" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Gaslight", + "year": 1944, + "cast": [ + "Charles Boyer", + "Ingrid Bergman", + "Angela Lansbury" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Gentle Annie", + "year": 1944, + "cast": [ + "James Craig", + "Donna Reed", + "Marjorie Main" + ], + "genres": [ + "Romance", + "Western" + ] + }, + { + "title": "Gents Without Cents", + "year": 1944, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Comedy", + "Short" + ] + }, + { + "title": "Ghost Catchers", + "year": 1944, + "cast": [ + "Olsen and Johnson", + "Gloria Jean", + "Martha O'Driscoll" + ], + "genres": [ + "Comedy", + "Horror" + ] + }, + { + "title": "Ghost Guns", + "year": 1944, + "cast": [ + "Johnny Mack Brown", + "Raymond Hatton", + "Evelyn Finley" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Ghost That Walks Alone", + "year": 1944, + "cast": [ + "Arthur Lake", + "Janis Carter", + "Lynne Roberts" + ], + "genres": [ + "Mystery", + "Comedy" + ] + }, + { + "title": "Gildersleeve's Ghost", + "year": 1944, + "cast": [ + "Harold Peary", + "Marion Martin", + "Richard LeGrand" + ], + "genres": [ + "Comedy", + "Fantasy" + ] + }, + { + "title": "Girl in the Case", + "year": 1944, + "cast": [ + "Edmund Lowe", + "Janis Carter" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Girl Rush", + "year": 1944, + "cast": [ + "Wally Brown", + "Alan Carney", + "Frances Langford" + ], + "genres": [ + "Comedy", + "Western" + ] + }, + { + "title": "The Girl Who Dared", + "year": 1944, + "cast": [ + "Lorna Gray", + "Peter Cookson", + "Veda Ann Borg" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Goin' to Town", + "year": 1944, + "cast": [ + "Chester Lauck", + "Norris Goff", + "Barbara Hale" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Going My Way", + "year": 1944, + "cast": [ + "Bing Crosby", + "Barry Fitzgerald" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Goodnight, Sweetheart", + "year": 1944, + "cast": [ + "Robert Livingston", + "Ruth Terry", + "Henry Hull" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Government Girl", + "year": 1944, + "cast": [ + "Olivia de Havilland", + "Sonny Tufts", + "Anne Shirley" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Great Alaskan Mystery", + "year": 1944, + "cast": [ + "Milburn Stone", + "Marjorie Weaver", + "Edgar Kennedy" + ], + "genres": [ + "Spy" + ] + }, + { + "title": "The Great Mike", + "year": 1944, + "cast": [ + "Stuart Erwin", + "Marion Martin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Great Moment", + "year": 1944, + "cast": [ + "Joel McCrea", + "Betty Field" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Greenwich Village", + "year": 1944, + "cast": [ + "Carmen Miranda", + "Don Ameche", + "William Bendix" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Guest in the House", + "year": 1944, + "cast": [ + "Anne Baxter", + "Ralph Bellamy", + "Aline MacMahon" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Guns of the Law", + "year": 1944, + "cast": [ + "Dave O'Brien", + "James Newill", + "Guy Wilkerson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Gunsmoke Mesa", + "year": 1944, + "cast": [ + "James Newill", + "Dave O'Brien", + "Guy Wilkerson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Gypsy Wildcat", + "year": 1944, + "cast": [ + "Maria Montez", + "Jon Hall", + "Peter Coe" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Hail the Conquering Hero", + "year": 1944, + "cast": [ + "Eddie Bracken", + "Ella Raines", + "William Demarest" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Hairy Ape", + "year": 1944, + "cast": [ + "William Bendix", + "Susan Hayward", + "John Loder" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hands Across the Border", + "year": 1944, + "cast": [ + "Roy Rogers", + "Trigger", + "Ruth Terry" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Hare Force", + "year": 1944, + "cast": [ + "Bugs Bunny" + ], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "Harmony Trail", + "year": 1944, + "cast": [ + "Ken Maynard", + "Eddie Dean", + "Gene Alsace" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Hat Check Honey", + "year": 1944, + "cast": [ + "Leon Errol", + "Grace McDonald", + "Walter Catlett" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Haunted Harbor", + "year": 1944, + "cast": [ + "Kane Richmond", + "Kay Aldridge", + "Roy Barcroft" + ], + "genres": [] + }, + { + "title": "The Heavenly Body", + "year": 1944, + "cast": [ + "William Powell", + "Hedy Lamarr" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Heavenly Days", + "year": 1944, + "cast": [ + "Jim Jordan", + "Marian Jordan", + "Barbara Hale" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hell-Bent for Election", + "year": 1944, + "cast": [], + "genres": [ + "Animated", + "War" + ] + }, + { + "title": "Henry Aldrich, Boy Scout", + "year": 1944, + "cast": [ + "Jimmy Lydon", + "Charles Smith", + "John Litel" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Henry Aldrich Plays Cupid", + "year": 1944, + "cast": [ + "Jimmy Lydon", + "Charles Smith", + "John Litel" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Henry Aldrich's Little Secret", + "year": 1944, + "cast": [ + "Jimmy Lydon", + "Charles Smith", + "John Litel" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Her Primitive Man", + "year": 1944, + "cast": [ + "Louise Allbritton", + "Robert Paige", + "Robert Benchley" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Here Come the Waves", + "year": 1944, + "cast": [ + "Bing Crosby", + "Betty Hutton", + "Sonny Tufts" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Hey, Rookie", + "year": 1944, + "cast": [ + "Ann Miller", + "Joe Besser", + "Larry Parks" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Hi, Beautiful", + "year": 1944, + "cast": [ + "Martha O'Driscoll", + "Noah Beery Jr.", + "Hattie McDaniel" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hi, Good Lookin'!", + "year": 1944, + "cast": [ + "Harriet Hilliard", + "Eddie Quillan", + "Kirby Grant" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Hidden Valley Outlaws", + "year": 1944, + "cast": [ + "Bill Elliott", + "George \"Gabby\" Hayes", + "Anne Jeffreys" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Higher and Higher", + "year": 1944, + "cast": [ + "Michèle Morgan", + "Frank Sinatra" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Hitler Gang", + "year": 1944, + "cast": [ + "Robert Watson", + "Roman Bohnen", + "Victor Varconi" + ], + "genres": [] + }, + { + "title": "Hollywood Canteen", + "year": 1944, + "cast": [ + "Robert Hutton", + "Joan Leslie" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Home in Indiana", + "year": 1944, + "cast": [ + "Walter Brennan", + "Lon McCallister", + "Jeanne Crain" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hot Rhythm", + "year": 1944, + "cast": [ + "Dona Drake", + "Robert Lowery", + "Irene Ryan" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Hour Before the Dawn", + "year": 1944, + "cast": [ + "Veronica Lake", + "Franchot Tone", + "Binnie Barnes" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "House of Frankenstein", + "year": 1944, + "cast": [ + "Boris Karloff", + "Lon Chaney Jr.", + "John Carradine", + "Glenn Strange", + "J. Carrol Naish", + "Anne Gwynne", + "Peter Coe", + "Lionel Atwill" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "How to Play Golf", + "year": 1944, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "Hymn of the Nations", + "year": 1944, + "cast": [], + "genres": [ + "War", + "Documentary" + ] + }, + { + "title": "I Accuse My Parents", + "year": 1944, + "cast": [ + "Mary Beth Hughes", + "Vivienne Osborne" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "I Love a Soldier", + "year": 1944, + "cast": [ + "Paulette Goddard", + "Sonny Tufts" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "I Won't Play", + "year": 1944, + "cast": [ + "Janis Paige", + "Dane Clark" + ], + "genres": [ + "Short" + ] + }, + { + "title": "Idle Roomers", + "year": 1944, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Comedy", + "Short" + ] + }, + { + "title": "I'll Be Seeing You", + "year": 1944, + "cast": [ + "Ginger Rogers", + "Shirley Temple" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "I'm from Arkansas", + "year": 1944, + "cast": [ + "Slim Summerville", + "Iris Adrian" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Impatient Years", + "year": 1944, + "cast": [ + "Jean Arthur", + "Lee Bowman" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Impostor", + "year": 1944, + "cast": [ + "Jean Gabin", + "Richard Whorf", + "Ellen Drew" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "In the Meantime, Darling", + "year": 1944, + "cast": [ + "Jeanne Crain", + "Frank Latimore", + "Gale Robbins" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "In Our Time", + "year": 1944, + "cast": [ + "Ida Lupino", + "Paul Henreid" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "In Society", + "year": 1944, + "cast": [ + "Abbott and Costello", + "Marion Hutton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Invisible Man's Revenge", + "year": 1944, + "cast": [ + "Jon Hall", + "John Carradine" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Irish Eyes Are Smiling", + "year": 1944, + "cast": [ + "Monty Woolley", + "June Haver" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "It Happened Tomorrow", + "year": 1944, + "cast": [ + "Dick Powell", + "Linda Darnell" + ], + "genres": [ + "Fantasy", + "Comedy" + ] + }, + { + "title": "Jam Session", + "year": 1944, + "cast": [ + "Ann Miller", + "Jess Barker" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Jamboree", + "year": 1944, + "cast": [ + "Ruth Terry", + "Paul Harvey" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Jammin' the Blues", + "year": 1944, + "cast": [ + "Marie Bryant", + "Jo Jones", + "Illinois Jacquet" + ], + "genres": [ + "Short" + ] + }, + { + "title": "Janie", + "year": 1944, + "cast": [ + "Joyce Reynolds", + "Ann Harding" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Johnny Doesn't Live Here Anymore", + "year": 1944, + "cast": [ + "Simone Simon", + "James Ellison" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Jungle Woman", + "year": 1944, + "cast": [ + "Evelyn Ankers", + "J. Carrol Naish" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Kansas City Kitty", + "year": 1944, + "cast": [ + "Joan Davis", + "Jane Frazee" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Keys of the Kingdom", + "year": 1944, + "cast": [ + "Gregory Peck", + "Thomas Mitchell", + "Roddy McDowall" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Kismet", + "year": 1944, + "cast": [ + "Ronald Colman", + "Marlene Dietrich", + "James Craig" + ], + "genres": [ + "Historical" + ] + }, + { + "title": "Knickerbocker Holiday", + "year": 1944, + "cast": [ + "Constance Dowling", + "Nelson Eddy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Ladies Courageous", + "year": 1944, + "cast": [ + "Loretta Young", + "Diana Barrymore", + "Anne Gwynne", + "Geraldine Fitzgerald" + ], + "genres": [ + "War" + ] + }, + { + "title": "Ladies of Washington", + "year": 1944, + "cast": [ + "Trudy Marshall", + "Anthony Quinn", + "Sheila Ryan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Lady and the Monster", + "year": 1944, + "cast": [ + "Vera Ralston", + "Erich von Stroheim", + "Richard Arlen" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Lady in the Dark", + "year": 1944, + "cast": [ + "Ginger Rogers", + "Ray Milland", + "Jon Hall" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Lady in the Death House", + "year": 1944, + "cast": [ + "Jean Parker", + "Lionel Atwill" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Lady, Let's Dance", + "year": 1944, + "cast": [ + "Belita", + "James Ellison" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Lake Placid Serenade", + "year": 1944, + "cast": [ + "Vera Ralston", + "Eugene Pallette" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Land of the Outlaws", + "year": 1944, + "cast": [ + "Johnny Mack Brown", + "Raymond Hatton" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Laramie Trail", + "year": 1944, + "cast": [ + "Robert Livingston", + "Smiley Burnette" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Last Horseman", + "year": 1944, + "cast": [ + "Russell Hayden", + "Ann Savage" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Last Ride", + "year": 1944, + "cast": [ + "Eleanor Parker", + "Richard Travis" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Laura", + "year": 1944, + "cast": [ + "Gene Tierney", + "Dana Andrews", + "Clifton Webb", + "Vincent Price", + "Judith Anderson" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Law Men", + "year": 1944, + "cast": [ + "Johnny Mack Brown", + "Jan Wiley" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Law of the Valley", + "year": 1944, + "cast": [ + "Johnny Mack Brown", + "Raymond Hatton", + "Lynne Carver" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Leave It to the Irish", + "year": 1944, + "cast": [ + "James Dunn", + "Wanda McKay" + ], + "genres": [ + "Comedy", + "Crime" + ] + }, + { + "title": "Lifeboat", + "year": 1944, + "cast": [ + "Tallulah Bankhead", + "William Bendix" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "Lights of Old Santa Fe", + "year": 1944, + "cast": [ + "Roy Rogers", + "Dale Evans" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Little Red Riding Rabbit", + "year": 1944, + "cast": [], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "The Lodger", + "year": 1944, + "cast": [ + "Merle Oberon", + "George Sanders", + "Laird Cregar" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Lost in a Harem", + "year": 1944, + "cast": [ + "Abbott and Costello", + "Marilyn Maxwell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Louisiana Hayride", + "year": 1944, + "cast": [ + "Judy Canova", + "Ross Hunter" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Lumberjack", + "year": 1944, + "cast": [ + "William Boyd", + "Andy Clyde", + "Ellen Hall" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Machine Gun Mama", + "year": 1944, + "cast": [ + "Armida" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Mademoiselle Fifi", + "year": 1944, + "cast": [ + "Simone Simon", + "Kurt Kreuger" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Maisie Goes to Reno", + "year": 1944, + "cast": [ + "Ann Sothern", + "John Hodiak" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Make Your Own Bed", + "year": 1944, + "cast": [ + "Jane Wyman", + "Jack Carson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Man from Frisco", + "year": 1944, + "cast": [ + "Michael O'Shea", + "Anne Shirley" + ], + "genres": [ + "Spy" + ] + }, + { + "title": "Marine Raiders", + "year": 1944, + "cast": [ + "Pat O'Brien", + "Robert Ryan", + "Ruth Hussey" + ], + "genres": [ + "War" + ] + }, + { + "title": "The Mark of the Whistler", + "year": 1944, + "cast": [ + "Richard Dix", + "Janis Carter" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Marked Trails", + "year": 1944, + "cast": [ + "Hoot Gibson", + "Bob Steele", + "Veda Ann Borg" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Marriage Is a Private Affair", + "year": 1944, + "cast": [ + "Lana Turner", + "John Hodiak" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Marshal of Gunsmoke", + "year": 1944, + "cast": [ + "Tex Ritter", + "Russell Hayden", + "Jennifer Holt" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Marshal of Reno", + "year": 1944, + "cast": [ + "Wild Bill Elliott", + "Alice Fleming" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Mask of Dimitrios", + "year": 1944, + "cast": [ + "Sydney Greenstreet", + "Peter Lorre" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Master Race", + "year": 1944, + "cast": [ + "George Coulouris" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Meet Me in St. Louis", + "year": 1944, + "cast": [ + "Judy Garland", + "Margaret O'Brien", + "Mary Astor" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Meet Miss Bobby Socks", + "year": 1944, + "cast": [ + "Bob Crosby", + "Lynn Merrick" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Meet the People", + "year": 1944, + "cast": [ + "Lucille Ball", + "Dick Powell" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Memphis Belle: A Story of a Flying Fortress", + "year": 1944, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "Men on Her Mind", + "year": 1944, + "cast": [ + "Mary Beth Hughes", + "Edward Norris" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Merry Monahans", + "year": 1944, + "cast": [ + "Donald O'Connor", + "Peggy Ryan", + "Jack Oakie" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Million Dollar Cat", + "year": 1944, + "cast": [], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "Million Dollar Kid", + "year": 1944, + "cast": [ + "Leo Gorcey", + "Huntz Hall", + "Louise Currie" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Ministry of Fear", + "year": 1944, + "cast": [ + "Ray Milland", + "Marjorie Reynolds", + "Carl Esmond" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Minstrel Man", + "year": 1944, + "cast": [ + "Benny Fields", + "Gladys George" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Miracle of Morgan's Creek", + "year": 1944, + "cast": [ + "Eddie Bracken", + "Betty Hutton", + "William Demarest" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Missing Juror", + "year": 1944, + "cast": [ + "Jim Bannon", + "Janis Carter" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Mojave Firebrand", + "year": 1944, + "cast": [ + "Don \"Red\" Barry", + "Anne Jeffreys" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Monster Maker", + "year": 1944, + "cast": [ + "J. Carrol Naish", + "Ralph Morgan", + "Tala Birell" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Moon Over Las Vegas", + "year": 1944, + "cast": [ + "Anne Gwynne", + "Barbara Jo Allen" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Moonlight and Cactus", + "year": 1944, + "cast": [ + "The Andrews Sisters", + "Leo Carrillo" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Mouse Trouble", + "year": 1944, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "Mr. Skeffington", + "year": 1944, + "cast": [ + "Bette Davis", + "Claude Rains" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Mr. Winkle Goes to War", + "year": 1944, + "cast": [ + "Edward G. Robinson", + "Ruth Warrick" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mrs. Parkington", + "year": 1944, + "cast": [ + "Greer Garson", + "Walter Pidgeon", + "Edward Arnold" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Mummy's Curse", + "year": 1944, + "cast": [ + "Lon Chaney", + "Virginia Christine" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Mummy's Ghost", + "year": 1944, + "cast": [ + "Lon Chaney", + "John Carradine", + "Ramsay Ames" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Murder in the Blue Room", + "year": 1944, + "cast": [ + "Anne Gwynne", + "John Litel" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Murder, My Sweet", + "year": 1944, + "cast": [ + "Dick Powell", + "Claire Trevor" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Music for Millions", + "year": 1944, + "cast": [ + "Jimmy Durante", + "June Allyson" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Music in Manhattan", + "year": 1944, + "cast": [ + "Anne Shirley", + "Dennis Day" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "My Best Gal", + "year": 1944, + "cast": [ + "Jane Withers", + "Jimmy Lydon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "My Buddy", + "year": 1944, + "cast": [ + "Ruth Terry", + "Red Barry" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "My Gal Loves Music", + "year": 1944, + "cast": [ + "Bob Crosby", + "Grace McDonald" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "My Pal Wolf", + "year": 1944, + "cast": [ + "Sharyn Moffett", + "Jill Esmond", + "Claire Carleton" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Mystery Man", + "year": 1944, + "cast": [ + "William Boyd", + "Andy Clyde", + "Eleanor Stewart" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Mystery of the River Boat", + "year": 1944, + "cast": [ + "Robert Lowery" + ], + "genres": [] + }, + { + "title": "Nabonga", + "year": 1944, + "cast": [ + "Buster Crabbe", + "Julie London" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The National Barn Dance", + "year": 1944, + "cast": [ + "Jean Heather", + "Charles Quigley" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "National Velvet", + "year": 1944, + "cast": [ + "Mickey Rooney", + "Elizabeth Taylor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Navy Way", + "year": 1944, + "cast": [ + "Jean Parker", + "William Henry" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Negro Soldier", + "year": 1944, + "cast": [], + "genres": [ + "War" + ] + }, + { + "title": "Nevada", + "year": 1944, + "cast": [ + "Robert Mitchum", + "Anne Jeffreys" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Nine Girls", + "year": 1944, + "cast": [ + "Ann Harding", + "Evelyn Keyes" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "A Night of Adventure", + "year": 1944, + "cast": [ + "Tom Conway", + "Audrey Long", + "John Carradine", + "Dean Jagger" + ], + "genres": [ + "Crime", + "Mystery" + ] + }, + { + "title": "No Dough Boys", + "year": 1944, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Comedy", + "Short" + ] + }, + { + "title": "None But the Lonely Heart", + "year": 1944, + "cast": [ + "Cary Grant", + "Ethel Barrymore" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "None Shall Escape", + "year": 1944, + "cast": [ + "Marsha Hunt", + "Henry Travers" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "Nothing But Trouble", + "year": 1944, + "cast": [ + "Laurel and Hardy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Oath of Vengeance", + "year": 1944, + "cast": [ + "Buster Crabbe", + "Al St. John" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Oh, What a Night", + "year": 1944, + "cast": [ + "Jean Parker", + "Edmund Lowe" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Oklahoma Raiders", + "year": 1944, + "cast": [ + "Tex Ritter", + "Jennifer Holt" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Old Grey Hare", + "year": 1944, + "cast": [], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "The Old Texas Trail", + "year": 1944, + "cast": [ + "Rod Cameron", + "Virginia Christine" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Once Upon a Time", + "year": 1944, + "cast": [ + "Cary Grant", + "Janet Blair" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "One Body Too Many", + "year": 1944, + "cast": [ + "Bela Lugosi", + "Jean Parker" + ], + "genres": [ + "Horror", + "Comedy" + ] + }, + { + "title": "One Mysterious Night", + "year": 1944, + "cast": [ + "Chester Morris", + "Janis Carter" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Our Hearts Were Young and Gay", + "year": 1944, + "cast": [ + "Gail Russell", + "Diana Lynn" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Outlaw Roundup", + "year": 1944, + "cast": [ + "Dave O'Brien", + "James Newill" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Outlaw Trail", + "year": 1944, + "cast": [ + "Hoot Gibson", + "Bob Steele" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Outlaws of Santa Fe", + "year": 1944, + "cast": [ + "Don \"Red\" Barry", + "Helen Talbot" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Pardon My Rhythm", + "year": 1944, + "cast": [ + "Gloria Jean", + "Marjorie Weaver", + "Mel Tormé" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Partners of the Trail", + "year": 1944, + "cast": [ + "Johnny Mack Brown", + "Raymond Hatton", + "Christine McIntyre" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Passage to Marseille", + "year": 1944, + "cast": [ + "Humphrey Bogart", + "Claude Rains", + "Sydney Greenstreet", + "Peter Lorre" + ], + "genres": [ + "War" + ] + }, + { + "title": "Passport to Destiny", + "year": 1944, + "cast": [ + "Elsa Lanchester", + "Gordon Oliver" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Pearl of Death", + "year": 1944, + "cast": [ + "Basil Rathbone", + "Nigel Bruce", + "Evelyn Ankers" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Phantom Lady", + "year": 1944, + "cast": [ + "Franchot Tone", + "Ella Raines" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Pin Up Girl", + "year": 1944, + "cast": [ + "Betty Grable", + "Martha Raye" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Pinto Bandit", + "year": 1944, + "cast": [ + "Dave O'Brien", + "James Newill" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Port of 40 Thieves", + "year": 1944, + "cast": [ + "Stephanie Bachelor", + "Tom Keene" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Practically Yours", + "year": 1944, + "cast": [ + "Claudette Colbert", + "Fred MacMurray" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Price of Rendova", + "year": 1944, + "cast": [], + "genres": [ + "War" + ] + }, + { + "title": "Pride of the Plains", + "year": 1944, + "cast": [ + "Robert Livingston", + "Smiley Burnette" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Princess and the Pirate", + "year": 1944, + "cast": [ + "Bob Hope", + "Virginia Mayo", + "Walter Brennan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Purple Heart", + "year": 1944, + "cast": [ + "Dana Andrews", + "Richard Conte", + "Farley Granger" + ], + "genres": [ + "War" + ] + }, + { + "title": "Puttin' on the Dog", + "year": 1944, + "cast": [], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "The Racket Man", + "year": 1944, + "cast": [ + "Hugh Beaumont", + "Tom Neal", + "Jeanne Bates" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Raiders of Ghost City", + "year": 1944, + "cast": [ + "Dennis Moore", + "Lionel Atwill", + "Wanda McKay" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Raiders of the Border", + "year": 1944, + "cast": [ + "Johnny Mack Brown", + "Raymond Hatton" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Rainbow Island", + "year": 1944, + "cast": [ + "Dorothy Lamour", + "Eddie Bracken" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Range Law", + "year": 1944, + "cast": [ + "Johnny Mack Brown", + "Raymond Hatton" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Rationing", + "year": 1944, + "cast": [ + "Wallace Beery", + "Marjorie Main" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Reckless Age", + "year": 1944, + "cast": [ + "Gloria Jean", + "Henry Stephenson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Return of the Ape Man", + "year": 1944, + "cast": [ + "Bela Lugosi", + "John Carradine", + "Frank Moran" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Return of the Vampire", + "year": 1944, + "cast": [ + "Bela Lugosi", + "Nina Foch" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Return to Guam", + "year": 1944, + "cast": [], + "genres": [ + "Short" + ] + }, + { + "title": "Riders of the Santa Fe", + "year": 1944, + "cast": [ + "Rod Cameron", + "Jennifer Holt" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Riding West", + "year": 1944, + "cast": [ + "Charles Starrett", + "Shirley Patterson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Roger Touhy, Gangster", + "year": 1944, + "cast": [ + "Preston Foster", + "Victor McLaglen", + "Lois Andrews" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Rogues' Gallery", + "year": 1944, + "cast": [ + "Robin Raymond", + "Frank Jenks" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Rosie the Riveter", + "year": 1944, + "cast": [ + "Frank Albertson", + "Jane Frazee" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Russian Rhapsody", + "year": 1944, + "cast": [ + "Looney Tunes" + ], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "Saddle Leather Law", + "year": 1944, + "cast": [ + "Charles Starrett", + "Dub Taylor" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Sailor's Holiday", + "year": 1944, + "cast": [ + "Arthur Lake", + "Shelley Winters" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The San Antonio Kid", + "year": 1944, + "cast": [ + "Wild Bill Elliott", + "Linda Stirling" + ], + "genres": [ + "Western" + ] + }, + { + "title": "San Diego, I Love You", + "year": 1944, + "cast": [ + "Jon Hall", + "Louise Allbritton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "San Fernando Valley", + "year": 1944, + "cast": [ + "Roy Rogers", + "Dale Evans" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Scarlet Claw", + "year": 1944, + "cast": [ + "Basil Rathbone", + "Nigel Bruce", + "Paul Cavanagh" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Secret Command", + "year": 1944, + "cast": [ + "Pat O'Brien", + "Carole Landis", + "Chester Morris" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Secrets of Scotland Yard", + "year": 1944, + "cast": [ + "Edgar Barrier", + "Stephanie Bachelor", + "C. Aubrey Smith" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "See Here, Private Hargrove", + "year": 1944, + "cast": [ + "Robert Walker", + "Donna Reed", + "Keenan Wynn" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Sensations of 1945", + "year": 1944, + "cast": [ + "Eleanor Powell", + "Dennis O'Keefe", + "W. C. Fields", + "Sophie Tucker", + "Cab Callaway", + "Woody Herman" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Sergeant Mike", + "year": 1944, + "cast": [ + "Larry Parks", + "Jeanne Bates" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Seven Days Ashore", + "year": 1944, + "cast": [ + "Marcy McGuire", + "Virginia Mayo" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Seven Doors to Death", + "year": 1944, + "cast": [ + "June Clyde" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "The Seventh Cross", + "year": 1944, + "cast": [ + "Spencer Tracy", + "Hume Cronyn" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "Shadow of Suspicion", + "year": 1944, + "cast": [ + "Marjorie Weaver", + "Peter Cookson" + ], + "genres": [ + "Comedy", + "Crime" + ] + }, + { + "title": "Shadows in the Night", + "year": 1944, + "cast": [ + "Warner Baxter", + "Nina Foch" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Shake Hands with Murder", + "year": 1944, + "cast": [ + "Iris Adrian", + "Frank Jenks" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "She's a Soldier Too", + "year": 1944, + "cast": [ + "Beulah Bondi", + "Nina Foch" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "She's a Sweetheart", + "year": 1944, + "cast": [ + "Jane Frazee", + "Larry Parks" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Sheriff of Las Vegas", + "year": 1944, + "cast": [ + "Wild Bill Elliott", + "Peggy Stewart" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Sheriff of Sundown", + "year": 1944, + "cast": [ + "Allan Lane", + "Duncan Renaldo" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Shine On, Harvest Moon", + "year": 1944, + "cast": [ + "Ann Sheridan", + "Dennis Morgan", + "Jack Carson" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Show Business", + "year": 1944, + "cast": [ + "Eddie Cantor", + "George Murphy", + "Joan Davis" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Signed Judgment", + "year": 1944, + "cast": [ + "Charles Starrett", + "Vi Athens", + "Dub Taylor" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Silent Partner", + "year": 1944, + "cast": [ + "William \"Bill\" Henry", + "Grant Withers" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Silver City Kid", + "year": 1944, + "cast": [ + "Allan Lane", + "Peggy Stewart" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Since You Went Away", + "year": 1944, + "cast": [ + "Claudette Colbert", + "Jennifer Jones", + "Shirley Temple", + "Joseph Cotten" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Sing a Jingle", + "year": 1944, + "cast": [ + "Allan Jones", + "June Vincent" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Sing, Neighbor, Sing", + "year": 1944, + "cast": [ + "Ruth Terry", + "Roy Acuff" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Singing Sheriff", + "year": 1944, + "cast": [ + "Bob Crosby", + "Fay McKenzie" + ], + "genres": [ + "Musical", + "Western" + ] + }, + { + "title": "Slightly Terrific", + "year": 1944, + "cast": [ + "Leon Errol", + "Anne Rooney" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Something for the Boys", + "year": 1944, + "cast": [ + "Carmen Miranda", + "Phil Silvers", + "Perry Como" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Song of Nevada", + "year": 1944, + "cast": [ + "Roy Rogers", + "Dale Evans" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Song of the Open Road", + "year": 1944, + "cast": [ + "Jane Powell", + "Bonita Granville", + "Edgar Bergen" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Song of Russia", + "year": 1944, + "cast": [ + "Robert Taylor", + "Susan Peters" + ], + "genres": [ + "War" + ] + }, + { + "title": "Song of the Range", + "year": 1944, + "cast": [ + "Jimmy Wakely", + "Dennis Moore" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Sonora Stagecoach", + "year": 1944, + "cast": [ + "Bob Steele", + "Hoot Gibson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Soul of a Monster", + "year": 1944, + "cast": [ + "Rose Hobart", + "George Macready" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "South of Dixie", + "year": 1944, + "cast": [ + "Anne Gwynne", + "Jerome Cowan" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Spider Woman", + "year": 1944, + "cast": [ + "Basil Rathbone", + "Nigel Bruce", + "Gale Sondergaard" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Spook Town", + "year": 1944, + "cast": [ + "Dave O'Brien" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Stage Door Cartoon", + "year": 1944, + "cast": [], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "Stagecoach to Monterey", + "year": 1944, + "cast": [ + "Allan Lane", + "Peggy Stewart" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Standing Room Only", + "year": 1944, + "cast": [ + "Fred MacMurray", + "Paulette Goddard" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Stars on Parade", + "year": 1944, + "cast": [ + "Larry Parks", + "Lynn Merrick", + "Jeff Donnell" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Step Lively", + "year": 1944, + "cast": [ + "Frank Sinatra", + "Gloria DeHaven" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Storm Over Lisbon", + "year": 1944, + "cast": [ + "Vera Ralston", + "Erich von Stroheim" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Story of Dr. Wassell", + "year": 1944, + "cast": [ + "Gary Cooper", + "Laraine Day", + "Signe Hasso" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "Strange Affair", + "year": 1944, + "cast": [ + "Allyn Joslyn", + "Evelyn Keyes", + "Edgar Buchanan" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Strange Confession", + "year": 1944, + "cast": [ + "Lon Chaney Jr.", + "J. Carrol Naish", + "Brenda Joyce" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Strangers in the Night", + "year": 1944, + "cast": [ + "William Terry", + "Virginia Grey" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Summer Storm", + "year": 1944, + "cast": [ + "Linda Darnell", + "George Sanders", + "Anna Lee" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sunday Dinner for a Soldier", + "year": 1944, + "cast": [ + "Anne Baxter", + "John Hodiak" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Sundown Valley", + "year": 1944, + "cast": [ + "Charles Starrett", + "Jeanne Bates" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Suspect", + "year": 1944, + "cast": [ + "Charles Laughton", + "Ella Raines" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Sweet and Low-Down", + "year": 1944, + "cast": [ + "Linda Darnell", + "Benny Goodman" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Sweethearts of the U.S.A.", + "year": 1944, + "cast": [ + "Una Merkel", + "Harry Parke", + "Teala Loring" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Swing Hostess", + "year": 1944, + "cast": [ + "Martha Tilton", + "Iris Adrian" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Swing in the Saddle", + "year": 1944, + "cast": [ + "Jane Frazee", + "Guinn Williams", + "Sally Bliss" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Swingtime Johnny", + "year": 1944, + "cast": [ + "Harriet Hilliard", + "The Andrews Sisters" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Tahiti Nights", + "year": 1944, + "cast": [ + "Jinx Falkenburg", + "Dave O'Brien" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Take It Big", + "year": 1944, + "cast": [ + "Harriet Hilliard", + "Jack Haley", + "Ozzie Nelson" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Take It or Leave It", + "year": 1944, + "cast": [ + "Phil Baker", + "Madge Meredith" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Tall in the Saddle", + "year": 1944, + "cast": [ + "John Wayne", + "Ella Raines", + "Ward Bond" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Tampico", + "year": 1944, + "cast": [ + "Edward G. Robinson", + "Lynn Bari", + "Victor McLaglen" + ], + "genres": [ + "War" + ] + }, + { + "title": "Target for Today", + "year": 1944, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "Texas Masquerade", + "year": 1944, + "cast": [ + "William Boyd", + "Andy Clyde" + ], + "genres": [ + "Western" + ] + }, + { + "title": "That's My Baby!", + "year": 1944, + "cast": [ + "Richard Arlen", + "Ellen Drew" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "They Live in Fear", + "year": 1944, + "cast": [ + "Otto Kruger", + "Clifford Severn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Thirty Seconds over Tokyo", + "year": 1944, + "cast": [ + "Spencer Tracy", + "Van Johnson" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "This Is the Life", + "year": 1944, + "cast": [ + "Donald O'Connor", + "Susanna Foster" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Thoroughbreds", + "year": 1944, + "cast": [ + "Tom Neal", + "Adele Mara" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Three Caballeros", + "year": 1944, + "cast": [ + "Aurora Miranda" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Three Is a Family", + "year": 1944, + "cast": [ + "Marjorie Reynolds", + "Charles Ruggles" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Three Little Sisters", + "year": 1944, + "cast": [ + "Mary Lee", + "Ruth Terry", + "Cheryl Walker" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Three of a Kind", + "year": 1944, + "cast": [ + "Billy Gilbert", + "June Lang" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Thundering Gun Slingers", + "year": 1944, + "cast": [ + "Buster Crabbe", + "Al St. John" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Tick Tock Tuckered", + "year": 1944, + "cast": [], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "The Tiger Woman", + "year": 1944, + "cast": [ + "Allan Lane", + "Linda Stirling" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Till We Meet Again", + "year": 1944, + "cast": [ + "Barbara Britton", + "Ray Milland" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Timber Queen", + "year": 1944, + "cast": [ + "Mary Beth Hughes", + "Richard Arlen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "To Have and Have Not", + "year": 1944, + "cast": [ + "Humphrey Bogart", + "Lauren Bacall", + ".", + "Walter Brennan", + "Hoagy Carmichael" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Together Again", + "year": 1944, + "cast": [ + "Irene Dunne", + "Charles Boyer" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Tomorrow, the World!", + "year": 1944, + "cast": [ + "Fredric March", + "Betty Field", + "Agnes Moorehead" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Town Went Wild", + "year": 1944, + "cast": [ + "Freddie Bartholomew", + "Jimmy Lydon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Trail to Gunsight", + "year": 1944, + "cast": [ + "Eddie Dew", + "Lyle Talbot" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Trigger Law", + "year": 1944, + "cast": [ + "Hoot Gibson", + "Bob Steele" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Trigger Trail", + "year": 1944, + "cast": [ + "Rod Cameron", + "Vivian Austin" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Trocadero", + "year": 1944, + "cast": [ + "Rosemary Lane", + "Johnny Downs", + "Ralph Morgan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Tucson Raiders", + "year": 1944, + "cast": [ + "Wild Bill Elliott", + "Peggy Stewart" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Tunisian Victory", + "year": 1944, + "cast": [], + "genres": [ + "War" + ] + }, + { + "title": "Twilight on the Prairie", + "year": 1944, + "cast": [ + "Johnny Downs", + "Vivian Austin" + ], + "genres": [ + "Western", + "Musical" + ] + }, + { + "title": "Two Girls and a Sailor", + "year": 1944, + "cast": [ + "Van Johnson", + "June Allyson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Two-Man Submarine", + "year": 1944, + "cast": [ + "Tom Neal", + "Ann Savage" + ], + "genres": [ + "War" + ] + }, + { + "title": "U-Boat Prisoner", + "year": 1944, + "cast": [ + "Bruce Bennett", + "Erik Rolf" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "The Uninvited", + "year": 1944, + "cast": [ + "Ray Milland", + "Ruth Hussey", + "Donald Crisp" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Uncertain Glory", + "year": 1944, + "cast": [ + "Errol Flynn", + "Paul Lukas", + "Faye Emerson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Unwritten Code", + "year": 1944, + "cast": [ + "Ann Savage", + "Tom Neal" + ], + "genres": [ + "War" + ] + }, + { + "title": "Up in Arms", + "year": 1944, + "cast": [ + "Danny Kaye", + "Dinah Shore", + "Dana Andrews" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Up in Mabel's Room", + "year": 1944, + "cast": [ + "Marjorie Reynolds", + "Dennis O'Keefe", + "Gail Patrick" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Utah Kid", + "year": 1944, + "cast": [ + "Hoot Gibson", + "Bob Steele", + "Beatrice Gray" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Valley of Vengeance", + "year": 1944, + "cast": [ + "Buster Crabbe", + "Evelyn Finley" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Very Thought of You", + "year": 1944, + "cast": [ + "Dennis Morgan", + "Eleanor Parker" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Vigilantes of Dodge City", + "year": 1944, + "cast": [ + "Wild Bill Elliott", + "Linda Stirling" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Voice in the Wind", + "year": 1944, + "cast": [ + "Francis Lederer", + "Sigrid Gurie" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Voodoo Man", + "year": 1944, + "cast": [ + "Bela Lugosi", + "John Carradine", + "George Zucco" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Waterfront", + "year": 1944, + "cast": [ + "J. Carrol Naish", + "Maris Wrixon" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "A Wave, a WAC and a Marine", + "year": 1944, + "cast": [ + "Elyse Knox", + "Ann Gillis", + "Sally Eilers" + ], + "genres": [ + "Romance", + "War", + "Comedy" + ] + }, + { + "title": "Week-End Pass", + "year": 1944, + "cast": [ + "Martha O'Driscoll", + "Noah Beery Jr." + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Weird Woman", + "year": 1944, + "cast": [ + "Lon Chaney Jr.", + "Anne Gwynne" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "West of the Rio Grande", + "year": 1944, + "cast": [ + "Johnny Mack Brown", + "Raymond Hatton", + "Christine McIntyre" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Westward Bound", + "year": 1944, + "cast": [ + "Ken Maynard", + "Hoot Gibson", + "Bob Steele" + ], + "genres": [ + "Western" + ] + }, + { + "title": "What a Man!", + "year": 1944, + "cast": [ + "Johnny Downs", + "Wanda McKay" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "What Makes a Battle", + "year": 1944, + "cast": [], + "genres": [ + "Short" + ] + }, + { + "title": "What's Cookin' Doc?", + "year": 1944, + "cast": [ + "Bugs Bunny" + ], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "When Strangers Marry", + "year": 1944, + "cast": [ + "Kim Hunter", + "Dean Jagger" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "When the Lights Go on Again", + "year": 1944, + "cast": [ + "Jimmy Lydon", + "Regis Toomey" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Whispering Skull", + "year": 1944, + "cast": [ + "Tex Ritter", + "Guy Wilkerson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Whistler", + "year": 1944, + "cast": [ + "Richard Dix", + "Gloria Stuart", + "Joan Woodbury" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The White Cliffs of Dover", + "year": 1944, + "cast": [ + "Irene Dunne", + "Alan Marshal" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "Wild Horse Phantom", + "year": 1944, + "cast": [ + "Buster Crabbe", + "Kermit Maynard" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Wilson", + "year": 1944, + "cast": [ + "Charles Coburn", + "Alexander Knox", + "Geraldine Fitzgerald", + "Thomas Mitchell" + ], + "genres": [] + }, + { + "title": "Wing and a Prayer", + "year": 1944, + "cast": [ + "Don Ameche", + "Dana Andrews", + "Cedric Hardwicke" + ], + "genres": [ + "War" + ] + }, + { + "title": "Winged Victory", + "year": 1944, + "cast": [ + "Lon McCallister", + "Jeanne Crain", + "Edmond O'Brien", + "Judy Holliday" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "With the Marines at Tarawa", + "year": 1944, + "cast": [], + "genres": [ + "War" + ] + }, + { + "title": "The Woman in the Window", + "year": 1944, + "cast": [ + "Edward G. Robinson", + "Joan Bennett", + "Raymond Massey" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Wyoming Hurricane", + "year": 1944, + "cast": [ + "Russell Hayden", + "Dub Taylor" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Yellow Rose of Texas", + "year": 1944, + "cast": [ + "Roy Rogers", + "Dale Evans", + "Trigger" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Yoke's on Me", + "year": 1944, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Comedy", + "Short" + ] + }, + { + "title": "You Can't Ration Love", + "year": 1944, + "cast": [ + "Betty Jane Rhodes", + "Marjorie Weaver", + "Marie Wilson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Youth Runs Wild", + "year": 1944, + "cast": [ + "Bonita Granville", + "Kent Smith" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Zoot Cat", + "year": 1944, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "Zorro's Black Whip", + "year": 1944, + "cast": [ + "Linda Stirling" + ], + "genres": [ + "Western" + ] + }, + { + "title": "6th Marine Division on Okinawa", + "year": 1945, + "cast": [ + "Harlon Block" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Abbott and Costello in Hollywood", + "year": 1945, + "cast": [ + "Abbott and Costello", + "Lucille Ball", + "Rags Ragland" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Adventure", + "year": 1945, + "cast": [ + "Clark Gable", + "Greer Garson", + "Joan Blondell" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Adventures of Kitty O'Day", + "year": 1945, + "cast": [ + "Jean Parker", + "Peter Cookson" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Adventures of Rusty", + "year": 1945, + "cast": [ + "Margaret Lindsay", + "Conrad Nagel" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Affairs of Susan", + "year": 1945, + "cast": [ + "Joan Fontaine", + "George Brent", + "Dennis O'Keefe" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Allotment Wives", + "year": 1945, + "cast": [ + "Kay Francis", + "Otto Kruger", + "Gertrude Michael" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Along Came Jones", + "year": 1945, + "cast": [ + "Gary Cooper", + "Loretta Young", + "William Demarest", + "Dan Duryea" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Along the Navajo Trail", + "year": 1945, + "cast": [ + "Roy Rogers", + "Dale Evans", + "Estelita Rodriguez" + ], + "genres": [ + "Western" + ] + }, + { + "title": "An Angel Comes to Brooklyn", + "year": 1945, + "cast": [ + "Barbara Perry", + "Charles Kemper" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Anchors Aweigh", + "year": 1945, + "cast": [ + "Frank Sinatra", + "Kathryn Grayson", + "Gene Kelly" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "And Then There Were None", + "year": 1945, + "cast": [ + "Barry Fitzgerald", + "Walter Huston", + "Louis Hayward", + "Roland Young" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Apology for Murder", + "year": 1945, + "cast": [ + "Ann Savage", + "Hugh Beaumont" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Appointment in Tokyo", + "year": 1945, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "Arson Squad", + "year": 1945, + "cast": [ + "Frank Albertson", + "Robert Armstrong" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Back to Bataan", + "year": 1945, + "cast": [ + "John Wayne", + "Anthony Quinn", + "Beulah Bondi" + ], + "genres": [ + "War" + ] + }, + { + "title": "Bad Men of the Border", + "year": 1945, + "cast": [ + "Kirby Grant", + "Armida" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Bandits of the Badlands", + "year": 1945, + "cast": [ + "Sunset Carson", + "Peggy Stewart" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Battle of San Pietro", + "year": 1945, + "cast": [ + "Mark W. Clark", + "John Huston", + "(narrator)" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Bedside Manner", + "year": 1945, + "cast": [ + "John Carroll", + "Ruth Hussey", + "Ann Rutherford" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Behind City Lights", + "year": 1945, + "cast": [ + "Lynne Roberts", + "Peter Cookson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Bell for Adano", + "year": 1945, + "cast": [ + "Gene Tierney", + "John Hodiak", + "William Bendix" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "Bells of Rosarita", + "year": 1945, + "cast": [ + "Roy Rogers", + "Dale Evans" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Bells of St. Mary's", + "year": 1945, + "cast": [ + "Bing Crosby", + "Ingrid Bergman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Betrayal from the East", + "year": 1945, + "cast": [ + "Lee Tracy", + "Nancy Kelly" + ], + "genres": [ + "War" + ] + }, + { + "title": "Between Two Women", + "year": 1945, + "cast": [ + "Van Johnson", + "Gloria DeHaven", + "Marilyn Maxwell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Bewitched", + "year": 1945, + "cast": [ + "Phyllis Thaxter", + "Edmund Gwenn" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Beyond the Pecos", + "year": 1945, + "cast": [ + "Rod Cameron", + "Jennifer Holt" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Big Show-Off", + "year": 1945, + "cast": [ + "Arthur Lake", + "Dale Evans" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Black Market Babies", + "year": 1945, + "cast": [ + "Teala Loring", + "Kane Richmond" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Blazing the Western Trail", + "year": 1945, + "cast": [ + "Charles Starrett", + "Dub Taylor", + "Carole Mathews" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Blonde from Brooklyn", + "year": 1945, + "cast": [ + "Bob Haymes", + "Lynn Merrick" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Blonde Ransom", + "year": 1945, + "cast": [ + "Virginia Grey", + "Pinky Lee" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Blood on the Sun", + "year": 1945, + "cast": [ + "James Cagney", + "Sylvia Sidney" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Body Snatcher", + "year": 1945, + "cast": [ + "Boris Karloff", + "Bela Lugosi" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Booby Dupes", + "year": 1945, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Comedy", + "Short" + ] + }, + { + "title": "Border Badmen", + "year": 1945, + "cast": [ + "Buster Crabbe", + "Lorraine Miller" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Boston Blackie Booked on Suspicion", + "year": 1945, + "cast": [ + "Chester Morris", + "Lynn Merrick" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Boston Blackie's Rendezvous", + "year": 1945, + "cast": [ + "Chester Morris", + "Nina Foch" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Both Barrels Blazing", + "year": 1945, + "cast": [ + "Charles Starrett", + "Dub Taylor" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Brenda Starr, Reporter", + "year": 1945, + "cast": [ + "Joan Woodbury" + ], + "genres": [] + }, + { + "title": "Brewster's Millions", + "year": 1945, + "cast": [ + "Dennis O'Keefe", + "Helen Walker", + "June Havoc" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Brighton Strangler", + "year": 1945, + "cast": [ + "John Loder", + "June Duprez" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Bring on the Girls", + "year": 1945, + "cast": [ + "Veronica Lake", + "Marjorie Reynolds" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Bullfighters", + "year": 1945, + "cast": [ + "Laurel and Hardy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Captain Eddie", + "year": 1945, + "cast": [ + "Fred MacMurray", + "Lynn Bari" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Captain from Köpenick", + "year": 1945, + "cast": [ + "Albert Bassermann", + "Mary Brian" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Captain Kidd", + "year": 1945, + "cast": [ + "Charles Laughton", + "Randolph Scott", + "Barbara Britton" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Captain Tugboat Annie", + "year": 1945, + "cast": [ + "Jane Darwell", + "Edgar Kennedy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Caribbean Mystery", + "year": 1945, + "cast": [ + "James Dunn", + "Sheila Ryan" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Cheaters", + "year": 1945, + "cast": [ + "Joseph Schildkraut", + "Billie Burke" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Cherokee Flash", + "year": 1945, + "cast": [ + "Sunset Carson", + "Linda Stirling", + "Tom London" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Chicago Kid", + "year": 1945, + "cast": [ + "Don \"Red\" Barry", + "Otto Kruger" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "China Sky", + "year": 1945, + "cast": [ + "Randolph Scott", + "Ruth Warrick", + "Ellen Drew" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "China's Little Devils", + "year": 1945, + "cast": [ + "Harry Carey", + "Paul Kelly" + ], + "genres": [ + "War" + ] + }, + { + "title": "Christmas in Connecticut", + "year": 1945, + "cast": [ + "Barbara Stanwyck", + "Dennis Morgan", + "Reginald Gardiner", + "Sydney Greenstreet" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Circumstantial Evidence", + "year": 1945, + "cast": [ + "Lloyd Nolan", + "Michael O'Shea", + "Trudy Marshall" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Cisco Kid Returns", + "year": 1945, + "cast": [ + "Duncan Renaldo", + "Martin Garralaga" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Clock", + "year": 1945, + "cast": [ + "Judy Garland", + "Robert Walker" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Club Havana", + "year": 1945, + "cast": [ + "Margaret Lindsay", + "Tom Neal", + "Lita Baron" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Code of the Lawless", + "year": 1945, + "cast": [ + "Kirby Grant", + "Jane Adams" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Colorado Pioneers", + "year": 1945, + "cast": [ + "Wild Bill Elliott", + "Alice Fleming" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Come Out Fighting", + "year": 1945, + "cast": [ + "Leo Gorcey", + "Huntz Hall", + "Billy Benedict" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Confidential Agent", + "year": 1945, + "cast": [ + "Charles Boyer", + "Lauren Bacall" + ], + "genres": [ + "Spy" + ] + }, + { + "title": "Conflict", + "year": 1945, + "cast": [ + "Humphrey Bogart", + "Alexis Smith", + "Sydney Greenstreet" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "The Corn Is Green", + "year": 1945, + "cast": [ + "Bette Davis", + "Joan Lorring", + "John Dall" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Cornered", + "year": 1945, + "cast": [ + "Dick Powell", + "Walter Slezak" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Corpus Christi Bandits", + "year": 1945, + "cast": [ + "Allan Lane", + "Helen Talbot" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Counter-Attack", + "year": 1945, + "cast": [ + "Paul Muni", + "Marguerite Chapman", + "Larry Parks" + ], + "genres": [ + "War" + ] + }, + { + "title": "The Crime Doctor's Courage", + "year": 1945, + "cast": [ + "Warner Baxter", + "Hillary Brooke" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Crime Doctor's Warning", + "year": 1945, + "cast": [ + "Warner Baxter", + "Dusty Anderson" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Crime, Inc.", + "year": 1945, + "cast": [ + "Leo Carrillo", + "Tom Neal", + "Martha Tilton", + "Lionel Atwill" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Crimson Canary", + "year": 1945, + "cast": [ + "Noah Beery Jr.", + "Lois Collier", + "Steven Geray" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Dakota", + "year": 1945, + "cast": [ + "John Wayne", + "Vera Ralston" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Daltons Ride Again", + "year": 1945, + "cast": [ + "Lon Chaney Jr.", + "Alan Curtis", + "Martha O'Driscoll" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Dangerous Intruder", + "year": 1945, + "cast": [ + "Veda Ann Borg", + "Charles Arnt" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Dangerous Partners", + "year": 1945, + "cast": [ + "Signe Hasso", + "James Craig" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Danger Signal", + "year": 1945, + "cast": [ + "Faye Emerson", + "Zachary Scott" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Death Mills", + "year": 1945, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "Delightfully Dangerous", + "year": 1945, + "cast": [ + "Jane Powell", + "Ralph Bellamy", + "Constance Moore" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Detour", + "year": 1945, + "cast": [ + "Tom Neal", + "Ann Savage" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Diamond Horseshoe", + "year": 1945, + "cast": [ + "Betty Grable", + "Dick Haymes", + "Phil Silvers" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Dick Tracy", + "year": 1945, + "cast": [ + "Morgan Conway", + "Anne Jeffreys", + "Mike Mazurki" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Dillinger", + "year": 1945, + "cast": [ + "Lawrence Tierney", + "Anne Jeffreys" + ], + "genres": [ + "Biography", + "Crime" + ] + }, + { + "title": "Divorce", + "year": 1945, + "cast": [ + "Kay Francis", + "Bruce Cabot", + "Helen Mack" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Docks of New York", + "year": 1945, + "cast": [ + "Leo Gorcey", + "Huntz Hall" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Doll Face", + "year": 1945, + "cast": [ + "Vivian Blaine", + "Carmen Miranda", + "Dennis O'Keefe" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Dolly Sisters", + "year": 1945, + "cast": [ + "Betty Grable", + "June Haver", + "John Payne" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Don Juan Quilligan", + "year": 1945, + "cast": [ + "William Bendix", + "Phil Silvers" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Don't Fence Me In", + "year": 1945, + "cast": [ + "Roy Rogers", + "Dale Evans" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Draftee Daffy", + "year": 1945, + "cast": [ + "Daffy Duck" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Duffy's Tavern", + "year": 1945, + "cast": [ + "Bing Crosby", + "Betty Hutton", + "Paulette Goddard", + "Alan Ladd", + "Dorothy Lamour" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Eadie Was a Lady", + "year": 1945, + "cast": [ + "Ann Miller", + "Jeff Donnell" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Earl Carroll Vanities", + "year": 1945, + "cast": [ + "Dennis O'Keefe", + "Constance Moore", + "Eve Arden" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Easy to Look at", + "year": 1945, + "cast": [ + "Gloria Jean", + "Kirby Grant", + "Eric Blore" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Enchanted Cottage", + "year": 1945, + "cast": [ + "Robert Young", + "Dorothy McGuire" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "The Enchanted Forest", + "year": 1945, + "cast": [ + "Edmund Lowe", + "Brenda Joyce" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Enemy of the Law", + "year": 1945, + "cast": [ + "Tex Ritter", + "Kay Hughes" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Escape in the Desert", + "year": 1945, + "cast": [ + "Jean Sullivan", + "Philip Dorn", + "Irene Manning" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Escape in the Fog", + "year": 1945, + "cast": [ + "Otto Kruger", + "Nina Foch" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Eve Knew Her Apples", + "year": 1945, + "cast": [ + "Ann Miller", + "William Wright" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "The Falcon in San Francisco", + "year": 1945, + "cast": [ + "Tom Conway", + "Rita Corday" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Fallen Angel", + "year": 1945, + "cast": [ + "Alice Faye", + "Dana Andrews", + "Linda Darnell" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Fashion Model", + "year": 1945, + "cast": [ + "Robert Lowery", + "Marjorie Weaver", + "Tim Ryan" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Fatal Witness", + "year": 1945, + "cast": [ + "Evelyn Ankers", + "Richard Fraser", + "Barbara Everest" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Federal Operator 99", + "year": 1945, + "cast": [ + "Helen Talbot", + "Lorna Gray" + ], + "genres": [] + }, + { + "title": "Fighting Bill Carson", + "year": 1945, + "cast": [ + "Buster Crabbe", + "Kay Hughes" + ], + "genres": [ + "Western" + ] + }, + { + "title": "First Yank into Tokyo", + "year": 1945, + "cast": [ + "Tom Neal", + "Barbara Hale" + ], + "genres": [ + "War" + ] + }, + { + "title": "Flame of Barbary Coast", + "year": 1945, + "cast": [ + "John Wayne", + "Ann Dvorak", + "Joseph Schildkraut" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Flame of the West", + "year": 1945, + "cast": [ + "Johnny Mack Brown", + "Raymond Hatton", + "Joan Woodbury" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Flaming Bullets", + "year": 1945, + "cast": [ + "Tex Ritter", + "Dave O'Brien" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Flirty Birdy", + "year": 1945, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "Fog Island", + "year": 1945, + "cast": [ + "George Zucco", + "Lionel Atwill" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Follow That Woman", + "year": 1945, + "cast": [ + "William Gargan", + "Nancy Kelly" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Forever Yours", + "year": 1945, + "cast": [ + "Gale Storm", + "C. Aubrey Smith", + "Conrad Nagel" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Friendly Ghost", + "year": 1945, + "cast": [ + "Casper" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Frisco Sal", + "year": 1945, + "cast": [ + "Susanna Foster", + "Turhan Bey" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Frontier Feud", + "year": 1945, + "cast": [ + "Johnny Mack Brown", + "Raymond Hatton" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Frontier Fugitives", + "year": 1945, + "cast": [ + "Tex Ritter", + "Lorraine Miller" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Frontier Gal", + "year": 1945, + "cast": [ + "Yvonne de Carlo", + "Rod Cameron" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Frozen Ghost", + "year": 1945, + "cast": [ + "Lon Chaney Jr.", + "Elena Verdugo", + "Evelyn Ankers", + "Douglas Dumbrille" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Fury in the Pacific", + "year": 1945, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "A Game of Death", + "year": 1945, + "cast": [ + "Audrey Long", + "John Loder" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Gangs of the Waterfront", + "year": 1945, + "cast": [ + "Stephanie Bachelor", + "Robert Armstrong" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Gangster's Den", + "year": 1945, + "cast": [ + "Buster Crabbe", + "Al St. John" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Gay Senorita", + "year": 1945, + "cast": [ + "Jinx Falkenburg", + "Jim Bannon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "G. I. Honeymoon", + "year": 1945, + "cast": [ + "Gale Storm", + "Arline Judge" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "George White's Scandals", + "year": 1945, + "cast": [ + "Joan Davis", + "Jack Haley" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Getting Gertie's Garter", + "year": 1945, + "cast": [ + "Dennis O'Keefe", + "Marie McDonald", + "Barry Sullivan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Girl, A Gal and a Pal", + "year": 1945, + "cast": [ + "Ross Hunter", + "Lynn Merrick", + "Ted Donaldson" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "The Girl of the Limberlost", + "year": 1945, + "cast": [ + "Ruth Nelson", + "Gloria Holden" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Girls of the Big House", + "year": 1945, + "cast": [ + "Lynne Roberts", + "Virginia Christine" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "God Is My Co-Pilot", + "year": 1945, + "cast": [ + "Dennis Morgan", + "Dane Clark", + "Raymond Massey" + ], + "genres": [ + "War" + ] + }, + { + "title": "The Great Flamarion", + "year": 1945, + "cast": [ + "Eric von Stroheim", + "Mary Beth Hughes" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Great John L.", + "year": 1945, + "cast": [ + "Linda Darnell", + "Barbara Britton", + "Greg McClure" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Great Stagecoach Robbery", + "year": 1945, + "cast": [ + "Wild Bill Elliott", + "Alice Fleming" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Grissly's Millions", + "year": 1945, + "cast": [ + "Virginia Grey" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "Guest Wife", + "year": 1945, + "cast": [ + "Claudette Colbert", + "Don Ameche" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Gun Smoke", + "year": 1945, + "cast": [ + "Johnny Mack Brown", + "Jennifer Holt" + ], + "genres": [ + "Western" + ] + }, + { + "title": "A Guy, a Gal and a Pal", + "year": 1945, + "cast": [ + "Ross Hunter", + "Lynn Merrick" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hangover Square", + "year": 1945, + "cast": [ + "Laird Cregar", + "Linda Darnell", + "George Sanders" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hare Tonic", + "year": 1945, + "cast": [ + "Bugs Bunny" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Hare Trigger", + "year": 1945, + "cast": [ + "Bugs Bunny" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Having Wonderful Crime", + "year": 1945, + "cast": [ + "Pat O'Brien", + "George Murphy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Here Come the Co-Eds", + "year": 1945, + "cast": [ + "Abbott and Costello", + "Peggy Ryan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Here Is Germany", + "year": 1945, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "Her Highness and the Bellboy", + "year": 1945, + "cast": [ + "Hedy Lamarr", + "Robert Walker" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Her Lucky Night", + "year": 1945, + "cast": [ + "Martha O'Driscoll", + "Andrews Sisters" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Herr Meets Hare", + "year": 1945, + "cast": [ + "Bugs Bunny" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "The Hidden Eye", + "year": 1945, + "cast": [ + "Edward Arnold", + "Frances Rafferty" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "High Powered", + "year": 1945, + "cast": [ + "Phyllis Brooks", + "Robert Lowery" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "His Brother's Ghost", + "year": 1945, + "cast": [ + "Buster Crabbe", + "Al St. John" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Hit the Hay", + "year": 1945, + "cast": [ + "Judy Canova", + "Ross Hunter", + "Gloria Holden" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hitchhike to Happiness", + "year": 1945, + "cast": [ + "Al Pearce", + "Dale Evans" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Hockey Homicide", + "year": 1945, + "cast": [ + "Goofy" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Hold That Blonde", + "year": 1945, + "cast": [ + "Eddie Bracken", + "Veronica Lake", + "Albert Dekker" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hollywood and Vine", + "year": 1945, + "cast": [ + "Wanda McKay", + "James Ellison" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Honeymoon Ahead", + "year": 1945, + "cast": [ + "Allan Jones", + "Grace McDonald" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Horn Blows at Midnight", + "year": 1945, + "cast": [ + "Jack Benny", + "Alexis Smith" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hotel Berlin", + "year": 1945, + "cast": [ + "Faye Emerson", + "Raymond Massey", + "Andrea King", + "Peter Lorre" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The House I Live In", + "year": 1945, + "cast": [ + "Frank Sinatra" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "House of Dracula", + "year": 1945, + "cast": [ + "Lon Chaney", + "John Carradine", + "Onslow Stevens", + "Martha O'Driscoll", + "Skelton Knaggs" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The House on 92nd Street", + "year": 1945, + "cast": [ + "Lloyd Nolan", + "Signe Hasso", + "William Eythe" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "How Do You Dooo?", + "year": 1945, + "cast": [ + "Bert Gordon", + "Harry von Zell", + "Cheryl Walker" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "I Love a Bandleader", + "year": 1945, + "cast": [ + "Phil Harris", + "Eddie \"Rochester\" Anderson", + "Leslie Brooks" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "I Love a Mystery", + "year": 1945, + "cast": [ + "George Macready", + "Nina Foch" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Identity Unknown", + "year": 1945, + "cast": [ + "Richard Arlen", + "Cheryl Walker" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Idiots Deluxe", + "year": 1945, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Short" + ] + }, + { + "title": "If a Body Meets a Body", + "year": 1945, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Short" + ] + }, + { + "title": "I'll Remember April", + "year": 1945, + "cast": [ + "Gloria Jean", + "Kirby Grant" + ], + "genres": [ + "Comedy", + "Crime" + ] + }, + { + "title": "I'll Tell the World", + "year": 1945, + "cast": [ + "Lee Tracy", + "Brenda Joyce", + "June Preisser" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "In Old New Mexico", + "year": 1945, + "cast": [ + "Duncan Renaldo", + "Martin Garralaga" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Incendiary Blonde", + "year": 1945, + "cast": [ + "Betty Hutton", + "Barry Fitzgerald" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Intelligence and the Japanese Civilian", + "year": 1945, + "cast": [], + "genres": [] + }, + { + "title": "Isle of the Dead", + "year": 1945, + "cast": [ + "Boris Karloff", + "Ellen Drew" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "It Happened in Harlem", + "year": 1945, + "cast": [ + "Chris Columbus" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "It's a Pleasure", + "year": 1945, + "cast": [ + "Sonja Henie", + "Michael O'Shea" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "It's in the Bag!", + "year": 1945, + "cast": [ + "Fred Allen", + "Jack Benny", + "Don Ameche" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Jade Mask", + "year": 1945, + "cast": [ + "Sidney Toler", + "Mantan Moreland" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Jealousy", + "year": 1945, + "cast": [ + "John Loder", + "Jane Randolph" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "Johnny Angel", + "year": 1945, + "cast": [ + "George Raft", + "Claire Trevor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Jungle Captive", + "year": 1945, + "cast": [ + "Otto Kruger", + "Amelita Ward" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Jungle Queen", + "year": 1945, + "cast": [ + "Ruth Roman" + ], + "genres": [] + }, + { + "title": "Jungle Raiders", + "year": 1945, + "cast": [ + "Veda Ann Borg", + "Kane Richmond" + ], + "genres": [] + }, + { + "title": "Junior Miss", + "year": 1945, + "cast": [ + "Peggy Ann Garner", + "Faye Emerson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Keep Your Powder Dry", + "year": 1945, + "cast": [ + "Lana Turner", + "Laraine Day", + "Susan Peters" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Kid Sister", + "year": 1945, + "cast": [ + "Roger Pryor", + "Constance Worth" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Kiss and Tell", + "year": 1945, + "cast": [ + "Shirley Temple", + "Jerome Courtland", + "Walter Abel", + "Robert Benchley" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Kitty", + "year": 1945, + "cast": [ + "Paulette Goddard", + "Ray Milland", + "Patric Knowles" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Know Your Enemy: Japan", + "year": 1945, + "cast": [], + "genres": [] + }, + { + "title": "The Lady Confesses", + "year": 1945, + "cast": [ + "Mary Beth Hughes", + "Hugh Beaumont" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Lady on a Train", + "year": 1945, + "cast": [ + "Deanna Durbin", + "Ralph Bellamy" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Last Bomb", + "year": 1945, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "Lawless Empire", + "year": 1945, + "cast": [ + "Charles Starrett", + "Dub Taylor" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Leave Her to Heaven", + "year": 1945, + "cast": [ + "Gene Tierney", + "Jeanne Crain", + "Cornel Wilde", + "Vincent Price" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Leave It to Blondie", + "year": 1945, + "cast": [ + "Penny Singleton", + "Arthur Lake" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Let's Go Steady", + "year": 1945, + "cast": [ + "Jackie Moran", + "June Preisser" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Life with Blondie", + "year": 1945, + "cast": [ + "Penny Singleton", + "Arthur Lake" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Life with Feathers", + "year": 1945, + "cast": [ + "Tweety", + "Sylvester" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Lightning Raiders", + "year": 1945, + "cast": [ + "Buster Crabbe", + "Al St. John" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Lone Texas Ranger", + "year": 1945, + "cast": [ + "Wild Bill Elliott", + "Helen Talbot" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Lonesome Trail", + "year": 1945, + "cast": [ + "Jimmy Wakely", + "Lorraine Miller" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Lost Trail", + "year": 1945, + "cast": [ + "Johnny Mack Brown", + "Raymond Hatton", + "Jennifer Holt" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Lost Weekend", + "year": 1945, + "cast": [ + "Ray Milland", + "Jane Wyman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Love, Honor and Goodbye", + "year": 1945, + "cast": [ + "Virginia Bruce", + "Nils Asther" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Love Letters", + "year": 1945, + "cast": [ + "Jennifer Jones", + "Joseph Cotten" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Main Street After Dark", + "year": 1945, + "cast": [ + "Edward Arnold", + "Dorothy Morris" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Mama Loves Papa", + "year": 1945, + "cast": [ + "Leon Errol" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Man Alive", + "year": 1945, + "cast": [ + "Pat O'Brien", + "Ellen Drew" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Man in Half Moon Street", + "year": 1945, + "cast": [ + "Helen Walker", + "Nils Asther" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Man from Oklahoma", + "year": 1945, + "cast": [ + "Roy Rogers", + "Dale Evans" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Manhunt of Mystery Island", + "year": 1945, + "cast": [ + "Linda Stirling", + "Richard Bailey" + ], + "genres": [] + }, + { + "title": "The Man Who Walked Alone", + "year": 1945, + "cast": [ + "Kay Aldridge", + "Dave O'Brien" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Marked for Murder", + "year": 1945, + "cast": [ + "Tex Ritter", + "Dave O'Brien" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Marshal of Laredo", + "year": 1945, + "cast": [ + "Wild Bill Elliott", + "Peggy Stewart" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Masquerade in Mexico", + "year": 1945, + "cast": [ + "Dorothy Lamour", + "Patric Knowles", + "Ann Dvorak" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Master Key", + "year": 1945, + "cast": [ + "Milburn Stone" + ], + "genres": [] + }, + { + "title": "A Medal for Benny", + "year": 1945, + "cast": [ + "Dorothy Lamour", + "Arturo de Córdova" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Men in Her Diary", + "year": 1945, + "cast": [ + "Peggy Ryan", + "Jon Hall" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mexicana", + "year": 1945, + "cast": [ + "Tito Guízar", + "Constance Moore" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Micro-Phonies", + "year": 1945, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Short" + ] + }, + { + "title": "Midnight Manhunt", + "year": 1945, + "cast": [ + "William Gargan", + "Ann Savage" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Mildred Pierce", + "year": 1945, + "cast": [ + "Joan Crawford", + "Jack Carson", + "Ann Blyth", + "Zachary Scott", + "Eve Arden" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Missing Corpse", + "year": 1945, + "cast": [ + "J. Edward Bromberg", + "Isabel Randolph" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Molly and Me", + "year": 1945, + "cast": [ + "Gracie Fields", + "Monty Woolley", + "Roddy McDowall" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Mom and Dad", + "year": 1945, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Mouse Comes to Dinner", + "year": 1945, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Mr. and Mrs. America", + "year": 1945, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "Mr. Muggs Rides Again", + "year": 1945, + "cast": [ + "Leo Gorcey", + "Huntz Hall" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Murder, He Says", + "year": 1945, + "cast": [ + "Fred MacMurray", + "Helen Walker" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "My Japan", + "year": 1945, + "cast": [], + "genres": [] + }, + { + "title": "My Name Is Julia Ross", + "year": 1945, + "cast": [ + "Nina Foch", + "Dame May Whitty" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Navajo Kid", + "year": 1945, + "cast": [ + "Bob Steele", + "Caren Marsh" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Navajo Trail", + "year": 1945, + "cast": [ + "Johnny Mack Brown", + "Raymond Hatton", + "Jennifer Holt" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Naughty Nineties", + "year": 1945, + "cast": [ + "Abbott and Costello", + "Alan Curtis", + "Lois Collier" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Nazi Plan", + "year": 1945, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "Night Club Girl", + "year": 1945, + "cast": [ + "Vivian Austin", + "Judy Clark" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Nob Hill", + "year": 1945, + "cast": [ + "George Raft", + "Joan Bennett", + "Vivian Blaine" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Northwest Trail", + "year": 1945, + "cast": [ + "Bob Steele", + "Joan Woodbury" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Objective, Burma!", + "year": 1945, + "cast": [ + "Errol Flynn", + "William Prince" + ], + "genres": [ + "War" + ] + }, + { + "title": "Okinawa Bulletins", + "year": 1945, + "cast": [], + "genres": [ + "War" + ] + }, + { + "title": "On Stage Everybody", + "year": 1945, + "cast": [ + "Jack Oakie", + "Peggy Ryan" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Oregon Trail", + "year": 1945, + "cast": [ + "Sunset Carson", + "Peggy Stewart" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Our Job in Japan", + "year": 1945, + "cast": [], + "genres": [ + "War" + ] + }, + { + "title": "Our Vines Have Tender Grapes", + "year": 1945, + "cast": [ + "Edward G. Robinson", + "Margaret O'Brien" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Out of the Depths", + "year": 1945, + "cast": [ + "Jim Bannon", + "Ross Hunter" + ], + "genres": [ + "War" + ] + }, + { + "title": "Out of This World", + "year": 1945, + "cast": [ + "Veronica Lake", + "Eddie Bracken", + "Diana Lynn", + "Cass Daley" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Outlaws of the Rockies", + "year": 1945, + "cast": [ + "Charles Starrett", + "Carole Mathews", + "Dub Taylor" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Over 21", + "year": 1945, + "cast": [ + "Irene Dunne", + "Alexander Knox", + "Charles Coburn" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Pan-Americana", + "year": 1945, + "cast": [ + "Phillip Terry", + "Eve Arden" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Pardon My Past", + "year": 1945, + "cast": [ + "Fred MacMurray", + "Marguerite Chapman" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Paris Underground", + "year": 1945, + "cast": [ + "Constance Bennett", + "Gracie Fields", + "George Rigaud" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Patrick the Great", + "year": 1945, + "cast": [ + "Donald O'Connor", + "Peggy Ryan", + "Eve Arden" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Penthouse Rhythm", + "year": 1945, + "cast": [ + "Kirby Grant", + "Lois Collier", + "Eric Blore" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Phantom of 42nd Street", + "year": 1945, + "cast": [ + "Dave O'Brien", + "Kay Aldridge", + "Alan Mowbray" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Phantom of the Plains", + "year": 1945, + "cast": [ + "Wild Bill Elliott", + "Alice Fleming" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Phantom Speaks", + "year": 1945, + "cast": [ + "Richard Arlen", + "Lynne Roberts" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Picture of Dorian Gray", + "year": 1945, + "cast": [ + "George Sanders", + "Hurd Hatfield", + "Donna Reed", + "Peter Lawford" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "Pillow of Death", + "year": 1945, + "cast": [ + "Lon Chaney Jr.", + "Brenda Joyce" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Pillow to Post", + "year": 1945, + "cast": [ + "Ida Lupino", + "Sydney Greenstreet" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Power of the Whistler", + "year": 1945, + "cast": [ + "Richard Dix", + "Janis Carter" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Prairie Rustlers", + "year": 1945, + "cast": [ + "Buster Crabbe", + "Evelyn Finley" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Pride of the Marines", + "year": 1945, + "cast": [ + "John Garfield", + "Eleanor Parker", + "Dane Clark" + ], + "genres": [ + "War", + "Biography" + ] + }, + { + "title": "Prison Ship", + "year": 1945, + "cast": [ + "Nina Foch", + "Robert Lowery" + ], + "genres": [ + "War" + ] + }, + { + "title": "The Purple Monster Strikes", + "year": 1945, + "cast": [ + "Dennis Moore" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Pursuit to Algiers", + "year": 1945, + "cast": [ + "Basil Rathbone", + "Nigel Bruce" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Quiet Please!", + "year": 1945, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Radio Stars on Parade", + "year": 1945, + "cast": [ + "Brown and Carney", + "Frances Langford" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Remember These Faces", + "year": 1945, + "cast": [], + "genres": [ + "War" + ] + }, + { + "title": "Renegades of the Rio Grand", + "year": 1945, + "cast": [ + "Rod Cameron", + "Jennifer Holt" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Return of the Durango Kid", + "year": 1945, + "cast": [ + "Charles Starrett", + "Jean Stevens" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Rhapsody in Blue", + "year": 1945, + "cast": [ + "Robert Alda", + "Alexis Smith" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Rhythm Round-Up", + "year": 1945, + "cast": [ + "Ken Curtis", + "Cheryl Walker" + ], + "genres": [ + "Western", + "Musical" + ] + }, + { + "title": "Riders of the Dawn", + "year": 1945, + "cast": [ + "Jimmy Wakely", + "Sarah Padden" + ], + "genres": [ + "Western" + ] + }, + { + "title": "River Gang", + "year": 1945, + "cast": [ + "Gloria Jean", + "John Qualen" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Road to Alcatraz", + "year": 1945, + "cast": [ + "Robert Lowery", + "June Storey" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Rockin' in the Rockies", + "year": 1945, + "cast": [ + "The Three Stooges", + "Mary Beth Hughes" + ], + "genres": [ + "Comedy", + "Western" + ] + }, + { + "title": "Rough Riders of Cheyenne", + "year": 1945, + "cast": [ + "Sunset Carson", + "Peggy Stewart" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Rough Ridin' Justice", + "year": 1945, + "cast": [ + "Charles Starrett", + "Dub Taylor" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Roughly Speaking", + "year": 1945, + "cast": [ + "Rosalind Russell", + "Jack Carson" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Rough, Tough and Ready", + "year": 1945, + "cast": [ + "Chester Morris", + "Victor McLaglen", + "Jean Rogers", + "Veda Ann Borg" + ], + "genres": [ + "Action" + ] + }, + { + "title": "A Royal Scandal", + "year": 1945, + "cast": [ + "Tallulah Bankhead", + "Charles Coburn", + "Anne Baxter", + "Vincent Price" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Royal Mounted Rides Again", + "year": 1945, + "cast": [ + "Bill Kennedy", + "Milburn Stone" + ], + "genres": [] + }, + { + "title": "Rustlers' Hideout", + "year": 1945, + "cast": [ + "Buster Crabbe", + "Al St. John", + "Patti McCarty" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Rustlers of the Badlands", + "year": 1945, + "cast": [ + "Charles Starrett", + "Carla Balenda" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Saddle Serenade", + "year": 1945, + "cast": [ + "Jimmy Wakely", + "Jack Ingram" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Sagebrush Heroes", + "year": 1945, + "cast": [ + "Charles Starrett", + "Constance Worth" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Salome, Where She Danced", + "year": 1945, + "cast": [ + "Yvonne De Carlo", + "Rod Cameron", + "Walter Slezak" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Saga of the Franklin", + "year": 1945, + "cast": [], + "genres": [ + "War", + "Documentary" + ] + }, + { + "title": "The Sailor Takes a Wife", + "year": 1945, + "cast": [ + "Robert Walker", + "June Allyson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Salty O'Rourke", + "year": 1945, + "cast": [ + "Alan Ladd", + "Gail Russell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "San Antonio", + "year": 1945, + "cast": [ + "Errol Flynn", + "Alexis Smith", + "S.Z. Sakall" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Santa Fe Saddlemates", + "year": 1945, + "cast": [ + "Sunset Carson", + "Linda Stirling" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Saratoga Trunk", + "year": 1945, + "cast": [ + "Gary Cooper", + "Ingrid Bergman", + "Flora Robson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Scared Stiff", + "year": 1945, + "cast": [ + "Jack Haley", + "Ann Savage" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Scarlet Street", + "year": 1945, + "cast": [ + "Edward G. Robinson", + "Joan Bennett" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Scarlet Clue", + "year": 1945, + "cast": [ + "Sidney Toler", + "Mantan Moreland" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Scotland Yard Investigator", + "year": 1945, + "cast": [ + "C. Aubrey Smith", + "Erich von Stroheim" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Secret Agent X-9", + "year": 1945, + "cast": [ + "Lloyd Bridges", + "Keye Luke" + ], + "genres": [] + }, + { + "title": "Secrets of a Sorority Girl", + "year": 1945, + "cast": [ + "Rick Vallin", + "Ray Walker" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "See My Lawyer", + "year": 1945, + "cast": [ + "Ole Olsen", + "Chic Johnson", + "Grace McDonald" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Senorita from the West", + "year": 1945, + "cast": [ + "Allan Jones", + "Bonita Granville" + ], + "genres": [ + "Western", + "Comedy" + ] + }, + { + "title": "Sensation Hunters", + "year": 1945, + "cast": [ + "Doris Merrick", + "Robert Lowery" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Shadows of Death", + "year": 1945, + "cast": [ + "Buster Crabbe", + "Al St. John" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Shadow of Terror", + "year": 1945, + "cast": [ + "Richard Fraser", + "Cy Kendall" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Shady Lady", + "year": 1945, + "cast": [ + "Charles Coburn", + "Ginny Simms" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Shanghai Cobra", + "year": 1945, + "cast": [ + "Sidney Toler", + "Mantan Moreland", + "Joan Barclay" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Sheriff of Cimarron", + "year": 1945, + "cast": [ + "Sunset Carson", + "Linda Stirling" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Sherlock Holmes and the House of Fear", + "year": 1945, + "cast": [ + "Basil Rathbone", + "Nigel Bruce", + "Paul Cavanagh" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "She Gets Her Man", + "year": 1945, + "cast": [ + "Joan Davis", + "William Gargan", + "Vivian Austin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "She Went to the Races", + "year": 1945, + "cast": [ + "James Craig", + "Frances Gifford", + "Ava Gardner", + "Edmund Gwenn" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "She Wouldn't Say Yes", + "year": 1945, + "cast": [ + "Rosalind Russell", + "Lee Bowman", + "Adele Jergens" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Sing Me a Song of Texas", + "year": 1945, + "cast": [ + "Rosemary Lane", + "Tom Tyler" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Sing Your Way Home", + "year": 1945, + "cast": [ + "Jack Haley", + "Marcy McGuire" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Snafu", + "year": 1945, + "cast": [ + "Robert Benchley", + "Barbara Jo Allen" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Son of Lassie", + "year": 1945, + "cast": [ + "June Lockhart", + "Peter Lawford" + ], + "genres": [ + "Family", + "Drama" + ] + }, + { + "title": "A Song for Miss Julie", + "year": 1945, + "cast": [ + "Shirley Ross" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Song of Mexico", + "year": 1945, + "cast": [ + "Adele Mara", + "Edgar Barrier" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Song of Old Wyoming", + "year": 1945, + "cast": [ + "Eddie Dean", + "Sarah Padden" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Song of the Prairie", + "year": 1945, + "cast": [ + "Ken Curtis", + "June Storey", + "Jeff Donnell" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Song of the Sarong", + "year": 1945, + "cast": [ + "William Gargan", + "Nancy Kelly" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "A Song to Remember", + "year": 1945, + "cast": [ + "Cornel Wilde", + "Merle Oberon", + "Paul Muni" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "South of the Rio Grande", + "year": 1945, + "cast": [ + "Duncan Renaldo", + "Martin Garralaga", + "Lillian Molieri" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Southerner", + "year": 1945, + "cast": [ + "Zachary Scott", + "Betty Field" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Spanish Main", + "year": 1945, + "cast": [ + "Maureen O'Hara", + "Paul Henreid" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Spellbound", + "year": 1945, + "cast": [ + "Gregory Peck", + "Ingrid Bergman", + "Leo G. Carroll" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "The Spider", + "year": 1945, + "cast": [ + "Richard Conte", + "Faye Marlowe", + "Cara Williams" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "A Sporting Chance", + "year": 1945, + "cast": [ + "Jane Randolph", + "Edward Gargan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Springtime in Texas", + "year": 1945, + "cast": [ + "Jimmy Wakely", + "Dennis Moore" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Stagecoach Outlaws", + "year": 1945, + "cast": [ + "Buster Crabbe", + "Al St. John" + ], + "genres": [ + "Western" + ] + }, + { + "title": "State Fair", + "year": 1945, + "cast": [ + "Jeanne Crain", + "Dana Andrews", + "Dick Haymes", + "Vivian Blaine", + "Fay Bainter" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Steppin' in Society", + "year": 1945, + "cast": [ + "Edward Everett Horton", + "Gladys George", + "Ruth Terry" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Stilwell Road", + "year": 1945, + "cast": [ + "Narrated by", + "Ronald Reagan" + ], + "genres": [ + "War" + ] + }, + { + "title": "The Stork Club", + "year": 1945, + "cast": [ + "Betty Hutton", + "Barry Fitzgerald" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Story of G.I. Joe", + "year": 1945, + "cast": [ + "Burgess Meredith", + "Robert Mitchum" + ], + "genres": [ + "War" + ] + }, + { + "title": "The Story of the 14th Air Force", + "year": 1945, + "cast": [], + "genres": [] + }, + { + "title": "The Strange Affair of Uncle Harry", + "year": 1945, + "cast": [ + "George Sanders", + "Geraldine Fitzgerald", + "Ella Raines" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Strange Confession", + "year": 1945, + "cast": [ + "Lon Chaney Jr.", + "Brenda Joyce" + ], + "genres": [] + }, + { + "title": "Strange Holiday", + "year": 1945, + "cast": [ + "Claude Rains", + "Barbara Bates" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Strange Illusion", + "year": 1945, + "cast": [ + "Jimmy Lydon", + "Warren William", + "Sally Eilers" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Strange Mr. Gregory", + "year": 1945, + "cast": [ + "Edmund Lowe", + "Jean Rogers" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Stranger from Santa Fe", + "year": 1945, + "cast": [ + "Johnny Mack Brown", + "Raymond Hatton" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Sudan", + "year": 1945, + "cast": [ + "Maria Montez", + "Jon Hall" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Sunbonnet Sue", + "year": 1945, + "cast": [ + "Gale Storm", + "Phil Regan", + "Alan Mowbray" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Sunset in El Dorado", + "year": 1945, + "cast": [ + "Roy Rogers", + "Dale Evans" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Swingin' on a Rainbow", + "year": 1945, + "cast": [ + "Jane Frazee", + "Harry Langdon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Swing Out, Sister", + "year": 1945, + "cast": [ + "Rod Cameron", + "Billie Burke" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Swing Shift Cinderella", + "year": 1945, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "A Tale of Two Mice", + "year": 1945, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "Target Invisible", + "year": 1945, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "Tarzan and the Amazons", + "year": 1945, + "cast": [ + "Johnny Weissmuller", + "Brenda Joyce" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Tee for Two", + "year": 1945, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Tell It to a Star", + "year": 1945, + "cast": [ + "Ruth Terry" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Ten Cents a Dance", + "year": 1945, + "cast": [ + "Jane Frazee" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Texas Panhandle", + "year": 1945, + "cast": [ + "Charles Starrett", + "Carolina Cotton" + ], + "genres": [ + "Western" + ] + }, + { + "title": "That Night with You", + "year": 1945, + "cast": [ + "Franchot Tone", + "Susanna Foster" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "That's the Spirit", + "year": 1945, + "cast": [ + "Peggy Ryan", + "Jack Oakie" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "There Goes Kelly", + "year": 1945, + "cast": [ + "Jackie Moran", + "Wanda McKay" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "They Were Expendable", + "year": 1945, + "cast": [ + "John Wayne", + "Robert Montgomery", + "Donna Reed" + ], + "genres": [ + "War" + ] + }, + { + "title": "The Thin Man Goes Home", + "year": 1945, + "cast": [ + "William Powell", + "Myrna Loy", + "Gloria DeHaven" + ], + "genres": [ + "Mystery", + "Comedy" + ] + }, + { + "title": "This Love of Ours", + "year": 1945, + "cast": [ + "Merle Oberon", + "Claude Rains" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "This Man's Navy", + "year": 1945, + "cast": [ + "Wallace Beery", + "Tom Drake", + "Jan Clayton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Those Endearing Young Charms", + "year": 1945, + "cast": [ + "Robert Young", + "Laraine Day" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Thousand and One Nights", + "year": 1945, + "cast": [ + "Cornel Wilde", + "Phil Silvers" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "The Three Caballeros", + "year": 1945, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "Three in the Saddle", + "year": 1945, + "cast": [ + "Tex Ritter", + "Lorraine Miller" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Three Pests in a Mess", + "year": 1945, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Short" + ] + }, + { + "title": "Three's a Crowd", + "year": 1945, + "cast": [ + "Pamela Blake", + "Gertrude Michael" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Thrill of a Romance", + "year": 1945, + "cast": [ + "Van Johnson", + "Esther Williams", + "Frances Gifford" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Thunderhead, Son of Flicka", + "year": 1945, + "cast": [ + "Roddy McDowall", + "Preston Foster", + "Rita Johnson" + ], + "genres": [ + "Family", + "Drama" + ] + }, + { + "title": "The Tiger Woman", + "year": 1945, + "cast": [ + "Adele Mara", + "Peggy Stewart" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "To the Shores of Iwo Jima", + "year": 1945, + "cast": [], + "genres": [ + "War", + "Documentary" + ] + }, + { + "title": "Tonight and Every Night", + "year": 1945, + "cast": [ + "Rita Hayworth", + "Lee Bowman", + "Janet Blair" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Too Young to Know", + "year": 1945, + "cast": [ + "Joan Leslie", + "Robert Hutton", + "Dolores Moran" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Topaz", + "year": 1945, + "cast": [], + "genres": [ + "War", + "Documentary" + ] + }, + { + "title": "The Topeka Terror", + "year": 1945, + "cast": [ + "Allan Lane", + "Linda Stirling" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Town", + "year": 1945, + "cast": [], + "genres": [ + "War" + ] + }, + { + "title": "Trail of Kit Carson", + "year": 1945, + "cast": [ + "Allan Lane", + "Helen Talbot" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Trail to Vengeance", + "year": 1945, + "cast": [ + "Kirby Grant", + "Jane Adams" + ], + "genres": [ + "Western" + ] + }, + { + "title": "A Tree Grows in Brooklyn", + "year": 1945, + "cast": [ + "Dorothy McGuire", + "James Dunn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Trouble Chasers", + "year": 1945, + "cast": [ + "Billy Gilbert", + "Gloria Marlen" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The True Glory", + "year": 1945, + "cast": [], + "genres": [ + "War", + "Documentary" + ] + }, + { + "title": "Twice Blessed", + "year": 1945, + "cast": [ + "Lee and Lyn Wilde", + "Gail Patrick" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Two O'Clock Courage", + "year": 1945, + "cast": [ + "Tom Conway", + "Ann Rutherford" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Under Western Skies", + "year": 1945, + "cast": [ + "Martha O'Driscoll", + "Noah Beery Jr." + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Unseen", + "year": 1945, + "cast": [ + "Gail Russell", + "Joel McCrea" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Utah", + "year": 1945, + "cast": [ + "Roy Rogers", + "Dale Evans", + "Peggy Stewart" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Valley of Decision", + "year": 1945, + "cast": [ + "Greer Garson", + "Gregory Peck" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Vampire's Ghost", + "year": 1945, + "cast": [ + "John Abbott", + "Adele Mara", + "Peggy Stewart" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Voice of the Whistler", + "year": 1945, + "cast": [ + "Richard Dix", + "Lynn Merrick" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Wagon Wheels Westward", + "year": 1945, + "cast": [ + "Wild Bill Elliott", + "Linda Stirling" + ], + "genres": [ + "Western" + ] + }, + { + "title": "A Walk in the Sun", + "year": 1945, + "cast": [ + "Dana Andrews", + "Richard Conte" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "Wanderer of the Wasteland", + "year": 1945, + "cast": [ + "James Warren", + "Audrey Long" + ], + "genres": [ + "Western" + ] + }, + { + "title": "War Comes to America", + "year": 1945, + "cast": [], + "genres": [ + "War", + "Documentary" + ] + }, + { + "title": "Week-End at the Waldorf", + "year": 1945, + "cast": [ + "Lana Turner", + "Ginger Rogers", + "Walter Pidgeon" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "West of the Pecos", + "year": 1945, + "cast": [ + "Robert Mitchum", + "Barbara Hale" + ], + "genres": [ + "Western" + ] + }, + { + "title": "What a Blonde", + "year": 1945, + "cast": [ + "Leon Errol", + "Elaine Riley", + "Veda Ann Borg" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "What Next, Corporal Hargrove?", + "year": 1945, + "cast": [ + "Robert Walker", + "Keenan Wynn", + "Jean Porter" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Where Do We Go from Here?", + "year": 1945, + "cast": [ + "Fred MacMurray", + "Joan Leslie" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "White Pongo", + "year": 1945, + "cast": [ + "Richard Fraser", + "Maris Wrixon" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Who's Guilty?", + "year": 1945, + "cast": [ + "Robert Kent", + "Amelita Ward" + ], + "genres": [] + }, + { + "title": "Why Girls Leave Home", + "year": 1945, + "cast": [ + "Lola Lane", + "Pamela Blake" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Wildfire", + "year": 1945, + "cast": [ + "Bob Steele", + "Sterling Holloway" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Wings for This Man", + "year": 1945, + "cast": [ + "Narrated by", + "Ronald Reagan" + ], + "genres": [ + "War" + ] + }, + { + "title": "Within These Walls", + "year": 1945, + "cast": [ + "Thomas Mitchell", + "Mary Anderson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Without Love", + "year": 1945, + "cast": [ + "Spencer Tracy", + "Katharine Hepburn" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Woman in Green", + "year": 1945, + "cast": [ + "Basil Rathbone", + "Nigel Bruce" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Woman Who Came Back", + "year": 1945, + "cast": [ + "Nancy Kelly", + "John Loder" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Wonder Man", + "year": 1945, + "cast": [ + "Danny Kaye", + "Virginia Mayo" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Yolanda and the Thief", + "year": 1945, + "cast": [ + "Fred Astaire", + "Lucille Bremer", + "Frank Morgan" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "You Came Along", + "year": 1945, + "cast": [ + "Lizabeth Scott", + "Robert Cummings" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Your Job In Germany", + "year": 1945, + "cast": [], + "genres": [ + "War", + "Documentary" + ] + }, + { + "title": "Youth on Trial", + "year": 1945, + "cast": [ + "Cora Sue Collins", + "Robert B. Williams" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Ziegfeld Follies", + "year": 1945, + "cast": [ + "Fred Astaire", + "Lucille Ball", + "Judy Garland" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Zombies on Broadway", + "year": 1945, + "cast": [ + "Bela Lugosi", + "Anne Jeffreys" + ], + "genres": [ + "Horror", + "Comedy" + ] + }, + { + "title": "Abie's Irish Rose", + "year": 1946, + "cast": [ + "Michael Chekhov", + "Joanne Dru" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Abilene Town", + "year": 1946, + "cast": [ + "Randolph Scott", + "Ann Dvorak", + "Rhonda Fleming", + "Lloyd Bridges" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Accomplice", + "year": 1946, + "cast": [ + "Richard Arlen", + "Veda Ann Borg", + "Tom Dugan" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Affairs of Geraldine", + "year": 1946, + "cast": [ + "Jane Withers", + "Jimmy Lydon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Alias Billy the Kid", + "year": 1946, + "cast": [ + "Sunset Carson", + "Peggy Stewart" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Alias Mr. Twilight", + "year": 1946, + "cast": [ + "Trudy Marshall", + "Gigi Perreau" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Ambush Trail", + "year": 1946, + "cast": [ + "Bob Steele", + "Syd Saylor" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Angel on My Shoulder", + "year": 1946, + "cast": [ + "Paul Muni", + "Anne Baxter", + "Claude Rains" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Anna and the King of Siam", + "year": 1946, + "cast": [ + "Irene Dunne", + "Rex Harrison", + "Linda Darnell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Avalanche", + "year": 1946, + "cast": [ + "Bruce Cabot", + "Roscoe Karns" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Baby Bottleneck", + "year": 1946, + "cast": [ + "Looney Tunes" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "The Bachelor's Daughters", + "year": 1946, + "cast": [ + "Claire Trevor", + "Gail Russell", + "Ann Dvorak" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Bad Bascomb", + "year": 1946, + "cast": [ + "Wallace Beery", + "Margaret O'Brien", + "Marjorie Main" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Badman's Territory", + "year": 1946, + "cast": [ + "Randolph Scott", + "Ann Richards" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Bamboo Blonde", + "year": 1946, + "cast": [ + "Frances Langford", + "Ralph Edwards", + "Iris Adrian" + ], + "genres": [ + "War" + ] + }, + { + "title": "The Bandit of Sherwood Forest", + "year": 1946, + "cast": [ + "Cornel Wilde", + "Anita Louise", + "Jill Esmond", + "Edgar Buchanan" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Baseball Bugs", + "year": 1946, + "cast": [ + "Looney Tunes" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "The Beast with Five Fingers", + "year": 1946, + "cast": [ + "Robert Alda", + "Andrea King", + "Peter Lorre", + "Victor Francen", + "J. Carrol Naish" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Beauty and the Bandit", + "year": 1946, + "cast": [ + "Gilbert Roland", + "Ramsay Ames" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Because of Him", + "year": 1946, + "cast": [ + "Deanna Durbin", + "Charles Laughton" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Beer Barrel Polecats", + "year": 1946, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Short" + ] + }, + { + "title": "Bedlam", + "year": 1946, + "cast": [ + "Boris Karloff", + "Anna Lee" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Behind Green Lights", + "year": 1946, + "cast": [ + "Carole Landis", + "William Gargan", + "Mary Anderson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Behind the Mask", + "year": 1946, + "cast": [ + "Kane Richmond", + "Barbara Read" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Below the Deadline", + "year": 1946, + "cast": [ + "Warren Douglas", + "Jan Wiley" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Best Years of Our Lives", + "year": 1946, + "cast": [ + "Fredric March", + "Myrna Loy", + "Dana Andrews", + "Teresa Wright", + "Virginia Mayo", + "Hoagy Carmichael", + "Harold Russell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Betty Co-Ed", + "year": 1946, + "cast": [ + "Jean Porter", + "Shirley Mills" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Beware", + "year": 1946, + "cast": [ + "Louis Jordan", + "Frank L. Wilson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Big Sleep", + "year": 1946, + "cast": [ + "Humphrey Bogart", + "Lauren Bacall", + "Martha Vickers" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "A Bird in the Head", + "year": 1946, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Short" + ] + }, + { + "title": "Black Angel", + "year": 1946, + "cast": [ + "Dan Duryea", + "June Vincent", + "Peter Lorre", + "Broderick Crawford" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Black Beauty", + "year": 1946, + "cast": [ + "Mona Freeman", + "Richard Denning" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Blonde Alibi", + "year": 1946, + "cast": [ + "Tom Neal", + "Martha O'Driscoll" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Blonde for a Day", + "year": 1946, + "cast": [ + "Hugh Beaumont", + "Kathryn Adams" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Blondie Knows Best", + "year": 1946, + "cast": [ + "Penny Singleton", + "Arthur Lake" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Blondie's Lucky Day", + "year": 1946, + "cast": [ + "Penny Singleton", + "Arthur Lake" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Blue Dahlia", + "year": 1946, + "cast": [ + "Alan Ladd", + "Veronica Lake", + "William Bendix", + "Hugh Beaumont" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Blue Skies", + "year": 1946, + "cast": [ + "Fred Astaire", + "Bing Crosby", + "Joan Caulfield" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Book Revue", + "year": 1946, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "Border Bandits", + "year": 1946, + "cast": [ + "Johnny Mack Brown", + "Raymond Hatton" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Boston Blackie and the Law", + "year": 1946, + "cast": [ + "Chester Morris", + "Trudy Marshall", + "Constance Dowling" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Bowery Bombshell", + "year": 1946, + "cast": [ + "Leo Gorcey", + "Huntz Hall", + "Teala Loring" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Boy, a Girl and a Dog", + "year": 1946, + "cast": [ + "Sharyn Moffett", + "Lionel Stander" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Boys' Ranch", + "year": 1946, + "cast": [ + "Butch Jenkins", + "James Craig", + "Dorothy Patrick" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Breakfast in Hollywood", + "year": 1946, + "cast": [ + "Tom Breneman", + "Bonita Granville", + "Billie Burke" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Bride Wore Boots", + "year": 1946, + "cast": [ + "Barbara Stanwyck", + "Robert Cummings", + "Diana Lynn", + "Patric Knowles" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Bringing Up Father", + "year": 1946, + "cast": [ + "Joe Yule", + "Renie Riano" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Brute Man", + "year": 1946, + "cast": [ + "Rondo Hatton", + "Jan Wiley", + "Tom Neal" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Bunker Hill Bunny", + "year": 1946, + "cast": [ + "Bugs Bunny" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "California Gold Rush", + "year": 1946, + "cast": [ + "Wild Bill Elliott", + "Peggy Stewart" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Canyon Passage", + "year": 1946, + "cast": [ + "Dana Andrews", + "Brian Donlevy", + "Susan Hayward", + "Patricia Roc" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Caravan Trail", + "year": 1946, + "cast": [ + "Eddie Dean", + "Lash La Rue" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Cat Concerto", + "year": 1946, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "The Cat Creeps", + "year": 1946, + "cast": [ + "Noah Beery Jr.", + "Lois Collier" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "The Catman of Paris", + "year": 1946, + "cast": [ + "Carl Esmond", + "Lenore Aubert", + "Adele Mara" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Centennial Summer", + "year": 1946, + "cast": [ + "Jeanne Crain", + "Cornel Wilde", + "Linda Darnell", + "Walter Brennan" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Chase", + "year": 1946, + "cast": [ + "Robert Cummings", + "Michèle Morgan", + "Steve Cochran" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Chick Carter, Detective", + "year": 1946, + "cast": [ + "Lyle Talbot", + "Julie Gibson" + ], + "genres": [] + }, + { + "title": "Child of Divorce", + "year": 1946, + "cast": [ + "Sharyn Moffett", + "Regis Toomey" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Cinderella Jones", + "year": 1946, + "cast": [ + "Joan Leslie", + "Robert Alda" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Claudia and David", + "year": 1946, + "cast": [ + "Dorothy McGuire", + "Robert Young", + "Mary Astor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Cloak and Dagger", + "year": 1946, + "cast": [ + "Gary Cooper", + "Lilli Palmer", + "Robert Alda" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "A Close Call for Boston Blackie", + "year": 1946, + "cast": [ + "Chester Morris", + "Lynn Merrick" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Cluny Brown", + "year": 1946, + "cast": [ + "Charles Boyer", + "Jennifer Jones", + "Peter Lawford" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Cockeyed Miracle", + "year": 1946, + "cast": [ + "Audrey Totter", + "Cecil Kellaway", + "Frank Morgan", + "Keenan Wynn" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Colonel Effingham's Raid", + "year": 1946, + "cast": [ + "Charles Coburn", + "Joan Bennett" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Colorado Serenade", + "year": 1946, + "cast": [ + "Eddie Dean", + "Roscoe Ates" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Conquest of Cheyenne", + "year": 1946, + "cast": [ + "Wild Bill Elliott", + "Peggy Stewart" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Courage of Lassie", + "year": 1946, + "cast": [ + "Elizabeth Taylor", + "Catherine McLeod", + "Frank Morgan" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Cowboy Blues", + "year": 1946, + "cast": [ + "Ken Curtis", + "Jeff Donnell", + "Guy Kibbee" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Crack-Up", + "year": 1946, + "cast": [ + "Pat O'Brien", + "Claire Trevor", + "Herbert Marshall" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Crime Doctor's Man Hunt", + "year": 1946, + "cast": [ + "Warner Baxter", + "Ellen Drew" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Crime of the Century", + "year": 1946, + "cast": [ + "Stephanie Bachelor", + "Martin Kosleck" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Criminal Court", + "year": 1946, + "cast": [ + "Martha O'Driscoll", + "Tom Conway" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Crimson Ghost", + "year": 1946, + "cast": [ + "Charles Quigley", + "Linda Stirling" + ], + "genres": [] + }, + { + "title": "Cross My Heart", + "year": 1946, + "cast": [ + "Betty Hutton", + "Sonny Tufts" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Cuban Pete", + "year": 1946, + "cast": [ + "Desi Arnaz", + "Joan Fulton", + "Don Porter" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Danger Woman", + "year": 1946, + "cast": [ + "Don Porter", + "Brenda Joyce", + "Patricia Morison" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Dangerous Business", + "year": 1946, + "cast": [ + "Forrest Tucker", + "Lynn Merrick" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Dangerous Millions", + "year": 1946, + "cast": [ + "Kent Taylor", + "Dona Drake" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "Dangerous Money", + "year": 1946, + "cast": [ + "Sidney Toler", + "Gloria Warren" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Danny Boy", + "year": 1946, + "cast": [ + "Charles Bates", + "Ace the Wonder Dog" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dark Alibi", + "year": 1946, + "cast": [ + "Sidney Toler", + "Mantan Moreland" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Dark Corner", + "year": 1946, + "cast": [ + "Lucille Ball", + "Clifton Webb", + "William Bendix" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Dark Horse", + "year": 1946, + "cast": [ + "Phillip Terry", + "Ann Savage", + "Allen Jenkins" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Dark Mirror", + "year": 1946, + "cast": [ + "Olivia de Havilland", + "Lew Ayres", + "Thomas Mitchell" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Daughter of Don Q", + "year": 1946, + "cast": [ + "Lorna Gray", + "Kirk Alyn" + ], + "genres": [] + }, + { + "title": "Days of Buffalo Bill", + "year": 1946, + "cast": [ + "Sunset Carson", + "Peggy Stewart" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Deadline at Dawn", + "year": 1946, + "cast": [ + "Susan Hayward", + "Paul Lukas", + "Bill Williams" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Deadline for Murder", + "year": 1946, + "cast": [ + "Paul Kelly", + "Kent Taylor", + "Sheila Ryan", + "Marion Martin" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Death Valley", + "year": 1946, + "cast": [ + "Robert Lowery", + "Nat Pendleton" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Deception", + "year": 1946, + "cast": [ + "Bette Davis", + "Paul Henreid", + "Claude Rains" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Decoy", + "year": 1946, + "cast": [ + "Jean Gillie", + "Edward Norris", + "Robert Armstrong" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Desert Horseman", + "year": 1946, + "cast": [ + "Charles Starrett", + "Smiley Burnette" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Devil Bat's Daughter", + "year": 1946, + "cast": [ + "Rosemary La Planche", + "Molly Lamont" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Devil's Mask", + "year": 1946, + "cast": [ + "Anita Louise", + "Jim Bannon" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Devil's Playground", + "year": 1946, + "cast": [ + "William Boyd", + "Elaine Riley" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Devotion", + "year": 1946, + "cast": [ + "Ida Lupino", + "Paul Henreid", + "Olivia de Havilland", + "Sydney Greenstreet" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "The Diary of a Chambermaid", + "year": 1946, + "cast": [ + "Paulette Goddard", + "Burgess Meredith", + "Hurd Hatfield" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dick Tracy vs. Cueball", + "year": 1946, + "cast": [ + "Morgan Conway", + "Esther Howard", + "Anne Jeffreys" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Ding Dong Williams", + "year": 1946, + "cast": [ + "Marcy McGuire", + "Anne Jeffreys" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Don't Gamble with Strangers", + "year": 1946, + "cast": [ + "Kane Richmond", + "Bernadene Hayes" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Do You Love Me", + "year": 1946, + "cast": [ + "Maureen O'Hara", + "Harry James" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Don Ricardo Returns", + "year": 1946, + "cast": [ + "Lita Baron", + "Martin Garralaga" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Down Missouri Way", + "year": 1946, + "cast": [ + "Martha O'Driscoll", + "John Carradine", + "Eddie Dean" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Dragonwyck", + "year": 1946, + "cast": [ + "Gene Tierney", + "Walter Huston", + "Vincent Price", + "Spring Byington", + "Jessica Tandy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dressed to Kill", + "year": 1946, + "cast": [ + "Basil Rathbone", + "Nigel Bruce", + "Patricia Morison" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Drifting Along", + "year": 1946, + "cast": [ + "Johnny Mack Brown", + "Lynne Carver", + "Raymond Hatton" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Driftin' River", + "year": 1946, + "cast": [ + "Eddie Dean", + "Shirley Patterson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Duel in the Sun", + "year": 1946, + "cast": [ + "Gregory Peck", + "Joseph Cotten", + "Jennifer Jones", + "Lionel Barrymore" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Earl Carroll Sketchbook", + "year": 1946, + "cast": [ + "Constance Moore", + "Edward Everett Horton", + "Hillary Brooke" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Easy to Wed", + "year": 1946, + "cast": [ + "Lucille Ball", + "Esther Williams", + "Van Johnson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The El Paso Kid", + "year": 1946, + "cast": [ + "Sunset Carson", + "Edmund Cobb" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Fabulous Suzanne", + "year": 1946, + "cast": [ + "Barbara Britton", + "Rudy Vallée" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "The Face of Marble", + "year": 1946, + "cast": [ + "John Carradine", + "Claudia Drake" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Faithful in My Fashion", + "year": 1946, + "cast": [ + "Donna Reed", + "Tom Drake" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Falcon's Adventure", + "year": 1946, + "cast": [ + "Tom Conway", + "Myrna Dell" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Falcon's Alibi", + "year": 1946, + "cast": [ + "Tom Conway", + "Rita Corday" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Fear", + "year": 1946, + "cast": [ + "Peter Cookson", + "Warren William", + "Anne Gwynne" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Fighting Frontiersman", + "year": 1946, + "cast": [ + "Charles Starrett", + "Smiley Burnette" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Fighting Guardsman", + "year": 1946, + "cast": [ + "Willard Parker", + "Anita Louise", + "Janis Carter", + "John Loder" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Flight to Nowhere", + "year": 1946, + "cast": [ + "Alan Curtis", + "Evelyn Ankers", + "Micheline Cheirel" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Flying Serpent", + "year": 1946, + "cast": [ + "George Zucco", + "Eddie Acuff" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Freddie Steps Out", + "year": 1946, + "cast": [ + "Freddie Stewart", + "June Preisser" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The French Key", + "year": 1946, + "cast": [ + "Albert Dekker", + "Mike Mazurki", + "Evelyn Ankers" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "From This Day Forward", + "year": 1946, + "cast": [ + "Joan Fontaine", + "Mark Stevens" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Frontier Gunlaw", + "year": 1946, + "cast": [ + "Charles Starrett", + "Jack Rockwell" + ], + "genres": [ + "Western" + ] + }, + { + "title": "G.I. Wanna Home", + "year": 1946, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Short" + ] + }, + { + "title": "G.I. War Brides", + "year": 1946, + "cast": [ + "Anna Lee", + "James Ellison" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Gallant Bess", + "year": 1946, + "cast": [ + "Marshall Thompson", + "George Tobias" + ], + "genres": [ + "Family", + "Western" + ] + }, + { + "title": "Gallant Journey", + "year": 1946, + "cast": [ + "Glenn Ford", + "Janet Blair", + "Charlie Ruggles" + ], + "genres": [ + "Historical" + ] + }, + { + "title": "Galloping Thunder", + "year": 1946, + "cast": [ + "Charles Starrett", + "Smiley Burnette" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Gas House Kids", + "year": 1946, + "cast": [ + "Robert Lowery", + "Billy Halop" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Gay Blades", + "year": 1946, + "cast": [ + "Jean Rogers", + "Allan Lane" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Gay Cavalier", + "year": 1946, + "cast": [ + "Gilbert Roland", + "Martin Garralaga" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Genius at Work", + "year": 1946, + "cast": [ + "Anne Jeffreys", + "Wally Brown", + "Alan Carney" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Gentleman from Texas", + "year": 1946, + "cast": [ + "Johnny Mack Brown", + "Claudia Drake", + "Raymond Hatton" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Gentleman Joe Palooka", + "year": 1946, + "cast": [ + "Leon Errol", + "Joe Kirkwood", + "Elyse Knox" + ], + "genres": [ + "Sports" + ] + }, + { + "title": "The Gentleman Misbehaves", + "year": 1946, + "cast": [ + "Osa Massen", + "Hillary Brooke" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Gentlemen with Guns", + "year": 1946, + "cast": [ + "Buster Crabbe", + "Al St. John" + ], + "genres": [ + "Western", + "Comedy" + ] + }, + { + "title": "Ghost of Hidden Valley", + "year": 1946, + "cast": [ + "Buster Crabbe", + "Al St. John" + ], + "genres": [ + "Western", + "Comedy" + ] + }, + { + "title": "Gilda", + "year": 1946, + "cast": [ + "Glenn Ford", + "Rita Hayworth" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Ginger", + "year": 1946, + "cast": [ + "Frank Albertson", + ".", + "Barbara Read" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Girl on the Spot", + "year": 1946, + "cast": [ + "Lois Collier", + "Jess Barker" + ], + "genres": [ + "Musical", + "Crime" + ] + }, + { + "title": "The Glass Alibi", + "year": 1946, + "cast": [ + "Maris Wrixon", + "Anne Gwynne" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "God's Country", + "year": 1946, + "cast": [ + "Robert Lowery", + "Helen Gilbert", + "Buster Keaton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Great Morgan", + "year": 1946, + "cast": [ + "Frank Morgan", + "Tommy Dorsey" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Green Years", + "year": 1946, + "cast": [ + "Charles Coburn", + "Tom Drake", + "Beverly Tyler" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Gun Town", + "year": 1946, + "cast": [ + "Kirby Grant", + "Claire Carleton", + "Lyle Talbot" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Gunman's Code", + "year": 1946, + "cast": [ + "Kirby Grant", + "Jane Adams" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Gunning for Vengeance", + "year": 1946, + "cast": [ + "Charles Starrett", + "Smiley Burnette" + ], + "genres": [ + "Western" + ] + }, + { + "title": "A Guy Could Change", + "year": 1946, + "cast": [ + "Allan Lane", + "Jane Frazee" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hair-Raising Hare", + "year": 1946, + "cast": [ + "Bugs Bunny" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Hare Remover", + "year": 1946, + "cast": [ + "Bugs Bunny" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "The Haunted Mine", + "year": 1946, + "cast": [ + "Johnny Mack Brown", + "Raymond Hatton", + "Linda Leighton" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Harvey Girls", + "year": 1946, + "cast": [ + "Judy Garland", + "Ray Bolger", + "Angela Lansbury" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Heading West", + "year": 1946, + "cast": [ + "Charles Starrett", + "Smiley Burnette" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Heartbeat", + "year": 1946, + "cast": [ + "Ginger Rogers", + "Jean-Pierre Aumont" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Heldorado", + "year": 1946, + "cast": [ + "Roy Rogers", + "George \"Gabby\" Hayes" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Her Adventurous Night", + "year": 1946, + "cast": [ + "Dennis O'Keefe", + "Helen Walker" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Her Kind of Man", + "year": 1946, + "cast": [ + "Janis Paige", + "Zachary Scott", + "Dane Clark" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Her Sister's Secret", + "year": 1946, + "cast": [ + "Nancy Coleman", + "Margaret Lindsay" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "High School Hero", + "year": 1946, + "cast": [ + "Freddie Stewart", + "June Preisser", + "Noel Neill" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Holiday in Mexico", + "year": 1946, + "cast": [ + "Jane Powell", + "Walter Pidgeon" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Home in Oklahoma", + "year": 1946, + "cast": [ + "Roy Rogers", + "Dale Evans", + "Carol Hughes" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Home on the Range", + "year": 1946, + "cast": [ + "Monte Hale", + "Lorna Gray" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Home Sweet Homicide", + "year": 1946, + "cast": [ + "Peggy Ann Garner", + "Randolph Scott" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Hoodlum Saint", + "year": 1946, + "cast": [ + "William Powell", + "Esther Williams", + "Lewis Stone" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hop Harrigan", + "year": 1946, + "cast": [ + "Jennifer Holt", + "William Bakewell" + ], + "genres": [] + }, + { + "title": "Hot Cargo", + "year": 1946, + "cast": [ + "Jean Rogers", + "William Gargan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "House of Horrors", + "year": 1946, + "cast": [ + "Rondo Hatton", + "Robert Lowery", + "Virginia Grey" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Humoresque", + "year": 1946, + "cast": [ + "John Garfield", + "Joan Crawford" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "I Ring Doorbells", + "year": 1946, + "cast": [ + "Anne Gwynne", + "Robert Shayne", + "Roscoe Karns" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Idea Girl", + "year": 1946, + "cast": [ + "Jess Barker", + "Julie Bishop", + "Alan Mowbray" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "If I'm Lucky", + "year": 1946, + "cast": [ + "Vivian Blaine", + "Perry Como" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "In Fast Company", + "year": 1946, + "cast": [ + "The Bowery Boys", + "Jane Randolph" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "In Old Sacramento", + "year": 1946, + "cast": [ + "Bill Elliott", + "Constance Moore" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Inner Circle", + "year": 1946, + "cast": [ + "Adele Mara", + "Warren Douglas", + "Ricardo Cortez" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Inside Job", + "year": 1946, + "cast": [ + "Preston Foster", + "Ann Rutherford" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Invisible Informer", + "year": 1946, + "cast": [ + "Linda Stirling", + "Adele Mara" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "It's Great to Be Young", + "year": 1946, + "cast": [ + "Leslie Brooks", + "Jeff Donnell" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "It's a Wonderful Life", + "year": 1946, + "cast": [ + "James Stewart", + "Donna Reed", + "Lionel Barrymore" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "It Shouldn't Happen to a Dog", + "year": 1946, + "cast": [ + "Carole Landis", + "Allyn Joslyn", + "Margo Woode" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "I've Always Loved You", + "year": 1946, + "cast": [ + "Catherine McLeod", + "Philip Dorn" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The James Brothers of Missouri", + "year": 1946, + "cast": [ + "Keith Richards", + "Noel Neill" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Janie Gets Married", + "year": 1946, + "cast": [ + "Joan Leslie", + "Ann Harding", + "Edward Arnold" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Joe Palooka, Champ", + "year": 1946, + "cast": [ + "Leon Errol", + "Joe Kirkwood", + "Elyse Knox" + ], + "genres": [ + "Sports" + ] + }, + { + "title": "Johnny Comes Flying Home", + "year": 1946, + "cast": [ + "Faye Marlowe", + "Martha Stewart" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Jolson Story", + "year": 1946, + "cast": [ + "Larry Parks", + "William Demarest" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Junior Prom", + "year": 1946, + "cast": [ + "Judy Clark", + "Noel Neill" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Just Before Dawn", + "year": 1946, + "cast": [ + "Warner Baxter", + "Adele Roberts" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Kid from Brooklyn", + "year": 1946, + "cast": [ + "Danny Kaye", + "Virginia Mayo", + "Vera-Ellen" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Killers", + "year": 1946, + "cast": [ + "Ava Gardner", + "Burt Lancaster", + "Edmond O'Brien" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "King of the Forest Rangers", + "year": 1946, + "cast": [ + "Larry Thompson" + ], + "genres": [] + }, + { + "title": "Kitty Kornered", + "year": 1946, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "Lady Chaser", + "year": 1946, + "cast": [ + "Robert Lowery", + "Ann Savage" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Lady Luck", + "year": 1946, + "cast": [ + "Robert Young", + "Barbara Hale" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Landrush", + "year": 1946, + "cast": [ + "Charles Starrett", + "Smiley Burnette" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Larceny in Her Heart", + "year": 1946, + "cast": [ + "Hugh Beaumont", + "Cheryl Walker" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Last Crooked Mile", + "year": 1946, + "cast": [ + "Don \"Red\" Barry", + "Ann Savage", + "Adele Mara" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Lawless Breed", + "year": 1946, + "cast": [ + "Kirby Grant", + "Jane Adams" + ], + "genres": [ + "Western" + ] + }, + { + "title": "A Letter for Evie", + "year": 1946, + "cast": [ + "Marsha Hunt", + "Hume Cronyn" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Little Giant", + "year": 1946, + "cast": [ + "Abbott and Costello", + "Brenda Joyce", + "Elena Verdugo" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Little Iodine", + "year": 1946, + "cast": [ + "Jo Ann Marlowe", + "Irene Ryan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Little Miss Big", + "year": 1946, + "cast": [ + "Fay Holden", + "Frank McHugh" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Little Mister Jim", + "year": 1946, + "cast": [ + "James Craig", + "Butch Jenkins" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Live Wires", + "year": 1946, + "cast": [ + "Leo Gorcey", + "Huntz Hall" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Locket", + "year": 1946, + "cast": [ + "Laraine Day", + "Brian Aherne", + "Robert Mitchum" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Lone Star Moonlight", + "year": 1946, + "cast": [ + "Ken Curtis", + "Joan Barton", + "Guy Kibbee" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Lost City of the Jungle", + "year": 1946, + "cast": [ + "Russell Hayden", + "Jane Adams" + ], + "genres": [] + }, + { + "title": "Love Laughs at Andy Hardy", + "year": 1946, + "cast": [ + "Mickey Rooney", + "Lewis Stone", + "Bonita Granville" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Lover Come Back", + "year": 1946, + "cast": [ + "George Brent", + "Lucille Ball" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Madonna's Secret", + "year": 1946, + "cast": [ + "Gail Patrick", + "Ann Rutherford" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Magnificent Doll", + "year": 1946, + "cast": [ + "Ginger Rogers", + "David Niven" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Magnificent Rogue", + "year": 1946, + "cast": [ + "Lynne Roberts", + "Stephanie Bachelor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Make Mine Music", + "year": 1946, + "cast": [ + "Dinah Shore", + "Benny Goodman", + "Nelson Eddy", + "Andrews Sisters" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Man from Rainbow Valley", + "year": 1946, + "cast": [ + "Monte Hale", + "Lorna Gray" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Man Who Dared", + "year": 1946, + "cast": [ + "George Macready", + "Forrest Tucker" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Margie", + "year": 1946, + "cast": [ + "Jeanne Crain", + "Glenn Langan", + "Lynn Bari" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Mask of Diijon", + "year": 1946, + "cast": [ + "Erich von Stroheim", + "Jeanne Bates" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Meet Me on Broadway", + "year": 1946, + "cast": [ + "Marjorie Reynolds", + "Jinx Falkenburg" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Milky Waif", + "year": 1946, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "The Missing Lady", + "year": 1946, + "cast": [ + "Kane Richmond", + "Barbara Read" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Miss Susie Slagle's", + "year": 1946, + "cast": [ + "Veronica Lake", + "Sonny Tufts", + "Joan Caulfield" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Monkey Businessmen", + "year": 1946, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Short" + ] + }, + { + "title": "Monsieur Beaucaire", + "year": 1946, + "cast": [ + "Bob Hope", + "Joan Caulfield" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Moon Over Montana", + "year": 1946, + "cast": [ + "Jimmy Wakely", + "Jennifer Holt" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Mr. Ace", + "year": 1946, + "cast": [ + "George Raft", + "Sylvia Sydney", + "Jerome Cowan" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Mr. Hex", + "year": 1946, + "cast": [ + "Leo Gorcey", + "Huntz Hall", + "Gale Robbins" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Murder in the Music Hall", + "year": 1946, + "cast": [ + "Nancy Kelly", + "Vera Ralston" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Murder Is My Business", + "year": 1946, + "cast": [ + "Hugh Beaumont", + "Cheryl Walker", + "Lyle Talbot" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "My Darling Clementine", + "year": 1946, + "cast": [ + "Henry Fonda", + "Victor Mature", + "Walter Brennan", + "Linda Darnell", + "Cathy Downs", + "Ward Bond" + ], + "genres": [ + "Western" + ] + }, + { + "title": "My Dog Shep", + "year": 1946, + "cast": [ + "Tom Neal", + "William Farnum" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "My Pal Trigger", + "year": 1946, + "cast": [ + "Roy Rogers", + "Dale Evans", + "Jack Holt" + ], + "genres": [ + "Western" + ] + }, + { + "title": "My Reputation", + "year": 1946, + "cast": [ + "Barbara Stanwyck", + "George Brent", + "Eve Arden" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Mysterious Intruder", + "year": 1946, + "cast": [ + "Richard Dix", + "Barton MacLane", + "Nina Vale" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Mysterious Mr. M", + "year": 1946, + "cast": [ + "Richard Martin", + "Pamela Blake" + ], + "genres": [] + }, + { + "title": "The Mysterious Mr. Valentine", + "year": 1946, + "cast": [ + "William Henry", + "Linda Stirling", + "Virginia Christine" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Never Say Goodbye", + "year": 1946, + "cast": [ + "Errol Flynn", + "Eleanor Parker" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Night and Day", + "year": 1946, + "cast": [ + "Cary Grant", + "Alexis Smith", + "Jane Wyman" + ], + "genres": [ + "Musical", + "Biography" + ] + }, + { + "title": "Night Editor", + "year": 1946, + "cast": [ + "William Gargan", + "Janis Carter" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "A Night in Casablanca", + "year": 1946, + "cast": [ + "Marx Brothers", + "Sig Ruman", + "Lois Collier" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Night in Paradise", + "year": 1946, + "cast": [ + "Merle Oberon", + "Turhan Bey", + "Gale Sondergaard" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Night Train to Memphis", + "year": 1946, + "cast": [ + "Roy Acuff", + "Allan Lane" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Nobody Lives Forever", + "year": 1946, + "cast": [ + "John Garfield", + "Geraldine Fitzgerald" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Nocturne", + "year": 1946, + "cast": [ + "George Raft", + "Lynn Bari", + "Virginia Huston" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "No Leave, No Love", + "year": 1946, + "cast": [ + "Van Johnson", + "Patricia Kirkwood" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Notorious", + "year": 1946, + "cast": [ + "Cary Grant", + "Ingrid Bergman", + "Claude Rains", + "Louis Calhern" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "The Notorious Lone Wolf", + "year": 1946, + "cast": [ + "Gerald Mohr", + "Janis Carter", + "Eric Blore" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Of Human Bondage", + "year": 1946, + "cast": [ + "Paul Henreid", + "Eleanor Parker", + "Janis Paige" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "One Exciting Week", + "year": 1946, + "cast": [ + "Al Pearce", + "Jerome Cowan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "One More Tomorrow", + "year": 1946, + "cast": [ + "Ann Sheridan", + "Jane Wyman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "One Way to Love", + "year": 1946, + "cast": [ + "Marguerite Chapman", + "Chester Morris", + "Janis Carter" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "O.S.S.", + "year": 1946, + "cast": [ + "Alan Ladd", + "Geraldine Fitzgerald", + "Patric Knowles" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "Our Hearts Were Growing Up", + "year": 1946, + "cast": [ + "Gail Russell", + "Diana Lynn" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Out California Way", + "year": 1946, + "cast": [ + "Monte Hale", + "Lorna Gray", + "Roy Rogers" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Outlaws of the Plains", + "year": 1946, + "cast": [ + "Buster Crabbe", + "Al St. John", + "Bud Osborne" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Overland Riders", + "year": 1946, + "cast": [ + "Buster Crabbe", + "Al St. John" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Partners in Time", + "year": 1946, + "cast": [ + "Chester Lauck", + "Pamela Blake", + "Teala Loring" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Passkey to Danger", + "year": 1946, + "cast": [ + "Stephanie Bachelor", + "Adele Mara" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "People Are Funny", + "year": 1946, + "cast": [ + "Jack Haley", + "Helen Walker", + "Rudy Vallée" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Perilous Holiday", + "year": 1946, + "cast": [ + "Pat O'Brien", + "Ruth Warrick", + "Audrey Long" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Personality Kid", + "year": 1946, + "cast": [ + "Anita Louise", + "Michael Duane" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Phantom Rider", + "year": 1946, + "cast": [ + "Robert Kent" + ], + "genres": [] + }, + { + "title": "The Phantom Thief", + "year": 1946, + "cast": [ + "Chester Morris", + "Jeff Donnell" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Plainsman and the Lady", + "year": 1946, + "cast": [ + "Wild Bill Elliott", + "Gail Patrick" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Postman Always Rings Twice", + "year": 1946, + "cast": [ + "Lana Turner", + "John Garfield" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Prairie Badmen", + "year": 1946, + "cast": [ + "Buster Crabbe", + "Al St. John" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Quentin Quail", + "year": 1946, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "Queen of Burlesque", + "year": 1946, + "cast": [ + "Evelyn Ankers", + "Carleton G. Young", + "Marion Martin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Racketeer Rabbit", + "year": 1946, + "cast": [ + "Bugs Bunny" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Rainbow Over Texas", + "year": 1946, + "cast": [ + "Roy Rogers", + "Dale Evans" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Razor's Edge", + "year": 1946, + "cast": [ + "Tyrone Power", + "Gene Tierney" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Red Dragon", + "year": 1946, + "cast": [ + "Sidney Toler", + "Benson Fong" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Red River Renegades", + "year": 1946, + "cast": [ + "Sunset Carson", + "Peggy Stewart" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Rendezvous with Annie", + "year": 1946, + "cast": [ + "Eddie Albert", + "Faye Marlowe", + "Gail Patrick" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Rendezvous 24", + "year": 1946, + "cast": [ + "William Gargan", + "Maria Palmer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Renegade Girl", + "year": 1946, + "cast": [ + "Ann Savage", + "Alan Curtis", + "Jack Holt" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Renegades", + "year": 1946, + "cast": [ + "Evelyn Keyes", + "Willard Parker", + "Larry Parks" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Return of Monte Cristo", + "year": 1946, + "cast": [ + "Louis Hayward", + "Barbara Britton" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Return of Rusty", + "year": 1946, + "cast": [ + "John Litel", + "Barbara Woodell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Rhapsody Rabbit", + "year": 1946, + "cast": [ + "Bugs Bunny" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Rhythm and Weep", + "year": 1946, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Short" + ] + }, + { + "title": "Rio Grande Raiders", + "year": 1946, + "cast": [ + "Sunset Carson", + "Linda Stirling" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Riverboat Rhythm", + "year": 1946, + "cast": [ + "Leon Errol", + "Glen Vernon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Road to Utopia", + "year": 1946, + "cast": [ + "Bing Crosby", + "Bob Hope", + "Dorothy Lamour" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Roaring Rangers", + "year": 1946, + "cast": [ + "Charles Starrett", + "Smiley Burnette" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Roll on Texas Moon", + "year": 1946, + "cast": [ + "Roy Rogers", + "Dale Evans", + "Dennis Hoey" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Rolling Home", + "year": 1946, + "cast": [ + "Jean Parker", + "Pamela Blake" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Romance of the West'", + "year": 1946, + "cast": [ + "Eddie Dean", + "Emmett Lynn" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Runaround", + "year": 1946, + "cast": [ + "Rod Cameron", + "Ella Raines", + "Broderick Crawford" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Rustler's Round-up", + "year": 1946, + "cast": [ + "Kirby Grant", + "Jane Adams" + ], + "genres": [ + "Western" + ] + }, + { + "title": "San Quentin", + "year": 1946, + "cast": [ + "Lawrence Tierney", + "Barton MacLane", + "Carol Forman" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Santa Fe Uprising", + "year": 1946, + "cast": [ + "Allan Lane", + "Martha Wentworth" + ], + "genres": [ + "Western" + ] + }, + { + "title": "A Scandal in Paris", + "year": 1946, + "cast": [ + "George Sanders", + "Carole Landis", + "Signe Hasso" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Scarlet Horseman", + "year": 1946, + "cast": [ + "Peter Cookson", + "Paul Guilfoyle" + ], + "genres": [] + }, + { + "title": "The Searching Wind", + "year": 1946, + "cast": [ + "Robert Young", + "Sylvia Sidney" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Secret Heart", + "year": 1946, + "cast": [ + "Claudette Colbert", + "Walter Pidgeon", + "June Allyson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Secret of the Whistler", + "year": 1946, + "cast": [ + "Richard Dix", + "Leslie Brooks" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Sentimental Journey", + "year": 1946, + "cast": [ + "Maureen O'Hara", + "John Payne" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Shadow of a Woman", + "year": 1946, + "cast": [ + "Helmut Dantine", + "Andrea King" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Shadowed", + "year": 1946, + "cast": [ + "Anita Louise", + "Lloyd Corrigan" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Shadow Returns", + "year": 1946, + "cast": [ + "Kane Richmond", + "Barbara Read" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Shadows on the Range", + "year": 1946, + "cast": [ + "Johnny Mack Brown", + "Raymond Hatton" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Shadows Over Chinatown", + "year": 1946, + "cast": [ + "Sidney Toler", + "Mantan Moreland" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "She-Wolf of London", + "year": 1946, + "cast": [ + "June Lockhart", + "Don Porter" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "She Wrote the Book", + "year": 1946, + "cast": [ + "Joan Davis", + "Jack Oakie" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Sheriff of Redwood Valley", + "year": 1946, + "cast": [ + "Wild Bill Elliott", + "Peggy Stewart" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Shock", + "year": 1946, + "cast": [ + "Vincent Price", + "Lynn Bari", + "Frank Latimore" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Show-Off", + "year": 1946, + "cast": [ + "Red Skelton", + "Marilyn Maxwell", + "Virginia O'Brien" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Silver Range", + "year": 1946, + "cast": [ + "Johnny Mack Brown", + "Raymond Hatton" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Sing While You Dance", + "year": 1946, + "cast": [ + "Ellen Drew", + "Kirby Grant" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Singing on the Trail", + "year": 1946, + "cast": [ + "Ken Curtis", + "Jeff Donnell", + "Guy Kibbee" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Singin' in the Corn", + "year": 1946, + "cast": [ + "Judy Canova", + "Allen Jenkins" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Sioux City Sue", + "year": 1946, + "cast": [ + "Gene Autry", + "Lynne Roberts" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Sister Kenny", + "year": 1946, + "cast": [ + "Rosalind Russell", + "Alexander Knox" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Six Gun Man", + "year": 1946, + "cast": [ + "Bob Steele", + "Syd Saylor" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Slightly Scandalous", + "year": 1946, + "cast": [ + "Sheila Ryan", + "Lita Baron" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Smoky", + "year": 1946, + "cast": [ + "Fred MacMurray", + "Anne Baxter" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Smooth as Silk", + "year": 1946, + "cast": [ + "Kent Taylor", + "Virginia Grey" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "So Dark the Night", + "year": 1946, + "cast": [ + "Steven Geray", + "Micheline Cheirel" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "So Goes My Love", + "year": 1946, + "cast": [ + "Myrna Loy", + "Don Ameche", + "Molly Lamont" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Solid Serenade", + "year": 1946, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Somewhere in the Night", + "year": 1946, + "cast": [ + "John Hodiak", + "Lloyd Nolan", + "Nancy Guild" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Song of Arizona", + "year": 1946, + "cast": [ + "Roy Rogers", + "Dale Evans", + "Lyle Talbot" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Song of the Sierras", + "year": 1946, + "cast": [ + "Jimmy Wakely", + "Jack Baxley" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Song of the South", + "year": 1946, + "cast": [ + "James Baskett", + "Bobby Driscoll", + "Luana Patten" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "South of Monterey", + "year": 1946, + "cast": [ + "Gilbert Roland", + "Martin Garralaga" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Special Delivery", + "year": 1946, + "cast": [], + "genres": [] + }, + { + "title": "Specter of the Rose", + "year": 1946, + "cast": [ + "Judith Anderson", + "Lionel Stander" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Spider Woman Strikes Back", + "year": 1946, + "cast": [ + "Gale Sondergaard", + "Kirby Grant", + "Brenda Joyce" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Spook Busters", + "year": 1946, + "cast": [ + "Leo Gorcey", + "Huntz Hall" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Spiral Staircase", + "year": 1946, + "cast": [ + "Dorothy McGuire", + "George Brent", + "Rhonda Fleming" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Springtime for Thomas", + "year": 1946, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Stagecoach to Denver", + "year": 1946, + "cast": [ + "Allan Lane", + "Peggy Stewart" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Stars Over Texas", + "year": 1946, + "cast": [ + "Eddie Dean", + "Roscoe Ates", + "Shirley Patterson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Step by Step", + "year": 1946, + "cast": [ + "Lawrence Tierney", + "Anne Jeffreys" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "A Stolen Life", + "year": 1946, + "cast": [ + "Bette Davis", + "Glenn Ford" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Strange Conquest", + "year": 1946, + "cast": [ + "Jane Wyatt", + "Lowell Gilmore", + "Julie Bishop" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Strange Impersonation", + "year": 1946, + "cast": [ + "Brenda Marshall", + "William Gargan", + "Hillary Brooke" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Strange Journey", + "year": 1946, + "cast": [ + "Paul Kelly", + "Osa Massen", + "Hillary Brooke", + "Lee Patrick" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Strange Love of Martha Ivers", + "year": 1946, + "cast": [ + "Barbara Stanwyck", + "Van Heflin", + "Lizabeth Scott" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Strange Voyage", + "year": 1946, + "cast": [ + "Eddie Albert", + "Forrest Taylor" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Stranger", + "year": 1946, + "cast": [ + "Edward G. Robinson", + "Loretta Young", + "Orson Welles" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Strange Triangle", + "year": 1946, + "cast": [ + "Signe Hasso", + "Preston Foster" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Strange Woman", + "year": 1946, + "cast": [ + "Hedy Lamarr", + "George Sanders", + "Louis Hayward" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Strangler of the Swamp", + "year": 1946, + "cast": [ + "Rosemary La Planche", + "Blake Edwards" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Sun Valley Cyclone", + "year": 1946, + "cast": [ + "Wild Bill Elliott", + "Alice Fleming" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Sunset Pass", + "year": 1946, + "cast": [ + "James Warren", + "Jane Greer" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Susie Steps Out", + "year": 1946, + "cast": [ + "David Bruce", + "Margaret Dumont" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Suspense", + "year": 1946, + "cast": [ + "Barry Sullivan", + "Belita", + "Albert Dekker" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Swamp Fire", + "year": 1946, + "cast": [ + "Johnny Weissmuller", + "Buster Crabbe" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Sweetheart of Sigma Chi", + "year": 1946, + "cast": [ + "Phil Regan", + "Elyse Knox" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Swell Guy", + "year": 1946, + "cast": [ + "Sonny Tufts", + "Ann Blyth" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Swing, Cowboy, Swing", + "year": 1946, + "cast": [ + "Max Terhune", + "I. Stanford Jolley" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Swing Parade of 1946", + "year": 1946, + "cast": [ + "The Three Stooges", + "Gale Storm" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "A Tale of Two Cities", + "year": 1946, + "cast": [], + "genres": [] + }, + { + "title": "Talk About a Lady", + "year": 1946, + "cast": [ + "Jinx Falkenburg", + "Forrest Tucker" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Tangier", + "year": 1946, + "cast": [ + "Maria Montez", + "Robert Paige", + "Sabu" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Tars and Spars", + "year": 1946, + "cast": [ + "Alfred Drake", + "Janet Blair" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Tarzan and the Leopard Woman", + "year": 1946, + "cast": [ + "Johnny Weissmuller", + "Brenda Joyce" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Temptation", + "year": 1946, + "cast": [ + "Merle Oberon", + "George Brent" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Terror by Night", + "year": 1946, + "cast": [ + "Basil Rathbone", + "Nigel Bruce" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Terror Trail", + "year": 1946, + "cast": [ + "Charles Starrett", + "Barbara Pepper" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Terrors on Horseback", + "year": 1946, + "cast": [ + "Buster Crabbe", + "Al St. John" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "That Brennan Girl", + "year": 1946, + "cast": [ + "Mona Freeman", + "James Dunn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "That Justice Be Done", + "year": 1946, + "cast": [], + "genres": [] + }, + { + "title": "That Texas Jamboree", + "year": 1946, + "cast": [ + "Ken Curtis", + "Jeff Donnell" + ], + "genres": [ + "Western" + ] + }, + { + "title": "They Made Me a Killer", + "year": 1946, + "cast": [ + "Robert Lowery", + "Barbara Britton" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Three Little Girls in Blue", + "year": 1946, + "cast": [ + "June Haver", + "Vera-Ellen", + "Vivian Blaine" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Three Little Pirates", + "year": 1946, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Short" + ] + }, + { + "title": "Three Loan Wolves", + "year": 1946, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Short" + ] + }, + { + "title": "Three Strangers", + "year": 1946, + "cast": [ + "Sydney Greenstreet", + "Geraldine Fitzgerald", + "Peter Lorre" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Three Troubledoers", + "year": 1946, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Short" + ] + }, + { + "title": "Three Wise Fools", + "year": 1946, + "cast": [ + "Margaret O'Brien", + "Lionel Barrymore", + "Lewis Stone" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Thrill of Brazil", + "year": 1946, + "cast": [ + "Ann Miller", + "Evelyn Keyes" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Throw a Saddle on a Star", + "year": 1946, + "cast": [ + "Ken Curtis", + "Jeff Donnell" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Thunder Town", + "year": 1946, + "cast": [ + "Bob Steele", + "Syd Saylor" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Till the Clouds Roll By", + "year": 1946, + "cast": [ + "Judy Garland", + "Lena Horne", + "Frank Sinatra", + "Dinah Shore", + "June Allyson", + "Robert Walker" + ], + "genres": [ + "Biography", + "Musical" + ] + }, + { + "title": "Till the End of Time", + "year": 1946, + "cast": [ + "Dorothy McGuire", + "Guy Madison", + "Robert Mitchum" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Time of Their Lives", + "year": 1946, + "cast": [ + "Abbott and Costello", + "Marjorie Reynolds" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Time, the Place and the Girl", + "year": 1946, + "cast": [ + "Dennis Morgan", + "Janis Paige", + "Martha Vickers" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "To Each His Own", + "year": 1946, + "cast": [ + "Olivia de Havilland", + "John Lund", + "Roland Culver" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Tokyo Rose", + "year": 1946, + "cast": [ + "Byron Barr", + "Osa Massen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Tomorrow Is Forever", + "year": 1946, + "cast": [ + "Claudette Colbert", + "Orson Welles", + "George Brent" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Traffic in Crime", + "year": 1946, + "cast": [ + "Kane Richmond", + "Anne Nagel", + "Adele Mara" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Trail to Mexico", + "year": 1946, + "cast": [ + "Jimmy Wakely", + "Lee \"Lasses\" White", + "Julian Rivero" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Trap", + "year": 1946, + "cast": [ + "Sidney Toler", + "Victor Sen Yung" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Trap Happy", + "year": 1946, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Trigger Fingers", + "year": 1946, + "cast": [ + "Johnny Mack Brown", + "Raymond Hatton", + "Jennifer Holt" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Truth About Murder", + "year": 1946, + "cast": [ + "Bonita Granville", + "Rita Corday" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Tumbleweed Trail", + "year": 1946, + "cast": [ + "Eddie Dean", + "Shirley Patterson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Two-Fisted Stranger", + "year": 1946, + "cast": [ + "Charles Starrett", + "Smiley Burnette" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Two Guys from Milwaukee", + "year": 1946, + "cast": [ + "Dennis Morgan", + "Jack Carson", + "Joan Leslie" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Two Sisters from Boston", + "year": 1946, + "cast": [ + "Kathryn Grayson", + "June Allyson", + "Peter Lawford", + "Jimmy Durante" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Two Smart People", + "year": 1946, + "cast": [ + "Lucille Ball", + "John Hodiak", + "Lloyd Nolan" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Two Years Before the Mast", + "year": 1946, + "cast": [ + "Alan Ladd", + "Barry Fitzgerald", + "Esther Fernandez" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Under Arizona Skies", + "year": 1946, + "cast": [ + "Johnny Mack Brown", + "Reno Browne", + "Raymond Hatton" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Under Nevada Skies", + "year": 1946, + "cast": [ + "Roy Rogers", + "Dale Evans" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Undercurrent", + "year": 1946, + "cast": [ + "Katharine Hepburn", + "Robert Mitchum" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Uncivil War Birds", + "year": 1946, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Short" + ] + }, + { + "title": "The Undercover Woman", + "year": 1946, + "cast": [ + "Stephanie Bachelor", + "Richard Fraser" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Unknown", + "year": 1946, + "cast": [ + "Karen Morley", + "Jeff Donnell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Up Goes Maisie", + "year": 1946, + "cast": [ + "Ann Sothern", + "George Murphy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Vacation in Reno", + "year": 1946, + "cast": [ + "Jack Haley", + "Anne Jeffreys" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Valley of the Zombies", + "year": 1946, + "cast": [ + "Robert Livingston", + "Lorna Gray" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Verdict", + "year": 1946, + "cast": [ + "Peter Lorre", + "Sydney Greenstreet", + "George Coulouris", + "Paul Cavanagh" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Virginian", + "year": 1946, + "cast": [ + "Joel McCrea", + "Brian Donlevy" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Wake Up and Dream", + "year": 1946, + "cast": [ + "John Payne", + "June Haver" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Walky Talky Hawky", + "year": 1946, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "The Walls Came Tumbling Down", + "year": 1946, + "cast": [ + "Lee Bowman", + "Marguerite Chapman" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Well-Groomed Bride", + "year": 1946, + "cast": [ + "Olivia de Havilland", + "Ray Milland" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "West of the Alamo", + "year": 1946, + "cast": [ + "Jimmy Wakely", + "Ray Whitley" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Whistle Stop", + "year": 1946, + "cast": [ + "George Raft", + "Ava Gardner" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "White Tie and Tails", + "year": 1946, + "cast": [ + "Dan Duryea", + "Ella Raines" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Wife of Monte Cristo", + "year": 1946, + "cast": [ + "John Loder", + "Lenore Aubert" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Wife Wanted", + "year": 1946, + "cast": [ + "Kay Francis", + "Paul Cavanagh", + "Veda Ann Borg" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Wild Beauty", + "year": 1946, + "cast": [ + "Don Porter", + "Lois Collier", + "Jacqueline deWit" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Wild West", + "year": 1946, + "cast": [ + "Eddie Dean", + "Flash", + "Roscoe Ates" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Winter Wonderland", + "year": 1946, + "cast": [ + "Lynne Roberts", + "Charles Drake", + "Eric Blore" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Without Reservations", + "year": 1946, + "cast": [ + "Claudette Colbert", + "John Wayne" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Yearling", + "year": 1946, + "cast": [ + "Gregory Peck", + "Jane Wyman", + "Claude Jarman Jr." + ], + "genres": [ + "Family", + "Drama" + ] + }, + { + "title": "Young Widow", + "year": 1946, + "cast": [ + "Jane Russell", + "Louis Hayward", + "Faith Domergue", + "Marie Wilson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "13 Rue Madeleine", + "year": 1947, + "cast": [ + "James Cagney", + "Richard Conte", + "Annabella" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Adventure Island", + "year": 1947, + "cast": [ + "Rhonda Fleming", + "Rory Calhoun" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Adventures of Don Coyote", + "year": 1947, + "cast": [ + "Richard Martin", + "Frances Rafferty" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Along the Oregon Trail", + "year": 1947, + "cast": [ + "Monte Hale", + "Lorna Gray" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Always Together", + "year": 1947, + "cast": [ + "Joyce Reynolds", + "Robert Hutton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Angel and the Badman", + "year": 1947, + "cast": [ + "John Wayne", + "Gail Russell" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Apache Rose", + "year": 1947, + "cast": [ + "Roy Rogers", + "Dale Evans" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Arnelo Affair", + "year": 1947, + "cast": [ + "John Hodiak", + "Frances Gifford" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Bachelor and the Bobby-Soxer", + "year": 1947, + "cast": [ + "Cary Grant", + "Shirley Temple", + "Myrna Loy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Backlash", + "year": 1947, + "cast": [ + "Jean Rogers", + "Richard Travis" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Bandits of Dark Canyon", + "year": 1947, + "cast": [ + "Allan Lane", + "Bob Steele" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Banjo", + "year": 1947, + "cast": [ + "Sharyn Moffett", + "Walter Reed" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Beat the Band", + "year": 1947, + "cast": [ + "Frances Langford" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Beginning or the End", + "year": 1947, + "cast": [ + "Brian Donlevy", + "Hume Cronyn", + "Beverly Tyler" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Bells of San Angelo", + "year": 1947, + "cast": [ + "Roy Rogers", + "Dale Evans" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Bells of San Fernando", + "year": 1947, + "cast": [ + "Gloria Warren", + "Donald Woods" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Big Fix", + "year": 1947, + "cast": [ + "Sheila Ryan", + "Regis Toomey" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Big Town", + "year": 1947, + "cast": [ + "Phillip Reed", + "Hillary Brooke" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Big Town After Dark", + "year": 1947, + "cast": [ + "Phillip Reed", + "Hillary Brooke" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Bishop's Wife", + "year": 1947, + "cast": [ + "Cary Grant", + "David Niven", + "Loretta Young" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Black Gold", + "year": 1947, + "cast": [ + "Anthony Quinn", + "Katherine De Mille" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Black Hills", + "year": 1947, + "cast": [ + "Eddie Dean", + "Shirley Patterson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Black Widow", + "year": 1947, + "cast": [ + "Bruce Edwards" + ], + "genres": [] + }, + { + "title": "Blackmail", + "year": 1947, + "cast": [ + "Ricardo Cortez", + "Adele Mara" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Blaze of Noon", + "year": 1947, + "cast": [ + "Anne Baxter", + "William Holden", + "Sonny Tufts" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Blind Spot", + "year": 1947, + "cast": [ + "Chester Morris", + "Constance Dowling" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "Blonde Savage", + "year": 1947, + "cast": [ + "Leif Erickson", + "Gale Sherwood", + "Veda Ann Borg" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Blondie's Anniversary", + "year": 1947, + "cast": [ + "Penny Singleton", + "Arthur Lake" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Blondie's Big Moment", + "year": 1947, + "cast": [ + "Penny Singleton", + "Arthur Lake" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Blondie's Holiday", + "year": 1947, + "cast": [ + "Penny Singleton", + "Arthur Lake" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Blondie in the Dough", + "year": 1947, + "cast": [ + "Penny Singleton", + "Arthur Lake" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Body and Soul", + "year": 1947, + "cast": [ + "John Garfield", + "Lilli Palmer" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Boomerang", + "year": 1947, + "cast": [ + "Dana Andrews", + "Jane Wyatt" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Border Feud", + "year": 1947, + "cast": [ + "Lash La Rue", + "Al St. John" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Born to Kill", + "year": 1947, + "cast": [ + "Lawrence Tierney", + "Claire Trevor" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Born to Speed", + "year": 1947, + "cast": [ + "Johnny Sands", + "Vivian Austin", + "Don Castle" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Bowery Buckaroos", + "year": 1947, + "cast": [ + "Leo Gorcey", + "Huntz Hall", + "Julie Gibson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Brasher Doubloon", + "year": 1947, + "cast": [ + "George Montgomery", + "Nancy Guild" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Brick Bradford", + "year": 1947, + "cast": [], + "genres": [] + }, + { + "title": "Brute Force", + "year": 1947, + "cast": [ + "Burt Lancaster", + "Hume Cronyn" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Buck Privates Come Home", + "year": 1947, + "cast": [ + "Abbott and Costello" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Buckaroo from Powder River", + "year": 1947, + "cast": [ + "Charles Starrett", + "Eve Miller" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Buffalo Bill Rides Again", + "year": 1947, + "cast": [ + "Richard Arlen", + "Jennifer Holt" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Bulldog Drummond at Bay", + "year": 1947, + "cast": [ + "Ron Randell", + "Anita Louise" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Bulldog Drummond Strikes Back", + "year": 1947, + "cast": [ + "Ron Randell", + "Gloria Henry" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Burning Cross", + "year": 1947, + "cast": [ + "Virginia Patton", + "John Doucette" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Bury Me Dead", + "year": 1947, + "cast": [ + "Cathy O'Donnell", + "June Lockhart", + "Hugh Beaumont" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Bush Pilot", + "year": 1947, + "cast": [ + "Rochelle Hudson", + "Jack La Rue" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Calcutta", + "year": 1947, + "cast": [ + "Alan Ladd", + "Gail Russell", + "June Duprez" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Calendar Girl", + "year": 1947, + "cast": [ + "Jane Frazee", + "Gail Patrick" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "California", + "year": 1947, + "cast": [ + "Barbara Stanwyck", + "Ray Milland" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Captain from Castile", + "year": 1947, + "cast": [ + "Tyrone Power", + "Jean Peters", + "Cesar Romero" + ], + "genres": [ + "Historical" + ] + }, + { + "title": "Carnegie Hall", + "year": 1947, + "cast": [ + "Marsha Hunt", + "William Prince" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Carnival in Costa Rica", + "year": 1947, + "cast": [ + "Vera-Ellen", + "Dick Haymes", + "Cesar Romero" + ], + "genres": [] + }, + { + "title": "Cass Timberlane", + "year": 1947, + "cast": [ + "Spencer Tracy", + "Lana Turner" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Cat Fishin'", + "year": 1947, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "Cheyenne", + "year": 1947, + "cast": [ + "Jane Wyman", + "Dennis Morgan" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Cheyenne Takes Over", + "year": 1947, + "cast": [ + "Lash La Rue", + "Al St. John", + "Nancy Gates" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Chinese Ring", + "year": 1947, + "cast": [ + "Roland Winters", + "Warren Douglas" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Christmas Eve", + "year": 1947, + "cast": [ + "George Raft", + "Randolph Scott", + "Joan Blondell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Cigarrette Girl", + "year": 1947, + "cast": [ + "Leslie Brooks", + "Jimmy Lloyd", + "Ludwig Donath" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Code of the Saddle", + "year": 1947, + "cast": [ + "Johnny Mack Brown", + "Raymond Hatton", + "Kay Morley" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Code of the West", + "year": 1947, + "cast": [ + "Steve Brodie", + "James Warren" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Copacabana", + "year": 1947, + "cast": [ + "Groucho Marx", + "Carmen Miranda" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Corpse Came C.O.D.", + "year": 1947, + "cast": [ + "George Brent", + "Joan Blondell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Crime Doctor's Gamble", + "year": 1947, + "cast": [ + "Warner Baxter", + "Micheline Cheirel" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Crimson Key", + "year": 1947, + "cast": [ + "Kent Taylor", + "Doris Dowling" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Crossfire", + "year": 1947, + "cast": [ + "Robert Young", + "Robert Mitchum", + "Robert Ryan" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Cry Wolf", + "year": 1947, + "cast": [ + "Errol Flynn", + "Barbara Stanwyck" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Curley", + "year": 1947, + "cast": [ + "Frances Rafferty", + "Billy Gray" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Cynthia", + "year": 1947, + "cast": [ + "Elizabeth Taylor", + "Mary Astor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Daisy Kenyon", + "year": 1947, + "cast": [ + "Joan Crawford", + "Henry Fonda" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Danger Street", + "year": 1947, + "cast": [ + "Jane Withers", + "Robert Lowery", + "Elaine Riley" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Dangerous Venture", + "year": 1947, + "cast": [ + "William Boyd", + "Andy Clyde" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Dangerous Years", + "year": 1947, + "cast": [ + "Billy Halop", + "Ann E. Todd" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dark Delusion", + "year": 1947, + "cast": [ + "Lionel Barrymore", + "James Craig" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dark Passage", + "year": 1947, + "cast": [ + "Humphrey Bogart", + "Lauren Bacall" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Dead Reckoning", + "year": 1947, + "cast": [ + "Humphrey Bogart", + "Lizabeth Scott" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Dear Ruth", + "year": 1947, + "cast": [ + "Joan Caulfield", + "William Holden", + "Mona Freeman" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Deep Valley", + "year": 1947, + "cast": [ + "Ida Lupino", + "Dane Clark", + "Fay Bainter" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Desert Fury", + "year": 1947, + "cast": [ + "Lizabeth Scott", + "Burt Lancaster" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Desire Me", + "year": 1947, + "cast": [ + "Greer Garson", + "Robert Mitchum" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Desperate", + "year": 1947, + "cast": [ + "Steve Brodie", + "Audrey Long", + "Raymond Burr" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Devil Ship", + "year": 1947, + "cast": [ + "Richard Lane", + "Louise Campbell" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Devil Thumbs a Ride", + "year": 1947, + "cast": [ + "Lawrence Tierney", + "Ted North", + "Betty Lawford" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Devil on Wheels", + "year": 1947, + "cast": [ + "Darryl Hickman", + "Terry Moore" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dick Tracy Meets Gruesome", + "year": 1947, + "cast": [ + "Ralph Byrd", + "Anne Gwynne", + "Boris Karloff" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Dick Tracy's Dilemma", + "year": 1947, + "cast": [ + "Ralph Byrd", + "Kay Christopher", + "Jack Lambert" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Dishonored Lady", + "year": 1947, + "cast": [ + "Hedy Lamarr", + "Dennis O'Keefe", + "John Loder" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Don't Be a Sucker", + "year": 1947, + "cast": [], + "genres": [] + }, + { + "title": "A Double Life", + "year": 1947, + "cast": [ + "Ronald Colman", + "Signe Hasso", + "Shelley Winters" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Down to Earth", + "year": 1947, + "cast": [ + "Rita Hayworth", + "Larry Parks" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Dr. Jekyll and Mr. Mouse", + "year": 1947, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Dragnet", + "year": 1947, + "cast": [ + "Henry Wilcoxon", + "Mary Brian", + "Virginia Dale" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Dreams That Money Can Buy", + "year": 1947, + "cast": [ + "Jack Bittner" + ], + "genres": [] + }, + { + "title": "Driftwood", + "year": 1947, + "cast": [ + "Ruth Warrick", + "Walter Brennan", + "Dean Jagger" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Easter Yeggs", + "year": 1947, + "cast": [ + "Bugs Bunny" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Easy Come, Easy Go", + "year": 1947, + "cast": [ + "Barry Fitzgerald", + "Diana Lynn", + "Sonny Tufts" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Egg and I", + "year": 1947, + "cast": [ + "Fred MacMurray", + "Claudette Colbert" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Escape Me Never", + "year": 1947, + "cast": [ + "Errol Flynn", + "Ida Lupino" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Exile", + "year": 1947, + "cast": [ + "Douglas Fairbanks Jr.", + "Maria Montez", + "Rita Corday" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Exposed", + "year": 1947, + "cast": [ + "Adele Mara", + "Lorna Gray" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Fabulous Dorseys", + "year": 1947, + "cast": [ + "Tommy Dorsey", + "Jimmy Dorsey" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "The Fabulous Joe", + "year": 1947, + "cast": [ + "Walter Abel", + "Marie Wilson", + "Margot Grahame" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Fabulous Texan", + "year": 1947, + "cast": [ + "Wild Bill Elliott", + "Catherine McLeod" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Fall Guy", + "year": 1947, + "cast": [ + "Leo Penn", + "Teala Loring" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Farmer's Daughter", + "year": 1947, + "cast": [ + "Loretta Young", + "Joseph Cotten" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Fear in the Night", + "year": 1947, + "cast": [ + "DeForest Kelley", + "Paul Kelly" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Fiesta", + "year": 1947, + "cast": [ + "Esther Williams", + "Ricardo Montalban" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Fighting Vigilantes", + "year": 1947, + "cast": [ + "Lash La Rue", + "Jennifer Holt" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Fireworks", + "year": 1947, + "cast": [], + "genres": [] + }, + { + "title": "The Flame", + "year": 1947, + "cast": [ + "John Carroll", + "Vera Ralston", + "Robert Paige", + "Blanche Yurka", + "Broderick Crawford" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Flashing Guns", + "year": 1947, + "cast": [ + "Johnny Mack Brown", + "Raymond Hatton" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Fool's Gold", + "year": 1947, + "cast": [ + "William Boyd", + "Jane Randolph" + ], + "genres": [ + "Western" + ] + }, + { + "title": "For the Love of Rusty", + "year": 1947, + "cast": [ + "Tom Powers", + "Ann Doran" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Forever Amber", + "year": 1947, + "cast": [ + "Linda Darnell", + "Cornel Wilde", + "George Sanders" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "For You I Die", + "year": 1947, + "cast": [ + "Cathy Downs", + "Paul Langton" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Foxes of Harrow", + "year": 1947, + "cast": [ + "Rex Harrison", + "Maureen O'Hara" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Framed", + "year": 1947, + "cast": [ + "Glenn Ford", + "Janis Carter" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Fugitive", + "year": 1947, + "cast": [ + "Henry Fonda", + "Dolores del Río", + "Pedro Armendáriz" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Fun and Fancy Free", + "year": 1947, + "cast": [ + "Edgar Bergen", + "Dinah Shore" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Fun on a Weekend", + "year": 1947, + "cast": [ + "Eddie Bracken", + "Priscilla Lane", + "Tom Conway" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Gangster", + "year": 1947, + "cast": [ + "Barry Sullivan", + "Belita" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Gas House Kids Go West", + "year": 1947, + "cast": [ + "Emory Parnell", + "Vince Barnett" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Gas House Kids in Hollywood", + "year": 1947, + "cast": [ + "Carl Switzer", + "Benny Bartlett" + ], + "genres": [ + "Comedy", + "Crime" + ] + }, + { + "title": "Gentleman's Agreement", + "year": 1947, + "cast": [ + "Gregory Peck", + "John Garfield", + "Dorothy McGuire", + "Celeste Holm", + "Jane Wyatt" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Ghost and Mrs. Muir", + "year": 1947, + "cast": [ + "Gene Tierney", + "Rex Harrison" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Ghost Goes Wild", + "year": 1947, + "cast": [ + "Anne Gwynne", + "James Ellison" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Ghost Town Renegades", + "year": 1947, + "cast": [ + "Lash La Rue", + "Jennifer Holt" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Golden Earrings", + "year": 1947, + "cast": [ + "Ray Milland", + "Marlene Dietrich" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Good News", + "year": 1947, + "cast": [ + "June Allyson", + "Peter Lawford", + "Mel Tormé" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Green Dolphin Street", + "year": 1947, + "cast": [ + "Lana Turner", + "Van Heflin", + "Donna Reed" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Guilt of Janet Ames", + "year": 1947, + "cast": [ + "Rosalind Russell", + "Melvyn Douglas" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Guilty", + "year": 1947, + "cast": [ + "Bonita Granville", + "Don Castle", + "Regis Toomey" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Gunfighters", + "year": 1947, + "cast": [ + "Randolph Scott", + "Barbara Britton" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Gun Talk", + "year": 1947, + "cast": [ + "Johnny Mack Brown", + "Raymond Hatton", + "Christine McIntyre" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Half-Wits Holiday", + "year": 1947, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hard Boiled Mahoney", + "year": 1947, + "cast": [ + "Leo Gorcey", + "Huntz Hall", + "Teala Loring" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Heading for Heaven", + "year": 1947, + "cast": [ + "Stuart Erwin", + "Glenda Farrell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Heartaches", + "year": 1947, + "cast": [ + "Sheila Ryan", + "Edward Norris" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Heaven Only Knows", + "year": 1947, + "cast": [ + "Robert Cummings", + "Brian Donlevy", + "Marjorie Reynolds" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Her Husband's Affairs", + "year": 1947, + "cast": [ + "Lucille Ball", + "Franchot Tone", + "Edward Everett Horton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hi-De-Ho", + "year": 1947, + "cast": [ + "Cab Calloway", + "Jeni Le Gon" + ], + "genres": [ + "Musical", + "Drama" + ] + }, + { + "title": "High Barbaree", + "year": 1947, + "cast": [ + "Van Johnson", + "June Allyson" + ], + "genres": [ + "War" + ] + }, + { + "title": "High Conquest", + "year": 1947, + "cast": [ + "Anna Lee", + "Gilbert Roland", + "Warren Douglas" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "High Tide", + "year": 1947, + "cast": [ + "Lee Tracy", + "Julie Bishop" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "High Wall", + "year": 1947, + "cast": [ + "Robert Taylor", + "Audrey Totter" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Hit Parade of 1947", + "year": 1947, + "cast": [ + "Eddie Albert", + "Constance Moore" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Hold That Lion!", + "year": 1947, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Comedy", + "Short" + ] + }, + { + "title": "Hollywood Barn Dance", + "year": 1947, + "cast": [ + "Ernest Tubb", + "Helen Boyce" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Homesteaders of Paradise Valley", + "year": 1947, + "cast": [ + "Allan Lane", + "Martha Wentworth" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Homestretch", + "year": 1947, + "cast": [ + "Cornel Wilde", + "Maureen O'Hara" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Honeymoon", + "year": 1947, + "cast": [ + "Shirley Temple", + "Franchot Tone", + "Guy Madison" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hoppy's Holiday", + "year": 1947, + "cast": [ + "William Boyd", + "Andy Clyde" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Hucksters", + "year": 1947, + "cast": [ + "Clark Gable", + "Deborah Kerr" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "I Cover Big Town", + "year": 1947, + "cast": [ + "Hillary Brooke", + "Phillip Reed" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "If Winter Comes", + "year": 1947, + "cast": [ + "Walter Pidgeon", + "Deborah Kerr", + "Angela Lansbury" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "I'll Be Yours", + "year": 1947, + "cast": [ + "Deanna Durbin", + "Tom Drake", + "William Bendix", + "Adolphe Menjou" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "The Imperfect Lady", + "year": 1947, + "cast": [ + "Ray Milland", + "Teresa Wright" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Intrigue", + "year": 1947, + "cast": [ + "George Raft", + "Helena Carter" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Invisible Mouse", + "year": 1947, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "The Invisible Wall", + "year": 1947, + "cast": [ + "Virginia Christine", + "Don Castle" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "It Had to Be You", + "year": 1947, + "cast": [ + "Ginger Rogers", + "Cornel Wilde" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "It Happened in Brooklyn", + "year": 1947, + "cast": [ + "Frank Sinatra", + "Jimmy Durante" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "It Happened on 5th Avenue", + "year": 1947, + "cast": [ + "Don DeFore", + "Ann Harding", + "Charles Ruggles" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "It's a Joke, Son!", + "year": 1947, + "cast": [ + "Kenny Delmar", + "Una Merkel", + "June Lockhart" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Ivy", + "year": 1947, + "cast": [ + "Joan Fontaine", + "Richard Ney" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "I Wonder Who's Kissing Her Now", + "year": 1947, + "cast": [ + "June Haver", + "Mark Stevens" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Jesse James Rides Again", + "year": 1947, + "cast": [ + "Clayton Moore" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Jewels of Brandenburg", + "year": 1947, + "cast": [ + "Richard Travis", + "Micheline Cheirel" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Jiggs and Maggie in Society", + "year": 1947, + "cast": [ + "Joe Yule", + "Renie Riano", + "Wanda McKay" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Joe Palooka in the Knockout", + "year": 1947, + "cast": [ + "Joe Kirkwood Jr.", + "Leon Errol", + "Trudy Marshall" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Johnny O'Clock", + "year": 1947, + "cast": [ + "Dick Powell", + "Evelyn Keyes", + "Lee J. Cobb" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Jungle Flight", + "year": 1947, + "cast": [ + "Robert Lowery", + "Ann Savage", + "Barton MacLane" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Keeper of the Bees", + "year": 1947, + "cast": [ + "Gloria Henry", + "Jane Darwell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Key Witness", + "year": 1947, + "cast": [ + "Trudy Marshall", + "John Beal" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Killer at Large", + "year": 1947, + "cast": [ + "Robert Lowery", + "Charles Evans" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Killer Dill", + "year": 1947, + "cast": [ + "Stuart Erwin", + "Anne Gwynne", + "Mike Mazurki" + ], + "genres": [ + "Crime", + "Comedy" + ] + }, + { + "title": "Killer McCoy", + "year": 1947, + "cast": [ + "Mickey Rooney", + "Brian Donlevy", + "Ann Blyth" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Kilroy Was Here", + "year": 1947, + "cast": [ + "Jackie Cooper", + "Jackie Coogan", + "Wanda McKay" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "King-Size Canary", + "year": 1947, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "Kiss of Death", + "year": 1947, + "cast": [ + "Victor Mature", + "Brian Donlevy", + "Richard Widmark" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "King of the Bandits", + "year": 1947, + "cast": [ + "Gilbert Roland", + "Angela Greene" + ], + "genres": [ + "Western" + ] + }, + { + "title": "King of the Wild Horses", + "year": 1947, + "cast": [ + "Preston Foster", + "Gail Patrick" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Ladies' Man", + "year": 1947, + "cast": [ + "Eddie Bracken", + "Cass Daley", + "Virginia Field" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Lady from Shanghai", + "year": 1947, + "cast": [ + "Rita Hayworth", + "Orson Welles" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Lady in the Lake", + "year": 1947, + "cast": [ + "Robert Montgomery", + "Audrey Totter" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Land of the Lawless", + "year": 1947, + "cast": [ + "Johnny Mack Brown", + "Raymond Hatton" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Last Days of Boot Hill", + "year": 1947, + "cast": [ + "Charles Starrett", + "Paul Campbell" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Last Frontier Uprising", + "year": 1947, + "cast": [ + "Monte Hale", + "Lorna Gray" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Last of the Redskins", + "year": 1947, + "cast": [ + "Jon Hall", + "Evelyn Ankers", + "Julie Bishop" + ], + "genres": [ + "Historical" + ] + }, + { + "title": "The Last Round-Up", + "year": 1947, + "cast": [ + "Gene Autry", + "Ralph Morgan" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Late George Apley", + "year": 1947, + "cast": [ + "Ronald Colman" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Law Comes to Gunsight", + "year": 1947, + "cast": [ + "Johnny Mack Brown", + "Raymond Hatton", + "Reno Browne" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Law of the Canyon", + "year": 1947, + "cast": [ + "Charles Starrett", + "Nancy Saunders" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Law of the Lash", + "year": 1947, + "cast": [ + "Lash LaRue", + "Al St. John", + "Lee Roberts" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Life with Father", + "year": 1947, + "cast": [ + "William Powell", + "Irene Dunne", + "Elizabeth Taylor" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Lighthouse", + "year": 1947, + "cast": [ + "Don Castle", + "June Lang", + "Marion Martin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Likely Story", + "year": 1947, + "cast": [ + "Barbara Hale", + "Bill Williams", + "Sam Levene" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Linda, Be Good", + "year": 1947, + "cast": [ + "Elyse Knox", + "Marie Wilson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Little Miss Broadway", + "year": 1947, + "cast": [ + "Jean Porter", + "John Shelton" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Living in a Big Way", + "year": 1947, + "cast": [ + "Gene Kelly", + "Marie McDonald", + "Charles Winninger" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Louisiana", + "year": 1947, + "cast": [ + "Jimmie Davis", + "Margaret Lindsay" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Lone Hand Texan", + "year": 1947, + "cast": [ + "Charles Starrett", + "Smiley Burnette" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Lone Wolf in London'", + "year": 1947, + "cast": [ + "Gerald Mohr", + "Nancy Saunders" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Lone Wolf in Mexico", + "year": 1947, + "cast": [ + "Gerald Mohr", + "Jacqueline deWit" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Long Night", + "year": 1947, + "cast": [ + "Henry Fonda", + "Barbara Bel Geddes" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Lost Honeymoon", + "year": 1947, + "cast": [ + "Franchot Tone", + "Ann Richards" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Lost Moment", + "year": 1947, + "cast": [ + "Susan Hayward", + "Robert Cummings" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Love and Learn", + "year": 1947, + "cast": [ + "Jack Carson", + "Martha Vickers" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Love from a Stranger", + "year": 1947, + "cast": [ + "John Hodiak", + "Sylvia Sidney" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Lured", + "year": 1947, + "cast": [ + "Lucille Ball", + "Charles Coburn", + "Boris Karloff" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Macomber Affair", + "year": 1947, + "cast": [ + "Gregory Peck", + "Joan Bennett", + "Robert Preston" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Magic Town", + "year": 1947, + "cast": [ + "James Stewart", + "Jane Wyman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Man I Love", + "year": 1947, + "cast": [ + "Ida Lupino", + "Robert Alda" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Marauders", + "year": 1947, + "cast": [ + "William Boyd", + "Andy Clyde" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Marshal of Cripple Creek", + "year": 1947, + "cast": [ + "Allan Lane", + "Martha Wentworth", + "Trevor Bardette" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Merton of the Movies", + "year": 1947, + "cast": [ + "Red Skelton", + "Virginia O'Brien", + "Gloria Grahame" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Michigan Kid", + "year": 1947, + "cast": [ + "Jon Hall", + "Victor McLaglen", + "Rita Johnson", + "Andy Devine" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Mighty McGurk", + "year": 1947, + "cast": [ + "Wallace Beery", + "Dean Stockwell", + "Edward Arnold" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Millerson Case", + "year": 1947, + "cast": [ + "Warner Baxter", + "Nancy Saunders" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Millie's Daughter", + "year": 1947, + "cast": [ + "Gladys George", + "Paul Campbell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Miracle on 34th Street", + "year": 1947, + "cast": [ + "Edmund Gwenn", + "Maureen O'Hara", + "John Payne", + "Natalie Wood" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Monsieur Verdoux", + "year": 1947, + "cast": [ + "Charles Chaplin", + "Martha Raye", + "William Frawley" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Moss Rose", + "year": 1947, + "cast": [ + "Peggy Cummins", + "Victor Mature", + "Ethel Barrymore" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Mother Wore Tights", + "year": 1947, + "cast": [ + "Betty Grable", + "Dan Dailey", + "Mona Freeman" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Motion Painting No. 1", + "year": 1947, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "Mourning Becomes Electra", + "year": 1947, + "cast": [ + "Rosalind Russell", + "Michael Redgrave" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Mouse in the House", + "year": 1947, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Mr. District Attorney", + "year": 1947, + "cast": [ + "Dennis O'Keefe", + "Adolphe Menjou", + "Marguerite Chapman" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "My Brother Talks to Horses", + "year": 1947, + "cast": [ + "Butch Jenkins", + "Peter Lawford" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "My Favorite Brunette", + "year": 1947, + "cast": [ + "Bob Hope", + "Dorothy Lamour", + "Peter Lorre" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "My Wild Irish Rose", + "year": 1947, + "cast": [ + "Dennis Morgan", + "Arlene Dahl", + "Andrea King" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "New Orleans", + "year": 1947, + "cast": [ + "Arturo de Córdova", + "Dorothy Patrick", + "Marjorie Lord" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "News Hounds", + "year": 1947, + "cast": [ + "Leo Gorcey", + "Huntz Hall", + "Christine McIntyre" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Nightmare Alley", + "year": 1947, + "cast": [ + "Tyrone Power", + "Joan Blondell", + "Coleen Gray" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Nora Prentiss", + "year": 1947, + "cast": [ + "Ann Sheridan", + "Kent Smith", + "Robert Alda" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Northwest Outpost", + "year": 1947, + "cast": [ + "Nelson Eddy", + "Ilona Massey" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "On the Old Spanish Trail", + "year": 1947, + "cast": [ + "Roy Rogers", + "Tito Guízar" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Oregon Trail Scouts", + "year": 1947, + "cast": [ + "Allan Lane", + "Martha Wentworth" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Other Love", + "year": 1947, + "cast": [ + "Barbara Stanwyck", + "David Niven", + "Richard Conte" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Out of the Blue", + "year": 1947, + "cast": [ + "Virginia Mayo", + "Ann Dvorak" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Out of the Past", + "year": 1947, + "cast": [ + "Robert Mitchum", + "Jane Greer", + "Kirk Douglas", + "Rhonda Fleming", + "Steve Brodie" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Over the Santa Fe Trail", + "year": 1947, + "cast": [ + "Ken Curtis", + "Jennifer Holt", + "Guy Kibbee" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Paradine Case", + "year": 1947, + "cast": [ + "Gregory Peck", + "Charles Laughton", + "Alida Valli", + "Ann Todd", + "Ethel Barrymore", + "Louis Jourdan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Part Time Pal", + "year": 1947, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "The Perfect Marriage", + "year": 1947, + "cast": [ + "Loretta Young", + "David Niven", + "Virginia Field" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Perils of Pauline", + "year": 1947, + "cast": [ + "Betty Hutton", + "John Lund" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Pest in the House", + "year": 1947, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "Philo Vance's Gamble", + "year": 1947, + "cast": [ + "Alan Curtis", + "Vivian Austin", + "Tala Birell" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Philo Vance Returns", + "year": 1947, + "cast": [ + "William Wright", + "Vivian Austin", + "Ramsay Ames" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Philo Vance's Secret Mission", + "year": 1947, + "cast": [ + "Alan Curtis", + "Sheila Ryan", + "Tala Birell" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Pilgrim Lady", + "year": 1947, + "cast": [ + "Lynne Roberts", + "Warren Douglas", + "Alan Mowbray", + "Veda Ann Borg" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Pioneer Justice", + "year": 1947, + "cast": [ + "Lash La Rue", + "Jennifer Holt" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Pirates of Monterey", + "year": 1947, + "cast": [ + "Maria Montez", + "Rod Cameron", + "Gilbert Roland" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Possessed", + "year": 1947, + "cast": [ + "Joan Crawford", + "Van Heflin", + "Raymond Massey" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Prairie", + "year": 1947, + "cast": [ + "Lenore Aubert", + "Alan Baxter" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Prairie Express", + "year": 1947, + "cast": [ + "Johnny Mack Brown", + "Raymond Hatton", + "Virginia Belmont" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Prairie Raiders", + "year": 1947, + "cast": [ + "Charles Starrett", + "Nancy Saunders" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Pretender", + "year": 1947, + "cast": [ + "Albert Dekker", + "Catherine Craig" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Private Affairs of Bel Ami", + "year": 1947, + "cast": [ + "George Sanders", + "Angela Lansbury", + "Ann Dvorak" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Pursued", + "year": 1947, + "cast": [ + "Robert Mitchum", + "Teresa Wright" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Queen of the Amazons", + "year": 1947, + "cast": [ + "Robert Lowery", + "Patricia Morison" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Raiders of the South", + "year": 1947, + "cast": [ + "Johnny Mack Brown", + "Evelyn Brent" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Railroaded!", + "year": 1947, + "cast": [ + "John Ireland", + "Hugh Beaumont" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Rainbow Over the Rockies", + "year": 1947, + "cast": [ + "Jimmy Wakely", + "Dennis Moore" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Ramrod", + "year": 1947, + "cast": [ + "Joel McCrea", + "Veronica Lake", + "Donald Crisp" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Range Beyond the Blue", + "year": 1947, + "cast": [ + "Eddie Dean", + "Roscoe Ates", + "Helen Mowery" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Red House", + "year": 1947, + "cast": [ + "Edward G. Robinson", + "Judith Anderson" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Red Stallion", + "year": 1947, + "cast": [ + "Robert Paige", + "Noreen Nash" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Repeat Performance", + "year": 1947, + "cast": [ + "Louis Hayward", + "Joan Leslie" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Return of the Lash", + "year": 1947, + "cast": [ + "Lash La Rue", + "Al St. John" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Return of Rin Tin Tin", + "year": 1947, + "cast": [ + "Donald Woods", + "Claudia Drake" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Ride the Pink Horse", + "year": 1947, + "cast": [ + "Robert Montgomery", + "Wanda Hendrix" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Riders of the Lone Star", + "year": 1947, + "cast": [ + "Charles Starrett", + "Smiley Burnette" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Ridin' Down the Trail", + "year": 1947, + "cast": [ + "Jimmy Wakely", + "Douglas Fowley" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Riding the California Trail", + "year": 1947, + "cast": [ + "Gilbert Roland", + "Teala Loring" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Riffraff", + "year": 1947, + "cast": [ + "Pat O'Brien", + "Walter Slezak" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Road to the Big House", + "year": 1947, + "cast": [ + "John Shelton", + "Ann Doran" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Road to Rio", + "year": 1947, + "cast": [ + "Bob Hope", + "Bing Crosby", + "Dorothy Lamour" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Robin Hood of Monterey", + "year": 1947, + "cast": [ + "Gilbert Roland", + "Evelyn Brent" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Robin Hood of Texas", + "year": 1947, + "cast": [ + "Gene Autry", + "Lynne Roberts", + "Adele Mara" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Romance of Rosy Ridge", + "year": 1947, + "cast": [ + "Van Johnson", + "Thomas Mitchell", + "Janet Leigh" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Roses Are Red", + "year": 1947, + "cast": [ + "Peggy Knudsen", + "Don Castle" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "Rose of Santa Rosa", + "year": 1947, + "cast": [ + "Patricia Barry", + "Eduardo Noriega" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Rustlers of Devil's Canyon", + "year": 1947, + "cast": [ + "Allan Lane", + "Peggy Stewart" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Saddle Pals", + "year": 1947, + "cast": [ + "Gene Autry", + "Lynne Roberts" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Salt Water Tabby", + "year": 1947, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Sarge Goes to College", + "year": 1947, + "cast": [ + "Freddie Stewart", + "June Preisser", + "Frankie Darro" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Scared to Death", + "year": 1947, + "cast": [ + "Bela Lugosi", + "George Zucco", + "Molly Lamont" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Scent-imental Over You", + "year": 1947, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "The Sea of Grass", + "year": 1947, + "cast": [ + "Spencer Tracy", + "Katharine Hepburn", + "Melvyn Douglas" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Second Chance", + "year": 1947, + "cast": [ + "Kent Taylor", + "Louise Currie", + "Dennis Hoey" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Secret Life of Walter Mitty", + "year": 1947, + "cast": [ + "Danny Kaye", + "Virginia Mayo" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Senator Was Indiscreet", + "year": 1947, + "cast": [ + "William Powell", + "Ella Raines" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Seven Keys to Baldpate", + "year": 1947, + "cast": [ + "Phillip Terry", + "Jacqueline White" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Seven Were Saved", + "year": 1947, + "cast": [ + "Richard Denning", + "Catherine Craig" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Shadow Valley", + "year": 1947, + "cast": [ + "Eddie Dean", + "Jennifer Holt" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Shocking Miss Pilgrim", + "year": 1947, + "cast": [ + "Betty Grable", + "Dick Haymes", + "Anne Revere" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Shoot to Kill", + "year": 1947, + "cast": [ + "Robert Kent", + "Luana Walters" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Sin of Harold Diddlebock", + "year": 1947, + "cast": [ + "Harold Lloyd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Sinbad the Sailor", + "year": 1947, + "cast": [ + "Douglas Fairbanks Jr.", + "Maureen O'Hara" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Sing a Song of Six Pants", + "year": 1947, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Comedy", + "Short" + ] + }, + { + "title": "Singapore", + "year": 1947, + "cast": [ + "Fred MacMurray", + "Ava Gardner", + "Roland Culver" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Six-Gun Serenade", + "year": 1947, + "cast": [ + "Jimmy Wakely", + "Kay Morley" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Slave Girl", + "year": 1947, + "cast": [ + "Yvonne De Carlo", + "George Brent", + "Broderick Crawford" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Slick Hare", + "year": 1947, + "cast": [ + "Bugs Bunny" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Smash-Up, the Story of a Woman", + "year": 1947, + "cast": [ + "Susan Hayward", + "Eddie Albert" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Smoky River Serenade", + "year": 1947, + "cast": [ + "Ruth Terry", + "Paul Campbell" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Something in the Wind", + "year": 1947, + "cast": [ + "Deanna Durbin", + "Donald O'Connor" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Son of Rusty", + "year": 1947, + "cast": [ + "Tom Powers", + "Ann Doran" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Son of Zorro", + "year": 1947, + "cast": [ + "George Turner", + "Peggy Stewart" + ], + "genres": [] + }, + { + "title": "Song of Love", + "year": 1947, + "cast": [ + "Katharine Hepburn", + "Paul Henreid", + "Robert Walker" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Song of Scheherazade", + "year": 1947, + "cast": [ + "Yvonne De Carlo", + "Jean-Pierre Aumont", + "Eve Arden" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Song of the Wasteland", + "year": 1947, + "cast": [ + "Jimmy Wakely", + "Mike Ragan" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Song of the Thin Man", + "year": 1947, + "cast": [ + "William Powell", + "Myrna Loy", + "Patricia Morison" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "South of the Chisholm Trail", + "year": 1947, + "cast": [ + "Charles Starrett", + "Nancy Saunders" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Spirit of West Point", + "year": 1947, + "cast": [ + "Felix Blanchard", + "Glenn Davis", + "Anne Nagel" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Spoilers of the North", + "year": 1947, + "cast": [ + "Paul Kelly", + "Lorna Gray", + "Evelyn Ankers" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Sport of Kings", + "year": 1947, + "cast": [ + "Paul Campbell", + "Gloria Henry" + ], + "genres": [ + "Sports" + ] + }, + { + "title": "Springtime in the Sierras", + "year": 1947, + "cast": [ + "Roy Rogers", + "Jane Frazee" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Stage to Mesa City", + "year": 1947, + "cast": [ + "Lash La Rue", + "Jennifer Holt" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Stallion Road", + "year": 1947, + "cast": [ + "Ronald Reagan", + "Alexis Smith", + "Zachary Scott" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Stepchild", + "year": 1947, + "cast": [ + "Brenda Joyce", + "Donald Woods", + "Vivian Austin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Stork Bites Man", + "year": 1947, + "cast": [ + "Jackie Cooper", + "Meg Randall" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Stranger from Ponca City", + "year": 1947, + "cast": [ + "Charles Starrett", + "Smiley Burnette" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Suddenly, It's Spring", + "year": 1947, + "cast": [ + "Paulette Goddard", + "Fred MacMurray" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Sweet Genevieve", + "year": 1947, + "cast": [ + "Jean Porter", + "Jimmy Lydon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Swing the Western Way", + "year": 1947, + "cast": [ + "Jack Leonard", + "Thurston Hall" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Tarzan and the Huntress", + "year": 1947, + "cast": [ + "Johnny Weissmuller", + "Patricia Morison" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "T-Men", + "year": 1947, + "cast": [ + "Dennis O'Keefe", + "Wallace Ford" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "That Hagen Girl", + "year": 1947, + "cast": [ + "Ronald Reagan", + "Shirley Temple" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "That's My Gal", + "year": 1947, + "cast": [ + "Lynne Roberts", + "Don Barry" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "That's My Man", + "year": 1947, + "cast": [ + "Don Ameche", + "Catherine McLeod" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "That Way with Women", + "year": 1947, + "cast": [ + "Dane Clark", + "Martha Vickers" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "They Won't Believe Me", + "year": 1947, + "cast": [ + "Susan Hayward", + "Robert Young", + "Jane Greer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Thirteenth Hour", + "year": 1947, + "cast": [ + "Richard Dix", + "Karen Morley" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "This Time for Keeps", + "year": 1947, + "cast": [ + "Esther Williams", + "Jimmy Durante" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Three on a Ticket", + "year": 1947, + "cast": [ + "Hugh Beaumont", + "Cheryl Walker" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Thunderbolt", + "year": 1947, + "cast": [ + "James Stewart" + ], + "genres": [ + "War", + "Documentary" + ] + }, + { + "title": "Thunder in the Valley", + "year": 1947, + "cast": [ + "Lon McCallister", + "Peggy Ann Garner", + "Edmund Gwenn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Thunder Mountain", + "year": 1947, + "cast": [ + "Tim Holt", + "Martha Hyer" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Time Out of Mind", + "year": 1947, + "cast": [ + "Phyllis Calvert", + "Robert Hutton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Too Many Winners", + "year": 1947, + "cast": [ + "Hugh Beaumont", + "Trudy Marshall" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Trail of the Mounties", + "year": 1947, + "cast": [ + "Russell Hayden", + "Jennifer Holt" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Trail Street", + "year": 1947, + "cast": [ + "Randolph Scott", + "Robert Ryan" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Trail to San Antone", + "year": 1947, + "cast": [ + "Gene Autry", + "Peggy Stewart" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Trailing Danger", + "year": 1947, + "cast": [ + "Johnny Mack Brown", + "Peggy Wynne" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Trespasser", + "year": 1947, + "cast": [ + "Dale Evans", + "Warren Douglas", + "Adele Mara" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Trouble with Women", + "year": 1947, + "cast": [ + "Ray Milland", + "Teresa Wright", + "Brian Donlevy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Tubby the Tuba", + "year": 1947, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "Tweetie Pie", + "year": 1947, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "Twilight on the Rio Grande", + "year": 1947, + "cast": [ + "Gene Autry", + "Adele Mara" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Two Blondes and a Redhead", + "year": 1947, + "cast": [ + "Jean Porter", + "Jimmy Lloyd", + "June Preisser" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Two Mrs. Carrolls", + "year": 1947, + "cast": [ + "Barbara Stanwyck", + "Humphrey Bogart", + "Alexis Smith" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Tycoon", + "year": 1947, + "cast": [ + "John Wayne", + "Laraine Day", + "Cedric Hardwicke" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Unconquered", + "year": 1947, + "cast": [ + "Gary Cooper", + "Paulette Goddard", + "Howard Da Silva" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Under Colorado Skies", + "year": 1947, + "cast": [ + "Monte Hale", + "Lorna Gray" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Under the Tonto Rim", + "year": 1947, + "cast": [ + "Tim Holt", + "Nan Leslie" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Undercover Maisie", + "year": 1947, + "cast": [ + "Ann Sothern", + "Barry Nelson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Unexpected Guest", + "year": 1947, + "cast": [ + "William Boyd", + "Andy Clyde", + "Una O'Connor" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Unfaithful", + "year": 1947, + "cast": [ + "Ann Sheridan", + "Lew Ayres" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Unfinished Dance", + "year": 1947, + "cast": [ + "Cyd Charisse", + "Margaret O'Brien", + "Danny Thomas" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Unsuspected", + "year": 1947, + "cast": [ + "Claude Rains", + "Audrey Totter" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Untamed Fury", + "year": 1947, + "cast": [ + "Steve Pendleton", + "Mikel Conrad" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Vacation Days", + "year": 1947, + "cast": [ + "Freddie Stewart", + "June Preisser", + "Frankie Darro" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Valley of Fear", + "year": 1947, + "cast": [ + "Johnny Mack Brown", + "Raymond Hatton", + "Christine McIntyre" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Variety Girl", + "year": 1947, + "cast": [ + "Various artists" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Velvet Touch", + "year": 1947, + "cast": [ + "Rosalind Russell", + "Claire Trevor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Vigilante", + "year": 1947, + "cast": [ + "Ralph Byrd" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Vigilantes of Boomtown", + "year": 1947, + "cast": [ + "Allan Lane", + "Peggy Stewart" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Vigilantes Return", + "year": 1947, + "cast": [ + "Jon Hall", + "Margaret Lindsay" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Violence", + "year": 1947, + "cast": [ + "Nancy Coleman", + "Michael O'Shea" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Voice of the Turtle", + "year": 1947, + "cast": [ + "Ronald Reagan", + "Eleanor Parker", + "Eve Arden" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Web", + "year": 1947, + "cast": [ + "Vincent Price", + "Edmond O'Brien" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Web of Danger", + "year": 1947, + "cast": [ + "Adele Mara", + "Bill Kennedy" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Welcome Stranger", + "year": 1947, + "cast": [ + "Bing Crosby", + "Joan Caulfield" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "West of Dodge City", + "year": 1947, + "cast": [ + "Charles Starrett", + "Nancy Saunders" + ], + "genres": [ + "Western" + ] + }, + { + "title": "West to Glory", + "year": 1947, + "cast": [ + "Eddie Dean", + "Roscoe Ates" + ], + "genres": [ + "Western" + ] + }, + { + "title": "When a Girl's Beautiful", + "year": 1947, + "cast": [ + "Adele Jergens", + "Marc Platt", + "Patricia Barry" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Where There's Life", + "year": 1947, + "cast": [ + "Bob Hope", + "Signe Hasso", + "William Bendix", + "George Coulouris" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Whispering City", + "year": 1947, + "cast": [ + "Paul Lukas", + "Helmut Dantine" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Wild Country", + "year": 1947, + "cast": [ + "Eddie Dean", + "Roscoe Ates" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Wild Frontier", + "year": 1947, + "cast": [ + "Allan Lane", + "Jack Holt" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Wild Harvest", + "year": 1947, + "cast": [ + "Alan Ladd", + "Dorothy Lamour", + "Robert Preston" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Wild Horse Mesa", + "year": 1947, + "cast": [ + "Tim Holt", + "Nan Leslie" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Wistful Widow of Wagon Gap", + "year": 1947, + "cast": [ + "Bud Abbott", + "Lou Costello" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Woman on the Beach", + "year": 1947, + "cast": [ + "Joan Bennett", + "Robert Ryan", + "Charles Bickford" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Wyoming", + "year": 1947, + "cast": [ + "Wild Bill Elliott", + "Vera Ralston" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Yankee Fakir", + "year": 1947, + "cast": [ + "Douglas Fowley", + "Joan Woodbury" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "3 Godfathers", + "year": 1948, + "cast": [ + "John Wayne", + "Harry Carey Jr.", + "Pedro Armendáriz", + "Mae Marsh" + ], + "genres": [ + "Western" + ] + }, + { + "title": "13 Lead Soldiers", + "year": 1948, + "cast": [ + "Tom Conway", + "Maria Palmer", + "Helen Westcott" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "A-Lad-In His Lamp", + "year": 1948, + "cast": [ + "Bugs Bunny" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Abbott and Costello Meet Frankenstein", + "year": 1948, + "cast": [ + "Bud Abbott", + "Lou Costello", + "Lon Chaney Jr.", + "Bela Lugosi", + "Glenn Strange" + ], + "genres": [ + "Comedy", + "Horror" + ] + }, + { + "title": "An Act of Murder", + "year": 1948, + "cast": [ + "Fredric March", + "Edmond O'Brien", + "Florence Eldridge" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Act of Violence", + "year": 1948, + "cast": [ + "Van Heflin", + "Robert Ryan", + "Janet Leigh", + "Mary Astor" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Adventures in Silverado", + "year": 1948, + "cast": [ + "William Bishop", + "Gloria Henry", + "Edgar Buchanan" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Adventures of Don Juan", + "year": 1948, + "cast": [ + "Errol Flynn", + "Viveca Lindfors" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Adventures of Frank and Jesse James", + "year": 1948, + "cast": [ + "Clayton Moore", + "Noel Neill" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Adventures of Gallant Bess", + "year": 1948, + "cast": [ + "Cameron Mitchell", + "Audrey Long" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Albuquerque", + "year": 1948, + "cast": [ + "Randolph Scott", + "Barbara Britton", + "George \"Gabby\" Hayes" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Alias a Gentleman", + "year": 1948, + "cast": [ + "Wallace Beery", + "Dorothy Patrick" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "All My Sons", + "year": 1948, + "cast": [ + "Edward G. Robinson", + "Burt Lancaster" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Amazing Mr. X", + "year": 1948, + "cast": [ + "Turhan Bey", + "Lynn Bari", + "Cathy O'Donnell" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Angel in Exile", + "year": 1948, + "cast": [ + "John Carroll", + "Adele Mara" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Angel on the Amazon", + "year": 1948, + "cast": [ + "George Brent", + "Vera Ralston", + "Brian Aherne", + "Constance Bennett" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Angels' Alley", + "year": 1948, + "cast": [ + "Leo Gorcey", + "Huntz Hall", + "Rosemary LaPlanche" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Another Part of the Forest", + "year": 1948, + "cast": [ + "Fredric March", + "Florence Eldridge" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Apartment for Peggy", + "year": 1948, + "cast": [ + "Jeanne Crain", + "William Holden" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Appointment with Murder", + "year": 1948, + "cast": [ + "John Calvert", + "Catherine Craig" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "April Showers", + "year": 1948, + "cast": [ + "Ann Sothern", + "Jack Carson" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Arch of Triumph", + "year": 1948, + "cast": [ + "Ingrid Bergman", + "Charles Boyer", + "Charles Laughton" + ], + "genres": [ + "War" + ] + }, + { + "title": "Are You with It?", + "year": 1948, + "cast": [ + "Donald O'Connor", + "Olga San Juan" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "The Argyle Secrets", + "year": 1948, + "cast": [ + "William Gargan", + "Marjorie Lord" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Arizona Ranger", + "year": 1948, + "cast": [ + "Tim Holt", + "Jack Holt", + "Nan Leslie" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Arkansas Swing", + "year": 1948, + "cast": [ + "Gloria Henry", + "June Vincent" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Arthur Takes Over", + "year": 1948, + "cast": [ + "Lois Collier", + "Richard Crane" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Assigned to Danger", + "year": 1948, + "cast": [ + "Gene Raymond", + "Noreen Nash" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "B.F.'s Daughter", + "year": 1948, + "cast": [ + "Barbara Stanwyck", + "Van Heflin", + "Charles Coburn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Babe Ruth Story", + "year": 1948, + "cast": [ + "William Bendix", + "Claire Trevor", + "Charles Bickford" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Back Trail", + "year": 1948, + "cast": [ + "Johnny Mack Brown", + "Raymond Hatton", + "Mildred Coles" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Behind Locked Doors", + "year": 1948, + "cast": [ + "Lucille Bremer", + "Richard Carlson" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Belle Starr's Daughter", + "year": 1948, + "cast": [ + "George Montgomery", + "Ruth Roman" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Berlin Express", + "year": 1948, + "cast": [ + "Merle Oberon", + "Robert Ryan", + "Paul Lukas" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Best Man Wins", + "year": 1948, + "cast": [ + "Anna Lee", + "Edgar Buchanan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Beyond Glory", + "year": 1948, + "cast": [ + "Donna Reed", + "Alan Ladd" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Big City", + "year": 1948, + "cast": [ + "Robert Preston", + "George Murphy", + "Danny Thomas" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Big Clock", + "year": 1948, + "cast": [ + "Charles Laughton", + "Ray Milland" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Big Punch", + "year": 1948, + "cast": [ + "Gordon MacRae", + "Lois Maxwell", + "Wayne Morris" + ], + "genres": [ + "Sports", + "Drama" + ] + }, + { + "title": "Big Town Scandal", + "year": 1948, + "cast": [ + "Hillary Brooke", + "Phillip Reed" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Bill and Coo", + "year": 1948, + "cast": [], + "genres": [] + }, + { + "title": "The Black Arrow", + "year": 1948, + "cast": [ + "Louis Hayward", + "Janet Blair", + "George Macready" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Black Bart", + "year": 1948, + "cast": [ + "Dan Duryea", + "Yvonne De Carlo" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Black Eagle", + "year": 1948, + "cast": [ + "William Bishop", + "Virginia Patton" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Blazing Across the Pecos", + "year": 1948, + "cast": [ + "Charles Starrett", + "Patricia Barry" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Blonde Ice", + "year": 1948, + "cast": [ + "Robert Paige", + "Leslie Brooks" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Blondie's Reward", + "year": 1948, + "cast": [ + "Penny Singleton", + "Arthur Lake" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Blondie's Secret", + "year": 1948, + "cast": [ + "Penny Singleton", + "Arthur Lake" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Blood on the Moon", + "year": 1948, + "cast": [ + "Robert Mitchum", + "Robert Preston", + "Barbara Bel Geddes" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Bob and Sally", + "year": 1948, + "cast": [], + "genres": [] + }, + { + "title": "Bodyguard", + "year": 1948, + "cast": [ + "Lawrence Tierney", + "Priscilla Lane" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Bold Frontiersman", + "year": 1948, + "cast": [ + "Allan Lane", + "Eddy Waller" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Borrowed Trouble", + "year": 1948, + "cast": [ + "William Boyd", + "Andy Clyde" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Boy with Green Hair", + "year": 1948, + "cast": [ + "Dean Stockwell", + "Pat O'Brien", + "Barbara Hale" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Bride Goes Wild", + "year": 1948, + "cast": [ + "June Allyson", + "Van Johnson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Brideless Groom", + "year": 1948, + "cast": [], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "Buccaneer Bunny", + "year": 1948, + "cast": [ + "Bugs Bunny" + ], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "Bugs Bunny Rides Again", + "year": 1948, + "cast": [ + "Bugs Bunny" + ], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "Bungalow 13", + "year": 1948, + "cast": [ + "Tom Conway", + "Margaret Hamilton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Caged Fury", + "year": 1948, + "cast": [ + "Richard Denning", + "Sheila Ryan", + "Mary Beth Hughes" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "California Firebrand", + "year": 1948, + "cast": [ + "Monte Hale", + "Lorna Gray", + "Paul Hurst" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Call Northside 777", + "year": 1948, + "cast": [ + "James Stewart", + "Richard Conte" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Campus Honeymoon", + "year": 1948, + "cast": [ + "Lee and Lyn Wilde", + "Adele Mara" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Campus Sleuth", + "year": 1948, + "cast": [ + "Freddie Stewart", + "June Preisser", + "Noel Neill" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Canon City", + "year": 1948, + "cast": [ + "Scott Brady", + "Jeff Corey" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Carson City Raiders", + "year": 1948, + "cast": [ + "Allan Lane", + "Eddy Waller" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Casbah", + "year": 1948, + "cast": [ + "Yvonne de Carlo", + "Tony Martin" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Challenge", + "year": 1948, + "cast": [ + "Tom Conway", + "June Vincent" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Checkered Coat", + "year": 1948, + "cast": [ + "Tom Conway", + "Noreen Nash" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Check Your Guns", + "year": 1948, + "cast": [ + "Eddie Dean", + "Roscoe Ates", + "Nancy Gates" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Chicken of Tomorrow", + "year": 1948, + "cast": [ + "Lowell Thomas" + ], + "genres": [ + "Short" + ] + }, + { + "title": "Close-Up", + "year": 1948, + "cast": [ + "Alan Baxter", + "Virginia Gilmore" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Cobra Strikes", + "year": 1948, + "cast": [ + "Sheila Ryan", + "Richard Fraser", + "Leslie Brooks" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Command Decision", + "year": 1948, + "cast": [ + "Clark Gable", + "Walter Pidgeon", + "Van Johnson" + ], + "genres": [ + "War" + ] + }, + { + "title": "Congo Bill", + "year": 1948, + "cast": [ + "Don McGuire", + "Cleo Moore" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Coroner Creek", + "year": 1948, + "cast": [ + "Randolph Scott", + "Marguerite Chapman" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Counterfeiters", + "year": 1948, + "cast": [ + "Doris Merrick", + "Hugh Beaumont" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Countess of Monte Cristo", + "year": 1948, + "cast": [ + "Sonja Henie", + "Olga San Juan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Courtin' Trouble", + "year": 1948, + "cast": [ + "Jimmy Wakely", + "Dub Taylor", + "Virginia Belmont" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Cowboy Cavalier", + "year": 1948, + "cast": [ + "Jimmy Wakely", + "Dub Taylor" + ], + "genres": [ + "Western", + "Musical" + ] + }, + { + "title": "The Creeper", + "year": 1948, + "cast": [ + "Eduardo Ciannelli", + "Onslow Stevens", + "June Vincent" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Crossed Trails", + "year": 1948, + "cast": [ + "Johnny Mack Brown", + "Raymond Hatton", + "Lynne Carver" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Cry of the City", + "year": 1948, + "cast": [ + "Victor Mature", + "Richard Conte" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Dangers of the Canadian Mounted", + "year": 1948, + "cast": [ + "Jim Bannon" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Daredevils of the Clouds", + "year": 1948, + "cast": [ + "Robert Livingston", + "Mae Clarke" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Dark Past", + "year": 1948, + "cast": [ + "William Holden", + "Nina Foch", + "Lee J. Cobb" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "A Date with Judy", + "year": 1948, + "cast": [ + "Wallace Beery", + "Jane Powell", + "Elizabeth Taylor" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Dead Don't Dream", + "year": 1948, + "cast": [ + "William Boyd", + "Andy Clyde" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Dead Man's Gold", + "year": 1948, + "cast": [ + "Lash La Rue", + "Al St. John", + "Peggy Stewart" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Deadline", + "year": 1948, + "cast": [ + "Sunset Carson", + "Lee Roberts" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Decision of Christopher Blake", + "year": 1948, + "cast": [ + "Alexis Smith", + "Cecil Kellaway", + "John Hoyt", + "Robert Douglas" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Deep Waters", + "year": 1948, + "cast": [ + "Jean Peters", + "Dana Andrews" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Denver Kid", + "year": 1948, + "cast": [ + "Allan Lane", + "Eddy Waller" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Desperadoes of Dodge City", + "year": 1948, + "cast": [ + "Allan Lane", + "Mildred Coles" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Devil's Cargo", + "year": 1948, + "cast": [ + "John Calvert", + "Rochelle Hudson" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Disaster", + "year": 1948, + "cast": [ + "Richard Denning", + "Trudy Marshall" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Docks of New Orleans", + "year": 1948, + "cast": [ + "Roland Winters", + "Virginia Dale" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Dream Girl", + "year": 1948, + "cast": [ + "Betty Hutton", + "Patric Knowles", + "Virginia Field" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Dude Goes West", + "year": 1948, + "cast": [ + "Eddie Albert", + "Gale Storm" + ], + "genres": [ + "Western", + "Comedy" + ] + }, + { + "title": "Easter Parade", + "year": 1948, + "cast": [ + "Fred Astaire", + "Judy Garland", + "Ann Miller", + "Peter Lawford" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "El Dorado Pass", + "year": 1948, + "cast": [ + "Charles Starrett", + "Elena Verdugo" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Embraceable You", + "year": 1948, + "cast": [ + "Dane Clark", + "Geraldine Brooks" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Emperor Waltz", + "year": 1948, + "cast": [ + "Bing Crosby", + "Joan Fontaine" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "The Enchanted Valley", + "year": 1948, + "cast": [ + "Alan Curtis", + "Anne Gwynne" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Enchantment", + "year": 1948, + "cast": [ + "David Niven", + "Teresa Wright" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Escape", + "year": 1948, + "cast": [ + "Rex Harrison", + "Peggy Cummins" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Every Girl Should Be Married", + "year": 1948, + "cast": [ + "Cary Grant", + "Betsy Drake" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Eyes of Texas", + "year": 1948, + "cast": [ + "Roy Rogers", + "Lynne Roberts" + ], + "genres": [ + "Western" + ] + }, + { + "title": "False Paradise", + "year": 1948, + "cast": [ + "William Boyd", + "Elaine Riley" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Far Frontier", + "year": 1948, + "cast": [ + "Roy Rogers", + "Clayton Moore", + "Gail Davis" + ], + "genres": [ + "Western" + ] + }, + { + "title": "A Feather in His Hare", + "year": 1948, + "cast": [], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "The Feathered Serpent", + "year": 1948, + "cast": [ + "Roland Winters", + "Keye Luke" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Feudin', Fussin' and A-Fightin'", + "year": 1948, + "cast": [ + "Donald O'Connor", + "Penny Edwards" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Fiddlers Three", + "year": 1948, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Comedy", + "Short" + ] + }, + { + "title": "Fighter Squadron", + "year": 1948, + "cast": [ + "Edmond O'Brien", + "Robert Stack" + ], + "genres": [ + "War" + ] + }, + { + "title": "Fighting Back", + "year": 1948, + "cast": [ + "Jean Rogers", + "Paul Langton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Fighting Father Dunne", + "year": 1948, + "cast": [ + "Pat O'Brien", + "Una O'Connor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Fighting Mustang", + "year": 1948, + "cast": [ + "Sunset Carson", + "Lee Roberts" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Fighting Ranger", + "year": 1948, + "cast": [ + "Johnny Mack Brown", + "Raymond Hatton" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Force of Evil", + "year": 1948, + "cast": [ + "John Garfield", + "Beatrice Pearson" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "A Foreign Affair", + "year": 1948, + "cast": [ + "Jean Arthur", + "Marlene Dietrich" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "For the Love of Mary", + "year": 1948, + "cast": [ + "Deanna Durbin", + "Edmond O'Brien" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Fort Apache", + "year": 1948, + "cast": [ + "John Wayne", + "Henry Fonda" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Four Faces West", + "year": 1948, + "cast": [ + "Joel McCrea", + "Frances Dee", + "Charles Bickford" + ], + "genres": [ + "Western" + ] + }, + { + "title": "French Leave", + "year": 1948, + "cast": [ + "Jackie Cooper", + "Renee Godfrey" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Frontier Agent", + "year": 1948, + "cast": [ + "Johnny Mack Brown", + "Raymond Hatton", + "Reno Browne" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Frontier Revenge", + "year": 1948, + "cast": [ + "Lash La Rue", + "Peggy Stewart" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Fuller Brush Man", + "year": 1948, + "cast": [ + "Red Skelton", + "Janet Blair", + "Hillary Brooke", + "Adele Jergens" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Fury at Furnace Creek", + "year": 1948, + "cast": [ + "Victor Mature", + "Coleen Gray" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Gallant Blade", + "year": 1948, + "cast": [ + "Larry Parks", + "Marguerite Chapman" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Gallant Legion", + "year": 1948, + "cast": [ + "Wild Bill Elliott", + "Lorna Gray" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Gay Intruders", + "year": 1948, + "cast": [ + "John Emery", + "Tamara Geva" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Gay Ranchero", + "year": 1948, + "cast": [ + "Roy Rogers", + "Jane Frazee" + ], + "genres": [ + "Western" + ] + }, + { + "title": "G-Men Never Forget", + "year": 1948, + "cast": [ + "Clayton Moore" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Gentleman from Nowhere", + "year": 1948, + "cast": [ + "Warner Baxter", + "Fay Baker" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Girl from Manhattan", + "year": 1948, + "cast": [ + "Dorothy Lamour", + "George Montgomery", + "Charles Laughton" + ], + "genres": [] + }, + { + "title": "Give My Regards to Broadway", + "year": 1948, + "cast": [ + "Dan Dailey", + "Fay Bainter" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Glamour Girl", + "year": 1948, + "cast": [ + "Gene Krupa", + "Virginia Grey" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Golden Eye", + "year": 1948, + "cast": [ + "Roland Winters", + "Wanda McKay" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Good Sam", + "year": 1948, + "cast": [ + "Gary Cooper", + "Ann Sheridan", + "Edmund Lowe" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Gorilla My Dreams", + "year": 1948, + "cast": [ + "Looney Tunes" + ], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "Grand Canyon Trail", + "year": 1948, + "cast": [ + "Roy Rogers", + "Jane Frazee" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Green Grass of Wyoming", + "year": 1948, + "cast": [ + "Peggy Cummins", + "Charles Coburn" + ], + "genres": [ + "Family" + ] + }, + { + "title": "The Green Promise", + "year": 1948, + "cast": [ + "Marguerite Chapman", + "Walter Brennan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Gunning for Justice", + "year": 1948, + "cast": [ + "Johnny Mack Brown", + "Raymond Hatton" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Guns of Hate", + "year": 1948, + "cast": [ + "Tim Holt", + "Nan Leslie" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Gun Smugglers", + "year": 1948, + "cast": [ + "Tim Holt", + "Martha Hyer" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Half Past Midnight", + "year": 1948, + "cast": [ + "Peggy Knudsen", + "Kent Taylor" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Haredevil Hare", + "year": 1948, + "cast": [], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "Harpoon", + "year": 1948, + "cast": [ + "John Bromfield", + "James Cardwell" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Hatch Up Your Troubles", + "year": 1948, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "The Hawk of Powder River", + "year": 1948, + "cast": [ + "Eddie Dean", + "Jennifer Holt" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Hazard", + "year": 1948, + "cast": [ + "Paulette Goddard" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Heart of Virginia", + "year": 1948, + "cast": [ + "Janet Martin", + "Robert Lowery" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Here Comes Trouble", + "year": 1948, + "cast": [ + "Joe Sawyer", + "William Tracy", + "Joan Woodbury" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "He Walked by Night", + "year": 1948, + "cast": [ + "Richard Basehart", + "Jack Webb" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Hidden Danger", + "year": 1948, + "cast": [ + "Johnny Mack Brown", + "Raymond Hatton" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Highway 13", + "year": 1948, + "cast": [ + "Robert Lowery", + "Pamela Blake" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hills of Home", + "year": 1948, + "cast": [ + "Edmund Gwenn", + "Janet Leigh" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Hollow Triumph", + "year": 1948, + "cast": [ + "Paul Henreid", + "Joan Bennett" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Homecoming", + "year": 1948, + "cast": [ + "Clark Gable", + "Lana Turner", + "Anne Baxter" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Homicide for Three", + "year": 1948, + "cast": [ + "Audrey Long", + "Grant Withers" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Hop, Look and Listen", + "year": 1948, + "cast": [ + "Looney Tunes" + ], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "Hot Cross Bunny", + "year": 1948, + "cast": [ + "Bugs Bunny" + ], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "The Hunted", + "year": 1948, + "cast": [ + "Preston Foster", + "Belita" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "I, Jane Doe", + "year": 1948, + "cast": [ + "Vera Ralston", + "Ruth Hussey" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "I Love Trouble", + "year": 1948, + "cast": [ + "Franchot Tone", + "Janet Blair", + "Janis Carter", + "Adele Jergens", + "Glenda Farrell" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "I Remember Mama", + "year": 1948, + "cast": [ + "Irene Dunne", + "Barbara Bel Geddes" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "I Surrender Dear", + "year": 1948, + "cast": [ + "Gloria Jean", + "David Street" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "I Taw a Putty Tat", + "year": 1948, + "cast": [], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "I Walk Alone", + "year": 1948, + "cast": [ + "Burt Lancaster", + "Lizabeth Scott", + "Kirk Douglas" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "I Wouldn't Be in Your Shoes", + "year": 1948, + "cast": [ + "Don Castle", + "Elyse Knox" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "If You Knew Susie", + "year": 1948, + "cast": [ + "Eddie Cantor", + "Joan Davis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "In This Corner", + "year": 1948, + "cast": [ + "Scott Brady", + "Anabel Shaw" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Indian Agent", + "year": 1948, + "cast": [ + "Tim Holt", + "Richard Martin", + "Nan Leslie" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Inner Sanctum", + "year": 1948, + "cast": [ + "Charles Russell", + "Mary Beth Hughes" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "An Innocent Affair", + "year": 1948, + "cast": [ + "Fred MacMurray", + "Madeleine Carroll" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Inside Story", + "year": 1948, + "cast": [ + "Marsha Hunt", + "William Lundigan", + "Charles Winninger" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Iron Curtain", + "year": 1948, + "cast": [ + "Dana Andrews", + "Gene Tierney", + "June Havoc" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Isn't It Romantic?", + "year": 1948, + "cast": [ + "Veronica Lake", + "Billy De Wolfe", + "Pearl Bailey" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Jiggs and Maggie in Court", + "year": 1948, + "cast": [ + "Joe Yule", + "Renie Riano" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Jinx Money", + "year": 1948, + "cast": [ + "Leo Gorcey", + "Huntz Hall" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Joan of Arc", + "year": 1948, + "cast": [ + "Ingrid Bergman", + "José Ferrer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Joe Palooka in Fighting Mad", + "year": 1948, + "cast": [ + "Joe Kirkwood Jr.", + "Leon Errol", + "Elyse Knox" + ], + "genres": [ + "Sports" + ] + }, + { + "title": "Joe Palooka in Winner Take All", + "year": 1948, + "cast": [ + "Joe Kirkwood Jr.", + "Elyse Knox" + ], + "genres": [ + "Sports" + ] + }, + { + "title": "Johnny Appleseed", + "year": 1948, + "cast": [], + "genres": [ + "Biography" + ] + }, + { + "title": "Johnny Belinda", + "year": 1948, + "cast": [ + "Jane Wyman", + "Lew Ayres", + "Agnes Moorehead" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Julia Misbehaves", + "year": 1948, + "cast": [ + "Greer Garson", + "Walter Pidgeon", + "Peter Lawford", + "Elizabeth Taylor" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "June Bride", + "year": 1948, + "cast": [ + "Bette Davis", + "Robert Montgomery" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Jungle Goddess", + "year": 1948, + "cast": [ + "George Reeves", + "Wanda McKay" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Jungle Jim", + "year": 1948, + "cast": [ + "Johnny Weissmuller", + "Virginia Grey" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Jungle Patrol", + "year": 1948, + "cast": [ + "Kristine Miller", + "Arthur Franz" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Key Largo", + "year": 1948, + "cast": [ + "Humphrey Bogart", + "Lauren Bacall", + "Edward G. Robinson", + "Lionel Barrymore", + "Claire Trevor" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Kidnapped", + "year": 1948, + "cast": [ + "Roddy McDowall", + "Sue England" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "King of the Gamblers", + "year": 1948, + "cast": [ + "Janet Martin", + "Stephanie Bachelor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Kiss the Blood Off My Hands", + "year": 1948, + "cast": [ + "Joan Fontaine", + "Burt Lancaster" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Kissing Bandit", + "year": 1948, + "cast": [ + "Frank Sinatra", + "Kathryn Grayson" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Kitty Foiled", + "year": 1948, + "cast": [], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "Ladies of the Chorus", + "year": 1948, + "cast": [ + "Marilyn Monroe", + "Adele Jergens" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Lady at Midnight", + "year": 1948, + "cast": [ + "Richard Denning", + "Frances Rafferty" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Larceny", + "year": 1948, + "cast": [ + "John Payne", + "Joan Caulfield", + "Dan Duryea", + "Shelley Winters" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Last of the Wild Horses", + "year": 1948, + "cast": [ + "James Ellison", + "Mary Beth Hughes" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Leather Gloves", + "year": 1948, + "cast": [ + "Cameron Mitchell", + "Virginia Grey", + "Jane Nigh" + ], + "genres": [ + "Sports", + "Drama" + ] + }, + { + "title": "Let's Live Again", + "year": 1948, + "cast": [ + "Hillary Brooke", + "Diana Douglas" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Let's Live a Little", + "year": 1948, + "cast": [ + "Hedy Lamarr", + "Robert Cummings" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Letter from an Unknown Woman", + "year": 1948, + "cast": [ + "Joan Fontaine", + "Louis Jourdan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Lightnin' in the Forest", + "year": 1948, + "cast": [ + "Lynne Roberts", + "Warren Douglas", + "Lorna Gray" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Little Orphan", + "year": 1948, + "cast": [], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "Loaded Pistols", + "year": 1948, + "cast": [ + "Gene Autry", + "Barbara Britton" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Louisiana Story", + "year": 1948, + "cast": [], + "genres": [ + "Documentary", + "Drama" + ] + }, + { + "title": "The Loves of Carmen", + "year": 1948, + "cast": [ + "Rita Hayworth", + "Glenn Ford" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Luck of the Irish", + "year": 1948, + "cast": [ + "Tyrone Power", + "Anne Baxter", + "Lee J. Cobb" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Lulu Belle", + "year": 1948, + "cast": [ + "Dorothy Lamour", + "George Montgomery" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Luxury Liner", + "year": 1948, + "cast": [ + "Jane Powell", + "George Brent" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Macbeth", + "year": 1948, + "cast": [ + "Orson Welles", + "Jeanette Nolan", + "Dan O'Herlihy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Madonna of the Desert", + "year": 1948, + "cast": [ + "Lynne Roberts", + "Don Castle" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Main Street Kid", + "year": 1948, + "cast": [ + "Al Pearce", + "Alan Mowbray", + "Adele Mara" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Man from Colorado", + "year": 1948, + "cast": [ + "William Holden", + "Glenn Ford" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Man from Texas", + "year": 1948, + "cast": [ + "James Craig", + "Lynn Bari" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Man-Eater of Kumaon", + "year": 1948, + "cast": [ + "Wendell Corey", + "Sabu", + "Joy Page" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Mark of the Lash", + "year": 1948, + "cast": [ + "Lash La Rue", + "Al St. John" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Marshal of Amarillo", + "year": 1948, + "cast": [ + "Allan Lane", + "Mildred Coles" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Mary Lou", + "year": 1948, + "cast": [ + "Robert Lowery", + "Glenda Farrell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Mating of Millie", + "year": 1948, + "cast": [ + "Evelyn Keyes", + "Glenn Ford" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Melody Time", + "year": 1948, + "cast": [], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "Mexican Hayride", + "year": 1948, + "cast": [ + "Abbott and Costello" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Michael O'Halloran", + "year": 1948, + "cast": [ + "Allene Roberts", + "Scotty Beckett" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Mickey", + "year": 1948, + "cast": [ + "Irene Hervey", + "Hattie McDaniel" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Million Dollar Weekend", + "year": 1948, + "cast": [ + "Osa Massen", + "Gene Raymond" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Miracle in Harlem", + "year": 1948, + "cast": [ + "Sheila Guyse" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Miracle of the Bells", + "year": 1948, + "cast": [ + "Alida Valli", + "Fred MacMurray", + "Frank Sinatra" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Miraculous Journey", + "year": 1948, + "cast": [ + "Rory Calhoun", + "Virginia Grey" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Miss Tatlock's Millions", + "year": 1948, + "cast": [ + "John Lund", + "Wanda Hendrix", + "Barry Fitzgerald" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Money Madness", + "year": 1948, + "cast": [ + "Hugh Beaumont", + "Frances Rafferty" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Moonrise", + "year": 1948, + "cast": [ + "Gail Russell", + "Dane Clark" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Mouse Cleaning", + "year": 1948, + "cast": [], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "Music Man", + "year": 1948, + "cast": [ + "Freddie Stewart", + "June Preisser", + "Noel Neill" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mr. Blandings Builds His Dream House", + "year": 1948, + "cast": [ + "Cary Grant", + "Myrna Loy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mr. Peabody and the Mermaid", + "year": 1948, + "cast": [ + "William Powell", + "Ann Blyth", + "Andrea King" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mr. Reckless", + "year": 1948, + "cast": [ + "William Eythe", + "Barbara Britton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "My Bunny Lies Over The Sea", + "year": 1948, + "cast": [], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "My Dear Secretary", + "year": 1948, + "cast": [ + "Laraine Day", + "Kirk Douglas" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "My Dog Rusty", + "year": 1948, + "cast": [ + "John Litel", + "Ann Doran" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "My Girl Tisa", + "year": 1948, + "cast": [ + "Lilli Palmer", + "Sam Wanamaker" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Mystery in Mexico", + "year": 1948, + "cast": [ + "William Lundigan", + "Jacqueline White", + "Ricardo Cortez" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Naked City", + "year": 1948, + "cast": [ + "Barry Fitzgerald", + "Howard Duff" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Night Has a Thousand Eyes", + "year": 1948, + "cast": [ + "Edward G. Robinson", + "Gail Russell" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Night Song", + "year": 1948, + "cast": [ + "Dana Andrews", + "Merle Oberon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Night Time in Nevada", + "year": 1948, + "cast": [ + "Roy Rogers", + "Adele Mara" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Night Wind", + "year": 1948, + "cast": [ + "Charles Russell", + "Virginia Christine" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "No Minor Vices", + "year": 1948, + "cast": [ + "Dana Andrews", + "Lilli Palmer", + "Louis Jourdan" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Noose Hangs High", + "year": 1948, + "cast": [ + "Abbott and Costello" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Northwest Stampede", + "year": 1948, + "cast": [ + "Joan Leslie", + "James Craig", + "Jack Oakie" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Oklahoma Badlands", + "year": 1948, + "cast": [ + "Allan Lane", + "Eddy Waller" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Oklahoma Blues", + "year": 1948, + "cast": [ + "Jimmy Wakely", + "Dub Taylor", + "Virginia Belmont" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Old Los Angeles", + "year": 1948, + "cast": [ + "Wild Bill Elliott", + "Catherine McLeod" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Old Rockin' Chair Tom", + "year": 1948, + "cast": [], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "On an Island with You", + "year": 1948, + "cast": [ + "Esther Williams", + "Peter Lawford", + "Ricardo Montalbán" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "One Sunday Afternoon", + "year": 1948, + "cast": [ + "Dennis Morgan", + "Janis Paige" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "One Touch of Venus", + "year": 1948, + "cast": [ + "Robert Walker", + "Ava Gardner" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "On Our Merry Way", + "year": 1948, + "cast": [ + "Paulette Goddard", + "Burgess Meredith" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Open Secret", + "year": 1948, + "cast": [ + "John Ireland", + "Jane Randolph" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Out of the Storm", + "year": 1948, + "cast": [ + "Jimmy Lydon", + "Lois Collier" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Outlaw Brand", + "year": 1948, + "cast": [ + "Jimmy Wakely", + "Dub Taylor", + "Kay Morley" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Overland Trails", + "year": 1948, + "cast": [ + "Johnny Mack Brown", + "Raymond Hatton", + "Virginia Belmont" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Paleface", + "year": 1948, + "cast": [ + "Bob Hope", + "Jane Russell" + ], + "genres": [ + "Comedy", + "Western" + ] + }, + { + "title": "Panhandle", + "year": 1948, + "cast": [ + "Rod Cameron", + "Cathy Downs" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Parole, Inc.", + "year": 1948, + "cast": [ + "Michael O'Shea", + "Turhan Bey", + "Evelyn Ankers" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Partners of the Sunset", + "year": 1948, + "cast": [ + "Jimmy Wakely", + "Dub Taylor" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Perilous Waters", + "year": 1948, + "cast": [ + "Don Castle", + "Audrey Long", + "Peggy Knudsen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Phantom Valley", + "year": 1948, + "cast": [ + "Charles Starrett", + "Smiley Burnette" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Pirate", + "year": 1948, + "cast": [ + "Gene Kelly", + "Judy Garland" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Pitfall", + "year": 1948, + "cast": [ + "Dick Powell", + "Lizabeth Scott" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Plunderers", + "year": 1948, + "cast": [ + "Rod Cameron", + "Ilona Massey" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Polka-Dot Puss", + "year": 1948, + "cast": [], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "Port Said", + "year": 1948, + "cast": [ + "Gloria Henry", + "Steven Geray" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Portrait of Jennie", + "year": 1948, + "cast": [ + "Jennifer Jones", + "Joseph Cotten" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Prince of Thieves", + "year": 1948, + "cast": [ + "Patricia Morison", + "Jon Hall" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Professor Tom", + "year": 1948, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "Quick on the Trigger", + "year": 1948, + "cast": [ + "Charles Starrett", + "Smiley Burnette", + "Lyle Talbot" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Race Street", + "year": 1948, + "cast": [ + "George Raft", + "Marilyn Maxwell", + "William Bendix" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Rachel and the Stranger", + "year": 1948, + "cast": [ + "William Holden", + "Loretta Young" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Racing Luck", + "year": 1948, + "cast": [ + "Gloria Henry", + "]]Stanley Clements]]", + "Paula Raymond" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Range Renegades", + "year": 1948, + "cast": [ + "Jimmy Wakely", + "Dub Taylor", + "Jennifer Holt" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Rangers Ride", + "year": 1948, + "cast": [ + "Jimmy Wakely", + "Dub Taylor", + "Virginia Belmont" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Raw Deal", + "year": 1948, + "cast": [ + "Dennis O'Keefe", + "Claire Trevor" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Red River", + "year": 1948, + "cast": [ + "John Wayne", + "Montgomery Clift", + "Walter Brennan", + "Joanne Dru", + "John Ireland" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Relentless", + "year": 1948, + "cast": [ + "Robert Young", + "Marguerite Chapman" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Renegades of Sonora", + "year": 1948, + "cast": [ + "Allan Lane", + "Eddy Waller" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Return of the Bad Men", + "year": 1948, + "cast": [ + "Randolph Scott", + "Robert Ryan" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Return of October", + "year": 1948, + "cast": [ + "Glenn Ford", + "Terry Moore" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Return of the Whistler", + "year": 1948, + "cast": [ + "Lenore Aubert", + "Dick Lane" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Return of Wildfire", + "year": 1948, + "cast": [ + "Richard Arlen", + "Patricia Morison", + "Mary Beth Hughes" + ], + "genres": [ + "Western" + ] + }, + { + "title": "River Lady", + "year": 1948, + "cast": [ + "Yvonne De Carlo", + "Dan Duryea" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Road House", + "year": 1948, + "cast": [ + "Ida Lupino", + "Cornel Wilde" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Rocky", + "year": 1948, + "cast": [ + "Roddy McDowall", + "Gale Sherwood" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Rogues' Regiment", + "year": 1948, + "cast": [ + "Dick Powell", + "Märta Torén", + "Vincent Price" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Romance on the High Seas", + "year": 1948, + "cast": [ + "Jack Carson", + "Janis Paige", + "Doris Day" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Rope", + "year": 1948, + "cast": [ + "James Stewart", + "Farley Granger", + "John Dall" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Rusty Leads the Way", + "year": 1948, + "cast": [ + "John Litel", + "Ann Doran" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Ruthless", + "year": 1948, + "cast": [ + "Zachary Scott", + "Martha Vickers" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Saigon", + "year": 1948, + "cast": [ + "Alan Ladd", + "Veronica Lake" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Sainted Sisters", + "year": 1948, + "cast": [ + "Veronica Lake", + "Joan Caulfield", + "George Reeves" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Saxon Charm", + "year": 1948, + "cast": [ + "Robert Montgomery", + "Susan Hayward" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Scaredy Cat", + "year": 1948, + "cast": [], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "Scudda Hoo! Scudda Hay!", + "year": 1948, + "cast": [ + "June Haver", + "Lon McCallister" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Sealed Verdict", + "year": 1948, + "cast": [ + "Ray Milland", + "Florence Marly", + "Broderick Crawford" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Search", + "year": 1948, + "cast": [ + "Montgomery Clift", + "Aline MacMahon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Secret Beyond the Door...", + "year": 1948, + "cast": [ + "Joan Bennett", + "Michael Redgrave" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Secret Service Investigator", + "year": 1948, + "cast": [ + "Lloyd Bridges", + "Lynne Roberts" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Shaggy", + "year": 1948, + "cast": [ + "Brenda Joyce", + "Robert Shayne" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Shanghai Chest", + "year": 1948, + "cast": [ + "Roland Winters", + "Mantan Moreland" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Shed No Tears", + "year": 1948, + "cast": [ + "June Vincent", + "Wallace Ford" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Shep Comes Home", + "year": 1948, + "cast": [ + "Robert Lowery", + "Margia Dean" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Sheriff of Medicine Bow", + "year": 1948, + "cast": [ + "Johnny Mack Brown", + "Raymond Hatton" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Sign of the Ram", + "year": 1948, + "cast": [ + "Susan Peters", + "Alexander Knox" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Silent Conflict", + "year": 1948, + "cast": [ + "William Boyd", + "Virginia Belmont" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Silver River", + "year": 1948, + "cast": [ + "Errol Flynn", + "Ann Sheridan", + "Thomas Mitchell" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Silver Trails", + "year": 1948, + "cast": [ + "Jimmy Wakely", + "Dub Taylor" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Singin' Spurs", + "year": 1948, + "cast": [ + "Kirby Grant", + "Patricia Barry", + "Lee Patrick" + ], + "genres": [ + "Musical", + "Western" + ] + }, + { + "title": "Sinister Journey", + "year": 1948, + "cast": [ + "William Boyd", + "Elaine Riley" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Sitting Pretty", + "year": 1948, + "cast": [ + "Robert Young", + "Maureen O'Hara" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Six-Gun Law", + "year": 1948, + "cast": [ + "Charles Starrett", + "Nancy Saunders" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Sixteen Fathoms Deep", + "year": 1948, + "cast": [ + "Lloyd Bridges", + "Lon Chaney Jr." + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Sleep, My Love", + "year": 1948, + "cast": [ + "Claudette Colbert", + "Don Ameche", + "Robert Cummings" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Slippy McGee", + "year": 1948, + "cast": [ + "Don \"Red\" Barry", + "Dale Evans" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Smart Girls Don't Talk", + "year": 1948, + "cast": [ + "Virginia Mayo", + "Bruce Bennett" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Smart Politics", + "year": 1948, + "cast": [ + "June Preisser", + "Frankie Darro", + "Noel Neill" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Smart Woman", + "year": 1948, + "cast": [ + "Constance Bennett", + "Brian Aherne" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Smoky Mountain Melody", + "year": 1948, + "cast": [ + "Roy Acuff", + "Russell Arms" + ], + "genres": [ + "Musical", + "Western" + ] + }, + { + "title": "Smugglers' Cove", + "year": 1948, + "cast": [ + "Leo Gorcey", + "Huntz Hall", + "Amelita Ward" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Snake Pit", + "year": 1948, + "cast": [ + "Olivia de Havilland", + "Leo Genn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "So Evil My Love", + "year": 1948, + "cast": [ + "Ray Milland", + "Geraldine Fitzgerald" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "So This Is New York", + "year": 1948, + "cast": [ + "Henry Morgan", + "Rudy Vallee", + "Virginia Grey" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Sofia", + "year": 1948, + "cast": [ + "Patricia Morison", + "Sigrid Gurie" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Son of God's Country", + "year": 1948, + "cast": [ + "Monte Hale", + "Pamela Blake" + ], + "genres": [ + "Western" + ] + }, + { + "title": "A Song Is Born", + "year": 1948, + "cast": [ + "Danny Kaye", + "Virginia Mayo", + "Tommy Dorsey", + "Benny Goodman" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Song of the Drifter", + "year": 1948, + "cast": [ + "Jimmy Wakely", + "Dub Taylor", + "Mildred Coles" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Song of Idaho", + "year": 1948, + "cast": [ + "Kirby Grant", + "June Vincent" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Song of My Heart", + "year": 1948, + "cast": [ + "Audrey Long", + "Cedric Hardwicke" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Sons of Adventure", + "year": 1948, + "cast": [ + "Lynne Roberts", + "Russell Hayden" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Sorry, Wrong Number", + "year": 1948, + "cast": [ + "Barbara Stanwyck", + "Burt Lancaster" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "A Southern Yankee", + "year": 1948, + "cast": [ + "Red Skelton", + "Arlene Dahl" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Speed to Spare", + "year": 1948, + "cast": [ + "Richard Arlen", + "Jean Rogers" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Stage Struck", + "year": 1948, + "cast": [ + "Conrad Nagel", + "Kane Richmond" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "State of the Union", + "year": 1948, + "cast": [ + "Spencer Tracy", + "Katharine Hepburn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Station West", + "year": 1948, + "cast": [ + "Dick Powell", + "Jane Greer" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Strange Gamble", + "year": 1948, + "cast": [ + "William Boyd", + "Elaine Riley" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Strange Mrs. Crane", + "year": 1948, + "cast": [ + "Marjorie Lord", + "Robert Shayne" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Strawberry Roan", + "year": 1948, + "cast": [ + "Gene Autry", + "Gloria Henry" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Street Corner", + "year": 1948, + "cast": [ + "Johnny Duncan", + "Eddie Gribbon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Street with No Name", + "year": 1948, + "cast": [ + "Mark Stevens", + "Richard Widmark", + "Lloyd Nolan" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Strike It Rich", + "year": 1948, + "cast": [ + "Rod Cameron", + "Bonita Granville" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Summer Holiday", + "year": 1948, + "cast": [ + "Mickey Rooney", + "Gloria DeHaven" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Sundown in Santa Fe", + "year": 1948, + "cast": [ + "Allan Lane", + "Eddy Waller" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Sunset Carson Rides Again", + "year": 1948, + "cast": [ + "Sunset Carson", + "Dan White" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Superman", + "year": 1948, + "cast": [ + "Kirk Alyn", + "Noel Neill" + ], + "genres": [] + }, + { + "title": "Sword of the Avenger", + "year": 1948, + "cast": [ + "Sigrid Gurie" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Swordsman", + "year": 1948, + "cast": [ + "Larry Parks", + "Ellen Drew" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Tap Roots", + "year": 1948, + "cast": [ + "Van Heflin", + "Susan Hayward" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Tarzan and the Mermaids", + "year": 1948, + "cast": [ + "Johnny Weissmuller", + "Brenda Joyce", + "Linda Christian", + "Andrea Palma" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Tender Years", + "year": 1948, + "cast": [ + "Joe E. Brown", + "Noreen Nash" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Tenth Avenue Angel", + "year": 1948, + "cast": [ + "Margaret O'Brien", + "Angela Lansbury" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Test Tube Babies", + "year": 1948, + "cast": [], + "genres": [] + }, + { + "title": "Texas, Brooklyn and Heaven", + "year": 1948, + "cast": [ + "Diana Lynn", + "Guy Madison" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Tex Granger", + "year": 1948, + "cast": [ + "Robert Kellard" + ], + "genres": [ + "Western" + ] + }, + { + "title": "That Lady in Ermine", + "year": 1948, + "cast": [ + "Betty Grable", + "Douglas Fairbanks Jr." + ], + "genres": [ + "Musical" + ] + }, + { + "title": "That Wonderful Urge", + "year": 1948, + "cast": [ + "Tyrone Power", + "Gene Tierney" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "They Live by Night", + "year": 1948, + "cast": [ + "Cathy O'Donnell", + "Farley Granger" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Three Daring Daughters", + "year": 1948, + "cast": [ + "Jeanette MacDonald", + "Jane Powell" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Three Musketeers", + "year": 1948, + "cast": [ + "Gene Kelly", + "Van Heflin", + "Lana Turner", + "June Allyson", + "Angela Lansbury" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Thunder in the Pines", + "year": 1948, + "cast": [ + "George Reeves", + "Ralph Byrd" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Thunderhoof", + "year": 1948, + "cast": [ + "Preston Foster", + "Mary Stuart" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Tioga Kid", + "year": 1948, + "cast": [ + "Eddie Dean", + "Roscoe Ates", + "Jennifer Holt" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Timber Trail", + "year": 1948, + "cast": [ + "Monte Hale", + "Lynne Roberts" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Time of Your Life", + "year": 1948, + "cast": [ + "James Cagney", + "William Bendix", + "Wayne Morris", + "Jeanne Cagney" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "To the Ends of the Earth", + "year": 1948, + "cast": [ + "Dick Powell", + "Signe Hasso" + ], + "genres": [ + "Crime", + "Thriller" + ] + }, + { + "title": "To the Victor", + "year": 1948, + "cast": [ + "Dennis Morgan", + "Viveca Lindfors" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Tornado Range", + "year": 1948, + "cast": [ + "Eddie Dean", + "Roscoe Ates", + "Jennifer Holt" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Trail to Laredo", + "year": 1948, + "cast": [ + "Charles Starrett", + "Smiley Burnette" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Train to Alcatraz", + "year": 1948, + "cast": [ + "Don \"Red\" Barry", + "Janet Martin" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Trapped by Boston Blackie", + "year": 1948, + "cast": [ + "Charles Marion", + "June Vincent" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Treasure of the Sierra Madre", + "year": 1948, + "cast": [ + "Humphrey Bogart", + "Walter Huston", + "Tim Holt", + "Bruce Bennett" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Triggerman", + "year": 1948, + "cast": [ + "Johnny Mack Brown", + "Raymond Hatton", + "Virginia Carroll" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Triple Threat", + "year": 1948, + "cast": [ + "Gloria Henry", + "Mary Stuart" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Trouble Makers", + "year": 1948, + "cast": [ + "Leo Gorcey", + "Huntz Hall", + "Helen Parrish" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Truce Hurts", + "year": 1948, + "cast": [], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "Trouble Preferred", + "year": 1948, + "cast": [ + "Peggy Knudsen", + "Lynne Roberts" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Two Guys from Texas", + "year": 1948, + "cast": [ + "Dennis Morgan", + "Jack Carson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Under California Stars", + "year": 1948, + "cast": [ + "Roy Rogers", + "Jane Frazee" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Unfaithfully Yours", + "year": 1948, + "cast": [ + "Rex Harrison", + "Linda Darnell", + "Rudy Vallée", + "Barbara Lawrence" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Unknown Island", + "year": 1948, + "cast": [ + "Virginia Grey", + "Richard Denning" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Untamed Breed", + "year": 1948, + "cast": [ + "Sonny Tufts", + "Barbara Britton" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Up in Central Park", + "year": 1948, + "cast": [ + "Deanna Durbin", + "Dick Haymes", + "Vincent Price" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Valiant Hombre", + "year": 1948, + "cast": [ + "Duncan Renaldo", + "Leo Carrillo" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Velvet Touch", + "year": 1948, + "cast": [ + "Rosalind Russell", + "Leo Genn", + "Claire Trevor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Vicious Circle", + "year": 1948, + "cast": [ + "Conrad Nagel", + "Fritz Kortner" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Wake of the Red Witch", + "year": 1948, + "cast": [ + "John Wayne", + "Gail Russell" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Walk a Crooked Mile", + "year": 1948, + "cast": [ + "Dennis O'Keefe", + "Louis Hayward" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Wallflower", + "year": 1948, + "cast": [ + "Joyce Reynolds", + "Janis Paige" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Walls of Jericho", + "year": 1948, + "cast": [ + "Cornel Wilde", + "Anne Baxter", + "Kirk Douglas" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Waterfront at Midnight", + "year": 1948, + "cast": [ + "Mary Beth Hughes", + "William Gargan" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "West of Sonora", + "year": 1948, + "cast": [ + "Charles Starrett", + "Smiley Burnette" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Western Heritage", + "year": 1948, + "cast": [ + "Tim Holt", + "Richard Martin", + "Lois Andrews" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Westward Trail", + "year": 1948, + "cast": [ + "Eddie Dean", + "Roscoe Ates" + ], + "genres": [ + "Western" + ] + }, + { + "title": "When My Baby Smiles at Me", + "year": 1948, + "cast": [ + "Betty Grable", + "Dan Dailey", + "Jack Oakie", + "June Havoc" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Whiplash", + "year": 1948, + "cast": [ + "Dane Clark", + "Zachary Scott", + "Eve Arden" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Whirlwind Raiders", + "year": 1948, + "cast": [ + "Charles Starrett", + "Nancy Saunders" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Whispering Smith", + "year": 1948, + "cast": [ + "Alan Ladd", + "Robert Preston", + "Brenda Marshall" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Who Killed Doc Robbin", + "year": 1948, + "cast": [ + "Larry Casey", + "Virginia Grey" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Winner's Circle", + "year": 1948, + "cast": [ + "Jean Willes", + "Morgan Farley" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Winter Meeting", + "year": 1948, + "cast": [ + "Bette Davis", + "Janis Paige" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Woman's Vengeance", + "year": 1948, + "cast": [ + "Charles Boyer", + "Ann Blyth", + "Jessica Tandy" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Woman from Tangier", + "year": 1948, + "cast": [ + "Adele Jergens", + "Stephen Dunne" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Woman in White", + "year": 1948, + "cast": [ + "Alexis Smith", + "Eleanor Parker" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Women in the Night", + "year": 1948, + "cast": [ + "Tala Birell", + "Bernadene Hayes" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Words and Music", + "year": 1948, + "cast": [ + "Mickey Rooney", + "Janet Leigh", + "Betty Garrett", + "June Allyson", + "Gene Kelly", + "Perry Como" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Wreck of the Hesperus", + "year": 1948, + "cast": [ + "Patricia Barry", + "Willard Parker" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Yellow Sky", + "year": 1948, + "cast": [ + "Gregory Peck", + "Richard Widmark", + "Anne Baxter" + ], + "genres": [ + "Western" + ] + }, + { + "title": "You Gotta Stay Happy", + "year": 1948, + "cast": [ + "Joan Fontaine", + "James Stewart", + "Eddie Albert" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "You Were Meant for Me", + "year": 1948, + "cast": [ + "Dan Dailey", + "Jeanne Crain" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Abandoned", + "year": 1949, + "cast": [ + "Dennis O'Keefe", + "Gale Storm", + "Jeff Chandler" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Abbott and Costello Meet the Killer, Boris Karloff", + "year": 1949, + "cast": [ + "Bud Abbott", + "Lou Costello", + "Boris Karloff" + ], + "genres": [ + "Comedy", + "Horror" + ] + }, + { + "title": "The Accused", + "year": 1949, + "cast": [ + "Loretta Young", + "Robert Cummings", + "Wendell Corey" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Across the Rio Grande", + "year": 1949, + "cast": [ + "Jimmy Wakely", + "Reno Browne" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Act of Violence", + "year": 1949, + "cast": [ + "Van Heflin", + "Robert Ryan", + "Janet Leigh", + "Mary Astor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Adam's Rib", + "year": 1949, + "cast": [ + "Spencer Tracy", + "Katharine Hepburn", + "David Wayne", + "Tom Ewell", + "Jean Hagen", + "Judy Holliday" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Adventure in Baltimore", + "year": 1949, + "cast": [ + "Shirley Temple", + "Robert Young" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Adventures of Ichabod and Mr. Toad", + "year": 1949, + "cast": [ + "Bing Crosby", + "Eric Blore", + "Basil Rathbone" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Adventures of Sir Galahad", + "year": 1949, + "cast": [ + "George Reeves", + "Lois Hall" + ], + "genres": [] + }, + { + "title": "Africa Screams", + "year": 1949, + "cast": [ + "Bud Abbott", + "Lou Costello", + "Clyde Beatty", + "Frank Buck" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Air Hostess", + "year": 1949, + "cast": [ + "Gloria Henry", + "Audrey Long" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Alias the Champ", + "year": 1949, + "cast": [ + "Audrey Long", + "Gorgeous George" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Alias Nick Beal", + "year": 1949, + "cast": [ + "Ray Milland", + "Audrey Totter", + "Thomas Mitchell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "All the King's Men", + "year": 1949, + "cast": [ + "Broderick Crawford", + "Mercedes McCambridge", + "John Ireland", + "Joanne Dru", + "John Derek" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Always Leave Them Laughing", + "year": 1949, + "cast": [ + "Milton Berle", + "Virginia Mayo", + "Bert Lahr" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "And Baby Makes Three", + "year": 1949, + "cast": [ + "Barbara Hale", + "Robert Young" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Angels in Disguise", + "year": 1949, + "cast": [ + "Leo Gorcey", + "Huntz Hall" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Anna Lucasta", + "year": 1949, + "cast": [ + "Paulette Goddard", + "Gale Page" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Any Number Can Play", + "year": 1949, + "cast": [ + "Clark Gable", + "Alexis Smith", + "Wendell Corey", + "Mary Astor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Arctic Manhunt", + "year": 1949, + "cast": [ + "Mikel Conrad", + "Carol Thurston" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Arson, Inc.", + "year": 1949, + "cast": [ + "Robert Lowery", + "Anne Gwynne" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Awful Orphan", + "year": 1949, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "Bad Boy", + "year": 1949, + "cast": [ + "Audie Murphy", + "Jane Wyatt" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Bad Men of Tombstone", + "year": 1949, + "cast": [ + "Broderick Crawford", + "Barry Sullivan" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Bagdad", + "year": 1949, + "cast": [ + "Maureen O'Hara", + "Paul Christian", + "Vincent Price" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Bandit King of Texas", + "year": 1949, + "cast": [ + "Allan Lane", + "Helene Stanley" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Bandits of El Dorado", + "year": 1949, + "cast": [ + "Charles Starrett", + "Clayton Moore" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Barbary Pirate", + "year": 1949, + "cast": [ + "Donald Woods", + "Trudy Marshall" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Barkleys of Broadway", + "year": 1949, + "cast": [ + "Fred Astaire", + "Ginger Rogers" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Batman and Robin", + "year": 1949, + "cast": [ + "Robert Lowery", + "Johnny Duncan", + "Jane Adams" + ], + "genres": [] + }, + { + "title": "Battleground", + "year": 1949, + "cast": [ + "Van Johnson", + "Ricardo Montalbán" + ], + "genres": [ + "War" + ] + }, + { + "title": "The Beautiful Blonde from Bashful Bend", + "year": 1949, + "cast": [ + "Betty Grable", + "Cesar Romero", + "Rudy Vallée" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Beyond the Forest", + "year": 1949, + "cast": [ + "Bette Davis", + "Joseph Cotten", + "Ruth Roman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Big Cat", + "year": 1949, + "cast": [ + "Lon McCallister", + "Peggy Ann Garner", + "Preston Foster" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Big Jack", + "year": 1949, + "cast": [ + "Wallace Beery", + "Richard Conte" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Big Sombrero", + "year": 1949, + "cast": [ + "Gene Autry", + "Elena Verdugo" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Big Steal", + "year": 1949, + "cast": [ + "Robert Mitchum", + "Jane Greer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Big Wheel", + "year": 1949, + "cast": [ + "Mickey Rooney", + "Thomas Mitchell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Black Magic", + "year": 1949, + "cast": [ + "Orson Welles", + "Nancy Guild" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Black Midnight", + "year": 1949, + "cast": [ + "Roddy McDowall", + "Damian O'Flynn" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Blazing Trail", + "year": 1949, + "cast": [ + "Charles Starrett", + "Marjorie Stapp" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Blondie's Big Deal", + "year": 1949, + "cast": [ + "Penny Singleton", + "Arthur Lake" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Blondie Hits the Jackpot", + "year": 1949, + "cast": [ + "Penny Singleton", + "Arthur Lake" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Bodyhold", + "year": 1949, + "cast": [ + "Willard Parker", + "Lola Albright", + "Hillary Brooke" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Bomba, the Jungle Boy", + "year": 1949, + "cast": [ + "Johnny Sheffield", + "Peggy Ann Garner" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Bomba on Panther Island", + "year": 1949, + "cast": [ + "Johnny Sheffield", + "Allene Roberts" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Border Incident", + "year": 1949, + "cast": [ + "Ricardo Montalbán", + "Howard Da Silva" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Boston Blackie's Chinese Venture", + "year": 1949, + "cast": [ + "Chester Morris", + "Maylia Fong" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Brand of Fear", + "year": 1949, + "cast": [ + "Jimmy Wakely", + "Gail Davis" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Bribe", + "year": 1949, + "cast": [ + "Robert Taylor", + "Ava Gardner", + "Charles Laughton", + "Vincent Price" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Bride for Sale", + "year": 1949, + "cast": [ + "Claudette Colbert", + "Robert Young" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Bride of Vengeance", + "year": 1949, + "cast": [ + "Paulette Goddard", + "John Lund" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Brimstone", + "year": 1949, + "cast": [ + "Rod Cameron", + "Walter Brennan", + "Lorna Gray" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Brothers in the Saddle", + "year": 1949, + "cast": [ + "Tim Holt", + "Richard Martin" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Bruce Gentry", + "year": 1949, + "cast": [ + "Tom Neal", + "Judy Clark" + ], + "genres": [] + }, + { + "title": "Calamity Jane and Sam Bass", + "year": 1949, + "cast": [ + "Yvonne De Carlo", + "Howard Duff", + "Dorothy Hart" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Canadian Pacific", + "year": 1949, + "cast": [ + "Randolph Scott", + "Jane Wyatt", + "J. Carrol Naish" + ], + "genres": [] + }, + { + "title": "The Cat and the Mermouse", + "year": 1949, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Caught", + "year": 1949, + "cast": [ + "James Mason", + "Barbara Bel Geddes" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Challenge of the Range", + "year": 1949, + "cast": [ + "Charles Starrett", + "Paula Raymond" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Challenge to Lassie", + "year": 1949, + "cast": [ + "Donald Crisp", + "Edmund Gwenn", + "Geraldine Brook", + "Reginald Owen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Champion", + "year": 1949, + "cast": [ + "Kirk Douglas", + "Arthur Kennedy", + "Marilyn Maxwell" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Chicago Deadline", + "year": 1949, + "cast": [ + "Alan Ladd", + "Donna Reed", + "June Havoc" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Chicken Every Sunday", + "year": 1949, + "cast": [ + "Dan Dailey", + "Celeste Holm", + "Colleen Townsend" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Chinatown at Midnight", + "year": 1949, + "cast": [ + "Hurd Hatfield", + "Jean Willes" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "City Across the River", + "year": 1949, + "cast": [ + "Stephen McNally", + "Thelma Ritter", + "Sue England", + "Jeff Corey", + "Barbara Whiting", + "Tony Curtis" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Clay Pigeon", + "year": 1949, + "cast": [ + "Barbara Hale", + "Bill Williams" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "C-Man", + "year": 1949, + "cast": [ + "Dean Jagger", + "John Carradine" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Colorado Territory", + "year": 1949, + "cast": [ + "Joel McCrea", + "Virginia Mayo" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Come to the Stable", + "year": 1949, + "cast": [ + "Loretta Young", + "Celeste Holm", + "Hugh Marlowe" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Connecticut Yankee in King Arthur's Court", + "year": 1949, + "cast": [ + "Bing Crosby", + "Rhonda Fleming", + "Cedric Hardwicke", + "William Bendix" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Cover Up", + "year": 1949, + "cast": [ + "William Bendix", + "Dennis O'Keefe" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Cowboy and the Indians", + "year": 1949, + "cast": [ + "Gene Autry", + "Sheila Ryan" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Crime Doctor's Diary", + "year": 1949, + "cast": [ + "Warner Baxter", + "Lois Maxwell" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Criss Cross", + "year": 1949, + "cast": [ + "Burt Lancaster", + "Yvonne DeCarlo" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Crooked Way", + "year": 1949, + "cast": [ + "John Payne", + "Ellen Drew", + "Sonny Tufts" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Dancing in the Dark", + "year": 1949, + "cast": [ + "William Powell", + "Betsy Drake" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "A Dangerous Profession", + "year": 1949, + "cast": [ + "George Raft", + "Ella Raines", + "Pat O'Brien" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Daring Caballero", + "year": 1949, + "cast": [ + "Duncan Renaldo", + "Leo Carrillo" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Dating Do's and Don'ts", + "year": 1949, + "cast": [], + "genres": [] + }, + { + "title": "Daughter of the Jungle", + "year": 1949, + "cast": [ + "Lois Hall", + "Sheldon Leonard" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Daughter of the West", + "year": 1949, + "cast": [ + "Martha Vickers", + "Phillip Reed", + "Donald Woods" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Dear Wife", + "year": 1949, + "cast": [ + "William Holden", + "Joan Caulfield" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Death Valley Gunfighter", + "year": 1949, + "cast": [ + "Allan Lane", + "Gail Davis" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Desert Vigilante", + "year": 1949, + "cast": [ + "Charles Starrett", + "Peggy Stewart" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Devil's Henchman", + "year": 1949, + "cast": [ + "Warner Baxter", + "Mary Beth Hughes" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Doctor and the Girl", + "year": 1949, + "cast": [ + "Glenn Ford", + "Gloria DeHaven" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Doolins of Oklahoma", + "year": 1949, + "cast": [ + "Randolph Scott", + "George Macready", + "Louise Allbritton" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Down Dakota Way", + "year": 1949, + "cast": [ + "Roy Rogers", + "Dale Evans" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Down to the Sea in Ships", + "year": 1949, + "cast": [ + "Richard Widmark", + "Lionel Barrymore" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Duke of Chicago", + "year": 1949, + "cast": [ + "Audrey Long", + "Grant Withers" + ], + "genres": [ + "Sports" + ] + }, + { + "title": "Dunked in the Deep", + "year": 1949, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Short" + ] + }, + { + "title": "Dynamite", + "year": 1949, + "cast": [ + "William Gargan", + "Richard Crane" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "East Side, West Side", + "year": 1949, + "cast": [ + "Barbara Stanwyck", + "James Mason", + "Van Heflin", + "Ava Gardner" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Easy Living", + "year": 1949, + "cast": [ + "Victor Mature", + "Lucille Ball", + "Lizabeth Scott" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Edward, My Son", + "year": 1949, + "cast": [ + "Spencer Tracy", + "Deborah Kerr", + "Ian Hunter" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "El Paso", + "year": 1949, + "cast": [ + "John Payne", + "Gail Russell", + "Sterling Hayden" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Everybody Does It", + "year": 1949, + "cast": [ + "Paul Douglas", + "Linda Darnell", + "Celeste Holm" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Family Honeymoon", + "year": 1949, + "cast": [ + "Claudette Colbert", + "Fred MacMurray" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Fan", + "year": 1949, + "cast": [ + "Madeleine Carroll", + "Jeanne Crain", + "Richard Greene", + "George Sanders" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Father Was a Fullback", + "year": 1949, + "cast": [ + "Fred MacMurray", + "Maureen O'Hara", + "Rudy Vallée" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Federal Agents vs. Underworld, Inc", + "year": 1949, + "cast": [ + "Kirk Alyn", + "Rosemary LaPlanche" + ], + "genres": [] + }, + { + "title": "Feudin' Rhythm", + "year": 1949, + "cast": [ + "Eddy Arnold", + "Gloria Henry", + "Kirby Grant" + ], + "genres": [ + "Western", + "Musical" + ] + }, + { + "title": "Fighting Fools", + "year": 1949, + "cast": [ + "Leo Gorcey", + "Huntz Hall", + "Lyle Talbot" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Fighting Kentuckian", + "year": 1949, + "cast": [ + "John Wayne", + "Oliver Hardy", + "Vera Ralston" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Fighting Man of the Plains", + "year": 1949, + "cast": [ + "Randolph Scott", + "Jane Nigh" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Fighting O'Flynn", + "year": 1949, + "cast": [ + "Douglas Fairbanks Jr.", + "Helena Carter" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Flame of Youth", + "year": 1949, + "cast": [ + "Barbra Fuller", + "Danny Sue Nolan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Flaming Fury", + "year": 1949, + "cast": [ + "George Cooper", + "Roy Roberts" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Flamingo Road", + "year": 1949, + "cast": [ + "Joan Crawford", + "Zachary Scott", + "Sydney Greenstreet" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Flaxy Martin", + "year": 1949, + "cast": [ + "Virginia Mayo", + "Dorothy Malone", + "Zachary Scott" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Follow Me Quietly", + "year": 1949, + "cast": [ + "William Lundigan", + "Dorothy Patrick" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Forbidden Street", + "year": 1949, + "cast": [ + "Maureen O'Hara", + "Dana Andrews" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "For Scent-imental Reasons", + "year": 1949, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "Forgotten Women", + "year": 1949, + "cast": [ + "Elyse Knox", + "Edward Norris" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Fountainhead", + "year": 1949, + "cast": [ + "Gary Cooper", + "Patricia Neal", + "Raymond Massey" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Free for All", + "year": 1949, + "cast": [ + "Robert Cummings", + "Ann Blyth" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Frigid Hare", + "year": 1949, + "cast": [ + "Bugs Bunny" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Frontier Investigator", + "year": 1949, + "cast": [ + "Allan Lane", + "Gail Davis" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Gal Who Took the West", + "year": 1949, + "cast": [ + "Yvonne De Carlo", + "Scott Brady" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Gay Amigo", + "year": 1949, + "cast": [ + "Duncan Renaldo", + "Armida" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Ghost of Zorro", + "year": 1949, + "cast": [ + "Clayton Moore", + "Pamela Blake" + ], + "genres": [] + }, + { + "title": "The Girl from Jones Beach", + "year": 1949, + "cast": [ + "Ronald Reagan", + "Virginia Mayo", + "Eddie Bracken" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Golden Stallion", + "year": 1949, + "cast": [ + "Roy Rogers", + "Dale Evans" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Great Dan Patch", + "year": 1949, + "cast": [ + "Dennis O'Keefe", + "Gail Russell", + "Ruth Warwick" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Great Gatsby", + "year": 1949, + "cast": [ + "Alan Ladd", + "Ruth Hussey", + "Betty Field" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Great Lover", + "year": 1949, + "cast": [ + "Bob Hope", + "Rhonda Fleming" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Great Sinner", + "year": 1949, + "cast": [ + "Gregory Peck", + "Ava Gardner", + "Melvyn Douglas" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Gun Law Justice", + "year": 1949, + "cast": [ + "Jimmy Wakely", + "Jane Adams" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Gun Runner", + "year": 1949, + "cast": [ + "Jimmy Wakely", + "Noel Neill" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Hasty Heart", + "year": 1949, + "cast": [ + "Ronald Reagan", + "Patricia Neal", + "Richard Todd" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Heiress", + "year": 1949, + "cast": [ + "Olivia de Havilland", + "Montgomery Clift", + "Ralph Richardson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hellfire", + "year": 1949, + "cast": [ + "Wild Bill Elliott", + "Marie Windsor", + "Forrest Tucker" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Hideout", + "year": 1949, + "cast": [ + "Lloyd Bridges", + "Lorna Gray" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "High Diving Hare", + "year": 1949, + "cast": [ + "Bugs Bunny" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Hold That Baby!", + "year": 1949, + "cast": [ + "Leo Gorcey", + "Huntz Hall" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Holiday Affair", + "year": 1949, + "cast": [ + "Robert Mitchum", + "Janet Leigh" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Holiday in Havana", + "year": 1949, + "cast": [ + "Desi Arnaz", + "Mary Hatcher", + "Ann Doran" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Home in San Antone", + "year": 1949, + "cast": [ + "Roy Acuff", + "Lyn Thomas" + ], + "genres": [ + "Western", + "Musical" + ] + }, + { + "title": "Home of the Brave", + "year": 1949, + "cast": [ + "Jeff Corey", + "Lloyd Bridges" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Homicide", + "year": 1949, + "cast": [ + "Robert Douglas", + "Helen Westcott" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Horsemen of the Sierras", + "year": 1949, + "cast": [ + "Charles Starrett", + "Smiley Burnette" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The House Across the Street", + "year": 1949, + "cast": [ + "Wayne Morris", + "Janis Paige" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "House of Strangers", + "year": 1949, + "cast": [ + "Edward G. Robinson", + "Susan Hayward", + "Richard Conte", + "Efrem Zimbalist Jr." + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "I Cheated the Law", + "year": 1949, + "cast": [ + "Tom Conway", + "Barbara Billingsley" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "I Married a Communist", + "year": 1949, + "cast": [ + "Laraine Day", + "Robert Ryan", + "John Agar" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "I Shot Jesse James", + "year": 1949, + "cast": [ + "Preston Foster", + "John Ireland" + ], + "genres": [ + "Western" + ] + }, + { + "title": "I Was a Male War Bride", + "year": 1949, + "cast": [ + "Cary Grant", + "Ann Sheridan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Illegal Entry", + "year": 1949, + "cast": [ + "Märta Torén", + "Howard Duff" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Impact", + "year": 1949, + "cast": [ + "Brian Donlevy", + "Ella Raines", + "Charles Coburn" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Incident", + "year": 1949, + "cast": [ + "Jane Frazee", + "Joyce Compton" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "In the Good Old Summertime", + "year": 1949, + "cast": [ + "Judy Garland", + "Van Johnson", + "Buster Keaton" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Inspector General", + "year": 1949, + "cast": [ + "Danny Kaye", + "Walter Slezak", + "Barbara Bates" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Intruder in the Dust", + "year": 1949, + "cast": [ + "David Brian", + "Claude Jarman Jr." + ], + "genres": [ + "Drama" + ] + }, + { + "title": "It Happens Every Spring", + "year": 1949, + "cast": [ + "Ray Milland", + "Jean Peters", + "Paul Douglas" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "It's a Great Feeling", + "year": 1949, + "cast": [ + "Doris Day", + "Jack Carson", + "Dennis Morgan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Jerry's Diary", + "year": 1949, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Jiggs and Maggie in Jackpot Jitters", + "year": 1949, + "cast": [ + "Joe Yule", + "Renie Riano" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Jigsaw", + "year": 1949, + "cast": [ + "Franchot Tone", + "Jean Wallace" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Joe Palooka in the Big Fight", + "year": 1949, + "cast": [ + "Leon Errol", + "Joe Kirkwood", + "Lina Romay" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Joe Palooka in the Counterpunch", + "year": 1949, + "cast": [ + "Leon Errol", + "Joe Kirkwood", + "Elyse Knox" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "John Loves Mary", + "year": 1949, + "cast": [ + "Ronald Reagan", + "Jack Carson", + "Wayne Morris", + "Patricia Neal" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Johnny Allegro", + "year": 1949, + "cast": [ + "George Raft", + "George Macready", + "Nina Foch" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Johnny Holiday", + "year": 1949, + "cast": [ + "William Bendix", + "Hoagy Carmichael" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Johnny Stool Pigeon", + "year": 1949, + "cast": [ + "Shelley Winters", + "Howard Duff", + "Dan Duryea" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Jolson Sings Again", + "year": 1949, + "cast": [ + "Larry Parks", + "Barbara Hale" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "The Judge Steps Out", + "year": 1949, + "cast": [ + "Ann Sothern", + "Alexander Knox" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Kazan", + "year": 1949, + "cast": [ + "Stephen Dunne", + "Lois Maxwell" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Kid from Cleveland", + "year": 1949, + "cast": [ + "George Brent", + "Lynn Bari" + ], + "genres": [ + "Sports" + ] + }, + { + "title": "King of the Rocket Men", + "year": 1949, + "cast": [ + "Tris Coffin", + "Mae Clarke" + ], + "genres": [] + }, + { + "title": "A Kiss for Corliss", + "year": 1949, + "cast": [ + "Shirley Temple", + "David Niven" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Kiss in the Dark", + "year": 1949, + "cast": [ + "Jane Wyman", + "David Niven" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Knock on Any Door", + "year": 1949, + "cast": [ + "Humphrey Bogart", + "John Derek", + "George Macready" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Lady Gambles", + "year": 1949, + "cast": [ + "Barbara Stanwyck", + "Robert Preston" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Lady Takes a Sailor", + "year": 1949, + "cast": [ + "Jane Wyman", + "Dennis Morgan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Laramie", + "year": 1949, + "cast": [ + "Charles Starrett", + "Smiley Burnette" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Last Bandit", + "year": 1949, + "cast": [ + "Bill Elliott", + "Lorna Gray" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Law of the Barbary Coast", + "year": 1949, + "cast": [ + "Gloria Henry", + "Adele Jergens" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Law of the Golden West", + "year": 1949, + "cast": [ + "Monte Hale", + "Gail Davis" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Law of the West", + "year": 1949, + "cast": [ + "Johnny Mack Brown", + "Max Terhune" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Lawless Code", + "year": 1949, + "cast": [ + "Jimmy Wakely", + "Dub Taylor", + "Ellen Hall" + ], + "genres": [ + "Western" + ] + }, + { + "title": "A Letter to Three Wives", + "year": 1949, + "cast": [ + "Linda Darnell", + "Ann Sothern", + "Jeanne Crain", + "Paul Douglas", + "Kirk Douglas", + "Jeffrey Lynn", + "Thelma Ritter" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Life of Riley", + "year": 1949, + "cast": [ + "William Bendix", + "Rosemary DeCamp" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Little Women", + "year": 1949, + "cast": [ + "Elizabeth Taylor", + "Margaret O'Brien", + "June Allyson", + "Mary Astor", + "Janet Leigh" + ], + "genres": [ + "Family" + ] + }, + { + "title": "The Lone Wolf and His Lady", + "year": 1949, + "cast": [ + "Ron Randell", + "June Vincent" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Long-Haired Hare", + "year": 1949, + "cast": [ + "Bugs Bunny" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Look for the Silver Lining", + "year": 1949, + "cast": [ + "June Haver", + "Ray Bolger" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Lost Boundaries", + "year": 1949, + "cast": [ + "Beatrice Pearson", + "Mel Ferrer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Lost Tribe", + "year": 1949, + "cast": [ + "Johnny Weissmuller", + "Elena Verdugo" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Love Happy", + "year": 1949, + "cast": [ + "Marx Brothers", + "Vera-Ellen", + "Ilona Massey", + "Marion Hutton", + "Raymond Burr" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Love That Pup", + "year": 1949, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "The Lucky Stiff", + "year": 1949, + "cast": [ + "Dorothy Lamour", + "Claire Trevor" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Lust for Gold", + "year": 1949, + "cast": [ + "Glenn Ford", + "Ida Lupino", + "Gig Young" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Ma and Pa Kettle", + "year": 1949, + "cast": [ + "Marjorie Main", + "Percy Kilbride" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Madame Bovary", + "year": 1949, + "cast": [ + "Jennifer Jones", + "James Mason", + "Van Heflin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Make Believe Ballroom", + "year": 1949, + "cast": [ + "Ruth Warrick", + "Ron Randell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Make Mine Laughs", + "year": 1949, + "cast": [ + "Ray Bolger", + "Joan Davis", + "Dennis Day" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Malaya", + "year": 1949, + "cast": [ + "Spencer Tracy", + "James Stewart", + "Sydney Greenstreet" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Malice in the Palace", + "year": 1949, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Man on the Eiffel Tower", + "year": 1949, + "cast": [ + "Charles Laughton", + "Franchot Tone" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Manhandled", + "year": 1949, + "cast": [ + "Dorothy Lamour", + "Dan Duryea", + "Sterling Hayden" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Manhattan Angel", + "year": 1949, + "cast": [ + "Gloria Jean", + "Patricia Barry" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Mary Ryan, Detective", + "year": 1949, + "cast": [ + "Marsha Hunt", + "John Litel", + "June Vincent" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Masked Raiders", + "year": 1949, + "cast": [ + "Tim Holt", + "Marjorie Lord" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Master Minds", + "year": 1949, + "cast": [ + "Leo Gorcey", + "Huntz Hall" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mighty Joe Young", + "year": 1949, + "cast": [ + "Terry Moore", + "Robert Armstrong", + "Ben Johnson" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Miss Grant Takes Richmond", + "year": 1949, + "cast": [ + "Lucille Ball", + "William Holden" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mississippi Hare", + "year": 1949, + "cast": [ + "Bugs Bunny" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Miss Mink of 1949", + "year": 1949, + "cast": [ + "Lois Collier" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mother Is a Freshman", + "year": 1949, + "cast": [ + "Loretta Young", + "Van Johnson", + "Rudy Vallée" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Mr. Belvedere Goes to College", + "year": 1949, + "cast": [ + "Clifton Webb", + "Shirley Temple" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mr. Soft Touch", + "year": 1949, + "cast": [ + "Glenn Ford", + "Evelyn Keyes" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Mrs. Mike", + "year": 1949, + "cast": [ + "Dick Powell", + "Evelyn Keyes" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Mutineers", + "year": 1949, + "cast": [ + "Jon Hall", + "George Reeves" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "My Dream Is Yours", + "year": 1949, + "cast": [ + "Doris Day", + "Jack Carson", + "Eve Arden" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "My Foolish Heart", + "year": 1949, + "cast": [ + "Susan Hayward", + "Dana Andrews" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "My Friend Irma", + "year": 1949, + "cast": [ + "Dean Martin", + "Jerry Lewis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "My Own True Love", + "year": 1949, + "cast": [ + "Phyllis Calvert", + "Melvyn Douglas", + "Wanda Hendrix" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Mysterious Desperado", + "year": 1949, + "cast": [ + "Tim Holt", + "Richard Martin", + "Movita Castaneda" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Navajo Trail Raiders", + "year": 1949, + "cast": [ + "Allan Lane", + "Eddy Waller" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Neptune's Daughter", + "year": 1949, + "cast": [ + "Esther Williams", + "Red Skelton", + "Ricardo Montalbán" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Never Fear", + "year": 1949, + "cast": [ + "Sally Forrest", + "Hugh O'Brian" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Night Unto Night", + "year": 1949, + "cast": [ + "Ronald Reagan", + "Viveca Lindfors", + "Broderick Crawford" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Oh, You Beautiful Doll", + "year": 1949, + "cast": [ + "Mark Stevens", + "June Haver", + "Gale Robbins" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Once More, My Darling", + "year": 1949, + "cast": [ + "Robert Montgomery", + "Ann Blyth" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "One Last Fling", + "year": 1949, + "cast": [ + "Alexis Smith" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "On the Town", + "year": 1949, + "cast": [ + "Gene Kelly", + "Frank Sinatra", + "Ann Miller", + "Betty Garrett" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Outcasts of the Trail", + "year": 1949, + "cast": [ + "Monte Hale", + "Jeff Donnell" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Outpost in Morocco", + "year": 1949, + "cast": [ + "George Raft", + "Marie Windsor" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Pinky", + "year": 1949, + "cast": [ + "Jeanne Crain", + "Ethel Barrymore", + "Ethel Waters" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Pioneer Marshal", + "year": 1949, + "cast": [ + "Monte Hale", + "Paul Hurst", + "Nan Leslie" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Pirates of Capri", + "year": 1949, + "cast": [ + "Louis Hayward", + "Binnie Barnes", + "Mariella Lotti" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Porky in Wackyland", + "year": 1949, + "cast": [ + "Porky Pig" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Post Office Investigator", + "year": 1949, + "cast": [ + "Audrey Long", + "Warren Douglas" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Port of New York", + "year": 1949, + "cast": [ + "Scott Brady", + "K. T. Stevens", + "Yul Brynner" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Powder River Rustlers", + "year": 1949, + "cast": [ + "Allan Lane", + "Eddy Waller" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Prince of Foxes", + "year": 1949, + "cast": [ + "Tyrone Power", + "Orson Welles" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Prince of the Plains", + "year": 1949, + "cast": [ + "Monte Hale", + "Paul Hurst" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Prison Warden", + "year": 1949, + "cast": [ + "Warner Baxter", + "Anna Lee" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Rabbit Hood", + "year": 1949, + "cast": [ + "Bugs Bunny" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Radar Patrol vs Spy King", + "year": 1949, + "cast": [ + "Kirk Alyn" + ], + "genres": [] + }, + { + "title": "Range Justice", + "year": 1949, + "cast": [ + "Johnny Mack Brown", + "Max Terhune" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Ranger of Cherokee Strip", + "year": 1949, + "cast": [ + "Monte Hale", + "Paul Hurst" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Rebel Rabbit", + "year": 1949, + "cast": [ + "Bugs Bunny" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "The Reckless Moment", + "year": 1949, + "cast": [ + "James Mason", + "Joan Bennett", + "Geraldine Brooks" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Red Canyon", + "year": 1949, + "cast": [ + "Ann Blyth", + "Howard Duff", + "George Brent" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Red Danube", + "year": 1949, + "cast": [ + "Peter Lawford", + "Janet Leigh", + "Angela Lansbury" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Red, Hot and Blue", + "year": 1949, + "cast": [ + "Betty Hutton", + "Victor Mature", + "William Demarest" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Red Light", + "year": 1949, + "cast": [ + "George Raft", + "Virginia Mayo", + "Raymond Burr" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Red Menace", + "year": 1949, + "cast": [ + "Robert Rockwell", + "Betty Lou Gerson" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Red Pony", + "year": 1949, + "cast": [ + "Myrna Loy", + "Robert Mitchum", + "Louis Calhern" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Red Stallion in the Rockies", + "year": 1949, + "cast": [ + "Jean Heather", + "Arthur Franz" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Reign of Terror", + "year": 1949, + "cast": [ + "Robert Cummings", + "Arlene Dahl" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "Renegades of the Sage", + "year": 1949, + "cast": [ + "Charles Starrett", + "Smiley Burnette" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Riders in the Sky", + "year": 1949, + "cast": [ + "Gene Autry", + "Gloria Henry" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Riders of the Range", + "year": 1949, + "cast": [ + "Tim Holt", + "Richard Martin", + "Jacqueline White" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Riders of the Whistling Pines", + "year": 1949, + "cast": [ + "Gene Autry", + "Patricia Barry" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Rimfire", + "year": 1949, + "cast": [ + "Mary Beth Hughes", + "James Millican" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Rim of the Canyon", + "year": 1949, + "cast": [ + "Gene Autry", + "Thurston Hall" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Ringside", + "year": 1949, + "cast": [ + "Don \"Red\" Barry", + "Tom Brown", + "Sheila Ryan" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Roaring Westward", + "year": 1949, + "cast": [ + "Jimmy Wakely", + "Lois Hall" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Rope of Sand", + "year": 1949, + "cast": [ + "Burt Lancaster", + "Paul Henreid", + "Claude Rains" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Roseanna McCoy", + "year": 1949, + "cast": [ + "Farley Granger", + "Joan Evans" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Rose of the Yukon", + "year": 1949, + "cast": [ + "Myrna Dell", + "Steve Brodie" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Roughshod", + "year": 1949, + "cast": [ + "Gloria Grahame", + "Robert Sterling" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Rustlers", + "year": 1949, + "cast": [ + "Tim Holt", + "Richard Martin", + "Martha Hyer" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Rusty's Birthday", + "year": 1949, + "cast": [ + "John Litel", + "Ann Doran" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Rusty Saves a Life", + "year": 1949, + "cast": [ + "John Litel", + "Ann Doran" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Samson and Delilah", + "year": 1949, + "cast": [ + "Hedy Lamarr", + "Victor Mature", + "Angela Lansbury" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "San Antone Ambush", + "year": 1949, + "cast": [ + "Monte Hale", + "Paul Hurst" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Sand", + "year": 1949, + "cast": [ + "Coleen Gray", + "Mark Stevens" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Sands of Iwo Jima", + "year": 1949, + "cast": [ + "John Wayne", + "John Agar", + "Forrest Tucker" + ], + "genres": [ + "War" + ] + }, + { + "title": "Satan's Cradle", + "year": 1949, + "cast": [ + "Duncan Renaldo", + "Ann Savage" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Scene of the Crime", + "year": 1949, + "cast": [ + "Van Johnson", + "Arlene Dahl" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Search for Danger", + "year": 1949, + "cast": [ + "John Calvert", + "Albert Dekker" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Secret Garden", + "year": 1949, + "cast": [ + "Margaret O'Brien", + "Dean Stockwell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Secret of St. Ives", + "year": 1949, + "cast": [ + "Richard Ney", + "Vanessa Brown" + ], + "genres": [ + "Historical" + ] + }, + { + "title": "The Set-Up", + "year": 1949, + "cast": [ + "Robert Ryan", + "Audrey Totter" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "She Shoulda Said 'No'!", + "year": 1949, + "cast": [ + "Lila Leeds" + ], + "genres": [] + }, + { + "title": "She Wore a Yellow Ribbon", + "year": 1949, + "cast": [ + "John Wayne", + "Joanne Dru", + "Ben Johnson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Sheriff of Wichita", + "year": 1949, + "cast": [ + "Allan Lane", + "Lyn Wilde" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Shockproof", + "year": 1949, + "cast": [ + "Cornel Wilde", + "Patricia Knight" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Siren of Atlantis", + "year": 1949, + "cast": [ + "Maria Montez", + "Jean Pierre Aumont" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sky Dragon", + "year": 1949, + "cast": [ + "Roland Winters", + "Noel Neill" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Slattery's Hurricane", + "year": 1949, + "cast": [ + "Richard Widmark", + "Linda Darnell", + "Veronica Lake" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Slightly French", + "year": 1949, + "cast": [ + "Dorothy Lamour", + "Don Ameche" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "So Dear to My Heart", + "year": 1949, + "cast": [ + "Burl Ives", + "Beulah Bondi", + "Harry Carey" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Song of India", + "year": 1949, + "cast": [ + "Sabu", + "Turhan Bey", + "Gail Russell" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Song of Surrender", + "year": 1949, + "cast": [ + "Wanda Hendrix", + "Claude Rains" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sons of New Mexico", + "year": 1949, + "cast": [ + "Gene Autry", + "Gail Davis" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Sorrowful Jones", + "year": 1949, + "cast": [ + "Bob Hope", + "Lucille Ball" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "South of Death Valley", + "year": 1949, + "cast": [ + "Charles Starrett", + "Gail Davis" + ], + "genres": [ + "Western" + ] + }, + { + "title": "South of Rio", + "year": 1949, + "cast": [ + "Monte Hale", + "Kay Christopher" + ], + "genres": [ + "Western" + ] + }, + { + "title": "South of St. Louis", + "year": 1949, + "cast": [ + "Joel McCrea", + "Zachary Scott", + "Victor Jory" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Special Agent", + "year": 1949, + "cast": [ + "William Eythe", + "Kasey Rogers", + "Carole Mathews" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Square Dance Jubilee", + "year": 1949, + "cast": [ + "Don \"Red\" Barry", + "Mary Beth Hughes", + "Wally Vernon" + ], + "genres": [ + "Musical", + "Western" + ] + }, + { + "title": "Stagecoach Kid", + "year": 1949, + "cast": [ + "Tim Holt", + "Richard Martin", + "Jeff Donnell" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Stampede", + "year": 1949, + "cast": [ + "Rod Cameron", + "Gale Storm" + ], + "genres": [ + "Western" + ] + }, + { + "title": "State Department: File 649", + "year": 1949, + "cast": [ + "Virginia Bruce", + "William Lundigan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Strange Bargain", + "year": 1949, + "cast": [ + "Martha Scott", + "Jeffrey Lynn" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Stratton Story", + "year": 1949, + "cast": [ + "James Stewart", + "June Allyson" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Streets of Laredo", + "year": 1949, + "cast": [ + "William Holden", + "William Bendix", + "Macdonald Carey", + "Mona Freeman" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Streets of San Francisco", + "year": 1949, + "cast": [ + "Robert Armstrong", + "Mae Clarke" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Story of Molly X", + "year": 1949, + "cast": [ + "June Havoc", + "John Russell", + "Dorothy Hart" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Story of Seabiscuit", + "year": 1949, + "cast": [ + "Shirley Temple", + "Barry Fitzgerald" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "The Sun Comes Up", + "year": 1949, + "cast": [ + "Jeanette MacDonald", + "Claude Jarman Jr." + ], + "genres": [ + "Family" + ] + }, + { + "title": "Susanna Pass", + "year": 1949, + "cast": [ + "Roy Rogers", + "Dale Evans" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Sword in the Desert", + "year": 1949, + "cast": [ + "Dana Andrews", + "Märta Torén" + ], + "genres": [ + "War" + ] + }, + { + "title": "Take Me Out to the Ball Game", + "year": 1949, + "cast": [ + "Frank Sinatra", + "Esther Williams", + "Gene Kelly" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Take One False Step", + "year": 1949, + "cast": [ + "Shelley Winters", + "William Powell" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Tarzan's Magic Fountain", + "year": 1949, + "cast": [ + "Lex Barker", + "Brenda Joyce", + "Evelyn Ankers" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Task Force", + "year": 1949, + "cast": [ + "Gary Cooper", + "Jane Wyatt", + "Walter Brennan" + ], + "genres": [ + "War" + ] + }, + { + "title": "Technicolor for Industrial Films", + "year": 1949, + "cast": [], + "genres": [] + }, + { + "title": "Tell It to the Judge", + "year": 1949, + "cast": [ + "Rosalind Russell", + "Robert Cummings" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Tennis Chumps", + "year": 1949, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Tension", + "year": 1949, + "cast": [ + "Richard Basehart", + "Audrey Totter", + "Barry Sullivan", + "Cyd Charisse" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "That Forsyte Woman", + "year": 1949, + "cast": [ + "Errol Flynn", + "Greer Garson", + "Walter Pidgeon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "That Midnight Kiss", + "year": 1949, + "cast": [ + "Kathryn Grayson", + "Mario Lanza", + "Jose Iturbi" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "They Live by Night", + "year": 1949, + "cast": [ + "Farley Granger", + "Cathy O'Donnell", + "Howard Da Silva" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Thieves' Highway", + "year": 1949, + "cast": [ + "Richard Conte", + "Valentina Cortese", + "Lee J. Cobb" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Threat", + "year": 1949, + "cast": [ + "Michael O'Shea", + "Virginia Grey" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Top o' the Morning", + "year": 1949, + "cast": [ + "Bing Crosby", + "Ann Blyth", + "Barry Fitzgerald" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Tokyo Joe", + "year": 1949, + "cast": [ + "Humphrey Bogart", + "Sessue Hayakawa" + ], + "genres": [ + "War" + ] + }, + { + "title": "Too Late for Tears", + "year": 1949, + "cast": [ + "Lizabeth Scott", + "Dan Duryea", + "Don DeFore" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Tough Assignment", + "year": 1949, + "cast": [ + "Don Barry", + "Marjorie Steele" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Trail of the Yukon", + "year": 1949, + "cast": [ + "Kirby Grant", + "Suzanne Dalbert" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Trails End", + "year": 1949, + "cast": [ + "Johnny Mack Brown", + "Max Terhune" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Trapped", + "year": 1949, + "cast": [ + "Lloyd Bridges", + "John Hoyt" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Treasure of Monte Cristo", + "year": 1949, + "cast": [ + "Glenn Langan", + "Adele Jergens" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Tucson (film)", + "year": 1949, + "cast": [ + "Jimmy Lydon", + "Penny Edwards" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Tulsa", + "year": 1949, + "cast": [ + "Susan Hayward", + "Robert Preston" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Tuna Clipper", + "year": 1949, + "cast": [ + "Roddy McDowall", + "Elena Verdugo" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Twelve O'Clock High", + "year": 1949, + "cast": [ + "Gregory Peck", + "Gary Merrill", + "Dean Jagger" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "The Undercover Man", + "year": 1949, + "cast": [ + "Glenn Ford", + "Nina Foch", + "James Whitmore" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Undertow", + "year": 1949, + "cast": [ + "Scott Brady", + "John Russell", + "Dorothy Hart", + "Peggy Dow" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Walking Hills", + "year": 1949, + "cast": [ + "Randolph Scott", + "Ella Raines" + ], + "genres": [ + "Western" + ] + }, + { + "title": "We Were Strangers", + "year": 1949, + "cast": [ + "Jennifer Jones", + "John Garfield", + "Pedro Armendáriz" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "West of El Dorado", + "year": 1949, + "cast": [ + "Johnny Mack Brown", + "Max Terhune", + "Reno Browne" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Western Renegades", + "year": 1949, + "cast": [ + "Johnny Mack Brown", + "Max Terhune" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Which Is Witch", + "year": 1949, + "cast": [ + "Bugs Bunny" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Whirlpool", + "year": 1949, + "cast": [ + "Gene Tierney", + "José Ferrer", + "Charles Bickford" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "White Heat", + "year": 1949, + "cast": [ + "James Cagney", + "Virginia Mayo", + "Edmond O'Brien", + "Steve Cochran" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Wicked City", + "year": 1949, + "cast": [ + "Maria Montez", + "Jean-Pierre Aumont", + "Lilli Palmer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Window", + "year": 1949, + "cast": [ + "Bobby Driscoll", + "Barbara Hale" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Without Honor", + "year": 1949, + "cast": [ + "Laraine Day", + "Dane Clark", + "Franchot Tone" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Wolf Hunters", + "year": 1949, + "cast": [ + "Kirby Grant", + "Jan Clayton" + ], + "genres": [ + "Western" + ] + }, + { + "title": "A Woman's Secret", + "year": 1949, + "cast": [ + "Maureen O'Hara", + "Melvyn Douglas", + "Gloria Grahame" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Wyoming Bandit", + "year": 1949, + "cast": [ + "Allan Lane", + "Eddy Waller" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Yes Sir, That's My Baby", + "year": 1949, + "cast": [ + "Donald O'Connor", + "Gloria DeHaven" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Younger Brothers", + "year": 1949, + "cast": [ + "Wayne Morris", + "Bruce Bennett", + "Janis Paige" + ], + "genres": [ + "Western" + ] + }, + { + "title": "You're My Everything", + "year": 1949, + "cast": [ + "Dan Dailey", + "Anne Baxter", + "Anne Revere" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "8 Ball Bunny", + "year": 1950, + "cast": [ + "Looney Tunes" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "711 Ocean Drive", + "year": 1950, + "cast": [ + "Edmond O'Brien", + "Joanne Dru", + "Dorothy Patrick" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Abbott and Costello in the Foreign Legion", + "year": 1950, + "cast": [ + "Abbott and Costello", + "Patricia Medina" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Across the Badlands", + "year": 1950, + "cast": [ + "Charles Starrett", + "Smiley Burnette" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Admiral Was a Lady", + "year": 1950, + "cast": [ + "Edmond O'Brien", + "Wanda Hendrix", + "Steve Brodie" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "All About Eve", + "year": 1950, + "cast": [ + "Bette Davis", + "Anne Baxter", + "Gary Merrill", + "Celeste Holm", + "George Sanders", + "Hugh Marlowe", + "Marilyn Monroe" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Ambush", + "year": 1950, + "cast": [ + "Robert Taylor", + "John Hodiak", + "Arlene Dahl" + ], + "genres": [ + "Western" + ] + }, + { + "title": "American Guerrilla in the Philippines", + "year": 1950, + "cast": [ + "Tyrone Power", + "Micheline Presle" + ], + "genres": [ + "War" + ] + }, + { + "title": "Annie Get Your Gun", + "year": 1950, + "cast": [ + "Betty Hutton", + "Howard Keel" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Arizona Cowboy", + "year": 1950, + "cast": [ + "Rex Allen", + "Teala Loring" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Arizona Territory", + "year": 1950, + "cast": [ + "Whip Wilson", + "Andy Clyde", + "Nancy Saunders" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Armored Car Robbery", + "year": 1950, + "cast": [ + "Charles McGraw", + "Adele Jergens", + "William Talman" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Asphalt Jungle", + "year": 1950, + "cast": [ + "Sterling Hayden", + "Louis Calhern", + "Sam Jaffe", + "James Whitmore", + "Marilyn Monroe" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "At War with the Army", + "year": 1950, + "cast": [ + "Dean Martin", + "Jerry Lewis", + "Polly Bergen" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Atom Man vs. Superman", + "year": 1950, + "cast": [ + "Kirk Alyn", + "Lyle Talbot", + "Noel Neill" + ], + "genres": [] + }, + { + "title": "The Avengers", + "year": 1950, + "cast": [ + "Adele Mara", + "John Carroll" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Backfire", + "year": 1950, + "cast": [ + "Edmond O'Brien", + "Virginia Mayo", + "Gordon MacRae" + ], + "genres": [ + "Crime", + "Thriller" + ] + }, + { + "title": "The Bandit Queen", + "year": 1950, + "cast": [ + "Barbara Britton", + "Willard Parker", + "Phillip Reed" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Baron of Arizona", + "year": 1950, + "cast": [ + "Vincent Price", + "Ellen Drew" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Barricade", + "year": 1950, + "cast": [ + "Ruth Roman", + "Raymond Massey" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Beauty on Parade", + "year": 1950, + "cast": [ + "Robert Hutton", + "Ruth Warrick", + "Lola Albright" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Belle of Old Mexico", + "year": 1950, + "cast": [ + "Estelita Rodriguez", + "Robert Rockwell" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Bells of Coronado", + "year": 1950, + "cast": [ + "Roy Rogers", + "Dale Evans" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Between Midnight and Dawn", + "year": 1950, + "cast": [ + "Edmond O'Brien", + "Gale Storm", + "Mark Stevens", + "Gale Robbins" + ], + "genres": [ + "Crime", + "Thriller" + ] + }, + { + "title": "Beware of Blondie", + "year": 1950, + "cast": [ + "Penny Singleton", + "Arthur Lake" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Beyond the Purple Hills", + "year": 1950, + "cast": [ + "Gene Autry", + "Jo-Carroll Dennison" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Big Hangover", + "year": 1950, + "cast": [ + "Elizabeth Taylor", + "Van Johnson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Big House Bunny", + "year": 1950, + "cast": [ + "Looney Tunes" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "The Big Lift", + "year": 1950, + "cast": [ + "Montgomery Clift", + "Paul Douglas", + "Cornell Borchers" + ], + "genres": [ + "War" + ] + }, + { + "title": "Black Hand", + "year": 1950, + "cast": [ + "Gene Kelly", + "Teresa Celli" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Black Jack", + "year": 1950, + "cast": [ + "George Sanders", + "Herbert Marshall", + "Patricia Roc" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Black Rose", + "year": 1950, + "cast": [ + "Tyrone Power", + "Orson Welles" + ], + "genres": [ + "Historical" + ] + }, + { + "title": "The Blazing Sun", + "year": 1950, + "cast": [ + "Western" + ], + "genres": [] + }, + { + "title": "The Blonde Bandit", + "year": 1950, + "cast": [ + "Dorothy Patrick", + "Gerald Mohr" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Blonde Dynamite", + "year": 1950, + "cast": [ + "Leo Gorcey", + "Huntz Hall", + "Adele Jergens" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Blondie's Hero", + "year": 1950, + "cast": [ + "Penny Singleton", + "Arthur Lake" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Blue Grass of Kentucky", + "year": 1950, + "cast": [ + "Bill Williams", + "Jane Nigh", + "Ralph Morgan" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Blues Busters", + "year": 1950, + "cast": [ + "Bowery Boys", + "Adele Jergens" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Boobs in the Woods", + "year": 1950, + "cast": [ + "Looney Tunes" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Border Outlaws", + "year": 1950, + "cast": [ + "Spade Cooley", + "Maria Hart" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Borderline", + "year": 1950, + "cast": [ + "Fred MacMurray", + "Claire Trevor", + "Raymond Burr" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Border Rangers", + "year": 1950, + "cast": [ + "Don \"Red\" Barry", + "Robert Lowery", + "Pamela Blake" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Border Treasure", + "year": 1950, + "cast": [ + "Tim Holt", + "Jane Nigh" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Born to Be Bad", + "year": 1950, + "cast": [ + "Joan Fontaine", + "Robert Ryan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Born Yesterday", + "year": 1950, + "cast": [ + "William Holden", + "Judy Holliday", + "Broderick Crawford" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Boy from Indiana", + "year": 1950, + "cast": [ + "Lon McCallister", + "Lois Butler", + "Billie Burke" + ], + "genres": [ + "Sports" + ] + }, + { + "title": "Branded", + "year": 1950, + "cast": [ + "Alan Ladd", + "Mona Freeman", + "Charles Bickford" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Brave Engineer", + "year": 1950, + "cast": [ + "The King's Men" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "The Breaking Point", + "year": 1950, + "cast": [ + "John Garfield", + "Patricia Neal" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Breakthrough", + "year": 1950, + "cast": [ + "David Brian", + "John Agar", + "Frank Lovejoy" + ], + "genres": [ + "War" + ] + }, + { + "title": "Bright Leaf", + "year": 1950, + "cast": [ + "Gary Cooper", + "Lauren Bacall", + "Patricia Neal" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Broken Arrow", + "year": 1950, + "cast": [ + "James Stewart", + "Jeff Chandler", + "Debra Paget", + "Will Geer" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Buccaneer's Girl", + "year": 1950, + "cast": [ + "Yvonne De Carlo" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Bunco Squad", + "year": 1950, + "cast": [ + "Robert Sterling", + "Joan Dixon" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Bushy Hare", + "year": 1950, + "cast": [ + "Looney Tunes" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Caged", + "year": 1950, + "cast": [ + "Eleanor Parker", + "Agnes Moorehead", + "Lee Patrick", + "Betty Garde", + "Hope Emerson", + "Sheila MacRae" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "California Passage", + "year": 1950, + "cast": [ + "Forrest Tucker", + "Adele Mara" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Call of the Klondike", + "year": 1950, + "cast": [ + "Kirby Grant", + "Anne Gwynne", + "Lynne Roberts" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Canary Row", + "year": 1950, + "cast": [ + "Looney Tunes" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Captain Carey, U.S.A.", + "year": 1950, + "cast": [ + "Alan Ladd", + "Wanda Hendrix" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Captain China", + "year": 1950, + "cast": [ + "John Payne", + "Gail Russell" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Captive Girl", + "year": 1950, + "cast": [ + "Johnny Weissmuller", + "Buster Crabbe" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Capture", + "year": 1950, + "cast": [ + "Lew Ayres", + "Teresa Wright" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Cargo to Capetown", + "year": 1950, + "cast": [ + "Broderick Crawford", + "John Ireland", + "Ellen Drew" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Cariboo Trail", + "year": 1950, + "cast": [ + "Randolph Scott", + "Karin Booth", + "George \"Gabby\" Hayes" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Chain Gang", + "year": 1950, + "cast": [ + "Douglas Kennedy", + "Marjorie Lord" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Chain Lightning", + "year": 1950, + "cast": [ + "Humphrey Bogart", + "Eleanor Parker", + "Raymond Massey" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Champagne for Caesar", + "year": 1950, + "cast": [ + "Ronald Colman", + "Celeste Holm", + "Art Linkletter", + "Vincent Price", + "Barbara Britton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Cheaper by the Dozen", + "year": 1950, + "cast": [ + "Clifton Webb", + "Myrna Loy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Cherokee Uprising", + "year": 1950, + "cast": [ + "Whip Wilson", + "Andy Clyde", + "Lois Hall" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Cinderella", + "year": 1950, + "cast": [ + "Ilene Woods" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Code of the Silver Sage", + "year": 1950, + "cast": [ + "Allan Lane", + "Kay Christopher" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Cody of the Pony Express", + "year": 1950, + "cast": [ + "Jock O'Mahoney", + "Dickie Moore" + ], + "genres": [] + }, + { + "title": "Colorado Ranger", + "year": 1950, + "cast": [ + "James Ellison", + "Russell Hayden", + "Julie Adams" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Colt .45", + "year": 1950, + "cast": [ + "Randolph Scott", + "Ruth Roman" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Comanche Territory", + "year": 1950, + "cast": [ + "Maureen O'Hara", + "Macdonald Carey" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Convicted", + "year": 1950, + "cast": [ + "Glenn Ford", + "Broderick Crawford" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Copper Canyon", + "year": 1950, + "cast": [ + "Ray Milland", + "Hedy Lamarr", + "Mona Freeman" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Counterspy Meets Scotland Yard", + "year": 1950, + "cast": [ + "Howard St. John", + "Ron Randell", + "Amanda Blake" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "County Fair", + "year": 1950, + "cast": [ + "Rory Calhoun", + "Jane Nigh" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Covered Wagon Raid", + "year": 1950, + "cast": [ + "Allan Lane", + "Lyn Thomas" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Cow Town", + "year": 1950, + "cast": [ + "Gene Autry", + "Gail Davis" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Crime of Korea", + "year": 1950, + "cast": [], + "genres": [ + "War" + ] + }, + { + "title": "Crisis", + "year": 1950, + "cast": [ + "Cary Grant", + "José Ferrer", + "Paula Raymond" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Crooked River", + "year": 1950, + "cast": [ + "James Ellison", + "Russell Hayden", + "Julie Adams" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Cry Murder", + "year": 1950, + "cast": [ + "Carole Mathews", + "Jack Lord" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Cue Ball Cat", + "year": 1950, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Curtain Call at Cactus Creek", + "year": 1950, + "cast": [ + "Donald O'Connor", + "Walter Brennan", + "Gale Storm" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Customs Agent", + "year": 1950, + "cast": [ + "William Eythe", + "Marjorie Reynolds" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Cyrano de Bergerac", + "year": 1950, + "cast": [ + "José Ferrer", + "Mala Powers" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "D.O.A.", + "year": 1950, + "cast": [ + "Edmond O'Brien", + "Pamela Britton", + "Luther Adler", + "Beverly Garland" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Dakota Lil", + "year": 1950, + "cast": [ + "George Montgomery", + "Marie Windsor" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Dallas", + "year": 1950, + "cast": [ + "Gary Cooper", + "Ruth Roman", + "Raymond Massey", + "Steve Cochran", + "Reed Hadley" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Daltons' Women", + "year": 1950, + "cast": [ + "Lash LaRue", + "Jack Holt", + "Pamela Blake" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Damned Don't Cry!", + "year": 1950, + "cast": [ + "Joan Crawford", + "David Brian" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Dark City", + "year": 1950, + "cast": [ + "Charlton Heston", + "Lizabeth Scott" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "A Date with Your Family", + "year": 1950, + "cast": [ + "Ralph Hodges" + ], + "genres": [ + "Short" + ] + }, + { + "title": "The Daughter of Rosie O'Grady", + "year": 1950, + "cast": [ + "June Haver", + "Gordon MacRae", + "Debbie Reynolds", + "James Barton", + "Gene Nelson" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "David Harding, Counterspy", + "year": 1950, + "cast": [ + "Willard Parker", + "Audrey Long" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Davy Crockett, Indian Scout", + "year": 1950, + "cast": [ + "George Montgomery", + "Ellen Drew" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Deported", + "year": 1950, + "cast": [ + "Märta Torén", + "Jeff Chandler" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Desert Hawk", + "year": 1950, + "cast": [ + "Yvonne De Carlo", + "Jackie Gleason" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Desperadoes of the West", + "year": 1950, + "cast": [ + "Richard Powers", + "Judy Clark" + ], + "genres": [] + }, + { + "title": "Destination Big House", + "year": 1950, + "cast": [ + "Dorothy Patrick", + "Robert Rockwell" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Destination Moon", + "year": 1950, + "cast": [ + "Dick Wesson" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Destination Murder", + "year": 1950, + "cast": [ + "Joyce MacKenzie", + "Hurd Hatfield" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Devil's Doorway", + "year": 1950, + "cast": [ + "Robert Taylor", + "Louis Calhern" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Dial 1119", + "year": 1950, + "cast": [ + "Marshall Thompson", + "Virginia Field", + "Sam Levene" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Dopey Dicks", + "year": 1950, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Comedy", + "Short" + ] + }, + { + "title": "Duchess of Idaho", + "year": 1950, + "cast": [ + "Van Johnson", + "Esther Williams" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Double Deal", + "year": 1950, + "cast": [ + "Marie Windsor", + "Fay Baker" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Ducksters", + "year": 1950, + "cast": [ + "Looney Tunes" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "The Du Pont Story", + "year": 1950, + "cast": [ + "Sigrid Gurie" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Dynamite Pass", + "year": 1950, + "cast": [ + "Tim Holt", + "Lynne Roberts" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Eagle and the Hawk", + "year": 1950, + "cast": [ + "John Payne", + "Rhonda Fleming", + "Dennis O'Keefe" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Edge of Doom", + "year": 1950, + "cast": [ + "Dana Andrews", + "Farley Granger", + "Joan Evans" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Emergency Wedding", + "year": 1950, + "cast": [ + "Barbara Hale", + "Larry Parks" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Everybody's Dancin'", + "year": 1950, + "cast": [ + "Spade Cooley", + "Barbara Woodell" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Experiment Alcatraz", + "year": 1950, + "cast": [ + "Joan Dixon", + "John Howard" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Fancy Pants", + "year": 1950, + "cast": [ + "Lucille Ball", + "Bob Hope" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Fast on the Draw", + "year": 1950, + "cast": [ + "James Ellison", + "Russell Hayden", + "Julie Adams" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Father Is a Bachelor", + "year": 1950, + "cast": [ + "William Holden", + "Coleen Gray" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Father of the Bride", + "year": 1950, + "cast": [ + "Spencer Tracy", + "Elizabeth Taylor", + "Joan Bennett", + "Billie Burke", + "Leo G. Carroll", + "Don Taylor" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Father Makes Good", + "year": 1950, + "cast": [ + "Raymond Walburn", + "Walter Catlett" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Father's Wild Game", + "year": 1950, + "cast": [ + "Raymond Walburn", + "Walter Catlett" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Federal Agent at Large", + "year": 1950, + "cast": [ + "Dorothy Patrick", + "Robert Rockwell" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Federal Man", + "year": 1950, + "cast": [ + "William Henry", + "Pamela Blake", + "Movita Castaneda" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Fence Riders", + "year": 1950, + "cast": [ + "Whip Wilson", + "Andy Clyde", + "Reno Browne" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Fighting Stallion", + "year": 1950, + "cast": [ + "Bill Edwards", + "Doris Merrick" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The File on Thelma Jordon", + "year": 1950, + "cast": [ + "Wendell Corey", + "Barbara Stanwyck" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Fireball", + "year": 1950, + "cast": [ + "Mickey Rooney", + "Pat O'Brien", + "Beverly Tyler" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Flame and the Arrow", + "year": 1950, + "cast": [ + "Burt Lancaster", + "Virginia Mayo", + "Robert Douglas" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Flying Disc Man from Mars", + "year": 1950, + "cast": [ + "Walter Reed", + "Lois Collier" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Flying Missile", + "year": 1950, + "cast": [ + "Glenn Ford", + "Viveca Lindfors" + ], + "genres": [ + "War" + ] + }, + { + "title": "The Flying Saucer", + "year": 1950, + "cast": [ + "Mikel Conrad" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "For Heaven's Sake", + "year": 1950, + "cast": [ + "Clifton Webb", + "Joan Bennett", + "Robert Cummings", + "Edmund Gwenn", + "Joan Blondell" + ], + "genres": [ + "Fantasy", + "Comedy" + ] + }, + { + "title": "Forbidden Jungle", + "year": 1950, + "cast": [ + "Don C. Harvey", + "Forrest Taylor", + "Alyce Lewis" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Fortunes of Captain Blood", + "year": 1950, + "cast": [ + "Louis Hayward", + "Patricia Medina" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "A Fractured Leghorn", + "year": 1950, + "cast": [ + "Foghorn Leghorn" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "The Framed Cat", + "year": 1950, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Francis", + "year": 1950, + "cast": [ + "Donald O'Connor", + "Patricia Medina" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Frenchie", + "year": 1950, + "cast": [ + "Shelley Winters", + "Joel McCrea" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Frisco Tornado", + "year": 1950, + "cast": [ + "Allan Lane", + "Martha Hyer" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Frontier Outpost", + "year": 1950, + "cast": [ + "Charles Starrett", + "Lois Hall" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Fuller Brush Girl", + "year": 1950, + "cast": [ + "Lucille Ball", + "Eddie Albert", + "Gale Robbins" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Furies", + "year": 1950, + "cast": [ + "Walter Huston", + "Barbara Stanwyck", + "Wendell Corey", + "Judith Anderson", + "Gilbert Roland" + ], + "genres": [ + "Western", + "Noir" + ] + }, + { + "title": "The Girl from San Lorenzo", + "year": 1950, + "cast": [ + "Duncan Renaldo", + "Leo Carrillo" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Girls' School", + "year": 1950, + "cast": [ + "Joyce Reynolds", + "Ross Ford" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Glass Menagerie", + "year": 1950, + "cast": [ + "Jane Wyman", + "Kirk Douglas", + "Gertrude Lawrence", + "Arthur Kennedy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Goldbergs", + "year": 1950, + "cast": [ + "Philip Loeb", + "Eli Mintz" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Golden Gloves Story", + "year": 1950, + "cast": [ + "James Dunn", + "Dewey Martin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Golden Yeggs", + "year": 1950, + "cast": [ + "Looney Tunes" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "The Good Humor Man", + "year": 1950, + "cast": [ + "Jack Carson", + "Lola Albright", + "George Reeves" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Grandad of Races", + "year": 1950, + "cast": [ + "Art Gilmore" + ], + "genres": [ + "Short" + ] + }, + { + "title": "The Great Jewel Robber", + "year": 1950, + "cast": [ + "David Brian", + "Marjorie Reynolds" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Great Plane Robbery", + "year": 1950, + "cast": [ + "Tom Conway", + "Steve Brodie" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Great Rupert", + "year": 1950, + "cast": [ + "Jimmy Durante", + "Tom Drake", + "Terry Moore" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Guilty Bystander", + "year": 1950, + "cast": [ + "Zachary Scott", + "Faye Emerson" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Guilty of Treason", + "year": 1950, + "cast": [ + "Charles Bickford", + "Bonita Granville" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Gun Crazy", + "year": 1950, + "cast": [ + "Peggy Cummins", + "John Dall" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Gunfighter", + "year": 1950, + "cast": [ + "Gregory Peck", + "Helen Westcott", + "Karl Malden", + "Millard Mitchell", + "Skip Homeier" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Gunfire", + "year": 1950, + "cast": [ + "Don \"Red\" Barry", + "Robert Lowery", + "Pamela Blake" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Gunman in the Streets", + "year": 1950, + "cast": [ + "Dane Clark", + "Simone Signoret" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Gunmen of Abilene", + "year": 1950, + "cast": [ + "Allan Lane", + "Eddy Waller" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Gunslingers", + "year": 1950, + "cast": [ + "Whip Wilson", + "Andy Clyde", + "Reno Browne" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Happy Years", + "year": 1950, + "cast": [ + "Dean Stockwell", + "Leo G. Carroll" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Harbor of Missing Men", + "year": 1950, + "cast": [ + "Richard Denning", + "Barbra Fuller", + "Steven Geray" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Harriet Craig", + "year": 1950, + "cast": [ + "Joan Crawford", + "Wendell Corey" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Harvey", + "year": 1950, + "cast": [ + "James Stewart", + "Josephine Hull", + "Peggy Dow", + "Charles Drake", + "Cecil Kellaway" + ], + "genres": [ + "Fantasy", + "Comedy" + ] + }, + { + "title": "He's a Cockeyed Wonder", + "year": 1950, + "cast": [ + "Mickey Rooney", + "Terry Moore" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hi-Jacked", + "year": 1950, + "cast": [ + "Jim Davis", + "Marcia Mae Jones" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Hidden City", + "year": 1950, + "cast": [ + "Johnny Sheffield", + "Sue England" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "High Lonesome", + "year": 1950, + "cast": [ + "John Drew Barrymore" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Highway 301", + "year": 1950, + "cast": [ + "Steve Cochran", + "Virginia Grey" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Hillbilly Hare", + "year": 1950, + "cast": [ + "Looney Tunes" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Hills of Oklahoma", + "year": 1950, + "cast": [ + "Rex Allen", + "Elisabeth Fraser" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Hit Parade of 1951", + "year": 1950, + "cast": [ + "Marie McDonald", + "John Carroll" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Hoedown", + "year": 1950, + "cast": [ + "Eddy Arnold", + "Jeff Donnell", + "Jock Mahoney" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Holiday Rhythm", + "year": 1950, + "cast": [ + "Mary Beth Hughes", + "Tex Ritter" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Hollywood Ten", + "year": 1950, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "Hollywood Varieties", + "year": 1950, + "cast": [ + "Robert Alda", + "Peggy Stewart" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Homeless Hare", + "year": 1950, + "cast": [ + "Looney Tunes" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Hostile Country", + "year": 1950, + "cast": [ + "James Ellison", + "Russell Hayden", + "Julie Adams" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Hot Rod", + "year": 1950, + "cast": [ + "Jimmy Lydon", + "Gloria Winters" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "House by the River", + "year": 1950, + "cast": [ + "Louis Hayward", + "Jane Wyatt", + "Lee Bowman" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Hugs and Mugs", + "year": 1950, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Comedy", + "Short" + ] + }, + { + "title": "Hurdy-Gurdy Hare", + "year": 1950, + "cast": [ + "Looney Tunes" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "I Killed Geronimo", + "year": 1950, + "cast": [ + "James Ellison", + "Chief Thundercloud" + ], + "genres": [ + "Western" + ] + }, + { + "title": "I Shot Billy the Kid", + "year": 1950, + "cast": [ + "Don 'Red' Barry", + "Robert Lowery" + ], + "genres": [ + "Western" + ] + }, + { + "title": "I Was a Shoplifter", + "year": 1950, + "cast": [ + "Mona Freeman", + "Scott Brady", + "Charles Drake" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "I'll Get By", + "year": 1950, + "cast": [ + "June Haver", + "William Lundigan" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "In Beaver Valley", + "year": 1950, + "cast": [ + "Winston Hibler" + ], + "genres": [ + "Short" + ] + }, + { + "title": "In a Lonely Place", + "year": 1950, + "cast": [ + "Humphrey Bogart", + "Gloria Grahame", + "Frank Lovejoy", + "Jeff Donnell", + "Art Smith" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Indian Territory", + "year": 1950, + "cast": [ + "Gene Autry", + "Gail Davis" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Invisible Monster", + "year": 1950, + "cast": [ + "Richard Webb", + "Aline Towne" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Iroquois Trail", + "year": 1950, + "cast": [ + "George Montgomery", + "Brenda Marshall" + ], + "genres": [ + "Western" + ] + }, + { + "title": "It's a Small World", + "year": 1950, + "cast": [ + "Lorraine Miller", + "Will Geer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Jackie Robinson Story", + "year": 1950, + "cast": [ + "Jackie Robinson", + "Ruby Dee" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "The Jackpot", + "year": 1950, + "cast": [ + "James Stewart", + "Barbara Hale" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Jerry and the Lion", + "year": 1950, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Jerry's Cousin", + "year": 1950, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Jiggs and Maggie Out West", + "year": 1950, + "cast": [ + "Joe Yule", + "Renie Riano" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Joe Palooka in Humphrey Takes a Chance", + "year": 1950, + "cast": [ + "Leon Errol", + "Joe Kirkwood", + "Lois Collier" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Joe Palooka in The Squared Circle", + "year": 1950, + "cast": [ + "Joe Kirkwood", + "James Gleason", + "Lois Hall" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Joe Palooka Meets Humphrey", + "year": 1950, + "cast": [ + "Leon Errol", + "Joe Kirkwood", + "Elyse Knox" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Johnny One-Eye", + "year": 1950, + "cast": [ + "Pat O'Brien", + "Wayne Morris", + "Dolores Moran" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Julius Caesar", + "year": 1950, + "cast": [ + "Harold Tasker", + "Charlton Heston" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Kangaroo Kid", + "year": 1950, + "cast": [ + "Martha Hyer", + "Veda Ann Borg", + "Jock Mahoney" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Kansas Raiders", + "year": 1950, + "cast": [ + "Audie Murphy", + "Brian Donlevy" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Key to the City", + "year": 1950, + "cast": [ + "Clark Gable", + "Loretta Young", + "Frank Morgan", + "Marilyn Maxwell" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "The Kid from Texas", + "year": 1950, + "cast": [ + "Audie Murphy", + "Gale Storm" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Kill or Be Killed", + "year": 1950, + "cast": [ + "Lawrence Tierney", + "George Coulouris", + "Marissa O'Brien" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Kill the Umpire", + "year": 1950, + "cast": [ + "William Bendix", + "William Frawley" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Killer Shark", + "year": 1950, + "cast": [ + "Roddy McDowall", + "Laurette Luez" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Killer That Stalked New York", + "year": 1950, + "cast": [ + "Evelyn Keyes", + "Charles Korvin" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Kim", + "year": 1950, + "cast": [ + "Errol Flynn", + "Dean Stockwell" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "King of the Bullwhip", + "year": 1950, + "cast": [ + "Lash LaRue", + "Jack Holt", + "Anne Gwynne" + ], + "genres": [ + "Western" + ] + }, + { + "title": "King Solomon's Mines", + "year": 1950, + "cast": [ + "Deborah Kerr", + "Stewart Granger" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Kiss Tomorrow Goodbye", + "year": 1950, + "cast": [ + "James Cagney", + "Barbara Payton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Lady Without Passport", + "year": 1950, + "cast": [ + "Hedy Lamarr", + "John Hodiak", + "James Craig" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Last of the Buccaneers", + "year": 1950, + "cast": [ + "Paul Henried", + "Mary Anderson" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Law of the Badlands", + "year": 1950, + "cast": [ + "Tim Holt", + "Joan Dixon" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Law of the Panhandle", + "year": 1950, + "cast": [ + "Johnny Mack Brown", + "Jane Adams" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Lawless", + "year": 1950, + "cast": [ + "Macdonald Carey", + "Gail Russell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Let's Dance", + "year": 1950, + "cast": [ + "Betty Hutton", + "Fred Astaire", + "Roland Young" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "A Life of Her Own", + "year": 1950, + "cast": [ + "Lana Turner", + "Ray Milland" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Lightning Guns", + "year": 1950, + "cast": [ + "Charles Starrett", + "Gloria Henry" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Little Quacker", + "year": 1950, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Lonely Heart Bandits", + "year": 1950, + "cast": [ + "Barbra Fuller", + "Dorothy Patrick" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Lost Volcano", + "year": 1950, + "cast": [ + "Johnny Sheffield", + "Elena Verdugo" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Louisa", + "year": 1950, + "cast": [ + "Ronald Reagan", + "Spring Byington" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Love at First Bite", + "year": 1950, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Comedy", + "Short" + ] + }, + { + "title": "Love Happy", + "year": 1950, + "cast": [ + "Marx Brothers", + "Vera-Ellen", + "Raymond Burr" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Love That Brute", + "year": 1950, + "cast": [ + "Jean Peters", + "Paul Douglas" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Lucky Losers", + "year": 1950, + "cast": [ + "Leo Gorcey", + "Huntz Hall", + "Hillary Brooke" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Ma and Pa Kettle Go to Town", + "year": 1950, + "cast": [ + "Marjorie Main", + "Percy Kilbride" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Magnificent Yankee", + "year": 1950, + "cast": [ + "Louis Calhern", + "Ann Harding" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "The Man Who Cheated Himself", + "year": 1950, + "cast": [ + "Lee J. Cobb", + "Jane Wyatt", + "John Dall" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Mark of the Gorilla", + "year": 1950, + "cast": [ + "Johnny Weissmuller", + "Trudy Marshall", + "Suzanne Dalbert" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Marshal of Heldorado", + "year": 1950, + "cast": [ + "James Ellison", + "Russell Hayden", + "Julie Adams" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Men", + "year": 1950, + "cast": [ + "Marlon Brando", + "Teresa Wright" + ], + "genres": [ + "War" + ] + }, + { + "title": "Military Academy with That Tenth Avenue Gang", + "year": 1950, + "cast": [ + "Stanley Clements", + "Danny Welton", + "Gene Collins" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Milkman", + "year": 1950, + "cast": [ + "Donald O'Connor", + "Jimmy Durante", + "Piper Laurie" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Miniver Story", + "year": 1950, + "cast": [ + "Greer Garson", + "Walter Pidgeon", + "Leo Genn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Missourians", + "year": 1950, + "cast": [ + "Monte Hale", + "Lyn Thomas" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Mister 880", + "year": 1950, + "cast": [ + "Burt Lancaster", + "Dorothy McGuire", + "Edmund Gwenn" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Modern Marriage", + "year": 1950, + "cast": [ + "Reed Hadley", + "Margaret Field" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Montana", + "year": 1950, + "cast": [ + "Errol Flynn", + "Alexis Smith" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Mother Didn't Tell Me", + "year": 1950, + "cast": [ + "Dorothy McGuire", + "June Havoc" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Motor Mania", + "year": 1950, + "cast": [ + "Goofy" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Motor Patrol", + "year": 1950, + "cast": [ + "Don Castle", + "Jane Nigh", + "Reed Hadley" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Mr. Music", + "year": 1950, + "cast": [ + "Bing Crosby", + "Nancy Olson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Mrs. O'Malley and Mr. Malone", + "year": 1950, + "cast": [ + "Marjorie Main", + "James Whitmore", + "Ann Dvorak" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Mudlark", + "year": 1950, + "cast": [ + "Irene Dunne", + "Alec Guinness", + "Beatrice Campbell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mule Train", + "year": 1950, + "cast": [ + "Gene Autry", + "Sheila Ryan" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Mutiny on the Bunny", + "year": 1950, + "cast": [ + "Looney Tunes" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "My Blue Heaven", + "year": 1950, + "cast": [ + "Betty Grable", + "Dan Dailey", + "Jane Wyatt" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "My Friend Irma Goes West", + "year": 1950, + "cast": [ + "Dean Martin", + "Jerry Lewis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mystery Street", + "year": 1950, + "cast": [ + "Ricardo Montalbán", + "Sally Forrest" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Mystery Submarine", + "year": 1950, + "cast": [ + "Macdonald Carey", + "Märta Torén" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Nancy Goes to Rio", + "year": 1950, + "cast": [ + "Ann Sothern", + "Jane Powell" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Nevadan", + "year": 1950, + "cast": [ + "Randolph Scott", + "Dorothy Malone" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Never a Dull Moment", + "year": 1950, + "cast": [ + "Irene Dunne", + "Fred MacMurray" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Next Voice You Hear...", + "year": 1950, + "cast": [ + "James Whitmore", + "Nancy Davis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Night and the City", + "year": 1950, + "cast": [ + "Richard Widmark", + "Gene Tierney", + "Hugh Marlowe", + "Googie Withers" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "No Man of Her Own", + "year": 1950, + "cast": [ + "Barbara Stanwyck", + "John Lund" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "North of the Great Divide", + "year": 1950, + "cast": [ + "Roy Rogers", + "Penny Edwards" + ], + "genres": [ + "Western" + ] + }, + { + "title": "No Sad Songs for Me", + "year": 1950, + "cast": [ + "Margaret Sullavan", + "Wendell Corey" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "No Way Out", + "year": 1950, + "cast": [ + "Richard Widmark", + "Linda Darnell" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Old Frontier", + "year": 1950, + "cast": [ + "Monte Hale", + "Claudia Barrett" + ], + "genres": [ + "Western" + ] + }, + { + "title": "On the Isle of Samoa", + "year": 1950, + "cast": [ + "Jon Hall", + "Susan Cabot" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Once a Thief", + "year": 1950, + "cast": [ + "Cesar Romero", + "June Havoc" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "One Too Many aka Killer with a Label", + "year": 1950, + "cast": [ + "Ruth Warrick" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "One Way Street", + "year": 1950, + "cast": [ + "James Mason", + "Märta Torén" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Operation Haylift", + "year": 1950, + "cast": [ + "Bill Williams", + "Ann Rutherford" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Our Very Own", + "year": 1950, + "cast": [ + "Ann Blyth", + "Farley Granger" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Outcast of Black Mesa", + "year": 1950, + "cast": [ + "Charles Starrett", + "Martha Hyer" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Outlaw Gold", + "year": 1950, + "cast": [ + "Johnny Mack Brown", + "Jane Adams" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Outlaws of Texas", + "year": 1950, + "cast": [ + "Whip Wilson", + "Andy Clyde", + "Phyllis Coates" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Outrage", + "year": 1950, + "cast": [ + "Mala Powers", + "Tod Andrews" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Outriders", + "year": 1950, + "cast": [ + "Joel McCrea", + "Arlene Dahl" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Outside the Wall", + "year": 1950, + "cast": [ + "Richard Basehart", + "Marilyn Maxwell" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Over the Border", + "year": 1950, + "cast": [ + "Johnny Mack Brown", + "Wendy Waldron", + "Myron Healey" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Paid in Full", + "year": 1950, + "cast": [ + "Robert Cummings", + "Lizabeth Scott", + "Diana Lynn", + "Eve Arden" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Pagan Love Song", + "year": 1950, + "cast": [ + "Esther Williams", + "Howard Keel", + "Rita Moreno" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Palomino", + "year": 1950, + "cast": [ + "Jerome Courtland", + "Beverly Tyler" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Panic in the Streets", + "year": 1950, + "cast": [ + "Richard Widmark", + "Paul Douglas" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Peggy", + "year": 1950, + "cast": [ + "Diana Lynn", + "Charles Coburn" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Perfect Strangers", + "year": 1950, + "cast": [ + "Ginger Rogers", + "Dennis Morgan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Petty Girl", + "year": 1950, + "cast": [ + "Robert Cummings", + "Joan Caulfield" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Pirates of the High Seas", + "year": 1950, + "cast": [ + "Buster Crabbe", + "Lois Hall" + ], + "genres": [] + }, + { + "title": "Please Believe Me", + "year": 1950, + "cast": [ + "Deborah Kerr", + "Robert Walker", + "Mark Stevens", + "Peter Lawford" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Pop 'im Pop", + "year": 1950, + "cast": [ + "Looney Tunes" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Prehistoric Women", + "year": 1950, + "cast": [ + "Laurette Luez", + "Allan Nixon" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Pretty Baby", + "year": 1950, + "cast": [ + "Dennis Morgan", + "Betsy Drake" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Prisoners in Petticoats", + "year": 1950, + "cast": [ + "Robert Rockwell", + "Danni Sue Nolan" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Punchy Cowpunchers", + "year": 1950, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Puny Express", + "year": 1950, + "cast": [ + "Woody the Woodpecker" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Pygmy Island", + "year": 1950, + "cast": [ + "Johnny Weissmuller", + "Ann Savage" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Quicksand", + "year": 1950, + "cast": [ + "Mickey Rooney", + "Peter Lorre" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Rabbit of Seville", + "year": 1950, + "cast": [ + "Looney Tunes" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Rabbit's Moon", + "year": 1950, + "cast": [ + "Looney Tunes" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Radar Secret Service", + "year": 1950, + "cast": [ + "John Howard", + "Adele Jergens" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Raiders of Tomahawk Creek", + "year": 1950, + "cast": [ + "Charles Starrett", + "Smiley Burnette" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Redwood Forest Trail", + "year": 1950, + "cast": [ + "Rex Allen", + "Jeff Donnell" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Reformer and the Redhead", + "year": 1950, + "cast": [ + "June Allyson", + "Dick Powell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Return of the Frontiersman", + "year": 1950, + "cast": [ + "Gordon MacRae", + "Julie London" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Return of Jesse James", + "year": 1950, + "cast": [ + "John Ireland", + "Ann Dvorak" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Revenue Agent", + "year": 1950, + "cast": [ + "Lyle Talbot", + "Jean Willes" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Rider from Tucson", + "year": 1950, + "cast": [ + "Tim Holt", + "Veda Ann Borg" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Riding High", + "year": 1950, + "cast": [ + "Bing Crosby", + "Coleen Gray" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Right Cross", + "year": 1950, + "cast": [ + "June Allyson", + "Dick Powell", + "Ricardo Montalbán" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Rio Grande", + "year": 1950, + "cast": [ + "John Wayne", + "Maureen O'Hara" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Rio Grande Patrol", + "year": 1950, + "cast": [ + "Tim Holt", + "Cleo Moore" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Rocketship X-M", + "year": 1950, + "cast": [ + "Lloyd Bridges", + "Osa Massen" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Rock Island Trail", + "year": 1950, + "cast": [ + "Forrest Tucker", + "Adele Mara" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Rocky Mountain", + "year": 1950, + "cast": [ + "Errol Flynn", + "Patrice Wymore" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Rogues of Sherwood Forest", + "year": 1950, + "cast": [ + "John Derek", + "Diana Lynn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Rookie Fireman", + "year": 1950, + "cast": [ + "Bill Williams", + "Barton MacLane", + "Marjorie Reynolds" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Rustlers on Horseback", + "year": 1950, + "cast": [ + "Allan Lane", + "George Nader" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Saddle Tramp", + "year": 1950, + "cast": [ + "Joel McCrea", + "Wanda Hendrix", + "John Russell" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Safety Second", + "year": 1950, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Salt Lake Raiders", + "year": 1950, + "cast": [ + "Allan Lane", + "Martha Hyer" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Sarumba", + "year": 1950, + "cast": [ + "Michael Whalen", + "Doris Dowling" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Saturday Evening Puss", + "year": 1950, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "The Savage Horde", + "year": 1950, + "cast": [ + "Lorna Gray", + "Grant Withers" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Scarlet Pumpernickel", + "year": 1950, + "cast": [ + "Looney Tunes" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Second Chance", + "year": 1950, + "cast": [ + "Ruth Warrick", + "Hugh Beaumont" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Second Face", + "year": 1950, + "cast": [ + "Ella Raines", + "Rita Johnson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Second Woman", + "year": 1950, + "cast": [ + "Robert Young", + "Betsy Drake" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Secret Fury", + "year": 1950, + "cast": [ + "Claudette Colbert", + "Robert Ryan" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Self-Made Maids", + "year": 1950, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "September Affair", + "year": 1950, + "cast": [ + "Joan Fontaine", + "Joseph Cotten", + "Françoise Rosay" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Shadow on the Wall", + "year": 1950, + "cast": [ + "Ann Sothern", + "Zachary Scott", + "Gigi Perreau", + "Nancy Davis" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Shakedown", + "year": 1950, + "cast": [ + "Howard Duff", + "Brian Donlevy", + "Peggy Dow", + "Lawrence Tierney", + "Anne Vernon" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Short Grass", + "year": 1950, + "cast": [ + "Rod Cameron", + "Cathy Downs" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Showdown", + "year": 1950, + "cast": [ + "Walter Brennan", + "Marie Windsor" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Side Street", + "year": 1950, + "cast": [ + "Farley Granger", + "Cathy O'Donnell" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Sideshow", + "year": 1950, + "cast": [ + "Don McGuire", + "Tracey Roberts" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Sierra Passage", + "year": 1950, + "cast": [ + "Wayne Morris", + "Lola Albright" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Sierra", + "year": 1950, + "cast": [ + "Audie Murphy", + "Wanda Hendrix" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Silver Raiders", + "year": 1950, + "cast": [ + "Whip Wilson", + "Andy Clyde" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Singing Guns", + "year": 1950, + "cast": [ + "Ella Raines", + "Vaughn Monroe" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Six Gun Mesa", + "year": 1950, + "cast": [ + "Johnny Mack Brown", + "Gail Davis" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Skipper Surprised His Wife", + "year": 1950, + "cast": [ + "Robert Walker", + "Joan Leslie" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Slaphappy Sleuths", + "year": 1950, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Sleeping City", + "year": 1950, + "cast": [ + "Richard Conte", + "Coleen Gray" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "A Snitch in Time", + "year": 1950, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Snow Dog", + "year": 1950, + "cast": [ + "Kirby Grant", + "Elena Verdugo" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "So Young, So Bad", + "year": 1950, + "cast": [ + "Paul Henreid", + "Catherine McLeod" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Sound of Fury", + "year": 1950, + "cast": [ + "Frank Lovejoy", + "Kathleen Ryan" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "South Sea Sinner", + "year": 1950, + "cast": [ + "Shelley Winters", + "Macdonald Carey" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Southside 1-1000", + "year": 1950, + "cast": [ + "Don DeFore", + "Andrea King" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Spy Hunt", + "year": 1950, + "cast": [ + "Howard Duff", + "Märta Torén" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Square Dance Katy", + "year": 1950, + "cast": [ + "Barbara Jo Allen", + "Jimmie Davis" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Stage to Tucson", + "year": 1950, + "cast": [ + "Rod Cameron", + "Wayne Morris", + "Sally Eilers" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Stairs", + "year": 1950, + "cast": [], + "genres": [ + "Short" + ] + }, + { + "title": "Stars In My Crown", + "year": 1950, + "cast": [ + "Joel McCrea", + "Ellen Drew" + ], + "genres": [ + "Western" + ] + }, + { + "title": "State Penitentiary", + "year": 1950, + "cast": [ + "Warner Baxter", + "Onslow Stevens", + "Karin Booth" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Stella", + "year": 1950, + "cast": [ + "Ann Sheridan", + "Victor Mature" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Storm over Wyoming", + "year": 1950, + "cast": [ + "Tim Holt", + "Noreen Nash" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Streets of Ghost Town", + "year": 1950, + "cast": [ + "Charles Starrett", + "Mary Ellen Kay" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Strife with Father", + "year": 1950, + "cast": [ + "Merrie Melodies" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Studio Stoops", + "year": 1950, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Sugar Chile Robinson", + "year": 1950, + "cast": [ + "Billie Holiday", + "Frank Robinson" + ], + "genres": [ + "Short" + ] + }, + { + "title": "Summer Stock", + "year": 1950, + "cast": [ + "Judy Garland", + "Gene Kelly" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Sunset Boulevard", + "year": 1950, + "cast": [ + "William Holden", + "Gloria Swanson", + "Nancy Olson", + "Erich von Stroheim", + "Jack Webb" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Sunset in the West", + "year": 1950, + "cast": [ + "Roy Rogers", + "Estelita Rodriguez" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Sun Sets at Dawn", + "year": 1950, + "cast": [ + "Walter Reed" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Sundowners", + "year": 1950, + "cast": [ + "Robert Preston", + "Cathy Downs" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Surrender", + "year": 1950, + "cast": [ + "Vera Ralston", + "John Carroll" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Swiss Tour", + "year": 1950, + "cast": [ + "Cornel Wilde", + "Josette Day", + "Simone Signoret" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Tarnished", + "year": 1950, + "cast": [ + "Dorothy Patrick", + "Jimmy Lydon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Tarzan and the Slave Girl", + "year": 1950, + "cast": [ + "Lex Barker", + "Vanessa Brown", + "Denise Darcel" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Tattooed Stranger", + "year": 1950, + "cast": [ + "Patricia Barry", + "John Miles" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Tea for Two", + "year": 1950, + "cast": [ + "Doris Day", + "Gordon MacRae" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Tension", + "year": 1950, + "cast": [ + "Richard Basehart", + "Audrey Totter", + "Barry Sullivan", + "Cyd Charisse" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Texan Meets Calamity Jane", + "year": 1950, + "cast": [ + "Evelyn Ankers", + "James Ellison" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Texas Dynamo", + "year": 1950, + "cast": [ + "Charles Starrett", + "Lois Hall" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Texas Tom", + "year": 1950, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "This Side of the Law", + "year": 1950, + "cast": [ + "Viveca Lindfors", + "Janis Paige", + "Robert Douglas" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Three Came Home", + "year": 1950, + "cast": [ + "Claudette Colbert", + "Patric Knowles" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Three Hams on Rye", + "year": 1950, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Three Little Words", + "year": 1950, + "cast": [ + "Fred Astaire", + "Red Skelton", + "Vera-Ellen" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Three Secrets", + "year": 1950, + "cast": [ + "Eleanor Parker", + "Patricia Neal", + "Ruth Roman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Ticket to Tomahawk", + "year": 1950, + "cast": [ + "Dan Dailey", + "Anne Baxter", + "Rory Calhoun" + ], + "genres": [ + "Western", + "Comedy" + ] + }, + { + "title": "Timber Fury", + "year": 1950, + "cast": [ + "David Bruce", + "Laura Lee" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Titan: Story of Michelangelo", + "year": 1950, + "cast": [ + "Fredric March" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "To Please a Lady", + "year": 1950, + "cast": [ + "Clark Gable", + "Barbara Stanwyck", + "Adolphe Menjou" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Toast of New Orleans", + "year": 1950, + "cast": [ + "Kathryn Grayson", + "Mario Lanza" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Tom and Jerry in the Hollywood Bowl", + "year": 1950, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "The Torch", + "year": 1950, + "cast": [ + "Paulette Goddard", + "Pedro Armendáriz", + "Gilbert Roland" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Tougher They Come", + "year": 1950, + "cast": [ + "Wayne Morris", + "Preston Foster" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Trail of Robin Hood", + "year": 1950, + "cast": [ + "Roy Rogers", + "Penny Edwards" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Trail of the Rustlers", + "year": 1950, + "cast": [ + "Charles Starrett", + "Gail Davis" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Train to Tombstone", + "year": 1950, + "cast": [ + "Don \"Red\" Barry", + "Judith Allen" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Traveling Saleswoman", + "year": 1950, + "cast": [ + "Joan Davis", + "Andy Devine", + "Adele Jergens" + ], + "genres": [ + "Western", + "Comedy" + ] + }, + { + "title": "Treasure Island", + "year": 1950, + "cast": [ + "Bobby Driscoll", + "Robert Newton" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Trial Without Jury", + "year": 1950, + "cast": [ + "Robert Rockwell", + "Audrey Long" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Trigger, Jr.", + "year": 1950, + "cast": [ + "Roy Rogers", + "Dale Evans" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Triple Crossed", + "year": 1950, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Triple Trouble", + "year": 1950, + "cast": [ + "Leo Gorcey", + "Huntz Hall" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Tripoli", + "year": 1950, + "cast": [ + "Maureen O'Hara", + "John Payne" + ], + "genres": [ + "War" + ] + }, + { + "title": "Twilight in the Sierras", + "year": 1950, + "cast": [ + "Roy Rogers", + "Dale Evans" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Two Flags West", + "year": 1950, + "cast": [ + "Joseph Cotten", + "Linda Darnell" + ], + "genres": [ + "War" + ] + }, + { + "title": "Two Weeks with Love", + "year": 1950, + "cast": [ + "Jane Powell", + "Ricardo Montalbán" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Tyrant of the Sea", + "year": 1950, + "cast": [ + "Ron Randell", + "Rhys Williams" + ], + "genres": [ + "Historical" + ] + }, + { + "title": "Under Mexicali Stars", + "year": 1950, + "cast": [ + "Rex Allen", + "Buddy Ebsen" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Under My Skin", + "year": 1950, + "cast": [ + "John Garfield", + "Micheline Presle" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Undercover Girl", + "year": 1950, + "cast": [ + "Alexis Smith", + "Scott Brady", + "Richard Egan" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Underworld Story", + "year": 1950, + "cast": [ + "Dan Duryea", + "Herbert Marshall", + "Gale Storm" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Union Station", + "year": 1950, + "cast": [ + "William Holden", + "Barry Fitzgerald", + "Nancy Olson" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Unmasked", + "year": 1950, + "cast": [ + "Robert Rockwell", + "Barbra Fuller" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Vanishing Westerner", + "year": 1950, + "cast": [ + "Monte Hale", + "Aline Towne" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Vendetta", + "year": 1950, + "cast": [ + "Faith Domergue", + "George Dolenz" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Vigilante Hideout", + "year": 1950, + "cast": [ + "Allan Lane", + "Eddy Waller" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Wabash Avenue", + "year": 1950, + "cast": [ + "Betty Grable", + "Victor Mature", + "Phil Harris" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Wagon Master", + "year": 1950, + "cast": [ + "Ben Johnson", + "Harry Carey Jr." + ], + "genres": [ + "Western" + ] + }, + { + "title": "Walk Softly, Stranger", + "year": 1950, + "cast": [ + "Joseph Cotten", + "Alida Valli", + "Spring Byington" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Watch the Birdie", + "year": 1950, + "cast": [ + "Red Skelton", + "Arlene Dahl", + "Ann Miller" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "West of the Brazos", + "year": 1950, + "cast": [ + "James Ellison", + "Russell Hayden", + "Julie Adams" + ], + "genres": [ + "Western" + ] + }, + { + "title": "West of Wyoming", + "year": 1950, + "cast": [ + "Johnny Mack Brown", + "Gail Davis" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The West Point Story", + "year": 1950, + "cast": [ + "James Cagney", + "Virginia Mayo", + "Doris Day", + "Gordon MacRae" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Western Pacific Agent", + "year": 1950, + "cast": [ + "Kent Taylor", + "Sheila Ryan" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "What's Up, Doc?", + "year": 1950, + "cast": [ + "Looney Tunes" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "When Willie Comes Marching Home", + "year": 1950, + "cast": [ + "Dan Dailey", + "Corinne Calvet" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "When You're Smiling", + "year": 1950, + "cast": [ + "Frankie Laine", + "Lola Albright" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Where Danger Lives", + "year": 1950, + "cast": [ + "Robert Mitchum", + "Faith Domergue" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Where the Sidewalk Ends", + "year": 1950, + "cast": [ + "Dana Andrews", + "Gene Tierney", + "Gary Merrill" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The White Tower", + "year": 1950, + "cast": [ + "Glenn Ford", + "Alida Valli" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Why Korea?", + "year": 1950, + "cast": [ + "Joe King (narrator)" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Wild Heart", + "year": 1950, + "cast": [ + "Jennifer Jones", + "David Farrar" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Winchester '73", + "year": 1950, + "cast": [ + "James Stewart", + "Dan Duryea", + "Shelley Winters", + "Stephen McNally", + "Will Geer" + ], + "genres": [ + "Western" + ] + }, + { + "title": "With These Hands", + "year": 1950, + "cast": [ + "Sam Levene" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Wizard of Oz (TV special)", + "year": 1950, + "cast": [], + "genres": [ + "Short" + ] + }, + { + "title": "A Woman of Distinction", + "year": 1950, + "cast": [ + "Rosalind Russell", + "Ray Milland", + "Edmund Gwenn" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Woman in Hiding", + "year": 1950, + "cast": [ + "Ida Lupino", + "Stephen McNally", + "Howard Duff" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Woman on the Run", + "year": 1950, + "cast": [ + "Ann Sheridan", + "Dennis O'Keefe" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Women from Headquarters", + "year": 1950, + "cast": [ + "Virginia Huston", + "Barbra Fuller" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Wyoming Mail", + "year": 1950, + "cast": [ + "Stephen McNally", + "Alexis Smith" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Yellow Cab Man", + "year": 1950, + "cast": [ + "Red Skelton", + "Gloria DeHaven" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Young Daniel Boone", + "year": 1950, + "cast": [ + "David Bruce", + "Kristine Miller" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Young Man with a Horn", + "year": 1950, + "cast": [ + "Lauren Bacall", + "Doris Day", + "Kirk Douglas" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The 13th Letter", + "year": 1951, + "cast": [ + "Linda Darnell", + "Charles Boyer", + "Constance Smith" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Abbott and Costello Meet the Invisible Man", + "year": 1951, + "cast": [ + "Bud Abbott", + "Lou Costello" + ], + "genres": [ + "Comedy", + "Horror" + ] + }, + { + "title": "Abilene Trail", + "year": 1951, + "cast": [ + "Whip Wilson", + "Noel Neill" + ], + "genres": [ + "Western" + ] + }, + { + "title": "According to Mrs. Hoyle", + "year": 1951, + "cast": [ + "Spring Byington", + "Anthony Caruso" + ], + "genres": [ + "Comedy", + "Crime" + ] + }, + { + "title": "Ace in the Hole", + "year": 1951, + "cast": [ + "Kirk Douglas", + "Jan Sterling" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Across the Wide Missouri", + "year": 1951, + "cast": [ + "Clark Gable", + "Ricardo Montalban", + "Adolphe Menjou", + "María Elena Marqués" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Adventures of Captain Fabian", + "year": 1951, + "cast": [ + "Errol Flynn", + "Micheline Presle" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The African Queen", + "year": 1951, + "cast": [ + "Humphrey Bogart", + "Katharine Hepburn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Air Cadet", + "year": 1951, + "cast": [ + "Gail Russell", + "Stephen McNally" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Al Jennings of Oklahoma", + "year": 1951, + "cast": [ + "Dan Duryea", + "Gale Storm" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Alice in Wonderland", + "year": 1951, + "cast": [ + "Kathryn Beaumont" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Along the Great Divide", + "year": 1951, + "cast": [ + "Kirk Douglas", + "Virginia Mayo", + "Walter Brennan" + ], + "genres": [ + "Western" + ] + }, + { + "title": "An American in Paris", + "year": 1951, + "cast": [ + "Leslie Caron", + "Gene Kelly" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Angels in the Outfield", + "year": 1951, + "cast": [ + "Paul Douglas", + "Janet Leigh" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Anne of the Indies", + "year": 1951, + "cast": [ + "Louis Jourdan", + "Jean Peters" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Another Man's Poison", + "year": 1951, + "cast": [ + "Bette Davis", + "Gary Merrill" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Apache Drums", + "year": 1951, + "cast": [ + "Stephen McNally", + "Coleen Gray" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Appointment with Danger", + "year": 1951, + "cast": [ + "Alan Ladd", + "Phyllis Calvert" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Arizona Manhunt", + "year": 1951, + "cast": [ + "Michael Chapin", + "Eilene Janssen" + ], + "genres": [ + "Western" + ] + }, + { + "title": "As Young as You Feel", + "year": 1951, + "cast": [ + "Constance Bennett", + "Monty Woolley" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "As You Were", + "year": 1951, + "cast": [ + "Joe Sawyer", + "Sondra Rodgers" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Baby Sitters Jitters", + "year": 1951, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Badman's Gold", + "year": 1951, + "cast": [ + "Johnny Carpenter", + "Kenne Duncan" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Ballot Box Bunny", + "year": 1951, + "cast": [ + "Looney Tunes" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Bannerline", + "year": 1951, + "cast": [ + "Sally Forrest", + "Lionel Barrymore" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Barefoot Mailman", + "year": 1951, + "cast": [ + "Robert Cummings", + "Terry Moore" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Basketball Fix", + "year": 1951, + "cast": [ + "John Ireland", + "Marshall Thompson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Bear For Punishment", + "year": 1951, + "cast": [ + "Looney Tunes" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Bedtime for Bonzo", + "year": 1951, + "cast": [ + "Ronald Reagan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Behave Yourself!", + "year": 1951, + "cast": [ + "Farley Granger", + "Shelley Winters" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Belle Le Grand", + "year": 1951, + "cast": [ + "Vera Ralston", + "John Carroll" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Best of the Badmen", + "year": 1951, + "cast": [ + "Robert Ryan", + "Robert Preston" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Best is Yet to Come", + "year": 1951, + "cast": [], + "genres": [] + }, + { + "title": "The Big Gusher", + "year": 1951, + "cast": [ + "Wayne Morris", + "Preston Foster", + "Dorothy Patrick" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Big Lie", + "year": 1951, + "cast": [], + "genres": [ + "War" + ] + }, + { + "title": "The Big Night", + "year": 1951, + "cast": [ + "John Drew Barrymore", + "Dorothy Comingore" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Big Top Bunny", + "year": 1951, + "cast": [ + "Looney Tunes" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Bird of Paradise", + "year": 1951, + "cast": [ + "Debra Paget", + "Louis Jourdan", + "Jeff Chandler" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Blazing Bullets", + "year": 1951, + "cast": [ + "Johnny Mack Brown", + "Lois Hall" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Blue Blood", + "year": 1951, + "cast": [ + "Bill Williams", + "Jane Nigh", + "Arthur Shields", + "Audrey Long" + ], + "genres": [ + "Sports" + ] + }, + { + "title": "The Blue Veil", + "year": 1951, + "cast": [ + "Jane Wyman", + "Charles Laughton", + "Joan Blondell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Bonanza Town", + "year": 1951, + "cast": [ + "Charles Starrett", + "Myron Healey" + ], + "genres": [ + "Western" + ] + }, + { + "title": "A Bone for a Bone", + "year": 1951, + "cast": [ + "Looney Tunes" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Bowery Battalion", + "year": 1951, + "cast": [ + "Leo Gorcey", + "Huntz Hall" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Brave Bulls", + "year": 1951, + "cast": [ + "Mel Ferrer", + "Anthony Quinn", + "Miroslava" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Bride of the Gorilla", + "year": 1951, + "cast": [ + "Raymond Burr", + "Lon Chaney Jr.", + "Barbara Payton" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Bright Victory", + "year": 1951, + "cast": [ + "Arthur Kennedy", + "Peggy Dow", + "Julia Adams" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Buckaroo Sheriff of Texas", + "year": 1951, + "cast": [ + "Michael Chapin", + "Eilene Janssen" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Bullfighter and the Lady", + "year": 1951, + "cast": [ + "Robert Stack", + "Joy Page", + "Gilbert Roland" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Bunny Hugged", + "year": 1951, + "cast": [ + "Looney Tunes" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Callaway Went Thataway", + "year": 1951, + "cast": [ + "Fred MacMurray", + "Dorothy McGuire" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Call Me Mister", + "year": 1951, + "cast": [ + "Betty Grable", + "Dan Dailey" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Canyon Raiders", + "year": 1951, + "cast": [ + "Whip Wilson", + "Phyllis Coates" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Captain Horatio Hornblower R.N.", + "year": 1951, + "cast": [ + "Gregory Peck", + "Virginia Mayo" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Captain Video: Master of the Stratosphere", + "year": 1951, + "cast": [ + "Judd Holdren" + ], + "genres": [] + }, + { + "title": "Casa Manana", + "year": 1951, + "cast": [ + "Virginia Welles", + "Robert Clarke" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Casanova Cat", + "year": 1951, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Cat Napping", + "year": 1951, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Cattle Drive", + "year": 1951, + "cast": [ + "Joel McCrea", + "Dean Stockwell" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Cattle Queen", + "year": 1951, + "cast": [ + "Maria Hart", + "Drake Smith" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Cause for Alarm!", + "year": 1951, + "cast": [ + "Loretta Young", + "Bruce Cowling" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Cavalry Scout", + "year": 1951, + "cast": [ + "Rod Cameron", + "Audrey Long" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Cave of Outlaws", + "year": 1951, + "cast": [ + "Macdonald Carey", + "Alexis Smith" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Chain of Circumstance", + "year": 1951, + "cast": [ + "Margaret Field", + "Connie Gilchrist" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Chained for Life", + "year": 1951, + "cast": [ + "Hilton Twins" + ], + "genres": [] + }, + { + "title": "Cheese Chasers", + "year": 1951, + "cast": [ + "Looney Tunes" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Chicago Calling", + "year": 1951, + "cast": [ + "Dan Duryea", + "Mary Anderson" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "China Corsair", + "year": 1951, + "cast": [ + "Jon Hall", + "Ernest Borgnine" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Chow Hound", + "year": 1951, + "cast": [ + "Looney Tunes" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Close to My Heart", + "year": 1951, + "cast": [ + "Gene Tierney", + "Ray Milland" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Colorado Ambush", + "year": 1951, + "cast": [ + "Johnny Mack Brown", + "Lois Hall" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Come Fill the Cup", + "year": 1951, + "cast": [ + "James Cagney", + "Gig Young" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Comin' Round the Mountain", + "year": 1951, + "cast": [ + "Abbott and Costello", + "Dorothy Shay" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Company She Keeps", + "year": 1951, + "cast": [ + "Lizabeth Scott", + "Jane Greer", + "Dennis O'Keefe" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Corky of Gasoline Alley", + "year": 1951, + "cast": [ + "Scotty Beckett", + "Jimmy Lydon", + "Susan Morrow" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Crazy Over Horses", + "year": 1951, + "cast": [ + "Bowery Boys", + "Gloria Saunders" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Criminal Lawyer", + "year": 1951, + "cast": [ + "Pat O'Brien", + "Jane Wyatt", + "Mary Castle" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Crosswinds", + "year": 1951, + "cast": [ + "Rhonda Fleming", + "John Payne" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Cruise Cat", + "year": 1951, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Cry Danger", + "year": 1951, + "cast": [ + "Dick Powell", + "Rhonda Fleming", + "William Conrad" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Cuban Fireball", + "year": 1951, + "cast": [ + "Estelita Rodriguez", + "Warren Douglas" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Cyclone Fury", + "year": 1951, + "cast": [ + "Charles Starrett", + "Clayton Moore" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Dakota Kid", + "year": 1951, + "cast": [ + "Michael Chapin", + "Eilene Janssen" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Danger Zone", + "year": 1951, + "cast": [ + "Hugh Beaumont", + "Edward Brophy", + "Pamela Blake" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Darling, How Could You!", + "year": 1951, + "cast": [ + "Joan Fontaine", + "John Lund", + "Mona Freeman" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "David and Bathsheba", + "year": 1951, + "cast": [ + "Gregory Peck", + ".", + "Susan Hayward" + ], + "genres": [ + "Historical" + ] + }, + { + "title": "Day of the Fight", + "year": 1951, + "cast": [ + "Walter Cartier" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Day the Earth Stood Still", + "year": 1951, + "cast": [ + "Michael Rennie", + "Patricia Neal" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Dear Brat", + "year": 1951, + "cast": [ + "Mona Freeman", + "Billy De Wolfe" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Death of a Salesman", + "year": 1951, + "cast": [ + "Fredric March", + "Mildred Dunnock" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Decision Before Dawn", + "year": 1951, + "cast": [ + "Richard Basehart", + "Gary Merrill", + "Hildegard Knef" + ], + "genres": [ + "War" + ] + }, + { + "title": "The Desert Fox", + "year": 1951, + "cast": [ + "James Mason", + "Cedric Hardwicke" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Desert of Lost Men", + "year": 1951, + "cast": [ + "Allan Lane", + "Mary Ellen Kay" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Destination Meatball", + "year": 1951, + "cast": [ + "Woody Woodpecker" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Detective Story", + "year": 1951, + "cast": [ + "Kirk Douglas", + "William Bendix", + "Eleanor Parker", + "Joseph Wiseman", + "Lee Grant" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Dick Turpin's Ride", + "year": 1951, + "cast": [ + "Louis Hayward", + "Patricia Medina" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Disc Jockey", + "year": 1951, + "cast": [ + "Ginny Simms", + "Tom Drake", + "Jane Nigh" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Distant Drums", + "year": 1951, + "cast": [ + "Gary Cooper", + "Richard Webb", + "Mari Aldon" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Don Daredevil Rides Again", + "year": 1951, + "cast": [ + "Ken Curtis", + "Aline Towne" + ], + "genres": [] + }, + { + "title": "Don't Throw That Knife", + "year": 1951, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Double Crossbones", + "year": 1951, + "cast": [ + "Donald O'Connor", + "Helena Carter" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Double Dynamite", + "year": 1951, + "cast": [ + "Frank Sinatra", + "Jane Russell", + "Groucho Marx" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Drip-Along Daffy", + "year": 1951, + "cast": [ + "Looney Tunes" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Drums in the Deep South", + "year": 1951, + "cast": [ + "James Craig", + "Guy Madison" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Duck and Cover", + "year": 1951, + "cast": [], + "genres": [] + }, + { + "title": "Elephant Stampede", + "year": 1951, + "cast": [ + "Johnny Sheffield", + "Donna Martell" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Elopement", + "year": 1951, + "cast": [ + "Clifton Webb", + "William Lundigan", + "Anne Francis", + "Charles Bickford" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Enforcer", + "year": 1951, + "cast": [ + "Humphrey Bogart", + "Zero Mostel" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Excuse My Dust", + "year": 1951, + "cast": [ + "Red Skelton", + "Sally Forrest" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "FBI Girl", + "year": 1951, + "cast": [ + "Cesar Romero", + "George Brent", + "Audrey Totter", + "Raymond Burr" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Family Secret", + "year": 1951, + "cast": [ + "John Derek", + "Lee J. Cobb" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Father's Little Dividend", + "year": 1951, + "cast": [ + "Spencer Tracy", + "Joan Bennett", + "Elizabeth Taylor" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Father Takes the Air", + "year": 1951, + "cast": [ + "Raymond Walburn", + "Walter Catlett" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Fat Man", + "year": 1951, + "cast": [ + "Julie London", + "Rock Hudson" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Fighting Coast Guard", + "year": 1951, + "cast": [ + "Forrest Tucker", + "Ella Raines" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Fighting Seventh", + "year": 1951, + "cast": [ + "Lloyd Bridges", + "John Ireland" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Fingerprints Don't Lie", + "year": 1951, + "cast": [ + "Richard Travis", + "Sheila Ryan", + "Margia Dean" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The First Legion", + "year": 1951, + "cast": [ + "Charles Boyer", + "Barbara Rush" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Five", + "year": 1951, + "cast": [ + "Susan Douglas Rubeš", + "William Phipps" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Fixed Bayonets!", + "year": 1951, + "cast": [ + "Richard Basehart", + "Gene Evans" + ], + "genres": [ + "War" + ] + }, + { + "title": "Flame of Araby", + "year": 1951, + "cast": [ + "Maureen O'Hara", + "Jeff Chandler" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Flame of Stamboul", + "year": 1951, + "cast": [ + "Richard Denning", + "Lisa Ferraday" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Flight to Mars", + "year": 1951, + "cast": [ + "Marguerite Chapman", + "Cameron Mitchell", + "Virginia Huston" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Flying Cat", + "year": 1951, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Flying Leathernecks", + "year": 1951, + "cast": [ + "John Wayne", + "Robert Ryan" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Flying Padre", + "year": 1951, + "cast": [ + "Fred Stadmueller" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Follow the Sun", + "year": 1951, + "cast": [ + "Anne Baxter", + "Glenn Ford" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Footlight Varieties", + "year": 1951, + "cast": [ + "Jack Paar", + "Leon Errol" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Force of Arms", + "year": 1951, + "cast": [ + "William Holden", + "Nancy Olson", + "Frank Lovejoy" + ], + "genres": [ + "War" + ] + }, + { + "title": "Fort Defiance", + "year": 1951, + "cast": [ + "Dane Clark", + "Ben Johnson", + "Peter Graves" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Fort Dodge Stampede", + "year": 1951, + "cast": [ + "Allan Lane", + "Mary Ellen Kay" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Fort Savage Raiders", + "year": 1951, + "cast": [ + "Charles Starrett", + "Smiley Burnette" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Fort Worth", + "year": 1951, + "cast": [ + "Randolph Scott", + "David Brian" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Fourteen Hours", + "year": 1951, + "cast": [ + "Paul Douglas", + "Richard Basehart" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Francis Goes to the Races", + "year": 1951, + "cast": [ + "Donald O'Connor", + "Piper Laurie" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "French Rarebit", + "year": 1951, + "cast": [ + "Looney Tunes" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "The Frogmen", + "year": 1951, + "cast": [ + "Richard Widmark", + "Dana Andrews" + ], + "genres": [ + "War" + ] + }, + { + "title": "Fury of the Congo", + "year": 1951, + "cast": [ + "Johnny Weissmuller", + "Lyle Talbot" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Gambling House", + "year": 1951, + "cast": [ + "Victor Mature", + "Terry Moore" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Gasoline Alley", + "year": 1951, + "cast": [ + "Scotty Beckett", + "Jimmy Lydon", + "Susan Morrow" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Gene Autry and the Mounties", + "year": 1951, + "cast": [ + "Gene Autry", + "Elena Verdugo" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Gerald McBoing-Boing", + "year": 1951, + "cast": [ + "Marvin Miller" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Ghost Chasers", + "year": 1951, + "cast": [ + "Leo Gorcey", + "Huntz Hall" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "G.I. Jane", + "year": 1951, + "cast": [ + "Jean Porter", + "Tom Neal", + "Iris Adrian" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Girl on the Bridge", + "year": 1951, + "cast": [ + "Hugo Haas", + "Beverly Michaels" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Go for Broke!", + "year": 1951, + "cast": [ + "Van Johnson", + "Lane Nakano" + ], + "genres": [ + "War" + ] + }, + { + "title": "Gold Raiders", + "year": 1951, + "cast": [ + "George O'Brien", + "Sheila Ryan" + ], + "genres": [ + "Western", + "Comedy" + ] + }, + { + "title": "Golden Girl", + "year": 1951, + "cast": [ + "Mitzi Gaynor", + "Dale Robertson", + "Una Merkel" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Golden Horde", + "year": 1951, + "cast": [ + "Ann Blyth", + "David Farrar" + ], + "genres": [ + "Historical" + ] + }, + { + "title": "Goodbye, My Fancy", + "year": 1951, + "cast": [ + "Joan Crawford", + "Robert Young" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Government Agents vs Phantom Legion", + "year": 1951, + "cast": [ + "Walter Reed", + "Mary Ellen Kay" + ], + "genres": [] + }, + { + "title": "The Great Caruso", + "year": 1951, + "cast": [ + "Mario Lanza", + "Ann Blyth" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "The Great Missouri Raid", + "year": 1951, + "cast": [ + "Macdonald Carey", + "Ellen Drew" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Groom Wore Spurs", + "year": 1951, + "cast": [ + "Ginger Rogers", + "Jack Carson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Grounds for Marriage", + "year": 1951, + "cast": [ + "Van Johnson", + "Kathryn Grayson" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Gunplay", + "year": 1951, + "cast": [ + "Tim Holt", + "Joan Dixon" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Guy Who Came Back", + "year": 1951, + "cast": [ + "Paul Douglas", + "Joan Bennett", + "Linda Darnell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Half Angel", + "year": 1951, + "cast": [ + "Loretta Young", + "Joseph Cotten" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Halls of Montezuma", + "year": 1951, + "cast": [ + "Richard Widmark", + "Jack Palance", + "Robert Wagner", + "Richard Boone" + ], + "genres": [ + "War" + ] + }, + { + "title": "Hard, Fast and Beautiful", + "year": 1951, + "cast": [ + "Claire Trevor", + "Sally Forrest" + ], + "genres": [ + "Sports", + "Drama" + ] + }, + { + "title": "The Harlem Globetrotters", + "year": 1951, + "cast": [ + "Thomas Gomez", + "Dorothy Dandridge" + ], + "genres": [ + "Sports" + ] + }, + { + "title": "Havana Rose", + "year": 1951, + "cast": [ + "Estelita Rodriguez", + "Bill Williams" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "He Ran All the Way", + "year": 1951, + "cast": [ + "John Garfield", + "Shelley Winters" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Heart of the Rockies", + "year": 1951, + "cast": [ + "Roy Rogers", + "Penny Edwards" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Her First Romance", + "year": 1951, + "cast": [ + "Margaret O'Brien", + "Ann Doran" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Here Comes the Groom", + "year": 1951, + "cast": [ + "Bing Crosby", + "Jane Wyman" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Highwayman", + "year": 1951, + "cast": [ + "Philip Friend", + "Wanda Hendrix" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Hills of Utah", + "year": 1951, + "cast": [ + "Gene Autry", + "Elaine Riley", + "Donna Martell" + ], + "genres": [ + "Western" + ] + }, + { + "title": "His Kind of Woman", + "year": 1951, + "cast": [ + "Robert Mitchum", + "Jane Russell", + "Vincent Price", + "Raymond Burr" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "His Mouse Friday", + "year": 1951, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Hollywood Story", + "year": 1951, + "cast": [ + "Julie Adams", + "Richard Conte" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Home Town Story", + "year": 1951, + "cast": [ + "Jeffrey Lynn", + "Marjorie Reynolds" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Honeychile", + "year": 1951, + "cast": [ + "Judy Canova", + "Eddie Foy Jr." + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hong Kong", + "year": 1951, + "cast": [ + "Ronald Reagan", + "Rhonda Fleming" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Hoodlum", + "year": 1951, + "cast": [ + "Lawrence Tierney", + "Allene Roberts" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Hot Lead", + "year": 1951, + "cast": [ + "Tim Holt", + "Joan Dixon" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The House on Telegraph Hill", + "year": 1951, + "cast": [ + "Richard Basehart", + "Valentina Cortese" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Hula-La-La", + "year": 1951, + "cast": [ + "Three Stooges" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hunt the Man Down", + "year": 1951, + "cast": [ + "Gig Young", + "Cleo Moore" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hurricane Island", + "year": 1951, + "cast": [ + "Jon Hall", + "Marie Windsor" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "I Can Get It for You Wholesale", + "year": 1951, + "cast": [ + "Susan Hayward", + "Dan Dailey" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "I'd Climb the Highest Mountain", + "year": 1951, + "cast": [ + "William Lundigan", + "Susan Hayward" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "I Want You", + "year": 1951, + "cast": [ + "Dana Andrews", + "Dorothy McGuire" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "I Was an American Spy", + "year": 1951, + "cast": [ + "Ann Dvorak" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "I Was a Communist for the FBI", + "year": 1951, + "cast": [ + "Frank Lovejoy", + "Dorothy Hart" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "I'll Get You for This", + "year": 1951, + "cast": [ + "George Raft", + "Coleen Gray" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "I'll Never Forget You", + "year": 1951, + "cast": [ + "Tyrone Power", + "Ann Blyth" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "I'll See You in My Dreams", + "year": 1951, + "cast": [ + "Doris Day", + "Danny Thomas" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "In Old Amarillo", + "year": 1951, + "cast": [ + "Roy Rogers", + "Estelita Rodriguez" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Inside Straight", + "year": 1951, + "cast": [ + "Mercedes McCambridge", + "Arlene Dahl" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Inside the Walls of Folsom Prison", + "year": 1951, + "cast": [ + "Steve Cochran", + "David Brian" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Insurance Investigator", + "year": 1951, + "cast": [ + "Richard Denning", + "Audrey Long" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "Iron Man", + "year": 1951, + "cast": [ + "Jeff Chandler", + "Evelyn Keyes" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "It's a Big Country", + "year": 1951, + "cast": [ + "Gary Cooper", + "Gene Kelly", + "Fredric March", + "Ethel Barrymore", + "Janet Leigh", + "Nancy Davis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Jerry and Jumbo", + "year": 1951, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Jerry and the Goldfish", + "year": 1951, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Jim Thorpe – All-American", + "year": 1951, + "cast": [ + "Burt Lancaster", + "Charles Bickford", + "Phyllis Thaxter" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Joe Palooka in Triple Cross", + "year": 1951, + "cast": [ + "Joe Kirkwood", + "Cathy Downs", + "James Gleason" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Journey into Light", + "year": 1951, + "cast": [ + "Sterling Hayden", + "Viveca Lindfors" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Jungle Manhunt", + "year": 1951, + "cast": [ + "Johnny Weissmuller", + "Sheila Ryan" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Just Ducky", + "year": 1951, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Katie Did It", + "year": 1951, + "cast": [ + "Ann Blyth", + "Mark Stevens" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Kentucky Jubilee", + "year": 1951, + "cast": [ + "Jerry Colonna", + "Jean Porter", + "James Ellison" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Kid from Amarillo", + "year": 1951, + "cast": [ + "Charles Starrett", + "Smiley Burnette" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Kind Lady", + "year": 1951, + "cast": [ + "Ethel Barrymore", + "Maurice Evans", + "Keenan Wynn", + "Angela Lansbury" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Korea Patrol", + "year": 1951, + "cast": [ + "Richard Emory", + "Benson Fong" + ], + "genres": [ + "War" + ] + }, + { + "title": "The Lady from Boston", + "year": 1951, + "cast": [ + "Paul Henreid", + "Merle Oberon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Lady from Texas", + "year": 1951, + "cast": [ + "Howard Duff", + "Mona Freeman" + ], + "genres": [ + "Comedy", + "Western" + ] + }, + { + "title": "The Lady Pays Off", + "year": 1951, + "cast": [ + "Linda Darnell", + "Stephen McNally", + "Gigi Perreau" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Lambert the Sheepish Lion", + "year": 1951, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "Law of the Badlands", + "year": 1951, + "cast": [ + "Tim Holt", + "Joan Dixon" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Law and the Lady", + "year": 1951, + "cast": [ + "Greer Garson", + "Michael Wilding" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Lawless Cowboys", + "year": 1951, + "cast": [ + "Whip Wilson", + "Fuzzy Knight", + "Pamela Duncan" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Last Outpost", + "year": 1951, + "cast": [ + "Ronald Reagan", + "Rhonda Fleming" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Leave It to the Marines", + "year": 1951, + "cast": [ + "Sid Melton", + "Margia Dean" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Lemon Drop Kid", + "year": 1951, + "cast": [ + "Bob Hope", + "Marilyn Maxwell", + "William Frawley" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Let's Go Navy!", + "year": 1951, + "cast": [ + "Leo Gorcey", + "Huntz Hall", + "Allen Jenkins" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Let's Make It Legal", + "year": 1951, + "cast": [ + "Claudette Colbert", + "Macdonald Carey", + "Zachary Scott", + "Marilyn Monroe" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Light Touch", + "year": 1951, + "cast": [ + "Stewart Granger", + "Pier Angeli", + "George Sanders" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Lightning Strikes Twice", + "year": 1951, + "cast": [ + "Ruth Roman", + "Richard Todd" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Lion Hunters", + "year": 1951, + "cast": [ + "Johnny Sheffield", + "Douglas Kennedy" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Little Big Horn", + "year": 1951, + "cast": [ + "Lloyd Bridges", + "Marie Windsor", + "John Ireland" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Little Egypt", + "year": 1951, + "cast": [ + "Rhonda Fleming", + "Mark Stevens" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "The Longhorn", + "year": 1951, + "cast": [ + "Bill Elliott", + "Myron Healey", + "Phyllis Coates" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Lorna Doone", + "year": 1951, + "cast": [ + "Barbara Hale", + "Richard Greene" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Lost Continent", + "year": 1951, + "cast": [ + "Cesar Romero", + "Hillary Brooke" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Love Nest", + "year": 1951, + "cast": [ + "June Haver", + "William Lundigan", + "Marilyn Monroe" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Lullaby of Broadway", + "year": 1951, + "cast": [ + "Doris Day", + "Gene Nelson" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "M", + "year": 1951, + "cast": [ + "David Wayne", + "Howard Da Silva" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Ma and Pa Kettle Back on the Farm", + "year": 1951, + "cast": [ + "Marjorie Main", + "Percy Kilbride" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Magic Carpet", + "year": 1951, + "cast": [ + "Lucille Ball", + "John Agar" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Magic Face", + "year": 1951, + "cast": [ + "Luther Adler", + "Patricia Knight" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "The Magnificent Yankee", + "year": 1951, + "cast": [ + "Louis Calhern", + "Ann Harding" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "The Man from Planet X", + "year": 1951, + "cast": [ + "Robert Clarke", + "Margaret Field" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Man from Sonora", + "year": 1951, + "cast": [ + "Johnny Mack Brown", + "Phyllis Coates", + "Lyle Talbot" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Man in the Saddle", + "year": 1951, + "cast": [ + "Randolph Scott", + "Joan Leslie", + "Ellen Drew" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Man with My Face", + "year": 1951, + "cast": [ + "Barry Nelson", + "Carole Mathews" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Man with a Cloak", + "year": 1951, + "cast": [ + "Joseph Cotten", + "Barbara Stanwyck", + "Louis Calhern", + "Leslie Caron" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Mark of the Renegade", + "year": 1951, + "cast": [ + "Ricardo Montalban", + "Cyd Charisse", + "Gilbert Roland" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Mask of the Avenger", + "year": 1951, + "cast": [ + "John Derek", + "Anthony Quinn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Mask of the Dragon", + "year": 1951, + "cast": [ + "Richard Travis", + "Sheila Ryan", + "Lyle Talbot" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Mating Season", + "year": 1951, + "cast": [ + "Gene Tierney", + "John Lund" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Meet Me After the Show", + "year": 1951, + "cast": [ + "Betty Grable", + "Rory Calhoun" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Merry Mavericks", + "year": 1951, + "cast": [ + "Three Stooges" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Million Dollar Pursuit", + "year": 1951, + "cast": [ + "Penny Edwards", + "Grant Withers" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "A Millionaire for Christy", + "year": 1951, + "cast": [ + "Eleanor Parker", + "Fred MacMurray" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Missing Women", + "year": 1951, + "cast": [ + "Penny Edwards", + "John Alvin" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Mob", + "year": 1951, + "cast": [ + "Broderick Crawford", + "Betty Buehler" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Model and the Marriage Broker", + "year": 1951, + "cast": [ + "Jeanne Crain", + "Scott Brady", + "Thelma Ritter" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Montana Desperado", + "year": 1951, + "cast": [ + "Johnny Mack Brown", + "Myron Healey" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Mr. Belvedere Rings the Bell", + "year": 1951, + "cast": [ + "Clifton Webb", + "Joanne Dru", + "Zero Mostel" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mr. Imperium", + "year": 1951, + "cast": [ + "Lana Turner", + "Ezio Pinza", + "Marjorie Main" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Mr. Universe", + "year": 1951, + "cast": [ + "Jack Carson", + "Janis Paige" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "My Favorite Spy", + "year": 1951, + "cast": [ + "Bob Hope", + "Hedy Lamarr", + "Francis L. Sullivan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "My Forbidden Past", + "year": 1951, + "cast": [ + "Ava Gardner", + "Robert Mitchum" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "My Outlaw Brother", + "year": 1951, + "cast": [ + "Mickey Rooney", + "Wanda Hendrix" + ], + "genres": [ + "Western" + ] + }, + { + "title": "My True Story", + "year": 1951, + "cast": [ + "Helen Walker", + "Willard Parker" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Mysterious Island", + "year": 1951, + "cast": [ + "Richard Crane", + "Marshall Reed" + ], + "genres": [] + }, + { + "title": "Navy Bound", + "year": 1951, + "cast": [ + "Tom Neal", + "Regis Toomey" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Nevada Badmen", + "year": 1951, + "cast": [ + "Whip Wilson", + "Phyllis Coates" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Never Trust a Gambler", + "year": 1951, + "cast": [ + "Dane Clark", + "Cathy O'Donnell" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "New Mexico", + "year": 1951, + "cast": [ + "Lew Ayres", + "Marilyn Maxwell", + "Andy Devine" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Night into Morning", + "year": 1951, + "cast": [ + "Ray Milland", + "Nancy Davis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Night Riders of Montana", + "year": 1951, + "cast": [ + "Allan Lane", + "Claudia Barrett" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Nit-Witty Kitty", + "year": 1951, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "No Questions Asked", + "year": 1951, + "cast": [ + "Arlene Dahl", + "Barry Sullivan", + "Jean Hagen" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "No Smoking", + "year": 1951, + "cast": [ + "Goofy" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Northwest Territory", + "year": 1951, + "cast": [ + "Kirby Grant", + "Gloria Saunders" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Oh! Susanna", + "year": 1951, + "cast": [ + "Lorna Gray", + "Rod Cameron" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Oklahoma Justice", + "year": 1951, + "cast": [ + "Johnny Mack Brown", + "Phyllis Coates" + ], + "genres": [ + "Western" + ] + }, + { + "title": "On Dangerous Ground", + "year": 1951, + "cast": [ + "Ida Lupino", + "Robert Ryan", + "Ward Bond" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "On the Loose", + "year": 1951, + "cast": [ + "Joan Evans", + "Melvyn Douglas" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "On Moonlight Bay", + "year": 1951, + "cast": [ + "Doris Day", + "Gordon MacRae" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "On the Riviera", + "year": 1951, + "cast": [ + "Danny Kaye", + "Gene Tierney" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Only the Valiant", + "year": 1951, + "cast": [ + "Gregory Peck", + "Barbara Payton", + "Ward Bond" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Operation Pacific", + "year": 1951, + "cast": [ + "John Wayne", + "Patricia Neal" + ], + "genres": [ + "War" + ] + }, + { + "title": "Overland Telegraph", + "year": 1951, + "cast": [ + "Tim Holt", + "Gail Davis" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Painted Hills", + "year": 1951, + "cast": [ + "Bruce Cowling", + "Ann Doran" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Painting the Clouds with Sunshine", + "year": 1951, + "cast": [ + "Dennis Morgan", + "Virginia Mayo", + "Gene Nelson" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Pals of the Golden West", + "year": 1951, + "cast": [ + "Roy Rogers", + "Dale Evans" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Pandora and the Flying Dutchman", + "year": 1951, + "cast": [ + "Ava Gardner", + "James Mason" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Passage West", + "year": 1951, + "cast": [ + "John Payne", + "Arleen Whelan" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Payment on Demand", + "year": 1951, + "cast": [ + "Bette Davis", + "Barry Sullivan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Pecos River", + "year": 1951, + "cast": [ + "Charles Starrett", + "Jock Mahoney" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Peking Express", + "year": 1951, + "cast": [ + "Joseph Cotten", + "Corinne Calvet" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The People Against O'Hara", + "year": 1951, + "cast": [ + "Spencer Tracy", + "Pat O'Brien", + "Diana Lynn", + "John Hodiak", + "James Arness" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "People Will Talk", + "year": 1951, + "cast": [ + "Cary Grant", + "Jeanne Crain", + "Sidney Blackmer", + "Hume Cronyn", + "Walter Slezak", + "Finlay Currie" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Pest Man Wins", + "year": 1951, + "cast": [ + "Three Stooges" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Pickup", + "year": 1951, + "cast": [ + "Hugo Haas", + "Beverly Michaels" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Pier 23", + "year": 1951, + "cast": [ + "Hugh Beaumont", + "Ann Savage", + "Margia Dean" + ], + "genres": [ + "Crime", + "Comedy" + ] + }, + { + "title": "Pistol Harvest", + "year": 1951, + "cast": [ + "Tim Holt", + "Joan Dixon" + ], + "genres": [ + "Western" + ] + }, + { + "title": "A Place in the Sun", + "year": 1951, + "cast": [ + "Elizabeth Taylor", + "Montgomery Clift", + "Shelley Winters", + "Raymond Burr", + "Anne Revere" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Prairie Roundup", + "year": 1951, + "cast": [ + "Charles Starrett", + "Mary Castle" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Pride of Maryland", + "year": 1951, + "cast": [ + "Peggy Stewart", + "Stanley Clements" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Prince Who Was a Thief", + "year": 1951, + "cast": [ + "Tony Curtis", + "Piper Laurie" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Prize Pest", + "year": 1951, + "cast": [ + "Looney Tunes" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "The Prowler", + "year": 1951, + "cast": [ + "Van Heflin", + "Evelyn Keyes" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Purple Heart Diary", + "year": 1951, + "cast": [ + "Frances Langford", + "Judd Holdren" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Quebec", + "year": 1951, + "cast": [ + "John Drew Barrymore", + "Corinne Calvet" + ], + "genres": [ + "Historical", + "Drama" + ] + }, + { + "title": "Quo Vadis", + "year": 1951, + "cast": [ + "Robert Taylor", + "Deborah Kerr", + "Peter Ustinov", + "Finlay Currie", + "Leo Genn" + ], + "genres": [ + "Historical" + ] + }, + { + "title": "Queen for a Day", + "year": 1951, + "cast": [ + "Jack Bailey", + "Phyllis Avery" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Rabbit Fire", + "year": 1951, + "cast": [ + "Looney Tunes" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "The Racket", + "year": 1951, + "cast": [ + "Robert Mitchum", + "Robert Ryan", + "Lizabeth Scott", + "William Talman", + "Joyce MacKenzie" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Raging Tide", + "year": 1951, + "cast": [ + "Shelley Winters", + "Richard Conte" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Raton Pass", + "year": 1951, + "cast": [ + "Patricia Neal", + "Dennis Morgan" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Rawhide", + "year": 1951, + "cast": [ + "Tyrone Power", + "Susan Hayward" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Red Badge of Courage", + "year": 1951, + "cast": [ + "Audie Murphy", + "Bill Mauldin" + ], + "genres": [ + "War" + ] + }, + { + "title": "The Redhead and the Cowboy", + "year": 1951, + "cast": [ + "Rhonda Fleming", + "Glenn Ford" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Red Mountain", + "year": 1951, + "cast": [ + "Alan Ladd", + "Lizabeth Scott", + "Arthur Kennedy" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Reunion in Reno", + "year": 1951, + "cast": [ + "Peggy Dow", + "Gigi Perreau" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Rhubarb", + "year": 1951, + "cast": [ + "Ray Milland", + "Jan Sterling", + "Gene Lockhart" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Rhythm Inn", + "year": 1951, + "cast": [ + "Jane Frazee", + "Kirby Grant", + "Lois Collier" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Rich, Young and Pretty", + "year": 1951, + "cast": [ + "Jane Powell", + "Wendell Corey", + "Vic Damone", + "Danielle Darrieux" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Ridin' the Outlaw Trail", + "year": 1951, + "cast": [ + "Charles Starrett", + "Jim Bannon" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The River", + "year": 1951, + "cast": [ + "Nora Swinburne", + "Esmond Knight" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Roadblock", + "year": 1951, + "cast": [ + "Charles McGraw", + "Joan Dixon" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Roaring City", + "year": 1951, + "cast": [ + "Hugh Beaumont", + "Wanda McKay" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Rodeo King and the Senorita", + "year": 1951, + "cast": [ + "Rex Allen", + "Buddy Ebsen" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Rogue River", + "year": 1951, + "cast": [ + "Rory Calhoun", + "Peter Graves", + "Frank Fenton" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Rough Riders of Durango", + "year": 1951, + "cast": [ + "Allan Lane", + "Aline Towne" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Royal Wedding", + "year": 1951, + "cast": [ + "Fred Astaire", + "Jane Powell", + "Peter Lawford" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Saddle Legion", + "year": 1951, + "cast": [ + "Tim Holt", + "Dorothy Malone" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Santa Fe", + "year": 1951, + "cast": [ + "Randolph Scott", + "Janis Carter" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Saturday's Hero", + "year": 1951, + "cast": [ + "John Derek", + "Donna Reed", + "Sidney Blackmer" + ], + "genres": [ + "Sports", + "Drama" + ] + }, + { + "title": "Savage Drums", + "year": 1951, + "cast": [ + "Sabu", + "Lita Baron", + "H. B. Warner" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Scarf", + "year": 1951, + "cast": [ + "Mercedes McCambridge", + "John Ireland" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Scrambled Brains", + "year": 1951, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Sea Hornet", + "year": 1951, + "cast": [ + "Rod Cameron", + "Adele Mara" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Sealed Cargo", + "year": 1951, + "cast": [ + "Dana Andrews", + "Carla Balenda" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "The Secret of Convict Lake", + "year": 1951, + "cast": [ + "Glenn Ford", + "Gene Tierney" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Secrets of Monte Carlo", + "year": 1951, + "cast": [ + "Warren Douglas", + "Lois Hall" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Show Boat", + "year": 1951, + "cast": [ + "Howard Keel", + "Kathryn Grayson", + "Ava Gardner", + "Gower Champion", + "Marge Champion", + "Joe E. Brown" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Silver Canyon", + "year": 1951, + "cast": [ + "Gene Autry", + "Gail Davis" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Silver City", + "year": 1951, + "cast": [ + "Edmond O'Brien", + "Yvonne De Carlo" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Silver City Bonanza", + "year": 1951, + "cast": [ + "Rex Allen", + "Buddy Ebsen", + "Mary Ellen Kay" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Sirocco", + "year": 1951, + "cast": [ + "Humphrey Bogart", + "Märta Torén", + "Lee J. Cobb" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Skipalong Rosenbloom", + "year": 1951, + "cast": [ + "Max Rosenbloom", + "Max Baer" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Sky High", + "year": 1951, + "cast": [ + "Sid Melton", + "Margia Dean" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Slaughter Trail", + "year": 1951, + "cast": [ + "Gig Young", + "Brian Donlevy" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Sleepy-Time Tom", + "year": 1951, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Slicked-up Pup", + "year": 1951, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Smuggler's Gold", + "year": 1951, + "cast": [ + "Cameron Mitchell", + "Amanda Blake" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Smuggler's Island", + "year": 1951, + "cast": [ + "Jeff Chandler", + "Evelyn Keyes" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Snake River Desperadoes", + "year": 1951, + "cast": [ + "Charles Starrett", + "Monte Blue" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Soldiers Three", + "year": 1951, + "cast": [ + "Stewart Granger", + "Walter Pidgeon", + "David Niven", + "Robert Newton", + "Greta Gynt" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Son of Dr. Jekyll", + "year": 1951, + "cast": [ + "Louis Hayward", + "Jody Lawrance" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "South of Caliente", + "year": 1951, + "cast": [ + "Roy Rogers", + "Dale Evans" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Spoilers of the Plains", + "year": 1951, + "cast": [ + "Roy Rogers", + "Penny Edwards" + ], + "genres": [ + "Western" + ] + }, + { + "title": "St. Benny the Dip", + "year": 1951, + "cast": [ + "Dick Haymes", + "Nina Foch", + "Roland Young" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Stage to Blue River", + "year": 1951, + "cast": [ + "Whip Wilson", + "Fuzzy Knight", + "Phyllis Coates" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Stagecoach Driver", + "year": 1951, + "cast": [ + "Whip Wilson", + "Fuzzy Knight" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Starlift", + "year": 1951, + "cast": [ + "Janice Rule", + "Dick Wesson", + "Ruth Roman" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Steel Helmet", + "year": 1951, + "cast": [ + "Gene Evans", + "Steve Brodie" + ], + "genres": [ + "War" + ] + }, + { + "title": "Stop That Cab", + "year": 1951, + "cast": [ + "Sid Melton", + "Iris Adrian", + "Marjorie Lord" + ], + "genres": [ + "Comedy", + "Crime" + ] + }, + { + "title": "Storm Warning", + "year": 1951, + "cast": [ + "Ronald Reagan", + "Doris Day", + "Ginger Rogers" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Strange Door", + "year": 1951, + "cast": [ + "Charles Laughton", + "Boris Karloff", + "Sally Forrest" + ], + "genres": [ + "Historical", + "Drama" + ] + }, + { + "title": "Strangers on a Train", + "year": 1951, + "cast": [ + "Farley Granger", + "Ruth Roman", + "Robert Walker" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "A Streetcar Named Desire", + "year": 1951, + "cast": [ + "Vivien Leigh", + "Marlon Brando", + "Karl Malden", + "Kim Hunter" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Street Bandits", + "year": 1951, + "cast": [ + "Penny Edwards", + "Robert Clarke" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Strictly Dishonorable", + "year": 1951, + "cast": [ + "Ezio Pinza", + "Janet Leigh" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "The Strip", + "year": 1951, + "cast": [ + "Mickey Rooney", + "Sally Forrest" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Stronghold", + "year": 1951, + "cast": [ + "Veronica Lake", + "Zachary Scott" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Submarine Command", + "year": 1951, + "cast": [ + "William Holden", + "Nancy Olson" + ], + "genres": [ + "War" + ] + }, + { + "title": "Sugarfoot", + "year": 1951, + "cast": [ + "Randolph Scott", + "Adele Jergens", + "Raymond Massey" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Sunny Side of the Street", + "year": 1951, + "cast": [ + "Frankie Laine", + "Audrey Long" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Superman and the Mole Men", + "year": 1951, + "cast": [ + "George Reeves", + "Phyllis Coates" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Sword of Monte Cristo", + "year": 1951, + "cast": [ + "George Montgomery", + "Rita Corday" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Take Care of My Little Girl", + "year": 1951, + "cast": [ + "Jeanne Crain", + "Dale Robertson", + "Mitzi Gaynor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Tales of Robin Hood", + "year": 1951, + "cast": [ + "Robert Clarke", + "Mary Hatcher", + "Paul Cavanagh" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Tall Target", + "year": 1951, + "cast": [ + "Dick Powell", + "Paula Raymond", + "Adolphe Menjou" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Tanks are Coming", + "year": 1951, + "cast": [ + "Steve Cochran", + "Philip Carey", + "Mari Aldon" + ], + "genres": [ + "War" + ] + }, + { + "title": "Target Unknown", + "year": 1951, + "cast": [ + "Mark Stevens", + "Alex Nicol", + "Gig Young" + ], + "genres": [ + "War" + ] + }, + { + "title": "The Tartars", + "year": 1951, + "cast": [ + "Orson Welles", + "Victor Mature" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Tarzan's Peril", + "year": 1951, + "cast": [ + "Lex Barker", + "Virginia Huston" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Ten Tall Men", + "year": 1951, + "cast": [ + "Burt Lancaster", + "Gilbert Roland" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Teresa", + "year": 1951, + "cast": [ + "Pier Angeli", + "John Ericson", + "Peggy Ann Garner" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Texans Never Cry", + "year": 1951, + "cast": [ + "Gene Autry", + "Mary Castle" + ], + "genres": [] + }, + { + "title": "Texas Carnival", + "year": 1951, + "cast": [ + "Esther Williams", + "Red Skelton", + "Howard Keel", + "Ann Miller" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Texas Lawmen", + "year": 1951, + "cast": [ + "Johnny Mack Brown", + "James Ellison" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Texas Rangers", + "year": 1951, + "cast": [ + "George Montgomery", + "Gale Storm" + ], + "genres": [ + "Western" + ] + }, + { + "title": "That's My Boy", + "year": 1951, + "cast": [ + "Dean Martin", + "Jerry Lewis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Thing from Another World", + "year": 1951, + "cast": [ + "Kenneth Tobey", + "Margaret Sheridan", + "Dewey Martin", + "James Arness" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Three Arabian Nuts", + "year": 1951, + "cast": [ + "Three Stooges" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Three Desperate Men", + "year": 1951, + "cast": [ + "Preston Foster", + "Jim Davis", + "Virginia Grey" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Three Guys Named Mike", + "year": 1951, + "cast": [ + "Jane Wyman", + "Van Johnson", + "Howard Keel" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Three Husbands", + "year": 1951, + "cast": [ + "Eve Arden", + "Ruth Warrick" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Three Steps North", + "year": 1951, + "cast": [ + "Lloyd Bridges", + "Lea Padovani" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Thunder in God's Country", + "year": 1951, + "cast": [ + "Rex Allen", + "Mary Ellen Kay" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Thunder on the Hill", + "year": 1951, + "cast": [ + "Claudette Colbert", + "Ann Blyth", + "Anne Crawford" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Thundering Trail", + "year": 1951, + "cast": [ + "Lash La Rue", + "Al St. John" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Tokyo File 212", + "year": 1951, + "cast": [ + "Florence Marly", + "Lee Frederick" + ], + "genres": [] + }, + { + "title": "Tomahawk", + "year": 1951, + "cast": [ + "Van Heflin", + "Yvonne De Carlo", + "Preston Foster" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Tomorrow Is Another Day", + "year": 1951, + "cast": [ + "Ruth Roman", + "Steve Cochran" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Tooth Will Out", + "year": 1951, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Too Young to Kiss", + "year": 1951, + "cast": [ + "June Allyson", + "Van Johnson", + "Gig Young" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Two-Dollar Bettor", + "year": 1951, + "cast": [ + "Steve Brodie", + "Marie Windsor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Two Gals and a Guy", + "year": 1951, + "cast": [ + "Janis Paige", + "Robert Alda" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Two Lost Worlds", + "year": 1951, + "cast": [ + "James Arness", + "Bill Kennedy" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Two of a Kind", + "year": 1951, + "cast": [ + "Edmond O'Brien", + "Lizabeth Scott" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Two Tickets to Broadway", + "year": 1951, + "cast": [ + "Tony Martin", + "Janet Leigh", + "Eddie Bracken" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Unknown Man", + "year": 1951, + "cast": [ + "Walter Pidgeon", + "Ann Harding" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Unknown World", + "year": 1951, + "cast": [ + "Marilyn Nash", + "Victor Kilian" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Up Front", + "year": 1951, + "cast": [ + "David Wayne", + "Tom Ewell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Utah Wagon Train", + "year": 1951, + "cast": [ + "Rex Allen", + "Penny Edwards" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Valentino", + "year": 1951, + "cast": [ + "Eleanor Parker", + "Anthony Dexter" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Valley of Fire", + "year": 1951, + "cast": [ + "Gene Autry", + "Gail Davis" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Vanishing Outpost", + "year": 1951, + "cast": [ + "Lash La Rue", + "Al St. John" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Varieties on Parade", + "year": 1951, + "cast": [ + "Jackie Coogan", + "Tom Neal" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Vengeance Valley", + "year": 1951, + "cast": [ + "Burt Lancaster", + "Robert Walker" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Dead or Alive", + "year": 1951, + "cast": [ + "Whip Wilson", + "Christine McIntyre" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Warpath", + "year": 1951, + "cast": [ + "Edmond O'Brien", + "Dean Jagger", + "Forrest Tucker", + "Polly Bergen" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Wearing of the Grin", + "year": 1951, + "cast": [ + "Porky Pig" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Week-End with Father", + "year": 1951, + "cast": [ + "Patricia Neal", + "Van Heflin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Well", + "year": 1951, + "cast": [ + "Richard Rober", + "Harry Morgan", + "Maidie Norman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Wells Fargo Gunmaster", + "year": 1951, + "cast": [ + "Allan Lane", + "Mary Ellen Kay" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Westward the Women", + "year": 1951, + "cast": [ + "Robert Taylor", + "Denise Darcel", + "John McIntire" + ], + "genres": [ + "Western" + ] + }, + { + "title": "When I Grow Up", + "year": 1951, + "cast": [ + "Robert Preston", + "Martha Scott" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "When the Redskins Rode", + "year": 1951, + "cast": [ + "Jon Hall", + "Mary Castle" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "When Worlds Collide", + "year": 1951, + "cast": [ + "Richard Derr", + "Barbara Rush" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Whip Hand", + "year": 1951, + "cast": [ + "Carla Balenda", + "Elliott Reid" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Whirlwind", + "year": 1951, + "cast": [ + "Gene Autry", + "Gail Davis" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Whistle at Eaton Falls", + "year": 1951, + "cast": [ + "Lloyd Bridges", + "Dorothy Gish" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Whistling Hills", + "year": 1951, + "cast": [ + "Johnny Mack Brown", + "Noel Neill" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Wild Blue Yonder", + "year": 1951, + "cast": [ + "Wendell Corey", + "Vera Ralston", + "Forrest Tucker" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "A Yank in Korea", + "year": 1951, + "cast": [ + "Lon McCallister", + "Brett King" + ], + "genres": [ + "War" + ] + }, + { + "title": "Yellow Fin", + "year": 1951, + "cast": [ + "Wayne Morris", + "Lorna Gray", + "Gloria Henry" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "You Never Can Tell", + "year": 1951, + "cast": [ + "Dick Powell", + "Peggy Dow" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "You're in the Navy Now", + "year": 1951, + "cast": [ + "Gary Cooper", + "Jane Greer" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Yukon Manhunt", + "year": 1951, + "cast": [ + "Kirby Grant", + "Margaret Field" + ], + "genres": [ + "Western" + ] + }, + { + "title": "5 Fingers", + "year": 1952, + "cast": [ + "James Mason", + "Danielle Darrieux", + "Walter Hampden", + "Herbert Berghof", + "Michael Rennie" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "24 Hours of a Woman's Life", + "year": 1952, + "cast": [ + "Merle Oberon", + "Richard Todd" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Aaron Slick from Punkin Crick", + "year": 1952, + "cast": [ + "Alan Young", + "Dinah Shore", + "Adele Jergens", + "Robert Merrill" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Abbott and Costello Meet Captain Kidd", + "year": 1952, + "cast": [ + "Abbott and Costello", + "Charles Laughton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "About Face", + "year": 1952, + "cast": [ + "Gordon MacRae", + "Virginia Gibson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Above and Beyond", + "year": 1952, + "cast": [ + "Robert Taylor", + "Eleanor Parker" + ], + "genres": [ + "War" + ] + }, + { + "title": "Actors and Sin", + "year": 1952, + "cast": [ + "Edward G. Robinson", + "Eddie Albert" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Affair in Trinidad", + "year": 1952, + "cast": [ + "Rita Hayworth", + "Glenn Ford" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "African Treasure", + "year": 1952, + "cast": [ + "Johnny Sheffield", + "Laurette Luez", + "Lyle Talbot" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Against All Flags", + "year": 1952, + "cast": [ + "Errol Flynn", + "Maureen O'Hara" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Aladdin and His Lamp", + "year": 1952, + "cast": [ + "Johnny Sands", + "Patricia Medina" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Androcles and the Lion", + "year": 1952, + "cast": [ + "Jean Simmons", + "Victor Mature", + "Alan Young" + ], + "genres": [ + "Historical" + ] + }, + { + "title": "Angel Face", + "year": 1952, + "cast": [ + "Robert Mitchum", + "Jean Simmons" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Anything Can Happen", + "year": 1952, + "cast": [ + "José Ferrer", + "Kim Hunter" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Apache Country", + "year": 1952, + "cast": [ + "Gene Autry", + "Carolina Cotton" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Apache War Smoke", + "year": 1952, + "cast": [ + "Gilbert Roland", + "Glenda Farrell" + ], + "genres": [ + "Western" + ] + }, + { + "title": "April in Paris", + "year": 1952, + "cast": [ + "Ray Bolger", + "Doris Day" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Arctic Flight", + "year": 1952, + "cast": [ + "Wayne Morris", + "Lola Albright" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Army Bound", + "year": 1952, + "cast": [ + "Stanley Clements", + "Karen Sharpe" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Assignment – Paris!", + "year": 1952, + "cast": [ + "Dana Andrews", + "Märta Torén", + "George Sanders" + ], + "genres": [ + "Spy", + "Drama" + ] + }, + { + "title": "At Sword's Point", + "year": 1952, + "cast": [ + "Cornel Wilde", + "Maureen O'Hara", + "Gladys Cooper" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Atomic City", + "year": 1952, + "cast": [ + "Gene Barry", + "Lydia Clarke" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Babes in Bagdad", + "year": 1952, + "cast": [ + "Paulette Goddard", + "Gypsy Rose Lee" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Back at the Front", + "year": 1952, + "cast": [ + "Tom Ewell", + "Harvey Lembeck" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Bad and the Beautiful", + "year": 1952, + "cast": [ + "Lana Turner", + "Kirk Douglas", + "Walter Pidgeon", + "Dick Powell", + "Barry Sullivan", + "Gloria Grahame" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Bal Tabarin", + "year": 1952, + "cast": [ + "Claire Carleton", + "Muriel Lawrence", + "Steve Brodie" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Barbed Wire", + "year": 1952, + "cast": [ + "Gene Autry", + "Leonard Penn" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Battle at Apache Pass", + "year": 1952, + "cast": [ + "John Lund", + "Jeff Chandler" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Battles of Chief Pontiac", + "year": 1952, + "cast": [ + "Lex Barker", + "Helen Westcott" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Battle Zone", + "year": 1952, + "cast": [ + "John Hodiak", + "Linda Christian" + ], + "genres": [ + "War" + ] + }, + { + "title": "Because of You", + "year": 1952, + "cast": [ + "Loretta Young", + "Jeff Chandler", + "Frances Dee" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Because You're Mine", + "year": 1952, + "cast": [ + "Mario Lanza", + "Doretta Morrow" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Bela Lugosi Meets a Brooklyn Gorilla", + "year": 1952, + "cast": [ + "Bela Lugosi", + "Duke Mitchell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Belle of New York", + "year": 1952, + "cast": [ + "Fred Astaire", + "Vera-Ellen" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Belles on Their Toes", + "year": 1952, + "cast": [ + "Jeanne Crain", + "Myrna Loy", + "Debra Paget" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Bend of the River", + "year": 1952, + "cast": [ + "James Stewart", + "Rock Hudson", + "Arthur Kennedy" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Beware, My Lovely", + "year": 1952, + "cast": [ + "Ida Lupino", + "Robert Ryan" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Big Jim McLain", + "year": 1952, + "cast": [ + "John Wayne", + "James Arness" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Big Sky", + "year": 1952, + "cast": [ + "Kirk Douglas", + "Elizabeth Threatt" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Big Trees", + "year": 1952, + "cast": [ + "Kirk Douglas", + "Eve Miller", + "Patrice Wymore" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Black Castle", + "year": 1952, + "cast": [ + "Richard Greene", + "Boris Karloff", + "Stephen McNally" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Blackbeard the Pirate", + "year": 1952, + "cast": [ + "Robert Newton", + "Linda Darnell" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Black Hills Ambush", + "year": 1952, + "cast": [ + "Allan Lane", + "Leslie Banning" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Black Lash", + "year": 1952, + "cast": [ + "Lash LaRue", + "Peggy Stewart" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Blazing Forest", + "year": 1952, + "cast": [ + "John Payne", + "Agnes Moorehead" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Bloodhounds of Broadway", + "year": 1952, + "cast": [ + "Mitzi Gaynor", + "Scott Brady" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Blue Canadian Rockies", + "year": 1952, + "cast": [ + "Gene Autry", + "Gail Davis" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Bomba and the Jungle Girl", + "year": 1952, + "cast": [ + "Johnny Sheffield", + "Karen Sharpe" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Bonzo Goes to College", + "year": 1952, + "cast": [ + "Maureen O'Sullivan", + "Edmund Gwenn" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Boots Malone", + "year": 1952, + "cast": [ + "William Holden", + "Stanley Clements" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Border Saddlemates", + "year": 1952, + "cast": [ + "Rex Allen", + "Mary Ellen Kay" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Botany Bay", + "year": 1952, + "cast": [ + "Alan Ladd", + "James Mason" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Brave Warrior", + "year": 1952, + "cast": [ + "Jon Hall", + "Christine Larsen", + "Michael Ansara", + "Jay Silverheels" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Breakdown", + "year": 1952, + "cast": [ + "Ann Richards", + "William Bishop" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Brigand", + "year": 1952, + "cast": [ + "Anthony Dexter", + "Jody Lawrence" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Bronco Buster", + "year": 1952, + "cast": [ + "John Lund", + "Scott Brady" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Buffalo Bill in Tomahawk Territory", + "year": 1952, + "cast": [ + "Clayton Moore", + "Charles Harvey" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Bugles in the Afternoon", + "year": 1952, + "cast": [ + "Ray Milland", + "Helena Carter" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Bushwackers", + "year": 1952, + "cast": [ + "John Ireland", + "Lawrence Tierney", + "Dorothy Malone" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Bwana Devil", + "year": 1952, + "cast": [ + "Robert Stack", + "Nigel Bruce", + "Barbara Britton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "California Conquest", + "year": 1952, + "cast": [ + "Cornel Wilde", + "Teresa Wright" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Canyon Ambush", + "year": 1952, + "cast": [ + "Johnny Mack Brown", + "Phyllis Coates" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Captain Pirate", + "year": 1952, + "cast": [ + "Patricia Medina", + "Louis Hayward" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Captive City", + "year": 1952, + "cast": [ + "John Forsythe", + "Joan Camden" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Captive of Billy the Kid", + "year": 1952, + "cast": [ + "Allan Lane", + "Grant Withers", + "Penny Edwards" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Captive Women", + "year": 1952, + "cast": [ + "Ron Randell", + "Margaret Field" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Carbine Williams", + "year": 1952, + "cast": [ + "James Stewart", + "Jean Hagen", + "Wendell Corey" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Caribbean Gold", + "year": 1952, + "cast": [ + "Arlene Dahl", + "John Payne" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Carrie", + "year": 1952, + "cast": [ + "Jennifer Jones", + "Laurence Olivier", + "Miriam Hopkins" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Carson City", + "year": 1952, + "cast": [ + "Randolph Scott", + "Raymond Massey" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Cattle Town", + "year": 1952, + "cast": [ + "Dennis Morgan", + "Amanda Blake", + "Rita Moreno" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Cimarron Kid", + "year": 1952, + "cast": [ + "Audie Murphy", + "Beverly Tyler" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Clash by Night", + "year": 1952, + "cast": [ + "Barbara Stanwyck", + "Robert Ryan", + "Paul Douglas", + "Keith Andes", + "Marilyn Monroe" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Colorado Sundown", + "year": 1952, + "cast": [ + "Rex Allen", + "Slim Pickens" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Come Back, Little Sheba", + "year": 1952, + "cast": [ + "Burt Lancaster", + "Shirley Booth", + "Terry Moore" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Confidence Girl", + "year": 1952, + "cast": [ + "Tom Conway", + "Hillary Brooke" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Crimson Pirate", + "year": 1952, + "cast": [ + "Burt Lancaster", + "Eva Bartók" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Cripple Creek", + "year": 1952, + "cast": [ + "George Montgomery", + "Richard Egan", + "Karin Booth" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Deadline – U.S.A.", + "year": 1952, + "cast": [ + "Humphrey Bogart", + "Ethel Barrymore", + "Kim Hunter", + "Warren Stevens", + "Martin Gabel", + "Ed Begley" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Dead Man's Trail", + "year": 1952, + "cast": [ + "Johnny Mack Brown", + "Barbara Woodell" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Denver and Rio Grande", + "year": 1952, + "cast": [ + "Edmond O'Brien", + "Sterling Hayden", + "Dean Jagger" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Desert Passage", + "year": 1952, + "cast": [ + "Tim Holt", + "Richard Martin", + "Dorothy Patrick" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Desert Pursuit", + "year": 1952, + "cast": [ + "Wayne Morris", + "Virginia Grey" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Desperadoes' Outpost", + "year": 1952, + "cast": [ + "Allan Lane", + "Eddy Waller" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Desperate Search", + "year": 1952, + "cast": [ + "Howard Keel", + "Jane Greer", + "Keenan Wynn" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Devil Makes Three", + "year": 1952, + "cast": [ + "Gene Kelly", + "Pier Angeli" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Diplomatic Courier", + "year": 1952, + "cast": [ + "Tyrone Power", + "Patricia Neal", + "Hildegard Knef" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Dog House", + "year": 1952, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "Don't Bother to Knock", + "year": 1952, + "cast": [ + "Marilyn Monroe", + "Richard Widmark", + "Anne Bancroft" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dreamboat", + "year": 1952, + "cast": [ + "Clifton Webb", + "Ginger Rogers", + "Anne Francis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Duck Doctor", + "year": 1952, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "The Duel at Silver Creek", + "year": 1952, + "cast": [ + "Audie Murphy", + "Faith Domergue" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Eight Iron Men", + "year": 1952, + "cast": [ + "Lee Marvin", + "Richard Kiley" + ], + "genres": [ + "War" + ] + }, + { + "title": "Escape Route", + "year": 1952, + "cast": [ + "George Raft", + "Sally Gray" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Everything I Have Is Yours", + "year": 1952, + "cast": [ + "Marge Champion", + "Gower Champion" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Fabulous Senorita", + "year": 1952, + "cast": [ + "Estelita Rodriguez", + "Robert Clarke" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Face to Face", + "year": 1952, + "cast": [ + "James Mason", + "Robert Preston", + "Gene Lockhart" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Fallbrook Story", + "year": 1952, + "cast": [ + "town's fight for water rights" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Fargo", + "year": 1952, + "cast": [ + "Bill Elliott", + "Phyllis Coates" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Fearless Fagan", + "year": 1952, + "cast": [ + "Janet Leigh", + "Carleton Carpenter" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Feed the Kitty", + "year": 1952, + "cast": [], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "Feudin' Fools", + "year": 1952, + "cast": [ + "Leo Gorcey", + "Huntz Hall", + "Anne Kimbell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Fighter", + "year": 1952, + "cast": [ + "Richard Conte", + "Vanessa Brown" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Finders Keepers", + "year": 1952, + "cast": [ + "Tom Ewell", + "Julie Adams" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The First Time", + "year": 1952, + "cast": [ + "Robert Cummings", + "Barbara Hale" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Fit to Be Tied", + "year": 1952, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "Flaming Feather", + "year": 1952, + "cast": [ + "Sterling Hayden", + "Barbara Rush", + "Forrest Tucker" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Flat Top", + "year": 1952, + "cast": [ + "Sterling Hayden", + "Richard Carlson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Flesh and Fury", + "year": 1952, + "cast": [ + "Tony Curtis", + "Jan Sterling", + "Mona Freeman" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Fool Coverage", + "year": 1952, + "cast": [], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "For Men Only", + "year": 1952, + "cast": [ + "Paul Henreid", + "Margaret Field" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Fort Osage", + "year": 1952, + "cast": [ + "Rod Cameron", + "Jane Nigh" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Four Poster", + "year": 1952, + "cast": [ + "Rex Harrison", + "Lilli Palmer" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Francis Goes to West Point", + "year": 1952, + "cast": [ + "Donald O'Connor", + "Lori Nelson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Frontier Phantom", + "year": 1952, + "cast": [ + "Lash LaRue", + "Al St. John" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Geisha Girl", + "year": 1952, + "cast": [ + "Steve Forrest", + "Martha Hyer" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Girl in Every Port", + "year": 1952, + "cast": [ + "Groucho Marx", + "Marie Wilson", + "William Bendix" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Girl in White", + "year": 1952, + "cast": [ + "June Allyson", + "Arthur Kennedy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Glory Alley", + "year": 1952, + "cast": [ + "Ralph Meeker", + "Leslie Caron" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Gobs and Gals", + "year": 1952, + "cast": [ + "Robert Hutton", + "Cathy Downs" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Golden Hawk", + "year": 1952, + "cast": [ + "Rhonda Fleming", + "Sterling Hayden" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Gold Fever", + "year": 1952, + "cast": [ + "Ralph Morgan", + "Gene Roth" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Greatest Show on Earth", + "year": 1952, + "cast": [ + "Charlton Heston", + "Betty Hutton", + "James Stewart", + "Cornel Wilde", + "Dorothy Lamour", + "Henry Wilcoxon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Green Glove", + "year": 1952, + "cast": [ + "Glenn Ford", + "Geraldine Brooks", + "Cedric Hardwicke" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Gunman", + "year": 1952, + "cast": [ + "Whip Wilson", + "Phyllis Coates" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Half-Breed", + "year": 1952, + "cast": [ + "Robert Young", + "Janis Carter" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Hangman's Knot", + "year": 1952, + "cast": [ + "Randolph Scott", + "Donna Reed" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Hans Christian Andersen", + "year": 1952, + "cast": [ + "Danny Kaye", + "Farley Granger" + ], + "genres": [ + "Musical", + "Biography" + ] + }, + { + "title": "The Happy Time", + "year": 1952, + "cast": [ + "Charles Boyer", + "Louis Jourdan", + "Marsha Hunt", + "Linda Christian" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hare Lift", + "year": 1952, + "cast": [], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "Harem Girl", + "year": 1952, + "cast": [ + "Joan Davis", + "Peggie Castle" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Has Anybody Seen My Gal?", + "year": 1952, + "cast": [ + "Piper Laurie", + "Rock Hudson" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Hasty Hare", + "year": 1952, + "cast": [ + "Bugs Bunny" + ], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "The Hawk of Wild River", + "year": 1952, + "cast": [ + "Charles Starrett", + "Clayton Moore" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Hellgate", + "year": 1952, + "cast": [ + "Sterling Hayden", + "Joan Leslie" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Here Come the Marines", + "year": 1952, + "cast": [ + "Leo Gorcey", + "Huntz Hall", + "Myrna Dell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Here Come the Nelsons", + "year": 1952, + "cast": [ + "Ozzie Nelson", + "Harriet Nelson", + "Ricky Nelson", + "David Nelson", + "Rock Hudson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hiawatha", + "year": 1952, + "cast": [ + "Vince Edwards", + "Keith Larsen", + "Yvette Dugay" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Hic-cup Pup", + "year": 1952, + "cast": [], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "High Noon", + "year": 1952, + "cast": [ + "Gary Cooper", + "Grace Kelly", + "Katy Jurado", + "Thomas Mitchell", + "Lloyd Bridges" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Hold That Line", + "year": 1952, + "cast": [ + "Leo Gorcey", + "Huntz Hall", + "Veda Ann Borg" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Holiday for Sinners", + "year": 1952, + "cast": [ + "Gig Young", + "Janice Rule" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Hong Kong", + "year": 1952, + "cast": [ + "Ronald Reagan", + "Rhonda Fleming", + "Nigel Bruce" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Hoodlum Empire", + "year": 1952, + "cast": [ + "Claire Trevor", + "Brian Donlevy" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Horizons West", + "year": 1952, + "cast": [ + "Robert Ryan", + "Julie Adams", + "Rock Hudson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Hunt the Man Down", + "year": 1952, + "cast": [ + "Gig Young", + "Carla Balenda" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Hurricane Smith", + "year": 1952, + "cast": [ + "Yvonne de Carlo", + "John Ireland", + "Forrest Tucker" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The I Don't Care Girl", + "year": 1952, + "cast": [ + "Mitzi Gaynor", + "Oscar Levant" + ], + "genres": [ + "Musical", + "Biography" + ] + }, + { + "title": "I Dream of Jeanie", + "year": 1952, + "cast": [ + "Ray Middleton", + "Bill Shirley", + "Rex Allen", + "Muriel Lawrence", + "Lynn Bari" + ], + "genres": [ + "Musical", + "Biography" + ] + }, + { + "title": "Indian Uprising", + "year": 1952, + "cast": [ + "George Montgomery", + "Audrey Long" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Invasion U.S.A.", + "year": 1952, + "cast": [ + "Dan O'Herlihy", + "Peggie Castle" + ], + "genres": [ + "War" + ] + }, + { + "title": "Invitation", + "year": 1952, + "cast": [ + "Van Johnson", + "Dorothy McGuire" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Iron Mistress", + "year": 1952, + "cast": [ + "Alan Ladd", + "Virginia Mayo" + ], + "genres": [ + "Western" + ] + }, + { + "title": "It Grows on Trees", + "year": 1952, + "cast": [ + "Irene Dunne", + "Dean Jagger" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Ivanhoe", + "year": 1952, + "cast": [ + "Robert Taylor", + "Elizabeth Taylor", + "Joan Fontaine", + "George Sanders" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Jack and the Beanstalk", + "year": 1952, + "cast": [ + "Abbott and Costello" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Japanese War Bride", + "year": 1952, + "cast": [ + "Shirley Yamaguchi", + "Don Taylor", + "Marie Windsor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Jazz Singer", + "year": 1952, + "cast": [ + "Danny Thomas", + "Peggy Lee" + ], + "genres": [ + "Musical", + "Drama" + ] + }, + { + "title": "Jet Job", + "year": 1952, + "cast": [ + "Stanley Clements", + "John Litel", + "Elena Verdugo" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Jumping Jacks", + "year": 1952, + "cast": [ + "Dean Martin", + "Jerry Lewis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Junction City", + "year": 1952, + "cast": [ + "Charles Starrett", + "Jock Mahoney" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Jungle", + "year": 1952, + "cast": [ + "Rod Cameron", + "Cesar Romero", + "Marie Windsor" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Jungle Jim in the Forbidden Land", + "year": 1952, + "cast": [ + "Johnny Weissmuller", + "Angela Greene" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Just Across the Street", + "year": 1952, + "cast": [ + "Ann Sheridan", + "John Lund" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Just for You", + "year": 1952, + "cast": [ + "Bing Crosby", + "Jane Wyman" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Just This Once", + "year": 1952, + "cast": [ + "Janet Leigh", + "Peter Lawford" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Kangaroo", + "year": 1952, + "cast": [ + "Maureen O'Hara", + "Peter Lawford" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Kansas City Confidential", + "year": 1952, + "cast": [ + "John Payne", + "Coleen Gray" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Kansas Territory", + "year": 1952, + "cast": [ + "Bill Elliott", + "Peggy Stewart" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Kid from Broken Gun", + "year": 1952, + "cast": [ + "Charles Starrett", + "Jock Mahoney", + "Angela Stevens" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Kid Monk Baroni", + "year": 1952, + "cast": [ + "Bruce Cabot", + "Leonard Nimoy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "King of the Congo", + "year": 1952, + "cast": [ + "Buster Crabbe" + ], + "genres": [] + }, + { + "title": "Lady in the Iron Mask", + "year": 1952, + "cast": [ + "Patricia Medina", + "Louis Hayward" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Lady Possessed", + "year": 1952, + "cast": [ + "James Mason", + "June Havoc", + "Stephen Dunne" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Lady Says No", + "year": 1952, + "cast": [ + "David Niven", + "Joan Caulfield" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Laramie Mountains", + "year": 1952, + "cast": [ + "Charles Starrett", + "Jock Mahoney" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Last Musketeer", + "year": 1952, + "cast": [ + "Rex Allen", + "Mary Ellen Kay" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Last Train from Bombay", + "year": 1952, + "cast": [ + "Jon Hall", + "Lisa Ferraday" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Las Vegas Story", + "year": 1952, + "cast": [ + "Jane Russell", + "Vincent Price" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Leadville Gunslinger", + "year": 1952, + "cast": [ + "Allan Lane", + "Elaine Riley" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Limelight", + "year": 1952, + "cast": [ + "Charlie Chaplin", + "Claire Bloom" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Lion and the Horse", + "year": 1952, + "cast": [ + "Steve Cochran", + "Ray Teal" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Little Runaway", + "year": 1952, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "Loan Shark", + "year": 1952, + "cast": [ + "George Raft", + "Dorothy Hart" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Lone Star", + "year": 1952, + "cast": [ + "Clark Gable", + "Ava Gardner" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Lost in Alaska", + "year": 1952, + "cast": [ + "Abbott and Costello", + "Mitzi Green" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Love Is Better Than Ever", + "year": 1952, + "cast": [ + "Elizabeth Taylor", + "Larry Parks" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Love Island", + "year": 1952, + "cast": [ + "Paul Valentine", + "Eva Gabor" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Lovely to Look At", + "year": 1952, + "cast": [ + "Kathryn Grayson", + "Red Skelton", + "Howard Keel" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Lure of the Wilderness", + "year": 1952, + "cast": [ + "Jean Peters", + "Jeffrey Hunter" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Lusty Men", + "year": 1952, + "cast": [ + "Robert Mitchum", + "Susan Hayward" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Lydia Bailey", + "year": 1952, + "cast": [ + "Dale Robertson", + "Anne Francis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Ma and Pa Kettle at the Fair", + "year": 1952, + "cast": [ + "Marjorie Main", + "Percy Kilbride", + "Lori Nelson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Macao", + "year": 1952, + "cast": [ + "Robert Mitchum", + "Jane Russell", + "William Bendix", + "Gloria Grahame" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Madeline", + "year": 1952, + "cast": [], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "Magical Maestro", + "year": 1952, + "cast": [], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "Man from the Black Hills", + "year": 1952, + "cast": [ + "Johnny Mack Brown", + "James Ellison" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Mara Maru", + "year": 1952, + "cast": [ + "Errol Flynn", + "Ruth Roman" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Marrying Kind", + "year": 1952, + "cast": [ + "Judy Holliday", + "Aldo Ray" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Maverick", + "year": 1952, + "cast": [ + "Bill Elliott", + "Phyllis Coates" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Meet Danny Wilson", + "year": 1952, + "cast": [ + "Frank Sinatra", + "Shelley Winters", + "Alex Nicol", + "Raymond Burr" + ], + "genres": [ + "Musical", + "Drama" + ] + }, + { + "title": "The Member of the Wedding", + "year": 1952, + "cast": [ + "Julie Harris", + "Ethel Waters" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Merry Widow", + "year": 1952, + "cast": [ + "Fernando Lamas", + "Lana Turner" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Million Dollar Mermaid", + "year": 1952, + "cast": [ + "Victor Mature", + "Esther Williams" + ], + "genres": [ + "Biography", + "Musical" + ] + }, + { + "title": "The Miracle of Our Lady of Fatima", + "year": 1952, + "cast": [ + "Gilbert Roland", + "Sherry Jackson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Les Misérables", + "year": 1952, + "cast": [ + "Michael Rennie", + "Robert Newton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Models Inc.", + "year": 1952, + "cast": [ + "Howard Duff", + "Coleen Gray" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Monkey Business", + "year": 1952, + "cast": [ + "Cary Grant", + "Ginger Rogers", + "Marilyn Monroe" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Monsoon", + "year": 1952, + "cast": [ + "Ursula Thiess", + "Diana Douglas" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Montana Belle", + "year": 1952, + "cast": [ + "Jane Russell", + "George Brent" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Montana Incident", + "year": 1952, + "cast": [ + "Whip Wilson", + "Noel Neill", + "Peggy Stewart" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Montana Territory", + "year": 1952, + "cast": [ + "Wanda Hendrix", + "Preston Foster" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Mr. Walkie Talkie", + "year": 1952, + "cast": [ + "William Tracy", + "Joe Sawyer", + "Margia Dean" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mutiny", + "year": 1952, + "cast": [ + "Mark Stevens", + "Angela Lansbury" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "My Cousin Rachel", + "year": 1952, + "cast": [ + "Olivia de Havilland", + "Richard Burton" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "My Man and I", + "year": 1952, + "cast": [ + "Shelley Winters", + "Ricardo Montalbán" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "My Pal Gus", + "year": 1952, + "cast": [ + "Richard Widmark", + "Joanne Dru" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "My Six Convicts", + "year": 1952, + "cast": [ + "Gilbert Roland", + "Millard Mitchell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "My Son John", + "year": 1952, + "cast": [ + "Dean Jagger", + "Helen Hayes", + "Van Heflin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "My Wife's Best Friend", + "year": 1952, + "cast": [ + "Anne Baxter", + "Macdonald Carey" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Narrow Margin", + "year": 1952, + "cast": [ + "Charles McGraw", + "Marie Windsor" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Night Raiders", + "year": 1952, + "cast": [ + "Whip Wilson", + "Lois Hall" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Night Stage to Galveston", + "year": 1952, + "cast": [ + "Gene Autry", + "Virginia Huston" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Night Without Sleep", + "year": 1952, + "cast": [ + "Linda Darnell", + "Hildegarde Neff" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "No Holds Barred", + "year": 1952, + "cast": [ + "Leo Gorcey", + "Huntz Hall", + "Marjorie Reynolds" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "No Room for the Groom", + "year": 1952, + "cast": [ + "Tony Curtis", + "Piper Laurie" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "No Time for Flowers", + "year": 1952, + "cast": [ + "Viveca Lindfors", + "Paul Hubschmid" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "O. Henry's Full House", + "year": 1952, + "cast": [ + "Charles Laughton", + "Marilyn Monroe", + "Anne Baxter", + "Oscar Levant", + "Jean Peters", + "Jeanne Crain", + "Dale Robertson", + "David Wayne", + "Fred Allen" + ], + "genres": [] + }, + { + "title": "Oily Hare", + "year": 1952, + "cast": [ + "Bugs Bunny" + ], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "Okinawa", + "year": 1952, + "cast": [ + "Pat O'Brien", + "Cameron Mitchell" + ], + "genres": [ + "War" + ] + }, + { + "title": "Oklahoma Annie", + "year": 1952, + "cast": [ + "Judy Canova", + "Grant Withers" + ], + "genres": [ + "Western", + "Comedy" + ] + }, + { + "title": "Old Oklahoma Plains", + "year": 1952, + "cast": [ + "Rex Allen", + "Slim Pickens" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Old West", + "year": 1952, + "cast": [ + "Gene Autry", + "Gail Davis" + ], + "genres": [ + "Western" + ] + }, + { + "title": "On Dangerous Ground", + "year": 1952, + "cast": [ + "Ida Lupino", + "Robert Ryan" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "One Big Affair", + "year": 1952, + "cast": [ + "Evelyn Keyes", + "Mary Anderson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "One Minute to Zero", + "year": 1952, + "cast": [ + "Robert Mitchum", + "Ann Blyth" + ], + "genres": [ + "War" + ] + }, + { + "title": "Operation: Rabbit", + "year": 1952, + "cast": [ + "Bugs Bunny" + ], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "Operation Secret", + "year": 1952, + "cast": [ + "Cornel Wilde", + "Steve Cochran" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Othello", + "year": 1952, + "cast": [ + "Orson Welles", + "Robert Coote" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Outcasts of Poker Flat", + "year": 1952, + "cast": [ + "Miriam Hopkins", + "Dale Robertson", + "Anne Baxter" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Outlaw Women", + "year": 1952, + "cast": [ + "Marie Windsor", + "Carla Balenda" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Pace That Thrills", + "year": 1952, + "cast": [ + "Bill Williams", + "Frank McHugh" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Park Row", + "year": 1952, + "cast": [ + "Gene Evans", + "Herbert Heyes" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Pat and Mike", + "year": 1952, + "cast": [ + "Katharine Hepburn", + "Spencer Tracy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Pathfinder", + "year": 1952, + "cast": [ + "George Montgomery", + "Helena Carter" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Paula", + "year": 1952, + "cast": [ + "Loretta Young" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Phone Call from a Stranger", + "year": 1952, + "cast": [ + "Shelley Winters", + "Gary Merrill", + "Bette Davis", + "Keenan Wynn", + "Helen Westcott", + "Beatrice Straight" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Pleasure Garden", + "year": 1952, + "cast": [], + "genres": [ + "Short" + ] + }, + { + "title": "Plymouth Adventure", + "year": 1952, + "cast": [ + "Spencer Tracy", + "Gene Tierney", + "Van Johnson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Pony Soldier", + "year": 1952, + "cast": [ + "Tyrone Power", + "Robert Horton", + "Thomas Gomez" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Posse Cat", + "year": 1952, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "The Pride of St. Louis", + "year": 1952, + "cast": [ + "Dan Dailey", + "Joanne Dru", + "Richard Crenna" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "The Prisoner of Zenda", + "year": 1952, + "cast": [ + "Deborah Kerr", + "James Mason" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Push-Button Kitty", + "year": 1952, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "The Quiet Man", + "year": 1952, + "cast": [ + "Maureen O'Hara", + "John Wayne" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Rabbit Seasoning", + "year": 1952, + "cast": [ + "Bugs Bunny" + ], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "Radar Men from the Moon", + "year": 1952, + "cast": [ + "George D. Wallace", + "Aline Towne" + ], + "genres": [] + }, + { + "title": "The Raiders", + "year": 1952, + "cast": [ + "Richard Conte", + "Barbara Britton" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Rainbow 'Round My Shoulder", + "year": 1952, + "cast": [ + "Frankie Laine", + "Billy Daniels", + "Charlotte Austin" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Rancho Notorious", + "year": 1952, + "cast": [ + "Marlene Dietrich", + "Arthur Kennedy", + "Mel Ferrer" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Red Ball Express", + "year": 1952, + "cast": [ + "Jeff Chandler", + "Alex Nicol", + "Sidney Poitier" + ], + "genres": [ + "War" + ] + }, + { + "title": "Red Planet Mars", + "year": 1952, + "cast": [ + "Peter Graves", + "Andrea King" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Red Skies of Montana", + "year": 1952, + "cast": [ + "Richard Widmark", + "Richard Boone" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Red Snow", + "year": 1952, + "cast": [ + "Guy Madison", + "Ray Mala", + "Carole Mathews" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Retreat, Hell!", + "year": 1952, + "cast": [ + "Frank Lovejoy", + "Russ Tamblyn" + ], + "genres": [ + "War" + ] + }, + { + "title": "Return of the Texan", + "year": 1952, + "cast": [ + "Dale Robertson", + "Joanne Dru", + "Walter Brennan" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Ride the Man Down", + "year": 1952, + "cast": [ + "Brian Donlevy", + "Ella Raines", + "Barbara Britton" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Ring", + "year": 1952, + "cast": [ + "Lalo Rios", + "Gerald Mohr", + "Rita Moreno" + ], + "genres": [ + "Sports", + "Drama" + ] + }, + { + "title": "Road Agent", + "year": 1952, + "cast": [ + "Tim Holt", + "Dorothy Patrick" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Road to Bali", + "year": 1952, + "cast": [ + "Bing Crosby", + "Bob Hope", + "Dorothy Lamour" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Rodeo", + "year": 1952, + "cast": [ + "Jane Nigh", + "John Archer", + "Wallace Ford" + ], + "genres": [ + "Sports" + ] + }, + { + "title": "The Rough, Tough West", + "year": 1952, + "cast": [ + "Charles Starrett", + "Carolina Cotton" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Rogue's March", + "year": 1952, + "cast": [ + "Peter Lawford", + "Janice Rule" + ], + "genres": [ + "War" + ] + }, + { + "title": "Room for One More", + "year": 1952, + "cast": [ + "Cary Grant", + "Betsy Drake" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Rose Bowl Story", + "year": 1952, + "cast": [ + "Marshall Thompson", + "Vera Miles" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Rose of Cimarron", + "year": 1952, + "cast": [ + "Mala Powers", + "Jack Buetel" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Rough, Tough West", + "year": 1952, + "cast": [ + "Charles Starrett", + "Carolina Cotton" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Ruby Gentry", + "year": 1952, + "cast": [ + "Jennifer Jones", + "Charlton Heston", + "Karl Malden" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sailor Beware", + "year": 1952, + "cast": [ + "Dean Martin", + "Jerry Lewis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Sally and Saint Anne", + "year": 1952, + "cast": [ + "Ann Blyth", + "Edmund Gwenn" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The San Francisco Story", + "year": 1952, + "cast": [ + "Yvonne De Carlo", + "Joel McCrea" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Savage", + "year": 1952, + "cast": [ + "Charlton Heston", + "Susan Morrow" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Scandal Sheet", + "year": 1952, + "cast": [ + "Broderick Crawford", + "John Derek", + "Donna Reed" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Scaramouche", + "year": 1952, + "cast": [ + "Stewart Granger", + "Janet Leigh" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Scarlet Angel", + "year": 1952, + "cast": [ + "Yvonne de Carlo", + "Rock Hudson" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Sea Tiger", + "year": 1952, + "cast": [ + "Marguerite Chapman", + "Mara Corday" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Sellout", + "year": 1952, + "cast": [ + "Walter Pidgeon", + "Paula Raymond" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Shadow in the Sky", + "year": 1952, + "cast": [ + "Ralph Meeker", + "Nancy Davis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "She's Working Her Way Through College", + "year": 1952, + "cast": [ + "Virginia Mayo", + "Ronald Reagan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Singin' in the Rain", + "year": 1952, + "cast": [ + "Gene Kelly", + "Debbie Reynolds", + "Donald O'Connor", + "Jean Hagen", + "Millard Mitchell" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Skirts Ahoy!", + "year": 1952, + "cast": [ + "Esther Williams", + "Joan Evans" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Sky Full of Moon", + "year": 1952, + "cast": [ + "Carleton Carpenter", + "Jan Sterling" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Smitten Kitten", + "year": 1952, + "cast": [], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "Smoky Canyon", + "year": 1952, + "cast": [ + "Charles Starrett", + "Jock Mahoney" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Sniper", + "year": 1952, + "cast": [ + "Adolphe Menjou", + "Arthur Franz" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Snows of Kilimanjaro", + "year": 1952, + "cast": [ + "Gregory Peck", + "Ava Gardner", + "Susan Hayward" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Somebody Loves Me", + "year": 1952, + "cast": [ + "Betty Hutton", + "Ralph Meeker" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Something for the Birds", + "year": 1952, + "cast": [ + "Victor Mature", + "Patricia Neal" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Something to Live For", + "year": 1952, + "cast": [ + "Joan Fontaine", + "Ray Milland" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Son of Ali Baba", + "year": 1952, + "cast": [ + "Tony Curtis", + "Piper Laurie", + "Susan Cabot" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Son of Geronimo", + "year": 1952, + "cast": [ + "Clayton Moore", + "Rodd Redwing" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Son of Paleface", + "year": 1952, + "cast": [ + "Bob Hope", + "Jane Russell", + "Roy Rogers" + ], + "genres": [ + "Western", + "Comedy" + ] + }, + { + "title": "Sound Off", + "year": 1952, + "cast": [ + "Mickey Rooney" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "South Pacific Trail", + "year": 1952, + "cast": [ + "Rex Allen", + "Estelita Rodriguez" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Springfield Rifle", + "year": 1952, + "cast": [ + "Gary Cooper", + "Phyllis Thaxter", + "Lon Chaney, Jr." + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Star", + "year": 1952, + "cast": [ + "Bette Davis", + "Sterling Hayden" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Stars and Stripes Forever", + "year": 1952, + "cast": [ + "Clifton Webb", + "Robert Wagner", + "Debra Paget" + ], + "genres": [ + "Musical", + "Biography" + ] + }, + { + "title": "The Steel Fist", + "year": 1952, + "cast": [ + "Roddy McDowall", + "Kristine Miller" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Steel Town", + "year": 1952, + "cast": [ + "John Lund", + "Ann Sheridan", + "Howard Duff" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Steel Trap", + "year": 1952, + "cast": [ + "Joseph Cotten", + "Teresa Wright" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Stooge", + "year": 1952, + "cast": [ + "Dean Martin", + "Jerry Lewis", + "Polly Bergen" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Stop, You're Killing Me", + "year": 1952, + "cast": [ + "Broderick Crawford", + "Claire Trevor", + "Virginia Gibson", + "Margaret Dumont" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Storm Over Tibet", + "year": 1952, + "cast": [ + "Rex Reason", + "Diana Douglas" + ], + "genres": [ + "War" + ] + }, + { + "title": "The Story of Robin Hood and His Merrie Men", + "year": 1952, + "cast": [ + "Richard Todd", + "Peter Finch", + "James Robertson Justice", + "Joan Rice" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Story of Will Rogers", + "year": 1952, + "cast": [ + "Will Rogers Jr.", + "Jane Wyman" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Strange Fascination", + "year": 1952, + "cast": [ + "Cleo Moore", + "Mona Barrie" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sudden Fear", + "year": 1952, + "cast": [ + "Joan Crawford", + "Jack Palance", + "Gloria Grahame" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Susie the Little Blue Coupe", + "year": 1952, + "cast": [], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "Talk About a Stranger", + "year": 1952, + "cast": [ + "George Murphy", + "Nancy Davis" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Target", + "year": 1952, + "cast": [ + "Tim Holt", + "Richard Martin" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Tarzan's Savage Fury", + "year": 1952, + "cast": [ + "Lex Barker", + "Dorothy Hart" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Texas City", + "year": 1952, + "cast": [ + "Johnny Mack Brown", + "Lois Hall" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Thief", + "year": 1952, + "cast": [ + "Ray Milland", + "Martin Gabel" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Thief of Damascus", + "year": 1952, + "cast": [ + "Paul Henreid", + "John Sutton", + "Jeff Donnell" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "This Is Cinerama", + "year": 1952, + "cast": [ + "Lowell Thomas" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "This Woman is Dangerous", + "year": 1952, + "cast": [ + "Joan Crawford", + "Dennis Morgan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Three for Bedroom \"C\"", + "year": 1952, + "cast": [ + "Gloria Swanson", + "James Warren" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Thunder in the East", + "year": 1952, + "cast": [ + "Allan Ladd", + "Deborah Kerr", + "Charles Boyer" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "Thunderbirds", + "year": 1952, + "cast": [ + "John Derek", + "John Drew Barrymore" + ], + "genres": [ + "War" + ] + }, + { + "title": "Thundering Caravans", + "year": 1952, + "cast": [ + "Allan Lane", + "Mona Knox" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Torpedo Alley", + "year": 1952, + "cast": [ + "Mark Stevens", + "Dorothy Malone" + ], + "genres": [ + "War" + ] + }, + { + "title": "Toughest Man in Arizona", + "year": 1952, + "cast": [ + "Vaughn Monroe", + "Joan Leslie" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Trail Guide", + "year": 1952, + "cast": [ + "Tim Holt", + "Frank Wilcox" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Trance and Dance in Bali", + "year": 1952, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Treasure of Lost Canyon", + "year": 1952, + "cast": [ + "William Powell", + "Julie Adams", + "Rosemary DeCamp" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Trick or Treat", + "year": 1952, + "cast": [ + "Donald Duck" + ], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "Triplet Trouble", + "year": 1952, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "Tropical Heat Wave", + "year": 1952, + "cast": [ + "Estelita Rodriguez", + "Robert Hutton" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "The Turning Point", + "year": 1952, + "cast": [ + "William Holden", + "Edmond O'Brien", + "Alexis Smith" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Two Little Indians", + "year": 1952, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "The Two Mouseketeers", + "year": 1952, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "Untamed Frontier", + "year": 1952, + "cast": [ + "Joseph Cotten", + "Shelley Winters", + "Scott Brady" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Untamed Women", + "year": 1952, + "cast": [ + "Mikel Conrad", + "Doris Merrick" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Viva Zapata!", + "year": 1952, + "cast": [ + "Marlon Brando", + "Jean Peters", + "Anthony Quinn" + ], + "genres": [ + "Historical" + ] + }, + { + "title": "Voodoo Tiger", + "year": 1952, + "cast": [ + "Johnny Weissmuller", + "Jean Byron" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The WAC from Walla Walla", + "year": 1952, + "cast": [ + "Judy Canova", + "Stephen Dunne" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Waco", + "year": 1952, + "cast": [ + "Bill Elliott", + "Pamela Blake" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Wagon Team", + "year": 1952, + "cast": [ + "Gene Autry", + "Gail Davis" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Wagons West", + "year": 1952, + "cast": [ + "Rod Cameron", + "Peggie Castle" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Wait till the Sun Shines, Nellie", + "year": 1952, + "cast": [ + "Jean Peters", + "David Wayne" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Walk East on Beacon", + "year": 1952, + "cast": [ + "Virginia Gilmore", + "George Murphy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Washington Story", + "year": 1952, + "cast": [ + "Van Johnson", + "Patricia Neal" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Water, Water Every Hare", + "year": 1952, + "cast": [ + "Bugs Bunny" + ], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "Way of a Gaucho", + "year": 1952, + "cast": [ + "Gene Tierney", + "Rory Calhoun" + ], + "genres": [ + "Western" + ] + }, + { + "title": "We're Not Married!", + "year": 1952, + "cast": [ + "Ginger Rogers", + "Marilyn Monroe" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "What Price Glory?", + "year": 1952, + "cast": [ + "James Cagney", + "Dan Dailey" + ], + "genres": [ + "War" + ] + }, + { + "title": "When in Rome", + "year": 1952, + "cast": [ + "Van Johnson", + "Paul Douglas" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Wild Horse Ambush", + "year": 1952, + "cast": [ + "Michael Chapin", + "Eilene Janssen" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Wild North", + "year": 1952, + "cast": [ + "Stewart Granger", + "Wendell Corey", + "Cyd Charisse" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Wild Stallion", + "year": 1952, + "cast": [ + "Ben Johnson", + "Edgar Buchanan", + "Martha Hyer" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Wings of Danger", + "year": 1952, + "cast": [ + "Zachary Scott", + "Kay Kendall" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Winning Team", + "year": 1952, + "cast": [ + "Doris Day", + "Ronald Reagan", + "Frank Lovejoy" + ], + "genres": [ + "Sports", + "Biography" + ] + }, + { + "title": "With a Song in My Heart", + "year": 1952, + "cast": [ + "Susan Hayward", + "Rory Calhoun" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Without Warning!", + "year": 1952, + "cast": [ + "Adam Williams", + "Meg Randall", + "Edward Binns" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Woman in the Dark", + "year": 1952, + "cast": [ + "Penny Edwards", + "Ross Elliott" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Woman of the North Country", + "year": 1952, + "cast": [ + "Ruth Hussey", + "Gale Storm", + "John Agar" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The World in His Arms", + "year": 1952, + "cast": [ + "Gregory Peck", + "Ann Blyth" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Wyoming Roundup", + "year": 1952, + "cast": [ + "Whip Wilson", + "Phyllis Coates" + ], + "genres": [ + "Western" + ] + }, + { + "title": "A Yank in Indo-China", + "year": 1952, + "cast": [ + "John Archer", + "Douglas Dick", + "Jean Willes" + ], + "genres": [ + "War" + ] + }, + { + "title": "Yankee Buccaneer", + "year": 1952, + "cast": [ + "Jeff Chandler", + "Scott Brady", + "Suzan Ball" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "You for Me", + "year": 1952, + "cast": [ + "Jane Greer", + "Peter Lawford" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Young Man with Ideas", + "year": 1952, + "cast": [ + "Glenn Ford", + "Ruth Roman" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Yukon Gold", + "year": 1952, + "cast": [ + "Kirby Grant", + "Martha Hyer" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Zombies of the Stratosphere", + "year": 1952, + "cast": [], + "genres": [] + }, + { + "title": "The 49th Man", + "year": 1953, + "cast": [ + "Richard Denning", + "John Ireland", + "Suzanne Dalbert" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "99 River Street", + "year": 1953, + "cast": [ + "John Payne", + "Evelyn Keyes" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The 5,000 Fingers of Dr. T", + "year": 1953, + "cast": [ + "Tommy Rettig", + "Mary Healy" + ], + "genres": [ + "Musical", + "Fantasy" + ] + }, + { + "title": "Abbott and Costello Go to Mars", + "year": 1953, + "cast": [ + "Abbott and Costello", + "Horace McMahon", + "Martha Hyer", + "Mari Blanchard" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Abbott and Costello Meet Dr. Jekyll and Mr. Hyde", + "year": 1953, + "cast": [ + "Abbott and Costello", + "Boris Karloff" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Act of Love", + "year": 1953, + "cast": [ + "Kirk Douglas", + "Dany Robin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Actress", + "year": 1953, + "cast": [ + "Jean Simmons", + "Spencer Tracy", + "Teresa Wright" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Affairs of Dobie Gillis", + "year": 1953, + "cast": [ + "Debbie Reynolds", + "Bob Fosse" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Affair with a Stranger", + "year": 1953, + "cast": [ + "Jean Simmons", + "Victor Mature", + "Monica Lewis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The All American", + "year": 1953, + "cast": [ + "Tony Curtis", + "Lori Nelson", + "Mamie Van Doren" + ], + "genres": [ + "Sports", + "Drama" + ] + }, + { + "title": "All Ashore", + "year": 1953, + "cast": [ + "Mickey Rooney", + "Dick Haymes" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "All I Desire", + "year": 1953, + "cast": [ + "Barbara Stanwyck", + "Richard Carlson", + "Lyle Bettger", + "Lori Nelson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "All My Babies", + "year": 1953, + "cast": [], + "genres": [] + }, + { + "title": "All the Brothers Were Valiant", + "year": 1953, + "cast": [ + "Robert Taylor", + "Stewart Granger", + "Ann Blyth" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Ambush at Tomahawk Gap", + "year": 1953, + "cast": [ + "John Hodiak", + "John Derek" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Angel Face", + "year": 1953, + "cast": [ + "Robert Mitchum", + "Jean Simmons" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Appointment in Honduras", + "year": 1953, + "cast": [ + "Glenn Ford", + "Ann Sheridan", + "Zachary Scott" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Arena", + "year": 1953, + "cast": [ + "Gig Young", + "Jean Hagen", + "Polly Bergen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Arrowhead", + "year": 1953, + "cast": [ + "Charlton Heston", + "Jack Palance", + "Katy Jurado" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Baby Butch", + "year": 1953, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "Back to God's Country", + "year": 1953, + "cast": [ + "Rock Hudson", + "Marcia Henderson", + "Steve Cochran" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Bad for Each Other", + "year": 1953, + "cast": [ + "Charlton Heston", + "Lizabeth Scott" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Bandits of Corsica", + "year": 1953, + "cast": [ + "Paula Raymond", + "Richard Greene", + "Raymond Burr" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Bandits of the West", + "year": 1953, + "cast": [ + "Allan Lane", + "Cathy Downs" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Band Wagon", + "year": 1953, + "cast": [ + "Fred Astaire", + "Cyd Charisse", + "Oscar Levant", + "Jack Buchanan", + "Nanette Fabray" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Battle Circus", + "year": 1953, + "cast": [ + "Humphrey Bogart", + "June Allyson", + "Robert Keith", + "Keenan Wynn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Beast from 20,000 Fathoms", + "year": 1953, + "cast": [ + "Paula Raymond", + "Cecil Kellaway" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Beat the Devil", + "year": 1953, + "cast": [ + "Humphrey Bogart", + "Jennifer Jones", + "Gina Lollobrigida", + "Peter Lorre" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Ben and Me", + "year": 1953, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "Beneath the 12-Mile Reef", + "year": 1953, + "cast": [ + "Robert Wagner", + "Terry Moore", + "Gilbert Roland" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Bigamist", + "year": 1953, + "cast": [ + "Joan Fontaine", + "Ida Lupino", + "Edmond O'Brien" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Big Heat", + "year": 1953, + "cast": [ + "Glenn Ford", + "Gloria Grahame", + "Lee Marvin" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Big Leaguer", + "year": 1953, + "cast": [ + "Edward G. Robinson", + "Vera-Ellen" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Blowing Wild", + "year": 1953, + "cast": [ + "Gary Cooper", + "Barbara Stanwyck", + "Ruth Roman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Blue Gardenia", + "year": 1953, + "cast": [ + "Anne Baxter", + "Richard Conte", + "Ann Sothern", + "Raymond Burr" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "A Blueprint for Murder", + "year": 1953, + "cast": [ + "Joseph Cotten", + "Jean Peters", + "Gary Merrill" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Born to the Saddle", + "year": 1953, + "cast": [ + "Chuck Courtney", + "Donald Woods" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Botany Bay", + "year": 1953, + "cast": [ + "Alan Ladd", + "James Mason", + "Patricia Medina" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Bright Road", + "year": 1953, + "cast": [ + "Dorothy Dandridge", + "Harry Belafonte" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Bully for Bugs", + "year": 1953, + "cast": [ + "Looney Tunes" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "By the Light of the Silvery Moon", + "year": 1953, + "cast": [ + "Doris Day", + "Gordon MacRae" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Caddy", + "year": 1953, + "cast": [ + "Dean Martin", + "Jerry Lewis", + "Donna Reed" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Calamity Jane", + "year": 1953, + "cast": [ + "Doris Day", + "Howard Keel" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Call Me Madam", + "year": 1953, + "cast": [ + "Ethel Merman", + "Donald O'Connor", + "Vera-Ellen", + "Billy De Wolfe" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Canadian Mounties vs Atomic Invaders", + "year": 1953, + "cast": [ + "William Henry", + "Susan Morrow" + ], + "genres": [] + }, + { + "title": "Captain John Smith and Pocahontas", + "year": 1953, + "cast": [ + "Anthony Dexter", + "Jody Lawrance" + ], + "genres": [ + "Historical" + ] + }, + { + "title": "Captain Scarlett", + "year": 1953, + "cast": [ + "Richard Greene", + "Leonora Amar" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Cat-Women of the Moon", + "year": 1953, + "cast": [ + "Sonny Tufts", + "Victor Jory" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Cat-Tails for Two", + "year": 1953, + "cast": [ + "Looney Tunes" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Catty Cornered", + "year": 1953, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "Cease Fire!", + "year": 1953, + "cast": [], + "genres": [ + "War" + ] + }, + { + "title": "Champ for a Day", + "year": 1953, + "cast": [ + "Alex Nicol", + "Audrey Totter", + "Charles Winninger" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Charade", + "year": 1953, + "cast": [ + "James Mason", + "Pamela Mason" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Charge at Feather River", + "year": 1953, + "cast": [ + "Guy Madison", + "Vera Miles" + ], + "genres": [ + "Western" + ] + }, + { + "title": "China Venture", + "year": 1953, + "cast": [ + "Edmond O'Brien", + "Barry Sullivan", + "Jocelyn Brando" + ], + "genres": [ + "War" + ] + }, + { + "title": "City Beneath the Sea", + "year": 1953, + "cast": [ + "Robert Ryan", + "Anthony Quinn", + "Mala Powers" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "City of Bad Men", + "year": 1953, + "cast": [ + "Dale Robertson", + "Jeanne Crain", + "Richard Boone" + ], + "genres": [ + "Western" + ] + }, + { + "title": "City That Never Sleeps", + "year": 1953, + "cast": [ + "Gig Young", + "William Talman", + "Mala Powers", + "Paula Raymond", + "Chill Wills" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Clipped Wings", + "year": 1953, + "cast": [ + "Leo Gorcey", + "Huntz Hall", + "June Vincent" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Clown", + "year": 1953, + "cast": [ + "Red Skelton", + "Jane Greer", + "Tim Considine" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Code Two", + "year": 1953, + "cast": [ + "Ralph Meeker", + "Sally Forrest" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Column South", + "year": 1953, + "cast": [ + "Audie Murphy", + "Joan Evans" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Combat Squad", + "year": 1953, + "cast": [ + "John Ireland", + "Lon McCallister" + ], + "genres": [ + "War" + ] + }, + { + "title": "Commando Cody: Sky Marshal of the Universe", + "year": 1953, + "cast": [ + "Judd Holdren", + "Aline Towne" + ], + "genres": [] + }, + { + "title": "Confidentially Connie", + "year": 1953, + "cast": [ + "Van Johnson", + "Janet Leigh", + "Louis Calhern" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Conquest of Cochise", + "year": 1953, + "cast": [ + "Robert Stack", + "John Hodiak", + "Joy Page" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Count the Hours", + "year": 1953, + "cast": [ + "Teresa Wright", + "Macdonald Carey" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Cow Country", + "year": 1953, + "cast": [ + "Edmond O'Brien", + "Helen Westcott" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Crazylegs", + "year": 1953, + "cast": [ + "Lloyd Nolan", + "Joan Vohs" + ], + "genres": [ + "Sports" + ] + }, + { + "title": "Cruisin' Down the River", + "year": 1953, + "cast": [ + "Dick Haymes", + "Audrey Totter" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Cry of the Hunted", + "year": 1953, + "cast": [ + "Vittorio Gassman", + "Barry Sullivan", + "Polly Bergen" + ], + "genres": [ + "Crime", + "Thriller" + ] + }, + { + "title": "Dance Hall Racket", + "year": 1953, + "cast": [ + "Timothy Farrell", + "Lenny Bruce" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dangerous Crossing", + "year": 1953, + "cast": [ + "Jeanne Crain", + "Michael Rennie", + "Carl Betz" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Dangerous When Wet", + "year": 1953, + "cast": [ + "Esther Williams", + "Fernando Lamas", + "Jack Carson" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Decameron Nights", + "year": 1953, + "cast": [ + "Joan Fontaine", + "Louis Jourdan" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Desert Legion", + "year": 1953, + "cast": [ + "Alan Ladd", + "Arlene Dahl", + "Richard Conte" + ], + "genres": [] + }, + { + "title": "The Desert Rats", + "year": 1953, + "cast": [ + "Richard Burton", + "James Mason", + "Robert Newton" + ], + "genres": [ + "War" + ] + }, + { + "title": "The Desert Song", + "year": 1953, + "cast": [ + "Kathryn Grayson", + "Gordon MacRae" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Designs on Jerry", + "year": 1953, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Destination Gobi", + "year": 1953, + "cast": [ + "Richard Widmark", + "Don Taylor" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "Devil's Canyon", + "year": 1953, + "cast": [ + "Virginia Mayo", + "Dale Robertson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Diamond Queen", + "year": 1953, + "cast": [ + "Arlene Dahl", + "Fernando Lamas" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Down Laredo Way", + "year": 1953, + "cast": [ + "Rex Allen", + "Dona Drake" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Don's Fountain of Youth", + "year": 1953, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "Donovan's Brain", + "year": 1953, + "cast": [ + "Lew Ayres", + "Nancy Davis" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Down Among the Sheltering Palms", + "year": 1953, + "cast": [ + "Mitzi Gaynor", + "William Lundigan", + "David Wayne" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Dream Wife", + "year": 1953, + "cast": [ + "Cary Grant", + "Deborah Kerr", + "Walter Pidgeon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Duck Dodgers", + "year": 1953, + "cast": [ + "Looney Tunes" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Duck! Rabbit, Duck!", + "year": 1953, + "cast": [ + "Looney Tunes" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "East of Sumatra", + "year": 1953, + "cast": [ + "Jeff Chandler", + "Anthony Quinn", + "Marilyn Maxwell" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Easy to Love", + "year": 1953, + "cast": [ + "Esther Williams", + "Van Johnson", + "Tony Martin" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Eddie Cantor Story", + "year": 1953, + "cast": [ + "Keefe Brasselle", + "Marilyn Erskine", + "Aline MacMahon" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "El Alamein", + "year": 1953, + "cast": [ + "Scott Brady", + "Edward Ashley", + "Rita Moreno" + ], + "genres": [ + "War" + ] + }, + { + "title": "El Paso Stampede", + "year": 1953, + "cast": [ + "Allan Lane", + "Phyllis Coates" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Escape from Fort Bravo", + "year": 1953, + "cast": [ + "William Holden", + "Eleanor Parker", + "John Forsythe" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Fair Wind to Java", + "year": 1953, + "cast": [ + "Fred MacMurray", + "Vera Ralston", + "Victor McLaglen" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Fangs of the Arctic", + "year": 1953, + "cast": [ + "Kirby Grant", + "Warren Douglas" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Farmer Takes a Wife", + "year": 1953, + "cast": [ + "Betty Grable", + "Dale Robertson" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Fast Company", + "year": 1953, + "cast": [ + "Howard Keel", + "Polly Bergen" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Fear and Desire", + "year": 1953, + "cast": [ + "Frank Silvera", + "Paul Mazursky" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Fighter Attack", + "year": 1953, + "cast": [ + "Sterling Hayden", + "Joy Page" + ], + "genres": [ + "War" + ] + }, + { + "title": "Fighting Lawman", + "year": 1953, + "cast": [ + "Wayne Morris", + "Virginia Grey" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Flame of Calcutta", + "year": 1953, + "cast": [ + "Denise Darcel", + "Patric Knowles" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Flaming Urge", + "year": 1953, + "cast": [ + "Harold Lloyd Jr.", + "Cathy Downs" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Flight Nurse", + "year": 1953, + "cast": [ + "Joan Leslie", + "Forrest Tucker" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "Flight to Tangier", + "year": 1953, + "cast": [ + "Jack Palance", + "Joan Fontaine" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Forever Female", + "year": 1953, + "cast": [ + "Ginger Rogers", + "William Holden", + "Paul Douglas" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Forbidden", + "year": 1953, + "cast": [ + "Tony Curtis", + "Joanne Dru" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Fort Ti", + "year": 1953, + "cast": [ + "George Montgomery", + "Joan Vohs" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Fort Vengeance", + "year": 1953, + "cast": [ + "James Craig", + "Rita Moreno", + "Reginald Denny" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Francis Covers the Big Town", + "year": 1953, + "cast": [ + "Donald O'Connor", + "Yvette Duguay" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "From Here to Eternity", + "year": 1953, + "cast": [ + "Montgomery Clift", + "Deborah Kerr", + "Burt Lancaster", + "Frank Sinatra", + "Donna Reed", + "George Reeves", + "Ernest Borgnine" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "Gentlemen Prefer Blondes", + "year": 1953, + "cast": [ + "Marilyn Monroe", + "Jane Russell" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Geraldine", + "year": 1953, + "cast": [ + "John Carroll", + "Mala Powers" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Girl Next Door", + "year": 1953, + "cast": [ + "Dan Dailey", + "June Haver" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Girl Who Had Everything", + "year": 1953, + "cast": [ + "Elizabeth Taylor", + "Fernando Lamas", + "William Powell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Girls in the Night", + "year": 1953, + "cast": [ + "Joyce Holden", + "Harvey Lembeck" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Girls of Pleasure Island", + "year": 1953, + "cast": [ + "Don Taylor", + "Leo Genn", + "Audrey Dalton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Give a Girl a Break", + "year": 1953, + "cast": [ + "Debbie Reynolds", + "Marge Champion", + "Gower Champion", + "Bob Fosse" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "The Glass Wall", + "year": 1953, + "cast": [ + "Vittorio Gassman", + "Gloria Grahame" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Glass Web", + "year": 1953, + "cast": [ + "Edward G. Robinson", + "John Forsythe", + "Marcia Henderson", + "Kathleen Hughes" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "The Glory Brigade", + "year": 1953, + "cast": [ + "Victor Mature", + "Richard Egan" + ], + "genres": [ + "War" + ] + }, + { + "title": "Glen or Glenda", + "year": 1953, + "cast": [ + "Timothy Farrell", + "Dolores Fuller" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Golden Blade", + "year": 1953, + "cast": [ + "Rock Hudson", + "Piper Laurie", + "Gene Evans", + "Kathleen Hughes" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Goldtown Ghost Riders", + "year": 1953, + "cast": [ + "Gene Autry", + "Gail Davis" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Great Jesse James Raid", + "year": 1953, + "cast": [ + "Willard Parker", + "Barbara Payton", + "Tom Neal" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Great Sioux Uprising", + "year": 1953, + "cast": [ + "Jeff Chandler", + "Faith Domergue", + "Lyle Bettger" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Guerrilla Girl", + "year": 1953, + "cast": [ + "Helmut Dantine", + "Irene Champlin" + ], + "genres": [ + "War" + ] + }, + { + "title": "Gun Belt", + "year": 1953, + "cast": [ + "Tab Hunter", + "Helen Westcott" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Gun Fury", + "year": 1953, + "cast": [ + "Rock Hudson", + "Donna Reed", + "Philip Carey", + "Roberta Haynes", + "Lee Marvin" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Gunsmoke", + "year": 1953, + "cast": [ + "Audie Murphy", + "Susan Cabot" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Half a Hero", + "year": 1953, + "cast": [ + "Red Skelton", + "Jean Hagen" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hannah Lee", + "year": 1953, + "cast": [ + "Joanne Dru", + "John Ireland" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Here Come the Girls", + "year": 1953, + "cast": [ + "Bob Hope", + "Rosemary Clooney", + "Tony Martin", + "Arlene Dahl" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "The Hitch-Hiker", + "year": 1953, + "cast": [ + "Edmond O'Brien", + "William Talman", + "Frank Lovejoy" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Homesteaders", + "year": 1953, + "cast": [ + "Bill Elliott", + "Robert Lowery" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Hondo", + "year": 1953, + "cast": [ + "John Wayne", + "Geraldine Page", + "Ward Bond", + "James Arness" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Hot News", + "year": 1953, + "cast": [ + "Stanley Clements", + "Gloria Henry" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Houdini", + "year": 1953, + "cast": [ + "Tony Curtis", + "Janet Leigh" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "House of Wax", + "year": 1953, + "cast": [ + "Vincent Price", + "Carolyn Jones", + "Phyllis Kirk" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "How to Marry a Millionaire", + "year": 1953, + "cast": [ + "Lauren Bacall", + "Betty Grable", + "Marilyn Monroe", + "Cameron Mitchell", + "William Powell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "I Confess", + "year": 1953, + "cast": [ + "Montgomery Clift", + "Anne Baxter" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The I Don't Care Girl", + "year": 1953, + "cast": [ + "Mitzi Gaynor", + "Oscar Levant" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "I Love Lucy", + "year": 1953, + "cast": [ + "Lucille Ball", + "Desi Arnaz" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "I Love Melvin", + "year": 1953, + "cast": [ + "Debbie Reynolds", + "Donald O'Connor" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "I, the Jury", + "year": 1953, + "cast": [ + "Biff Elliot", + "Peggie Castle" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Inferno", + "year": 1953, + "cast": [ + "Robert Ryan", + "Rhonda Fleming" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Invaders from Mars", + "year": 1953, + "cast": [ + "Helena Carter", + "Leif Erickson" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Iron Mountain Trail", + "year": 1953, + "cast": [ + "Rex Allen", + "Slim Pickens" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Island in the Sky", + "year": 1953, + "cast": [ + "John Wayne", + "Lloyd Nolan", + "James Arness" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "It Came from Outer Space", + "year": 1953, + "cast": [ + "Richard Carlson", + "Barbara Rush" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "It Happens Every Thursday", + "year": 1953, + "cast": [ + "Loretta Young", + "John Forsythe" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Jack McCall, Desperado", + "year": 1953, + "cast": [ + "George Montgomery", + "Angela Stevens" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Jalopy", + "year": 1953, + "cast": [ + "Leo Gorcey", + "Huntz Hall" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Jamaica Run", + "year": 1953, + "cast": [ + "Ray Milland", + "Arlene Dahl", + "Patric Knowles" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Jennifer", + "year": 1953, + "cast": [ + "Ida Lupino", + "Howard Duff" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Jeopardy", + "year": 1953, + "cast": [ + "Barbara Stanwyck", + "Barry Sullivan", + "Ralph Meeker" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Joe Louis Story", + "year": 1953, + "cast": [ + "Coley Wallace", + "Paul Stewart" + ], + "genres": [ + "Sports" + ] + }, + { + "title": "Johann Mouse", + "year": 1953, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "The Juggler", + "year": 1953, + "cast": [ + "Kirk Douglas", + "Milly Vitale" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Julius Caesar", + "year": 1953, + "cast": [ + "Marlon Brando", + "James Mason", + "John Gielgud", + "Greer Garson", + "Deborah Kerr", + "Louis Calhern", + "Edmond O'Brien" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Jungle Drums of Africa", + "year": 1953, + "cast": [ + "Phyllis Coates" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Kansas Pacific", + "year": 1953, + "cast": [ + "Sterling Hayden", + "Eve Miller" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Kid from Left Field", + "year": 1953, + "cast": [ + "Dan Dailey", + "Anne Bancroft" + ], + "genres": [ + "Sports", + "Comedy" + ] + }, + { + "title": "Killer Ape", + "year": 1953, + "cast": [ + "Johnny Weissmuller", + "Carol Thurston" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "King of the Khyber Rifles", + "year": 1953, + "cast": [ + "Tyrone Power", + "Terry Moore", + "Michael Rennie" + ], + "genres": [ + "Historical" + ] + }, + { + "title": "Kiss Me, Kate", + "year": 1953, + "cast": [ + "Kathryn Grayson", + "Howard Keel", + "Ann Miller" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Knights of the Round Table", + "year": 1953, + "cast": [ + "Robert Taylor", + "Ava Gardner", + "Mel Ferrer" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Lady Wants Mink", + "year": 1953, + "cast": [ + "Dennis O'Keefe", + "Ruth Hussey", + "Eve Arden" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Last of the Comanches", + "year": 1953, + "cast": [ + "Broderick Crawford", + "Barbara Hale" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Last of the Pony Riders", + "year": 1953, + "cast": [ + "Gene Autry", + "Kathleen Case" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Last Posse", + "year": 1953, + "cast": [ + "Broderick Crawford", + "Wanda Hendrix", + "John Derek" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Latin Lovers", + "year": 1953, + "cast": [ + "Lana Turner", + "Ricardo Montalbán", + "John Lund" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Law and Order", + "year": 1953, + "cast": [ + "Ronald Reagan", + "Dorothy Malone" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Lawless Breed", + "year": 1953, + "cast": [ + "Rock Hudson", + "Julie Adams", + "Hugh O'Brian" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Let's All Go to the Lobby", + "year": 1953, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "Let's Do It Again", + "year": 1953, + "cast": [ + "Jane Wyman", + "Ray Milland", + "Aldo Ray" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Life with Tom", + "year": 1953, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Lili", + "year": 1953, + "cast": [ + "Leslie Caron", + "Mel Ferrer", + "Jean-Pierre Aumont", + "Zsa Zsa Gabor" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "A Lion Is in the Streets", + "year": 1953, + "cast": [ + "James Cagney", + "Barbara Hale" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Little Boy Lost", + "year": 1953, + "cast": [ + "Bing Crosby", + "Claude Dauphin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Little Fugitive", + "year": 1953, + "cast": [ + "Richie Andrusco" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Living Desert", + "year": 1953, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Lone Hand", + "year": 1953, + "cast": [ + "Joel McCrea", + "Barbara Hale", + "Alex Nicol" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Loose in London", + "year": 1953, + "cast": [ + "Leo Gorcey", + "Huntz Hall" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Lost Planet", + "year": 1953, + "cast": [ + "Judd Holdren" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Ma and Pa Kettle on Vacation", + "year": 1953, + "cast": [ + "Marjorie Main", + "Percy Kilbride" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Magnetic Monster", + "year": 1953, + "cast": [ + "Richard Carlson", + "King Donovan" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Main Street to Broadway", + "year": 1953, + "cast": [ + "Mary Murphy", + "Herb Shriner" + ], + "genres": [] + }, + { + "title": "The Man Behind the Gun", + "year": 1953, + "cast": [ + "Randolph Scott", + "Patrice Wymore" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Man from Cairo", + "year": 1953, + "cast": [ + "George Raft", + "Irene Pappas", + "Massimo Serato" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Man from the Alamo", + "year": 1953, + "cast": [ + "Glenn Ford", + "Julie Adams", + "Hugh O'Brian" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Man in the Attic", + "year": 1953, + "cast": [ + "Jack Palance", + "Constance Smith" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Man in the Dark", + "year": 1953, + "cast": [ + "Edmond O'Brien", + "Audrey Totter" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Man of Conflict", + "year": 1953, + "cast": [ + "Edward Arnold", + "John Agar", + "Susan Morrow" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Man on a Tightrope", + "year": 1953, + "cast": [ + "Fredric March", + "Terry Moore", + "Gloria Grahame" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Marksman", + "year": 1953, + "cast": [ + "Wayne Morris", + "Elena Verdugo" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Marry Me Again", + "year": 1953, + "cast": [ + "Robert Cummings", + "Marie Wilson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Marshal of Cedar Rock", + "year": 1953, + "cast": [ + "Allan Lane", + "Phyllis Coates" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Marshal's Daughter", + "year": 1953, + "cast": [ + "Laurie Anders", + "Hoot Gibson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Martin Luther", + "year": 1953, + "cast": [ + "Niall MacGinnis", + "Pierre Lefevre" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "The Maze", + "year": 1953, + "cast": [ + "Richard Carlson", + "Veronica Hurst" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Meet Me at the Fair", + "year": 1953, + "cast": [ + "Dan Dailey", + "Diana Lynn", + "Hugh O'Brian" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Melba", + "year": 1953, + "cast": [ + "Patrice Munsel", + "Robert Morley" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Mesa of Lost Women", + "year": 1953, + "cast": [ + "Jackie Coogan", + "Richard Travis" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Mexican Manhunt", + "year": 1953, + "cast": [ + "George Brent", + "Karen Sharpe" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Miss Sadie Thompson", + "year": 1953, + "cast": [ + "Rita Hayworth", + "José Ferrer", + "Aldo Ray" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Mission Over Korea", + "year": 1953, + "cast": [ + "John Derek", + "Audrey Totter" + ], + "genres": [ + "War" + ] + }, + { + "title": "The Missing Mouse", + "year": 1953, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "The Mississippi Gambler", + "year": 1953, + "cast": [ + "Tyrone Power", + "Piper Laurie", + "Julie Adams" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Mister Scoutmaster", + "year": 1953, + "cast": [ + "Clifton Webb", + "Edmund Gwenn" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mogambo", + "year": 1953, + "cast": [ + "Clark Gable", + "Ava Gardner", + "Grace Kelly" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Money from Home", + "year": 1953, + "cast": [ + "Dean Martin", + "Jerry Lewis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Moon Is Blue", + "year": 1953, + "cast": [ + "William Holden", + "David Niven", + "Maggie McNamara" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "The Moonlighter", + "year": 1953, + "cast": [ + "Barbara Stanwyck", + "Fred MacMurray", + "Ward Bond" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Mouse for Sale", + "year": 1953, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "Murder Without Tears", + "year": 1953, + "cast": [ + "Craig Stevens", + "Joyce Holden" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Naked Spur", + "year": 1953, + "cast": [ + "James Stewart", + "Janet Leigh", + "Robert Ryan" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Neanderthal Man", + "year": 1953, + "cast": [ + "Robert Shayne", + "Beverly Garland" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Neapolitan Mouse", + "year": 1953, + "cast": [], + "genres": [] + }, + { + "title": "The Nebraskan", + "year": 1953, + "cast": [ + "Philip Carey", + "Lee Van Cleef" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Never Let Me Go", + "year": 1953, + "cast": [ + "Clark Gable", + "Gene Tierney" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Never Wave at a WAC", + "year": 1953, + "cast": [ + "Rosalind Russell", + "Paul Douglas" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Niagara", + "year": 1953, + "cast": [ + "Marilyn Monroe", + "Jean Peters", + "Joseph Cotten" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "No Escape", + "year": 1953, + "cast": [ + "Lew Ayres", + "Sonny Tufts" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Northern Patrol", + "year": 1953, + "cast": [ + "Kirby Grant", + "Gloria Talbott" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Off Limits", + "year": 1953, + "cast": [ + "Bob Hope", + "Mickey Rooney", + "Marilyn Maxwell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Old Overland Trail", + "year": 1953, + "cast": [ + "Rex Allen", + "Slim Pickens" + ], + "genres": [ + "Western" + ] + }, + { + "title": "On Top of Old Smoky", + "year": 1953, + "cast": [ + "Gene Autry", + "Gail Davis" + ], + "genres": [ + "Western" + ] + }, + { + "title": "One Girl's Confession", + "year": 1953, + "cast": [ + "Cleo Moore", + "Glenn Langan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Pack Train", + "year": 1953, + "cast": [ + "Gene Autry", + "Gail Davis" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Pardon My Backfire", + "year": 1953, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Paris Model", + "year": 1953, + "cast": [ + "Paulette Goddard", + "Marilyn Maxwell", + "Eva Gabor" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Perilous Journey", + "year": 1953, + "cast": [ + "Vera Ralston", + "Scott Brady" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Perils of the Jungle", + "year": 1953, + "cast": [ + "Clyde Beatty", + "Phyllis Coates" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Personal Affair", + "year": 1953, + "cast": [ + "Gene Tierney", + "Glynis Johns" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Peter Pan", + "year": 1953, + "cast": [ + "voices of", + "Hans Conried", + "Bobby Driscoll", + "Kathryn Beaumont" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Phantom from Space", + "year": 1953, + "cast": [ + "Ted Cooper", + "Noreen Nash" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Pickup on South Street", + "year": 1953, + "cast": [ + "Richard Widmark", + "Jean Peters", + "Thelma Ritter" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Plunder of the Sun", + "year": 1953, + "cast": [ + "Glenn Ford", + "Diana Lynn", + "Francis L. Sullivan" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Pony Express", + "year": 1953, + "cast": [ + "Charlton Heston", + "Rhonda Fleming", + "Forrest Tucker" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Port Sinister", + "year": 1953, + "cast": [ + "James Warren", + "Lynne Roberts", + "Paul Cavanagh" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Powder River", + "year": 1953, + "cast": [ + "Rory Calhoun", + "Corinne Calvet" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The President's Lady", + "year": 1953, + "cast": [ + "Susan Hayward", + "Charlton Heston", + "John McIntire" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Prince of Pirates", + "year": 1953, + "cast": [ + "John Derek", + "Barbara Rush" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Prisoners of the Casbah", + "year": 1953, + "cast": [ + "Gloria Grahame", + "Cesar Romero", + "Turhan Bey" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Private Eyes", + "year": 1953, + "cast": [ + "Bowery Boys", + "Joyce Holden" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Problem Girls", + "year": 1953, + "cast": [ + "Helen Walker", + "Susan Morrow" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Project Moonbase", + "year": 1953, + "cast": [ + "Ross Ford", + "Donna Martell" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Pup on a Picnic", + "year": 1953, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Puppy Tale", + "year": 1953, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Raiders of the Seven Seas", + "year": 1953, + "cast": [ + "John Payne", + "Donna Reed" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Rebel City", + "year": 1953, + "cast": [ + "Wild Bill Elliott", + "Marjorie Lord" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Red Beret", + "year": 1953, + "cast": [ + "Alan Ladd", + "Leo Genn" + ], + "genres": [ + "War" + ] + }, + { + "title": "The Redhead from Wyoming", + "year": 1953, + "cast": [ + "Maureen O'Hara", + "Alex Nicol", + "Dennis Weaver" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Red River Shore", + "year": 1953, + "cast": [ + "Rex Allen", + "Lyn Thomas" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Redhead from Wyoming", + "year": 1953, + "cast": [ + "Maureen O'Hara", + "Alex Nicol" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Remains to Be Seen", + "year": 1953, + "cast": [ + "June Allyson", + "Van Johnson", + "Angela Lansbury" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Return to Paradise", + "year": 1953, + "cast": [ + "Gary Cooper", + "Barry Jones", + "Roberta Haynes" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Ride, Vaquero!", + "year": 1953, + "cast": [ + "Robert Taylor", + "Ava Gardner", + "Howard Keel", + "Anthony Quinn" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Roar of the Crowd", + "year": 1953, + "cast": [ + "Howard Duff", + "Helene Stanley" + ], + "genres": [ + "Sports", + "Drama" + ] + }, + { + "title": "Rob Roy, the Highland Rogue", + "year": 1953, + "cast": [ + "Richard Todd", + "Glynis Johns" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Robe", + "year": 1953, + "cast": [ + "Richard Burton", + "Jean Simmons", + "Victor Mature", + "Michael Rennie", + "Richard Boone" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Robot Monster", + "year": 1953, + "cast": [ + "George Nader", + "Claudia Barrett", + "Selena Royle" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Rogue's March", + "year": 1953, + "cast": [ + "Peter Lawford", + "Richard Greene", + "Janice Rule" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Roman Holiday", + "year": 1953, + "cast": [ + "Audrey Hepburn", + "Gregory Peck", + "Eddie Albert" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Rough Shoot", + "year": 1953, + "cast": [ + "Joel McCrea", + "Evelyn Keyes" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Royal African Rifles", + "year": 1953, + "cast": [ + "Louis Hayward", + "Veronica Hurst" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Saadia", + "year": 1953, + "cast": [ + "Cornel Wilde", + "Rita Gam", + "Mel Ferrer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sabre Jet", + "year": 1953, + "cast": [ + "Robert Stack", + "Coleen Gray", + "Richard Arlen" + ], + "genres": [ + "War" + ] + }, + { + "title": "Safari Drums", + "year": 1953, + "cast": [ + "Johnny Sheffield", + "Douglas Kennedy" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Saginaw Trail", + "year": 1953, + "cast": [ + "Gene Autry", + "Connie Marshall" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Sailor of the King", + "year": 1953, + "cast": [ + "Jeffrey Hunter", + "Michael Rennie" + ], + "genres": [ + "War" + ] + }, + { + "title": "Salome", + "year": 1953, + "cast": [ + "Rita Hayworth", + "Stewart Granger", + "Judith Anderson", + "Charles Laughton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sangaree", + "year": 1953, + "cast": [ + "Fernando Lamas", + "Arlene Dahl", + "Patricia Medina" + ], + "genres": [ + "Historical" + ] + }, + { + "title": "San Antone", + "year": 1953, + "cast": [ + "Rod Cameron", + "Arleen Whelan" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Savage Frontier", + "year": 1953, + "cast": [ + "Allan Lane", + "Dorothy Patrick" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Savage Mutiny", + "year": 1953, + "cast": [ + "Johnny Weissmuller", + "Angela Stevens" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Scandal at Scourie", + "year": 1953, + "cast": [ + "Greer Garson", + "Walter Pidgeon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Scared Stiff", + "year": 1953, + "cast": [ + "Dean Martin", + "Jerry Lewis", + "Lizabeth Scott", + "Carmen Miranda" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Sea Devils", + "year": 1953, + "cast": [ + "Rock Hudson", + "Yvonne De Carlo", + "Maxwell Reed" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Seafarers", + "year": 1953, + "cast": [], + "genres": [] + }, + { + "title": "Sea of Lost Ships", + "year": 1953, + "cast": [ + "John Derek", + "Wanda Hendrix" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Second Chance", + "year": 1953, + "cast": [ + "Robert Mitchum", + "Jack Palance", + "Linda Darnell" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Seminole", + "year": 1953, + "cast": [ + "Rock Hudson", + "Anthony Quinn", + "Barbara Hale" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Serpent of the Nile", + "year": 1953, + "cast": [ + "Rhonda Fleming", + "Raymond Burr", + "William Lundigan" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Shadows of Tombstone", + "year": 1953, + "cast": [ + "Rex Allen", + "Jeanne Cooper" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Shane", + "year": 1953, + "cast": [ + "Alan Ladd", + "Van Heflin", + "Jean Arthur", + "Brandon De Wilde", + "Jack Palance", + "Ben Johnson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Shark River", + "year": 1953, + "cast": [ + "Steve Cochran", + "Carole Mathews" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "She's Back on Broadway", + "year": 1953, + "cast": [ + "Virginia Mayo", + "Gene Nelson", + "Steve Cochran" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "The Silver Whip", + "year": 1953, + "cast": [ + "Dale Robertson", + "Rory Calhoun" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Simple Things", + "year": 1953, + "cast": [ + "Mickey Mouse" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Sins of Jezebel", + "year": 1953, + "cast": [ + "Paulette Goddard", + "George Nader", + "Margia Dean" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Siren of Bagdad", + "year": 1953, + "cast": [ + "Paul Henreid", + "Patricia Medina" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Sky Commando", + "year": 1953, + "cast": [ + "Dan Duryea", + "Frances Gifford" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Slaves of Babylon", + "year": 1953, + "cast": [ + "Richard Conte", + "Linda Christian" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "A Slight Case of Larceny", + "year": 1953, + "cast": [ + "Mickey Rooney", + "Elaine Stewart" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Small Town Girl", + "year": 1953, + "cast": [ + "Jane Powell", + "Farley Granger", + "Ann Miller" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "So Big!", + "year": 1953, + "cast": [ + "Jane Wyman", + "Sterling Hayden", + "Steve Forrest", + "Nancy Olson", + "Martha Hyer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sombrero", + "year": 1953, + "cast": [ + "Ricardo Montalban", + "Pier Angeli" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Son of Belle Starr", + "year": 1953, + "cast": [ + "Keith Larsen", + "Dona Drake", + "Peggie Castle" + ], + "genres": [ + "Western" + ] + }, + { + "title": "So This Is Love", + "year": 1953, + "cast": [ + "Kathryn Grayson", + "Merv Griffin" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "South of Algiers", + "year": 1953, + "cast": [ + "Van Heflin", + "Wanda Hendrix" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "South Sea Woman", + "year": 1953, + "cast": [ + "Burt Lancaster", + "Virginia Mayo", + "Chuck Connors" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Southern Fried Rabbit", + "year": 1953, + "cast": [ + "Bugs Bunny" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Spaceways", + "year": 1953, + "cast": [ + "Howard Duff", + "Eva Bartók" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Split Second", + "year": 1953, + "cast": [ + "Stephen McNally", + "Alexis Smith", + "Jan Sterling" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Spooks!", + "year": 1953, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Comedy", + "Short" + ] + }, + { + "title": "Stalag 17", + "year": 1953, + "cast": [ + "William Holden", + "Don Taylor", + "Otto Preminger", + "Harvey Lembeck", + "Robert Strauss", + "Peter Graves" + ], + "genres": [ + "War" + ] + }, + { + "title": "The Stand at Apache River", + "year": 1953, + "cast": [ + "Stephen McNally", + "Julie Adams" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Stars Are Singing", + "year": 1953, + "cast": [ + "Rosemary Clooney", + "Anna Maria Alberghetti" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Star of Texas", + "year": 1953, + "cast": [ + "Wayne Morris", + "Paul Fix" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Steel Lady", + "year": 1953, + "cast": [ + "Rod Cameron", + "Tab Hunter", + "John Dehner" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Story of Three Loves", + "year": 1953, + "cast": [ + "Pier Angeli", + "Kirk Douglas", + "Leslie Caron", + "Ethel Barrymore", + "James Mason", + "Farley Granger", + "Ricky Nelson" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Stranger Wore a Gun", + "year": 1953, + "cast": [ + "Randolph Scott", + "Claire Trevor", + "Joan Weldon" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Sun Shines Bright", + "year": 1953, + "cast": [ + "Charles Winninger", + "Arleen Whelan", + "Stepin Fetchit" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Sweethearts on Parade", + "year": 1953, + "cast": [ + "Ray Middleton", + "Lucille Norman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Sword and the Rose", + "year": 1953, + "cast": [ + "Glynis Johns", + "Richard Todd", + "James Robertson Justice" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Sword of Venus", + "year": 1953, + "cast": [ + "Robert Clarke", + "Dan O'Herlihy" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The System", + "year": 1953, + "cast": [ + "Frank Lovejoy", + "Joan Weldon", + "Robert Arthur" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Take Me to Town", + "year": 1953, + "cast": [ + "Sterling Hayden", + "Ann Sheridan" + ], + "genres": [ + "Western", + "Comedy" + ] + }, + { + "title": "Take the High Ground!", + "year": 1953, + "cast": [ + "Richard Widmark", + "Karl Malden", + "Russ Tamblyn" + ], + "genres": [ + "War" + ] + }, + { + "title": "The Tall Texan", + "year": 1953, + "cast": [ + "Lloyd Bridges", + "Lee J. Cobb", + "Marie Windsor", + "Luther Adler" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Tangier Incident", + "year": 1953, + "cast": [ + "George Brent", + "Mari Aldon" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Target Hong Kong", + "year": 1953, + "cast": [ + "Richard Denning", + "Nancy Gates" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Tarzan and the She-Devil", + "year": 1953, + "cast": [ + "Lex Barker", + "Joyce MacKenzie", + "Tom Conway" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Taxi", + "year": 1953, + "cast": [ + "Dan Dailey", + "Constance Smith" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Tell-Tale Heart", + "year": 1953, + "cast": [ + "narrated by", + "James Mason" + ], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "Terminal Station", + "year": 1953, + "cast": [ + "Jennifer Jones", + "Montgomery Clift" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Terror Street", + "year": 1953, + "cast": [ + "Dan Duryea", + "Elsie Albiin" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Texas Bad Man", + "year": 1953, + "cast": [ + "Wayne Morris", + "Elaine Riley" + ], + "genres": [ + "Western" + ] + }, + { + "title": "That Man from Tangier", + "year": 1953, + "cast": [ + "Roland Young", + "Nancy Coleman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Those Redheads from Seattle", + "year": 1953, + "cast": [ + "Rhonda Fleming", + "Gene Barry", + "Agnes Moorehead", + "Teresa Brewer" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Three Sailors and a Girl", + "year": 1953, + "cast": [ + "Jane Powell", + "Gordon MacRae" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Thunder Bay", + "year": 1953, + "cast": [ + "James Stewart", + "Dan Duryea", + "Joanne Dru" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Thunder Over the Plains", + "year": 1953, + "cast": [ + "Randolph Scott", + "Lex Barker", + "Phyllis Kirk" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Thy Neighbor's Wife", + "year": 1953, + "cast": [ + "Cleo Moore", + "Hugo Haas", + "Kathleen Hughes" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Time Bomb", + "year": 1953, + "cast": [ + "Glenn Ford", + "Anne Vernon" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "Titanic", + "year": 1953, + "cast": [ + "Barbara Stanwyck", + "Clifton Webb", + "Robert Wagner", + "Thelma Ritter", + "Richard Basehart" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Tonight We Sing", + "year": 1953, + "cast": [ + "David Wayne", + "Anne Bancroft" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Toot, Whistle, Plunk and Boom", + "year": 1953, + "cast": [], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "Topeka", + "year": 1953, + "cast": [ + "Wild Bill Elliott", + "Phyllis Coates" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Torch Song", + "year": 1953, + "cast": [ + "Joan Crawford", + "Michael Wilding", + "Gig Young" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Treasure of the Golden Condor", + "year": 1953, + "cast": [ + "Cornel Wilde", + "Constance Smith", + "Finlay Currie" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Tropic Zone", + "year": 1953, + "cast": [ + "Ronald Reagan", + "Rhonda Fleming" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Trouble Along the Way", + "year": 1953, + "cast": [ + "John Wayne", + "Donna Reed" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Tumbleweed", + "year": 1953, + "cast": [ + "Audie Murphy", + "Lori Nelson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Twonky", + "year": 1953, + "cast": [ + "Hans Conreid", + "Gloria Blondell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Valley of the Head Hunters", + "year": 1953, + "cast": [ + "Johnny Weissmuller", + "Christine Larson" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Vanquished", + "year": 1953, + "cast": [ + "John Payne", + "Jan Sterling", + "Coleen Gray" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Veils of Bagdad", + "year": 1953, + "cast": [ + "Victor Mature", + "Mari Blanchard" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Vice Squad", + "year": 1953, + "cast": [ + "Edward G. Robinson", + "Paulette Goddard" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Vicki", + "year": 1953, + "cast": [ + "Jeanne Crain", + "Jean Peters", + "Richard Boone" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Vigilante Terror", + "year": 1953, + "cast": [ + "Wild Bill Elliott", + "Mary Ellen Kay" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Walking My Baby Back Home", + "year": 1953, + "cast": [ + "Donald O'Connor", + "Janet Leigh", + "Buddy Hackett" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "War Paint", + "year": 1953, + "cast": [ + "Robert Stack", + "Joan Taylor" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The War of the Worlds", + "year": 1953, + "cast": [ + "Gene Barry", + "Ann Robinson" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "White Lightning", + "year": 1953, + "cast": [ + "Stanley Clements", + "Barbara Bestar", + "Steve Brodie" + ], + "genres": [ + "Sports", + "Drama" + ] + }, + { + "title": "White Witch Doctor", + "year": 1953, + "cast": [ + "Robert Mitchum", + "Susan Hayward" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Wicked Woman", + "year": 1953, + "cast": [ + "Beverly Michaels", + "Richard Egan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Wild One", + "year": 1953, + "cast": [ + "Marlon Brando", + "Lee Marvin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Wings of the Hawk", + "year": 1953, + "cast": [ + "Van Heflin", + "Julie Adams" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Winning of the West", + "year": 1953, + "cast": [ + "Gene Autry", + "Gail Davis" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Woman They Almost Lynched", + "year": 1953, + "cast": [ + "Audrey Totter", + "Joan Leslie" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Working for Peanuts", + "year": 1953, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "Young Bess", + "year": 1953, + "cast": [ + "Jean Simmons", + "Stewart Granger", + "Deborah Kerr", + "Charles Laughton" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "3 Ring Circus", + "year": 1954, + "cast": [ + "Dean Martin", + "Jerry Lewis", + "Zsa Zsa Gabor", + "Joanne Dru" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "20,000 Leagues Under the Sea", + "year": 1954, + "cast": [ + "Kirk Douglas", + "James Mason", + "Paul Lukas", + "Peter Lorre" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "About Mrs. Leslie", + "year": 1954, + "cast": [ + "Shirley Booth", + "Robert Ryan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Adventures of Hajji Baba", + "year": 1954, + "cast": [ + "John Derek", + "Elaine Stewart" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Alaska Seas", + "year": 1954, + "cast": [ + "Robert Ryan", + "Brian Keith", + "Jan Sterling" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Apache", + "year": 1954, + "cast": [ + "Burt Lancaster", + "Jean Peters", + "John McIntire", + "Charles Bronson", + "John Dehner" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Arrow in the Dust", + "year": 1954, + "cast": [ + "Sterling Hayden", + "Coleen Gray" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Athena", + "year": 1954, + "cast": [ + "Jane Powell", + "Debbie Reynolds", + "Virginia Gibson" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Atomic Kid", + "year": 1954, + "cast": [ + "Mickey Rooney", + "Robert Strauss", + "Elaine Devry" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Baby Buggy Bunny", + "year": 1954, + "cast": [ + "Mel Blanc" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Bait", + "year": 1954, + "cast": [ + "Cleo Moore", + "John Agar" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Bamboo Prison", + "year": 1954, + "cast": [ + "Robert Francis", + "Dianne Foster", + "Brian Keith" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "The Barefoot Contessa", + "year": 1954, + "cast": [ + "Humphrey Bogart", + "Ava Gardner", + "Rossano Brazzi", + "Edmond O'Brien" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Battle of Rogue River", + "year": 1954, + "cast": [ + "George Montgomery", + "Martha Hyer" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Beachhead", + "year": 1954, + "cast": [ + "Tony Curtis", + "Frank Lovejoy", + "Mary Murphy" + ], + "genres": [ + "War" + ] + }, + { + "title": "Beau Brummell", + "year": 1954, + "cast": [ + "Stewart Granger", + "Elizabeth Taylor", + "Peter Ustinov" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Beautiful Stranger", + "year": 1954, + "cast": [ + "Ginger Rogers", + "Herbert Lom", + "Stanley Baker" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Bengal Brigade", + "year": 1954, + "cast": [ + "Rock Hudson", + "Arlene Dahl" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Betrayed", + "year": 1954, + "cast": [ + "Clark Gable", + "Lana Turner", + "Victor Mature" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Big Chase", + "year": 1954, + "cast": [ + "Glenn Langan", + "Adele Jergens", + "Lon Chaney Jr." + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Bitter Creek", + "year": 1954, + "cast": [ + "Bill Elliott", + "Beverly Garland" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Black Dakotas", + "year": 1954, + "cast": [ + "Wanda Hendrix", + "Gary Merrill" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Black Horse Canyon", + "year": 1954, + "cast": [ + "Joel McCrea", + "Mari Blanchard" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Black Knight", + "year": 1954, + "cast": [ + "Alan Ladd", + "Patricia Medina", + "Peter Cushing" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Black Pirates", + "year": 1954, + "cast": [ + "Anthony Dexter", + "Martha Roth" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Black Shield of Falworth", + "year": 1954, + "cast": [ + "Tony Curtis", + "Janet Leigh" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Black Tuesday", + "year": 1954, + "cast": [ + "Edward G. Robinson", + "Peter Graves" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Black Widow", + "year": 1954, + "cast": [ + "Ginger Rogers", + "Van Heflin", + "Gene Tierney", + "George Raft" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Bob Mathias Story", + "year": 1954, + "cast": [ + "Bob Mathias", + "Ward Bond", + "Diane Jergens" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Border River", + "year": 1954, + "cast": [ + "Joel McCrea", + "Yvonne De Carlo" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Bounty Hunter", + "year": 1954, + "cast": [ + "Randolph Scott", + "Marie Windsor" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Bowery Boys Meet the Monsters", + "year": 1954, + "cast": [ + "Leo Gorcey", + "Huntz Hall" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Boy from Oklahoma", + "year": 1954, + "cast": [ + "Will Rogers Jr.", + "Nancy Olson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Bridges at Toko-Ri", + "year": 1954, + "cast": [ + "William Holden", + "Grace Kelly", + "Fredric March", + "Mickey Rooney", + "Earl Holliman" + ], + "genres": [ + "War" + ] + }, + { + "title": "Brigadoon", + "year": 1954, + "cast": [ + "Gene Kelly", + "Van Johnson", + "Cyd Charisse" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Bright Road", + "year": 1954, + "cast": [ + "Dorothy Dandridge", + "Harry Belafonte" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Broken Lance", + "year": 1954, + "cast": [ + "Spencer Tracy", + "Robert Wagner", + "Richard Widmark", + "Katy Jurado" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Bugs and Thugs", + "year": 1954, + "cast": [ + "Mel Blanc" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "A Bullet Is Waiting", + "year": 1954, + "cast": [ + "Jean Simmons", + "Rory Calhoun" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Caine Mutiny", + "year": 1954, + "cast": [ + "Humphrey Bogart", + "José Ferrer", + "Van Johnson", + "Fred MacMurray", + "Robert Francis", + "E.G. Marshall", + "Tom Tully", + "Jerry Paris", + "May Wynn", + "Lee Marvin" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "Cannibal Attack", + "year": 1954, + "cast": [ + "Johnny Weissmuller", + "Judy Walsh" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Captain Kidd and the Slave Girl", + "year": 1954, + "cast": [ + "Anthony Dexter", + "Eva Gabor" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Carmen Jones", + "year": 1954, + "cast": [ + "Harry Belafonte", + "Dorothy Dandridge" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Carnival Story", + "year": 1954, + "cast": [ + "Anne Baxter", + "Steve Cochran" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Casanova's Big Night", + "year": 1954, + "cast": [ + "Bob Hope", + "Joan Fontaine", + "Basil Rathbone" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Cattle Queen of Montana", + "year": 1954, + "cast": [ + "Barbara Stanwyck", + "Ronald Reagan" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Charge of the Lancers", + "year": 1954, + "cast": [ + "Paulette Goddard", + "Jean-Pierre Aumont" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Command", + "year": 1954, + "cast": [ + "Guy Madison", + "James Whitmore", + "Joan Weldon" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Country Girl", + "year": 1954, + "cast": [ + "Bing Crosby", + "Grace Kelly", + "William Holden" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Creature from the Black Lagoon", + "year": 1954, + "cast": [ + "Richard Carlson", + "Julie Adams", + "Richard Denning" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Crime Wave", + "year": 1954, + "cast": [ + "Sterling Hayden", + "Gene Nelson", + "Ted de Corsia", + "Phyllis Kirk" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Crossed Swords", + "year": 1954, + "cast": [ + "Errol Flynn", + "Gina Lollobrigida" + ], + "genres": [] + }, + { + "title": "Cry Vengeance", + "year": 1954, + "cast": [ + "Mark Stevens", + "Skip Homeier", + "Martha Hyer" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Dangerous Mission", + "year": 1954, + "cast": [ + "Victor Mature", + "Piper Laurie" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Dawn at Socorro", + "year": 1954, + "cast": [ + "Rory Calhoun", + "Piper Laurie", + "David Brian", + "Kathleen Hughes", + "Alex Nicol" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Deep in My Heart", + "year": 1954, + "cast": [ + "José Ferrer", + "Merle Oberon", + "Walter Pidgeon" + ], + "genres": [ + "Musical", + "Biography" + ] + }, + { + "title": "Demetrius and the Gladiators", + "year": 1954, + "cast": [ + "Victor Mature", + "Susan Hayward", + "Michael Rennie", + "Debra Paget", + "Anne Bancroft" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Désirée", + "year": 1954, + "cast": [ + "Marlon Brando", + "Jean Simmons", + "Merle Oberon" + ], + "genres": [ + "Historical" + ] + }, + { + "title": "The Desperado", + "year": 1954, + "cast": [ + "Wayne Morris", + "Beverly Garland" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Destry", + "year": 1954, + "cast": [ + "Audie Murphy", + "Mari Blanchard" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Devil May Hare", + "year": 1954, + "cast": [ + "Bugs Bunny" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Dial M for Murder", + "year": 1954, + "cast": [ + "Grace Kelly", + "Ray Milland", + "Robert Cummings", + "Anthony Dawson", + "John Williams" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "Dixieland Droopy", + "year": 1954, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "Dog Pounded", + "year": 1954, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "Down Three Dark Streets", + "year": 1954, + "cast": [ + "Broderick Crawford", + "Ruth Roman" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Downhearted Duckling", + "year": 1954, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "Dragnet", + "year": 1954, + "cast": [ + "Jack Webb" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Dragon's Gold", + "year": 1954, + "cast": [ + "John Archer", + "Hillary Brooke" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Dragonfly Squadron", + "year": 1954, + "cast": [ + "John Hodiak", + "Barbara Britton" + ], + "genres": [ + "War" + ] + }, + { + "title": "Drive a Crooked Road", + "year": 1954, + "cast": [ + "Mickey Rooney", + "Dianne Foster", + "Kevin McCarthy" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Drum Beat", + "year": 1954, + "cast": [ + "Alan Ladd", + "Audrey Dalton", + "Marisa Pavan" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Drums Across the River", + "year": 1954, + "cast": [ + "Audie Murphy", + "Lisa Gaye" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Drums of Tahiti", + "year": 1954, + "cast": [ + "Patricia Medina", + "Dennis O'Keefe" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Duffy of San Quentin", + "year": 1954, + "cast": [ + "Joanne Dru", + "Louis Hayward" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Egyptian", + "year": 1954, + "cast": [ + "Jean Simmons", + "Victor Mature", + "Gene Tierney", + "Michael Wilding", + "Peter Ustinov" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Elephant Walk", + "year": 1954, + "cast": [ + "Elizabeth Taylor", + "Dana Andrews", + "Peter Finch" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Executive Suite", + "year": 1954, + "cast": [ + "William Holden", + "Barbara Stanwyck", + "Fredric March", + "June Allyson", + "Walter Pidgeon", + "Paul Douglas", + "Shelley Winters", + "Louis Calhern", + "Nina Foch" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Fangs of the Wild", + "year": 1954, + "cast": [ + "Charles Chaplin Jr.", + "Onslow Stevens", + "Margia Dean" + ], + "genres": [ + "Adventure", + "Western" + ] + }, + { + "title": "Fireman Save My Child", + "year": 1954, + "cast": [ + "Hugh O'Brian", + "Buddy Hackett", + "Adele Jergens" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Flame and the Flesh", + "year": 1954, + "cast": [ + "Lana Turner", + "Pier Angeli" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Forty-Niners", + "year": 1954, + "cast": [ + "Bill Elliott", + "Virginia Grey" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Four Guns to the Border", + "year": 1954, + "cast": [ + "Rory Calhoun", + "Colleen Miller", + "Nina Foch" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Francis Joins the WACS", + "year": 1954, + "cast": [ + "Donald O'Connor", + "Julie Adams", + "Mamie Van Doren" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The French Line", + "year": 1954, + "cast": [ + "Jane Russell", + "Gilbert Roland" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Gambler from Natchez", + "year": 1954, + "cast": [ + "Dale Robertson", + "Debra Paget" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Garden of Evil", + "year": 1954, + "cast": [ + "Gary Cooper", + "Susan Hayward", + "Richard Widmark" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Glenn Miller Story", + "year": 1954, + "cast": [ + "James Stewart", + "June Allyson", + "Charles Drake", + "George Tobias", + "Harry Morgan" + ], + "genres": [ + "Biography", + "Musical" + ] + }, + { + "title": "Go Man Go", + "year": 1954, + "cast": [ + "Dane Clark", + "Sidney Poitier", + "Ruby Dee" + ], + "genres": [ + "Sports" + ] + }, + { + "title": "Gog", + "year": 1954, + "cast": [ + "Richard Egan", + "Herbert Marshall", + "Constance Dowling" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Golden Idol", + "year": 1954, + "cast": [ + "Johnny Sheffield", + "Anne Kimbell" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Golden Mistress", + "year": 1954, + "cast": [ + "John Agar", + "Rosemarie Bowe" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Gorilla at Large", + "year": 1954, + "cast": [ + "Cameron Mitchell", + "Anne Bancroft", + "Lee J. Cobb" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Great Diamond Robbery", + "year": 1954, + "cast": [ + "Red Skelton", + "James Whitmore", + "Cara Williams" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Green Fire", + "year": 1954, + "cast": [ + "Grace Kelly", + "Stewart Granger", + "Paul Douglas" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Gunfighters of the Northwest", + "year": 1954, + "cast": [ + "Jock Mahoney", + "Phyllis Coates" + ], + "genres": [] + }, + { + "title": "Gypsy Colt", + "year": 1954, + "cast": [ + "Donna Corcoran", + "Ward Bond" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Hansel and Gretel: An Opera Fantasy", + "year": 1954, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "Hell and High Water", + "year": 1954, + "cast": [ + "Richard Widmark", + "Bella Darvi" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hell Below Zero", + "year": 1954, + "cast": [ + "Alan Ladd", + "Stanley Baker", + "Joan Tetzel" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Hell's Half Acre", + "year": 1954, + "cast": [ + "Evelyn Keyes", + "Wendell Corey" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Hell's Outpost", + "year": 1954, + "cast": [ + "Rod Cameron", + "Joan Leslie" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Her Twelve Men", + "year": 1954, + "cast": [ + "Greer Garson", + "Robert Ryan", + "Barry Sullivan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The High and the Mighty", + "year": 1954, + "cast": [ + "John Wayne", + "Robert Stack", + "Laraine Day", + "Claire Trevor", + "Jan Sterling", + "Robert Newton", + "Sidney Blackmer", + "Phil Harris", + "Paul Fix", + "Doe Avedon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Highway Dragnet", + "year": 1954, + "cast": [ + "Richard Conte", + "Joan Bennett", + "Wanda Hendrix" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "His Majesty O'Keefe", + "year": 1954, + "cast": [ + "Burt Lancaster", + "Joan Rice", + "André Morell" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The House in the Middle", + "year": 1954, + "cast": [], + "genres": [ + "Short" + ] + }, + { + "title": "Human Desire", + "year": 1954, + "cast": [ + "Glenn Ford", + "Gloria Grahame", + "Broderick Crawford" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "The Human Jungle", + "year": 1954, + "cast": [ + "Gary Merrill", + "Jan Sterling" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Inauguration of the Pleasure Dome", + "year": 1954, + "cast": [ + "Anaïs Nin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Iron Glove", + "year": 1954, + "cast": [ + "Robert Stack", + "Ursula Thiess" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "It Should Happen to You", + "year": 1954, + "cast": [ + "Judy Holliday", + "Peter Lawford", + "Jack Lemmon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Jail Bait", + "year": 1954, + "cast": [ + "Dolores Fuller", + "Steve Reeves" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Jesse James vs. the Daltons", + "year": 1954, + "cast": [ + "Brett King", + "Barbara Lawrence" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Jesse James' Women", + "year": 1954, + "cast": [ + "Peggie Castle", + "Don \"Red\" Barry" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Jivaro", + "year": 1954, + "cast": [ + "Fernando Lamas", + "Rhonda Fleming", + "Brian Keith" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Johnny Dark", + "year": 1954, + "cast": [ + "Tony Curtis", + "Piper Laurie" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Johnny Guitar", + "year": 1954, + "cast": [ + "Joan Crawford", + "Sterling Hayden", + "Mercedes McCambridge", + "Ernest Borgnine", + "Ward Bond" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Jubilee Trail", + "year": 1954, + "cast": [ + "John Russell", + "Joan Leslie" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Jungle Gents", + "year": 1954, + "cast": [ + "Leo Gorcey", + "Huntz Hall", + "Laurette Luez" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Jungle Man-Eaters", + "year": 1954, + "cast": [ + "Johnny Weissmuller", + "Karin Booth" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Khyber Patrol", + "year": 1954, + "cast": [ + "Richard Egan", + "Dawn Addams", + "Raymond Burr" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Killer Leopard", + "year": 1954, + "cast": [ + "Johnny Sheffield", + "Beverly Garland" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Killers from Space", + "year": 1954, + "cast": [ + "Peter Graves", + "James Seay" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "King Richard and the Crusaders", + "year": 1954, + "cast": [ + "Rex Harrison", + "Virginia Mayo", + "George Sanders" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Knock on Wood", + "year": 1954, + "cast": [ + "Danny Kaye", + "Mai Zetterling" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Last Time I Saw Paris", + "year": 1954, + "cast": [ + "Van Johnson", + "Elizabeth Taylor", + "Donna Reed" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Law vs. Billy the Kid", + "year": 1954, + "cast": [ + "Scott Brady", + "Betta St. John" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Lawless Rider", + "year": 1954, + "cast": [ + "Johnny Carpenter", + "Noel Neill" + ], + "genres": [ + "Western" + ] + }, + { + "title": "A Life at Stake", + "year": 1954, + "cast": [ + "Angela Lansbury", + "Keith Andes", + "Douglas Dumbrille" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Little School Mouse", + "year": 1954, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Living It Up", + "year": 1954, + "cast": [ + "Dean Martin", + "Jerry Lewis", + "Janet Leigh" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Lone Gun", + "year": 1954, + "cast": [ + "George Montgomery", + "Dorothy Malone" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Long, Long Trailer", + "year": 1954, + "cast": [ + "Lucille Ball", + "Desi Arnaz" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Long Wait", + "year": 1954, + "cast": [ + "Anthony Quinn", + "Charles Coburn", + "Peggie Castle" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Loophole", + "year": 1954, + "cast": [ + "Barry Sullivan", + "Dorothy Malone", + "Charles McGraw" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Lucky Me", + "year": 1954, + "cast": [ + "Doris Day", + "Phil Silvers" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Ma and Pa Kettle at Home", + "year": 1954, + "cast": [ + "Marjorie Main", + "Percy Kilbride", + "Alan Mowbray" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Mad Magician", + "year": 1954, + "cast": [ + "Vincent Price", + "Eva Gabor" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Magic Brush", + "year": 1954, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "Make Haste to Live", + "year": 1954, + "cast": [ + "Dorothy McGuire", + "Stephen McNally" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "Magnificent Obsession", + "year": 1954, + "cast": [ + "Rock Hudson", + "Jane Wyman", + "Agnes Moorehead", + "Otto Kruger", + "Barbara Rush" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Man with the Steel Whip", + "year": 1954, + "cast": [ + "Dick Simmons", + "Dale Van Sickel" + ], + "genres": [] + }, + { + "title": "Massacre Canyon", + "year": 1954, + "cast": [ + "Philip Carey", + "Audrey Totter" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Masterson of Kansas", + "year": 1954, + "cast": [ + "George Montgomery", + "Nancy Gates" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Men of the Fighting Lady", + "year": 1954, + "cast": [ + "Van Johnson", + "Walter Pidgeon", + "Frank Lovejoy" + ], + "genres": [ + "War" + ] + }, + { + "title": "The Miami Story", + "year": 1954, + "cast": [ + "Barry Sullivan", + "Luther Adler", + "Beverly Garland" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Miss Robin Crusoe", + "year": 1954, + "cast": [ + "Amanda Blake", + "George Nader" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Monster from the Ocean Floor", + "year": 1954, + "cast": [ + "Anne Kimbell", + "Stuart Wade" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Naked Alibi", + "year": 1954, + "cast": [ + "Sterling Hayden", + "Gloria Grahame", + "Gene Barry" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Naked Jungle", + "year": 1954, + "cast": [ + "Charlton Heston", + "Eleanor Parker" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "New Faces", + "year": 1954, + "cast": [ + "Ronny Graham", + "Eartha Kitt" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Night People", + "year": 1954, + "cast": [ + "Gregory Peck", + "Broderick Crawford", + "Anita Bjork", + "Rita Gam", + "Walter Abel", + "Buddy Ebsen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "On the Waterfront", + "year": 1954, + "cast": [ + "Marlon Brando", + "Eva Marie Saint", + "Karl Malden", + "Rod Steiger", + "Lee J. Cobb" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Other Woman", + "year": 1954, + "cast": [ + "Cleo Moore", + "Hugo Haas" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Outcast", + "year": 1954, + "cast": [ + "John Derek", + "Joan Evans", + "Jim Davis" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Outlaw's Daughter", + "year": 1954, + "cast": [ + "Bill Williams", + "Jim Davis" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Outlaw Stallion", + "year": 1954, + "cast": [ + "Philip Carey", + "Dorothy Patrick" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Overland Pacific", + "year": 1954, + "cast": [ + "Jock Mahoney", + "Peggie Castle", + "Adele Jergens" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Paris Playboys", + "year": 1954, + "cast": [ + "Leo Gorcey", + "Huntz Hall" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Passion", + "year": 1954, + "cast": [ + "Cornel Wilde", + "Yvonne De Carlo", + "Raymond Burr" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Phantom of the Rue Morgue", + "year": 1954, + "cast": [ + "Karl Malden", + "Claude Dauphin", + "Patricia Medina" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Phantom Stallion", + "year": 1954, + "cast": [ + "Rex Allen", + "Carla Balenda" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Phffft!", + "year": 1954, + "cast": [ + "Judy Holliday", + "Jack Lemmon", + "Jack Carson" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Playgirl", + "year": 1954, + "cast": [ + "Shelley Winters", + "Colleen Miller" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Port of Hell", + "year": 1954, + "cast": [ + "Dane Clark", + "Carole Mathews" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Pride of the Blue Grass", + "year": 1954, + "cast": [ + "Lloyd Bridges", + "Vera Miles" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Prince Valiant", + "year": 1954, + "cast": [ + "James Mason", + "Janet Leigh", + "Robert Wagner" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Princess of the Nile", + "year": 1954, + "cast": [ + "Debra Paget", + "Jeffrey Hunter", + "Michael Rennie" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Prisoner of War", + "year": 1954, + "cast": [ + "Ronald Reagan", + "Steve Forrest", + "Oscar Homolka" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "Private Hell 36", + "year": 1954, + "cast": [ + "Ida Lupino", + "Howard Duff" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Pushover", + "year": 1954, + "cast": [ + "Fred MacMurray", + "Kim Novak", + "Philip Carey", + "Dorothy Malone" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Racing Blood", + "year": 1954, + "cast": [ + "Bill Williams", + "Jean Porter" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Raid", + "year": 1954, + "cast": [ + "Van Heflin", + "Anne Bancroft", + "Richard Boone", + "Lee Marvin" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Rails Into Laramie", + "year": 1954, + "cast": [ + "John Payne", + "Mari Blanchard", + "Dan Duryea" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Rear Window", + "year": 1954, + "cast": [ + "Grace Kelly", + "James Stewart", + "Thelma Ritter", + "Wendell Corey", + "Raymond Burr" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Red Garters", + "year": 1954, + "cast": [ + "Rosemary Clooney", + "Jack Carson", + "Guy Mitchell", + "Gene Barry" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Return from the Sea", + "year": 1954, + "cast": [ + "Jan Sterling", + "Neville Brand" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Return to Treasure Island", + "year": 1954, + "cast": [ + "Tab Hunter", + "Dawn Addams", + "Porter Hall" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Rhapsody", + "year": 1954, + "cast": [ + "Elizabeth Taylor", + "Vittorio Gassman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Ricochet Romance", + "year": 1954, + "cast": [ + "Marjorie Main", + "Chill Wills" + ], + "genres": [ + "Western", + "Comedy" + ] + }, + { + "title": "Ride Clear of Diablo", + "year": 1954, + "cast": [ + "Audie Murphy", + "Dan Duryea", + "Susan Cabot", + "Russell Johnson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Riders to the Stars", + "year": 1954, + "cast": [ + "William Lundigan", + "Martha Hyer", + "Dawn Addams" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Riding Shotgun", + "year": 1954, + "cast": [ + "Randolph Scott", + "Joan Weldon" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Ring of Fear", + "year": 1954, + "cast": [ + "Clyde Beatty", + "Mickey Spillane", + "Pat O'Brien" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Riot in Cell Block 11", + "year": 1954, + "cast": [ + "Neville Brand", + "Frank Faylen", + "Leo Gordon" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "River of No Return", + "year": 1954, + "cast": [ + "Robert Mitchum", + "Marilyn Monroe", + "Rory Calhoun" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Robinson Crusoe", + "year": 1954, + "cast": [ + "Dan O'Herlihy" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Rocket Man", + "year": 1954, + "cast": [ + "Charles Coburn", + "Anne Francis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Rogue Cop", + "year": 1954, + "cast": [ + "Robert Taylor", + "George Raft", + "Janet Leigh" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Roogie's Bump", + "year": 1954, + "cast": [ + "Ruth Warrick", + "Olive Blakeney" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Rose Marie", + "year": 1954, + "cast": [ + "Ann Blyth", + "Howard Keel", + "Fernando Lamas" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Sabaka", + "year": 1954, + "cast": [ + "Boris Karloff", + "June Foray" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Sabrina", + "year": 1954, + "cast": [ + "Humphrey Bogart", + "Audrey Hepburn", + "William Holden" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Salt of the Earth", + "year": 1954, + "cast": [ + "Rosaura Revueltas", + "Will Geer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Saracen Blade", + "year": 1954, + "cast": [ + "Ricardo Montalbán", + "Betta St. John" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Saskatchewan", + "year": 1954, + "cast": [ + "Alan Ladd", + "Shelley Winters", + "J. Carrol Naish" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Satan's Waitin'", + "year": 1954, + "cast": [ + "Looney Tunes" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Secret of the Incas", + "year": 1954, + "cast": [ + "Charlton Heston", + "Robert Young", + "Nicole Maurey" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Security Risk", + "year": 1954, + "cast": [ + "John Ireland", + "Dorothy Malone" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Seven Brides for Seven Brothers", + "year": 1954, + "cast": [ + "Howard Keel", + "Jane Powell", + "Russ Tamblyn", + "Jeff Richards", + "Julie Newmar", + "Ruta Lee" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Shanghai Story", + "year": 1954, + "cast": [ + "Ruth Roman", + "Edmond O'Brien" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "She Couldn't Say No", + "year": 1954, + "cast": [ + "Robert Mitchum", + "Jean Simmons" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Shield for Murder", + "year": 1954, + "cast": [ + "Edmond O'Brien", + "Marla English", + "John Agar" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Siege at Red River", + "year": 1954, + "cast": [ + "Van Johnson", + "Joanne Dru" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Sign of the Pagan", + "year": 1954, + "cast": [ + "Jack Palance", + "Jeff Chandler" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Silent Raiders", + "year": 1954, + "cast": [ + "Richard Bartlett", + "Dean Fredericks" + ], + "genres": [ + "War" + ] + }, + { + "title": "The Silver Chalice", + "year": 1954, + "cast": [ + "Paul Newman", + "Virginia Mayo" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Silver Lode", + "year": 1954, + "cast": [ + "Dan Duryea", + "John Payne", + "Lizabeth Scott" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Sitting Bull", + "year": 1954, + "cast": [ + "Dale Robertson", + "Mary Murphy" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Smarty Cat", + "year": 1954, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "The Snow Creature", + "year": 1954, + "cast": [ + "Paul Langton" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Southwest Passage", + "year": 1954, + "cast": [ + "Joanne Dru", + "Rod Cameron", + "John Ireland" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Stamp Day for Superman", + "year": 1954, + "cast": [ + "George Reeves" + ], + "genres": [ + "Short" + ] + }, + { + "title": "A Star Is Born", + "year": 1954, + "cast": [ + "Judy Garland", + "James Mason", + "Charles Bickford", + "Jack Carson", + "Tommy Noonan" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Steel Cage", + "year": 1954, + "cast": [ + "Maureen O'Sullivan", + "Lawrence Tierney" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Student Prince", + "year": 1954, + "cast": [ + "Ann Blyth", + "Edmund Purdom", + "Louis Calhern", + "Edmund Gwenn", + "Betta St. John" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Suddenly", + "year": 1954, + "cast": [ + "Frank Sinatra", + "Sterling Hayden", + "Nancy Gates" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Susan Slept Here", + "year": 1954, + "cast": [ + "Dick Powell", + "Debbie Reynolds", + "Anne Francis" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Tanganyika", + "year": 1954, + "cast": [ + "Van Heflin", + "Ruth Roman", + "Howard Duff" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Target Earth", + "year": 1954, + "cast": [ + "Richard Denning", + "Kathleen Crowley" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Taza, Son of Cochise", + "year": 1954, + "cast": [ + "Rock Hudson", + "Barbara Rush", + "Rex Reason" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Tennessee Champ", + "year": 1954, + "cast": [ + "Shelley Winters", + "Keenan Wynn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Them!", + "year": 1954, + "cast": [ + "James Whitmore", + "Edmund Gwenn" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "There's No Business Like Show Business", + "year": 1954, + "cast": [ + "Ethel Merman", + "Donald O'Connor", + "Marilyn Monroe", + "Mitzi Gaynor", + "Dan Dailey", + "Johnnie Ray" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "They Rode West", + "year": 1954, + "cast": [ + "Robert Francis", + "Donna Reed", + "Philip Carey" + ], + "genres": [ + "Western" + ] + }, + { + "title": "They Were So Young", + "year": 1954, + "cast": [ + "Raymond Burr", + "Scott Brady", + "Johanna Matz" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "This Is My Love", + "year": 1954, + "cast": [ + "Linda Darnell", + "Faith Domergue" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Three Coins in the Fountain", + "year": 1954, + "cast": [ + "Clifton Webb", + "Dorothy McGuire", + "Jean Peters", + "Rossano Brazzi" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Three Hours to Kill", + "year": 1954, + "cast": [ + "Dana Andrews", + "Donna Reed" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Three Young Texans", + "year": 1954, + "cast": [ + "Jeffrey Hunter", + "Keefe Brasselle", + "Mitzi Gaynor" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Tobor the Great", + "year": 1954, + "cast": [ + "Charles Drake", + "Steven Geray" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Top Banana", + "year": 1954, + "cast": [ + "Phil Silvers", + "Rose Marie" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Track of the Cat", + "year": 1954, + "cast": [ + "Robert Mitchum", + "Teresa Wright" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Untamed Heiress", + "year": 1954, + "cast": [ + "Judy Canova", + "George Cleveland" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Trader Tom of the China Seas", + "year": 1954, + "cast": [ + "Harry Lauter", + "Lyle Talbot" + ], + "genres": [] + }, + { + "title": "Two Guns and a Badge", + "year": 1954, + "cast": [ + "Wayne Morris", + "Beverly Garland" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Valley of the Kings", + "year": 1954, + "cast": [ + "Robert Taylor", + "Eleanor Parker" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Vanishing Prairie", + "year": 1954, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "Vera Cruz", + "year": 1954, + "cast": [ + "Gary Cooper", + "Burt Lancaster", + "Ernest Borgnine", + "Cesar Romero", + "Sara Montiel", + "Denise Darcel" + ], + "genres": [ + "Western" + ] + }, + { + "title": "War Arrow", + "year": 1954, + "cast": [ + "Maureen O'Hara", + "Jeff Chandler" + ], + "genres": [ + "Western" + ] + }, + { + "title": "White Christmas", + "year": 1954, + "cast": [ + "Rosemary Clooney", + "Bing Crosby", + "Danny Kaye", + "Vera-Ellen", + "Dean Jagger" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The White Orchid", + "year": 1954, + "cast": [ + "William Lundigan", + "Peggie Castle" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Witness to Murder", + "year": 1954, + "cast": [ + "Barbara Stanwyck", + "George Sanders" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "Woman's World", + "year": 1954, + "cast": [ + "Clifton Webb", + "June Allyson", + "Van Heflin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "World for Ransom", + "year": 1954, + "cast": [ + "Dan Duryea", + "Gene Lockhart" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Wyoming Renegades", + "year": 1954, + "cast": [ + "Phil Carey", + "Gene Evans", + "Martha Hyer" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Yankee Pasha", + "year": 1954, + "cast": [ + "Rhonda Fleming", + "Jeff Chandler" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Yellow Mountain", + "year": 1954, + "cast": [ + "Lex Barker", + "Mala Powers", + "Howard Duff" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Yellow Tomahawk", + "year": 1954, + "cast": [ + "Rory Calhoun", + "Peggie Castle" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Young at Heart", + "year": 1954, + "cast": [ + "Doris Day", + "Frank Sinatra" + ], + "genres": [ + "Musical", + "Drama" + ] + }, + { + "title": "Yukon Vengeance", + "year": 1954, + "cast": [ + "Kirby Grant", + "Mary Ellen Kay" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "5 Against the House", + "year": 1955, + "cast": [ + "Kim Novak", + "Brian Keith" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Abbott and Costello Meet the Keystone Kops", + "year": 1955, + "cast": [ + "Abbott and Costello", + "Mack Sennett" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Abbott and Costello Meet the Mummy", + "year": 1955, + "cast": [ + "Abbott and Costello" + ], + "genres": [ + "Horror", + "Comedy" + ] + }, + { + "title": "The Adventures of Captain Africa", + "year": 1955, + "cast": [ + "John Hart", + "Rick Vallin" + ], + "genres": [] + }, + { + "title": "The Adventures of Quentin Durward", + "year": 1955, + "cast": [ + "Robert Taylor", + "Kay Kendall" + ], + "genres": [ + "Historical" + ] + }, + { + "title": "African Manhunt", + "year": 1955, + "cast": [ + "Myron Healey", + "John Kellogg" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Age 13", + "year": 1955, + "cast": [], + "genres": [] + }, + { + "title": "Ain't Misbehavin'", + "year": 1955, + "cast": [ + "Rory Calhoun", + "Piper Laurie" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Air Strike", + "year": 1955, + "cast": [ + "Richard Denning", + "Gloria Jean" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "All That Heaven Allows", + "year": 1955, + "cast": [ + "Jane Wyman", + "Rock Hudson" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Americano", + "year": 1955, + "cast": [ + "Glenn Ford", + "Cesar Romero" + ], + "genres": [ + "Western" + ] + }, + { + "title": "An Annapolis Story", + "year": 1955, + "cast": [ + "John Derek", + "Diana Lynn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Angela", + "year": 1955, + "cast": [ + "Mara Lane", + "Rossano Brazzi" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Apache Ambush", + "year": 1955, + "cast": [ + "Bill Williams", + "Richard Jaeckel" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Apache Woman", + "year": 1955, + "cast": [ + "Joan Taylor", + "Lloyd Bridges" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Artists and Models", + "year": 1955, + "cast": [ + "Dean Martin", + "Jerry Lewis", + "Shirley MacLaine", + "Dorothy Malone" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "At Gunpoint", + "year": 1955, + "cast": [ + "Fred MacMurray", + "Dorothy Malone" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Bad Day at Black Rock", + "year": 1955, + "cast": [ + "Spencer Tracy", + "Robert Ryan", + "Walter Brennan", + "Lee Marvin", + "Ernest Borgnine", + "Anne Francis" + ], + "genres": [ + "Western", + "Drama" + ] + }, + { + "title": "Battle Cry", + "year": 1955, + "cast": [ + "Van Heflin", + "Aldo Ray", + "James Whitmore", + "Tab Hunter", + "Mona Freeman", + "Anne Francis" + ], + "genres": [ + "War" + ] + }, + { + "title": "The Battle of Gettysburg", + "year": 1955, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "Battle Taxi", + "year": 1955, + "cast": [ + "Sterling Hayden", + "Arthur Franz" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "Beanstalk Bunny", + "year": 1955, + "cast": [ + "Looney Tunes" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Bedevilled", + "year": 1955, + "cast": [ + "Anne Baxter", + "Steve Forrest" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Bengazi", + "year": 1955, + "cast": [ + "Richard Conte", + "Victor McLaglen", + "Mala Powers" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Big Bluff", + "year": 1955, + "cast": [ + "Martha Vickers", + "John Bromfield" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Big Combo", + "year": 1955, + "cast": [ + "Cornel Wilde", + "Richard Conte" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Big House, U.S.A.", + "year": 1955, + "cast": [ + "Broderick Crawford", + "William Talman", + "Charles Bronson" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Big Knife", + "year": 1955, + "cast": [ + "Jack Palance", + "Ida Lupino", + "Rod Steiger", + "Shelley Winters", + "Wendell Corey", + "Jean Hagen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Blackboard Jungle", + "year": 1955, + "cast": [ + "Glenn Ford", + "Sidney Poitier", + "Vic Morrow", + "Richard Kiley", + "Louis Calhern", + "Anne Francis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Blood Alley", + "year": 1955, + "cast": [ + "John Wayne", + "Lauren Bacall" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Bowery to Bagdad", + "year": 1955, + "cast": [ + "Leo Gorcey", + "Huntz Hall", + "Eric Blore" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Bride of the Monster", + "year": 1955, + "cast": [ + "Bela Lugosi" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Bring Your Smile Along", + "year": 1955, + "cast": [ + "Frankie Laine", + "Constance Towers" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Bullet for Joey", + "year": 1955, + "cast": [ + "Edward G. Robinson", + "George Raft", + "Audrey Totter" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Canyon Crossroads", + "year": 1955, + "cast": [ + "Richard Basehart", + "Phyllis Kirk" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Captain Lightfoot", + "year": 1955, + "cast": [ + "Rock Hudson", + "Barbara Rush", + "Jeff Morrow" + ], + "genres": [ + "Historical", + "Drama" + ] + }, + { + "title": "Carolina Cannonball", + "year": 1955, + "cast": [ + "Judy Canova", + "Andy Clyde" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Chicago Syndicate", + "year": 1955, + "cast": [ + "Dennis O'Keefe", + "Abbe Lane" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Chief Crazy Horse", + "year": 1955, + "cast": [ + "Victor Mature", + "Suzan Ball", + "John Lund" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Cinerama Holiday", + "year": 1955, + "cast": [ + "John Marsh", + "Betty Marsh" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "City of Shadows", + "year": 1955, + "cast": [ + "Victor McLaglen", + "Kathleen Crowley" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Cobweb", + "year": 1955, + "cast": [ + "Richard Widmark", + "Gloria Grahame", + "Lauren Bacall", + "Lillian Gish", + "Charles Boyer", + "John Kerr", + "Susan Strasberg", + "Fay Wray", + "Adele Jergens", + "Oscar Levant" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Conquest of Space", + "year": 1955, + "cast": [ + "Walter Brooke", + "Mickey Shaughnessy" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Count Three and Pray", + "year": 1955, + "cast": [ + "Van Heflin", + "Joanne Woodward" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Court-Martial of Billy Mitchell", + "year": 1955, + "cast": [ + "Gary Cooper", + "Rod Steiger", + "Charles Bickford", + "Elizabeth Montgomery" + ], + "genres": [ + "Drama", + "Biography" + ] + }, + { + "title": "Crashout", + "year": 1955, + "cast": [ + "William Bendix", + "William Talman", + "Arthur Kennedy" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Creature with the Atom Brain", + "year": 1955, + "cast": [ + "Richard Denning", + "Angela Stevens" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Crooked Web", + "year": 1955, + "cast": [ + "Frank Lovejoy", + "Mari Blanchard" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Cross Channel", + "year": 1955, + "cast": [ + "Wayne Morris", + "Yvonne Furneaux" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Cult of the Cobra", + "year": 1955, + "cast": [ + "Faith Domergue", + "Richard Long" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Daddy Long Legs", + "year": 1955, + "cast": [ + "Fred Astaire", + "Leslie Caron" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Dark Avenger", + "year": 1955, + "cast": [ + "Errol Flynn", + "Joanne Dru" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Davy Crockett, King of the Wild Frontier", + "year": 1955, + "cast": [ + "Fess Parker", + "Buddy Ebsen" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Day the World Ended", + "year": 1955, + "cast": [ + "Richard Denning", + "Adele Jergens" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Dementia", + "year": 1955, + "cast": [ + "Adrienne Barrett" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Desert Sands", + "year": 1955, + "cast": [ + "Ralph Meeker", + "Marla English" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Desperate Hours", + "year": 1955, + "cast": [ + "Humphrey Bogart", + "Fredric March", + "Gig Young", + "Arthur Kennedy", + "Martha Scott" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Devil Goddess", + "year": 1955, + "cast": [ + "Johnny Weissmuller", + "Angela Stevens" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Dial Red O", + "year": 1955, + "cast": [ + "Bill Elliott", + "Helene Stanley" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Double Jeopardy", + "year": 1955, + "cast": [ + "Rod Cameron", + "Gale Robbins" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Duel on the Mississippi", + "year": 1955, + "cast": [ + "Lex Barker", + "Patricia Medina" + ], + "genres": [ + "Western" + ] + }, + { + "title": "East of Eden", + "year": 1955, + "cast": [ + "Julie Harris", + "James Dean", + "Raymond Massey", + "Burl Ives", + "Richard Davalos", + "Jo Van Fleet", + "Albert Dekker" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The End of the Affair", + "year": 1955, + "cast": [ + "Deborah Kerr", + "Van Johnson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Escape to Burma", + "year": 1955, + "cast": [ + "Barbara Stanwyck", + "Robert Ryan" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Eternal Sea", + "year": 1955, + "cast": [ + "Sterling Hayden", + "Alexis Smith" + ], + "genres": [ + "War" + ] + }, + { + "title": "The Far Country", + "year": 1955, + "cast": [ + "James Stewart", + "Walter Brennan" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Far Horizons", + "year": 1955, + "cast": [ + "Fred MacMurray", + "Charlton Heston" + ], + "genres": [ + "Historical" + ] + }, + { + "title": "The Fast and the Furious", + "year": 1955, + "cast": [ + "John Ireland", + "Dorothy Malone" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Female Jungle", + "year": 1955, + "cast": [ + "Lawrence Tierney", + "Jayne Mansfield" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Female on the Beach", + "year": 1955, + "cast": [ + "Joan Crawford", + "Jeff Chandler" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Fighting Chance", + "year": 1955, + "cast": [ + "Julie London", + "Rod Cameron" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Finger Man", + "year": 1955, + "cast": [ + "Forrest Tucker", + "Peggie Castle" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Fort Yuma", + "year": 1955, + "cast": [ + "Peter Graves", + "Joan Vohs" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Foxfire", + "year": 1955, + "cast": [ + "Jane Russell", + "Jeff Chandler", + "Dan Duryea" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Francis in the Navy", + "year": 1955, + "cast": [ + "Donald O'Connor", + "Martha Hyer" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Gamma People", + "year": 1955, + "cast": [ + "Paul Douglas", + "Eva Bartok" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Gentlemen Marry Brunettes", + "year": 1955, + "cast": [ + "Jane Russell", + "Jeanne Crain" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Girl in the Red Velvet Swing", + "year": 1955, + "cast": [ + "Ray Milland", + "Joan Collins", + "Farley Granger" + ], + "genres": [ + "Historical", + "Drama" + ] + }, + { + "title": "The Girl Rush", + "year": 1955, + "cast": [ + "Rosalind Russell", + "Fernando Lamas" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Glass Slipper", + "year": 1955, + "cast": [ + "Leslie Caron", + "Michael Wilding" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Good Morning Miss Dove", + "year": 1955, + "cast": [ + "Jennifer Jones", + "Robert Stack" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Gun That Won the West", + "year": 1955, + "cast": [ + "Dennis Morgan", + "Paula Raymond" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Guys and Dolls", + "year": 1955, + "cast": [ + "Marlon Brando", + "Frank Sinatra", + "Jean Simmons", + "Vivian Blaine" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Hare Brush", + "year": 1955, + "cast": [ + "Looney Tunes" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Headline Hunters", + "year": 1955, + "cast": [ + "Rod Cameron", + "Julie Bishop" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Hell on Frisco Bay", + "year": 1955, + "cast": [ + "Alan Ladd", + "Edward G. Robinson" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Hell's Horizon", + "year": 1955, + "cast": [ + "John Ireland", + "Marla English" + ], + "genres": [ + "War" + ] + }, + { + "title": "Hell's Island", + "year": 1955, + "cast": [ + "John Payne", + "Mary Murphy" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "High Society", + "year": 1955, + "cast": [ + "Leo Gorcey", + "Huntz Hall" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hit the Deck", + "year": 1955, + "cast": [ + "Ann Miller", + "Jane Powell", + "Debbie Reynolds", + "Tony Martin", + "Russ Tamblyn", + "Vic Damone" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Hold Back Tomorrow", + "year": 1955, + "cast": [ + "John Agar", + "Cleo Moore" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "House of Bamboo", + "year": 1955, + "cast": [ + "Robert Ryan", + "Robert Stack" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "How to Be Very, Very Popular", + "year": 1955, + "cast": [ + "Betty Grable", + "Sheree North", + "Bob Cummings" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hyde and Hare", + "year": 1955, + "cast": [ + "Looney Tunes" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "I Am a Camera", + "year": 1955, + "cast": [ + "Julie Harris", + "Laurence Harvey", + "Ron Randell", + "Shelley Winters" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "I Cover the Underworld", + "year": 1955, + "cast": [ + "Sean McClory", + "Joanne Jordan" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "I Died a Thousand Times", + "year": 1955, + "cast": [ + "Jack Palance", + "Shelley Winters" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "I'll Cry Tomorrow", + "year": 1955, + "cast": [ + "Susan Hayward", + "Richard Conte" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Illegal", + "year": 1955, + "cast": [ + "Edward G. Robinson", + "Nina Foch", + "Jayne Mansfield" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Indian Fighter", + "year": 1955, + "cast": [ + "Kirk Douglas", + "Elsa Martinelli" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Interrupted Melody", + "year": 1955, + "cast": [ + "Glenn Ford", + "Eleanor Parker" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "It Came from Beneath the Sea", + "year": 1955, + "cast": [ + "Kenneth Tobey", + "Faith Domergue" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "It's Always Fair Weather", + "year": 1955, + "cast": [ + "Gene Kelly", + "Cyd Charisse", + "Dan Dailey", + "Michael Kidd" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "It's a Dog's Life", + "year": 1955, + "cast": [ + "Edmund Gwenn", + "Dean Jagger" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Jail Busters", + "year": 1955, + "cast": [ + "Leo Gorcey", + "Huntz Hall" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Joe MacBeth", + "year": 1955, + "cast": [ + "Jean Simmons", + "Paul Douglas" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Jump into Hell", + "year": 1955, + "cast": [ + "Kurt Kasznar", + "Patricia Blair" + ], + "genres": [ + "War" + ] + }, + { + "title": "Jungle Moon Men", + "year": 1955, + "cast": [ + "Johnny Weissmuller", + "Jean Byron" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Jupiter's Darling", + "year": 1955, + "cast": [ + "Esther Williams", + "Howard Keel", + "Marge Champion", + "Gower Champion" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Kentuckian", + "year": 1955, + "cast": [ + "Burt Lancaster", + "Dianne Foster", + "Diana Lynn" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Kentucky Rifle", + "year": 1955, + "cast": [ + "Chill Wills", + "Cathy Downs" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Killer's Kiss", + "year": 1955, + "cast": [ + "Jamie Smith", + "Frank Silvera" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "King of the Carnival", + "year": 1955, + "cast": [ + "Harry Lauter", + "Fran Bennett" + ], + "genres": [] + }, + { + "title": "King's Rhapsody", + "year": 1955, + "cast": [ + "Errol Flynn", + "Patrice Wymore" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The King's Thief", + "year": 1955, + "cast": [ + "Ann Blyth", + "David Niven" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Kismet", + "year": 1955, + "cast": [ + "Howard Keel", + "Ann Blyth", + "Dolores Gray" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Kiss Me Deadly", + "year": 1955, + "cast": [ + "Ralph Meeker", + "Albert Dekker", + "Gaby Rodgers", + "Cloris Leachman" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Kiss of Fire", + "year": 1955, + "cast": [ + "Jack Palance", + "Barbara Rush" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Lady and the Tramp", + "year": 1955, + "cast": [ + "Peggy Lee", + "Barbara Luddy" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Lady Godiva of Coventry", + "year": 1955, + "cast": [ + "Maureen O'Hara", + "George Nader", + "Victor McLaglen" + ], + "genres": [ + "Historical" + ] + }, + { + "title": "Land of the Pharaohs", + "year": 1955, + "cast": [ + "Jack Hawkins", + "Joan Collins" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Las Vegas Shakedown", + "year": 1955, + "cast": [ + "Dennis O'Keefe", + "Coleen Gray" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Last Command", + "year": 1955, + "cast": [ + "Sterling Hayden", + "Anna Maria Alberghetti", + "Ernest Borgnine" + ], + "genres": [ + "War", + "Western" + ] + }, + { + "title": "The Last Frontier", + "year": 1955, + "cast": [ + "Victor Mature", + "Guy Madison", + "Robert Preston", + "Anne Bancroft" + ], + "genres": [ + "Western" + ] + }, + { + "title": "A Lawless Street", + "year": 1955, + "cast": [ + "Randolph Scott", + "Angela Lansbury" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Lay That Rifle Down", + "year": 1955, + "cast": [ + "Judy Canova", + "Robert Lowery" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Left Hand of God", + "year": 1955, + "cast": [ + "Humphrey Bogart", + "Gene Tierney" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Life in the Balance", + "year": 1955, + "cast": [ + "Ricardo Montalban", + "Anne Bancroft" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Long Gray Line", + "year": 1955, + "cast": [ + "Tyrone Power", + "Maureen O'Hara" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Looters", + "year": 1955, + "cast": [ + "Rory Calhoun", + "Julie Adams" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Love Is a Many-Splendored Thing", + "year": 1955, + "cast": [ + "Jennifer Jones", + "William Holden" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Love Me or Leave Me", + "year": 1955, + "cast": [ + "Doris Day", + "James Cagney" + ], + "genres": [ + "Musical", + "Biography" + ] + }, + { + "title": "Lucy Gallant", + "year": 1955, + "cast": [ + "Jane Wyman", + "Charlton Heston" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Ma and Pa Kettle at Waikiki", + "year": 1955, + "cast": [ + "Marjorie Main", + "Percy Kilbride" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Magic Fire", + "year": 1955, + "cast": [ + "Alan Badel", + "Valentina Cortese", + "Rita Gam", + "Yvonne De Carlo" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "The Magnificent Matador", + "year": 1955, + "cast": [ + "Maureen O'Hara", + "Anthony Quinn", + "Richard Denning", + "Lola Albright" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Mambo", + "year": 1955, + "cast": [ + "Silvana Mangano", + "Michael Rennie" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Man Alone", + "year": 1955, + "cast": [ + "Ray Milland", + "Mary Murphy" + ], + "genres": [ + "Western" + ] + }, + { + "title": "A Man Called Peter", + "year": 1955, + "cast": [ + "Richard Todd", + "Jean Peters" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Man from Bitter Ridge", + "year": 1955, + "cast": [ + "Mara Corday", + "Lex Barker" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Man from Laramie", + "year": 1955, + "cast": [ + "James Stewart", + "Arthur Kennedy", + "Cathy O'Donnell", + "Donald Crisp" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Man with the Golden Arm", + "year": 1955, + "cast": [ + "Frank Sinatra", + "Eleanor Parker", + "Kim Novak", + "Darren McGavin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Man with the Gun", + "year": 1955, + "cast": [ + "Robert Mitchum", + "Jan Sterling" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Man Without a Star", + "year": 1955, + "cast": [ + "Kirk Douglas", + "Jeanne Crain", + "Claire Trevor", + "Richard Boone" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Many Rivers to Cross", + "year": 1955, + "cast": [ + "Robert Taylor", + "Eleanor Parker" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Marauders", + "year": 1955, + "cast": [ + "Dan Duryea", + "Keenan Wynn" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Marty", + "year": 1955, + "cast": [ + "Ernest Borgnine", + "Betsy Blair" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The McConnell Story", + "year": 1955, + "cast": [ + "Alan Ladd", + "June Allyson" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Mister Roberts", + "year": 1955, + "cast": [ + "Henry Fonda", + "James Cagney", + "Jack Lemmon", + "William Powell", + "Ward Bond", + "Betsy Palmer" + ], + "genres": [ + "War" + ] + }, + { + "title": "Moonfleet", + "year": 1955, + "cast": [ + "George Sanders", + "Stewart Granger" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Mr. Arkadin", + "year": 1955, + "cast": [ + "Orson Welles", + "Akim Tamiroff" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Murder Is My Beat", + "year": 1955, + "cast": [ + "Barbara Payton", + "Paul Langton" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "My Sister Eileen", + "year": 1955, + "cast": [ + "Betty Garrett", + "Janet Leigh" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Naked Dawn", + "year": 1955, + "cast": [ + "Arthur Kennedy", + "Betta St. John" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Naked Street", + "year": 1955, + "cast": [ + "Anne Bancroft", + "Anthony Quinn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "New Orleans Uncensored", + "year": 1955, + "cast": [ + "Beverly Garland", + "Arthur Franz" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "New York Confidential", + "year": 1955, + "cast": [ + "Broderick Crawford", + "Richard Conte" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Night Holds Terror", + "year": 1955, + "cast": [ + "Vince Edwards", + "John Cassavetes" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Night of the Hunter", + "year": 1955, + "cast": [ + "Robert Mitchum", + "Shelley Winters" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "No Man's Woman", + "year": 1955, + "cast": [ + "Marie Windsor", + "Patric Knowles" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "No Place to Hide", + "year": 1955, + "cast": [ + "Marsha Hunt", + "David Brian" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Not as a Stranger", + "year": 1955, + "cast": [ + "Robert Mitchum", + "Frank Sinatra" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Oklahoma!", + "year": 1955, + "cast": [ + "Gordon MacRae", + "Shirley Jones", + "Rod Steiger", + "Gloria Grahame", + "Gene Nelson", + "Eddie Albert" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "One Desire", + "year": 1955, + "cast": [ + "Anne Baxter", + "Rock Hudson", + "Julia Adams" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "One Froggy Evening", + "year": 1955, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "Outlaw Treasure", + "year": 1955, + "cast": [ + "Adele Jergens" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Panther Girl of the Kongo", + "year": 1955, + "cast": [ + "Phyllis Coates" + ], + "genres": [] + }, + { + "title": "Paris Follies of 1956", + "year": 1955, + "cast": [ + "Forrest Tucker", + "Margaret Whiting", + "Barbara Whiting", + "Martha Hyer" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Pearl of the South Pacific", + "year": 1955, + "cast": [ + "Virginia Mayo", + "Dennis Morgan" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Pete Kelly's Blues", + "year": 1955, + "cast": [ + "Jack Webb", + "Janet Leigh" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Phantom from 10,000 Leagues", + "year": 1955, + "cast": [ + "Kent Taylor", + "Cathy Downs" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Phenix City Story", + "year": 1955, + "cast": [ + "John McIntire", + "Richard Kiley" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Picnic", + "year": 1955, + "cast": [ + "William Holden", + "Kim Novak", + "Rosalind Russell", + "Susan Strasberg", + "Cliff Robertson", + "Betty Field" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Pied Piper of Cleveland", + "year": 1955, + "cast": [ + "Bill Randle" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Pirates of Tripoli", + "year": 1955, + "cast": [ + "Paul Henreid", + "Patricia Medina" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Prince of Players", + "year": 1955, + "cast": [ + "Richard Burton", + "John Derek" + ], + "genres": [ + "Historical" + ] + }, + { + "title": "The Private War of Major Benson", + "year": 1955, + "cast": [ + "Charlton Heston", + "Julie Adams" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Prize of Gold", + "year": 1955, + "cast": [ + "Richard Widmark", + "Mai Zetterling" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Prodigal", + "year": 1955, + "cast": [ + "Lana Turner", + "Louis Calhern" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Purple Mask", + "year": 1955, + "cast": [ + "Tony Curtis", + "Colleen Miller", + "Angela Lansbury" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Queen Bee", + "year": 1955, + "cast": [ + "Joan Crawford", + "Betsy Palmer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Rabbit Rampage", + "year": 1955, + "cast": [ + "Looney Tunes" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "The Racers", + "year": 1955, + "cast": [ + "Kirk Douglas", + "Bella Darvi" + ], + "genres": [ + "Sports", + "Drama" + ] + }, + { + "title": "Rage at Dawn", + "year": 1955, + "cast": [ + "Randolph Scott", + "Forrest Tucker" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Rains of Ranchipur", + "year": 1955, + "cast": [ + "Lana Turner", + "Richard Burton", + "Fred MacMurray", + "Michael Rennie" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Rebel Without a Cause", + "year": 1955, + "cast": [ + "James Dean", + "Natalie Wood" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Revenge of the Creature", + "year": 1955, + "cast": [ + "John Agar", + "Lori Nelson" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Road to Denver", + "year": 1955, + "cast": [ + "John Payne", + "Mona Freeman" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Robbers' Roost", + "year": 1955, + "cast": [ + "Richard Boone", + "George Montgomery" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Roman-Legion Hare", + "year": 1955, + "cast": [ + "Looney Tunes" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "The Rose Tattoo", + "year": 1955, + "cast": [ + "Anna Magnani", + "Burt Lancaster" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Run for Cover", + "year": 1955, + "cast": [ + "James Cagney", + "Viveca Lindfors", + "John Derek" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Running Wild", + "year": 1955, + "cast": [ + "William Campbell", + "Mamie van Doren", + "Keenan Wynn", + "Kathleen Case" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Sabaka", + "year": 1955, + "cast": [ + "Boris Karloff", + "Reginald Denny" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Sahara Hare", + "year": 1955, + "cast": [ + "Bugs Bunny" + ], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "Santa Fe Passage", + "year": 1955, + "cast": [ + "John Payne", + "Faith Domergue" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Scarlet Coat", + "year": 1955, + "cast": [ + "Cornel Wilde", + "Michael Wilding", + "Anne Francis" + ], + "genres": [ + "Historical" + ] + }, + { + "title": "The Sea Chase", + "year": 1955, + "cast": [ + "Lana Turner", + "John Wayne" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Second Greatest Sex", + "year": 1955, + "cast": [ + "Jeanne Crain", + "Kitty Kallen", + "Mamie van Doren", + "Kathleen Case", + "George Nader", + "Bert Lahr" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Seminole Uprising", + "year": 1955, + "cast": [ + "George Montgomery", + "Karin Booth" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Seven Angry Men", + "year": 1955, + "cast": [ + "Raymond Massey", + "Jeffrey Hunter", + "Debra Paget" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Seven Cities of Gold", + "year": 1955, + "cast": [ + "Jeffrey Hunter", + "Rita Moreno" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Seven Little Foys", + "year": 1955, + "cast": [ + "Bob Hope", + "James Cagney" + ], + "genres": [ + "Comedy", + "Biography" + ] + }, + { + "title": "The Seven Year Itch", + "year": 1955, + "cast": [ + "Tom Ewell", + "Marilyn Monroe" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Shack Out on 101", + "year": 1955, + "cast": [ + "Terry Moore", + "Frank Lovejoy", + "Lee Marvin" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Shotgun", + "year": 1955, + "cast": [ + "Sterling Hayden", + "Yvonne De Carlo", + "Zachary Scott" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Shrike", + "year": 1955, + "cast": [ + "José Ferrer", + "June Allyson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sincerely Yours", + "year": 1955, + "cast": [ + "Liberace", + "Joanne Dru", + "Dorothy Malone" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Six Bridges to Cross", + "year": 1955, + "cast": [ + "Tony Curtis", + "George Nader", + "Julie Adams", + "Sal Mineo", + "Jay C. Flippen" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Smoke Signal", + "year": 1955, + "cast": [ + "Dana Andrews", + "Piper Laurie" + ], + "genres": [ + "Western" + ] + }, + { + "title": "So This Is Paris", + "year": 1955, + "cast": [ + "Tony Curtis", + "Gloria DeHaven" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Soldier of Fortune", + "year": 1955, + "cast": [ + "Clark Gable", + "Susan Hayward" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Son of Sinbad", + "year": 1955, + "cast": [ + "Dale Robertson", + "Sally Forrest", + "Vincent Price" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Southbound Duckling", + "year": 1955, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Special Delivery", + "year": 1955, + "cast": [ + "Joseph Cotten", + "Eva Bartok" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Spoilers", + "year": 1955, + "cast": [ + "Anne Baxter", + "Jeff Chandler" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Spy Chasers", + "year": 1955, + "cast": [ + "Leo Gorcey", + "Huntz Hall", + "Sig Ruman" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Square Jungle", + "year": 1955, + "cast": [ + "Tony Curtis", + "Patricia Crowley", + "Ernest Borgnine" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Storm Fear", + "year": 1955, + "cast": [ + "Cornel Wilde", + "Jean Wallace", + "Lee Grant" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Strange Lady in Town", + "year": 1955, + "cast": [ + "Greer Garson", + "Dana Andrews", + "Cameron Mitchell" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Stranger on Horseback", + "year": 1955, + "cast": [ + "Joel McCrea", + "Nancy Gates" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Strategic Air Command", + "year": 1955, + "cast": [ + "James Stewart", + "June Allyson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sudden Danger", + "year": 1955, + "cast": [ + "Bill Elliott", + "Beverly Garland" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "Summertime", + "year": 1955, + "cast": [ + "Katharine Hepburn", + "Rossano Brazzi" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Swamp Women", + "year": 1955, + "cast": [ + "Beverly Garland", + "Marie Windsor" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Tall Man Riding", + "year": 1955, + "cast": [ + "Randolph Scott", + "Dorothy Malone", + "Peggie Castle" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Tall Men", + "year": 1955, + "cast": [ + "Clark Gable", + "Jane Russell" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Tarantula", + "year": 1955, + "cast": [ + "Leo G. Carroll", + "John Agar", + "Mara Corday" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Target Zero", + "year": 1955, + "cast": [ + "Richard Conte", + "Peggie Castle" + ], + "genres": [ + "War" + ] + }, + { + "title": "Tarzan's Hidden Jungle", + "year": 1955, + "cast": [ + "Gordon Scott", + "Vera Miles" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Teen-Age Crime Wave", + "year": 1955, + "cast": [ + "Sue England", + "Tommy Cook" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Tender Trap", + "year": 1955, + "cast": [ + "Frank Sinatra", + "Debbie Reynolds", + "Celeste Holm" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Tennessee's Partner", + "year": 1955, + "cast": [ + "John Payne", + "Ronald Reagan", + "Rhonda Fleming" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Ten Wanted Men", + "year": 1955, + "cast": [ + "Randolph Scott", + "Jocelyn Brando", + "Richard Boone", + "Alfonso Bedoya", + "Donna Martell" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Texas Lady", + "year": 1955, + "cast": [ + "Claudette Colbert", + "Barry Sullivan" + ], + "genres": [ + "Western" + ] + }, + { + "title": "That's My Mommy", + "year": 1955, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "This Island Earth", + "year": 1955, + "cast": [ + "Rex Reason", + "Jeff Morrow", + "Faith Domergue" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Three for the Show", + "year": 1955, + "cast": [ + "Betty Grable", + "Jack Lemmon", + "Gower Champion" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Three Stripes in the Sun", + "year": 1955, + "cast": [ + "Aldo Ray", + "Philip Carey" + ], + "genres": [ + "War" + ] + }, + { + "title": "Tight Spot", + "year": 1955, + "cast": [ + "Ginger Rogers", + "Edward G. Robinson", + "Brian Keith" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Timberjack", + "year": 1955, + "cast": [ + "Sterling Hayden", + "Vera Ralston" + ], + "genres": [ + "Western" + ] + }, + { + "title": "To Catch a Thief", + "year": 1955, + "cast": [ + "Cary Grant", + "Grace Kelly" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "To Hell and Back", + "year": 1955, + "cast": [ + "Audie Murphy" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Tom and Chérie", + "year": 1955, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Top Gun", + "year": 1955, + "cast": [ + "Sterling Hayden", + "Karin Booth" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Top of the World", + "year": 1955, + "cast": [ + "Dale Robertson", + "Evelyn Keyes" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Toughest Man Alive", + "year": 1955, + "cast": [ + "Dane Clark", + "Lita Milan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Treasure of Pancho Villa", + "year": 1955, + "cast": [ + "Rory Calhoun", + "Shelley Winters", + "Gilbert Roland" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Treasure of Ruby Hills", + "year": 1955, + "cast": [ + "Zachary Scott", + "Carole Mathews" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Trial", + "year": 1955, + "cast": [ + "Glenn Ford", + "Katy Jurado", + "Arthur Kennedy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Trouble with Harry", + "year": 1955, + "cast": [ + "Shirley MacLaine", + "John Forsythe", + "Jerry Mathers" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Twinkle in God's Eye", + "year": 1955, + "cast": [ + "Mickey Rooney", + "Coleen Gray" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Unchained", + "year": 1955, + "cast": [ + "Barbara Hale", + "Elroy Hirsch" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Underwater!", + "year": 1955, + "cast": [ + "Jane Russell", + "Richard Egan", + "Gilbert Rowland" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Untamed", + "year": 1955, + "cast": [ + "Tyrone Power", + "Susan Hayward" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Violent Men", + "year": 1955, + "cast": [ + "Glenn Ford", + "Barbara Stanwyck", + "Edward G. Robinson", + "Brian Keith", + "Dianne Foster" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Vanishing American", + "year": 1955, + "cast": [ + "Audrey Totter", + "Scott Brady" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The View from Pompey's Head", + "year": 1955, + "cast": [ + "Richard Egan", + "Dana Wynter" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Violent Saturday", + "year": 1955, + "cast": [ + "Victor Mature", + "Richard Egan", + "Lee Marvin", + "Stephen McNally", + "Virginia Leith" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Virgin Queen", + "year": 1955, + "cast": [ + "Bette Davis", + "Richard Todd", + "Joan Collins" + ], + "genres": [ + "Historical" + ] + }, + { + "title": "We're No Angels", + "year": 1955, + "cast": [ + "Humphrey Bogart", + "Peter Ustinov", + "Aldo Ray" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "White Feather", + "year": 1955, + "cast": [ + "Robert Wagner", + "Debra Paget", + "John Lund", + "Jeffrey Hunter", + "Virginia Leith" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Wichita", + "year": 1955, + "cast": [ + "Joel McCrea", + "Vera Miles", + "Lloyd Bridges" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Wiretapper", + "year": 1955, + "cast": [ + "Bill Williams", + "Douglas Kennedy" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Women's Prison", + "year": 1955, + "cast": [ + "Ida Lupino", + "Jan Sterling", + "Audrey Totter" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "A Word to the Wives….", + "year": 1955, + "cast": [ + "Marsha Hunt", + "Darren McGavin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Yellowneck", + "year": 1955, + "cast": [ + "Lin McCarthy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "You're Never Too Young", + "year": 1955, + "cast": [ + "Dean Martin", + "Jerry Lewis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "7th Cavalry", + "year": 1956, + "cast": [ + "Randolph Scott", + "Barbara Hale" + ], + "genres": [ + "Western" + ] + }, + { + "title": "23 Paces to Baker Street", + "year": 1956, + "cast": [ + "Van Johnson", + "Vera Miles" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Accused of Murder", + "year": 1956, + "cast": [ + "David Brian", + "Vera Ralston", + "Sidney Blackmer", + "Lee Van Cleef" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Alexander the Great", + "year": 1956, + "cast": [ + "Richard Burton", + "Claire Bloom", + "Fredric March", + "Danielle Darrieux" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Ambassador's Daughter", + "year": 1956, + "cast": [ + "Olivia de Havilland", + "John Forsythe", + "Adolphe Menjou", + "Myrna Loy" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Anastasia", + "year": 1956, + "cast": [ + "Ingrid Bergman", + "Yul Brynner", + "Helen Hayes" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Anything Goes", + "year": 1956, + "cast": [ + "Bing Crosby", + "Donald O'Connor", + "Phil Harris", + "Mitzi Gaynor" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Around the World in Eighty Days", + "year": 1956, + "cast": [ + "David Niven", + "Cantinflas", + "Shirley MacLaine", + "Robert Newton" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "At Gunpoint", + "year": 1956, + "cast": [ + "Fred MacMurray", + "Dorothy Malone" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Attack", + "year": 1956, + "cast": [ + "Jack Palance", + "Eddie Albert", + "Lee Marvin" + ], + "genres": [ + "War" + ] + }, + { + "title": "Autumn Leaves", + "year": 1956, + "cast": [ + "Joan Crawford", + "Cliff Robertson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Away All Boats", + "year": 1956, + "cast": [ + "Jeff Chandler", + "George Nader", + "Julie Adams" + ], + "genres": [ + "War" + ] + }, + { + "title": "Baby Doll", + "year": 1956, + "cast": [ + "Carroll Baker", + "Karl Malden", + "Eli Wallach", + "Mildred Dunnock" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Back from Eternity", + "year": 1956, + "cast": [ + "Robert Ryan", + "Anita Ekberg", + "Rod Steiger", + "Gene Barry" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Backlash", + "year": 1956, + "cast": [ + "Richard Widmark", + "Donna Reed" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Bad Seed", + "year": 1956, + "cast": [ + "Nancy Kelly", + "Patty McCormack" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "Bandido", + "year": 1956, + "cast": [ + "Robert Mitchum", + "Ursula Thiess", + "Gilbert Roland" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Barbecue Brawl", + "year": 1956, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Battle Stations", + "year": 1956, + "cast": [ + "John Lund", + "William Bendix", + "Richard Boone" + ], + "genres": [ + "War" + ] + }, + { + "title": "The Beast of Hollow Mountain", + "year": 1956, + "cast": [ + "Guy Madison", + "Patricia Medina" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Behind the High Wall", + "year": 1956, + "cast": [ + "Tom Tully", + "John Gavin" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Benny Goodman Story", + "year": 1956, + "cast": [ + "Steve Allen", + "Donna Reed" + ], + "genres": [ + "Biography", + "Musical" + ] + }, + { + "title": "The Best Things in Life Are Free", + "year": 1956, + "cast": [ + "Gordon MacRae", + "Ernest Borgnine", + "Dan Duryea", + "Sheree North" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Between Heaven and Hell", + "year": 1956, + "cast": [ + "Robert Wagner", + "Buddy Ebsen", + "Broderick Crawford" + ], + "genres": [ + "War" + ] + }, + { + "title": "Beyond Mombasa", + "year": 1956, + "cast": [ + "Cornel Wilde", + "Donna Reed" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Beyond a Reasonable Doubt", + "year": 1956, + "cast": [ + "Dana Andrews", + "Joan Fontaine", + "Sidney Blackmer" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Bhowani Junction", + "year": 1956, + "cast": [ + "Ava Gardner", + "Stewart Granger", + "Bill Travers" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Bigger Than Life", + "year": 1956, + "cast": [ + "James Mason", + "Barbara Rush", + "Walter Matthau" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Birds and the Bees", + "year": 1956, + "cast": [ + "George Gobel", + "Mitzi Gaynor", + "David Niven" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Black Sleep", + "year": 1956, + "cast": [ + "Basil Rathbone", + "Lon Chaney" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Black Whip", + "year": 1956, + "cast": [ + "Hugh Marlowe", + "Coleen Gray", + "Adele Mara", + "Angie Dickinson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Blackjack Ketchum, Desperado", + "year": 1956, + "cast": [ + "Howard Duff", + "Margaret Field" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Blazing the Overland Trail", + "year": 1956, + "cast": [ + "Lee Roberts" + ], + "genres": [] + }, + { + "title": "Blue Cat Blues", + "year": 1956, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "The Bold and the Brave", + "year": 1956, + "cast": [ + "Mickey Rooney", + "Wendell Corey" + ], + "genres": [ + "War" + ] + }, + { + "title": "The Boss", + "year": 1956, + "cast": [ + "John Payne", + "William Bishop" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Bottom of the Bottle", + "year": 1956, + "cast": [ + "Joseph Cotten", + "Van Johnson", + "Ruth Roman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Brass Legend", + "year": 1956, + "cast": [ + "Hugh O'Brian", + "Nancy Gates", + "Raymond Burr" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Brave One", + "year": 1956, + "cast": [ + "Michel Ray", + "Elsa Cárdenas" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Broken Star", + "year": 1956, + "cast": [ + "Howard Duff", + "Lita Baron" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Broom-Stick Bunny", + "year": 1956, + "cast": [ + "Looney Tunes" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Bundle of Joy", + "year": 1956, + "cast": [ + "Debbie Reynolds", + "Eddie Fisher" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Burning Hills", + "year": 1956, + "cast": [ + "Tab Hunter", + "Natalie Wood", + "Skip Homeier", + "Claude Akins" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Bus Stop", + "year": 1956, + "cast": [ + "Marilyn Monroe", + "Don Murray" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Busy Buddies", + "year": 1956, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Calling Homicide", + "year": 1956, + "cast": [ + "Bill Elliott", + "Kathleen Case" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Canyon River", + "year": 1956, + "cast": [ + "George Montgomery", + "Marcia Henderson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Carousel", + "year": 1956, + "cast": [ + "Shirley Jones", + "Gordon MacRae" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Catered Affair", + "year": 1956, + "cast": [ + "Bette Davis", + "Debbie Reynolds", + "Ernest Borgnine" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Cha-Cha-Cha Boom!", + "year": 1956, + "cast": [ + "Stephen Dunne", + "Helen Grayco" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Comanche", + "year": 1956, + "cast": [ + "Dana Andrews", + "Kent Smith", + "Nestor Paiva" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Come Next Spring", + "year": 1956, + "cast": [ + "Ann Sheridan", + "Steve Cochran", + "Walter Brennan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Come On", + "year": 1956, + "cast": [ + "Anne Baxter", + "Sterling Hayden" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Commotion on the Ocean", + "year": 1956, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Short" + ] + }, + { + "title": "Congo Crossing", + "year": 1956, + "cast": [ + "Virginia Mayo", + "George Nader", + "Peter Lorre" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Conqueror", + "year": 1956, + "cast": [ + "John Wayne", + "Susan Hayward", + "Pedro Armendáriz" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Court Jester", + "year": 1956, + "cast": [ + "Danny Kaye", + "Basil Rathbone", + "Angela Lansbury" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Crashing Las Vegas", + "year": 1956, + "cast": [ + "Leo Gorcey", + "Huntz Hall", + "Mary Castle" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Creature Walks Among Us", + "year": 1956, + "cast": [ + "Jeff Morrow", + "Rex Reason", + "Leigh Snowden" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Creeps", + "year": 1956, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Short" + ] + }, + { + "title": "Crime Against Joe", + "year": 1956, + "cast": [ + "Julie London", + "John Bromfield" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Crime in the Streets", + "year": 1956, + "cast": [ + "James Whitmore", + "John Cassavetes" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Crowded Paradise", + "year": 1956, + "cast": [ + "Hume Cronyn", + "Nancy Kelly" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Cry in the Night", + "year": 1956, + "cast": [ + "Natalie Wood", + "Edmond O'Brien", + "Raymond Burr" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Curucu, Beast of the Amazon", + "year": 1956, + "cast": [ + "John Bromfield", + "Beverly Garland" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "A Day of Fury", + "year": 1956, + "cast": [ + "Dale Robertson", + "Mara Corday", + "Jock Mahoney" + ], + "genres": [ + "Western" + ] + }, + { + "title": "D-Day the Sixth of June", + "year": 1956, + "cast": [ + "Robert Taylor", + "Richard Todd" + ], + "genres": [ + "War" + ] + }, + { + "title": "Dakota Incident", + "year": 1956, + "cast": [ + "Dale Robertson", + "Linda Darnell", + "John Lund" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Dance with Me, Henry", + "year": 1956, + "cast": [ + "Bud Abbott", + "and", + "Lou Costello" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Daniel Boone, Trail Blazer", + "year": 1956, + "cast": [ + "Bruce Bennett", + "Lon Chaney Jr." + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Davy Crockett and the River Pirates", + "year": 1956, + "cast": [ + "Fess Parker", + "Buddy Ebsen" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Death of a Scoundrel", + "year": 1956, + "cast": [ + "George Sanders", + "Zsa Zsa Gabor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Deduce, You Say!", + "year": 1956, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "The Desperados Are in Town", + "year": 1956, + "cast": [ + "Robert Arthur", + "Kathleen Nolan" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Diane", + "year": 1956, + "cast": [ + "Lana Turner", + "Roger Moore", + "Pedro Armendáriz" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dig That Uranium", + "year": 1956, + "cast": [ + "Leo Gorcey", + "Huntz Hall", + "Mary Beth Hughes" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Don't Knock the Rock", + "year": 1956, + "cast": [ + "Alan Dale", + "Fay Baker" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Down Beat Bear", + "year": 1956, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Earth vs. the Flying Saucers", + "year": 1956, + "cast": [ + "Hugh Marlowe", + "Joan Taylor" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Eddy Duchin Story", + "year": 1956, + "cast": [ + "Tyrone Power", + "Kim Novak" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Edge of Hell", + "year": 1956, + "cast": [ + "Hugo Haas", + "Jeffrey Stone" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Egg and Jerry", + "year": 1956, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "Emergency Hospital", + "year": 1956, + "cast": [ + "Walter Reed", + "Margaret Lindsay" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Everything but the Truth", + "year": 1956, + "cast": [ + "Maureen O'Hara", + "John Forsythe" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Fastest Gun Alive", + "year": 1956, + "cast": [ + "Glenn Ford", + "Jeanne Crain", + "Broderick Crawford" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Feedin' the Kiddie", + "year": 1956, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Fighting Trouble", + "year": 1956, + "cast": [ + "Huntz Hall", + "Stanley Clements", + "Adele Jergens" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Fire Maidens from Outer Space", + "year": 1956, + "cast": [ + "Anthony Dexter", + "Susan Shaw" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The First Texan", + "year": 1956, + "cast": [ + "Joel McCrea", + "Felicia Farr", + "Jeff Morrow" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The First Traveling Saleslady", + "year": 1956, + "cast": [ + "Ginger Rogers", + "Carol Channing" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Flagpole Jitters", + "year": 1956, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Short" + ] + }, + { + "title": "Flame of the Islands", + "year": 1956, + "cast": [ + "Yvonne De Carlo", + "Howard Duff", + "Zachary Scott" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Flesh and the Spur", + "year": 1956, + "cast": [ + "Marla English", + "Mike Connors" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Flight to Hong Kong", + "year": 1956, + "cast": [ + "Rory Calhoun", + "Barbara Rush" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Flying Sorceress", + "year": 1956, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Forbidden Planet", + "year": 1956, + "cast": [ + "Leslie Nielsen", + "Walter Pidgeon", + "Anne Francis" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "For Crimin' Out Loud", + "year": 1956, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Short" + ] + }, + { + "title": "Foreign Intrigue", + "year": 1956, + "cast": [ + "Robert Mitchum", + "Geneviève Page", + "Ingrid Thulin" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Forever, Darling", + "year": 1956, + "cast": [ + "Lucille Ball", + "Desi Arnaz", + "James Mason" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Friendly Persuasion", + "year": 1956, + "cast": [ + "Gary Cooper", + "Dorothy McGuire", + "Anthony Perkins" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Full of Life", + "year": 1956, + "cast": [ + "Judy Holliday", + "Richard Conte" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Fury at Gunsight Pass", + "year": 1956, + "cast": [ + "David Brian", + "Neville Brand" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Gaby", + "year": 1956, + "cast": [ + "Leslie Caron", + "John Kerr" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Ghost Town", + "year": 1956, + "cast": [ + "Kent Taylor", + "John Smith" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Giant", + "year": 1956, + "cast": [ + "Rock Hudson", + "Elizabeth Taylor", + "James Dean", + "Mercedes McCambridge", + "Chill Wills", + "Dennis Hopper", + "Sal Mineo" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Girl Can't Help It", + "year": 1956, + "cast": [ + "Jayne Mansfield", + "Tom Ewell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Girl He Left Behind", + "year": 1956, + "cast": [ + "Natalie Wood", + "Tab Hunter" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Girls in Prison", + "year": 1956, + "cast": [ + "Richard Denning", + "Joan Taylor", + "Mae Marsh" + ], + "genres": [] + }, + { + "title": "Glory", + "year": 1956, + "cast": [ + "Margaret O'Brien", + "Walter Brennan" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Godzilla, King of the Monsters!", + "year": 1956, + "cast": [ + "Raymond Burr", + "Takashi Shimura" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Good-bye, My Lady", + "year": 1956, + "cast": [ + "Brandon deWilde", + "Walter Brennan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Great Day in the Morning", + "year": 1956, + "cast": [ + "Robert Stack", + "Virginia Mayo", + "Ruth Roman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Great Locomotive Chase", + "year": 1956, + "cast": [ + "Fess Parker", + "Jeffrey Hunter" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Great American Pastime", + "year": 1956, + "cast": [ + "Tom Ewell", + "Ann Miller" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Great Man", + "year": 1956, + "cast": [ + "José Ferrer", + "Julie London", + "Ed Wynn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Gun Brothers", + "year": 1956, + "cast": [ + "Buster Crabbe", + "Ann Robinson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Gun the Man Down", + "year": 1956, + "cast": [ + "James Arness", + "Angie Dickinson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Gunslinger", + "year": 1956, + "cast": [ + "John Ireland", + "Beverly Garland" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Happy Go Ducky", + "year": 1956, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "The Harder They Fall", + "year": 1956, + "cast": [ + "Humphrey Bogart", + "Rod Steiger", + "Jan Sterling" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "He Laughed Last", + "year": 1956, + "cast": [ + "Frankie Laine", + "Anthony Dexter" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Helen of Troy", + "year": 1956, + "cast": [ + "Rossana Podestà", + "Jacques Sernas", + "Cedric Hardwicke", + "Janette Scott" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hidden Guns", + "year": 1956, + "cast": [ + "Bruce Bennett", + "Richard Arlen", + "Angie Dickinson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "High Society", + "year": 1956, + "cast": [ + "Grace Kelly", + "Bing Crosby", + "Frank Sinatra" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Hilda Crane", + "year": 1956, + "cast": [ + "Jean Simmons", + "Guy Madison" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hold Back the Night", + "year": 1956, + "cast": [ + "John Payne", + "Mona Freeman", + "Peter Graves" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "Hollywood or Bust", + "year": 1956, + "cast": [ + "Dean Martin", + "Jerry Lewis", + "Anita Ekberg" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hooked Bear", + "year": 1956, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "Hot Blood", + "year": 1956, + "cast": [ + "Jane Russell", + "Cornel Wilde", + "Joseph Calleia" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hot Cars", + "year": 1956, + "cast": [ + "John Bromfield", + "Joi Lansing" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Hot Rod Girl", + "year": 1956, + "cast": [ + "Lori Nelson", + "Chuck Connors" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Hot Shots", + "year": 1956, + "cast": [ + "Bowery Boys", + "Joi Lansing" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hot Stuff", + "year": 1956, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Short" + ] + }, + { + "title": "The Houston Story", + "year": 1956, + "cast": [ + "Barbara Hale", + "Gene Barry" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Huk!", + "year": 1956, + "cast": [ + "George Montgomery", + "Mona Freeman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Husbands Beware", + "year": 1956, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Short" + ] + }, + { + "title": "I Killed Wild Bill Hickok", + "year": 1956, + "cast": [ + "Tom Brown", + "Virginia Gibson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "In the Bag", + "year": 1956, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "Indestructible Man", + "year": 1956, + "cast": [ + "Lon Chaney Jr.", + "Ross Elliott" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Indian Fighter", + "year": 1956, + "cast": [ + "Kirk Douglas", + "Walter Matthau" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Inside Detroit", + "year": 1956, + "cast": [ + "Pat O'Brien", + "Dennis O'Keefe" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Intimate Stranger", + "year": 1956, + "cast": [ + "Richard Basehart", + "Mary Murphy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Invasion of the Body Snatchers", + "year": 1956, + "cast": [ + "Kevin McCarthy", + "Dana Wynter" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Invitation to the Dance", + "year": 1956, + "cast": [ + "Gene Kelly", + "Tamara Toumanova", + "Belita" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Iron Petticoat", + "year": 1956, + "cast": [ + "Katharine Hepburn", + "Bob Hope" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "It Conquered the World", + "year": 1956, + "cast": [ + "Peter Graves", + "Beverly Garland" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "I've Lived Before", + "year": 1956, + "cast": [ + "Jock Mahoney", + "Leigh Snowden", + "Ann Harding" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Jaguar", + "year": 1956, + "cast": [ + "Sabu", + "Barton MacLane" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Johnny Concho", + "year": 1956, + "cast": [ + "Frank Sinatra", + "Phyllis Kirk" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Jubal", + "year": 1956, + "cast": [ + "Glenn Ford", + "Ernest Borgnine", + "Felicia Farr", + "Rod Steiger" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Julie", + "year": 1956, + "cast": [ + "Doris Day", + "Louis Jourdan" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Kettles in the Ozarks", + "year": 1956, + "cast": [ + "Marjorie Main", + "Arthur Hunnicutt" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Killer Is Loose", + "year": 1956, + "cast": [ + "Joseph Cotten", + "Rhonda Fleming", + "Wendell Corey", + "Alan Hale Jr." + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Killing", + "year": 1956, + "cast": [ + "Sterling Hayden", + "Coleen Gray", + "Marie Windsor", + "Vince Edwards" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The King and Four Queens", + "year": 1956, + "cast": [ + "Clark Gable", + "Eleanor Parker" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The King and I", + "year": 1956, + "cast": [ + "Yul Brynner", + "Deborah Kerr" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "A Kiss Before Dying", + "year": 1956, + "cast": [ + "Robert Wagner", + "Joanne Woodward", + "Virginia Leith" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Last Hunt", + "year": 1956, + "cast": [ + "Robert Taylor", + "Stewart Granger" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Last Wagon", + "year": 1956, + "cast": [ + "Richard Widmark", + "Felicia Farr" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Leather Saint", + "year": 1956, + "cast": [ + "Paul Douglas", + "John Derek" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Lieutenant Wore Skirts", + "year": 1956, + "cast": [ + "Tom Ewell", + "Sheree North" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Lisbon", + "year": 1956, + "cast": [ + "Maureen O'Hara", + "Yvonne Furneaux" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Lone Ranger", + "year": 1956, + "cast": [ + "Clayton Moore", + "Jay Silverheels" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Love Me Tender", + "year": 1956, + "cast": [ + "Elvis Presley", + "Debra Paget" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Lust for Life", + "year": 1956, + "cast": [ + "Kirk Douglas", + "Anthony Quinn" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Magnificent Roughnecks", + "year": 1956, + "cast": [ + "Jack Carson", + "Mickey Rooney", + "Nancy Gates" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Man Beast", + "year": 1956, + "cast": [ + "Rock Madison", + "Asa Maynor", + "George Skaff" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Man from Del Rio", + "year": 1956, + "cast": [ + "Anthony Quinn", + "Katy Jurado" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Man in the Gray Flannel Suit", + "year": 1956, + "cast": [ + "Gregory Peck", + "Jennifer Jones", + "Keenan Wynn", + "Lee J. Cobb" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Man in the Vault", + "year": 1956, + "cast": [ + "Anita Ekberg", + "Karen Sharpe" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Man Is Armed", + "year": 1956, + "cast": [ + "Dane Clark", + "William Talman", + "May Wynn" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Man Who Knew Too Much", + "year": 1956, + "cast": [ + "Doris Day", + "James Stewart" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Man Who Never Was", + "year": 1956, + "cast": [ + "Clifton Webb", + "Gloria Grahame" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Manfish", + "year": 1956, + "cast": [ + "John Bromfield", + "Lon Chaney Jr." + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Massacre", + "year": 1956, + "cast": [ + "Dane Clark", + "Martha Roth" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Maverick Queen", + "year": 1956, + "cast": [ + "Barbara Stanwyck", + "Barry Sullivan" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Meet Me in Las Vegas", + "year": 1956, + "cast": [ + "Cyd Charisse", + "Dan Dailey" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Menace from Outer Space", + "year": 1956, + "cast": [ + "Richard Crane", + "Sally Mansfield" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Miami Expose", + "year": 1956, + "cast": [ + "Lee J. Cobb", + "Patricia Medina" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Miracle in the Rain", + "year": 1956, + "cast": [ + "Jane Wyman", + "Van Johnson" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Mobs, Inc.", + "year": 1956, + "cast": [ + "Marjorie Reynolds", + "Lisa Howard" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Moby Dick", + "year": 1956, + "cast": [ + "Gregory Peck", + "Richard Basehart", + "James Robertson Justice" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Mohawk", + "year": 1956, + "cast": [ + "Scott Brady", + "Allison Hayes", + "Lori Nelson", + "Rita Gam" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Mole People", + "year": 1956, + "cast": [ + "John Agar", + "Hugh Beaumont" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Mountain", + "year": 1956, + "cast": [ + "Spencer Tracy", + "Robert Wagner", + "Claire Trevor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Mr. B Natural", + "year": 1956, + "cast": [], + "genres": [ + "Short" + ] + }, + { + "title": "Mucho Mouse", + "year": 1956, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Muscle Beach Tom", + "year": 1956, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Naked Gun", + "year": 1956, + "cast": [ + "Willard Parker", + "Mara Corday" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Navy Wife", + "year": 1956, + "cast": [ + "Joan Bennett", + "Gary Merrill" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Never Say Goodbye", + "year": 1956, + "cast": [ + "Rock Hudson", + "Cornell Borchers" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Nightmare", + "year": 1956, + "cast": [ + "Edward G. Robinson", + "Kevin McCarthy", + "Connie Russell" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Oklahoma Woman", + "year": 1956, + "cast": [ + "Peggie Castle", + "Richard Denning" + ], + "genres": [ + "Western" + ] + }, + { + "title": "On the Threshold of Space", + "year": 1956, + "cast": [ + "Guy Madison", + "Virginia Leith", + "John Hodiak" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Once Upon a Honeymoon", + "year": 1956, + "cast": [ + "Virginia Gibson" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Opposite Sex", + "year": 1956, + "cast": [ + "June Allyson", + "Joan Collins", + "Ann Sheridan", + "Ann Miller" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Our Miss Brooks", + "year": 1956, + "cast": [ + "Eve Arden", + "Gale Gordon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Outside the Law", + "year": 1956, + "cast": [ + "Ray Danton", + "Leigh Snowden", + "Grant Williams" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Over-Exposed", + "year": 1956, + "cast": [ + "Cleo Moore", + "Richard Crenna" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Pardners", + "year": 1956, + "cast": [ + "Dean Martin", + "Jerry Lewis", + "Agnes Moorehead", + "Lori Nelson" + ], + "genres": [ + "Western", + "Comedy" + ] + }, + { + "title": "Patterns", + "year": 1956, + "cast": [ + "Van Heflin", + "Everett Sloane", + "Ed Begley", + "Beatrice Straight" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Peacemaker", + "year": 1956, + "cast": [ + "James Mitchell", + "Rosemarie Bowe" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Perils of the Wilderness", + "year": 1956, + "cast": [ + "Evelyn Anderson", + "Dennis Moore" + ], + "genres": [] + }, + { + "title": "Pillars of the Sky", + "year": 1956, + "cast": [ + "Jeff Chandler", + "Dorothy Malone" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Please Murder Me", + "year": 1956, + "cast": [ + "Raymond Burr", + "Angela Lansbury" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Power and the Prize", + "year": 1956, + "cast": [ + "Robert Taylor", + "Burl Ives" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Price of Fear", + "year": 1956, + "cast": [ + "Merle Oberon", + "Lex Barker" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Proud and Profane", + "year": 1956, + "cast": [ + "William Holden", + "Deborah Kerr" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Proud Ones", + "year": 1956, + "cast": [ + "Robert Ryan", + "Virginia Mayo" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Quincannon, Frontier Scout", + "year": 1956, + "cast": [ + "Tony Martin", + "Peggie Castle" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Rabbitson Crusoe", + "year": 1956, + "cast": [ + "Bugs Bunny" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "The Rack", + "year": 1956, + "cast": [ + "Paul Newman", + "Wendell Corey", + "Walter Pidgeon", + "Anne Francis" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "The Rainmaker", + "year": 1956, + "cast": [ + "Katharine Hepburn", + "Burt Lancaster", + "Wendell Corey" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Ransom!", + "year": 1956, + "cast": [ + "Glenn Ford", + "Donna Reed", + "Leslie Nielsen" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Raw Edge", + "year": 1956, + "cast": [ + "Rory Calhoun", + "Yvonne De Carlo" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Rawhide Years", + "year": 1956, + "cast": [ + "Tony Curtis", + "Colleen Miller", + "Arthur Kennedy" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Rebel in Town", + "year": 1956, + "cast": [ + "Ruth Roman", + "John Payne" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Red Sundown", + "year": 1956, + "cast": [ + "Rory Calhoun", + "Martha Hyer", + "Dean Jagger" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Reprisal!", + "year": 1956, + "cast": [ + "Guy Madison", + "Felicia Farr", + "Kathryn Grant" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Revolt of Mamie Stover", + "year": 1956, + "cast": [ + "Jane Russell", + "Richard Egan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Ride the High Iron", + "year": 1956, + "cast": [ + "Don Taylor", + "Sally Forrest", + "Raymond Burr" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Rock Around the Clock", + "year": 1956, + "cast": [ + "Bill Haley & His Comets" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Rock, Pretty Baby", + "year": 1956, + "cast": [ + "Sal Mineo", + "John Saxon", + "Luana Patten" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Rock, Rock, Rock", + "year": 1956, + "cast": [ + "Chuck Berry", + "Tuesday Weld" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Rumble on the Docks", + "year": 1956, + "cast": [ + "James Darren", + "Michael Granger" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Rumpus in the Harem", + "year": 1956, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Short" + ] + }, + { + "title": "Runaway Daughters", + "year": 1956, + "cast": [ + "Marla English", + "Mary Ellen Kay", + "Anna Sten" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Running Target", + "year": 1956, + "cast": [ + "Doris Dowling" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Run for the Sun", + "year": 1956, + "cast": [ + "Richard Widmark", + "Trevor Howard", + "Jane Greer" + ], + "genres": [ + "Adventure", + "Thriller" + ] + }, + { + "title": "Santiago", + "year": 1956, + "cast": [ + "Alan Ladd", + "Rossana Podestà" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Scandal Incorporated", + "year": 1956, + "cast": [ + "Robert Hutton", + "Patricia Wright" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Scarlet Hour", + "year": 1956, + "cast": [ + "Carol Ohmart", + "Tom Tryon" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Scheming Schemers", + "year": 1956, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Short" + ] + }, + { + "title": "Screaming Eagles", + "year": 1956, + "cast": [ + "Tom Tryon", + "Martin Milner" + ], + "genres": [ + "War" + ] + }, + { + "title": "The Search for Bridey Murphy", + "year": 1956, + "cast": [ + "Teresa Wright", + "Louis Hayward" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Searchers", + "year": 1956, + "cast": [ + "John Wayne", + "Jeffrey Hunter", + "Vera Miles", + "Ward Bond", + "Ken Curtis", + "Natalie Wood" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Secret of Treasure Mountain", + "year": 1956, + "cast": [ + "Valerie French", + "Raymond Burr" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Serenade", + "year": 1956, + "cast": [ + "Mario Lanza", + "Joan Fontaine", + "Sara Montiel" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Seven Men from Now", + "year": 1956, + "cast": [ + "Randolph Scott", + "Lee Marvin" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Seven Wonders of the World", + "year": 1956, + "cast": [ + "Lowell Thomas" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Shake, Rattle & Rock!", + "year": 1956, + "cast": [ + "Mike Connors", + "Lisa Gaye" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Sharkfighters", + "year": 1956, + "cast": [ + "Victor Mature", + "Karen Steele" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The She-Creature", + "year": 1956, + "cast": [ + "Marla English", + "Chester Morris" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Showdown at Abilene", + "year": 1956, + "cast": [ + "Jock Mahoney", + "Martha Hyer", + "Lyle Bettger" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Singing in the Dark", + "year": 1956, + "cast": [ + "Moishe Oysher", + "Joey Adams" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Slander", + "year": 1956, + "cast": [ + "Van Johnson", + "Ann Blyth" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Slightly Scarlet", + "year": 1956, + "cast": [ + "John Payne", + "Rhonda Fleming", + "Arlene Dahl" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Solid Gold Cadillac", + "year": 1956, + "cast": [ + "Judy Holliday", + "Paul Douglas" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Somebody Up There Likes Me", + "year": 1956, + "cast": [ + "Paul Newman", + "Pier Angeli", + "Sal Mineo" + ], + "genres": [ + "Drama", + "Biography" + ] + }, + { + "title": "Stagecoach to Fury", + "year": 1956, + "cast": [ + "Forrest Tucker", + "Mari Blanchard" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Star in the Dust", + "year": 1956, + "cast": [ + "John Agar", + "Mamie Van Doren", + "Richard Boone" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Steel Jungle", + "year": 1956, + "cast": [ + "Perry Lopez", + "Beverly Garland", + "Walter Abel" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Storm Center", + "year": 1956, + "cast": [ + "Bette Davis", + "Brian Keith", + "Kim Hunter" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Strange Adventure", + "year": 1956, + "cast": [ + "Joan Evans", + "Ben Cooper" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Strange Intruder", + "year": 1956, + "cast": [ + "Ida Lupino", + "Edmund Purdom" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Stranger at My Door", + "year": 1956, + "cast": [ + "Macdonald Carey", + "Patricia Medina" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Swan", + "year": 1956, + "cast": [ + "Grace Kelly", + "Louis Jourdan", + "Alec Guinness" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Tea and Sympathy", + "year": 1956, + "cast": [ + "Deborah Kerr", + "John Kerr" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Teahouse of the August Moon", + "year": 1956, + "cast": [ + "Marlon Brando", + "Glenn Ford" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Teenage Rebel", + "year": 1956, + "cast": [ + "Ginger Rogers", + "Michael Rennie" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Ten Commandments", + "year": 1956, + "cast": [ + "Charlton Heston", + "Yul Brynner", + "Edward G. Robinson", + "Anne Baxter", + "Yvonne De Carlo", + "Debra Paget", + "John Derek", + "Vincent Price", + "Martha Scott", + "Judith Anderson", + "Nina Foch" + ], + "genres": [] + }, + { + "title": "Tension at Table Rock", + "year": 1956, + "cast": [ + "Dorothy Malone", + "Richard Egan" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Terror at Midnight", + "year": 1956, + "cast": [ + "Scott Brady", + "Joan Vohs" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "That Certain Feeling", + "year": 1956, + "cast": [ + "Bob Hope", + "Eva Marie Saint", + "Pearl Bailey", + "George Sanders", + "Jerry Mathers" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "There's Always Tomorrow", + "year": 1956, + "cast": [ + "Barbara Stanwyck", + "Fred MacMurray", + "Joan Bennett", + "Patricia Crowley" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "These Wilder Years", + "year": 1956, + "cast": [ + "James Cagney", + "Barbara Stanwyck" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Three Bad Sisters", + "year": 1956, + "cast": [ + "Marla English", + "John Bromfield" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Three Brave Men", + "year": 1956, + "cast": [ + "Ray Milland", + "Ernest Borgnine", + "Nina Foch" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Thunder Over Arizona", + "year": 1956, + "cast": [ + "Skip Homeier", + "Kristine Miller" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Time Table", + "year": 1956, + "cast": [ + "Mark Stevens", + "Felicia Farr" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Timid Tabby", + "year": 1956, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Tom's Photo Finish", + "year": 1956, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Toward the Unknown", + "year": 1956, + "cast": [ + "William Holden", + "Virginia Leith" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Toy Tiger", + "year": 1956, + "cast": [ + "Laraine Day", + "Jeff Chandler" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Trapeze", + "year": 1956, + "cast": [ + "Burt Lancaster", + "Tony Curtis", + "Gina Lollobrigida", + "Katy Jurado", + "Thomas Gomez" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Tribute to a Bad Man", + "year": 1956, + "cast": [ + "James Cagney", + "Stephen McNally", + "Don Dubbins", + "Irene Papas", + "Vic Morrow" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Unguarded Moment", + "year": 1956, + "cast": [ + "Esther Williams", + "George Nader", + "John Saxon", + "Edward Andrews" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Uranium Boom", + "year": 1956, + "cast": [ + "Dennis Morgan", + "William Talman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Vagabond King", + "year": 1956, + "cast": [ + "Kathryn Grayson", + "Rita Moreno" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Violent Years", + "year": 1956, + "cast": [ + "Jean Moorhead" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Walk the Proud Land", + "year": 1956, + "cast": [ + "Audie Murphy", + "Anne Bancroft" + ], + "genres": [ + "Western" + ] + }, + { + "title": "War and Peace", + "year": 1956, + "cast": [ + "Audrey Hepburn", + "Henry Fonda", + "Mel Ferrer", + "Vittorio Gassman", + "Herbert Lom", + "Anita Ekberg", + "Helmut Dantine", + "May Britt" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Werewolf", + "year": 1956, + "cast": [ + "Joyce Holden", + "Steven Ritch" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Westward Ho the Wagons!", + "year": 1956, + "cast": [ + "Fess Parker", + "Kathleen Crowley" + ], + "genres": [ + "Western" + ] + }, + { + "title": "When Gangland Strikes", + "year": 1956, + "cast": [ + "Raymond Greenleaf", + "Marjie Millar" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "While the City Sleeps", + "year": 1956, + "cast": [ + "Dana Andrews", + "Vincent Price", + "Ida Lupino", + "Howard Duff", + "Rhonda Fleming", + "George Sanders" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The White Squaw", + "year": 1956, + "cast": [ + "David Brian", + "May Wynn" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Wideo Wabbit", + "year": 1956, + "cast": [ + "Bugs Bunny" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "The Wild Party", + "year": 1956, + "cast": [ + "Anthony Quinn", + "Carol Ohmart" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Woman's Devotion", + "year": 1956, + "cast": [ + "Janice Rule", + "Ralph Meeker" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Women of Pitcairn Island", + "year": 1956, + "cast": [ + "Lynn Bari", + "Sue England" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Women Without Men", + "year": 1956, + "cast": [ + "Beverly Michaels", + "Joan Rice" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "World in My Corner", + "year": 1956, + "cast": [ + "Audie Murphy", + "Barbara Rush" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "World Without End", + "year": 1956, + "cast": [ + "Hugh Marlowe", + "Nancy Gates" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Written on the Wind", + "year": 1956, + "cast": [ + "Rock Hudson", + "Lauren Bacall", + "Robert Stack", + "Dorothy Malone" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Wrong Man", + "year": 1956, + "cast": [ + "Henry Fonda", + "Vera Miles" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "X the Unknown", + "year": 1956, + "cast": [ + "Dean Jagger", + "Edward Chapman" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Yaqui Drums", + "year": 1956, + "cast": [ + "Rod Cameron", + "Mary Castle" + ], + "genres": [ + "Western" + ] + }, + { + "title": "You Can't Run Away from It", + "year": 1956, + "cast": [ + "June Allyson", + "Jack Lemmon", + "Charles Bickford" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Young Guns", + "year": 1956, + "cast": [ + "Russ Tamblyn", + "Gloria Talbott" + ], + "genres": [ + "Western" + ] + }, + { + "title": "3:10 to Yuma", + "year": 1957, + "cast": [ + "Glenn Ford", + "Van Heflin", + "Felicia Farr", + "Richard Jaeckel" + ], + "genres": [ + "Western" + ] + }, + { + "title": "5 Steps to Danger", + "year": 1957, + "cast": [ + "Ruth Roman", + "Sterling Hayden" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "8 x 8", + "year": 1957, + "cast": [], + "genres": [] + }, + { + "title": "12 Angry Men", + "year": 1957, + "cast": [ + "Lee J. Cobb", + "Henry Fonda" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "20 Million Miles to Earth", + "year": 1957, + "cast": [ + "William Hopper", + "Joan Taylor", + "Frank Puglia" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The 27th Day", + "year": 1957, + "cast": [ + "Gene Barry", + "Valerie French" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Abductors", + "year": 1957, + "cast": [ + "Victor McLaglen", + "George Macready", + "Fay Spain" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Action of the Tiger", + "year": 1957, + "cast": [ + "Van Johnson", + "Martine Carol", + "Herbert Lom" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Affair in Havana", + "year": 1957, + "cast": [ + "John Cassavetes", + "Sara Shane", + "Raymond Burr" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Affair in Reno", + "year": 1957, + "cast": [ + "John Lund", + "Doris Singleton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "An Affair to Remember", + "year": 1957, + "cast": [ + "Cary Grant", + "Deborah Kerr", + "Cathleen Nesbitt", + "Richard Denning" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Ali Baba Bunny", + "year": 1957, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "All Mine to Give", + "year": 1957, + "cast": [ + "Glynis Johns", + "Cameron Mitchell", + "Patty McCormack" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Amazing Colossal Man", + "year": 1957, + "cast": [ + "Glenn Langan", + "Cathy Downs" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Apache Warrior", + "year": 1957, + "cast": [ + "Keith Larsen", + "Jim Davis" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Appointment with a Shadow", + "year": 1957, + "cast": [ + "George Nader", + "Joanna Moore", + "Brian Keith", + "Virginia Field" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "April Love", + "year": 1957, + "cast": [ + "Pat Boone", + "Shirley Jones", + "Arthur O'Connell" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Astounding She-Monster", + "year": 1957, + "cast": [ + "Robert Clarke", + "Kenne Duncan" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Attack of the Crab Monsters", + "year": 1957, + "cast": [ + "Richard Garland", + "Pamela Duncan" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Baby Face Nelson", + "year": 1957, + "cast": [ + "Mickey Rooney", + "Carolyn Jones", + "Cedric Hardwicke" + ], + "genres": [ + "Biography", + "Crime" + ] + }, + { + "title": "The Bachelor Party", + "year": 1957, + "cast": [ + "Don Murray", + "Eddie Albert", + "Carolyn Jones" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Back from the Dead", + "year": 1957, + "cast": [ + "Peggie Castle", + "Marsha Hunt" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Badlands of Montana", + "year": 1957, + "cast": [ + "Rex Reason", + "Margia Dean", + "Beverly Garland" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Bailout at 43,000", + "year": 1957, + "cast": [ + "John Payne", + "Karen Steele" + ], + "genres": [ + "War" + ] + }, + { + "title": "Band of Angels", + "year": 1957, + "cast": [ + "Clark Gable", + "Sidney Poitier", + "Yvonne DeCarlo" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Battle Hymn", + "year": 1957, + "cast": [ + "Rock Hudson", + "Anna Kashfi", + "Dan Duryea" + ], + "genres": [ + "War" + ] + }, + { + "title": "Bayou", + "year": 1957, + "cast": [ + "Peter Graves", + "Lita Milan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Beau James", + "year": 1957, + "cast": [ + "Bob Hope", + "Vera Miles", + "Alexis Smith" + ], + "genres": [ + "Biography", + "Drama" + ] + }, + { + "title": "Bedeviled Rabbit", + "year": 1957, + "cast": [ + "Bugs Bunny" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Beginning of the End", + "year": 1957, + "cast": [ + "Peter Graves", + "Peggie Castle" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Bernardine", + "year": 1957, + "cast": [ + "Pat Boone", + "Terry Moore", + "Dean Jagger" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "The Big Boodle", + "year": 1957, + "cast": [ + "Errol Flynn", + "Pedro Armendáriz", + "Rossana Rory", + "Gia Scala" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Big Caper", + "year": 1957, + "cast": [ + "Rory Calhoun", + "Mary Costa" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Big Land", + "year": 1957, + "cast": [ + "Alan Ladd", + "Virginia Mayo", + "Edmond O'Brien" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Birds Anonymous", + "year": 1957, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "Bitter Victory", + "year": 1957, + "cast": [ + "Richard Burton", + "Curd Jürgens", + "Ruth Roman" + ], + "genres": [ + "War" + ] + }, + { + "title": "Black Patch", + "year": 1957, + "cast": [ + "George Montgomery", + "Diane Brewster" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Black Scorpion", + "year": 1957, + "cast": [ + "Richard Denning", + "Mara Corday" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Bombers B-52", + "year": 1957, + "cast": [ + "Natalie Wood", + "Karl Malden", + "Efrem Zimbalist Jr." + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Bop Girl Goes Calypso", + "year": 1957, + "cast": [ + "Judy Tyler", + "Bobby Troup" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Boston Quackie", + "year": 1957, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "Boy on a Dolphin", + "year": 1957, + "cast": [ + "Alan Ladd", + "Sophia Loren" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Brain from Planet Arous", + "year": 1957, + "cast": [ + "John Agar", + "Joyce Meadows" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Brothers Rico", + "year": 1957, + "cast": [ + "Richard Conte", + "Dianne Foster", + "James Darren" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Buckskin Lady", + "year": 1957, + "cast": [ + "Patricia Medina", + "Richard Denning" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Bugsy and Mugsy", + "year": 1957, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "The Burglar", + "year": 1957, + "cast": [ + "Dan Duryea", + "Jayne Mansfield", + "Martha Vickers" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Buster Keaton Story", + "year": 1957, + "cast": [ + "Donald O'Connor", + "Ann Blyth", + "Rhonda Fleming", + "Peter Lorre" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Calypso Heat Wave", + "year": 1957, + "cast": [ + "Johnny Desmond", + "Merry Anders" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Careless Years", + "year": 1957, + "cast": [ + "Dean Stockwell", + "Natalie Trundy", + "John Larch" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Chain of Evidence", + "year": 1957, + "cast": [ + "Bill Elliott", + "Jimmy Lydon" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Chicago Confidential", + "year": 1957, + "cast": [ + "Brian Keith", + "Beverly Garland" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "China Gate", + "year": 1957, + "cast": [ + "Gene Barry", + "Angie Dickinson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Copper Sky", + "year": 1957, + "cast": [ + "Jeff Morrow", + "Coleen Gray" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Count Five and Die", + "year": 1957, + "cast": [ + "Jeffrey Hunter", + "Nigel Patrick" + ], + "genres": [ + "War" + ] + }, + { + "title": "Crime of Passion", + "year": 1957, + "cast": [ + "Barbara Stanwyck", + "Sterling Hayden", + "Raymond Burr", + "Fay Wray" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Crooked Circle", + "year": 1957, + "cast": [ + "Fay Spain", + "Steve Brodie" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Cyclops", + "year": 1957, + "cast": [ + "James Craig", + "Gloria Talbott" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The D.I.", + "year": 1957, + "cast": [ + "Jack Webb", + "Jackie Loughery" + ], + "genres": [ + "War" + ] + }, + { + "title": "The Dalton Girls", + "year": 1957, + "cast": [ + "Merry Anders", + "Lisa Davis" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Daughter of Dr. Jekyll", + "year": 1957, + "cast": [ + "John Agar", + "Gloria Talbott" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Deadly Mantis", + "year": 1957, + "cast": [ + "Craig Stevens", + "William Hopper" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Death in Small Doses", + "year": 1957, + "cast": [ + "Peter Graves", + "Mala Powers" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Decision at Sundown", + "year": 1957, + "cast": [ + "Randolph Scott", + "John Carroll", + "Karen Steele" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Deerslayer", + "year": 1957, + "cast": [ + "Rita Moreno", + "Lex Barker", + "Cathy O'Donnell" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Delicate Delinquent", + "year": 1957, + "cast": [ + "Jerry Lewis", + "Darren McGavin", + "Martha Hyer" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Delinquents", + "year": 1957, + "cast": [ + "Tom Laughlin", + "Richard Bakalyan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Designing Woman", + "year": 1957, + "cast": [ + "Lauren Bacall", + "Gregory Peck" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Desk Set", + "year": 1957, + "cast": [ + "Katharine Hepburn", + "Spencer Tracy", + "Joan Blondell", + "Gig Young", + "Dina Merrill" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "The Devil's Hairpin", + "year": 1957, + "cast": [ + "Cornel Wilde", + "Jean Wallace", + "Arthur Franz" + ], + "genres": [ + "Sports", + "Drama" + ] + }, + { + "title": "Dino", + "year": 1957, + "cast": [ + "Sal Mineo", + "Brian Keith", + "Susan Kohner" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Domino Kid", + "year": 1957, + "cast": [ + "Rory Calhoun", + "Kristine Miller" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Don't Go Near the Water", + "year": 1957, + "cast": [ + "Glenn Ford", + "Gia Scala", + "Earl Holliman", + "Anne Francis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Dragoon Wells Massacre", + "year": 1957, + "cast": [ + "Mona Freeman", + "Barry Sullivan" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Drango", + "year": 1957, + "cast": [ + "Jeff Chandler", + "Joanne Dru", + "Julie London", + "Donald Crisp" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Ducking the Devil", + "year": 1957, + "cast": [], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "Duel at Apache Wells", + "year": 1957, + "cast": [ + "Anna Maria Alberghetti", + "Ben Cooper" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Edge of the City", + "year": 1957, + "cast": [ + "John Cassavetes", + "Sidney Poitier", + "Jack Warden" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Eighteen and Anxious", + "year": 1957, + "cast": [ + "Martha Scott", + "Jackie Loughery" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Enemy Below", + "year": 1957, + "cast": [ + "Robert Mitchum", + "Curt Jürgens", + "Theodore Bikel" + ], + "genres": [ + "War" + ] + }, + { + "title": "Escapade in Japan", + "year": 1957, + "cast": [ + "Teresa Wright", + "Cameron Mitchell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Escape from Red Rock", + "year": 1957, + "cast": [ + "Brian Donlevy", + "Eilene Janssen" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Escape from San Quentin", + "year": 1957, + "cast": [ + "Merry Anders", + "Johnny Desmond" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "A Face in the Crowd", + "year": 1957, + "cast": [ + "Andy Griffith", + "Patricia Neal", + "Walter Matthau", + "Lee Remick", + "Tony Franciosa" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Farewell to Arms", + "year": 1957, + "cast": [ + "Rock Hudson", + "Jennifer Jones" + ], + "genres": [ + "War" + ] + }, + { + "title": "Fear Strikes Out", + "year": 1957, + "cast": [ + "Anthony Perkins", + "Karl Malden" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Fire Down Below", + "year": 1957, + "cast": [ + "Robert Mitchum", + "Jack Lemmon", + "Rita Hayworth" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Flesh and the Spur", + "year": 1957, + "cast": [ + "John Agar", + "Marla English" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Flesh Is Weak", + "year": 1957, + "cast": [ + "John Derek", + "Milly Vitale" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Footsteps in the Night", + "year": 1957, + "cast": [ + "Bill Elliott", + "Don Haggerty" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Fox Terror", + "year": 1957, + "cast": [ + "Foghorn Leghorn", + "Barnyard Dawg" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Forty Guns", + "year": 1957, + "cast": [ + "Barbara Stanwyck", + "Barry Sullivan", + "Gene Barry" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Four Boys and a Gun", + "year": 1957, + "cast": [ + "Frank Sutton", + "James Franciscus" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Four Girls in Town", + "year": 1957, + "cast": [ + "Julie Adams", + "Marianne Koch", + "Elsa Martinelli", + "Gia Scala", + "George Nader", + "John Gavin" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "From Hell It Came", + "year": 1957, + "cast": [ + "Tod Andrews", + "Linda Watkins" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Funny Face", + "year": 1957, + "cast": [ + "Audrey Hepburn", + "Fred Astaire", + "Kay Thompson" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Fury at Showdown", + "year": 1957, + "cast": [ + "John Derek", + "Carolyn Craig" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Fuzzy Pink Nightgown", + "year": 1957, + "cast": [ + "Jane Russell", + "Keenan Wynn" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Garment Jungle", + "year": 1957, + "cast": [ + "Lee J. Cobb", + "Kerwin Mathews", + "Gia Scala" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Ghost Diver", + "year": 1957, + "cast": [ + "James Craig", + "Audrey Totter" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Giant Claw", + "year": 1957, + "cast": [ + "Jeff Morrow", + "Mara Corday" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Girl in Black Stockings", + "year": 1957, + "cast": [ + "Lex Barker", + "Anne Bancroft", + "Mamie Van Doren" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Girl in the Kremlin", + "year": 1957, + "cast": [ + "Zsa Zsa Gabor", + "Lex Barker" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Girl Most Likely", + "year": 1957, + "cast": [ + "Jane Powell", + "Cliff Robertson" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Les Girls", + "year": 1957, + "cast": [ + "Gene Kelly", + "Mitzi Gaynor", + "Kay Kendall" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Love Slaves of the Amazons", + "year": 1957, + "cast": [ + "Don Taylor", + "Eduardo Ciannelli" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Give And Tyke", + "year": 1957, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "God Is My Partner", + "year": 1957, + "cast": [ + "Walter Brennan", + "Marion Ross" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Green-Eyed Blonde", + "year": 1957, + "cast": [ + "Susan Oliver", + "Beverly Long" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Gun Battle at Monterey", + "year": 1957, + "cast": [ + "Sterling Hayden" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Gun Duel in Durango", + "year": 1957, + "cast": [ + "George Montgomery", + "Ann Robinson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Gun for a Coward", + "year": 1957, + "cast": [ + "Fred MacMurray", + "Jeffrey Hunter", + "Janice Rule" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Gunfight at the O.K. Corral", + "year": 1957, + "cast": [ + "Kirk Douglas", + "Burt Lancaster", + "DeForest Kelley", + "Rhonda Fleming", + "Jo Van Fleet", + "Dennis Hopper" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Gunfire at Indian Gap", + "year": 1957, + "cast": [ + "Vera Ralston" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Gun Glory", + "year": 1957, + "cast": [ + "Stewart Granger", + "Rhonda Fleming" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Guns a Poppin", + "year": 1957, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Gunsight Ridge", + "year": 1957, + "cast": [ + "Joel McCrea", + "Joan Weldon" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Guns of Fort Petticoat", + "year": 1957, + "cast": [ + "Audie Murphy", + "Kathryn Grant" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Halliday Brand", + "year": 1957, + "cast": [ + "Joseph Cotten", + "Viveca Lindfors", + "Betsy Blair" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Happy Road", + "year": 1957, + "cast": [ + "Gene Kelly", + "Barbara Laage", + "Michael Redgrave" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Hard Man", + "year": 1957, + "cast": [ + "Guy Madison", + "Valerie French" + ], + "genres": [ + "Western" + ] + }, + { + "title": "A Hatful of Rain", + "year": 1957, + "cast": [ + "Eva Marie Saint", + "Don Murray", + "Tony Franciosa" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hear Me Good", + "year": 1957, + "cast": [ + "Hal March", + "Merry Anders" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Heaven Knows, Mr. Allison", + "year": 1957, + "cast": [ + "Deborah Kerr", + "Robert Mitchum" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Helen Morgan Story", + "year": 1957, + "cast": [ + "Ann Blyth", + "Paul Newman", + "Richard Carlson" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Hell Bound", + "year": 1957, + "cast": [ + "John Russell", + "June Blair" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Hell Canyon Outlaws", + "year": 1957, + "cast": [ + "Dale Robertson", + "Brian Keith", + "Rossana Rory" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Hellcats of the Navy", + "year": 1957, + "cast": [ + "Ronald Reagan", + "Nancy Davis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hell Drivers", + "year": 1957, + "cast": [ + "Stanley Baker", + "Patrick McGoohan" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Hell on Devil's Island", + "year": 1957, + "cast": [ + "William Talman", + "Helmut Dantine", + "Donna Martell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hell's Crossroads", + "year": 1957, + "cast": [ + "Peggie Castle", + "Robert Vaughn" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Hell Ship Mutiny", + "year": 1957, + "cast": [ + "Jon Hall", + "Roberta Haynes" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Hemo the Magnificent", + "year": 1957, + "cast": [], + "genres": [] + }, + { + "title": "Hidden Fear", + "year": 1957, + "cast": [ + "John Payne", + "Conrad Nagel" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Hired Gun", + "year": 1957, + "cast": [ + "Rory Calhoun", + "Anne Francis", + "Chuck Connors" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Hit and Run", + "year": 1957, + "cast": [ + "Cleo Moore", + "Vince Edwards" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Hold That Hypnotist", + "year": 1957, + "cast": [ + "Huntz Hall", + "Stanley Clements", + "Jane Nigh" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hoofs and Goofs", + "year": 1957, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Horsing Around", + "year": 1957, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hot Rod Rumble", + "year": 1957, + "cast": [ + "Leigh Snowden", + "Wright King" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hot Summer Night", + "year": 1957, + "cast": [ + "Leslie Nielsen", + "Colleen Miller", + "Jay C. Flippen" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "House of Numbers", + "year": 1957, + "cast": [ + "Jack Palance", + "Barbara Lang" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "I Was a Teenage Frankenstein", + "year": 1957, + "cast": [ + "Whit Bissell", + "Phyllis Coates" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "I Was a Teenage Werewolf", + "year": 1957, + "cast": [ + "Michael Landon", + "Whit Bissell" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Incredible Petrified World", + "year": 1957, + "cast": [ + "John Considine", + "Phyllis Coates" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Incredible Shrinking Man", + "year": 1957, + "cast": [ + "Grant Williams", + "Randy Stuart" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Interlude", + "year": 1957, + "cast": [ + "June Allyson", + "Rossano Brazzi", + "Marianne Koch", + "Françoise Rosay", + "Keith Andes" + ], + "genres": [ + "Drama", + "Romance" + ] + }, + { + "title": "Invasion of the Saucer Men", + "year": 1957, + "cast": [ + "Gloria Castillo", + "Frank Gorshin" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Invisible Boy", + "year": 1957, + "cast": [ + "Richard Eyer", + "Diane Brewster" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Iron Sheriff", + "year": 1957, + "cast": [ + "Sterling Hayden", + "Constance Ford" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Island in the Sun", + "year": 1957, + "cast": [ + "James Mason", + "Joan Fontaine", + "Harry Belafonte", + "Dorothy Dandridge", + "Stephen Boyd", + "Joan Collins" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Istanbul", + "year": 1957, + "cast": [ + "Errol Flynn", + "Cornell Borchers" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Jailhouse Rock", + "year": 1957, + "cast": [ + "Elvis Presley", + "Judy Tyler", + "Mickey Shaughnessy" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Jamboree", + "year": 1957, + "cast": [ + "Frankie Avalon", + "Fats Domino", + "Jerry Lee Lewis", + "Carl Perkins", + "Dick Clark" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The James Dean Story", + "year": 1957, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "Jeanne Eagels", + "year": 1957, + "cast": [ + "Kim Novak", + "Jeff Chandler", + "Charles Drake", + "Virginia Grey", + "Agnes Moorehead" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Jet Pilot", + "year": 1957, + "cast": [ + "John Wayne", + "Janet Leigh" + ], + "genres": [ + "War" + ] + }, + { + "title": "Joe Butterfly", + "year": 1957, + "cast": [ + "Audie Murphy", + "Keenan Wynn" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Joe Dakota", + "year": 1957, + "cast": [ + "Jock Mahoney", + "Luana Patten", + "Charles McGraw", + "Barbara Lawrence" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Johnny Trouble", + "year": 1957, + "cast": [ + "Ethel Barrymore", + "Stuart Whitman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Johnny Tremain", + "year": 1957, + "cast": [ + "Hal Stalmaster", + "Luana Patten" + ], + "genres": [ + "Family" + ] + }, + { + "title": "The Joker Is Wild", + "year": 1957, + "cast": [ + "Frank Sinatra", + "Mitzi Gaynor", + "Jeanne Crain" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Jungle Heat", + "year": 1957, + "cast": [ + "Lex Barker", + "Mari Blanchard" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Kelly and Me", + "year": 1957, + "cast": [ + "Van Johnson", + "Piper Laurie", + "Martha Hyer" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "The Kettles on Old MacDonald's Farm", + "year": 1957, + "cast": [ + "Marjorie Main", + "Parker Fennelly", + "Gloria Talbott" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Kiss Them for Me", + "year": 1957, + "cast": [ + "Cary Grant", + "Suzy Parker", + "Jayne Mansfield", + "Ray Walston", + "Larry Blyden", + "Werner Klemperer" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Kronos", + "year": 1957, + "cast": [ + "Jeff Morrow", + "Barbara Lawrence" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Land Unknown", + "year": 1957, + "cast": [ + "Jock Mahoney", + "Shirley Patterson" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Last of the Badmen", + "year": 1957, + "cast": [ + "George Montgomery", + "Keith Larsen" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Last Stagecoach West", + "year": 1957, + "cast": [ + "Jim Davis", + "Mary Castle" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Lawless Eighties", + "year": 1957, + "cast": [ + "Buster Crabbe", + "John Smith" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Legend of the Lost", + "year": 1957, + "cast": [ + "John Wayne", + "Sophia Loren", + "Rossano Brazzi" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Les Girls", + "year": 1957, + "cast": [ + "Mitzi Gaynor", + "Gene Kelly" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Let's Be Happy", + "year": 1957, + "cast": [ + "Vera-Ellen", + "Tony Martin" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Little Hut", + "year": 1957, + "cast": [ + "Ava Gardner", + "Stewart Granger", + "David Niven" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "The Living Idol", + "year": 1957, + "cast": [ + "Steve Forrest", + "Liliane Montevecchi" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Lizzie", + "year": 1957, + "cast": [ + "Eleanor Parker", + "Richard Boone" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Lonely Man", + "year": 1957, + "cast": [ + "Jack Palance", + "Anthony Perkins" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Looking for Danger", + "year": 1957, + "cast": [ + "Huntz Hall", + "Stanley Clements" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Love in the Afternoon", + "year": 1957, + "cast": [ + "Gary Cooper", + "Audrey Hepburn" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Loving You", + "year": 1957, + "cast": [ + "Elvis Presley", + "Lizabeth Scott", + "Wendell Corey" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Lure of the Swamp", + "year": 1957, + "cast": [ + "Marshall Thompson", + "Joan Vohs" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Man Afraid", + "year": 1957, + "cast": [ + "George Nader", + "Phyllis Thaxter", + "Tim Hovey" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Man of a Thousand Faces", + "year": 1957, + "cast": [ + "James Cagney", + "Dorothy Malone", + "Jane Greer" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Man on Fire", + "year": 1957, + "cast": [ + "Bing Crosby", + "Inger Stevens" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Man on the Prowl", + "year": 1957, + "cast": [ + "Mala Powers", + "James Best" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Man Who Turned to Stone", + "year": 1957, + "cast": [ + "Victor Jory", + "Paul Cavanagh" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Mayerling", + "year": 1957, + "cast": [ + "Audrey Hepburn", + "Mel Ferrer", + "Raymond Massey" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Men in War", + "year": 1957, + "cast": [ + "Robert Ryan", + "Aldo Ray", + "Vic Morrow" + ], + "genres": [ + "War" + ] + }, + { + "title": "A Merry Mix Up", + "year": 1957, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Midnight Story", + "year": 1957, + "cast": [ + "Tony Curtis", + "Marisa Pavan" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Mister Cory", + "year": 1957, + "cast": [ + "Tony Curtis", + "Martha Hyer", + "Charles Bickford", + "Kathryn Grant" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Mister Rock and Roll", + "year": 1957, + "cast": [ + "Alan Freed", + "Teddy Randazzo" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Monkey on My Back", + "year": 1957, + "cast": [ + "Cameron Mitchell", + "Dianne Foster" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "The Monolith Monsters", + "year": 1957, + "cast": [ + "Grant Williams", + "Lola Albright" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Monster from Green Hell", + "year": 1957, + "cast": [ + "Jim Davis", + "Barbara Turner" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Monster That Challenged the World", + "year": 1957, + "cast": [ + "Tim Holt", + "Audrey Dalton" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Muscle Up a Little Closer", + "year": 1957, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "My Gun Is Quick", + "year": 1957, + "cast": [ + "Robert Bray", + "Whitney Blake" + ], + "genres": [ + "Action" + ] + }, + { + "title": "My Man Godfrey", + "year": 1957, + "cast": [ + "June Allyson", + "David Niven" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "N.Y., N.Y.", + "year": 1957, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "Naked Paradise", + "year": 1957, + "cast": [ + "Beverly Garland", + "Richard Denning" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Night Passage", + "year": 1957, + "cast": [ + "James Stewart", + "Audie Murphy", + "Dan Duryea" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Nightfall", + "year": 1957, + "cast": [ + "Aldo Ray", + "Brian Keith", + "Anne Bancroft" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Night Runner", + "year": 1957, + "cast": [ + "Colleen Miller", + "Ray Danton" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Night the World Exploded", + "year": 1957, + "cast": [ + "Kathryn Grant" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "No Down Payment", + "year": 1957, + "cast": [ + "Joanne Woodward", + "Sheree North" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "No Time to Be Young", + "year": 1957, + "cast": [ + "Robert Vaughn", + "Roger Smith" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Not of This Earth", + "year": 1957, + "cast": [ + "Paul Birch", + "Beverly Garland" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Oh, Men! Oh, Women!", + "year": 1957, + "cast": [ + "Ginger Rogers", + "Dan Dailey", + "David Niven" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Oklahoman", + "year": 1957, + "cast": [ + "Joel McCrea", + "Barbara Hale", + "Brad Dexter" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Old Yeller", + "year": 1957, + "cast": [ + "Dorothy McGuire", + "Fess Parker", + "Tommy Kirk" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Omar Khayyam", + "year": 1957, + "cast": [ + "Cornel Wilde", + "Michael Rennie", + "Debra Paget" + ], + "genres": [ + "Historical" + ] + }, + { + "title": "Operation Mad Ball", + "year": 1957, + "cast": [ + "Jack Lemmon", + "Kathryn Grant", + "Mickey Rooney", + "Ernie Kovacs", + "Dick York" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Oregon Passage", + "year": 1957, + "cast": [ + "Lola Albright", + "John Ericson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Outer Space Jitters", + "year": 1957, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Outlaw's Son", + "year": 1957, + "cast": [ + "Dane Clark", + "Lori Nelson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Pajama Game", + "year": 1957, + "cast": [ + "Doris Day", + "John Raitt", + "Eddie Foy Jr." + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Pal Joey", + "year": 1957, + "cast": [ + "Frank Sinatra", + "Rita Hayworth", + "Kim Novak" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Panama Sal", + "year": 1957, + "cast": [ + "Elena Verdugo", + "Carlos Rivas" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Parson and the Outlaw", + "year": 1957, + "cast": [ + "Anthony Dexter", + "Sonny Tufts", + "Jean Parker" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Paths of Glory", + "year": 1957, + "cast": [ + "Kirk Douglas", + "Ralph Meeker", + "Adolphe Menjou", + "George Macready", + "Timothy Carey" + ], + "genres": [ + "War" + ] + }, + { + "title": "Pawnee", + "year": 1957, + "cast": [ + "George Montgomery", + "Bill Williams", + "Lola Albright", + "Francis McDonald" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Perri", + "year": 1957, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "The Persuader", + "year": 1957, + "cast": [ + "William Talman", + "Kristine Miller" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Peyton Place", + "year": 1957, + "cast": [ + "Lana Turner", + "Sandra Dee", + "Diane Varsi", + "Hope Lange", + "Terry Moore", + "Lee Philips", + "Betty Field" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Phantom Stagecoach", + "year": 1957, + "cast": [ + "William Bishop", + "Kathleen Crowley" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Pharaoh's Curse", + "year": 1957, + "cast": [ + "Ziva Rodann", + "Diane Brewster" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Pied Piper of Hamelin", + "year": 1957, + "cast": [ + "Van Johnson", + "Claude Rains", + "Lori Nelson" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Plunder Road", + "year": 1957, + "cast": [ + "Gene Raymond", + "Jeanne Cooper" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Portland Exposé", + "year": 1957, + "cast": [ + "Carolyn Craig", + "Edward Binns" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Pride and the Passion", + "year": 1957, + "cast": [ + "Cary Grant", + "Frank Sinatra", + "Sophia Loren" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Prince and the Showgirl", + "year": 1957, + "cast": [ + "Marilyn Monroe", + "Laurence Olivier" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Public Pigeon No. 1", + "year": 1957, + "cast": [ + "Red Skelton", + "Janet Blair", + "Vivian Blaine" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Quantez", + "year": 1957, + "cast": [ + "Fred MacMurray", + "Dorothy Malone" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Quiet Gun", + "year": 1957, + "cast": [ + "Forrest Tucker", + "Mara Corday" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Raiders of Old California", + "year": 1957, + "cast": [ + "Jim Davis", + "Arleen Whelan", + "Faron Young", + "Marty Robbins", + "Lee Van Cleef", + "Louis Jean Heydt" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Raintree County", + "year": 1957, + "cast": [ + "Montgomery Clift", + "Eva Marie Saint", + "Elizabeth Taylor", + "Rod Taylor", + "Agnes Moorehead", + "Lee Marvin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Reform School Girl", + "year": 1957, + "cast": [ + "Gloria Castillo", + "Edd Byrnes" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Restless Breed", + "year": 1957, + "cast": [ + "Scott Brady", + "Anne Bancroft" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Revolt at Fort Laramie", + "year": 1957, + "cast": [ + "John Dehner", + "Gregg Palmer" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Ride Back", + "year": 1957, + "cast": [ + "Anthony Quinn", + "William Conrad" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Ride Out for Revenge", + "year": 1957, + "cast": [ + "Rory Calhoun", + "Lloyd Bridges", + "Gloria Grahame" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Ride a Violent Mile", + "year": 1957, + "cast": [ + "John Agar", + "Penny Edwards", + "Bing Russell" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The River's Edge", + "year": 1957, + "cast": [ + "Anthony Quinn", + "Ray Milland", + "Debra Paget" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Rockabilly Baby", + "year": 1957, + "cast": [ + "Virginia Field", + "Douglas Kennedy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Rock All Night", + "year": 1957, + "cast": [ + "Abby Dalton", + "Russell Johnson" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "Run of the Arrow", + "year": 1957, + "cast": [ + "Rod Steiger", + "Brian Keith", + "Ralph Meeker" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Rusty Romeos", + "year": 1957, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Sad Sack", + "year": 1957, + "cast": [ + "Jerry Lewis", + "David Wayne", + "Peter Lorre" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Saint Joan", + "year": 1957, + "cast": [ + "Jean Seberg", + "Richard Widmark" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Sayonara", + "year": 1957, + "cast": [ + "Marlon Brando", + "Red Buttons", + "Miyoshi Umeki", + "Miiko Taka", + "Martha Scott", + "James Garner" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Scat Cats", + "year": 1957, + "cast": [ + "Spike and Tyke" + ], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "Seven Waves Away", + "year": 1957, + "cast": [ + "Tyrone Power", + "Mai Zetterling" + ], + "genres": [ + "War" + ] + }, + { + "title": "The Seventh Sin", + "year": 1957, + "cast": [ + "Eleanor Parker", + "Bill Travers", + "George Sanders" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Shadow on the Window", + "year": 1957, + "cast": [ + "Philip Carey", + "Betty Garrett" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "She Devil", + "year": 1957, + "cast": [ + "Mari Blanchard", + "Albert Dekker" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Shoot-Out at Medicine Bend", + "year": 1957, + "cast": [ + "Randolph Scott", + "Angie Dickinson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Short Cut to Hell", + "year": 1957, + "cast": [ + "Robert Ivers", + "Georgann Johnson" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Sierra Stranger", + "year": 1957, + "cast": [ + "Howard Duff", + "Dick Foran" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Silk Stockings", + "year": 1957, + "cast": [ + "Fred Astaire", + "Cyd Charisse" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Slaughter on Tenth Avenue", + "year": 1957, + "cast": [ + "Richard Egan", + "Jan Sterling", + "Dan Duryea", + "Julie Adams", + "Walter Matthau" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Slim Carter", + "year": 1957, + "cast": [ + "Jock Mahoney", + "Julie Adams", + "Tim Hovey" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Something of Value", + "year": 1957, + "cast": [ + "Rock Hudson", + "Sidney Poitier", + "Dana Wynter" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sorority Girl", + "year": 1957, + "cast": [ + "Susan Cabot", + "June Kenney" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Space Ship Sappy", + "year": 1957, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Spanish Affair", + "year": 1957, + "cast": [ + "Carmen Sevilla", + "Richard Kiley" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Spirit of St. Louis", + "year": 1957, + "cast": [ + "James Stewart" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Spoilers of the Forest", + "year": 1957, + "cast": [ + "Vera Ralston", + "Rod Cameron" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Spook Chasers", + "year": 1957, + "cast": [ + "Huntz Hall", + "Stanley Clements" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Spring Reunion", + "year": 1957, + "cast": [ + "Betty Hutton", + "Dana Andrews", + "Jean Hagen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Stopover Tokyo", + "year": 1957, + "cast": [ + "Robert Wagner", + "Joan Collins", + "Edmond O'Brien" + ], + "genres": [ + "Spy", + "Drama" + ] + }, + { + "title": "Street of Sinners", + "year": 1957, + "cast": [ + "George Montgomery", + "Geraldine Brooks" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Storm Rider", + "year": 1957, + "cast": [ + "Scott Brady", + "Mala Powers" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Story of Esther Costello", + "year": 1957, + "cast": [ + "Joan Crawford", + "Rossano Brazzi", + "Heather Sears" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Story of Mankind", + "year": 1957, + "cast": [ + "Ronald Colman", + "Vincent Price", + "Hedy Lamarr", + "Groucho Marx" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "The Strange One", + "year": 1957, + "cast": [ + "Ben Gazzara", + "George Peppard" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Strange World of Planet X", + "year": 1957, + "cast": [ + "Forrest Tucker" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Sun Also Rises", + "year": 1957, + "cast": [ + "Tyrone Power", + "Ava Gardner", + "Errol Flynn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sweet Smell of Success", + "year": 1957, + "cast": [ + "Burt Lancaster", + "Tony Curtis", + "Martin Milner" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Tall Stranger", + "year": 1957, + "cast": [ + "Joel McCrea", + "Virginia Mayo" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Tall T", + "year": 1957, + "cast": [ + "Randolph Scott", + "Richard Boone", + "Henry Silva", + "Skip Homeier", + "Maureen O'Sullivan" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Taming Sutton's Gal", + "year": 1957, + "cast": [ + "John Lupton", + "Gloria Talbott", + "May Wynn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Tammy and the Bachelor", + "year": 1957, + "cast": [ + "Debbie Reynolds", + "Walter Brennan", + "Leslie Nielsen" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Tarzan and the Lost Safari", + "year": 1957, + "cast": [ + "Gordon Scott", + "Betta St. John" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Tattered Dress", + "year": 1957, + "cast": [ + "Jeff Chandler", + "Jeanne Crain", + "Elaine Stewart" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Teenage Doll", + "year": 1957, + "cast": [ + "June Kenney", + "Fay Spain" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Ten Thousand Bedrooms", + "year": 1957, + "cast": [ + "Dean Martin", + "Anna Maria Alberghetti" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "That Night!", + "year": 1957, + "cast": [ + "John Beal", + "Augusta Dabney" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "This Angry Age", + "year": 1957, + "cast": [ + "Silvana Mangano", + "Anthony Perkins", + "Richard Conte" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "This Could Be the Night", + "year": 1957, + "cast": [ + "Jean Simmons", + "Tony Franciosa" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "The Three Faces of Eve", + "year": 1957, + "cast": [ + "Joanne Woodward", + "Lee J. Cobb" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Three Little Bops", + "year": 1957, + "cast": [], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "Three Violent People", + "year": 1957, + "cast": [ + "Charlton Heston", + "Anne Baxter", + "Gilbert Roland", + "Tom Tryon", + "Elaine Stritch" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Tijuana Story", + "year": 1957, + "cast": [ + "James Darren", + "Rodolfo Acosta", + "Jean Willes" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Time Limit", + "year": 1957, + "cast": [ + "Richard Widmark", + "Richard Basehart", + "Rip Torn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Tin Star", + "year": 1957, + "cast": [ + "Henry Fonda", + "Anthony Perkins", + "Betsy Palmer" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Tip on a Dead Jockey", + "year": 1957, + "cast": [ + "Robert Taylor", + "Dorothy Malone" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Toccata for Toy Trains", + "year": 1957, + "cast": [], + "genres": [] + }, + { + "title": "Tomahawk Trail", + "year": 1957, + "cast": [ + "Chuck Connors", + "Susan Cummings" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Top Secret Affair", + "year": 1957, + "cast": [ + "Kirk Douglas", + "Susan Hayward", + "Jim Backus" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Tops with Pops", + "year": 1957, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Trooper Hook", + "year": 1957, + "cast": [ + "Joel McCrea", + "Barbara Stanwyck" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The True Story of Jesse James", + "year": 1957, + "cast": [ + "Robert Wagner", + "Hope Lange" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Tweety and the Beanstalk", + "year": 1957, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "The Undead", + "year": 1957, + "cast": [ + "Pamela Duncan", + "Allison Hayes" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Under Fire", + "year": 1957, + "cast": [ + "Rex Reason", + "Harry Morgan" + ], + "genres": [ + "War" + ] + }, + { + "title": "The Unearthly", + "year": 1957, + "cast": [ + "John Carradine", + "Allison Hayes" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Unholy Wife", + "year": 1957, + "cast": [ + "Diana Dors", + "Rod Steiger", + "Tom Tryon" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Unknown Terror", + "year": 1957, + "cast": [ + "Mala Powers", + "Paul Richards" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Untamed Youth", + "year": 1957, + "cast": [ + "Mamie Van Doren", + "Lori Nelson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Until They Sail", + "year": 1957, + "cast": [ + "Jean Simmons", + "Joan Fontaine", + "Paul Newman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Up in Smoke", + "year": 1957, + "cast": [ + "Huntz Hall", + "Stanley Clements" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Utah Blaine", + "year": 1957, + "cast": [ + "Rory Calhoun", + "Susan Cummings" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Valerie", + "year": 1957, + "cast": [ + "Sterling Hayden", + "Anita Ekberg" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Vampire", + "year": 1957, + "cast": [ + "John Beal", + "Coleen Gray" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Vanishing Duck", + "year": 1957, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "The Vintage", + "year": 1957, + "cast": [ + "Pier Angeli", + "Mel Ferrer", + "John Kerr" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Violators", + "year": 1957, + "cast": [ + "Arthur O'Connell", + "Nancy Malone" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Voodoo Island", + "year": 1957, + "cast": [ + "Boris Karloff", + "Jean Engstrom" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Voodoo Woman", + "year": 1957, + "cast": [ + "Tom Conway", + "Marla English", + "Mike Connors" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "War Drums", + "year": 1957, + "cast": [ + "Lex Barker", + "Joan Taylor" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Way to the Gold", + "year": 1957, + "cast": [ + "Jeffrey Hunter", + "Sheree North", + "Barry Sullivan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Wayward Bus", + "year": 1957, + "cast": [ + "Jayne Mansfield", + "Joan Collins", + "Dan Dailey" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Wayward Girl", + "year": 1957, + "cast": [ + "Marcia Henderson", + "Whit Bissell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "What's Opera, Doc?", + "year": 1957, + "cast": [ + "Bugs Bunny" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Wild Is the Wind", + "year": 1957, + "cast": [ + "Anna Magnani", + "Anthony Quinn", + "Anthony Franciosa" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Will Success Spoil Rock Hunter?", + "year": 1957, + "cast": [ + "Tony Randall", + "Jayne Mansfield" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Wings of Eagles", + "year": 1957, + "cast": [ + "John Wayne", + "Maureen O'Hara", + "Dan Dailey" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Witness for the Prosecution", + "year": 1957, + "cast": [ + "Charles Laughton", + "Tyrone Power", + "Marlene Dietrich" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Woman and the Hunter", + "year": 1957, + "cast": [ + "Ann Sheridan", + "David Farrar" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Young and Dangerous", + "year": 1957, + "cast": [ + "Lili Gentle", + "Mark Damon", + "Edward Binns" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Young Don't Cry", + "year": 1957, + "cast": [ + "Sal Mineo", + "James Whitmore" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Zero Hour!", + "year": 1957, + "cast": [ + "Dana Andrews", + "Sterling Hayden", + "Linda Darnell" + ], + "genres": [ + "Disaster" + ] + }, + { + "title": "Zombies of Mora Tau", + "year": 1957, + "cast": [ + "Allison Hayes", + "Gregg Palmer" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Ambush at Cimarron Pass", + "year": 1958, + "cast": [ + "Scott Brady", + "Margia Dean", + "Clint Eastwood" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Andy Hardy Comes Home", + "year": 1958, + "cast": [ + "Mickey Rooney", + "Patricia Breslin", + "Fay Holden" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Anna Lucasta", + "year": 1958, + "cast": [ + "Eartha Kitt", + "Sammy Davis Jr." + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Another Time, Another Place", + "year": 1958, + "cast": [ + "Lana Turner", + "Barry Sullivan", + "Sean Connery", + "Glynis Johns" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Apache Territory", + "year": 1958, + "cast": [ + "Rory Calhoun", + "Barbara Bates", + "John Dehner" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Arrivederci Roma", + "year": 1958, + "cast": [ + "Mario Lanza", + "Marisa Allasio" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "As Young as We Are", + "year": 1958, + "cast": [ + "Robert Harland", + "Pippa Scott" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Attack of the 50 Foot Woman", + "year": 1958, + "cast": [ + "Allison Hayes", + "Yvette Vickers" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Attack of the Puppet People", + "year": 1958, + "cast": [ + "John Agar", + "June Kenney" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Auntie Mame", + "year": 1958, + "cast": [ + "Rosalind Russell", + "Coral Browne", + "Forrest Tucker", + "Peggy Cass", + "Roger Smith" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Badlanders", + "year": 1958, + "cast": [ + "Alan Ladd", + "Ernest Borgnine", + "Katy Jurado" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Badman's Country", + "year": 1958, + "cast": [ + "George Montgomery", + "Buster Crabbe" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Barbarian and the Geisha", + "year": 1958, + "cast": [ + "John Wayne", + "Eiko Ando", + "Sam Jaffe" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Bell, Book and Candle", + "year": 1958, + "cast": [ + "James Stewart", + "Kim Novak", + "Jack Lemmon", + "Ernie Kovacs" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Big Beat", + "year": 1958, + "cast": [ + "William Reynolds", + "Andra Martin" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Big Country", + "year": 1958, + "cast": [ + "Gregory Peck", + "Charlton Heston", + "Jean Simmons", + "Carroll Baker", + "Burl Ives", + "Charles Bickford", + "Chuck Connors" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Black Orchid", + "year": 1958, + "cast": [ + "Sophia Loren", + "Anthony Quinn" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Blob", + "year": 1958, + "cast": [ + "Steve McQueen", + "Aneta Corsaut" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Blood Arrow", + "year": 1958, + "cast": [ + "Phyllis Coates", + "Scott Brady" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Bonjour Tristesse", + "year": 1958, + "cast": [ + "Deborah Kerr", + "David Niven", + "Jean Seberg" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Born Reckless", + "year": 1958, + "cast": [ + "Mamie van Doren", + "Carol Ohmart" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Brain Eaters", + "year": 1958, + "cast": [ + "Ed Nelson" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Bravados", + "year": 1958, + "cast": [ + "Gregory Peck", + "Stephen Boyd", + "Albert Salmi", + "Joan Collins" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Brothers Karamazov", + "year": 1958, + "cast": [ + "Yul Brynner", + "Maria Schell", + "Claire Bloom", + "Lee J. Cobb" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Buccaneer", + "year": 1958, + "cast": [ + "Yul Brynner", + "Claire Bloom", + "Charles Boyer", + "Inger Stevens", + "Charlton Heston" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Buchanan Rides Alone", + "year": 1958, + "cast": [ + "Randolph Scott", + "Craig Stevens", + "Jennifer Holden" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Bullwhip", + "year": 1958, + "cast": [ + "Guy Madison", + "Rhonda Fleming", + "James Griffith" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Case Against Brooklyn", + "year": 1958, + "cast": [ + "Darren McGavin", + "Margaret Hayes" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Cat on a Hot Tin Roof", + "year": 1958, + "cast": [ + "Elizabeth Taylor", + "Paul Newman", + "Burl Ives", + "Judith Anderson", + "Madeleine Sherwood", + "Jack Carson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Cattle Empire", + "year": 1958, + "cast": [ + "Joel McCrea", + "Phyllis Coates" + ], + "genres": [ + "Western" + ] + }, + { + "title": "A Certain Smile", + "year": 1958, + "cast": [ + "Rossano Brazzi", + "Joan Fontaine", + "Bradford Dillman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "China Doll", + "year": 1958, + "cast": [ + "Victor Mature", + "Li Hua Li", + "Ward Bond" + ], + "genres": [ + "War", + "Romance" + ] + }, + { + "title": "Cole Younger, Gunfighter", + "year": 1958, + "cast": [ + "Frank Lovejoy", + "James Best", + "Abby Dalton" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Colossus of New York", + "year": 1958, + "cast": [ + "Ross Martin", + "Hardy Krüger", + "Mala Powers" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Cool and the Crazy", + "year": 1958, + "cast": [ + "Scott Marlowe", + "Gigi Perreau" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Cop Hater", + "year": 1958, + "cast": [ + "Robert Loggia", + "Gerald O'Loughlin" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Corridors of Blood", + "year": 1958, + "cast": [ + "Boris Karloff", + "Betta St. John" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Country Music Holiday", + "year": 1958, + "cast": [ + "Ferlin Husky", + "Zsa Zsa Gabor" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Cowboy", + "year": 1958, + "cast": [ + "Glenn Ford", + "Jack Lemmon", + "Anna Kashfi", + "Brian Donlevy", + "Richard Jaeckel", + "Dick York" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Crash Landing", + "year": 1958, + "cast": [ + "Gary Merrill", + "Nancy Davis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Cry Baby Killer", + "year": 1958, + "cast": [ + "Harry Lauter", + "Jack Nicholson", + "Carolyn Mitchell" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Cry Terror!", + "year": 1958, + "cast": [ + "James Mason", + "Inger Stevens", + "Rod Steiger", + "Neville Brand", + "Angie Dickinson" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Curse of the Faceless Man", + "year": 1958, + "cast": [ + "Richard Anderson", + "Adele Mara" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Daddy-O", + "year": 1958, + "cast": [ + "Dick Contino", + "Sandra Giles" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Damn Citizen", + "year": 1958, + "cast": [ + "Keith Andes", + "Margaret Hayes" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Damn Yankees", + "year": 1958, + "cast": [ + "Tab Hunter", + "Gwen Verdon", + "Ray Walston" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Darby's Rangers", + "year": 1958, + "cast": [ + "James Garner", + "Jack Warden", + "Stuart Whitman" + ], + "genres": [ + "War" + ] + }, + { + "title": "Day of the Badman", + "year": 1958, + "cast": [ + "Fred MacMurray", + "Joan Weldon", + "John Ericson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Decks Ran Red", + "year": 1958, + "cast": [ + "James Mason", + "Dorothy Dandridge" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Deep Six", + "year": 1958, + "cast": [ + "Alan Ladd", + "Dianne Foster", + "William Bendix" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "The Defiant Ones", + "year": 1958, + "cast": [ + "Tony Curtis", + "Sidney Poitier" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Desert Hell", + "year": 1958, + "cast": [ + "Brian Keith", + "Barbara Hale" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Desire Under the Elms", + "year": 1958, + "cast": [ + "Sophia Loren", + "Anthony Perkins", + "Burl Ives" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Diamond Safari", + "year": 1958, + "cast": [ + "Kevin McCarthy", + "Andre Morrell" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Dragstrip Riot", + "year": 1958, + "cast": [ + "Yvonne Lime", + "Fay Wray" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Earth vs. the Spider", + "year": 1958, + "cast": [ + "Ed Kemmer", + "June Kenney" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Edge of Fury", + "year": 1958, + "cast": [ + "Michael Higgins", + "Jean Allison" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Enchanted Island", + "year": 1958, + "cast": [ + "Jane Powell", + "Dana Andrews" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Fearmakers", + "year": 1958, + "cast": [ + "Dana Andrews", + "Dick Foran", + "Mel Torme" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Female Animal", + "year": 1958, + "cast": [ + "Hedy Lamarr", + "Jan Sterling" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Fiend Who Walked the West", + "year": 1958, + "cast": [ + "Robert Evans", + "Hugh O'Brian" + ], + "genres": [ + "Western", + "Science Fiction" + ] + }, + { + "title": "Fifi Blows Her Top", + "year": 1958, + "cast": [ + "Three Stooges" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Flame Barrier", + "year": 1958, + "cast": [ + "Arthur Franz", + "Kathleen Crowley" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Flaming Frontier", + "year": 1958, + "cast": [ + "Bruce Bennett", + "Jim Davis" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Flood Tide", + "year": 1958, + "cast": [ + "George Nader", + "Cornell Borchers" + ], + "genres": [ + "Drama", + "Romance" + ] + }, + { + "title": "The Fly", + "year": 1958, + "cast": [ + "Vincent Price", + "Patricia Owens", + "Herbert Marshall", + "David Hedison" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Flying Saucer Daffy", + "year": 1958, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Fort Bowie", + "year": 1958, + "cast": [ + "Ben Johnson", + "Maureen Hingert" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Fort Dobbs", + "year": 1958, + "cast": [ + "Clint Walker", + "Virginia Mayo", + "Brian Keith" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Fort Massacre", + "year": 1958, + "cast": [ + "Joel McCrea", + "Forrest Tucker", + "Susan Cabot" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Frankenstein 1970", + "year": 1958, + "cast": [ + "Boris Karloff", + "Don 'Red' Barry" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Frankenstein's Daughter", + "year": 1958, + "cast": [ + "John Ashley" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Fraulein", + "year": 1958, + "cast": [ + "Dana Wynter", + "Mel Ferrer", + "Dolores Michaels" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "From Hell to Texas", + "year": 1958, + "cast": [ + "Don Murray", + "Diane Varsi", + "R. G. Armstrong", + "Chill Wills", + "Dennis Hopper" + ], + "genres": [ + "Western" + ] + }, + { + "title": "From the Earth to the Moon", + "year": 1958, + "cast": [ + "Joseph Cotten", + "George Sanders", + "Debra Paget" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Frontier Gun", + "year": 1958, + "cast": [ + "John Agar", + "Lyn Thomas" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Gang War", + "year": 1958, + "cast": [ + "Charles Bronson", + "Jennifer Holden" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Geisha Boy", + "year": 1958, + "cast": [ + "Jerry Lewis", + "Sessue Hayakawa", + "Suzanne Pleshette" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Ghost of the China Sea", + "year": 1958, + "cast": [ + "David Brian" + ], + "genres": [ + "War" + ] + }, + { + "title": "The Gift of Love", + "year": 1958, + "cast": [ + "Lauren Bacall", + "Robert Stack", + "Lorne Greene" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Gigi", + "year": 1958, + "cast": [ + "Leslie Caron", + "Louis Jourdan", + "Maurice Chevalier", + "Hermione Gingold" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Girl Most Likely", + "year": 1958, + "cast": [ + "Jane Powell", + "Cliff Robertson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Girl in the Woods", + "year": 1958, + "cast": [ + "Margaret Hayes", + "Forrest Tucker" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Girl on the Run", + "year": 1958, + "cast": [ + "Efrem Zimbalist Jr.", + "Erin O'Brien" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Girls on the Loose", + "year": 1958, + "cast": [ + "Mara Corday", + "Lita Milan", + "Barbara Bostock" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "God's Little Acre", + "year": 1958, + "cast": [ + "Robert Ryan", + "Aldo Ray", + "Tina Louise" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Goddess", + "year": 1958, + "cast": [ + "Kim Stanley", + "Lloyd Bridges" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Going Steady", + "year": 1958, + "cast": [ + "Molly Bee" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Gun Fever", + "year": 1958, + "cast": [ + "Mark Stevens", + "Maureen Hingert" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Gunman's Walk", + "year": 1958, + "cast": [ + "Van Heflin", + "Tab Hunter", + "Kathryn Grant" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Gun Runners", + "year": 1958, + "cast": [ + "Audie Murphy", + "Eddie Albert", + "Patricia Owens" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Gunsmoke in Tucson", + "year": 1958, + "cast": [ + "Mark Stevens", + "Forrest Tucker", + "Gale Robbins" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Handle with Care", + "year": 1958, + "cast": [ + "Dean Jones", + "Joan O'Brien" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Harry Black", + "year": 1958, + "cast": [ + "Stewart Granger", + "Barbara Rush" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Hell's Five Hours", + "year": 1958, + "cast": [ + "Stephen McNally", + "Coleen Gray" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The High Cost of Loving", + "year": 1958, + "cast": [ + "Jose Ferrer", + "Gena Rowlands" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "High Hell", + "year": 1958, + "cast": [ + "Elaine Stewart", + "John Derek" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "High School Confidential", + "year": 1958, + "cast": [ + "Mamie Van Doren", + "Russ Tamblyn", + "Diane Jergens" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Home Before Dark", + "year": 1958, + "cast": [ + "Jean Simmons", + "Rhonda Fleming" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hong Kong Confidential", + "year": 1958, + "cast": [ + "Gene Barry", + "Beverly Tyler", + "Allison Hayes" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Hot Angel", + "year": 1958, + "cast": [ + "Jackie Loughery", + "Ed Kemmer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hot Car Girl", + "year": 1958, + "cast": [ + "June Kenney" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hot Rod Gang", + "year": 1958, + "cast": [ + "John Ashley", + "Gene Vincent" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hot Spell", + "year": 1958, + "cast": [ + "Anthony Quinn", + "Shirley MacLaine" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Houseboat", + "year": 1958, + "cast": [ + "Cary Grant", + "Sophia Loren" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "How to Make a Monster", + "year": 1958, + "cast": [ + "Robert H. Harris", + "Gary Conway" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Hunters", + "year": 1958, + "cast": [ + "Robert Mitchum", + "Robert Wagner", + "Richard Egan", + "Lee Philips", + "May Britt" + ], + "genres": [ + "War" + ] + }, + { + "title": "I Accuse!", + "year": 1958, + "cast": [ + "Jose Ferrer", + "Viveca Lindfors" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "I Bury the Living", + "year": 1958, + "cast": [ + "Richard Boone", + "Theodore Bikel" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "I Married a Monster from Outer Space", + "year": 1958, + "cast": [ + "Tom Tryon", + "Gloria Talbott" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "I Married a Woman", + "year": 1958, + "cast": [ + "George Gobel", + "Diana Dors" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "I, Mobster", + "year": 1958, + "cast": [ + "Steve Cochran", + "Celia Lovsky" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "I Want to Live!", + "year": 1958, + "cast": [ + "Susan Hayward", + "Simon Oakland", + "Theodore Bikel" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Imitation General", + "year": 1958, + "cast": [ + "Glenn Ford", + "Red Buttons", + "Taina Elg" + ], + "genres": [ + "War", + "Comedy" + ] + }, + { + "title": "In Love and War", + "year": 1958, + "cast": [ + "Robert Wagner", + "Dana Wynter", + "Sheree North", + "Jeffrey Hunter", + "Hope Lange" + ], + "genres": [ + "War" + ] + }, + { + "title": "In the Money", + "year": 1958, + "cast": [ + "Huntz Hall", + "Stanley Clements" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Indiscreet", + "year": 1958, + "cast": [ + "Ingrid Bergman", + "Cary Grant" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "The Inn of the Sixth Happiness", + "year": 1958, + "cast": [ + "Ingrid Bergman", + "Curt Jurgens", + "Robert Donat" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Invisible Avenger", + "year": 1958, + "cast": [ + "Richard Derr", + "Helen Westcott" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Island Women", + "year": 1958, + "cast": [ + "Marie Windsor", + "Vince Edwards" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "It! The Terror from Beyond Space", + "year": 1958, + "cast": [ + "Marshall Thompson" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Jet Attack", + "year": 1958, + "cast": [ + "John Agar", + "Audrey Totter" + ], + "genres": [ + "War" + ] + }, + { + "title": "Johnny Rocco", + "year": 1958, + "cast": [ + "Coleen Gray", + "Richard Eyer" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Joy Ride", + "year": 1958, + "cast": [ + "Regis Toomey", + "Ann Doran" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Juvenile Jungle", + "year": 1958, + "cast": [ + "Rebecca Welles", + "Corey Allen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Kathy O'", + "year": 1958, + "cast": [ + "Jan Sterling", + "Patty McCormack" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Key", + "year": 1958, + "cast": [ + "Sophia Loren", + "William Holden" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "King Creole", + "year": 1958, + "cast": [ + "Elvis Presley", + "Vic Morrow", + "Dean Jagger", + "Carolyn Jones", + "Walter Matthau" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Kings Go Forth", + "year": 1958, + "cast": [ + "Frank Sinatra", + "Tony Curtis", + "Natalie Wood" + ], + "genres": [ + "War" + ] + }, + { + "title": "Knighty Knight Bugs", + "year": 1958, + "cast": [ + "Mel Blanc", + "(voice)" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "The Lady Takes a Flyer", + "year": 1958, + "cast": [ + "Lana Turner", + "Jeff Chandler" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Lafayette Escadrille", + "year": 1958, + "cast": [ + "Tab Hunter", + "David Janssen", + "Will Hutchins" + ], + "genres": [ + "War" + ] + }, + { + "title": "The Last Hurrah", + "year": 1958, + "cast": [ + "Spencer Tracy", + "Pat O'Brien", + "Jeffrey Hunter", + "Dianne Foster", + "Basil Rathbone" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Last of the Fast Guns", + "year": 1958, + "cast": [ + "Jock Mahoney", + "Gilbert Roland", + "Linda Cristal" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Law and Jake Wade", + "year": 1958, + "cast": [ + "Robert Taylor", + "Richard Widmark" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Left Handed Gun", + "year": 1958, + "cast": [ + "Paul Newman", + "Lita Milan", + "John Dehner" + ], + "genres": [ + "Western", + "Biography" + ] + }, + { + "title": "Let's Rock", + "year": 1958, + "cast": [ + "Julius LaRosa", + "Phyllis Newman" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Life Begins at 17", + "year": 1958, + "cast": [ + "Mark Damon", + "Luana Anders" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Light in the Forest", + "year": 1958, + "cast": [ + "Fess Parker", + "Wendell Corey", + "Joanne Dru" + ], + "genres": [ + "Family" + ] + }, + { + "title": "The Lineup", + "year": 1958, + "cast": [ + "Eli Wallach", + "Robert Keith", + "Richard Jaeckel" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Live Fast, Die Young", + "year": 1958, + "cast": [ + "Mary Murphy", + "Norma Eberhardt", + "Mike Connors" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Lonelyhearts", + "year": 1958, + "cast": [ + "Montgomery Clift", + "Myrna Loy", + "Maureen Stapleton", + "Robert Ryan", + "Dolores Hart" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Lone Ranger and the Lost City of Gold", + "year": 1958, + "cast": [ + "Clayton Moore", + "Jay Silverheels" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Long, Hot Summer", + "year": 1958, + "cast": [ + "Paul Newman", + "Orson Welles", + "Joanne Woodward", + "Angela Lansbury", + "Anthony Franciosa", + "Lee Remick" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Lost, Lonely and Vicious", + "year": 1958, + "cast": [ + "Lilyan Chauvin", + "Carol Nugent", + "Sandra Giles" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Lost Lagoon", + "year": 1958, + "cast": [ + "Jeffrey Lynn", + "Peter Donat" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Lost Missile", + "year": 1958, + "cast": [ + "Robert Loggia", + "Phillip Pine" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Macabre", + "year": 1958, + "cast": [ + "William Prince", + "Christine White" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Machete", + "year": 1958, + "cast": [ + "Mari Blanchard", + "Albert Dekker", + "Lee Van Cleef" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Machine-Gun Kelly", + "year": 1958, + "cast": [ + "Charles Bronson", + "Susan Cabot" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Man in the Shadow", + "year": 1958, + "cast": [ + "Jeff Chandler", + "Orson Welles", + "Colleen Miller", + "Ben Alexander", + "Barbara Lawrence" + ], + "genres": [ + "Crime", + "Western" + ] + }, + { + "title": "Man from God's Country", + "year": 1958, + "cast": [ + "George Montgomery", + "Randy Stuart" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Man of the West", + "year": 1958, + "cast": [ + "Gary Cooper", + "Lee J. Cobb", + "Julie London", + "Jack Lord", + "Arthur O'Connell", + "John Dehner" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Man or Gun", + "year": 1958, + "cast": [ + "Macdonald Carey", + "Audrey Totter" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Man Who Died Twice", + "year": 1958, + "cast": [ + "Rod Cameron", + "Vera Ralston" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Maracaibo", + "year": 1958, + "cast": [ + "Cornel Wilde", + "Jean Wallace" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Mardi Gras", + "year": 1958, + "cast": [ + "Pat Boone", + "Christine Carère" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Marjorie Morningstar", + "year": 1958, + "cast": [ + "Natalie Wood", + "Gene Kelly", + "Claire Trevor", + "Ed Wynn", + "Carolyn Jones", + "Martin Milner" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Matchmaker", + "year": 1958, + "cast": [ + "Shirley Booth", + "Shirley MacLaine", + "Anthony Perkins" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Me and the Colonel", + "year": 1958, + "cast": [ + "Danny Kaye", + "Nicole Maurey" + ], + "genres": [ + "War", + "Comedy" + ] + }, + { + "title": "Merry Andrew", + "year": 1958, + "cast": [ + "Danny Kaye", + "Pier Angeli" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Missile to the Moon", + "year": 1958, + "cast": [ + "Richard Travis", + "Cathy Downs" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Missouri Traveler", + "year": 1958, + "cast": [ + "Brandon deWilde", + "Lee Marvin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Money, Women and Guns", + "year": 1958, + "cast": [ + "Jock Mahoney", + "Kim Hunter", + "Tim Hovey" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Monster on the Campus", + "year": 1958, + "cast": [ + "Arthur Franz", + "Joanna Moore" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "A Movie", + "year": 1958, + "cast": [], + "genres": [ + "Short" + ] + }, + { + "title": "The Mugger", + "year": 1958, + "cast": [ + "Kent Smith", + "Nan Martin", + "James Franciscus" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Murder by Contract", + "year": 1958, + "cast": [ + "Vince Edwards", + "Phillip Pine" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Naked and the Dead", + "year": 1958, + "cast": [ + "Cliff Robertson", + "Raymond Massey", + "Aldo Ray" + ], + "genres": [ + "War" + ] + }, + { + "title": "The Naked Earth", + "year": 1958, + "cast": [ + "Richard Todd", + "Juliette Gréco" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Naked Maja", + "year": 1958, + "cast": [ + "Ava Gardner", + "Anthony Franciosa" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "A Nice Little Bank That Should Be Robbed", + "year": 1958, + "cast": [ + "Tom Ewell", + "Mickey Rooney", + "Dina Merrill" + ], + "genres": [ + "Crime", + "Comedy" + ] + }, + { + "title": "No Place to Land", + "year": 1958, + "cast": [ + "John Ireland", + "Mari Blanchard", + "Gail Russell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "No Time for Sergeants", + "year": 1958, + "cast": [ + "Andy Griffith", + "Nick Adams", + "Myron McCormick", + "Murray Hamilton", + "Will Hutchins", + "Dub Taylor", + "Don Knotts" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Notorious Mr. Monks", + "year": 1958, + "cast": [ + "Vera Ralston", + "Luana Anders" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Oil's Well That Ends Well", + "year": 1958, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Old Man and the Sea", + "year": 1958, + "cast": [ + "Spencer Tracy" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Once Upon a Horse...", + "year": 1958, + "cast": [ + "Dan Rowan", + "Dick Martin", + "Martha Hyer", + "Leif Erickson", + "Nita Talbot" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Onionhead", + "year": 1958, + "cast": [ + "Andy Griffith", + "Walter Matthau", + "Joey Bishop", + "Felicia Farr", + "James Gregory", + "Erin O'Brien" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "Outcasts of the City", + "year": 1958, + "cast": [ + "Osa Massen", + "Robert Hutton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Paris Holiday", + "year": 1958, + "cast": [ + "Bob Hope", + "Fernandel", + "Anita Ekberg" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Party Crashers", + "year": 1958, + "cast": [ + "Frances Farmer", + "Doris Dowling", + "Connie Stevens" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Party Girl", + "year": 1958, + "cast": [ + "Cyd Charisse", + "Robert Taylor", + "Lee J. Cobb" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Perfect Furlough", + "year": 1958, + "cast": [ + "Tony Curtis", + "Janet Leigh", + "Linda Cristal" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Pies and Guys", + "year": 1958, + "cast": [ + "Three Stooges" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Pre-Hysterical Hare", + "year": 1958, + "cast": [ + "Bugs Bunny" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "The Proud Rebel", + "year": 1958, + "cast": [ + "Alan Ladd", + "Olivia de Havilland", + "Dean Jagger" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Quantrill's Raiders", + "year": 1958, + "cast": [ + "Steve Cochran", + "Diane Brewster" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Queen of Outer Space", + "year": 1958, + "cast": [ + "Zsa Zsa Gabor", + "Eric Fleming" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Quiet American", + "year": 1958, + "cast": [ + "Audie Murphy", + "Michael Redgrave" + ], + "genres": [ + "War" + ] + }, + { + "title": "Quiz Whizz", + "year": 1958, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Rally Round the Flag, Boys!", + "year": 1958, + "cast": [ + "Paul Newman", + "Joanne Woodward", + "Joan Collins" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Raw Wind in Eden", + "year": 1958, + "cast": [ + "Esther Williams", + "Jeff Chandler", + "Rossana Podestà" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Reluctant Debutante", + "year": 1958, + "cast": [ + "Rex Harrison", + "Kay Kendall" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "The Restless Years", + "year": 1958, + "cast": [ + "John Saxon", + "Sandra Dee" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Return of Dracula", + "year": 1958, + "cast": [ + "Francis Lederer", + "Norma Eberhardt" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Return of the Fly", + "year": 1958, + "cast": [ + "Vincent Price" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Return to Warbow", + "year": 1958, + "cast": [ + "Philip Carey", + "Catherine McLeod" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Revolt in the Big House", + "year": 1958, + "cast": [ + "Gene Evans", + "Robert Blake" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Ride a Crooked Trail", + "year": 1958, + "cast": [ + "Audie Murphy", + "Gia Scala", + "Henry Silva", + "Walter Matthau" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Robin Hood Daffy", + "year": 1958, + "cast": [ + "Daffy Duck" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Robin Hoodwinked", + "year": 1958, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Rock-A-Bye Baby", + "year": 1958, + "cast": [ + "Jerry Lewis", + "Marilyn Maxwell", + "Connie Stevens" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Roots of Heaven", + "year": 1958, + "cast": [ + "Errol Flynn", + "Trevor Howard" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Royal Cat Nap", + "year": 1958, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Run Silent, Run Deep", + "year": 1958, + "cast": [ + "Clark Gable", + "Burt Lancaster", + "Jack Warden", + "Brad Dexter", + "Don Rickles" + ], + "genres": [ + "War" + ] + }, + { + "title": "Rx Murder", + "year": 1958, + "cast": [ + "Rick Jason", + "Lisa Gastoni", + "Marius Goring" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Saddle the Wind", + "year": 1958, + "cast": [ + "Robert Taylor", + "John Cassavetes", + "Julie London" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Saga of Hemp Brown", + "year": 1958, + "cast": [ + "Rory Calhoun", + "Beverly Garland", + "John Larch" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Screaming Mimi", + "year": 1958, + "cast": [ + "Anita Ekberg", + "Gypsy Rose Lee" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Screaming Skull", + "year": 1958, + "cast": [ + "John Hudson", + "Peggy Webber" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Senior Prom", + "year": 1958, + "cast": [ + "Jill Corey", + "Paul Hampton" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Separate Tables", + "year": 1958, + "cast": [ + "David Niven", + "Deborah Kerr", + "Burt Lancaster", + "Wendy Hiller", + "Gladys Cooper", + "Rita Hayworth" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Seven Hills of Rome", + "year": 1958, + "cast": [ + "Mario Lanza", + "Peggie Castle" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Seventh Voyage of Sinbad", + "year": 1958, + "cast": [ + "Kerwin Mathews", + "Kathryn Grant" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "She Demons", + "year": 1958, + "cast": [ + "Irish McCalla" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "She Gods of Shark Reef", + "year": 1958, + "cast": [ + "Lisa Montell", + "Don Durant" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Sheepman", + "year": 1958, + "cast": [ + "Glenn Ford", + "Shirley MacLaine" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Showdown at Boot Hill", + "year": 1958, + "cast": [ + "Charles Bronson", + "Carole Mathews" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Sierra Baron", + "year": 1958, + "cast": [ + "Brian Keith", + "Mala Powers", + "Rita Gam" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Sing, Boy, Sing", + "year": 1958, + "cast": [ + "Tommy Sands", + "Lili Gentle", + "Edmond O'Brien" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Some Came Running", + "year": 1958, + "cast": [ + "Frank Sinatra", + "Dean Martin", + "Shirley MacLaine" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Son of Robin Hood", + "year": 1958, + "cast": [ + "David Hedison", + "June Laverick" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "South Pacific", + "year": 1958, + "cast": [ + "Mitzi Gaynor", + "Rossano Brazzi", + "John Kerr", + "France Nuyen", + "Juanita Hall", + "Ray Walston" + ], + "genres": [ + "Musical", + "War" + ] + }, + { + "title": "The Space Children", + "year": 1958, + "cast": [ + "Michel Rey", + "Adam Williams", + "Peggy Webber" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Space Master X-7", + "year": 1958, + "cast": [ + "Bill Williams", + "Lyn Thomas" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "St. Louis Blues", + "year": 1958, + "cast": [ + "Nat King Cole", + "Pearl Bailey", + "Cab Calloway", + "Ella Fitzgerald", + "Mahalia Jackson", + "Eartha Kitt" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Stage Struck", + "year": 1958, + "cast": [ + "Henry Fonda", + "Susan Strasberg", + "Joan Greenwood" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Stakeout on Dope Street", + "year": 1958, + "cast": [ + "Abby Dalton" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Step Down to Terror", + "year": 1958, + "cast": [ + "Colleen Miller", + "Rod Taylor" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Street of Darkness", + "year": 1958, + "cast": [ + "Robert Keys", + "Julie Gibson" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Suicide Battalion", + "year": 1958, + "cast": [ + "Mike Connors" + ], + "genres": [ + "War" + ] + }, + { + "title": "Summer Love", + "year": 1958, + "cast": [ + "John Saxon", + "Molly Bee", + "Jill St. John" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Sweet and Hot", + "year": 1958, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Tarawa Beachhead", + "year": 1958, + "cast": [ + "Ray Danton", + "Julie Adams" + ], + "genres": [ + "War" + ] + }, + { + "title": "The Tarnished Angels", + "year": 1958, + "cast": [ + "Robert Stack", + "Rock Hudson", + "Dorothy Malone" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Tarzan's Fight for Life", + "year": 1958, + "cast": [ + "Gordon Scott", + "Eve Brent" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Teacher's Pet", + "year": 1958, + "cast": [ + "Clark Gable", + "Doris Day" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Teenage Cave Man", + "year": 1958, + "cast": [ + "Robert Vaughn" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Ten Days to Tulara", + "year": 1958, + "cast": [ + "Sterling Hayden", + "Rafael Alcayde" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Ten North Frederick", + "year": 1958, + "cast": [ + "Gary Cooper", + "Geraldine Fitzgerald", + "Suzy Parker" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Terror from the Year 5000", + "year": 1958, + "cast": [ + "Salome Jens", + "Ward Costello" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Terror in a Texas Town", + "year": 1958, + "cast": [ + "Sterling Hayden", + "Sebastian Cabot" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Thing That Couldn't Die", + "year": 1958, + "cast": [ + "William Reynolds", + "Andra Martin" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "This Angry Age", + "year": 1958, + "cast": [ + "Anthony Perkins", + "Silvana Mangano", + "Richard Conte" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "This Happy Feeling", + "year": 1958, + "cast": [ + "Debbie Reynolds", + "Curd Jürgens", + "John Saxon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Thundering Jets", + "year": 1958, + "cast": [ + "Audrey Dalton", + "Rex Reason" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Thunder Road", + "year": 1958, + "cast": [ + "Robert Mitchum", + "Gene Barry", + "Keely Smith" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "A Time to Love and a Time to Die", + "year": 1958, + "cast": [ + "John Gavin", + "Liselotte Pulver", + "Jock Mahoney" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Tom Thumb", + "year": 1958, + "cast": [ + "Russ Tamblyn", + "Alan Young", + "Terry-Thomas" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Tonka", + "year": 1958, + "cast": [ + "Sal Mineo", + "Philip Carey" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Too Much, Too Soon", + "year": 1958, + "cast": [ + "Dorothy Malone", + "Errol Flynn", + "Efrem Zimbalist Jr." + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Torpedo Run", + "year": 1958, + "cast": [ + "Glenn Ford", + "Ernest Borgnine", + "Diane Brewster" + ], + "genres": [ + "War" + ] + }, + { + "title": "Tortilla Flaps", + "year": 1958, + "cast": [ + "Looney Tunes" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Tot Watchers", + "year": 1958, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "Touch of Evil", + "year": 1958, + "cast": [ + "Charlton Heston", + "Janet Leigh", + "Orson Welles", + "Joseph Calleia", + "Akim Tamiroff", + "Marlene Dietrich" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Toughest Gun in Tombstone", + "year": 1958, + "cast": [ + "George Montgomery", + "Beverly Tyler" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The True Story of Lynn Stuart", + "year": 1958, + "cast": [ + "Betsy Palmer", + "Jack Lord" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "The Tunnel of Love", + "year": 1958, + "cast": [ + "Doris Day", + "Richard Widmark" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Twilight for the Gods", + "year": 1958, + "cast": [ + "Rock Hudson", + "Cyd Charisse", + "Arthur Kennedy" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Underwater Warrior", + "year": 1958, + "cast": [ + "Dan Dailey", + "James Gregory" + ], + "genres": [ + "War" + ] + }, + { + "title": "Vertigo", + "year": 1958, + "cast": [ + "James Stewart", + "Kim Novak", + "Barbara Bel Geddes" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Vikings", + "year": 1958, + "cast": [ + "Kirk Douglas", + "Tony Curtis", + "Ernest Borgnine", + "Janet Leigh", + "James Donald" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Violent Road", + "year": 1958, + "cast": [ + "Efrem Zimbalist Jr.", + "Brian Keith" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Villa!!", + "year": 1958, + "cast": [ + "Brian Keith", + "Cesar Romero", + "Margia Dean" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Voice in the Mirror", + "year": 1958, + "cast": [ + "Richard Egan", + "Julie London", + "Walter Matthau" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "War of the Colossal Beast", + "year": 1958, + "cast": [ + "Sally Fraser" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "War of the Satellites", + "year": 1958, + "cast": [ + "Dick Miller", + "Susan Cabot" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "When Hell Broke Loose", + "year": 1958, + "cast": [ + "Charles Bronson", + "Richard Jaeckel" + ], + "genres": [ + "War" + ] + }, + { + "title": "White Wilderness", + "year": 1958, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Whole Truth", + "year": 1958, + "cast": [ + "Stewart Granger", + "Donna Reed" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Wild Heritage", + "year": 1958, + "cast": [ + "Will Rogers Jr.", + "Maureen O'Sullivan" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Wild Women of Wongo", + "year": 1958, + "cast": [], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Wind Across the Everglades", + "year": 1958, + "cast": [ + "Burl Ives", + "Christopher Plummer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Windjammer", + "year": 1958, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "Wink of an Eye", + "year": 1958, + "cast": [ + "Doris Dowling", + "Barbara Turner" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Wolf Dog", + "year": 1958, + "cast": [ + "Allison Hayes", + "Jim Davis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Wolf Larsen", + "year": 1958, + "cast": [ + "Barry Sullivan", + "Peter Graves" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The World Was His Jury", + "year": 1958, + "cast": [ + "Edmond O'Brien", + "Mona Freeman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Young and Wild", + "year": 1958, + "cast": [ + "Gene Evans", + "Scott Marlowe" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Young Lions", + "year": 1958, + "cast": [ + "Marlon Brando", + "Montgomery Clift", + "Dean Martin", + "Barbara Rush", + "Hope Lange", + "May Britt" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "-30-", + "year": 1959, + "cast": [ + "Jack Webb", + "William Conrad" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "4D Man", + "year": 1959, + "cast": [ + "Robert Lansing", + "Lee Meriwether" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The 30 Foot Bride of Candy Rock", + "year": 1959, + "cast": [ + "Lou Costello", + "Dorothy Provine" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Alaska Passage", + "year": 1959, + "cast": [ + "Lyn Thomas", + "Bill Williams" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Al Capone", + "year": 1959, + "cast": [ + "Rod Steiger", + "Nehemiah Persoff", + "James Gregory", + "Fay Spain" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Alias Jesse James", + "year": 1959, + "cast": [ + "Bob Hope", + "Rhonda Fleming" + ], + "genres": [ + "Western", + "Comedy" + ] + }, + { + "title": "The Alligator People", + "year": 1959, + "cast": [ + "Beverly Garland", + "Bruce Bennett" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Anatomy of a Murder", + "year": 1959, + "cast": [ + "James Stewart", + "Lee Remick", + "George C. Scott", + "Ben Gazzara", + "Arthur O'Connell", + "Eve Arden", + "Joseph N. Welch", + "Kathryn Grant" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Angry Hills", + "year": 1959, + "cast": [ + "Robert Mitchum", + "Stanley Baker", + "Gia Scala" + ], + "genres": [ + "War" + ] + }, + { + "title": "The Angry Red Planet", + "year": 1959, + "cast": [ + "Gerald Mohr", + "Naura Hayden" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Arson for Hire", + "year": 1959, + "cast": [ + "Steve Brodie", + "Lyn Osborn" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Atomic Submarine", + "year": 1959, + "cast": [ + "Arthur Franz", + "Dick Foran" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Ask Any Girl", + "year": 1959, + "cast": [ + "David Niven", + "Shirley MacLaine", + "Gig Young", + "Rod Taylor" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Attack of the Giant Leeches", + "year": 1959, + "cast": [ + "Ken Clarke", + "Yvette Vickers" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Bat", + "year": 1959, + "cast": [ + "Vincent Price", + "Agnes Moorehead", + "Darla Hood" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Battle Flame", + "year": 1959, + "cast": [ + "Scott Brady", + "Elaine Edwards" + ], + "genres": [ + "War" + ] + }, + { + "title": "Battle of the Coral Sea", + "year": 1959, + "cast": [ + "Cliff Robertson", + "Gia Scala" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Beast from Haunted Cave", + "year": 1959, + "cast": [ + "Michael Forest", + "Frank Wolff" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Beat Generation", + "year": 1959, + "cast": [ + "Mamie Van Doren", + "Ray Danton", + "Fay Spain" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Behemoth, the Sea Monster", + "year": 1959, + "cast": [ + "Gene Evans", + "André Morell" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Beloved Infidel", + "year": 1959, + "cast": [ + "Gregory Peck", + "Deborah Kerr" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Ben-Hur", + "year": 1959, + "cast": [ + "Charlton Heston", + "Stephen Boyd", + "Jack Hawkins", + "Martha Scott", + "Hugh Griffith", + "Cathy O'Donnell", + "Sam Jaffe" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Best of Everything", + "year": 1959, + "cast": [ + "Diane Baker", + "Stephen Boyd", + "Hope Lange", + "Louis Jourdan", + "Suzy Parker", + "Joan Crawford" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Big Circus", + "year": 1959, + "cast": [ + "Victor Mature", + "Red Buttons", + "Rhonda Fleming", + "David Nelson", + "Kathryn Grant" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Big Fisherman", + "year": 1959, + "cast": [ + "Howard Keel", + "Susan Kohner", + "John Saxon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Big Operator", + "year": 1959, + "cast": [ + "Mickey Rooney", + "Steve Cochran", + "Mamie Van Doren" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Black Orchid", + "year": 1959, + "cast": [ + "Sophia Loren", + "Anthony Quinn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Blood and Steel", + "year": 1959, + "cast": [ + "John Lupton", + "Ziva Rodann" + ], + "genres": [ + "War" + ] + }, + { + "title": "The Blue Angel", + "year": 1959, + "cast": [ + "May Britt", + "Curt Jurgens" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Blue Denim", + "year": 1959, + "cast": [ + "Carol Lynley", + "Macdonald Carey", + "Brandon deWilde" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Bonanza Bunny", + "year": 1959, + "cast": [ + "Bugs Bunny" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Born to Be Loved", + "year": 1959, + "cast": [ + "Carol Morris", + "Dick Kallman" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Bucket of Blood", + "year": 1959, + "cast": [ + "Dick Miller", + "Ed Nelson" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "But Not for Me", + "year": 1959, + "cast": [ + "Clark Gable", + "Carroll Baker", + "Lilli Palmer", + "Lee J. Cobb" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Career", + "year": 1959, + "cast": [ + "Dean Martin", + "Tony Franciosa", + "Carolyn Jones", + "Shirley MacLaine" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Cast a Long Shadow", + "year": 1959, + "cast": [ + "Audie Murphy", + "Terry Moore" + ], + "genres": [ + "Western" + ] + }, + { + "title": "City of Fear", + "year": 1959, + "cast": [ + "Vince Edwards", + "Lyle Talbot" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Compulsion", + "year": 1959, + "cast": [ + "Bradford Dillman", + "Dean Stockwell", + "Diane Varsi", + "Orson Welles" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Cosmic Man", + "year": 1959, + "cast": [ + "John Carradine", + "Bruce Bennett" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Count Your Blessings", + "year": 1959, + "cast": [ + "Deborah Kerr", + "Rossano Brazzi" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Counterplot", + "year": 1959, + "cast": [ + "Forrest Tucker", + "Allison Hayes" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Crime and Punishment U.S.A.", + "year": 1959, + "cast": [ + "George Hamilton", + "Mary Murphy", + "Marian Seldes" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Crimson Kimono", + "year": 1959, + "cast": [ + "Victoria Shaw", + "Glenn Corbett", + "James Shigeta" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Cry Tough", + "year": 1959, + "cast": [ + "John Saxon", + "Linda Cristal" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Cuban Rebel Girls", + "year": 1959, + "cast": [ + "Errol Flynn", + "Beverly Aadland" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Curse of the Undead", + "year": 1959, + "cast": [ + "Eric Fleming", + "Kathleen Crowley" + ], + "genres": [ + "Western", + "Horror" + ] + }, + { + "title": "Darby O'Gill and the Little People", + "year": 1959, + "cast": [ + "Albert Sharpe", + "Janet Munro", + "Sean Connery" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Date with Death", + "year": 1959, + "cast": [ + "Gerald Mohr", + "Liz Renay" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Day of the Outlaw", + "year": 1959, + "cast": [ + "Robert Ryan", + "Burl Ives", + "Tina Louise" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Desert Desperadoes", + "year": 1959, + "cast": [ + "Ruth Roman", + "Akim Tamiroff" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Devil's Disciple", + "year": 1959, + "cast": [ + "Burt Lancaster", + "Kirk Douglas", + "Laurence Olivier" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Diary of Anne Frank", + "year": 1959, + "cast": [ + "Joseph Schildkraut", + "Ed Wynn", + "Shelley Winters", + "Millie Perkins", + "Richard Beymer", + "Diane Baker" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "A Dog of Flanders", + "year": 1959, + "cast": [ + "David Ladd", + "Donald Crisp" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Dog's Best Friend", + "year": 1959, + "cast": [ + "Bill Williams", + "Marcia Henderson" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Don't Give Up the Ship", + "year": 1959, + "cast": [ + "Jerry Lewis", + "Dina Merrill", + "Gale Gordon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Donald in Mathmagic Land", + "year": 1959, + "cast": [ + "Clarence Nash" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Edge of Eternity", + "year": 1959, + "cast": [ + "Cornel Wilde", + "Victoria Shaw" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Escort West", + "year": 1959, + "cast": [ + "Victor Mature", + "Elaine Stewart" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The FBI Story", + "year": 1959, + "cast": [ + "James Stewart", + "Vera Miles" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Face of a Fugitive", + "year": 1959, + "cast": [ + "Fred MacMurray", + "Myrna Fahey", + "James Coburn" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Face of Fire", + "year": 1959, + "cast": [ + "Cameron Mitchell", + "Bettye Ackerman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "First Man into Space", + "year": 1959, + "cast": [ + "Marshall Thompson", + "Marla Landi" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Five Gates to Hell", + "year": 1959, + "cast": [ + "Patricia Owens", + "Dolores Michaels" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Five Pennies", + "year": 1959, + "cast": [ + "Danny Kaye", + "Louis Armstrong" + ], + "genres": [ + "Biography", + "Musical" + ] + }, + { + "title": "The Flying Fontaines", + "year": 1959, + "cast": [ + "Michael Callan", + "Joan Evans" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "For the First Time", + "year": 1959, + "cast": [ + "Mario Lanza", + "Johanna von Koczian", + "Zsa Zsa Gabor" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Forbidden Island", + "year": 1959, + "cast": [ + "Jon Hall" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Four Skulls of Jonathan Drake", + "year": 1959, + "cast": [ + "Eduard Franz", + "Valerie French" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Frontier Rangers", + "year": 1959, + "cast": [ + "Keith Larsen", + "Buddy Ebsen" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Fugitive Kind", + "year": 1959, + "cast": [ + "Marlon Brando", + "Joanne Woodward", + "Anna Magnani" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Gangster Story", + "year": 1959, + "cast": [ + "Walter Matthau", + "Carol Grace" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Gazebo", + "year": 1959, + "cast": [ + "Glenn Ford", + "Debbie Reynolds", + "Carl Reiner" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Gene Krupa Story", + "year": 1959, + "cast": [ + "Sal Mineo", + "Susan Oliver", + "James Darren" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "The Giant Gila Monster", + "year": 1959, + "cast": [ + "Don Sullivan", + "Fred Graham" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Gidget", + "year": 1959, + "cast": [ + "Sandra Dee", + "Cliff Robertson", + "James Darren" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Girls Town", + "year": 1959, + "cast": [ + "Mamie van Doren", + "Mel Torme", + "Paul Anka" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Good Day for a Hanging", + "year": 1959, + "cast": [ + "Fred MacMurray", + "Margaret Hayes", + "Robert Vaughn" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Great St. Louis Bank Robbery", + "year": 1959, + "cast": [ + "Steve McQueen", + "Crahan Denton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Green Mansions", + "year": 1959, + "cast": [ + "Audrey Hepburn", + "Anthony Perkins" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Gunfight at Dodge City", + "year": 1959, + "cast": [ + "Joel McCrea", + "Julie Adams", + "John McIntire" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Gunmen from Laredo", + "year": 1959, + "cast": [ + "Robert Knapp", + "Maureen Hingert" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Guns Girls and Gangsters", + "year": 1959, + "cast": [ + "Mamie Van Doren", + "Lee Van Cleef" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Hanging Tree", + "year": 1959, + "cast": [ + "Gary Cooper", + "Maria Schell", + "Karl Malden", + "George C. Scott" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Hangman", + "year": 1959, + "cast": [ + "Robert Taylor", + "Tina Louise", + "Fess Parker" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Happy Anniversary", + "year": 1959, + "cast": [ + "David Niven", + "Mitzi Gaynor" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Have Rocket, Will Travel", + "year": 1959, + "cast": [ + "Three Stooges" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Here Come the Jets", + "year": 1959, + "cast": [ + "Steve Brodie", + "Lyn Thomas" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hey Boy! Hey Girl!", + "year": 1959, + "cast": [ + "Louis Prima", + "Keely Smith" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "A Hole in the Head", + "year": 1959, + "cast": [ + "Frank Sinatra", + "Edward G. Robinson", + "Eleanor Parker", + "Carolyn Jones", + "Eddie Hodges" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Holiday for Lovers", + "year": 1959, + "cast": [ + "Clifton Webb", + "Jane Wyman", + "Jill St. John" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Horse Soldiers", + "year": 1959, + "cast": [ + "John Wayne", + "William Holden" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Hound-Dog Man", + "year": 1959, + "cast": [ + "Fabian", + "Carol Lynley" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "House on Haunted Hill", + "year": 1959, + "cast": [ + "Vincent Price", + "Elisha Cook Jr." + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Imitation of Life", + "year": 1959, + "cast": [ + "Lana Turner", + "John Gavin", + "Sandra Dee", + "Juanita Moore", + "Susan Kohner" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Immoral Mr. Teas", + "year": 1959, + "cast": [], + "genres": [ + "Erotic", + "Comedy" + ] + }, + { + "title": "Inside the Mafia", + "year": 1959, + "cast": [ + "Cameron Mitchell", + "Grant Richards" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Invisible Invaders", + "year": 1959, + "cast": [ + "John Agar", + "Jean Byron" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Island of Lost Women", + "year": 1959, + "cast": [ + "Jeff Richards", + "Venetia Stevenson" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "It Happened to Jane", + "year": 1959, + "cast": [ + "Doris Day", + "Jack Lemmon", + "Ernie Kovacs" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "It Started with a Kiss", + "year": 1959, + "cast": [ + "Glenn Ford", + "Debbie Reynolds" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "The Jayhawkers!", + "year": 1959, + "cast": [ + "Jeff Chandler", + "Nicole Maurey" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Jazz on a Summer's Day", + "year": 1959, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Jazz Singer", + "year": 1959, + "cast": [ + "Jerry Lewis", + "Anna Maria Alberghetti" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Jet Over the Atlantic", + "year": 1959, + "cast": [ + "Guy Madison", + "Virginia Mayo", + "George Raft" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Jet Storm", + "year": 1959, + "cast": [ + "Richard Attenborough", + "Stanley Baker" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "John Paul Jones", + "year": 1959, + "cast": [ + "Robert Stack", + "Bette Davis", + "Marisa Pavan" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "The Journey", + "year": 1959, + "cast": [ + "Yul Brynner", + "Deborah Kerr", + "Robert Morley" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Journey to the Center of the Earth", + "year": 1959, + "cast": [ + "James Mason", + "Pat Boone", + "Diane Baker" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Juke Box Rhythm", + "year": 1959, + "cast": [ + "Jo Morrow", + "Jack Jones", + "Brian Donlevy" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "The Killer Shrews", + "year": 1959, + "cast": [ + "Ken Curtis", + "James Best" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "King of the Wild Stallions", + "year": 1959, + "cast": [ + "George Montgomery", + "Diane Brewster", + "Edgar Buchanan" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Last Angry Man", + "year": 1959, + "cast": [ + "Paul Muni", + "David Wayne" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Last Blitzkrieg", + "year": 1959, + "cast": [ + "Van Johnson", + "Dick York" + ], + "genres": [ + "War" + ] + }, + { + "title": "The Last Mile", + "year": 1959, + "cast": [ + "Mickey Rooney" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Last Train from Gun Hill", + "year": 1959, + "cast": [ + "Kirk Douglas", + "Anthony Quinn", + "Carolyn Jones" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Legend of Tom Dooley", + "year": 1959, + "cast": [ + "Michael Landon", + "Jo Morrow" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Li'l Abner", + "year": 1959, + "cast": [ + "Peter Palmer", + "Leslie Parrish", + "Stella Stevens", + "Howard St. John", + "Stubby Kaye", + "Julie Newmar" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "The Little Savage", + "year": 1959, + "cast": [ + "Pedro Armendáriz", + "Christiane Martel" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Lone Texan", + "year": 1959, + "cast": [ + "Willard Parker", + "Audrey Dalton" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Man in the Net", + "year": 1959, + "cast": [ + "Alan Ladd", + "Carolyn Jones", + "Diane Brewster" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Man Who Understood Women", + "year": 1959, + "cast": [ + "Henry Fonda", + "Leslie Caron" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Mating Game", + "year": 1959, + "cast": [ + "Debbie Reynolds", + "Tony Randall" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Middle of the Night", + "year": 1959, + "cast": [ + "Fredric March", + "Kim Novak" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Miracle", + "year": 1959, + "cast": [ + "Carroll Baker", + "Roger Moore" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Miracle of the Hills", + "year": 1959, + "cast": [ + "Rex Reason", + "Betty Lou Gerson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Miracle on 34th Street", + "year": 1959, + "cast": [ + "Ed Wynn", + "Orson Bean", + "Mary Healy", + "Peter Lind Hayes" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Muscle Up a Little Closer", + "year": 1959, + "cast": [ + "Three Stooges" + ], + "genres": [ + "Short" + ] + }, + { + "title": "Never So Few", + "year": 1959, + "cast": [ + "Frank Sinatra", + "Steve McQueen", + "Peter Lawford", + "Gina Lollobrigida" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "Never Steal Anything Small", + "year": 1959, + "cast": [ + "James Cagney", + "Shirley Jones" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Night of the Ghouls", + "year": 1959, + "cast": [ + "Kenne Duncan", + "Duke Moore" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Night of the Quarter Moon", + "year": 1959, + "cast": [ + "Julie London", + "Dean Jones" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "No Name on the Bullet", + "year": 1959, + "cast": [ + "Audie Murphy", + "Charles Drake", + "Joan Evans" + ], + "genres": [ + "Western" + ] + }, + { + "title": "North by Northwest", + "year": 1959, + "cast": [ + "Cary Grant", + "Eva Marie Saint", + "James Mason", + "Martin Landau", + "Leo G. Carroll", + "Jessie Royce Landis" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "The Nun's Story", + "year": 1959, + "cast": [ + "Audrey Hepburn", + "Peter Finch", + "Edith Evans", + "Colleen Dewhurst", + "Peggy Ashcroft" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Odds Against Tomorrow", + "year": 1959, + "cast": [ + "Harry Belafonte", + "Shelley Winters" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "On the Beach", + "year": 1959, + "cast": [ + "Gregory Peck", + "Ava Gardner", + "Fred Astaire", + "Anthony Perkins" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Operation Dames", + "year": 1959, + "cast": [ + "Eve Meyer" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "Operation Petticoat", + "year": 1959, + "cast": [ + "Cary Grant", + "Tony Curtis" + ], + "genres": [ + "War", + "Comedy" + ] + }, + { + "title": "The Oregon Trail", + "year": 1959, + "cast": [ + "Fred MacMurray", + "Nina Shipman" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Paratroop Command", + "year": 1959, + "cast": [ + "Richard Bakalyan" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "Pier 5, Havana", + "year": 1959, + "cast": [ + "Cameron Mitchell", + "Allison Hayes" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Pillow Talk", + "year": 1959, + "cast": [ + "Doris Day", + "Rock Hudson", + "Tony Randall" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Plan 9 from Outer Space", + "year": 1959, + "cast": [ + "Bela Lugosi", + "Vampira", + "Tor Johnson" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Plunderers of Painted Flats", + "year": 1959, + "cast": [ + "Corinne Calvet", + "John Carroll" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Porgy and Bess", + "year": 1959, + "cast": [ + "Sidney Poitier", + "Dorothy Dandridge", + "Sammy Davis, Jr.", + "Pearl Bailey", + "Diahann Carroll", + "Ivan Dixon", + "Brock Peters" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Pork Chop Hill", + "year": 1959, + "cast": [ + "Gregory Peck", + "Woody Strode", + "Rip Torn", + "George Peppard" + ], + "genres": [ + "War" + ] + }, + { + "title": "Prisoner of the Volga", + "year": 1959, + "cast": [ + "John Derek", + "Elsa Martinelli", + "Dawn Addams" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Private's Affair", + "year": 1959, + "cast": [ + "Sal Mineo", + "Barbara Eden" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Pull My Daisy", + "year": 1959, + "cast": [], + "genres": [ + "Short" + ] + }, + { + "title": "The Rabbit Trap", + "year": 1959, + "cast": [ + "Ernest Borgnine", + "Bethel Leslie" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Rebel Set", + "year": 1959, + "cast": [ + "Kathleen Crowley", + "John Lupton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Remarkable Mr. Pennypacker", + "year": 1959, + "cast": [ + "Clifton Webb", + "Dorothy McGuire", + "Charles Coburn", + "Jill St. John" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Return of the Fly", + "year": 1959, + "cast": [ + "Vincent Price", + "Brett Halsey" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Ride Lonesome", + "year": 1959, + "cast": [ + "Randolph Scott", + "Karen Steele" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Rio Bravo", + "year": 1959, + "cast": [ + "John Wayne", + "Dean Martin", + "Ricky Nelson", + "Angie Dickinson", + "Walter Brennan", + "Ward Bond" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Riot in Juvenile Prison", + "year": 1959, + "cast": [ + "Scott Marlowe", + "Dorothy Provine" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Rookie", + "year": 1959, + "cast": [ + "Tommy Noonan", + "Julie Newmar", + "Peter Marshall" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Sad Horse", + "year": 1959, + "cast": [ + "Rex Reason", + "Patrice Wymore", + "David Ladd" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Say One for Me", + "year": 1959, + "cast": [ + "Bing Crosby", + "Debbie Reynolds", + "Robert Wagner", + "Ray Walston" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Scapegoat", + "year": 1959, + "cast": [ + "Alec Guinness", + "Bette Davis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Shadows", + "year": 1959, + "cast": [ + "Ben Carruthers", + "Lelia Goldoni" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Shaggy Dog", + "year": 1959, + "cast": [ + "Fred MacMurray", + "Tommy Kirk" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Shake Hands with the Devil", + "year": 1959, + "cast": [ + "James Cagney", + "Don Murray", + "Dana Wynter" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sleeping Beauty", + "year": 1959, + "cast": [ + "Eleanor Audley", + "Mary Costa" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Solomon and Sheba", + "year": 1959, + "cast": [ + "Yul Brynner", + "Gina Lollobrigida" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Some Like It Hot", + "year": 1959, + "cast": [ + "Marilyn Monroe", + "Jack Lemmon", + "Tony Curtis", + "George Raft", + "Pat O'Brien", + "Joe E. Brown" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Sound and the Fury", + "year": 1959, + "cast": [ + "Yul Brynner", + "Joanne Woodward", + "Margaret Leighton", + "Stuart Whitman", + "Jack Warden" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Space Invasion of Lapland", + "year": 1959, + "cast": [ + "Barbara Wilson", + "Robert Burton" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "A Stranger in My Arms", + "year": 1959, + "cast": [ + "Jeff Chandler", + "June Allyson", + "Mary Astor" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "Suddenly, Last Summer", + "year": 1959, + "cast": [ + "Katharine Hepburn", + "Elizabeth Taylor", + "Montgomery Clift" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Summer Place", + "year": 1959, + "cast": [ + "Richard Egan", + "Sandra Dee", + "Troy Donahue" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Surrender - Hell!", + "year": 1959, + "cast": [ + "Keith Andes", + "Susan Cabot" + ], + "genres": [ + "War" + ] + }, + { + "title": "Take a Giant Step", + "year": 1959, + "cast": [ + "Johnny Nash", + "Estelle Hemsley", + "Ruby Dee" + ], + "genres": [] + }, + { + "title": "Tarzan's Greatest Adventure", + "year": 1959, + "cast": [ + "Gordon Scott", + "Sean Connery" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Tarzan, the Ape Man", + "year": 1959, + "cast": [ + "Denny Miller", + "Joanna Barnes" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Teenage Zombies", + "year": 1959, + "cast": [ + "Don Sullivan", + "Katherine Victor" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Teenagers from Outer Space", + "year": 1959, + "cast": [ + "Dawn Bender", + "Bryan Grant" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Ten Seconds to Hell", + "year": 1959, + "cast": [ + "Jack Palance", + "Jeff Chandler" + ], + "genres": [ + "War" + ] + }, + { + "title": "Terror Is a Man", + "year": 1959, + "cast": [ + "Francis Lederer", + "Greta Thyssen" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "That Kind of Woman", + "year": 1959, + "cast": [ + "Sophia Loren", + "Tab Hunter", + "Jack Warden" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "These Thousand Hills", + "year": 1959, + "cast": [ + "Don Murray", + "Richard Egan", + "Lee Remick", + "Patricia Owens" + ], + "genres": [ + "Western" + ] + }, + { + "title": "They Came to Cordura", + "year": 1959, + "cast": [ + "Gary Cooper", + "Rita Hayworth", + "Van Heflin", + "Richard Conte", + "Dick York", + "Tab Hunter" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Third Man on the Mountain", + "year": 1959, + "cast": [ + "Michael Rennie", + "James MacArthur", + "Janet Munro" + ], + "genres": [ + "Family" + ] + }, + { + "title": "This Earth Is Mine", + "year": 1959, + "cast": [ + "Rock Hudson", + "Jean Simmons", + "Dorothy McGuire" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Thunder in the Sun", + "year": 1959, + "cast": [ + "Susan Hayward", + "Jeff Chandler" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Timbuktu", + "year": 1959, + "cast": [ + "Victor Mature", + "Yvonne De Carlo" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Tingler", + "year": 1959, + "cast": [ + "Vincent Price", + "Judith Evelyn" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Tokyo After Dark", + "year": 1959, + "cast": [ + "Richard Long", + "Lawrence Dobkin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Trap", + "year": 1959, + "cast": [ + "Richard Widmark", + "Lee J. Cobb", + "Earl Holliman", + "Tina Louise" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Up Periscope", + "year": 1959, + "cast": [ + "James Garner", + "Edmund O'Brien", + "Andra Martin", + "Alan Hale, Jr." + ], + "genres": [ + "War" + ] + }, + { + "title": "Verboten!", + "year": 1959, + "cast": [ + "Susan Cummings", + "James Best" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Warlock", + "year": 1959, + "cast": [ + "Richard Widmark", + "Henry Fonda", + "Anthony Quinn", + "Dorothy Malone" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Watusi", + "year": 1959, + "cast": [ + "George Montgomery", + "Taina Elg" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Wasp Woman", + "year": 1959, + "cast": [ + "Susan Cabot", + "Anthony Eisley" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Westbound", + "year": 1959, + "cast": [ + "Randolph Scott", + "Virginia Mayo", + "Karen Steele" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Wild and the Innocent", + "year": 1959, + "cast": [ + "Audie Murphy", + "Joanne Dru", + "Sandra Dee" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Window Water Baby Moving", + "year": 1959, + "cast": [], + "genres": [] + }, + { + "title": "Woman Obsessed", + "year": 1959, + "cast": [ + "Susan Hayward", + "Stephen Boyd" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Wonderful Country", + "year": 1959, + "cast": [ + "Robert Mitchum", + "Julie London", + "Pedro Armendáriz", + "Albert Dekker", + "Satchel Paige" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The World, the Flesh and the Devil", + "year": 1959, + "cast": [ + "Harry Belafonte", + "Inger Stevens" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Wreck of the Mary Deare", + "year": 1959, + "cast": [ + "Gary Cooper", + "Charlton Heston", + "Michael Redgrave" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Yellowstone Kelly", + "year": 1959, + "cast": [ + "Clint Walker", + "Edd Byrnes", + "Ray Danton" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Young Captives", + "year": 1959, + "cast": [ + "Steven Marlo", + "Luana Patten" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Young Land", + "year": 1959, + "cast": [ + "Dennis Hopper", + "Patrick Wayne" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Young Philadelphians", + "year": 1959, + "cast": [ + "Paul Newman", + "Barbara Rush", + "Robert Vaughn", + "Brian Keith", + "Alexis Smith" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The 3rd Voice", + "year": 1960, + "cast": [ + "Edmond O'Brien", + "Laraine Day", + "Julie London" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "5 Branded Women", + "year": 1960, + "cast": [ + "Silvana Mangano", + "Jeanne Moreau", + "Vera Miles", + "Barbara Bel Geddes", + "Carla Gravina" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "12 to the Moon", + "year": 1960, + "cast": [ + "Ken Clark", + "Tom Conway" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "13 Fighting Men", + "year": 1960, + "cast": [ + "Grant Williams", + "Carole Matthews" + ], + "genres": [ + "War" + ] + }, + { + "title": "13 Ghosts", + "year": 1960, + "cast": [ + "Charles Herbert", + "Jo Morrow" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Adventures of Huckleberry Finn", + "year": 1960, + "cast": [ + "Tony Randall", + "Patty McCormack", + "Eddie Hodges", + "Archie Moore" + ], + "genres": [ + "Family" + ] + }, + { + "title": "The Alamo", + "year": 1960, + "cast": [ + "John Wayne", + "Richard Widmark", + "Laurence Harvey", + "Chill Wills", + "Frankie Avalon", + "Richard Boone" + ], + "genres": [ + "Biography", + "Western" + ] + }, + { + "title": "All the Fine Young Cannibals", + "year": 1960, + "cast": [ + "Natalie Wood", + "Robert Wagner", + "George Hamilton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "All the Young Men", + "year": 1960, + "cast": [ + "Alan Ladd", + "Sidney Poitier", + "James Darren" + ], + "genres": [ + "War" + ] + }, + { + "title": "The Amazing Transparent Man", + "year": 1960, + "cast": [ + "Marguerite Chapman", + "Douglas Kennedy" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Angel Wore Red", + "year": 1960, + "cast": [ + "Ava Gardner", + "Dirk Bogarde", + "Joseph Cotten" + ], + "genres": [ + "War" + ] + }, + { + "title": "The Apartment", + "year": 1960, + "cast": [ + "Jack Lemmon", + "Shirley MacLaine", + "Fred MacMurray", + "Ray Walston", + "Jack Kruschen", + "Edie Adams" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "Butterfield 8", + "year": 1960, + "cast": [ + "Elizabeth Taylor", + "Laurence Harvey", + "Eddie Fisher", + "Dina Merrill" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Because They're Young", + "year": 1960, + "cast": [ + "Dick Clark", + "Tuesday Weld" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Bellboy", + "year": 1960, + "cast": [ + "Jerry Lewis", + "Bob Clayton", + "Milton Berle" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Bells Are Ringing", + "year": 1960, + "cast": [ + "Judy Holliday", + "Dean Martin" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Beyond the Time Barrier", + "year": 1960, + "cast": [ + "Darlene Tompkins", + "Robert Clarke" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Big Night", + "year": 1960, + "cast": [ + "Venetia Stevenson", + "Randy Sparks", + "Dick Contino" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Boy and the Pirates", + "year": 1960, + "cast": [ + "Charles Herbert", + "Susan Gordon", + "Murvyn Vye" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Bramble Bush", + "year": 1960, + "cast": [ + "Richard Burton", + "Angie Dickinson", + "Barbara Rush" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Breath of Scandal", + "year": 1960, + "cast": [ + "Sophia Loren", + "Maurice Chevalier", + "John Gavin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Cage of Evil", + "year": 1960, + "cast": [ + "Ron Foster", + "Pat Blair" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Can-Can", + "year": 1960, + "cast": [ + "Frank Sinatra", + "Shirley MacLaine", + "Maurice Chevalier", + "Louis Jourdan", + "Juliet Prowse" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Cape Canaveral Monsters", + "year": 1960, + "cast": [ + "Scott Peters", + "Jason Johnson" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Cash McCall", + "year": 1960, + "cast": [ + "James Garner", + "Natalie Wood", + "Nina Foch", + "E. G. Marshall" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Chartroose Caboose", + "year": 1960, + "cast": [ + "Molly Bee", + "Ben Cooper" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Cimarron", + "year": 1960, + "cast": [ + "Glenn Ford", + "Maria Schell", + "Anne Baxter" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Cinderfella", + "year": 1960, + "cast": [ + "Jerry Lewis", + "Ed Wynn", + "Anna Maria Alberghetti" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "A Circle of Deception", + "year": 1960, + "cast": [ + "Bradford Dillman", + "Suzy Parker" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "College Confidential", + "year": 1960, + "cast": [ + "Steve Allen", + "Mamie Van Doren", + "Herbert Marshall", + "Jayne Meadows" + ], + "genres": [ + "Teen" + ] + }, + { + "title": "Comanche Station", + "year": 1960, + "cast": [ + "Randolph Scott", + "Nancy Gates", + "Claude Akins" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Crack in the Mirror", + "year": 1960, + "cast": [ + "Orson Welles", + "Juliette Gréco", + "Bradford Dillman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Crowded Sky", + "year": 1960, + "cast": [ + "Dana Andrews", + "Rhonda Fleming" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Dark at the Top of the Stairs", + "year": 1960, + "cast": [ + "Robert Preston", + "Dorothy McGuire", + "Eve Arden", + "Shirley Knight", + "Angela Lansbury" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Desire in the Dust", + "year": 1960, + "cast": [ + "Raymond Burr", + "Martha Hyer", + "Joan Bennett" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dinosaurus!", + "year": 1960, + "cast": [ + "Ward Ramsey", + "Paul Lukather", + "Kristina Hanson" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Elmer Gantry", + "year": 1960, + "cast": [ + "Burt Lancaster", + "Jean Simmons", + "Arthur Kennedy", + "Shirley Jones", + "Dean Jagger", + "Patti Page" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Esther and the King", + "year": 1960, + "cast": [ + "Joan Collins", + "Richard Egan", + "Denis O'Dea" + ], + "genres": [] + }, + { + "title": "Exodus", + "year": 1960, + "cast": [ + "Paul Newman", + "Eva Marie Saint", + "Ralph Richardson", + "Sal Mineo", + "Peter Lawford", + "Lee J. Cobb", + "Jill Haworth", + "Hugh Griffith", + "John Derek" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Facts of Life", + "year": 1960, + "cast": [ + "Bob Hope", + "Lucille Ball", + "Ruth Hussey" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Five Guns to Tombstone", + "year": 1960, + "cast": [ + "James Brown", + "Walter Coy" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Flaming Star", + "year": 1960, + "cast": [ + "Elvis Presley", + "Steve Forrest", + "Barbara Eden", + "John McIntire", + "Dolores del Río" + ], + "genres": [ + "Western" + ] + }, + { + "title": "For the Love of Mike", + "year": 1960, + "cast": [ + "Richard Basehart", + "Stuart Erwin", + "Arthur Shields" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Four Fast Guns", + "year": 1960, + "cast": [ + "Martha Vickers", + "James Craig" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Freckles", + "year": 1960, + "cast": [ + "Carol Christensen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "From the Terrace", + "year": 1960, + "cast": [ + "Paul Newman", + "Joanne Woodward", + "Myrna Loy", + "Ina Balin", + "Leon Ames", + "George Grizzard" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "G.I. Blues", + "year": 1960, + "cast": [ + "Elvis Presley", + "Juliet Prowse", + "Robert Ivers" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Gallant Hours", + "year": 1960, + "cast": [ + "James Cagney", + "Dennis Weaver" + ], + "genres": [ + "Biography", + "War" + ] + }, + { + "title": "Girl of the Night", + "year": 1960, + "cast": [ + "Anne Francis", + "Lloyd Nolan", + "Kay Medford" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Grass Is Greener", + "year": 1960, + "cast": [ + "Cary Grant", + "Deborah Kerr", + "Robert Mitchum", + "Jean Simmons" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Gunfighters of Abilene", + "year": 1960, + "cast": [ + "Buster Crabbe", + "Barton MacLane", + "Judith Ames" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Guns of the Timberland", + "year": 1960, + "cast": [ + "Alan Ladd", + "Jeanne Crain", + "Gilbert Roland" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Hell Bent for Leather", + "year": 1960, + "cast": [ + "Audie Murphy", + "Felicia Farr", + "Stephen McNally" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Hell to Eternity", + "year": 1960, + "cast": [ + "Jeffrey Hunter", + "David Janssen", + "Vic Damone" + ], + "genres": [ + "War" + ] + }, + { + "title": "Heller in Pink Tights", + "year": 1960, + "cast": [ + "Sophia Loren", + "Anthony Quinn", + "Margaret O'Brien", + "Steve Forrest" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The High Powered Rifle", + "year": 1960, + "cast": [ + "Allison Hayes", + "Willard Parker" + ], + "genres": [ + "Western" + ] + }, + { + "title": "High Time", + "year": 1960, + "cast": [ + "Bing Crosby", + "Fabian", + "Tuesday Weld", + "Nicole Maurey" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Home from the Hill", + "year": 1960, + "cast": [ + "Robert Mitchum", + "Eleanor Parker", + "George Peppard", + "George Hamilton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Horse with the Flying Tail", + "year": 1960, + "cast": [ + "George Fenneman", + "(narrator)" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "House of Usher", + "year": 1960, + "cast": [ + "Vincent Price", + "Mark Damon", + "Myrna Fahey" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Hyde and Go Tweet", + "year": 1960, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "The Hypnotic Eye", + "year": 1960, + "cast": [ + "Jacques Bergerac", + "Allison Hayes" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "I Aim at the Stars", + "year": 1960, + "cast": [ + "Curd Jürgens", + "Herbert Lom", + "Gia Scala" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Ice Palace", + "year": 1960, + "cast": [ + "Richard Burton", + "Robert Ryan", + "Martha Hyer", + "Jim Backus", + "Carolyn Jones" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "I'll Give My Life", + "year": 1960, + "cast": [ + "Angie Dickinson", + "Ray Collins" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Inherit the Wind", + "year": 1960, + "cast": [ + "Spencer Tracy", + "Fredric March", + "Gene Kelly", + "Harry Morgan", + "Claude Akins", + "Dick York" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "It Started in Naples", + "year": 1960, + "cast": [ + "Clark Gable", + "Sophia Loren", + "Vittorio De Sica" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Key Witness", + "year": 1960, + "cast": [ + "Jeffrey Hunter", + "Pat Crowley", + "Dennis Hopper" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Last Voyage", + "year": 1960, + "cast": [ + "Robert Stack", + "Dorothy Malone", + "George Sanders", + "Woody Strode", + "Jack Kruschen" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Last Woman on Earth", + "year": 1960, + "cast": [ + "Betsy Jones-Moreland", + "Antony Carbone", + "Robert Towne" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Leech Woman", + "year": 1960, + "cast": [ + "Grant Williams", + "Coleen Gray", + "Phillip Terry", + "Gloria Talbott" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Let's Make Love", + "year": 1960, + "cast": [ + "Marilyn Monroe", + "Yves Montand", + "Tony Randall", + "Frankie Vaughan", + "Milton Berle", + "Gene Kelly", + "Bing Crosby" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Let No Man Write My Epitaph", + "year": 1960, + "cast": [ + "Burl Ives", + "Shelley Winters", + "James Darren", + "Jean Seberg" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Little Shop of Horrors", + "year": 1960, + "cast": [ + "Jonathan Haze", + "Jackie Joseph", + "Mel Welles", + "Dick Miller", + "Jack Nicholson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Lost World", + "year": 1960, + "cast": [ + "Michael Rennie", + "Jill St. John", + "David Hedison", + "Fernando Lamas", + "Claude Rains" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Macumba Love", + "year": 1960, + "cast": [ + "Walter Reed", + "Ziva Rodann" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Magnificent Seven", + "year": 1960, + "cast": [ + "Yul Brynner", + "Eli Wallach", + "Steve McQueen", + "Charles Bronson", + "Robert Vaughn", + "James Coburn", + "Brad Dexter", + "Horst Buchholz" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Man on a String", + "year": 1960, + "cast": [ + "Ernest Borgnine", + "Kerwin Mathews" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Mice Follies", + "year": 1960, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "Midnight Lace", + "year": 1960, + "cast": [ + "Doris Day", + "Rex Harrison", + "John Gavin", + "Roddy McDowall", + "Myrna Loy" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "Moment of Danger", + "year": 1960, + "cast": [ + "Trevor Howard", + "Dorothy Dandridge" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Mountain Road", + "year": 1960, + "cast": [ + "James Stewart", + "Lisa Lu", + "Glenn Corbett", + "Harry Morgan" + ], + "genres": [ + "War" + ] + }, + { + "title": "Murder, Inc.", + "year": 1960, + "cast": [ + "Stuart Whitman", + "May Britt", + "Peter Falk", + "Henry Morgan" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Music Box Kid", + "year": 1960, + "cast": [ + "Ron Foster", + "Luana Patten" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Never on Sunday", + "year": 1960, + "cast": [ + "Melina Mercouri", + "Jules Dassin", + "Giorgos Fountas" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Noose for a Gunman", + "year": 1960, + "cast": [ + "Jim Davis", + "Lyn Thomas" + ], + "genres": [ + "Western" + ] + }, + { + "title": "North to Alaska", + "year": 1960, + "cast": [ + "John Wayne", + "Stewart Granger", + "Capucine", + "Fabian", + "Ernie Kovacs", + "Mickey Shaughnessy" + ], + "genres": [ + "Western", + "Comedy" + ] + }, + { + "title": "Ocean's 11", + "year": 1960, + "cast": [ + "Frank Sinatra", + "Dean Martin", + "Sammy Davis Jr.", + "Peter Lawford", + "Joey Bishop", + "Angie Dickinson", + "Richard Conte", + "George Raft", + "Cesar Romero" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Oklahoma Territory", + "year": 1960, + "cast": [ + "Bill Williams", + "Gloria Talbott", + "Ted de Corsia" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Once More, with Feeling!", + "year": 1960, + "cast": [ + "Yul Brynner", + "Kay Kendall", + "Gregory Ratoff" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "One Foot in Hell", + "year": 1960, + "cast": [ + "Alan Ladd", + "Dan O'Herlihy" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Pay or Die", + "year": 1960, + "cast": [ + "Ernest Borgnine", + "Zohra Lampert" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Pepe", + "year": 1960, + "cast": [ + "Cantinflas", + "Dan Dailey", + "Shirley Jones" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Platinum High School", + "year": 1960, + "cast": [ + "Mickey Rooney", + "Dan Duryea" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Please Don't Eat the Daisies", + "year": 1960, + "cast": [ + "Doris Day", + "David Niven", + "Janis Paige" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Plunderers", + "year": 1960, + "cast": [ + "Jeff Chandler", + "Dolores Hart" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Pollyanna", + "year": 1960, + "cast": [ + "Hayley Mills", + "Jane Wyman", + "Richard Egan", + "Karl Malden" + ], + "genres": [ + "Family", + "Comedy" + ] + }, + { + "title": "Portrait in Black", + "year": 1960, + "cast": [ + "Lana Turner", + "Anthony Quinn", + "Richard Basehart", + "Sandra Dee", + "John Saxon" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "Pretty Boy Floyd", + "year": 1960, + "cast": [ + "John Ericson", + "Barry Newman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Private Lives of Adam and Eve", + "year": 1960, + "cast": [ + "Mickey Rooney", + "Mamie Van Doren", + "Mel Tormé", + "Tuesday Weld", + "Fay Spain", + "Paul Anka" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Private Property", + "year": 1960, + "cast": [ + "Corey Allen", + "Warren Oates" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Purple Gang", + "year": 1960, + "cast": [ + "Barry Sullivan", + "Robert Blake" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Psycho", + "year": 1960, + "cast": [ + "Anthony Perkins", + "Janet Leigh", + "Vera Miles", + "John Gavin", + "John McIntire", + "Martin Balsam" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "The Pusher", + "year": 1960, + "cast": [ + "Robert Lansing", + "Felice Orlandi" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Rat Race", + "year": 1960, + "cast": [ + "Tony Curtis", + "Debbie Reynolds", + "Don Rickles" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Raymie", + "year": 1960, + "cast": [ + "David Ladd", + "Julie Adams", + "Charles Winninger" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Rise and Fall of Legs Diamond", + "year": 1960, + "cast": [ + "Ray Danton", + "Karen Steele", + "Elaine Stewart" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Savage Innocents", + "year": 1960, + "cast": [ + "Anthony Quinn", + "Peter O'Toole", + "Yoko Tani" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Scent of Mystery", + "year": 1960, + "cast": [ + "Denholm Elliott", + "Peter Lorre" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Secret of the Purple Reef", + "year": 1960, + "cast": [ + "Richard Chamberlain", + "Peter Falk", + "Margia Dean" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "September Storm", + "year": 1960, + "cast": [ + "Joanne Dru", + "Mark Stevens", + "Robert Strauss" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Sergeant Rutledge", + "year": 1960, + "cast": [ + "Jeffrey Hunter", + "Woody Strode", + "Constance Towers" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Seven Thieves", + "year": 1960, + "cast": [ + "Edward G. Robinson", + "Rod Steiger", + "Joan Collins" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Seven Ways from Sundown", + "year": 1960, + "cast": [ + "Audie Murphy", + "Barry Sullivan" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Sex Kittens Go to College", + "year": 1960, + "cast": [ + "Mamie Van Doren", + "Tuesday Weld", + "John Carradine" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Song Without End", + "year": 1960, + "cast": [ + "Dirk Bogarde", + "Capucine", + "Patricia Morison" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Spartacus", + "year": 1960, + "cast": [ + "Kirk Douglas", + "Laurence Olivier", + "Jean Simmons", + "Tony Curtis", + "Peter Ustinov", + "Charles Laughton", + "John Gavin", + "Woody Strode", + "John Ireland", + "John Dall" + ], + "genres": [] + }, + { + "title": "Squad Car", + "year": 1960, + "cast": [ + "Vici Raaf", + "Paul Bryar" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Stop!, Look and Laugh", + "year": 1960, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "The Story of Ruth", + "year": 1960, + "cast": [ + "Stuart Whitman", + "Tom Tryon", + "Peggy Wood", + "Elana Eden" + ], + "genres": [] + }, + { + "title": "Strangers When We Meet", + "year": 1960, + "cast": [ + "Kirk Douglas", + "Kim Novak", + "Ernie Kovacs" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Studs Lonigan", + "year": 1960, + "cast": [ + "Frank Gorshin", + "Jack Nicholson", + "Venetia Stevenson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Subterraneans", + "year": 1960, + "cast": [ + "Leslie Caron", + "George Peppard", + "Janice Rule" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Summer of the Seventeenth Doll", + "year": 1960, + "cast": [ + "Ernest Borgnine", + "Anne Baxter", + "John Mills", + "Angela Lansbury" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Sundowners", + "year": 1960, + "cast": [ + "Deborah Kerr", + "Robert Mitchum" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sunrise at Campobello", + "year": 1960, + "cast": [ + "Ralph Bellamy", + "Greer Garson" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Surprise Package", + "year": 1960, + "cast": [ + "Yul Brynner", + "Mitzi Gaynor" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Swiss Family Robinson", + "year": 1960, + "cast": [ + "John Mills", + "Dorothy McGuire", + "Tommy Kirk" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Switchin' Kitten", + "year": 1960, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Tall Story", + "year": 1960, + "cast": [ + "Anthony Perkins", + "Jane Fonda", + "Ray Walston" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Tarzan the Magnificent", + "year": 1960, + "cast": [ + "Gordon Scott", + "Alexandra Stewart" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "A Terrible Beauty", + "year": 1960, + "cast": [ + "Robert Mitchum", + "Anne Heywood", + "Dan O'Herlihy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Tess of the Storm Country", + "year": 1960, + "cast": [ + "Diane Baker", + "Jack Ging" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "This Rebel Breed", + "year": 1960, + "cast": [ + "Rita Moreno", + "Gerald Mohr", + "Dyan Cannon" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Threat", + "year": 1960, + "cast": [ + "Robert Knapp", + "Linda Lawson", + "Mary Castle" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Three Worlds of Gulliver", + "year": 1960, + "cast": [ + "Kerwin Mathews", + "June Thorburn" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Thunder in Carolina", + "year": 1960, + "cast": [ + "Rory Calhoun", + "Connie Hines" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Time Machine", + "year": 1960, + "cast": [ + "Rod Taylor", + "Alan Young", + "Yvette Mimieux" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Three Came to Kill", + "year": 1960, + "cast": [ + "Cameron Mitchell", + "Lyn Thomas" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Toby Tyler", + "year": 1960, + "cast": [ + "Kevin Corcoran" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Too Hot to Handle", + "year": 1960, + "cast": [ + "Jayne Mansfield", + "Leo Genn", + "Karlheinz Böhm" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Tormented", + "year": 1960, + "cast": [ + "Richard Carlson", + "Lugene Sanders" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Twelve Hours to Kill", + "year": 1960, + "cast": [ + "Nico Minardos", + "Barbara Eden", + "Russ Conway" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Unforgiven", + "year": 1960, + "cast": [ + "Burt Lancaster", + "Audrey Hepburn", + "Audie Murphy" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Valley of the Redwoods", + "year": 1960, + "cast": [ + "John Hudson", + "Ed Nelson" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Vice Raid", + "year": 1960, + "cast": [ + "Mamie Van Doren", + "Richard Coogan" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Visit to a Small Planet", + "year": 1960, + "cast": [ + "Jerry Lewis", + "Joan Blackman", + "Earl Holliman" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Wackiest Ship In the Army", + "year": 1960, + "cast": [ + "Jack Lemmon", + "Ricky Nelson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Wake Me When It's Over", + "year": 1960, + "cast": [ + "Ernie Kovacs", + "Dick Shawn", + "Margo Moore" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Walk Like a Dragon", + "year": 1960, + "cast": [ + "Jack Lord", + "Nobu McCarthy", + "Mel Tormé" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Walk Tall", + "year": 1960, + "cast": [ + "Willard Parker", + "Joyce Meadows" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Walking Target", + "year": 1960, + "cast": [ + "Joan Evans", + "Merry Anders" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Wasp Woman", + "year": 1960, + "cast": [ + "Susan Cabot", + "Anthony Eisley" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Weddings and Babies", + "year": 1960, + "cast": [ + "Viveca Lindfors" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Where the Boys Are", + "year": 1960, + "cast": [ + "George Hamilton", + "Connie Francis", + "Yvette Mimieux", + "Paula Prentiss" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Who Was That Lady?", + "year": 1960, + "cast": [ + "Dean Martin", + "Tony Curtis", + "Janet Leigh" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Why Must I Die?", + "year": 1960, + "cast": [ + "Terry Moore", + "Debra Paget" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Wild Ride", + "year": 1960, + "cast": [ + "Jack Nicholson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Wild River", + "year": 1960, + "cast": [ + "Montgomery Clift", + "Lee Remick" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The World of Suzie Wong", + "year": 1960, + "cast": [ + "William Holden", + "Nancy Kwan", + "Sylvia Syms" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Young Jesse James", + "year": 1960, + "cast": [ + "Ray Stricklyn", + "Willard Parker", + "]]Merry Anders]]" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Young One", + "year": 1960, + "cast": [ + "Zachary Scott", + "Bernie Hamilton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Absent-Minded Professor", + "year": 1961, + "cast": [ + "Fred MacMurray", + "Nancy Olson", + "Keenan Wynn", + "Tommy Kirk" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Ada", + "year": 1961, + "cast": [ + "Susan Hayward", + "Dean Martin" + ], + "genres": [ + "Political", + "Drama" + ] + }, + { + "title": "All in a Night's Work", + "year": 1961, + "cast": [ + "Dean Martin", + "Shirley MacLaine", + "Cliff Robertson" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "All Hands on Deck", + "year": 1961, + "cast": [ + "Pat Boone", + "Barbara Eden", + "Buddy Hackett" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Angel Baby", + "year": 1961, + "cast": [ + "George Hamilton", + "Mercedes McCambridge", + "Joan Blondell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Aquamania", + "year": 1961, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "Armored Command", + "year": 1961, + "cast": [ + "Howard Keel", + "Tina Louise", + "Earl Holliman" + ], + "genres": [ + "War" + ] + }, + { + "title": "Atlantis, the Lost Continent", + "year": 1961, + "cast": [ + "John Dall", + "Edward Platt" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Babes in Toyland", + "year": 1961, + "cast": [ + "Tommy Sands", + "Annette Funicello", + "Ray Bolger", + "Ed Wynn" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Bachelor in Paradise", + "year": 1961, + "cast": [ + "Bob Hope", + "Lana Turner", + "Paula Prentiss", + "Janis Paige" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Back Street", + "year": 1961, + "cast": [ + "Susan Hayward", + "John Gavin", + "Vera Miles" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Battle at Bloody Beach", + "year": 1961, + "cast": [ + "Audie Murphy", + "Dolores Michaels" + ], + "genres": [ + "War" + ] + }, + { + "title": "The Beast of Yucca Flats", + "year": 1961, + "cast": [ + "Tor Johnson" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Beep Prepared", + "year": 1961, + "cast": [ + "voice of", + "Paul Julian" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "The Big Bankroll", + "year": 1961, + "cast": [ + "David Janssen", + "Dianne Foster", + "Diana Dors" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Big Gamble", + "year": 1961, + "cast": [ + "Stephen Boyd", + "Juliette Greco", + "David Wayne" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Big Show", + "year": 1961, + "cast": [ + "Esther Williams", + "Cliff Robertson", + "Robert Vaughn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Blast of Silence", + "year": 1961, + "cast": [ + "Allen Baron", + "Larry Tucker" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Bloodlust!", + "year": 1961, + "cast": [ + "Robert Reed", + "June Kenney" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Blue Hawaii", + "year": 1961, + "cast": [ + "Elvis Presley", + "Joan Blackman", + "Angela Lansbury" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Boys Beware", + "year": 1961, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "Breakfast at Tiffany's", + "year": 1961, + "cast": [ + "Audrey Hepburn", + "George Peppard", + "Buddy Ebsen", + "Patricia Neal", + "Martin Balsam", + "Mickey Rooney" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Bridge to the Sun", + "year": 1961, + "cast": [ + "Carroll Baker", + "James Shigeta" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "By Love Possessed", + "year": 1961, + "cast": [ + "Lana Turner", + "Efrem Zimbalist, Jr.", + "Jason Robards" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Children's Hour", + "year": 1961, + "cast": [ + "Audrey Hepburn", + "Shirley MacLaine", + "James Garner" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Claudelle Inglish", + "year": 1961, + "cast": [ + "Diane McBain", + "Arthur Kennedy", + "Chad Everett" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Cold Wind in August", + "year": 1961, + "cast": [ + "Lola Albright", + "Scott Marlowe" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Comancheros", + "year": 1961, + "cast": [ + "John Wayne", + "Stuart Whitman", + "Ina Balin" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Come September", + "year": 1961, + "cast": [ + "Rock Hudson", + "Gina Lollobrigida", + "Bobby Darin", + "Sandra Dee" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Creature from the Haunted Sea", + "year": 1961, + "cast": [ + "Antony Carbone", + "Betsy Jones-Moreland" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Cry for Happy", + "year": 1961, + "cast": [ + "Glenn Ford", + "Donald O'Connor", + "James Shigeta" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Daffy's Inn Trouble", + "year": 1961, + "cast": [ + "voice of", + "Mel Blanc" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "The Deadly Companions", + "year": 1961, + "cast": [ + "Maureen O'Hara", + "Brian Keith", + "Chill Wills" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Devil at 4 O'Clock", + "year": 1961, + "cast": [ + "Spencer Tracy", + "Frank Sinatra", + "Grégoire Aslan" + ], + "genres": [ + "Disaster" + ] + }, + { + "title": "Diary of a Nudist", + "year": 1961, + "cast": [ + "Davee Decker", + "Norman Casserly" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Dondi", + "year": 1961, + "cast": [ + "David Janssen", + "Patti Page", + "Walter Winchell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Down and Outing", + "year": 1961, + "cast": [ + "voice of", + "Allen Swift" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "El Cid", + "year": 1961, + "cast": [ + "Charlton Heston", + "Sophia Loren", + "Raf Vallone", + "Geneviève Page", + "Herbert Lom" + ], + "genres": [ + "Historical" + ] + }, + { + "title": "The Errand Boy", + "year": 1961, + "cast": [ + "Jerry Lewis", + "Brian Donlevy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Everything's Ducky", + "year": 1961, + "cast": [ + "Buddy Hackett", + "Mickey Rooney", + "Jackie Cooper" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Exiles", + "year": 1961, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Explosive Generation", + "year": 1961, + "cast": [ + "William Shatner", + "Patty McCormack" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Fanny", + "year": 1961, + "cast": [ + "Leslie Caron", + "Charles Boyer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Fever in the Blood", + "year": 1961, + "cast": [ + "Efrem Zimbalist Jr.", + "Angie Dickinson", + "Don Ameche" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Fiercest Heart", + "year": 1961, + "cast": [ + "Stuart Whitman", + "Juliet Prowse", + "Geraldine Fitzgerald" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Five Golden Hours", + "year": 1961, + "cast": [ + "Ernie Kovacs", + "Cyd Charisse" + ], + "genres": [ + "Crime", + "Comedy" + ] + }, + { + "title": "Five Minutes to Live", + "year": 1961, + "cast": [ + "Johnny Cash", + "Cay Forrester" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Flight of the Lost Balloon", + "year": 1961, + "cast": [ + "Mala Powers", + "Marshall Thompson" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Flight That Disappeared", + "year": 1961, + "cast": [ + "Craig Hill", + "Paula Raymond" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Flower Drum Song", + "year": 1961, + "cast": [ + "Nancy Kwan", + "James Shigeta", + "Jack Soo", + "Miyoshi Umeki" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Francis of Assisi", + "year": 1961, + "cast": [ + "Bradford Dillman", + "Dolores Hart", + "Stuart Whitman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The George Raft Story", + "year": 1961, + "cast": [ + "Ray Danton", + "Jayne Mansfield", + "Julie London" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Gidget Goes Hawaiian", + "year": 1961, + "cast": [ + "Deborah Walley", + "James Darren" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Gold of the Seven Saints", + "year": 1961, + "cast": [ + "Clint Walker", + "Roger Moore" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Goodbye Again", + "year": 1961, + "cast": [ + "Ingrid Bergman", + "Anthony Perkins" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Great Impostor", + "year": 1961, + "cast": [ + "Tony Curtis", + "Edmond O'Brien", + "Karl Malden" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Gun Fight", + "year": 1961, + "cast": [ + "James Brown", + "Joan Staley" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Gun Street", + "year": 1961, + "cast": [ + "James Brown", + "Jean Willes", + "John Clarke" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Happy Thieves", + "year": 1961, + "cast": [ + "Rex Harrison", + "Rita Hayworth" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Havoc in Heaven", + "year": 1961, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "Hercules in the Haunted World", + "year": 1961, + "cast": [ + "Reg Park", + "Christopher Lee" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Hey, Let's Twist!", + "year": 1961, + "cast": [ + "Joey Dee", + "Jo Ann Campbell" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Homicidal", + "year": 1961, + "cast": [ + "Glenn Corbett", + "Patricia Breslin", + "Eugenie Leontovich" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "The Honeymoon Machine", + "year": 1961, + "cast": [ + "Steve McQueen", + "Jim Hutton", + "Paula Prentiss" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hoodlum Priest", + "year": 1961, + "cast": [ + "Don Murray", + "Keir Dullea" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "The Hustler", + "year": 1961, + "cast": [ + "Paul Newman", + "Jackie Gleason", + "Piper Laurie", + "George C. Scott", + "Myron McCormick" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Judgment at Nuremberg", + "year": 1961, + "cast": [ + "Spencer Tracy", + "Marlene Dietrich", + "Richard Widmark", + "Maximilian Schell", + "Burt Lancaster", + "William Shatner", + "Montgomery Clift", + "Judy Garland" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "King of Kings", + "year": 1961, + "cast": [ + "Jeffrey Hunter", + "Robert Ryan", + "Hurd Hatfield", + "Rip Torn", + "Siobhán McKenna", + "Ron Randell", + "Rita Gam" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Ladies Man", + "year": 1961, + "cast": [ + "Jerry Lewis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Last Sunset", + "year": 1961, + "cast": [ + "Rock Hudson", + "Kirk Douglas", + "Dorothy Malone" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Last Time I Saw Archie", + "year": 1961, + "cast": [ + "Robert Mitchum", + "Jack Webb", + "Martha Hyer" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Lawbreakers", + "year": 1961, + "cast": [ + "Jack Warden", + "Vera Miles" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Little Shepherd of Kingdom Come", + "year": 1961, + "cast": [ + "Jimmie Rodgers", + "Luana Patten" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Look in Any Window", + "year": 1961, + "cast": [ + "Paul Anka", + "Gigi Perreau" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Love in a Goldfish Bowl", + "year": 1961, + "cast": [ + "Tommy Sands", + "Fabian" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Lover Come Back", + "year": 1961, + "cast": [ + "Doris Day", + "Rock Hudson", + "Tony Randall", + "Edie Adams" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Mad Dog Coll", + "year": 1961, + "cast": [ + "John Davis Chandler", + "Kay Doubleday", + "Jerry Orbach" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "A Majority of One", + "year": 1961, + "cast": [ + "Rosalind Russell", + "Alec Guinness" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Man-Trap", + "year": 1961, + "cast": [ + "Jeffrey Hunter", + "David Janssen", + "Stella Stevens" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Marines, Let's Go", + "year": 1961, + "cast": [ + "Tom Tryon", + "David Hedison" + ], + "genres": [ + "War" + ] + }, + { + "title": "The Mark", + "year": 1961, + "cast": [ + "Stuart Whitman", + "Rod Steiger" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Marriage-Go-Round", + "year": 1961, + "cast": [ + "Julie Newmar", + "James Mason", + "Susan Hayward" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Master of the World", + "year": 1961, + "cast": [ + "Vincent Price", + "Charles Bronson" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Misfits", + "year": 1961, + "cast": [ + "Clark Gable", + "Marilyn Monroe", + "Montgomery Clift" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Matter of Morals", + "year": 1961, + "cast": [ + "Maj-Britt Nilsson", + "Mogens Wieth", + "Eva Dahlbeck" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Misty", + "year": 1961, + "cast": [ + "Arthur O'Connell", + "Anne Seymour", + "David Ladd" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Morgan, the Pirate", + "year": 1961, + "cast": [ + "Steve Reeves" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Most Dangerous Man Alive", + "year": 1961, + "cast": [ + "Ron Randell", + "Debra Paget" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Mysterious Island", + "year": 1961, + "cast": [ + "Gary Merrill", + "Herbert Lom", + "Beth Rogan" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Naked Edge", + "year": 1961, + "cast": [ + "Gary Cooper", + "Deborah Kerr" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "Night Tide", + "year": 1961, + "cast": [ + "Dennis Hopper", + "Marjorie Cameron", + "Linda Lawson" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Nude on the Moon", + "year": 1961, + "cast": [], + "genres": [ + "Erotic" + ] + }, + { + "title": "On the Double", + "year": 1961, + "cast": [ + "Danny Kaye", + "Dana Wynter" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "One-Eyed Jacks", + "year": 1961, + "cast": [ + "Marlon Brando", + "Karl Malden", + "Katy Jurado" + ], + "genres": [ + "Western" + ] + }, + { + "title": "One Hundred and One Dalmatians", + "year": 1961, + "cast": [ + "Ben Wright", + "Betty Lou Gerson", + "Rod Taylor", + "(voices)" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "One, Two, Three", + "year": 1961, + "cast": [ + "James Cagney", + "Horst Bucholtz", + "Pamela Tiffin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Outsider", + "year": 1961, + "cast": [ + "Tony Curtis", + "James Franciscus", + "Bruce Bennett" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "The Parent Trap", + "year": 1961, + "cast": [ + "Hayley Mills", + "Brian Keith", + "Maureen O'Hara" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Paris Blues", + "year": 1961, + "cast": [ + "Sidney Poitier", + "Paul Newman", + "Joanne Woodward" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Parrish", + "year": 1961, + "cast": [ + "Troy Donahue", + "Claudette Colbert", + "Karl Malden" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Phantom Planet", + "year": 1961, + "cast": [ + "Coleen Gray", + "Anthony Dexter" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Pit and the Pendulum", + "year": 1961, + "cast": [ + "Vincent Price", + "John Kerr" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Pleasure of His Company", + "year": 1961, + "cast": [ + "Fred Astaire", + "Debbie Reynolds", + "Lilli Palmer", + "Tab Hunter" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Pocketful of Miracles", + "year": 1961, + "cast": [ + "Bette Davis", + "Glenn Ford", + "Hope Lange", + "Peter Falk", + "Arthur O'Connell", + "Ann-Margret" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Portrait of a Mobster", + "year": 1961, + "cast": [ + "Vic Morrow", + "Leslie Parrish" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Posse from Hell", + "year": 1961, + "cast": [ + "Audie Murphy", + "Lee Van Cleef", + "Vic Morrow" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Question 7", + "year": 1961, + "cast": [ + "Michael Gwynn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Raisin in the Sun", + "year": 1961, + "cast": [ + "Sidney Poitier", + "Ruby Dee" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Reptilicus", + "year": 1961, + "cast": [ + "Carl Ottosen" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Return to Peyton Place", + "year": 1961, + "cast": [ + "Carol Lynley", + "Jeff Chandler", + "Eleanor Parker" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Right Approach", + "year": 1961, + "cast": [ + "Frankie Vaughan", + "Martha Hyer", + "Juliet Prowse" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Romanoff and Juliet", + "year": 1961, + "cast": [ + "John Gavin", + "Sandra Dee" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Roman Spring of Mrs. Stone", + "year": 1961, + "cast": [ + "Vivien Leigh", + "Warren Beatty" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sail a Crooked Ship", + "year": 1961, + "cast": [ + "Robert Wagner", + "Dolores Hart", + "Ernie Kovacs" + ], + "genres": [ + "Crime", + "Comedy" + ] + }, + { + "title": "Sanctuary", + "year": 1961, + "cast": [ + "Lee Remick", + "Yves Montand" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Second Time Around", + "year": 1961, + "cast": [ + "Debbie Reynolds", + "Steve Forrest", + "Andy Griffith" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Secret Ways", + "year": 1961, + "cast": [ + "Richard Widmark", + "Sonja Ziemann" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Sergeant Was a Lady", + "year": 1961, + "cast": [ + "Venetia Stevenson", + "Bill Williams" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Seven Women from Hell", + "year": 1961, + "cast": [ + "Patricia Owens", + "Denise Darcel", + "Yvonne Craig" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Sinister Urge", + "year": 1961, + "cast": [ + "Kenne Duncan", + "Jean Fontaine" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Sins of Rachel Cade", + "year": 1961, + "cast": [ + "Angie Dickinson", + "Peter Finch", + "Roger Moore" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Snow White and the Three Stooges", + "year": 1961, + "cast": [ + "The Three Stooges", + "Carol Heiss" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Something Wild", + "year": 1961, + "cast": [ + "Carroll Baker", + "Ralph Meeker" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Splendor in the Grass", + "year": 1961, + "cast": [ + "Warren Beatty", + "Natalie Wood", + "Barbara Loden" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Steel Claw", + "year": 1961, + "cast": [ + "George Montgomery" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Stop, Look and Laugh", + "year": 1961, + "cast": [ + "The Three Stooges", + "Paul Winchell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Summer and Smoke", + "year": 1961, + "cast": [ + "Laurence Harvey", + "Geraldine Page", + "Rita Moreno", + "Thomas Gomez", + "Una Merkel" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Susan Slade", + "year": 1961, + "cast": [ + "Troy Donahue", + "Connie Stevens", + "Dorothy McGuire" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Swingin' Along", + "year": 1961, + "cast": [ + "Peter Marshall", + "Tommy Noonan", + "Barbara Eden" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Tammy Tell Me True", + "year": 1961, + "cast": [ + "Sandra Dee", + "John Gavin" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Teenage Millionaire", + "year": 1961, + "cast": [ + "Jimmy Clanton", + "Diane Jergens" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Three Blondes in His Life", + "year": 1961, + "cast": [ + "Jock Mahoney", + "Greta Thyssen" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Thunder of Drums", + "year": 1961, + "cast": [ + "Richard Boone", + "George Hamilton", + "Luana Patten" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Too Late Blues", + "year": 1961, + "cast": [ + "Bobby Darin", + "Stella Stevens" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Town Without Pity", + "year": 1961, + "cast": [ + "Kirk Douglas", + "E. G. Marshall", + "Robert Blake" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Twenty Plus Two", + "year": 1961, + "cast": [ + "David Janssen", + "Jeanne Crain", + "Dina Merrill" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Twist Around the Clock", + "year": 1961, + "cast": [ + "Chubby Checker", + "Dion DiMucci" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Two Loves", + "year": 1961, + "cast": [ + "Shirley MacLaine", + "Laurence Harvey" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Two Rode Together", + "year": 1961, + "cast": [ + "James Stewart", + "Richard Widmark", + "Shirley Jones" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Underworld U.S.A.", + "year": 1961, + "cast": [ + "Cliff Robertson", + "Beatrice Kay" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Very Nice, Very Nice", + "year": 1961, + "cast": [], + "genres": [ + "Short" + ] + }, + { + "title": "Voyage to the Bottom of the Sea", + "year": 1961, + "cast": [ + "Walter Pidgeon", + "Joan Fontaine", + "Barbara Eden" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "War Is Hell", + "year": 1961, + "cast": [ + "Audie Murphy", + "Judy Dan" + ], + "genres": [ + "War" + ] + }, + { + "title": "West Side Story", + "year": 1961, + "cast": [ + "Richard Beymer", + "Natalie Wood", + "Rita Moreno", + "Russ Tamblyn", + "George Chakiris", + "Simon Oakland" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Wild in the Country", + "year": 1961, + "cast": [ + "Elvis Presley", + "Tuesday Weld", + "Hope Lange" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Wizard of Baghdad", + "year": 1961, + "cast": [ + "Dick Shawn", + "Diane Baker" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "X-15", + "year": 1961, + "cast": [ + "Charles Bronson", + "Kenneth Tobey", + "David McLean", + "Mary Tyler Moore" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "You Have to Run Fast", + "year": 1961, + "cast": [ + "Craig Hill", + "Grant Richards" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Young Doctors", + "year": 1961, + "cast": [ + "Ben Gazzara", + "Fredric March", + "Dick Clark" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Young Savages", + "year": 1961, + "cast": [ + "Burt Lancaster", + "Dina Merrill", + "Shelley Winters" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "13 West Street", + "year": 1962, + "cast": [ + "Alan Ladd", + "Rod Steiger" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The 300 Spartans", + "year": 1962, + "cast": [ + "Richard Egan", + "Diane Baker" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "40 Pounds of Trouble", + "year": 1962, + "cast": [ + "Tony Curtis", + "Suzanne Pleshette" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Advise & Consent", + "year": 1962, + "cast": [ + "Henry Fonda", + "Charles Laughton", + "Don Murray", + "Walter Pidgeon", + "Gene Tierney", + "Peter Lawford", + "George Grizzard", + "Burgess Meredith", + "Lew Ayres", + "Paul Ford" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "All Fall Down", + "year": 1962, + "cast": [ + "Eva Marie Saint", + "Warren Beatty" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Bachelor Flat", + "year": 1962, + "cast": [ + "Terry-Thomas", + "Tuesday Weld", + "Celeste Holm" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Bellboy and the Playgirls", + "year": 1962, + "cast": [ + "June Wilkinson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Big Red", + "year": 1962, + "cast": [ + "Walter Pidgeon" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Billy Rose's Jumbo", + "year": 1962, + "cast": [ + "Doris Day", + "Jimmy Durante", + "Stephen Boyd", + "Martha Raye" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Birdman of Alcatraz", + "year": 1962, + "cast": [ + "Burt Lancaster", + "Karl Malden", + "Telly Savalas" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Black Gold", + "year": 1962, + "cast": [ + "Diane McBain", + "Fay Spain", + "Philip Carey" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Bon Voyage!", + "year": 1962, + "cast": [ + "Fred MacMurray", + "Jane Wyman" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Boys' Night Out", + "year": 1962, + "cast": [ + "James Garner", + "Kim Novak", + "Tony Randall" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Brain That Wouldn't Die", + "year": 1962, + "cast": [ + "Jason Evers", + "Virginia Leith" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Brushfire", + "year": 1962, + "cast": [ + "John Ireland", + "Jo Morrow" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Buddies Thicker Than Water", + "year": 1962, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Cape Fear", + "year": 1962, + "cast": [ + "Robert Mitchum", + "Gregory Peck", + "Polly Bergen", + "Telly Savalas", + "Martin Balsam", + "Lori Martin", + "Barrie Chase" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The Captive City", + "year": 1962, + "cast": [ + "David Niven", + "Ben Gazzara", + "Martin Balsam", + "Lea Massari" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Carmen Get It!", + "year": 1962, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Carnival of Souls", + "year": 1962, + "cast": [ + "Candace Hilligoss", + "Art Ellison" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Chapman Report", + "year": 1962, + "cast": [ + "Shelley Winters", + "Jane Fonda", + "Claire Bloom" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Commies Are Coming, the Commies Are Coming", + "year": 1962, + "cast": [ + "Jack Kelly", + "Jeanne Cooper" + ], + "genres": [ + "War", + "Short" + ] + }, + { + "title": "Convicts 4", + "year": 1962, + "cast": [ + "Ben Gazzara", + "Stuart Whitman", + "Sammy Davis Jr." + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Counterfeit Traitor", + "year": 1962, + "cast": [ + "William Holden", + "Lilli Palmer", + "Hugh Griffith" + ], + "genres": [ + "War" + ] + }, + { + "title": "The Creation of the Humanoids", + "year": 1962, + "cast": [ + "Don Megowan", + "Dudley Manlove" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "David and Lisa", + "year": 1962, + "cast": [ + "Keir Dullea", + "Janet Margolin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Days of Wine and Roses", + "year": 1962, + "cast": [ + "Jack Lemmon", + "Lee Remick", + "Jack Klugman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Deadly Duo", + "year": 1962, + "cast": [ + "Marcia Henderson", + "Irene Tedrow" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Don't Knock the Twist", + "year": 1962, + "cast": [ + "Chubby Checker", + "Lang Jeffries" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Escape from East Berlin", + "year": 1962, + "cast": [ + "Don Murray", + "Christine Kaufmann", + "Werner Klemperer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Escape from Zahrain", + "year": 1962, + "cast": [ + "Yul Brynner", + "Sal Mineo", + "Jack Warden" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Experiment in Terror", + "year": 1962, + "cast": [ + "Glenn Ford", + "Lee Remick", + "Stefanie Powers", + "Ross Martin" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "FBI Code 98", + "year": 1962, + "cast": [ + "Jack Kelly", + "Ray Danton" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Five Finger Exercise", + "year": 1962, + "cast": [ + "Rosalind Russell", + "Jack Hawkins" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Five Miles to Midnight", + "year": 1962, + "cast": [ + "Sophia Loren", + "Anthony Perkins" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "Five Weeks in a Balloon", + "year": 1962, + "cast": [ + "Red Buttons", + "Barbara Eden" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Follow that Dream", + "year": 1962, + "cast": [ + "Elvis Presley", + "Arthur O'Connell", + "Joanna Moore" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Four Horsemen of the Apocalypse", + "year": 1962, + "cast": [ + "Glenn Ford", + "Lee J. Cobb", + "Charles Boyer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Freud: The Secret Passion", + "year": 1962, + "cast": [ + "Montgomery Clift", + "Susannah York", + "Larry Parks" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Gay Purr-ee", + "year": 1962, + "cast": [ + "(voices of)", + "Judy Garland", + "Robert Goulet", + "Red Buttons" + ], + "genres": [ + "Animated", + "Musical" + ] + }, + { + "title": "Gigot", + "year": 1962, + "cast": [ + "Jackie Gleason" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Girl Named Tamiko", + "year": 1962, + "cast": [ + "Laurence Harvey", + "France Nuyen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Girls! Girls! Girls!", + "year": 1962, + "cast": [ + "Elvis Presley", + "Stella Stevens", + "Laurel Goodwin" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Gypsy", + "year": 1962, + "cast": [ + "Rosalind Russell", + "Karl Malden", + "Natalie Wood" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Hatari!", + "year": 1962, + "cast": [ + "John Wayne", + "Red Buttons", + "Elsa Martinelli" + ], + "genres": [ + "Action", + "Comedy" + ] + }, + { + "title": "Heaven and Earth Magic", + "year": 1962, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "Hell Is for Heroes", + "year": 1962, + "cast": [ + "Steve McQueen", + "Fess Parker", + "James Coburn", + "Bobby Darin" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "Hemingway's Adventures of a Young Man", + "year": 1962, + "cast": [ + "Richard Beymer", + "Diane Baker", + "Corinne Calvet" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hero's Island", + "year": 1962, + "cast": [ + "James Mason", + "Rip Torn" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "High Steaks", + "year": 1962, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "The Horizontal Lieutenant", + "year": 1962, + "cast": [ + "Jim Hutton", + "Paula Prentiss", + "Jack Carter", + "Miyoshi Umeki", + "Charles McGraw", + "Jim Backus" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "House of Women", + "year": 1962, + "cast": [ + "Shirley Knight", + "Andrew Duggan", + "Constance Ford" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "How the West Was Won", + "year": 1962, + "cast": [ + "James Stewart", + "Debbie Reynolds", + "Carroll Baker", + "Karl Malden", + "Gregory Peck", + "Richard Widmark", + "George Peppard", + "John Wayne" + ], + "genres": [ + "Western" + ] + }, + { + "title": "If a Man Answers", + "year": 1962, + "cast": [ + "Bobby Darin", + "Sandra Dee", + "Cesar Romero" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "In Search of the Castaways", + "year": 1962, + "cast": [ + "Hayley Mills", + "Maurice Chevalier", + "George Sanders" + ], + "genres": [ + "Family" + ] + }, + { + "title": "The Inspector", + "year": 1962, + "cast": [ + "Stephen Boyd", + "Dolores Hart", + "Leo McKern" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Interns", + "year": 1962, + "cast": [ + "Cliff Robertson", + "Stefanie Powers", + "Telly Savalas", + "Michael Callan", + "James MacArthur", + "Suzy Parker" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Intruder", + "year": 1962, + "cast": [ + "William Shatner" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "I Thank a Fool", + "year": 1962, + "cast": [ + "Susan Hayward", + "Peter Finch" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "It Happened In Athens", + "year": 1962, + "cast": [ + "Jayne Mansfield" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "It's Only Money", + "year": 1962, + "cast": [ + "Jerry Lewis", + "Zachary Scott", + "Joan O'Brien" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Jack the Giant Killer", + "year": 1962, + "cast": [ + "Kerwin Mathews", + "Torin Thatcher" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Jessica", + "year": 1962, + "cast": [ + "Angie Dickinson", + "Maurice Chevalier", + "Sylvia Koscina", + "Agnes Moorehead" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Jet Cage", + "year": 1962, + "cast": [ + "Looney Tunes" + ], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "Journey to the Seventh Planet", + "year": 1962, + "cast": [ + "John Agar", + "Greta Thyssen" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Kid Galahad", + "year": 1962, + "cast": [ + "Elvis Presley", + "Gig Young", + "Charles Bronson", + "Joan Blackman", + "Lola Albright", + "Edward Asner" + ], + "genres": [ + "Musical", + "Drama" + ] + }, + { + "title": "Lawrence of Arabia", + "year": 1962, + "cast": [ + "Peter O'Toole", + "Omar Sharif", + "Anthony Quinn", + "Alec Guinness", + "José Ferrer", + "Arthur Kennedy", + "Anthony Quayle", + "Claude Rains" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Light in the Piazza", + "year": 1962, + "cast": [ + "Olivia de Havilland", + "Rossano Brazzi", + "Barry Sullivan", + "Yvette Mimieux" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Lion", + "year": 1962, + "cast": [ + "William Holden", + "Trevor Howard" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Lolita", + "year": 1962, + "cast": [ + "James Mason", + "Sue Lyon", + "Shelley Winters", + "Peter Sellers" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Lonely Are the Brave", + "year": 1962, + "cast": [ + "Kirk Douglas", + "Walter Matthau", + "Gena Rowlands", + "Carroll O'Connor", + "George Kennedy" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Long Day's Journey Into Night", + "year": 1962, + "cast": [ + "Katharine Hepburn", + "Ralph Richardson", + "Jason Robards", + "Dean Stockwell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Longest Day", + "year": 1962, + "cast": [ + "John Wayne", + "Robert Mitchum", + "Henry Fonda", + "Richard Burton", + "Sean Connery", + "Robert Ryan", + "George Segal", + "Tom Tryon", + "Peter Lawford" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "Madison Avenue", + "year": 1962, + "cast": [ + "Dana Andrews", + "Eleanor Parker", + "Jeanne Crain" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Main Attraction", + "year": 1962, + "cast": [ + "Pat Boone", + "Nancy Kwan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Man Who Shot Liberty Valance", + "year": 1962, + "cast": [ + "James Stewart", + "John Wayne", + "Lee Marvin", + "Vera Miles", + "Edmond O'Brien", + "Woody Strode", + "Andy Devine", + "Strother Martin", + "Lee Van Cleef" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Manchurian Candidate", + "year": 1962, + "cast": [ + "Frank Sinatra", + "Janet Leigh", + "Laurence Harvey", + "Angela Lansbury", + "Leslie Parrish", + "James Gregory", + "Henry Silva", + "John McGiver" + ], + "genres": [ + "Political", + "Thriller" + ] + }, + { + "title": "The Manster", + "year": 1962, + "cast": [ + "Peter Dyneley", + "Tetsu Nakamura", + "Terri Zimmern", + "Jane Hylton" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Merrill's Marauders", + "year": 1962, + "cast": [ + "Jeff Chandler", + "Ty Hardin", + "Claude Akins" + ], + "genres": [ + "War" + ] + }, + { + "title": "The Miracle Worker", + "year": 1962, + "cast": [ + "Anne Bancroft", + "Patty Duke", + "Victor Jory" + ], + "genres": [ + "Biography", + "Drama" + ] + }, + { + "title": "Mister Magoo's Christmas Carol", + "year": 1962, + "cast": [ + "Jim Backus", + "Morey Amsterdam", + "Royal Dano" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Moon Pilot", + "year": 1962, + "cast": [ + "Tom Tryon", + "Edmond O'Brien", + "Dany Saval" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mouse Into Space", + "year": 1962, + "cast": [ + "Tom and Jerry" + ], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "Mr. Hobbs Takes a Vacation", + "year": 1962, + "cast": [ + "James Stewart", + "Maureen O'Hara", + "Fabian", + "Reginald Gardiner", + "Marie Wilson", + "John McGiver" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Music Man", + "year": 1962, + "cast": [ + "Robert Preston", + "Shirley Jones", + "Buddy Hackett", + "Ron Howard", + "Hermione Gingold", + "Paul Ford", + "Susan Luckey", + "Pert Kelton" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Mutiny on the Bounty", + "year": 1962, + "cast": [ + "Marlon Brando", + "Trevor Howard", + "Richard Harris", + "Richard Haydn", + "Hugh Griffith" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "My Geisha", + "year": 1962, + "cast": [ + "Shirley MacLaine", + "Yves Montand", + "Edward G. Robinson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "No Exit", + "year": 1962, + "cast": [ + "Viveca Lindfors", + "Rita Gam" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "No Man Is an Island", + "year": 1962, + "cast": [ + "Jeffrey Hunter" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Notorious Landlady", + "year": 1962, + "cast": [ + "Jack Lemmon", + "Kim Novak", + "Fred Astaire" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Nun and the Sergeant", + "year": 1962, + "cast": [ + "Robert Webber", + "Anna Sten" + ], + "genres": [ + "War" + ] + }, + { + "title": "Only Two Can Play", + "year": 1962, + "cast": [ + "Peter Sellers", + "Mai Zetterling" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Panic in Year Zero!", + "year": 1962, + "cast": [ + "Ray Milland", + "Jean Hagen", + "Frankie Avalon" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Period of Adjustment", + "year": 1962, + "cast": [ + "Jane Fonda", + "Tony Franciosa", + "Jim Hutton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Phaedra", + "year": 1962, + "cast": [ + "Melina Mercouri", + "Anthony Perkins", + "Raf Vallone" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Pigeon That Took Rome", + "year": 1962, + "cast": [ + "Charlton Heston", + "Elsa Martinelli", + "Harry Guardino" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Pontius Pilate", + "year": 1962, + "cast": [ + "Jeanne Crain", + "Basil Rathbone", + "Letícia Román" + ], + "genres": [] + }, + { + "title": "Premature Burial", + "year": 1962, + "cast": [ + "Ray Milland", + "Hazel Court", + "Alan Napier" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Pressure Point", + "year": 1962, + "cast": [ + "Sidney Poitier", + "Bobby Darin", + "Peter Falk" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Red Nightmare", + "year": 1962, + "cast": [ + "Jack Webb", + "Jack Kelly" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Reluctant Saint", + "year": 1962, + "cast": [ + "Maximilian Schell", + "Ricardo Montalbán" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Requiem for a Heavyweight", + "year": 1962, + "cast": [ + "Anthony Quinn", + "Jackie Gleason", + "Mickey Rooney", + "Julie Harris" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Ride the High Country", + "year": 1962, + "cast": [ + "Joel McCrea", + "Randolph Scott", + "Mariette Hartley", + "James Drury", + "Warren Oates", + "R. G. Armstrong", + "L. Q. Jones" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Ring of Terror", + "year": 1962, + "cast": [], + "genres": [ + "Horror" + ] + }, + { + "title": "The Road to Hong Kong", + "year": 1962, + "cast": [ + "Bob Hope", + "Bing Crosby", + "Joan Collins" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Rome Adventure", + "year": 1962, + "cast": [ + "Angie Dickinson", + "Troy Donahue", + "Suzanne Pleshette" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Safe at Home!", + "year": 1962, + "cast": [ + "Mickey Mantle", + "Roger Maris", + "William Frawley" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Satan in High Heels", + "year": 1962, + "cast": [ + "Grayson Hall", + "Meg Myles" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Satan Never Sleeps", + "year": 1962, + "cast": [ + "William Holden", + "Clifton Webb", + "France Nuyen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sergeants 3", + "year": 1962, + "cast": [ + "Frank Sinatra", + "Dean Martin", + "Sammy Davis Jr.", + "Peter Lawford", + "Joey Bishop" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Six Black Horses", + "year": 1962, + "cast": [ + "Audie Murphy", + "Joan O'Brien" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Sodom and Gomorrah", + "year": 1962, + "cast": [ + "Stewart Granger", + "Pier Angeli" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Something's Got to Give", + "year": 1962, + "cast": [ + "Marilyn Monroe", + "Dean Martin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Spiral Road", + "year": 1962, + "cast": [ + "Rock Hudson", + "Gena Rowlands", + "Burl Ives", + "Neva Patterson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Stagecoach to Dancers' Rock", + "year": 1962, + "cast": [ + "Martin Landau", + "Warren Stevens", + "Judy Dan" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Stark Fear", + "year": 1962, + "cast": [ + "Skip Homeier", + "Beverly Garland" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "State Fair", + "year": 1962, + "cast": [ + "Tom Ewell", + "Pat Boone", + "Pamela Tiffin", + "Ann-Margret", + "Alice Faye", + "Bobby Darin" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Sweet Bird of Youth", + "year": 1962, + "cast": [ + "Paul Newman", + "Geraldine Page", + "Ed Begley", + "Rip Torn", + "Mildred Dunnock", + "Shirley Knight" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Symposium on Popular Songs", + "year": 1962, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "Tales of Terror", + "year": 1962, + "cast": [ + "Vincent Price", + "Peter Lorre", + "Basil Rathbone" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Taras Bulba", + "year": 1962, + "cast": [ + "Yul Brynner", + "Tony Curtis", + "Sam Wanamaker", + "Christine Kaufmann", + "Brad Dexter" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Tarzan Goes to India", + "year": 1962, + "cast": [ + "Jock Mahoney" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Tender Is the Night", + "year": 1962, + "cast": [ + "Jennifer Jones", + "Joan Fontaine", + "Jason Robards" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "That Touch of Mink", + "year": 1962, + "cast": [ + "Cary Grant", + "Doris Day", + "Gig Young", + "Audrey Meadows", + "John Astin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Three Stooges Meet Hercules", + "year": 1962, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Three Stooges in Orbit", + "year": 1962, + "cast": [ + "The Three Stooges" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "To Kill a Mockingbird", + "year": 1962, + "cast": [ + "Gregory Peck", + "Mary Badham", + "Phillip Alford", + "Robert Duvall", + "Brock Peters", + "William Windom", + "Frank Overton", + "Paul Fix" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Tonight for Sure", + "year": 1962, + "cast": [ + "Karl Schanzer" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Too Late Blues", + "year": 1962, + "cast": [ + "Bobby Darin", + "Stella Stevens", + "Vince Edwards" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Tower of London", + "year": 1962, + "cast": [ + "Vincent Price" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Trial", + "year": 1962, + "cast": [ + "Anthony Perkins", + "Orson Welles", + "Jeanne Moreau", + "Romy Schneider" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Two for the Seesaw", + "year": 1962, + "cast": [ + "Robert Mitchum", + "Shirley MacLaine" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Two Weeks in Another Town", + "year": 1962, + "cast": [ + "Kirk Douglas", + "Edward G. Robinson", + "Cyd Charisse", + "Claire Trevor", + "George Hamilton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A View from the Bridge", + "year": 1962, + "cast": [ + "Raf Vallone", + "Maureen Stapleton", + "Carol Lawrence" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Walk on the Wild Side", + "year": 1962, + "cast": [ + "Jane Fonda", + "Barbara Stanwyck", + "Laurence Harvey", + "Capucine" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "War Hunt", + "year": 1962, + "cast": [ + "John Saxon", + "Charles Aidman", + "Robert Redford" + ], + "genres": [ + "War" + ] + }, + { + "title": "The War Lover", + "year": 1962, + "cast": [ + "Steve McQueen", + "Robert Wagner" + ], + "genres": [ + "War" + ] + }, + { + "title": "What Ever Happened to Baby Jane?", + "year": 1962, + "cast": [ + "Bette Davis", + "Joan Crawford", + "Victor Buono" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Who's Got the Action?", + "year": 1962, + "cast": [ + "Dean Martin", + "Lana Turner", + "Walter Matthau" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Wild Guitar", + "year": 1962, + "cast": [ + "Arch Hall Jr." + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Wild Westerners", + "year": 1962, + "cast": [ + "James Philbrook", + "Nancy Kovack" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Wonderful World of the Brothers Grimm", + "year": 1962, + "cast": [ + "Laurence Harvey", + "Claire Bloom", + "Barbara Eden" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "The World's Greatest Sinner", + "year": 1962, + "cast": [], + "genres": [ + "Drama" + ] + }, + { + "title": "Zotz!", + "year": 1962, + "cast": [ + "Tom Poston", + "Jim Backus", + "Margaret Dumont" + ], + "genres": [ + "Science Fiction", + "Comedy" + ] + }, + { + "title": "4 for Texas", + "year": 1963, + "cast": [ + "Frank Sinatra", + "Dean Martin", + "Anita Ekberg", + "Ursula Andress", + "Charles Bronson" + ], + "genres": [ + "Western", + "Comedy" + ] + }, + { + "title": "55 Days at Peking", + "year": 1963, + "cast": [ + "Charlton Heston", + "Ava Gardner", + "David Niven" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Act One", + "year": 1963, + "cast": [ + "George Hamilton", + "Jason Robards", + "Jack Klugman", + "George Segal" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "All the Way Home", + "year": 1963, + "cast": [ + "Jean Simmons", + "Robert Preston", + "Pat Hingle" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "America, America", + "year": 1963, + "cast": [ + "Frank Wolff", + "Stathis Giallelis", + "Lou Antonio", + "Joanna Frank" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Atom Age Vampire", + "year": 1963, + "cast": [ + "Alberto Lupo", + "Susanne Loret", + "Sergio Fantoni" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Balcony", + "year": 1963, + "cast": [ + "Shelley Winters", + "Peter Falk", + "Leonard Nimoy", + "Ruby Dee" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Beach Party", + "year": 1963, + "cast": [ + "Robert Cummings", + "Dorothy Malone", + "Annette Funicello", + "Frankie Avalon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Birds", + "year": 1963, + "cast": [ + "Tippi Hedren", + "Rod Taylor", + "Jessica Tandy", + "Suzanne Pleshette", + "Veronica Cartwright" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "Blonde Cobra", + "year": 1963, + "cast": [ + "Jack Smith" + ], + "genres": [ + "Short" + ] + }, + { + "title": "Blood Feast", + "year": 1963, + "cast": [ + "William Kerwin", + "Mal Arnold", + "Connie Mason", + "Scott H. Hall" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Bye Bye Birdie", + "year": 1963, + "cast": [ + "Dick Van Dyke", + "Ann-Margret", + "Janet Leigh", + "Bobby Rydell", + "Maureen Stapleton", + "Paul Lynde", + "Jesse Pearson", + "Ed Sullivan" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Cairo", + "year": 1963, + "cast": [ + "George Sanders", + "Richard Johnson" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "California", + "year": 1963, + "cast": [ + "Jock Mahoney", + "Faith Domergue" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Call Me Bwana", + "year": 1963, + "cast": [ + "Bob Hope", + "Anita Ekberg", + "Edie Adams" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Captain Newman, M.D.", + "year": 1963, + "cast": [ + "Gregory Peck", + "Angie Dickinson", + "Tony Curtis", + "Eddie Albert", + "Robert Duvall", + "Larry Storch", + "Bobby Darin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Cardinal", + "year": 1963, + "cast": [ + "Tom Tryon", + "John Huston", + "Carol Lynley", + "Romy Schneider", + "Ossie Davis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Caretakers", + "year": 1963, + "cast": [ + "Joan Crawford", + "Robert Stack", + "Polly Bergen" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "Charade", + "year": 1963, + "cast": [ + "Audrey Hepburn", + "Cary Grant", + "Walter Matthau", + "James Coburn", + "Ned Glass", + "George Kennedy" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "A Child Is Waiting", + "year": 1963, + "cast": [ + "Burt Lancaster", + "Judy Garland", + "Gena Rowlands" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Cleopatra", + "year": 1963, + "cast": [ + "Elizabeth Taylor", + "Richard Burton", + "Rex Harrison", + "Roddy McDowall", + "Martin Landau", + "Carroll O'Connor", + "Hume Cronyn" + ], + "genres": [] + }, + { + "title": "Come Blow Your Horn", + "year": 1963, + "cast": [ + "Frank Sinatra", + "Tony Bill", + "Barbara Rush", + "Jill St. John" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Come Fly with Me", + "year": 1963, + "cast": [ + "Dolores Hart", + "Pamela Tiffin", + "Lois Nettleton", + "Hugh O'Brian" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Comedy of Terrors", + "year": 1963, + "cast": [ + "Vincent Price", + "Peter Lorre", + "Boris Karloff", + "Basil Rathbone" + ], + "genres": [ + "Comedy", + "Horror" + ] + }, + { + "title": "The Cool World", + "year": 1963, + "cast": [ + "Yolanda Rodríguez", + "Antonio Fargas", + "Carl Lee" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Courtship of Eddie's Father", + "year": 1963, + "cast": [ + "Glenn Ford", + "Shirley Jones", + "Stella Stevens", + "Dina Merrill", + "Ron Howard", + "Jerry Van Dyke" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Crawling Hand", + "year": 1963, + "cast": [ + "Peter Breck", + "Kent Taylor", + "Alan Hale Jr." + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Critic's Choice", + "year": 1963, + "cast": [ + "Bob Hope", + "Lucille Ball", + "Marilyn Maxwell", + "Rip Torn" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Cry of Battle", + "year": 1963, + "cast": [ + "Van Heflin", + "Rita Moreno" + ], + "genres": [ + "War" + ] + }, + { + "title": "Dementia 13", + "year": 1963, + "cast": [ + "William Campbell", + "Patrick Magee" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Diamond Head", + "year": 1963, + "cast": [ + "Charlton Heston", + "Yvette Mimieux" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Diary of a Madman", + "year": 1963, + "cast": [ + "Vincent Price", + "Nancy Kovack", + "Lewis Martin" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Donovan's Reef", + "year": 1963, + "cast": [ + "John Wayne", + "Lee Marvin", + "Jack Warden", + "Dorothy Lamour", + "Elizabeth Allen", + "Cesar Romero" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Drums of Africa", + "year": 1963, + "cast": [ + "Frankie Avalon", + "Mariette Hartley" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Eat", + "year": 1963, + "cast": [ + "Robert Indiana" + ], + "genres": [] + }, + { + "title": "Face in the Rain", + "year": 1963, + "cast": [ + "Rory Calhoun", + "Marina Berti" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Five Minutes to Love", + "year": 1963, + "cast": [ + "Rue McLanahan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Flaming Creatures", + "year": 1963, + "cast": [ + "Frances Francine", + "Mario Montez" + ], + "genres": [] + }, + { + "title": "Flipper", + "year": 1963, + "cast": [ + "Chuck Connors", + "Luke Halpin" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Follow the Boys", + "year": 1963, + "cast": [ + "Connie Francis", + "Janis Paige", + "Paula Prentiss", + "Russ Tamblyn" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "For Love or Money", + "year": 1963, + "cast": [ + "Kirk Douglas", + "Mitzi Gaynor", + "Thelma Ritter", + "Gig Young", + "Leslie Parrish", + "Julie Newmar" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Free, White and 21", + "year": 1963, + "cast": [ + "Frederick O'Neal", + "Annalena Lund" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Fun in Acapulco", + "year": 1963, + "cast": [ + "Elvis Presley", + "Ursula Andress", + "Elsa Cardenas" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "A Gathering of Eagles", + "year": 1963, + "cast": [ + "Rock Hudson", + "Rod Taylor", + "Barry Sullivan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Gidget Goes to Rome", + "year": 1963, + "cast": [ + "Cindy Carol", + "Don Porter" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Girl Hunters", + "year": 1963, + "cast": [ + "Mickey Spillane", + "Shirley Eaton" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Goldilocks and the Three Bares", + "year": 1963, + "cast": [ + "Alison Edwards", + "Rex Marlow", + "Thomas Sweetwood", + "Joey Maxim" + ], + "genres": [ + "Erotic", + "Comedy" + ] + }, + { + "title": "The Great Escape", + "year": 1963, + "cast": [ + "Steve McQueen", + "James Garner", + "Richard Attenborough", + "Charles Bronson", + "James Coburn", + "James Donald", + "Donald Pleasence", + "David McCallum" + ], + "genres": [ + "War" + ] + }, + { + "title": "Gunfight at Comanche Creek", + "year": 1963, + "cast": [ + "Audie Murphy", + "Colleen Miller" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Haunted Palace", + "year": 1963, + "cast": [ + "Vincent Price", + "Debra Paget" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Haunting", + "year": 1963, + "cast": [ + "Julie Harris", + "Claire Bloom", + "Russ Tamblyn" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Hook", + "year": 1963, + "cast": [ + "Kirk Douglas", + "Nick Adams" + ], + "genres": [ + "War" + ] + }, + { + "title": "Hud", + "year": 1963, + "cast": [ + "Paul Newman", + "Melvyn Douglas", + "Patricia Neal", + "Brandon deWilde" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "I Could Go On Singing", + "year": 1963, + "cast": [ + "Judy Garland", + "Dirk Bogarde" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "In the Cool of the Day", + "year": 1963, + "cast": [ + "Peter Finch", + "Jane Fonda", + "Angela Lansbury" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Incredible Journey", + "year": 1963, + "cast": [ + "Emile Genest", + "John Drainie" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Irma la Douce", + "year": 1963, + "cast": [ + "Jack Lemmon", + "Shirley MacLaine" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Island of Love", + "year": 1963, + "cast": [ + "Robert Preston", + "Tony Randall", + "Walter Matthau" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "It Happened at the World's Fair", + "year": 1963, + "cast": [ + "Elvis Presley", + "Gary Lockwood" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "It's a Mad, Mad, Mad, Mad World", + "year": 1963, + "cast": [ + "Spencer Tracy", + "Milton Berle", + "Mickey Rooney", + "Ethel Merman", + "Sid Caesar", + "Phil Silvers", + "Dick Shawn", + "Terry-Thomas", + "Edie Adams", + "Jonathan Winters", + "Buddy Hackett", + "Dorothy Provine", + "Peter Falk" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Jason and the Argonauts", + "year": 1963, + "cast": [ + "Todd Armstrong", + "Nancy Kovack", + "Honor Blackman" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Johnny Cool", + "year": 1963, + "cast": [ + "Henry Silva", + "Elizabeth Montgomery", + "Jim Backus" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Kings of the Sun", + "year": 1963, + "cast": [ + "Yul Brynner", + "George Chakiris" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Ladybug Ladybug", + "year": 1963, + "cast": [ + "Jane Connell", + "William Daniels", + "Nancy Marchand" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Lancelot and Guinevere", + "year": 1963, + "cast": [ + "Cornel Wilde", + "Jean Wallace" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Law of the Lawless", + "year": 1963, + "cast": [ + "Dale Robertson", + "Yvonne De Carlo" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Lilies of the Field", + "year": 1963, + "cast": [ + "Sidney Poitier", + "Lilia Skala" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The List of Adrian Messenger", + "year": 1963, + "cast": [ + "George C. Scott", + "Dana Wynter" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Long Ships", + "year": 1963, + "cast": [ + "Richard Widmark", + "Sidney Poitier", + "Russ Tamblyn" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Love Is a Ball", + "year": 1963, + "cast": [ + "Glenn Ford", + "Hope Lange", + "Telly Savalas" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Love with the Proper Stranger", + "year": 1963, + "cast": [ + "Natalie Wood", + "Steve McQueen", + "Edie Adams" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Man from the Diner's Club", + "year": 1963, + "cast": [ + "Danny Kaye", + "Martha Hyer", + "Telly Savalas" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Maniac", + "year": 1963, + "cast": [ + "Kerwin Mathews", + "Nadia Gray", + "Donald Houston" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Mary, Mary", + "year": 1963, + "cast": [ + "Debbie Reynolds", + "Barry Nelson", + "Michael Rennie" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "McLintock!", + "year": 1963, + "cast": [ + "John Wayne", + "Maureen O'Hara", + "Stefanie Powers", + "Yvonne De Carlo", + "Patrick Wayne", + "Jerry Van Dyke" + ], + "genres": [ + "Western", + "Comedy" + ] + }, + { + "title": "Miracle of the White Stallions", + "year": 1963, + "cast": [ + "Robert Taylor", + "Lilli Palmer", + "Curd Jürgens" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "Move Over, Darling", + "year": 1963, + "cast": [ + "Doris Day", + "James Garner", + "Polly Bergen" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "My Six Loves", + "year": 1963, + "cast": [ + "Debbie Reynolds", + "Cliff Robertson", + "David Janssen" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A New Kind of Love", + "year": 1963, + "cast": [ + "Paul Newman", + "Joanne Woodward", + "Eva Gabor" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Nine Hours to Rama", + "year": 1963, + "cast": [ + "Horst Buchholz", + "José Ferrer", + "Diane Baker" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Nutty Professor", + "year": 1963, + "cast": [ + "Jerry Lewis", + "Stella Stevens" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Of Love and Desire", + "year": 1963, + "cast": [ + "Merle Oberon", + "Steve Cochran" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Old Dark House", + "year": 1963, + "cast": [ + "Tom Poston", + "Joyce Grenfell", + "Janette Scott" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "One Got Fat", + "year": 1963, + "cast": [], + "genres": [] + }, + { + "title": "One Man's Way", + "year": 1963, + "cast": [ + "Don Murray", + "Diana Hyland", + "Carol Ohmart", + "William Windom", + "Veronica Cartwright", + "Virginia Sale" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Operation Bikini", + "year": 1963, + "cast": [ + "Tab Hunter", + "Frankie Avalon", + "Jim Backus", + "Gary Crosby" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "PT 109", + "year": 1963, + "cast": [ + "Cliff Robertson", + "Robert Culp", + "Robert Blake" + ], + "genres": [ + "Biography", + "War" + ] + }, + { + "title": "Palm Springs Weekend", + "year": 1963, + "cast": [ + "Troy Donahue", + "Stefanie Powers", + "Connie Stevens" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Papa's Delicate Condition", + "year": 1963, + "cast": [ + "Jackie Gleason" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Pent-House Mouse", + "year": 1963, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "The Pink Panther", + "year": 1963, + "cast": [ + "David Niven", + "Peter Sellers", + "Robert Wagner", + "Capucine", + "Claudia Cardinale" + ], + "genres": [ + "Crime", + "Comedy" + ] + }, + { + "title": "The Prize", + "year": 1963, + "cast": [ + "Paul Newman", + "Edward G. Robinson", + "Elke Sommer", + "Kevin McCarthy", + "Diane Baker" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Promises! Promises!", + "year": 1963, + "cast": [ + "Jayne Mansfield", + "Tommy Noonan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Raiders", + "year": 1963, + "cast": [ + "Brian Keith", + "Robert Culp" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Rampage", + "year": 1963, + "cast": [ + "Robert Mitchum", + "Jack Hawkins", + "Elsa Martinelli" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Raven", + "year": 1963, + "cast": [ + "Vincent Price", + "Boris Karloff", + "Peter Lorre" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Sadist", + "year": 1963, + "cast": [ + "Arch Hall Jr." + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Shock Corridor", + "year": 1963, + "cast": [ + "Peter Breck", + "Constance Towers" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Showdown", + "year": 1963, + "cast": [ + "Audie Murphy", + "Kathleen Crowley" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Skydivers", + "year": 1963, + "cast": [ + "Anthony Cardoza", + "Jimmy Bryant" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sleep", + "year": 1963, + "cast": [ + "John Giorno" + ], + "genres": [] + }, + { + "title": "The Slime People", + "year": 1963, + "cast": [ + "Robert Hutton", + "Susan Hart" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Sodom and Gomorrah", + "year": 1963, + "cast": [ + "Stewart Granger", + "Anouk Aimée", + "Pier Angeli" + ], + "genres": [] + }, + { + "title": "Soldier in the Rain", + "year": 1963, + "cast": [ + "Jackie Gleason", + "Steve McQueen" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Son of Flubber", + "year": 1963, + "cast": [ + "Fred MacMurray", + "Nancy Olson", + "Tommy Kirk" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Spencer's Mountain", + "year": 1963, + "cast": [ + "Henry Fonda", + "Maureen O'Hara" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Stolen Hours", + "year": 1963, + "cast": [ + "Susan Hayward", + "Diane Baker" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Stripper", + "year": 1963, + "cast": [ + "Joanne Woodward", + "Richard Beymer", + "Claire Trevor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Summer Magic", + "year": 1963, + "cast": [ + "Hayley Mills", + "Burl Ives" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sunday in New York", + "year": 1963, + "cast": [ + "Jane Fonda", + "Rod Taylor", + "Cliff Robertson", + "Robert Culp" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "The Sword in the Stone", + "year": 1963, + "cast": [ + "voices of", + "Sebastian Cabot", + "Karl Swenson" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Take Her, She's Mine", + "year": 1963, + "cast": [ + "James Stewart", + "Sandra Dee", + "Audrey Meadows" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Tammy and the Doctor", + "year": 1963, + "cast": [ + "Sandra Dee", + "Peter Fonda" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Tarzan's Three Challenges", + "year": 1963, + "cast": [ + "Jock Mahoney", + "Woody Strode" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Terror", + "year": 1963, + "cast": [ + "Boris Karloff", + "Jack Nicholson" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "They Saved Hitler's Brain", + "year": 1963, + "cast": [ + "Walter Stocker", + "Carlos Rivas" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Three Stooges Go Around the World in a Daze", + "year": 1963, + "cast": [ + "The Three Stooges", + "Joan Freeman" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Thrill of It All", + "year": 1963, + "cast": [ + "Doris Day", + "James Garner" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Thunder Island", + "year": 1963, + "cast": [ + "Gene Nelson", + "Fay Spain" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Ticklish Affair", + "year": 1963, + "cast": [ + "Shirley Jones", + "Gig Young", + "Red Buttons" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "To Beep or Not to Beep", + "year": 1963, + "cast": [ + "Roadrunner" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Toys in the Attic", + "year": 1963, + "cast": [ + "Dean Martin", + "Geraldine Page", + "Yvette Mimieux", + "Wendy Hiller", + "Gene Tierney" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Transylvania 6-5000", + "year": 1963, + "cast": [ + "voices of", + "Mel Blanc", + "Ben Frommer", + "Julie Bennett" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Twice-Told Tales", + "year": 1963, + "cast": [ + "Vincent Price", + "Sebastian Cabot", + "Beverly Garland" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Twilight of Honor", + "year": 1963, + "cast": [ + "Richard Chamberlain", + "Nick Adams", + "Joey Heatherton", + "Joan Blackman", + "Claude Rains" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Ugly American", + "year": 1963, + "cast": [ + "Marlon Brando", + "Sandra Church", + "Eiji Okada", + "Jocelyn Brando", + "Arthur Hill", + "Pat Hingle" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Under the Yum Yum Tree", + "year": 1963, + "cast": [ + "Jack Lemmon", + "Carol Lynley", + "Dean Jones", + "Edie Adams", + "Imogene Coca", + "Paul Lynde" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Violated Paradise", + "year": 1963, + "cast": [ + "Kazuko Mine" + ], + "genres": [] + }, + { + "title": "The V.I.P.s", + "year": 1963, + "cast": [ + "Elizabeth Taylor", + "Richard Burton", + "Rod Taylor", + "Maggie Smith", + "Louis Jourdan", + "Margaret Rutherford", + "Elsa Martinelli", + "Orson Welles" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Victors", + "year": 1963, + "cast": [ + "George Peppard", + "George Hamilton", + "Vince Edwards", + "Romy Schneider", + "Elke Sommer", + "Jeanne Moreau" + ], + "genres": [ + "War" + ] + }, + { + "title": "Wall of Noise", + "year": 1963, + "cast": [ + "Suzanne Pleshette", + "Dorothy Provine" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "What's a Nice Girl Like You Doing in a Place Like This?", + "year": 1963, + "cast": [], + "genres": [ + "Short" + ] + }, + { + "title": "The Wheeler Dealers", + "year": 1963, + "cast": [ + "James Garner", + "Lee Remick", + "Chill Wills", + "Jim Backus", + "Pat Crowley", + "Phil Harris", + "Louis Nye" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Who's Been Sleeping in My Bed?", + "year": 1963, + "cast": [ + "Dean Martin", + "Elizabeth Montgomery", + "Carol Burnett", + "Richard Conte", + "Martin Balsam", + "Jill St. John" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Who's Minding the Store?", + "year": 1963, + "cast": [ + "Jerry Lewis", + "Jill St. John", + "Agnes Moorehead", + "Ray Walston", + "Kathleen Freeman" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Wives and Lovers", + "year": 1963, + "cast": [ + "Janet Leigh", + "Van Johnson" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "X: The Man with the X-ray Eyes", + "year": 1963, + "cast": [ + "Ray Milland", + "Diana Van der Vlis", + "Don Rickles" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Yellow Canary", + "year": 1963, + "cast": [ + "Pat Boone", + "Barbara Eden", + "Steve Forrest" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Young and the Brave", + "year": 1963, + "cast": [ + "Rory Calhoun", + "William Bendix" + ], + "genres": [ + "War" + ] + }, + { + "title": "The Young Swingers", + "year": 1963, + "cast": [ + "Molly Bee", + "Rod Lauren" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "3 Nuts in Search of a Bolt", + "year": 1964, + "cast": [ + "Mamie Van Doren", + "Tommy Noonan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "633 Squadron", + "year": 1964, + "cast": [ + "Cliff Robertson", + "George Chakiris", + "Maria Perschy" + ], + "genres": [ + "War" + ] + }, + { + "title": "7 Faces of Dr. Lao", + "year": 1964, + "cast": [ + "Tony Randall", + "Arthur O'Connell", + "Barbara Eden" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Advance to the Rear", + "year": 1964, + "cast": [ + "Glenn Ford", + "Stella Stevens", + "Melvyn Douglas" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Americanization of Emily", + "year": 1964, + "cast": [ + "Julie Andrews", + "James Garner", + "James Coburn", + "Melvyn Douglas" + ], + "genres": [ + "War", + "Satire" + ] + }, + { + "title": "Back Door to Hell", + "year": 1964, + "cast": [ + "Jimmie Rodgers", + "Jack Nicholson" + ], + "genres": [ + "War" + ] + }, + { + "title": "Batman Dracula", + "year": 1964, + "cast": [], + "genres": [] + }, + { + "title": "Becket", + "year": 1964, + "cast": [ + "Richard Burton", + "Peter O'Toole", + "John Gielgud" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Bedtime Story", + "year": 1964, + "cast": [ + "Marlon Brando", + "David Niven", + "Shirley Jones" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Behold a Pale Horse", + "year": 1964, + "cast": [ + "Gregory Peck", + "Omar Sharif", + "Anthony Quinn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Best Man", + "year": 1964, + "cast": [ + "Henry Fonda", + "Cliff Robertson", + "Lee Tracy", + "Edie Adams", + "Ann Sothern" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Bikini Beach", + "year": 1964, + "cast": [ + "Frankie Avalon", + "Annette Funicello", + "Martha Hyer", + "Don Rickles" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Black Like Me", + "year": 1964, + "cast": [ + "James Whitmore", + "Sorrell Booke", + "Roscoe Lee Browne" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Blood on the Arrow", + "year": 1964, + "cast": [ + "Dale Robertson", + "Martha Hyer" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Brass Bottle", + "year": 1964, + "cast": [ + "Tony Randall", + "Burl Ives", + "Barbara Eden" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Bullet for a Badman", + "year": 1964, + "cast": [ + "Audie Murphy", + "Darren McGavin", + "Ruta Lee" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Carol for Another Christmas", + "year": 1964, + "cast": [ + "Peter Sellers", + "Sterling Hayden", + "Britt Ekland", + "Robert Shaw", + "Ben Gazzara", + "Eva Marie Saint" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Carpetbaggers", + "year": 1964, + "cast": [ + "George Peppard", + "Carroll Baker", + "Alan Ladd", + "Elizabeth Ashley", + "Robert Cummings", + "Martha Hyer", + "Martin Balsam" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Cavern", + "year": 1964, + "cast": [ + "John Saxon", + "Rosanna Schiaffino", + "Brian Aherne", + "Larry Hagman" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "Cheyenne Autumn", + "year": 1964, + "cast": [ + "Richard Widmark", + "Carroll Baker", + "James Stewart", + "Edward G. Robinson", + "Arthur Kennedy", + "Dolores del Río", + "Sal Mineo" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Circus World", + "year": 1964, + "cast": [ + "John Wayne", + "Rita Hayworth", + "Claudia Cardinale" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Comedy of Terrors", + "year": 1964, + "cast": [ + "Vincent Price", + "Peter Lorre", + "Boris Karloff" + ], + "genres": [ + "Horror", + "Comedy" + ] + }, + { + "title": "Crack in the World", + "year": 1964, + "cast": [ + "Dana Andrews", + "Janette Scott", + "Kieron Moore" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Creeping Terror", + "year": 1964, + "cast": [ + "Vic Savage" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Dark Purpose", + "year": 1964, + "cast": [ + "Shirley Jones", + "George Sanders" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dead Ringer", + "year": 1964, + "cast": [ + "Bette Davis", + "Karl Malden", + "Peter Lawford" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Dear Heart", + "year": 1964, + "cast": [ + "Glenn Ford", + "Geraldine Page", + "Angela Lansbury" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Devil Doll", + "year": 1964, + "cast": [ + "Bryant Haliday", + "William Sylvester" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Disorderly Orderly", + "year": 1964, + "cast": [ + "Jerry Lewis", + "Susan Oliver", + "Glenda Farrell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Distant Trumpet", + "year": 1964, + "cast": [ + "Troy Donahue", + "Suzanne Pleshette" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb", + "year": 1964, + "cast": [ + "Peter Sellers", + "George C. Scott", + "Sterling Hayden", + "Keenan Wynn", + "Slim Pickens", + "James Earl Jones" + ], + "genres": [ + "Comedy", + "Satire" + ] + }, + { + "title": "Dumb Patrol", + "year": 1964, + "cast": [ + "Yosemite Sam" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Empire", + "year": 1964, + "cast": [], + "genres": [] + }, + { + "title": "Ensign Pulver", + "year": 1964, + "cast": [ + "Robert Walker, Jr.", + "Burl Ives", + "Walter Matthau", + "Larry Hagman", + "Peter Marshall", + "James Coco", + "Jack Nicholson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Eyes of Annie Jones", + "year": 1964, + "cast": [ + "Richard Conte", + "Francesca Annis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Face of the Screaming Werewolf", + "year": 1964, + "cast": [ + "Lon Chaney, Jr." + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Fail-Safe", + "year": 1964, + "cast": [ + "Henry Fonda", + "Walter Matthau", + "Fritz Weaver", + "Frank Overton", + "Dan O'Herlihy", + "Larry Hagman" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Fall of the Roman Empire", + "year": 1964, + "cast": [ + "Sophia Loren", + "James Mason", + "Stephen Boyd", + "Christopher Plummer", + "Anthony Quayle", + "Mel Ferrer", + "Omar Sharif", + "John Ireland" + ], + "genres": [] + }, + { + "title": "False Hare", + "year": 1964, + "cast": [ + "Bugs Bunny" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Fanny Hill", + "year": 1964, + "cast": [ + "Miriam Hopkins", + "Letícia Román" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Fate Is the Hunter", + "year": 1964, + "cast": [ + "Glenn Ford", + "Rod Taylor", + "Nancy Kwan", + "Suzanne Pleshette", + "Constance Towers", + "Jane Russell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Father Goose", + "year": 1964, + "cast": [ + "Cary Grant", + "Leslie Caron", + "Trevor Howard" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Firelight", + "year": 1964, + "cast": [], + "genres": [ + "Short" + ] + }, + { + "title": "First Men in the Moon", + "year": 1964, + "cast": [ + "Edward Judd", + "Martha Hyer" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Flesh Eaters", + "year": 1964, + "cast": [ + "Martin Kosleck" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Flight from Ashiya", + "year": 1964, + "cast": [ + "Yul Brynner", + "Richard Widmark", + "George Chakiris" + ], + "genres": [ + "War" + ] + }, + { + "title": "Flight to Fury", + "year": 1964, + "cast": [ + "Jack Nicholson", + "Dewey Martin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Flipper's New Adventure", + "year": 1964, + "cast": [ + "Luke Halpin", + "Francesca Annis", + "Pamela Franklin" + ], + "genres": [ + "Family" + ] + }, + { + "title": "For Those Who Think Young", + "year": 1964, + "cast": [ + "Pamela Tiffin", + "James Darren", + "Bob Denver", + "Nancy Sinatra", + "Tina Louise", + "Ellen Burstyn" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Get Yourself a College Girl", + "year": 1964, + "cast": [ + "Mary Ann Mobley", + "Chad Everett", + "Nancy Sinatra" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Global Affair", + "year": 1964, + "cast": [ + "Bob Hope", + "Michele Mercier", + "Yvonne De Carlo" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Golden Head", + "year": 1964, + "cast": [ + "George Sanders", + "Buddy Hackett" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Good Neighbor Sam", + "year": 1964, + "cast": [ + "Jack Lemmon", + "Romy Schneider", + "Edward G. Robinson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Goodbye Charlie", + "year": 1964, + "cast": [ + "Tony Curtis", + "Debbie Reynolds", + "Pat Boone" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hag in a Black Leather Jacket", + "year": 1964, + "cast": [], + "genres": [ + "Short" + ] + }, + { + "title": "Hey There, It's Yogi Bear!", + "year": 1964, + "cast": [ + "Yogi Bear" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Honeymoon Hotel", + "year": 1964, + "cast": [ + "Robert Goulet", + "Robert Morse", + "Nancy Kwan", + "Jill St. John", + "Elsa Lanchester", + "Anne Helm" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Horror of Party Beach", + "year": 1964, + "cast": [], + "genres": [ + "Horror" + ] + }, + { + "title": "A House Is Not a Home", + "year": 1964, + "cast": [ + "Shelley Winters", + "Robert Taylor", + "Cesar Romero", + "Broderick Crawford", + "Kaye Ballard" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hush… Hush, Sweet Charlotte", + "year": 1964, + "cast": [ + "Bette Davis", + "Olivia de Havilland", + "Joseph Cotten", + "Agnes Moorehead", + "Mary Astor", + "George Kennedy" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "I'd Rather Be Rich", + "year": 1964, + "cast": [ + "Sandra Dee", + "Robert Goulet", + "Andy Williams" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Incredible Mr. Limpet", + "year": 1964, + "cast": [ + "Don Knotts", + "Jack Weston", + "Carole Cook" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Incredibly Strange Creatures Who Stopped Living and Became Mixed-Up Zombies", + "year": 1964, + "cast": [ + "Ray Dennis Steckler" + ], + "genres": [ + "Horror", + "Musical" + ] + }, + { + "title": "Invitation to a Gunfighter", + "year": 1964, + "cast": [ + "Yul Brynner", + "Janice Rule", + "George Segal" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Is There a Doctor in the Mouse?", + "year": 1964, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "Island of the Blue Dolphins", + "year": 1964, + "cast": [ + "Celia Kaye" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "It's Not Just You, Murray!", + "year": 1964, + "cast": [], + "genres": [ + "Short" + ] + }, + { + "title": "The Killers", + "year": 1964, + "cast": [ + "Lee Marvin", + "Angie Dickinson", + "John Cassavetes", + "Ronald Reagan" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Kiss Me Quick!", + "year": 1964, + "cast": [ + "Frank Coe" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Kiss Me, Stupid", + "year": 1964, + "cast": [ + "Dean Martin", + "Kim Novak", + "Ray Walston", + "Cliff Osmond", + "Felicia Farr" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Kisses for My President", + "year": 1964, + "cast": [ + "Polly Bergen", + "Fred MacMurray" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Kissin' Cousins", + "year": 1964, + "cast": [ + "Elvis Presley", + "Yvonne Craig" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Kitten with a Whip", + "year": 1964, + "cast": [ + "Ann-Margret", + "John Forsythe" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Last Man on Earth", + "year": 1964, + "cast": [ + "Vincent Price", + "Franca Bettoia", + "Emma Danieli", + "Giacomo Rossi-Stuart" + ], + "genres": [ + "Science Fiction", + "Horror" + ] + }, + { + "title": "Lilith", + "year": 1964, + "cast": [ + "Warren Beatty", + "Jean Seberg", + "Peter Fonda" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Looking for Love", + "year": 1964, + "cast": [ + "Connie Francis", + "Paula Prentiss", + "Johnny Carson" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Lorna", + "year": 1964, + "cast": [ + "Lorna Maitland" + ], + "genres": [] + }, + { + "title": "Mail Order Bride", + "year": 1964, + "cast": [ + "Buddy Ebsen", + "Keir Dullea", + "Lois Nettleton" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Man in the Middle", + "year": 1964, + "cast": [ + "Robert Mitchum", + "France Nuyen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Man's Favorite Sport?", + "year": 1964, + "cast": [ + "Rock Hudson", + "Paula Prentiss", + "Maria Perschy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Marnie", + "year": 1964, + "cast": [ + "Sean Connery", + "Tippi Hedren", + "Diane Baker" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "Mary Poppins", + "year": 1964, + "cast": [ + "Julie Andrews", + "Dick Van Dyke" + ], + "genres": [ + "Musical", + "Fantasy" + ] + }, + { + "title": "The Masque of the Red Death", + "year": 1964, + "cast": [ + "Vincent Price", + "Hazel Court" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "McHale's Navy", + "year": 1964, + "cast": [ + "Ernest Borgnine", + "Tim Conway", + "Joe Flynn" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Misadventures of Merlin Jones", + "year": 1964, + "cast": [ + "Annette Funicello", + "Tommy Kirk" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Monstrosity", + "year": 1964, + "cast": [ + "Marjorie Eaton" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Moon-Spinners", + "year": 1964, + "cast": [ + "Hayley Mills", + "Eli Wallach", + "Pola Negri" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Muscle Beach Party", + "year": 1964, + "cast": [ + "Annette Funicello", + "Frankie Avalon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "My Fair Lady", + "year": 1964, + "cast": [ + "Audrey Hepburn", + "Rex Harrison", + "Wilfrid Hyde-White", + "Stanley Holloway" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Naked Kiss", + "year": 1964, + "cast": [ + "Constance Towers", + "Anthony Eisley" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "The New Interns", + "year": 1964, + "cast": [ + "Michael Callan", + "Dean Jones", + "Telly Savalas", + "Barbara Eden", + "Inger Stevens", + "George Segal" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Night of the Iguana", + "year": 1964, + "cast": [ + "Richard Burton", + "Ava Gardner", + "Deborah Kerr", + "Sue Lyon", + "Grayson Hall" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Nothing But a Man", + "year": 1964, + "cast": [ + "Ivan Dixon", + "Yaphet Kotto" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Of Stars and Men", + "year": 1964, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "One Potato, Two Potato", + "year": 1964, + "cast": [ + "Barbara Barrie", + "Bernie Hamilton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Outrage", + "year": 1964, + "cast": [ + "Paul Newman", + "Laurence Harvey", + "Edward G. Robinson", + "Claire Bloom" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Pajama Party", + "year": 1964, + "cast": [ + "Annette Funicello", + "Tommy Kirk" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Paris, When It Sizzles", + "year": 1964, + "cast": [ + "Audrey Hepburn", + "William Holden" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Patsy", + "year": 1964, + "cast": [ + "Jerry Lewis", + "Ina Balin", + "Everett Sloane", + "Phil Harris" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Pawnbroker", + "year": 1964, + "cast": [ + "Rod Steiger", + "Geraldine Fitzgerald", + "Brock Peters" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Pink Phink", + "year": 1964, + "cast": [ + "Pink Panther" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "The Pleasure Seekers", + "year": 1964, + "cast": [ + "Ann-Margret", + "Pamela Tiffin", + "Carol Lynley" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Point of Order", + "year": 1964, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "Quick, Before It Melts", + "year": 1964, + "cast": [ + "Robert Morse", + "George Maharis", + "Anjanette Comer" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Quick Gun", + "year": 1964, + "cast": [ + "Audie Murphy", + "Merry Anders", + "James Best" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Quick, Let's Get Married", + "year": 1964, + "cast": [ + "Ginger Rogers", + "Ray Milland", + "Barbara Eden" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Rhino!", + "year": 1964, + "cast": [ + "Robert Culp", + "Harry Guardino", + "Shirley Eaton" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Ride the Wild Surf", + "year": 1964, + "cast": [ + "Fabian", + "Shelley Fabares", + "Tab Hunter" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Rio Conchos", + "year": 1964, + "cast": [ + "Stuart Whitman", + "Richard Boone", + "Tony Franciosa", + "Edmond O'Brien", + "Jim Brown" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Robin and the 7 Hoods", + "year": 1964, + "cast": [ + "Frank Sinatra", + "Dean Martin", + "Sammy Davis, Jr.", + "Barbara Rush", + "Peter Falk", + "Bing Crosby" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Robinson Crusoe on Mars", + "year": 1964, + "cast": [ + "Adam West" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Roustabout", + "year": 1964, + "cast": [ + "Elvis Presley", + "Barbara Stanwyck" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Santa Claus Conquers the Martians", + "year": 1964, + "cast": [ + "John Call", + "Pia Zadora" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Scorpio Rising", + "year": 1964, + "cast": [], + "genres": [] + }, + { + "title": "The Secret Invasion", + "year": 1964, + "cast": [ + "Stewart Granger", + "Raf Vallone", + "Mickey Rooney" + ], + "genres": [ + "War" + ] + }, + { + "title": "Send Me No Flowers", + "year": 1964, + "cast": [ + "Rock Hudson", + "Doris Day", + "Tony Randall" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Seven Days in May", + "year": 1964, + "cast": [ + "Kirk Douglas", + "Burt Lancaster", + "Fredric March", + "Ava Gardner", + "Edmond O'Brien", + "Martin Balsam" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sex and the College Girl", + "year": 1964, + "cast": [ + "Charles Grodin", + "Julie Sommars", + "Valora Noland" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Sex and the Single Girl", + "year": 1964, + "cast": [ + "Tony Curtis", + "Natalie Wood", + "Henry Fonda", + "Mel Ferrer", + "Leslie Parrish", + "Lauren Bacall" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Shell Shock", + "year": 1964, + "cast": [ + "Beach Dickerson" + ], + "genres": [ + "War" + ] + }, + { + "title": "Shock Treatment", + "year": 1964, + "cast": [ + "Lauren Bacall", + "Stuart Whitman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Signpost to Murder", + "year": 1964, + "cast": [ + "Joanne Woodward", + "Stuart Whitman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Shot in the Dark", + "year": 1964, + "cast": [ + "Peter Sellers", + "Elke Sommer", + "George Sanders" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Stage to Thunder Rock", + "year": 1964, + "cast": [ + "Barry Sullivan", + "Marilyn Maxwell", + "John Agar" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Starfighters", + "year": 1964, + "cast": [ + "Bob Dorman" + ], + "genres": [ + "War" + ] + }, + { + "title": "Strait-Jacket", + "year": 1964, + "cast": [ + "Joan Crawford", + "Diane Baker", + "George Kennedy" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Strangler", + "year": 1964, + "cast": [ + "Victor Buono" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Surf Party", + "year": 1964, + "cast": [ + "Patricia Morrow", + "Bobby Vinton" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Taggart", + "year": 1964, + "cast": [ + "Tony Young", + "Dan Duryea", + "Dick Foran", + "Elsa Cárdenas", + "Jean Hale" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Teen-Age Strangler", + "year": 1964, + "cast": [], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Thin Red Line", + "year": 1964, + "cast": [ + "Keir Dullea", + "Jack Warden" + ], + "genres": [ + "War" + ] + }, + { + "title": "The Third Secret", + "year": 1964, + "cast": [ + "Stephen Boyd", + "Richard Attenborough" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Three Lives of Thomasina", + "year": 1964, + "cast": [ + "Patrick McGoohan", + "Karen Dotrice" + ], + "genres": [ + "Family" + ] + }, + { + "title": "A Tiger Walks", + "year": 1964, + "cast": [ + "Brian Keith", + "Vera Miles", + "Sabu" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Time Travelers", + "year": 1964, + "cast": [ + "Preston Foster", + "Merry Anders" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Tomb of Ligeia", + "year": 1964, + "cast": [ + "Vincent Price", + "Elizabeth Shepherd" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "To Trap a Spy", + "year": 1964, + "cast": [ + "Robert Vaughn", + "David McCallum" + ], + "genres": [ + "Spy", + "Drama" + ] + }, + { + "title": "Topkapi", + "year": 1964, + "cast": [ + "Melina Mercouri", + "Peter Ustinov", + "Maximilian Schell" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Train", + "year": 1964, + "cast": [ + "Burt Lancaster", + "Paul Scofield", + "Jeanne Moreau" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "Two Thousand Maniacs!", + "year": 1964, + "cast": [ + "Connie Mason" + ], + "genres": [ + "Slasher" + ] + }, + { + "title": "Under Age", + "year": 1964, + "cast": [], + "genres": [ + "Drama" + ] + }, + { + "title": "The Unsinkable Molly Brown", + "year": 1964, + "cast": [ + "Debbie Reynolds", + "Harve Presnell", + "Jack Kruschen", + "Ed Begley", + "Hermione Baddeley" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Visit", + "year": 1964, + "cast": [ + "Ingrid Bergman", + "Anthony Quinn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Viva Las Vegas", + "year": 1964, + "cast": [ + "Elvis Presley", + "Ann-Margret" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "What a Way to Go!", + "year": 1964, + "cast": [ + "Shirley MacLaine", + "Dean Martin", + "Paul Newman", + "Robert Mitchum", + "Robert Cummings", + "Dick Van Dyke", + "Gene Kelly" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Where Love Has Gone", + "year": 1964, + "cast": [ + "Susan Hayward", + "Bette Davis", + "Joey Heatherton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Wild and Wonderful", + "year": 1964, + "cast": [ + "Tony Curtis", + "Christine Kaufmann" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The World of Henry Orient", + "year": 1964, + "cast": [ + "Peter Sellers", + "Paula Prentiss", + "Angela Lansbury", + "Phyllis Thaxter", + "Tom Bosley" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Youngblood Hawke", + "year": 1964, + "cast": [ + "James Franciscus", + "Suzanne Pleshette", + "Eva Gabor", + "Genevieve Page", + "Mary Astor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Young Lovers", + "year": 1964, + "cast": [ + "Peter Fonda", + "Sharon Hugueny" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Your Cheatin' Heart", + "year": 1964, + "cast": [ + "George Hamilton", + "Susan Oliver", + "Red Buttons" + ], + "genres": [ + "Musical", + "Biography" + ] + }, + { + "title": "36 Hours", + "year": 1965, + "cast": [ + "James Garner", + "Rod Taylor", + "Eva Marie Saint" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "The Agony and the Ecstasy", + "year": 1965, + "cast": [ + "Rex Harrison", + "Charlton Heston", + "Diane Cilento" + ], + "genres": [ + "Drama", + "Biography" + ] + }, + { + "title": "The Amorous Adventures of Moll Flanders", + "year": 1965, + "cast": [ + "Kim Novak", + "Richard Johnson", + "Angela Lansbury" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Apache Uprising", + "year": 1965, + "cast": [ + "Rory Calhoun", + "Corinne Calvet", + "John Russell" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Art of Love", + "year": 1965, + "cast": [ + "Dick Van Dyke", + "James Garner", + "Elke Sommer", + "Angie Dickinson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Baby the Rain Must Fall", + "year": 1965, + "cast": [ + "Steve McQueen", + "Lee Remick", + "Don Murray" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Bad Girls Go to Hell", + "year": 1965, + "cast": [ + "Gigi Darlene", + "George La Rocque" + ], + "genres": [] + }, + { + "title": "Battle of the Bulge", + "year": 1965, + "cast": [ + "Henry Fonda", + "Dana Andrews", + "Robert Shaw", + "Robert Ryan", + "Ty Hardin", + "Pier Angeli", + "Telly Savalas", + "Charles Bronson" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "Beach Blanket Bingo", + "year": 1965, + "cast": [ + "Frankie Avalon", + "Annette Funicello", + "Paul Lynde", + "Don Rickles" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "The Bedford Incident", + "year": 1965, + "cast": [ + "Richard Widmark", + "Sidney Poitier", + "Martin Balsam", + "Wally Cox" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Billie", + "year": 1965, + "cast": [ + "Patty Duke", + "Jim Backus", + "Jane Greer" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Black Spurs", + "year": 1965, + "cast": [ + "Rory Calhoun", + "Terry Moore", + "Linda Darnell" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Bloody Pit of Horror", + "year": 1965, + "cast": [ + "Mickey Hargitay", + "Walter Bigari", + "Luisa Baratto" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Boeing Boeing", + "year": 1965, + "cast": [ + "Tony Curtis", + "Jerry Lewis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Bounty Killer", + "year": 1965, + "cast": [ + "Dan Duryea", + "Audrey Dalton" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Brainstorm", + "year": 1965, + "cast": [ + "Anne Francis", + "Dana Andrews", + "Jeffrey Hunter" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "Bus Riley's Back in Town", + "year": 1965, + "cast": [ + "Ann-Margret", + "Michael Parks", + "Kim Darby", + "Janet Margolin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Cat Ballou", + "year": 1965, + "cast": [ + "Jane Fonda", + "Lee Marvin", + "Dwayne Hickman", + "Michael Callan", + "Nat King Cole", + "Stubby Kaye" + ], + "genres": [ + "Western", + "Comedy" + ] + }, + { + "title": "The Cincinnati Kid", + "year": 1965, + "cast": [ + "Steve McQueen", + "Ann-Margret", + "Edward G. Robinson", + "Karl Malden", + "Tuesday Weld", + "Rip Torn", + "Cab Calloway", + "Joan Blondell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "City Under the Sea", + "year": 1965, + "cast": [ + "Vincent Price", + "Tab Hunter", + "Susan Hart" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Clarence, the Cross-Eyed Lion", + "year": 1965, + "cast": [ + "Marshall Thompson", + "Betsy Drake" + ], + "genres": [ + "Family" + ] + }, + { + "title": "The Collector", + "year": 1965, + "cast": [ + "Terence Stamp", + "Samantha Eggar", + "Mona Washbourne" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Color Me Blood Red", + "year": 1965, + "cast": [ + "Candi Conder", + "Gordon Oas-Heim" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Crack in the World", + "year": 1965, + "cast": [ + "Dana Andrews", + "Janette Scott" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dear Brigitte", + "year": 1965, + "cast": [ + "James Stewart", + "Fabian", + "Ed Wynn", + "Bill Mumy", + "Brigitte Bardot" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Die, Monster, Die!", + "year": 1965, + "cast": [ + "Boris Karloff", + "Nick Adams", + "Suzan Farmer" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Dirty Game", + "year": 1965, + "cast": [ + "Henry Fonda", + "Robert Ryan" + ], + "genres": [ + "Spy" + ] + }, + { + "title": "Doctor Zhivago", + "year": 1965, + "cast": [ + "Omar Sharif", + "Julie Christie", + "Rod Steiger", + "Geraldine Chaplin", + "Tom Courtenay", + "Alec Guinness" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dr. Goldfoot and the Bikini Machine", + "year": 1965, + "cast": [ + "Vincent Price", + "Frankie Avalon", + "Dwayne Hickman", + "Susan Hart" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Family Jewels", + "year": 1965, + "cast": [ + "Jerry Lewis", + "Sebastian Cabot", + "Donna Butterworth" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Faster, Pussycat! Kill! Kill!", + "year": 1965, + "cast": [ + "Tura Satana", + "Haji", + "Lori Williams" + ], + "genres": [] + }, + { + "title": "Ferry Cross the Mersey", + "year": 1965, + "cast": [ + "Gerry and the Pacemakers", + "Cilla Black" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Flight of the Phoenix", + "year": 1965, + "cast": [ + "James Stewart", + "Peter Finch", + "Richard Attenborough", + "Hardy Kruger", + "Dan Duryea", + "George Kennedy", + "Ernest Borgnine" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Fluffy", + "year": 1965, + "cast": [ + "Tony Randall", + "Shirley Jones", + "Celia Kaye" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Genghis Khan", + "year": 1965, + "cast": [ + "Omar Sharif", + "James Mason", + "Eli Wallach" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Girl Happy", + "year": 1965, + "cast": [ + "Elvis Presley", + "Shelley Fabares", + "Mary Ann Mobley" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Glory Guys", + "year": 1965, + "cast": [ + "Tom Tryon", + "Harve Presnell", + "Senta Berger", + "James Caan" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Goldstein", + "year": 1965, + "cast": [ + "Lou Gilbert", + "Ellen Madison", + "Tom Erhart" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Great Race", + "year": 1965, + "cast": [ + "Tony Curtis", + "Natalie Wood", + "Jack Lemmon", + "Peter Falk" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Great Sioux Massacre", + "year": 1965, + "cast": [ + "Joseph Cotten", + "Darren McGavin", + "Julie Sommars" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Greatest Story Ever Told", + "year": 1965, + "cast": [ + "Max von Sydow", + "Charlton Heston", + "José Ferrer", + "Claude Rains", + "Angela Lansbury", + "David McCallum", + "Martin Landau", + "Ed Wynn", + "Telly Savalas", + "Sidney Poitier", + "John Wayne" + ], + "genres": [] + }, + { + "title": "Guns of Diablo", + "year": 1965, + "cast": [ + "Charles Bronson", + "Kurt Russell" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Hallelujah Trail", + "year": 1965, + "cast": [ + "Burt Lancaster", + "Lee Remick", + "Jim Hutton", + "Pamela Tiffin" + ], + "genres": [ + "Western", + "Comedy" + ] + }, + { + "title": "Harlow", + "year": 1965, + "cast": [ + "Carroll Baker", + "Raf Vallone", + "Angela Lansbury", + "Peter Lawford" + ], + "genres": [ + "Drama", + "Biography" + ] + }, + { + "title": "Harlow", + "year": 1965, + "cast": [ + "Carol Lynley", + "Efrem Zimbalist, Jr.", + "Ginger Rogers" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Harum Scarum", + "year": 1965, + "cast": [ + "Elvis Presley", + "Mary Ann Mobley", + "Fran Jeffries" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Having a Wild Weekend", + "year": 1965, + "cast": [ + "The Dave Clark Five" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Heroes of Telemark", + "year": 1965, + "cast": [ + "Kirk Douglas", + "Richard Harris", + "Michael Redgrave" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "Help!", + "year": 1965, + "cast": [ + "John Lennon", + "Paul McCartney", + "George Harrison", + "Ringo Starr" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "A High Wind in Jamaica", + "year": 1965, + "cast": [ + "Anthony Quinn", + "Lila Kedrova", + "James Coburn" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Hill", + "year": 1965, + "cast": [ + "Sean Connery", + "Ian Bannen", + "Ossie Davis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "How to Murder Your Wife", + "year": 1965, + "cast": [ + "Jack Lemmon", + "Terry-Thomas", + "Virna Lisi" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "How to Stuff a Wild Bikini", + "year": 1965, + "cast": [ + "Annette Funicello", + "Dwayne Hickman", + "Beverly Adams" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Human Duplicators", + "year": 1965, + "cast": [ + "George Nader", + "Barbara Nichols" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "I Saw What You Did", + "year": 1965, + "cast": [ + "Joan Crawford", + "John Ireland" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "I'll Take Sweden", + "year": 1965, + "cast": [ + "Bob Hope", + "Tuesday Weld", + "Frankie Avalon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "In Harm's Way", + "year": 1965, + "cast": [ + "John Wayne", + "Kirk Douglas", + "Patricia Neal", + "Henry Fonda", + "Brandon deWilde", + "Paula Prentiss", + "Burgess Meredith", + "Carroll O'Connor", + "Tom Tryon", + "Dana Andrews", + "George Kennedy" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "Inside Daisy Clover", + "year": 1965, + "cast": [ + "Natalie Wood", + "Robert Redford", + "Christopher Plummer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "John Goldfarb, Please Come Home", + "year": 1965, + "cast": [ + "Shirley MacLaine", + "Richard Crenna", + "Peter Ustinov" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Joy in the Morning", + "year": 1965, + "cast": [ + "Richard Chamberlain", + "Yvette Mimieux" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "King Rat", + "year": 1965, + "cast": [ + "George Segal", + "Tom Courtenay", + "James Fox" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "Life at the Top", + "year": 1965, + "cast": [ + "Laurence Harvey", + "Jean Simmons", + "Honor Blackman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Love and Kisses", + "year": 1965, + "cast": [ + "Ricky Nelson", + "Jerry Van Dyke", + "Kris Harmon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Love Has Many Faces", + "year": 1965, + "cast": [ + "Lana Turner", + "Cliff Robertson", + "Hugh O'Brian", + "Ruth Roman", + "Stefanie Powers" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Loved One", + "year": 1965, + "cast": [ + "Robert Morse", + "Jonathan Winters", + "John Gielgud", + "Liberace", + "Milton Berle", + "Tab Hunter", + "Rod Steiger" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Major Dundee", + "year": 1965, + "cast": [ + "Charlton Heston", + "Richard Harris", + "James Coburn" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Man from Button Willow", + "year": 1965, + "cast": [ + "Dale Robertson", + "Howard Keel", + "Barbara Jean Wong" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Mara of the Wilderness", + "year": 1965, + "cast": [ + "Adam West", + "Lori Saunders" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Marriage on the Rocks", + "year": 1965, + "cast": [ + "Frank Sinatra", + "Dean Martin", + "Deborah Kerr" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "McHale's Navy Joins the Air Force", + "year": 1965, + "cast": [ + "Joe Flynn", + "Tim Conway" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mickey One", + "year": 1965, + "cast": [ + "Warren Beatty", + "Franchot Tone" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Mirage", + "year": 1965, + "cast": [ + "Gregory Peck", + "Diane Baker", + "Walter Matthau" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Mister Moses", + "year": 1965, + "cast": [ + "Robert Mitchum", + "Carroll Baker" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Monkey's Uncle", + "year": 1965, + "cast": [ + "Annette Funicello", + "Tommy Kirk", + "Arthur O'Connell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Money Trap", + "year": 1965, + "cast": [ + "Glenn Ford", + "Elke Sommer", + "Rita Hayworth" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Monster A Go-Go", + "year": 1965, + "cast": [ + "June Travis", + "Phil Morton" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Morituri", + "year": 1965, + "cast": [ + "Marlon Brando", + "Yul Brynner", + "Wally Cox", + "Janet Margolin" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Motorpsycho", + "year": 1965, + "cast": [ + "Haji", + "Alex Rocco" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Mudhoney", + "year": 1965, + "cast": [ + "Lorna Maitland", + "Hal Hopper" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Naked Prey", + "year": 1965, + "cast": [ + "Cornel Wilde", + "Ken Gampu" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Never Too Late", + "year": 1965, + "cast": [ + "Paul Ford", + "Maureen O'Sullivan", + "Connie Stevens" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Nightmare in the Sun", + "year": 1965, + "cast": [ + "John Derek", + "Ursula Andress", + "Sammy Davis, Jr." + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "None But The Brave", + "year": 1965, + "cast": [ + "Frank Sinatra", + "Tatsuya Mihashi", + "Clint Walker", + "Tommy Sands", + "Brad Dexter", + "Tony Bill" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "Once a Thief", + "year": 1965, + "cast": [ + "Alain Delon", + "Ann-Margret", + "Van Heflin", + "Jack Palance" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Operation C.I.A.", + "year": 1965, + "cast": [ + "Burt Reynolds", + "Danielle Aubrey", + "John Hoyt" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Operation Crossbow", + "year": 1965, + "cast": [ + "Sophia Loren", + "George Peppard", + "Trevor Howard" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "A Patch of Blue", + "year": 1965, + "cast": [ + "Sidney Poitier", + "Elizabeth Hartman", + "Shelley Winters" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Promise Her Anything", + "year": 1965, + "cast": [ + "Warren Beatty", + "Leslie Caron" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Rage to Live", + "year": 1965, + "cast": [ + "Suzanne Pleshette", + "Bradford Dillman", + "Ben Gazzara" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Red Line 7000", + "year": 1965, + "cast": [ + "James Caan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Requiem for a Gunfighter", + "year": 1965, + "cast": [ + "Rod Cameron", + "Stephen McNally", + "Mike Mazurki" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Ride in the Whirlwind", + "year": 1965, + "cast": [ + "Jack Nicholson", + "Millie Perkins", + "Harry Dean Stanton" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Rounders", + "year": 1965, + "cast": [ + "Henry Fonda", + "Glenn Ford", + "Chill Wills", + "Sue Ane Langdon" + ], + "genres": [ + "Western", + "Comedy" + ] + }, + { + "title": "The Sandpiper", + "year": 1965, + "cast": [ + "Elizabeth Taylor", + "Richard Burton", + "Eva Marie Saint", + "Robert Webber", + "Charles Bronson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sands of the Kalahari", + "year": 1965, + "cast": [ + "Stuart Whitman", + "Stanley Baker" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Satan Bug", + "year": 1965, + "cast": [ + "George Maharis", + "Anne Francis" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Secret of My Success", + "year": 1965, + "cast": [ + "Shirley Jones", + "Stella Stevens", + "Honor Blackman", + "James Booth", + "Lionel Jeffries" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Sergeant Deadhead", + "year": 1965, + "cast": [ + "Frankie Avalon", + "Deborah Walley", + "Cesar Romero" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Shenandoah", + "year": 1965, + "cast": [ + "James Stewart", + "Doug McClure", + "Katharine Ross", + "Glenn Corbett", + "Rosemary Forsyth" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "Ship of Fools", + "year": 1965, + "cast": [ + "Vivien Leigh", + "Simone Signoret", + "Lee Marvin", + "José Ferrer", + "Oskar Werner", + "Elizabeth Ashley", + "George Segal" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Situation Hopeless... But Not Serious", + "year": 1965, + "cast": [ + "Alec Guinness", + "Mike Connors", + "Robert Redford" + ], + "genres": [ + "War", + "Comedy" + ] + }, + { + "title": "Ski Party", + "year": 1965, + "cast": [ + "Frankie Avalon", + "Dwayne Hickman", + "Yvonne Craig" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "The Slender Thread", + "year": 1965, + "cast": [ + "Sidney Poitier", + "Anne Bancroft", + "Telly Savalas" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Sons of Katie Elder", + "year": 1965, + "cast": [ + "John Wayne", + "Dean Martin", + "Earl Holliman", + "George Kennedy", + "James Gregory", + "Martha Hyer" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Sound of Music", + "year": 1965, + "cast": [ + "Julie Andrews", + "Christopher Plummer", + "Peggy Wood", + "Eleanor Parker", + "Richard Haydn" + ], + "genres": [ + "Musical", + "Family" + ] + }, + { + "title": "The Spy Who Came in from the Cold", + "year": 1965, + "cast": [ + "Richard Burton", + "Claire Bloom", + "Oskar Werner", + "Sam Wanamaker", + "Cyril Cusack" + ], + "genres": [ + "Spy", + "Drama" + ] + }, + { + "title": "Strange Bedfellows", + "year": 1965, + "cast": [ + "Rock Hudson", + "Gina Lollobrigida", + "Gig Young" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Swingin' Summer", + "year": 1965, + "cast": [ + "Raquel Welch", + "James Stacy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Sylvia", + "year": 1965, + "cast": [ + "Carroll Baker", + "George Maharis", + "Peter Lawford" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Synanon", + "year": 1965, + "cast": [ + "Edmond O'Brien", + "Chuck Connors", + "Stella Stevens" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "That Darn Cat!", + "year": 1965, + "cast": [ + "Hayley Mills", + "Dean Jones", + "Dorothy Provine" + ], + "genres": [ + "Family", + "Comedy" + ] + }, + { + "title": "That Funny Feeling", + "year": 1965, + "cast": [ + "Sandra Dee", + "Bobby Darin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Third Day", + "year": 1965, + "cast": [ + "George Peppard", + "Elizabeth Ashley", + "Roddy McDowall" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Those Calloways", + "year": 1965, + "cast": [ + "Brian Keith", + "Vera Miles", + "Brandon De Wilde" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Thousand Clowns", + "year": 1965, + "cast": [ + "Jason Robards", + "Martin Balsam", + "Barbara Harris", + "William Daniels", + "Barry Gordon", + "Gene Saks" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Tickle Me", + "year": 1965, + "cast": [ + "Elvis Presley", + "Julie Adams", + "Jocelyn Lane" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Truth About Spring", + "year": 1965, + "cast": [ + "Hayley Mills", + "John Mills" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Two on a Guillotine", + "year": 1965, + "cast": [ + "Connie Stevens", + "Cesar Romero", + "Dean Jones" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Up from the Beach", + "year": 1965, + "cast": [ + "Cliff Robertson", + "Red Buttons", + "Irina Demick" + ], + "genres": [ + "War" + ] + }, + { + "title": "A Very Special Favor", + "year": 1965, + "cast": [ + "Rock Hudson", + "Leslie Caron", + "Charles Boyer" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Von Ryan's Express", + "year": 1965, + "cast": [ + "Frank Sinatra", + "Trevor Howard" + ], + "genres": [ + "War" + ] + }, + { + "title": "The War Lord", + "year": 1965, + "cast": [ + "Charlton Heston", + "Richard Boone", + "Rosemary Forsyth" + ], + "genres": [ + "Historical" + ] + }, + { + "title": "What's New Pussycat?", + "year": 1965, + "cast": [ + "Peter Sellers", + "Peter O'Toole", + "Paula Prentiss", + "Romy Schneider", + "Woody Allen", + "Capucine" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Wild on the Beach", + "year": 1965, + "cast": [ + "Frankie Randall", + "Sherry Jackson", + "Cher", + "Sonny Bono" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Wild Seed", + "year": 1965, + "cast": [ + "Michael Parks", + "Celia Kaye" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Willy McBean and his Magic Machine", + "year": 1965, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "The World of Abbott and Costello", + "year": 1965, + "cast": [ + "Bud Abbott", + "Lou Costello" + ], + "genres": [] + }, + { + "title": "Young Fury", + "year": 1965, + "cast": [ + "Rory Calhoun", + "Virginia Mayo" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Zebra in the Kitchen", + "year": 1965, + "cast": [ + "Jay North", + "Martin Milner" + ], + "genres": [ + "Family" + ] + }, + { + "title": "10:30 P.M. Summer", + "year": 1966, + "cast": [ + "Melina Mercouri", + "Romy Schneider", + "Peter Finch" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "7 Women", + "year": 1966, + "cast": [ + "Anne Bancroft", + "Sue Lyon", + "Margaret Leighton", + "Betty Field", + "Flora Robson", + "Mildred Dunnock", + "Eddie Albert" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Agent for H.A.R.M.", + "year": 1966, + "cast": [ + "Peter Mark Richman", + "Barbara Bouchet", + "Wendell Corey" + ], + "genres": [ + "Spy" + ] + }, + { + "title": "Alvarez Kelly", + "year": 1966, + "cast": [ + "William Holden", + "Richard Widmark", + "Janice Rule" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Ambush Bay", + "year": 1966, + "cast": [ + "Hugh O'Brian", + "Mickey Rooney" + ], + "genres": [ + "War" + ] + }, + { + "title": "Any Wednesday", + "year": 1966, + "cast": [ + "Jane Fonda", + "Jason Robards" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Appaloosa", + "year": 1966, + "cast": [ + "Marlon Brando", + "John Saxon", + "Anjanette Comer" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Arabesque", + "year": 1966, + "cast": [ + "Gregory Peck", + "Sophia Loren" + ], + "genres": [ + "Spy" + ] + }, + { + "title": "Around the World Under the Sea", + "year": 1966, + "cast": [ + "Lloyd Bridges", + "Keenan Wynn", + "Gary Merrill", + "Shirley Eaton", + "David McCallum" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Assault on a Queen", + "year": 1966, + "cast": [ + "Frank Sinatra", + "Virna Lisi", + "Tony Franciosa", + "Richard Conte" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Batman", + "year": 1966, + "cast": [ + "Adam West", + "Burt Ward", + "Lee Meriwether", + "Cesar Romero", + "Burgess Meredith", + "Frank Gorshin" + ], + "genres": [ + "Comedy", + "Action" + ] + }, + { + "title": "The Bible: In the Beginning", + "year": 1966, + "cast": [ + "George C. Scott", + "Ava Gardner", + "Peter O'Toole", + "John Huston", + "Richard Harris", + "Stephen Boyd", + "Franco Nero" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Big Hand for the Little Lady", + "year": 1966, + "cast": [ + "Henry Fonda", + "Joanne Woodward", + "Jason Robards", + "Kevin McCarthy", + "Burgess Meredith", + "Paul Ford" + ], + "genres": [ + "Western", + "Comedy" + ] + }, + { + "title": "Billy the Kid vs. Dracula", + "year": 1966, + "cast": [ + "John Carradine", + "Chuck Courtney" + ], + "genres": [ + "Western", + "Horror" + ] + }, + { + "title": "Birds Do It", + "year": 1966, + "cast": [ + "Soupy Sales", + "Tab Hunter", + "Doris Dowling" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Blindfold", + "year": 1966, + "cast": [ + "Rock Hudson", + "Claudia Cardinale", + "Jack Warden" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "Blood Bath", + "year": 1966, + "cast": [ + "Lori Saunders", + "Karl Schanzer", + "Sid Haig" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Boy, Did I Get a Wrong Number!", + "year": 1966, + "cast": [ + "Bob Hope", + "Elke Sommer", + "Phyllis Diller" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Cast a Giant Shadow", + "year": 1966, + "cast": [ + "Kirk Douglas", + "Senta Berger", + "Yul Brynner", + "Frank Sinatra", + "Angie Dickinson", + "John Wayne" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Castle of Evil", + "year": 1966, + "cast": [ + "Virginia Mayo", + "Scott Brady", + "Lisa Gaye" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Chamber of Horrors", + "year": 1966, + "cast": [ + "Patrick O'Neal", + "Wilfrid Hyde-White" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Chappaqua", + "year": 1966, + "cast": [ + "Jean-Louis Barrault", + "William S. Burroughs" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Chase", + "year": 1966, + "cast": [ + "Marlon Brando", + "Jane Fonda", + "Robert Redford", + "Angie Dickinson", + "E.G. Marshall", + "Janice Rule", + "James Fox", + "Robert Duvall" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Chelsea Girls", + "year": 1966, + "cast": [ + "Nico", + "Gerard Melanga", + "Ondine" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Curse of the Swamp Creature", + "year": 1966, + "cast": [ + "John Agar", + "Francine York" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Cyborg 2087", + "year": 1966, + "cast": [ + "Michael Rennie", + "Karen Steele" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Daydreamer", + "year": 1966, + "cast": [ + "Paul O'Keefe", + "Ray Bolger" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Dead Heat on a Merry-Go-Round", + "year": 1966, + "cast": [ + "James Coburn", + "Aldo Ray", + "Rose Marie" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Destination Inner Space", + "year": 1966, + "cast": [ + "Scott Brady", + "Gary Merrill", + "Sheree North" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Dimension 5", + "year": 1966, + "cast": [ + "Jeffrey Hunter", + "France Nuyen" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Drop Dead Darling", + "year": 1966, + "cast": [ + "Tony Curtis", + "Zsa Zsa Gabor" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Duel at Diablo", + "year": 1966, + "cast": [ + "Sidney Poitier", + "James Garner" + ], + "genres": [ + "Western" + ] + }, + { + "title": "El Dorado", + "year": 1966, + "cast": [ + "John Wayne", + "Robert Mitchum", + "James Caan", + "Charlene Holt", + "Ed Asner", + "Michele Carey", + "Christopher George", + "Arthur Hunnicutt" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Endless Summer", + "year": 1966, + "cast": [ + "Robert August", + "Mike Hynson" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Fantastic Voyage", + "year": 1966, + "cast": [ + "Raquel Welch", + "Stephen Boyd", + "Edmond O'Brien", + "Arthur Kennedy" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Fat Spy", + "year": 1966, + "cast": [ + "Phyllis Diller", + "Jack E. Leonard", + "Brian Donlevy", + "Jayne Mansfield" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Fine Madness", + "year": 1966, + "cast": [ + "Sean Connery", + "Joanne Woodward", + "Jean Seberg" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Fireball 500", + "year": 1966, + "cast": [ + "Frankie Avalon", + "Annette Funicello", + "Fabian" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Follow Me, Boys!", + "year": 1966, + "cast": [ + "Fred MacMurray", + "Vera Miles", + "Lillian Gish", + "Kurt Russell" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Fortune Cookie", + "year": 1966, + "cast": [ + "Walter Matthau", + "Jack Lemmon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Frankie and Johnny", + "year": 1966, + "cast": [ + "Elvis Presley", + "Donna Douglas", + "Nancy Kovack", + "Sue Ane Langdon" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "A Funny Thing Happened on the Way to the Forum", + "year": 1966, + "cast": [ + "Zero Mostel", + "Phil Silvers", + "Michael Crawford", + "Jack Gilford", + "Michael Hordern", + "Roy Kinnear", + "Buster Keaton" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Gambit", + "year": 1966, + "cast": [ + "Michael Caine", + "Shirley MacLaine" + ], + "genres": [ + "Crime", + "Comedy" + ] + }, + { + "title": "The Ghost and Mr. Chicken", + "year": 1966, + "cast": [ + "Don Knotts", + "Dick Sargent" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Ghost in the Invisible Bikini", + "year": 1966, + "cast": [ + "Tommy Kirk", + "Nancy Sinatra" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Glass Bottom Boat", + "year": 1966, + "cast": [ + "Doris Day", + "Rod Taylor", + "Paul Lynde" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Grand Prix", + "year": 1966, + "cast": [ + "James Garner", + "Toshirō Mifune", + "Yves Montand", + "Eva Marie Saint", + "Brian Bedford", + "Jessica Walter" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Group", + "year": 1966, + "cast": [ + "Candice Bergen", + "Joanna Pettet", + "Shirley Knight", + "Joan Hackett", + "Elizabeth Hartman", + "Jessica Walter" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Gunpoint", + "year": 1966, + "cast": [ + "Audie Murphy", + "Joan Staley", + "Warren Stevens" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Hallucination Generation", + "year": 1966, + "cast": [ + "George Montgomery", + "Marianne Kanter" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Harper", + "year": 1966, + "cast": [ + "Paul Newman", + "Robert Wagner", + "Lauren Bacall", + "Janet Leigh", + "Julie Harris", + "Pamela Tiffin", + "Arthur Hill", + "Shelley Winters" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Hawaii", + "year": 1966, + "cast": [ + "Julie Andrews", + "Max von Sydow", + "Richard Harris", + "Gene Hackman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hold Me While I'm Naked", + "year": 1966, + "cast": [ + "Donna Kerness", + "Stella Kuchar" + ], + "genres": [ + "Short" + ] + }, + { + "title": "Hold On!", + "year": 1966, + "cast": [ + "Peter Noone", + "Shelley Fabares" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "How to Steal a Million", + "year": 1966, + "cast": [ + "Audrey Hepburn", + "Peter O'Toole" + ], + "genres": [ + "Crime", + "Comedy" + ] + }, + { + "title": "The Idol", + "year": 1966, + "cast": [ + "Jennifer Jones", + "Michael Parks" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Is Paris Burning?", + "year": 1966, + "cast": [ + "Kirk Douglas", + "Charles Boyer", + "Leslie Caron", + "Glenn Ford", + "Yves Montand", + "Alain Delon", + "Jean-Paul Belmondo", + "Simone Signoret", + "Robert Stack", + "Orson Welles" + ], + "genres": [ + "Drama", + "War" + ] + }, + { + "title": "Jesse James Meets Frankenstein's Daughter", + "year": 1966, + "cast": [ + "John Lupton", + "Narda Onyx" + ], + "genres": [ + "Western", + "Horror" + ] + }, + { + "title": "Johnny Reno", + "year": 1966, + "cast": [ + "Dana Andrews", + "Jane Russell" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Judith", + "year": 1966, + "cast": [ + "Sophia Loren", + "Peter Finch" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Khartoum", + "year": 1966, + "cast": [ + "Charlton Heston", + "Laurence Olivier" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Kiss the Girls and Make Them Die", + "year": 1966, + "cast": [ + "Mike Connors", + "Dorothy Provine" + ], + "genres": [ + "Spy" + ] + }, + { + "title": "The Last of the Secret Agents?", + "year": 1966, + "cast": [ + "Marty Allen", + "Steve Rossi", + "Nancy Sinatra" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Let's Kill Uncle", + "year": 1966, + "cast": [ + "Nigel Green", + "Mary Badham" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Lord Love a Duck", + "year": 1966, + "cast": [ + "Roddy McDowall", + "Tuesday Weld", + "Lola Albright" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Lost Command", + "year": 1966, + "cast": [ + "Anthony Quinn", + "Claudia Cardinale", + "Alain Delon" + ], + "genres": [ + "War" + ] + }, + { + "title": "Lt. Robin Crusoe, U.S.N.", + "year": 1966, + "cast": [ + "Dick Van Dyke", + "Nancy Kwan", + "Akim Tamiroff" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Madame X", + "year": 1966, + "cast": [ + "Lana Turner", + "John Forsythe", + "Ricardo Montalbán" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Made in Paris", + "year": 1966, + "cast": [ + "Louis Jourdan", + "Ann-Margret", + "Richard Crenna" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Man Called Flintstone", + "year": 1966, + "cast": [ + "Alan Reed", + "Mel Blanc", + "(voices)" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "A Man Could Get Killed", + "year": 1966, + "cast": [ + "James Garner", + "Sandra Dee" + ], + "genres": [ + "Spy" + ] + }, + { + "title": "Manos: The Hands of Fate", + "year": 1966, + "cast": [ + "John Reynolds", + "Harold P. Warren" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Maya", + "year": 1966, + "cast": [ + "Clint Walker", + "Jay North" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Mister Buddwing", + "year": 1966, + "cast": [ + "James Garner", + "Suzanne Pleshette", + "Angela Lansbury" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Moment to Moment", + "year": 1966, + "cast": [ + "Jean Seberg", + "Honor Blackman", + "Sean Garrison" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Munster, Go Home!", + "year": 1966, + "cast": [ + "Fred Gwynne", + "Yvonne De Carlo", + "Al Lewis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Murderers' Row", + "year": 1966, + "cast": [ + "Dean Martin", + "Ann-Margret", + "Karl Malden", + "Camilla Sparv", + "Beverly Adams", + "James Gregory" + ], + "genres": [ + "Spy", + "Comedy" + ] + }, + { + "title": "Nashville Rebel", + "year": 1966, + "cast": [ + "Waylon Jennings", + "Loretta Lynn" + ], + "genres": [ + "Drama", + "Musical" + ] + }, + { + "title": "The Navy vs. the Night Monsters", + "year": 1966, + "cast": [ + "Mamie van Doren", + "Anthony Eisley" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Nevada Smith", + "year": 1966, + "cast": [ + "Steve McQueen", + "Karl Malden", + "Brian Keith", + "Martin Landau", + "Arthur Kennedy", + "Janet Margolin", + "Suzanne Pleshette" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Night of the Grizzly", + "year": 1966, + "cast": [ + "Clint Walker", + "Martha Hyer" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Not with My Wife, You Don't!", + "year": 1966, + "cast": [ + "Tony Curtis", + "Virna Lisi", + "George C. Scott" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Once Before I Die", + "year": 1966, + "cast": [ + "Ursula Andress", + "John Derek" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Oscar", + "year": 1966, + "cast": [ + "Stephen Boyd", + "Elke Sommer", + "Jill St. John", + "Tony Bennett", + "Ernest Borgnine", + "Milton Berle", + "Edie Adams" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Our Man Flint", + "year": 1966, + "cast": [ + "James Coburn", + "Lee J. Cobb", + "Gila Golan" + ], + "genres": [ + "Spy", + "Comedy" + ] + }, + { + "title": "Our Man in Marrakesh", + "year": 1966, + "cast": [ + "Tony Randall", + "Herbert Lom", + "Klaus Kinski" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Pad and How to Use It", + "year": 1966, + "cast": [ + "Julie Sommars", + "James Farentino", + "Brian Bedford" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Paradise, Hawaiian Style", + "year": 1966, + "cast": [ + "Elvis Presley", + "James Shigeta", + "Irene Tsu" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Penelope", + "year": 1966, + "cast": [ + "Natalie Wood", + "Ian Bannen", + "Carl Ballantine" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Picture Mommy Dead", + "year": 1966, + "cast": [ + "Don Ameche", + "Martha Hyer", + "Zsa Zsa Gabor" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Plainsman", + "year": 1966, + "cast": [ + "Don Murray", + "Guy Stockwell", + "Abby Dalton" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Poppy Is Also a Flower", + "year": 1966, + "cast": [ + "Senta Berger", + "Stephen Boyd", + "Yul Brynner" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Professionals", + "year": 1966, + "cast": [ + "Burt Lancaster", + "Lee Marvin", + "Robert Ryan", + "Woody Strode", + "Jack Palance", + "Claudia Cardinale", + "Ralph Bellamy" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Queen of Blood", + "year": 1966, + "cast": [ + "John Saxon", + "Dennis Hopper" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Rage", + "year": 1966, + "cast": [ + "Glenn Ford", + "Stella Stevens", + "David Reynoso" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Rare Breed", + "year": 1966, + "cast": [ + "James Stewart", + "Maureen O'Hara", + "Jack Elam" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Red Tomahawk", + "year": 1966, + "cast": [ + "Joan Caulfield", + "Howard Keel", + "Broderick Crawford" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Red Zone Cuba", + "year": 1966, + "cast": [ + "John Carradine", + "Anthony Cardoza" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Return of the Seven", + "year": 1966, + "cast": [ + "Yul Brynner", + "Warren Oates", + "Elisa Montes", + "Robert Fuller", + "Claude Akins" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Ride Beyond Vengeance", + "year": 1966, + "cast": [ + "Chuck Connors", + "Kathryn Hays", + "Bill Bixby" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Roman Candles", + "year": 1966, + "cast": [ + "Divine", + "Maelcum Soul" + ], + "genres": [ + "Short" + ] + }, + { + "title": "Rush to Judgment", + "year": 1966, + "cast": [ + "Archive footage of", + "Lee Harvey Oswald", + "Jack Ruby", + "Earl Warren" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Russians Are Coming, the Russians Are Coming", + "year": 1966, + "cast": [ + "Alan Arkin", + "Eva Marie Saint", + "Jonathan Winters", + "Carl Reiner", + "John Phillip Law", + "Brian Keith", + "Paul Ford" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Sand Pebbles", + "year": 1966, + "cast": [ + "Steve McQueen", + "Richard Crenna", + "Candice Bergen", + "Mako", + "Richard Attenborough", + "Simon Oakland" + ], + "genres": [ + "Drama", + "War" + ] + }, + { + "title": "Seconds", + "year": 1966, + "cast": [ + "Rock Hudson", + "Murray Hamilton", + "John Randolph", + "Salome Jens", + "Jeff Corey" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Shooting", + "year": 1966, + "cast": [ + "Warren Oates", + "Millie Perkins", + "Will Hutchins" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Silencers", + "year": 1966, + "cast": [ + "Dean Martin", + "Stella Stevens", + "Daliah Lavi", + "Victor Buono", + "Nancy Kovack", + "Cyd Charisse" + ], + "genres": [ + "Spy", + "Comedy" + ] + }, + { + "title": "The Singing Nun", + "year": 1966, + "cast": [ + "Debbie Reynolds", + "Ricardo Montalbán", + "Greer Garson" + ], + "genres": [ + "Musical", + "Biography" + ] + }, + { + "title": "Spinout", + "year": 1966, + "cast": [ + "Elvis Presley", + "Shelley Fabares" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Stagecoach", + "year": 1966, + "cast": [ + "Ann-Margret", + "Red Buttons", + "Alex Cord", + "Bing Crosby", + "Bob Cummings", + "Slim Pickens", + "Stefanie Powers" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Swinger", + "year": 1966, + "cast": [ + "Ann-Margret", + "Anthony Franciosa", + "Robert Coote" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Tarzan and the Valley of Gold", + "year": 1966, + "cast": [ + "Mike Henry", + "David Opatoshu", + "Nancy Kovack" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Texas Across the River", + "year": 1966, + "cast": [ + "Dean Martin", + "Alain Delon", + "Joey Bishop" + ], + "genres": [ + "Western", + "Comedy" + ] + }, + { + "title": "This Property Is Condemned", + "year": 1966, + "cast": [ + "Robert Redford", + "Natalie Wood", + "Charles Bronson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Three on a Couch", + "year": 1966, + "cast": [ + "Jerry Lewis", + "Janet Leigh", + "Mary Ann Mobley" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Three Sisters", + "year": 1966, + "cast": [ + "Sandy Dennis", + "Geraldine Page", + "Kim Stanley" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Torn Curtain", + "year": 1966, + "cast": [ + "Paul Newman", + "Julie Andrews", + "Lila Kedrova" + ], + "genres": [ + "Spy", + "Mystery" + ] + }, + { + "title": "The Trouble with Angels", + "year": 1966, + "cast": [ + "Rosalind Russell", + "Hayley Mills", + "June Harding" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Trunk to Cairo", + "year": 1966, + "cast": [ + "Audie Murphy", + "George Sanders" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Undertaker and His Pals", + "year": 1966, + "cast": [ + "Ray Dannis", + "Warrene Ott", + "Rad Fulton" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Ugly Dachshund", + "year": 1966, + "cast": [ + "Suzanne Pleshette", + "Dean Jones" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Unkissed Bride", + "year": 1966, + "cast": [ + "Tommy Kirk", + "Anne Helm" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Waco", + "year": 1966, + "cast": [ + "Jane Russell", + "Howard Keel", + "Wendell Corey" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Walk Don't Run", + "year": 1966, + "cast": [ + "Cary Grant", + "Samantha Eggar", + "Jim Hutton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Way...Way Out", + "year": 1966, + "cast": [ + "Jerry Lewis", + "Connie Stevens", + "Anita Ekberg", + "Robert Morley", + "Dennis Weaver", + "Dick Shawn" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "What Did You Do in the War, Daddy?", + "year": 1966, + "cast": [ + "Dick Shawn", + "James Coburn", + "Carroll O'Connor" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "What's Up, Tiger Lily?", + "year": 1966, + "cast": [ + "Woody Allen", + "Louise Lasser", + "Tatsuya Mihashi" + ], + "genres": [ + "Comedy", + "Satire" + ] + }, + { + "title": "Who's Afraid of Virginia Woolf?", + "year": 1966, + "cast": [ + "Elizabeth Taylor", + "Richard Burton", + "Sandy Dennis", + "George Segal" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Wild Angels", + "year": 1966, + "cast": [ + "Peter Fonda", + "Nancy Sinatra" + ], + "genres": [] + }, + { + "title": "Winnie the Pooh and the Honey Tree", + "year": 1966, + "cast": [ + "Sterling Holloway", + "Junius Matthews" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Women of the Prehistoric Planet", + "year": 1966, + "cast": [ + "Wendell Corey", + "Merry Anders", + "Irene Tsu" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "40 Guns to Apache Pass", + "year": 1967, + "cast": [ + "Audie Murphy", + "Kenneth Tobey", + "Laraine Stephens" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Ambushers", + "year": 1967, + "cast": [ + "Dean Martin", + "Janice Rule" + ], + "genres": [ + "Spy", + "Comedy" + ] + }, + { + "title": "The Ballad of Josie", + "year": 1967, + "cast": [ + "Doris Day", + "Peter Graves", + "George Kennedy" + ], + "genres": [ + "Western", + "Comedy" + ] + }, + { + "title": "Banning", + "year": 1967, + "cast": [ + "Robert Wagner", + "Anjanette Comer", + "Jill St. John" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Barefoot in the Park", + "year": 1967, + "cast": [ + "Robert Redford", + "Jane Fonda", + "Mildred Natwick", + "Charles Boyer" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Beach Red", + "year": 1967, + "cast": [ + "Cornel Wilde", + "Rip Torn", + "Jaime Sánchez" + ], + "genres": [ + "War" + ] + }, + { + "title": "The Big Mouth", + "year": 1967, + "cast": [ + "Jerry Lewis", + "Harold J. Stone", + "Buddy Lester" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Billion Dollar Brain", + "year": 1967, + "cast": [ + "Michael Caine", + "Karl Malden" + ], + "genres": [ + "Spy" + ] + }, + { + "title": "Blast-Off Girls", + "year": 1967, + "cast": [ + "Ray Sager" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Bonnie and Clyde", + "year": 1967, + "cast": [ + "Warren Beatty", + "Faye Dunaway", + "Gene Hackman", + "Estelle Parsons", + "Michael J. Pollard" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Born Losers", + "year": 1967, + "cast": [ + "Tom Laughlin", + "Jane Russell", + "Anne Bellamy" + ], + "genres": [ + "Drama", + "Action" + ] + }, + { + "title": "The Busy Body", + "year": 1967, + "cast": [ + "Sid Caesar", + "Robert Ryan", + "Arlene Golonka", + "Richard Pryor" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Camelot", + "year": 1967, + "cast": [ + "Richard Harris", + "Vanessa Redgrave", + "Franco Nero", + "David Hemmings" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Cape Town Affair", + "year": 1967, + "cast": [ + "Jacqueline Bisset", + "James Brolin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Caper of the Golden Bulls", + "year": 1967, + "cast": [ + "Yvette Mimieux", + "Stephen Boyd" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Caprice", + "year": 1967, + "cast": [ + "Doris Day", + "Richard Harris", + "Irene Tsu" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Casino Royale", + "year": 1967, + "cast": [ + "David Niven", + "Peter Sellers", + "Woody Allen", + "Ursula Andress", + "Deborah Kerr", + "Daliah Lavi", + "Orson Welles" + ], + "genres": [ + "Spy", + "Comedy" + ] + }, + { + "title": "Catalina Caper", + "year": 1967, + "cast": [ + "Tommy Kirk", + "Robert Donner", + "Lyle Waggoner" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Christmas Kid", + "year": 1967, + "cast": [ + "Jeffrey Hunter" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Chuka", + "year": 1967, + "cast": [ + "Rod Taylor", + "Ernest Borgnine", + "John Mills" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Clambake", + "year": 1967, + "cast": [ + "Elvis Presley", + "Shelley Fabares" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "C'mon, Let's Live a Little", + "year": 1967, + "cast": [ + "Bobby Vee", + "Jackie DeShannon" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Come Spy with Me", + "year": 1967, + "cast": [ + "Troy Donahue", + "Andrea Dromm", + "Albert Dekker" + ], + "genres": [ + "Spy" + ] + }, + { + "title": "The Comedians", + "year": 1967, + "cast": [ + "Elizabeth Taylor", + "Richard Burton", + "Peter Ustinov" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Common Law Cabin", + "year": 1967, + "cast": [ + "Alaina Capri", + "Adele Rein" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Cool Hand Luke", + "year": 1967, + "cast": [ + "Paul Newman", + "George Kennedy", + "Strother Martin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Covenant with Death", + "year": 1967, + "cast": [ + "George Maharis", + "Laura Devon", + "Earl Holliman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Custer of the West", + "year": 1967, + "cast": [ + "Robert Shaw", + "Jeffrey Hunter", + "Mary Ure", + "Ty Hardin" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Devil's Angels", + "year": 1967, + "cast": [ + "John Cassavetes", + "Beverly Adams" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Dirty Dozen", + "year": 1967, + "cast": [ + "Lee Marvin", + "Charles Bronson", + "Telly Savalas", + "John Cassavetes", + "Jim Brown", + "Ernest Borgnine", + "Robert Ryan", + "Donald Sutherland", + "Clint Walker", + "Trini Lopez" + ], + "genres": [ + "War" + ] + }, + { + "title": "Divorce American Style", + "year": 1967, + "cast": [ + "Dick Van Dyke", + "Debbie Reynolds", + "Jason Robards", + "Jean Simmons" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Doctor Dolittle", + "year": 1967, + "cast": [ + "Rex Harrison", + "Samantha Eggar", + "Anthony Newley" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Doctor Faustus", + "year": 1967, + "cast": [ + "Richard Burton", + "Elizabeth Taylor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Doctor, You've Got to Be Kidding!", + "year": 1967, + "cast": [ + "Sandra Dee", + "George Hamilton", + "Celeste Holm", + "Bill Bixby" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Dont Look Back", + "year": 1967, + "cast": [ + "Bob Dylan", + "Joan Baez", + "Donovan" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Don't Make Waves", + "year": 1967, + "cast": [ + "Tony Curtis", + "Claudia Cardinale", + "Sharon Tate" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Double Man", + "year": 1967, + "cast": [ + "Yul Brynner", + "Britt Ekland" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Double Trouble", + "year": 1967, + "cast": [ + "Elvis Presley", + "John Williams", + "Yvonne Romain" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Easy Come, Easy Go", + "year": 1967, + "cast": [ + "Elvis Presley", + "Pat Priest" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Eight on the Lam", + "year": 1967, + "cast": [ + "Bob Hope", + "Phyllis Diller", + "Jonathan Winters", + "Shirley Eaton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Enter Laughing", + "year": 1967, + "cast": [ + "José Ferrer", + "Shelley Winters", + "Reni Santoni", + "Don Rickles" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Fastest Guitar Alive", + "year": 1967, + "cast": [ + "Roy Orbison", + "Joan Freeman", + "Patricia Donahue" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Fearless Vampire Killers", + "year": 1967, + "cast": [ + "Sharon Tate", + "Roman Polanski" + ], + "genres": [ + "Horror", + "Comedy" + ] + }, + { + "title": "Festival", + "year": 1967, + "cast": [ + "Bob Dylan", + "Johnny Cash", + "Joan Baez" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "First to Fight", + "year": 1967, + "cast": [ + "Chad Everett", + "Dean Jagger" + ], + "genres": [ + "War" + ] + }, + { + "title": "Fitzwilly", + "year": 1967, + "cast": [ + "Dick Van Dyke", + "Barbara Feldon", + "Edith Evans" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Flim-Flam Man", + "year": 1967, + "cast": [ + "George C. Scott", + "Sue Lyon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Fort Utah", + "year": 1967, + "cast": [ + "John Ireland", + "Virginia Mayo", + "Scott Brady" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Fox", + "year": 1967, + "cast": [ + "Sandy Dennis", + "Keir Dullea", + "Anne Heywood" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Games", + "year": 1967, + "cast": [ + "Simone Signoret", + "James Caan", + "Katharine Ross" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Gentle Giant", + "year": 1967, + "cast": [ + "Vera Miles", + "Dennis Weaver", + "Clint Howard" + ], + "genres": [ + "Family" + ] + }, + { + "title": "The Girl with the Hungry Eyes", + "year": 1967, + "cast": [ + "Adele Rein" + ], + "genres": [] + }, + { + "title": "The Gnome-Mobile", + "year": 1967, + "cast": [ + "Walter Brennan", + "Karen Dotrice", + "Ed Wynn" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Good Morning and... Goodbye!", + "year": 1967, + "cast": [ + "Alaina Capri", + "Haji" + ], + "genres": [] + }, + { + "title": "Good Times", + "year": 1967, + "cast": [ + "Sonny Bono", + "Cher" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "The Graduate", + "year": 1967, + "cast": [ + "Dustin Hoffman", + "Anne Bancroft", + "Katharine Ross" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Grand Slam", + "year": 1967, + "cast": [ + "Edward G. Robinson", + "Janet Leigh" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Guess Who's Coming to Dinner", + "year": 1967, + "cast": [ + "Spencer Tracy", + "Katharine Hepburn", + "Sidney Poitier" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Guide for the Married Man", + "year": 1967, + "cast": [ + "Walter Matthau", + "Robert Morse", + "Inger Stevens" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Gunfight in Abilene", + "year": 1967, + "cast": [ + "Bobby Darin", + "Michael Sarrazin", + "Leslie Nielsen" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Gunn", + "year": 1967, + "cast": [ + "Craig Stevens", + "Edward Asner" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Happening", + "year": 1967, + "cast": [ + "Anthony Quinn", + "Faye Dunaway", + "Michael Parks" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Happiest Millionaire", + "year": 1967, + "cast": [ + "Fred MacMurray", + "Lesley Ann Warren" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Hell on Wheels", + "year": 1967, + "cast": [ + "Marty Robbins", + "John Ashley", + "Gigi Perreau" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Hellcats", + "year": 1967, + "cast": [ + "Ross Hagen" + ], + "genres": [] + }, + { + "title": "Hells Angels on Wheels", + "year": 1967, + "cast": [ + "Jack Nicholson", + "Adam Roarke" + ], + "genres": [] + }, + { + "title": "Hillbillys in a Haunted House", + "year": 1967, + "cast": [ + "Lon Chaney, Jr.", + "John Carradine", + "Basil Rathbone" + ], + "genres": [ + "Horror", + "Comedy" + ] + }, + { + "title": "Hombre", + "year": 1967, + "cast": [ + "Paul Newman", + "Richard Boone", + "Fredric March", + "Diane Cilento", + "Barbara Rush", + "Martin Balsam", + "Margaret Blye" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Honey Pot", + "year": 1967, + "cast": [ + "Rex Harrison", + "Susan Hayward", + "Cliff Robertson", + "Edie Adams", + "Capucine" + ], + "genres": [ + "Comedy", + "Mystery" + ] + }, + { + "title": "Hostile Guns", + "year": 1967, + "cast": [ + "Tab Hunter", + "George Montgomery" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Hot Rods to Hell", + "year": 1967, + "cast": [ + "Dana Andrews", + "Jeanne Crain", + "Laurie Mock" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hotel", + "year": 1967, + "cast": [ + "Rod Taylor", + "Karl Malden", + "Merle Oberon", + "Melvyn Douglas", + "Michael Rennie", + "Catherine Spaak", + "Richard Conte" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hour of the Gun", + "year": 1967, + "cast": [ + "Jason Robards", + "Robert Ryan", + "James Garner" + ], + "genres": [ + "Western" + ] + }, + { + "title": "House of a Thousand Dolls", + "year": 1967, + "cast": [ + "Vincent Price", + "Martha Hyer", + "George Nader" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "How to Succeed in Business Without Really Trying", + "year": 1967, + "cast": [ + "Robert Morse", + "Rudy Vallée", + "Michele Lee", + "Maureen Arthur" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Hurry Sundown", + "year": 1967, + "cast": [ + "Michael Caine", + "Jane Fonda", + "John Phillip Law", + "Diahann Carroll", + "Faye Dunaway", + "Burgess Meredith" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "In Cold Blood", + "year": 1967, + "cast": [ + "Robert Blake", + "Scott Wilson", + "Paul Stewart", + "John Forsythe" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "In the Heat of the Night", + "year": 1967, + "cast": [ + "Rod Steiger", + "Sidney Poitier", + "Warren Oates", + "Lee Grant" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "In Like Flint", + "year": 1967, + "cast": [ + "James Coburn", + "Lee J. Cobb", + "Anna Lee", + "Jean Hale" + ], + "genres": [ + "Spy", + "Satire" + ] + }, + { + "title": "The Incident", + "year": 1967, + "cast": [ + "Tony Musante", + "Martin Sheen", + "Ruby Dee" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "It's a Bikini World", + "year": 1967, + "cast": [ + "Deborah Walley", + "Tommy Kirk", + "Bobby Pickett" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Jack of Diamonds", + "year": 1967, + "cast": [ + "George Hamilton", + "Joseph Cotten" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Journey to the Center of Time", + "year": 1967, + "cast": [ + "Scott Brady", + "Anthony Eisley", + "Gigi Perreau" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Jungle Book", + "year": 1967, + "cast": [ + "Bruce Reitherman", + "Phil Harris", + "George Sanders" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "King Kong Escapes", + "year": 1967, + "cast": [ + "Akira Takarada", + "Rhodes Reason" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Kill a Dragon", + "year": 1967, + "cast": [ + "Jack Palance", + "Fernando Lamas" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The King's Pirate", + "year": 1967, + "cast": [ + "Doug McClure", + "Jill St. John", + "Mary Ann Mobley" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Luv", + "year": 1967, + "cast": [ + "Jack Lemmon", + "Elaine May" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mad Monster Party", + "year": 1967, + "cast": [ + "Boris Karloff", + "Allen Swift", + "Phyllis Diller" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Mars Needs Women", + "year": 1967, + "cast": [ + "Tommy Kirk", + "Yvonne Craig" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Monkeys, Go Home!", + "year": 1967, + "cast": [ + "Dean Jones", + "Yvette Mimieux" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Oh Dad, Poor Dad, Mamma's Hung You in the Closet and I'm Feelin' So Sad", + "year": 1967, + "cast": [ + "Rosalind Russell", + "Robert Morse", + "Hugh Griffith" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Point Blank", + "year": 1967, + "cast": [ + "Lee Marvin", + "Angie Dickinson", + "Carroll O'Connor", + "Keenan Wynn", + "Lloyd Bochner", + "John Vernon" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The President's Analyst", + "year": 1967, + "cast": [ + "James Coburn", + "Godfrey Cambridge" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Reflections in a Golden Eye", + "year": 1967, + "cast": [ + "Elizabeth Taylor", + "Marlon Brando", + "Robert Forster" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Reluctant Astronaut", + "year": 1967, + "cast": [ + "Don Knotts", + "Leslie Nielsen" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Riot on Sunset Strip", + "year": 1967, + "cast": [ + "Aldo Ray", + "Mimsy Farmer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Rosie!", + "year": 1967, + "cast": [ + "Rosalind Russell", + "Sandra Dee" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Rough Night in Jericho", + "year": 1967, + "cast": [ + "Dean Martin", + "George Peppard", + "Jean Simmons" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Shooting", + "year": 1967, + "cast": [ + "Warren Oates", + "Jack Nicholson", + "Millie Perkins" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Shuttered Room", + "year": 1967, + "cast": [ + "Gig Young", + "Carol Lynley" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "The Spirit Is Willing", + "year": 1967, + "cast": [ + "Sid Caesar", + "Vera Miles" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The St. Valentine's Day Massacre", + "year": 1967, + "cast": [ + "Jason Robards", + "George Segal", + "Ralph Meeker", + "Jean Hale" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Taming of the Shrew", + "year": 1967, + "cast": [ + "Elizabeth Taylor", + "Richard Burton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Thoroughly Modern Millie", + "year": 1967, + "cast": [ + "Julie Andrews", + "Mary Tyler Moore", + "Carol Channing" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Three Bites of the Apple", + "year": 1967, + "cast": [ + "David McCallum", + "Sylva Koscina", + "Tammy Grimes" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Thunder Alley", + "year": 1967, + "cast": [ + "Annette Funicello", + "Fabian", + "Diane McBain" + ], + "genres": [ + "Sports", + "Drama" + ] + }, + { + "title": "The Tiger Makes Out", + "year": 1967, + "cast": [ + "Eli Wallach", + "Dustin Hoffman", + "Anne Jackson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Time for Killing", + "year": 1967, + "cast": [ + "Glenn Ford", + "Inger Stevens" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Titicut Follies", + "year": 1967, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "Tobruk", + "year": 1967, + "cast": [ + "Rock Hudson", + "George Peppard" + ], + "genres": [ + "War" + ] + }, + { + "title": "Tony Rome", + "year": 1967, + "cast": [ + "Frank Sinatra", + "Jill St. John", + "Gena Rowlands", + "Richard Conte", + "Simon Oakland", + "Sue Lyon", + "Shecky Greene" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Torture Garden", + "year": 1967, + "cast": [ + "Jack Palance", + "Burgess Meredith", + "Beverly Adams" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Track of Thunder", + "year": 1967, + "cast": [ + "Tommy Kirk", + "Faith Domergue" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Trip", + "year": 1967, + "cast": [ + "Peter Fonda", + "Susan Strasberg", + "Dennis Hopper" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Up the Down Staircase", + "year": 1967, + "cast": [ + "Sandy Dennis", + "Jean Stapleton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Valley of the Dolls", + "year": 1967, + "cast": [ + "Patty Duke", + "Barbara Parkins", + "Paul Burke", + "Martin Milner", + "Susan Hayward", + "Sharon Tate" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Venetian Affair", + "year": 1967, + "cast": [ + "Robert Vaughn", + "Elke Sommer", + "Felicia Farr" + ], + "genres": [ + "Spy" + ] + }, + { + "title": "Wait Until Dark", + "year": 1967, + "cast": [ + "Audrey Hepburn", + "Alan Arkin", + "Efrem Zimbalist Jr.", + "Richard Crenna" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The War Wagon", + "year": 1967, + "cast": [ + "John Wayne", + "Kirk Douglas", + "Robert Walker Jr." + ], + "genres": [ + "Western" + ] + }, + { + "title": "Warning Shot", + "year": 1967, + "cast": [ + "David Janssen", + "Joan Collins", + "Stefanie Powers", + "Eleanor Parker", + "George Grizzard", + "Steve Allen", + "Lillian Gish" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Waterhole No. 3", + "year": 1967, + "cast": [ + "James Coburn", + "Carroll O'Connor", + "Margaret Blye" + ], + "genres": [ + "Comedy", + "Western" + ] + }, + { + "title": "The Way West", + "year": 1967, + "cast": [ + "Kirk Douglas", + "Robert Mitchum", + "Richard Widmark", + "Lola Albright" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Welcome to Hard Times", + "year": 1967, + "cast": [ + "Henry Fonda", + "Janice Rule", + "Warren Oates", + "Aldo Ray" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Who's Minding the Mint?", + "year": 1967, + "cast": [ + "Jim Hutton", + "Dorothy Provine", + "Milton Berle" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Who's That Knocking at My Door", + "year": 1967, + "cast": [ + "Harvey Keitel" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Woman Times Seven", + "year": 1967, + "cast": [ + "Shirley MacLaine", + "Peter Sellers", + "Michael Caine" + ], + "genres": [] + }, + { + "title": "5 Card Stud", + "year": 1968, + "cast": [ + "Dean Martin", + "Robert Mitchum", + "Inger Stevens" + ], + "genres": [ + "Western", + "Mystery" + ] + }, + { + "title": "2001: A Space Odyssey", + "year": 1968, + "cast": [ + "Keir Dullea", + "Gary Lockwood", + "William Sylvester" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Anzio", + "year": 1968, + "cast": [ + "Robert Mitchum", + "Robert Ryan", + "Peter Falk" + ], + "genres": [ + "War" + ] + }, + { + "title": "Assignment to Kill", + "year": 1968, + "cast": [ + "Patrick O'Neal", + "Joan Hackett", + "John Gielgud" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Astro-Zombies", + "year": 1968, + "cast": [ + "John Carradine", + "Wendell Corey", + "Tura Satana" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Bamboo Saucer", + "year": 1968, + "cast": [ + "Dan Duryea", + "John Ericson", + "Lois Nettleton" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Bandolero!", + "year": 1968, + "cast": [ + "James Stewart", + "Dean Martin", + "Raquel Welch" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Biggest Bundle of Them All", + "year": 1968, + "cast": [ + "Raquel Welch", + "Robert Wagner", + "Edward G. Robinson" + ], + "genres": [ + "Comedy", + "Crime" + ] + }, + { + "title": "Blackbeard's Ghost", + "year": 1968, + "cast": [ + "Peter Ustinov", + "Suzanne Pleshette", + "Dean Jones" + ], + "genres": [ + "Comedy", + "Fantasy" + ] + }, + { + "title": "The Boston Strangler", + "year": 1968, + "cast": [ + "Tony Curtis", + "Henry Fonda", + "George Kennedy" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Brotherhood", + "year": 1968, + "cast": [ + "Kirk Douglas", + "Alex Cord", + "Luther Adler" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Bullitt", + "year": 1968, + "cast": [ + "Steve McQueen", + "Robert Vaughn", + "Jacqueline Bisset" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Buona Sera, Mrs. Campbell", + "year": 1968, + "cast": [ + "Gina Lollobrigida", + "Shelley Winters", + "Peter Lawford" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Bye Bye Braverman", + "year": 1968, + "cast": [ + "George Segal", + "Jack Warden", + "Alan King" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Candy", + "year": 1968, + "cast": [ + "Marlon Brando", + "Richard Burton", + "Charles Aznavour", + "Walter Matthau", + "James Coburn", + "Ringo Starr" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Charly", + "year": 1968, + "cast": [ + "Cliff Robertson", + "Claire Bloom" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Coogan's Bluff", + "year": 1968, + "cast": [ + "Clint Eastwood", + "Lee J. Cobb", + "Susan Clark" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Countdown", + "year": 1968, + "cast": [ + "James Caan", + "Robert Duvall" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Counterpoint", + "year": 1968, + "cast": [ + "Charlton Heston", + "Maximilian Schell" + ], + "genres": [ + "War" + ] + }, + { + "title": "Daring Game", + "year": 1968, + "cast": [ + "Lloyd Bridges", + "Joan Blackman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Day of the Evil Gun", + "year": 1968, + "cast": [ + "Glenn Ford", + "Arthur Kennedy", + "Dean Jagger" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Detective", + "year": 1968, + "cast": [ + "Frank Sinatra", + "Lee Remick", + "Jacqueline Bisset" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Devil's Brigade", + "year": 1968, + "cast": [ + "William Holden", + "Cliff Robertson", + "Vince Edwards" + ], + "genres": [ + "War" + ] + }, + { + "title": "Did You Hear the One About the Traveling Saleslady?", + "year": 1968, + "cast": [ + "Phyllis Diller", + "Bob Denver" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Don't Just Stand There!", + "year": 1968, + "cast": [ + "Robert Wagner", + "Mary Tyler Moore" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Don't Raise the Bridge, Lower the River", + "year": 1968, + "cast": [ + "Jerry Lewis", + "Terry-Thomas", + "Jacqueline Pearce" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Faces", + "year": 1968, + "cast": [ + "Gena Rowlands", + "John Marley", + "Seymour Cassel" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Finders Keepers, Lovers Weepers!", + "year": 1968, + "cast": [ + "Anne Chapman", + "Lavelle Roby" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Finian's Rainbow", + "year": 1968, + "cast": [ + "Fred Astaire", + "Petula Clark", + "Keenan Wynn", + "Tommy Steele", + "Don Francks", + "Al Freeman Jr." + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Firecreek", + "year": 1968, + "cast": [ + "James Stewart", + "Henry Fonda", + "Inger Stevens", + "Jacqueline Scott", + "Gary Lockwood" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Flesh", + "year": 1968, + "cast": [ + "Patti D'Arbanville" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "For Love of Ivy", + "year": 1968, + "cast": [ + "Sidney Poitier", + "Abbey Lincoln", + "Beau Bridges" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "For Singles Only", + "year": 1968, + "cast": [ + "Mary Ann Mobley", + "Lana Wood", + "Milton Berle" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Funny Girl", + "year": 1968, + "cast": [ + "Barbra Streisand", + "Omar Sharif", + "Walter Pidgeon" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Great Catherine", + "year": 1968, + "cast": [ + "Peter O'Toole", + "Jeanne Moreau" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Green Berets", + "year": 1968, + "cast": [ + "John Wayne", + "David Janssen", + "Jim Hutton", + "Aldo Ray" + ], + "genres": [ + "War" + ] + }, + { + "title": "Greetings", + "year": 1968, + "cast": [ + "Robert De Niro", + "Gerrit Graham" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hammerhead", + "year": 1968, + "cast": [ + "Vince Edwards", + "Diana Dors" + ], + "genres": [ + "Spy" + ] + }, + { + "title": "Hang 'Em High", + "year": 1968, + "cast": [ + "Clint Eastwood", + "Inger Stevens", + "Pat Hingle" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Head", + "year": 1968, + "cast": [ + "The Monkees", + "Annette Funicello", + "Victor Mature" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "The Heart Is a Lonely Hunter", + "year": 1968, + "cast": [ + "Alan Arkin", + "Chuck McCann", + "Sondra Locke" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hell in the Pacific", + "year": 1968, + "cast": [ + "Lee Marvin", + "Toshiro Mifune" + ], + "genres": [ + "War" + ] + }, + { + "title": "Hellfighters", + "year": 1968, + "cast": [ + "John Wayne", + "Katharine Ross", + "Jim Hutton" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Hell with Heroes", + "year": 1968, + "cast": [ + "Rod Taylor", + "Claudia Cardinale" + ], + "genres": [ + "War" + ] + }, + { + "title": "The Horse in the Gray Flannel Suit", + "year": 1968, + "cast": [ + "Dean Jones", + "Diane Baker" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Hot Millions", + "year": 1968, + "cast": [ + "Peter Ustinov", + "Maggie Smith", + "Bob Newhart" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "House of Evil", + "year": 1968, + "cast": [ + "Boris Karloff", + "Julissa" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "How to Save a Marriage and Ruin Your Life", + "year": 1968, + "cast": [ + "Dean Martin", + "Stella Stevens", + "Eli Wallach" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "How Sweet It Is!", + "year": 1968, + "cast": [ + "James Garner", + "Debbie Reynolds", + "Terry-Thomas" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "I Love You, Alice B. Toklas", + "year": 1968, + "cast": [ + "Peter Sellers", + "Leigh Taylor-Young" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Ice Station Zebra", + "year": 1968, + "cast": [ + "Rock Hudson", + "Patrick McGoohan", + "Ernest Borgnine", + "Jim Brown", + "Tony Bill", + "Lloyd Nolan" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Impossible Years", + "year": 1968, + "cast": [ + "David Niven", + "Lola Albright", + "Ozzie Nelson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "In Enemy Country", + "year": 1968, + "cast": [ + "Anthony Franciosa", + "Anjanette Comer" + ], + "genres": [ + "War" + ] + }, + { + "title": "In the Year of the Pig", + "year": 1968, + "cast": [ + "Gerald Ford", + "Dwight D. Eisenhower" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Jigsaw", + "year": 1968, + "cast": [ + "Harry Guardino", + "Bradford Dillman", + "Hope Lange" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Killers Three", + "year": 1968, + "cast": [ + "Dick Clark", + "Robert Walker Jr.", + "Merle Haggard" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Killing of Sister George", + "year": 1968, + "cast": [ + "Beryl Reid", + "Coral Browne", + "Susannah York" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Kona Coast", + "year": 1968, + "cast": [ + "Richard Boone", + "Vera Miles", + "Joan Blondell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Lady in Cement", + "year": 1968, + "cast": [ + "Frank Sinatra", + "Raquel Welch", + "Dan Blocker" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Legend of Lylah Clare", + "year": 1968, + "cast": [ + "Kim Novak", + "Peter Finch", + "Ernest Borgnine" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Live a Little, Love a Little", + "year": 1968, + "cast": [ + "Elvis Presley", + "Michele Carey", + "Rudy Vallée" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Love Bug", + "year": 1968, + "cast": [ + "Dean Jones", + "Michele Lee", + "David Tomlinson" + ], + "genres": [ + "Family" + ] + }, + { + "title": "A Lovely Way to Die", + "year": 1968, + "cast": [ + "Kirk Douglas", + "Sylvia Koscina", + "Eli Wallach" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Madigan", + "year": 1968, + "cast": [ + "Richard Widmark", + "Henry Fonda", + "Inger Stevens", + "James Whitmore", + "Harry Guardino", + "Susan Clark" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Madigan's Millions", + "year": 1968, + "cast": [ + "Dustin Hoffman" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Magus", + "year": 1968, + "cast": [ + "Michael Caine", + "Candice Bergen", + "Anthony Quinn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Man Called Dagger", + "year": 1968, + "cast": [ + "Terry Moore", + "Sue Ane Langdon" + ], + "genres": [ + "Spy", + "Comedy" + ] + }, + { + "title": "The Mini-Skirt Mob", + "year": 1968, + "cast": [ + "Diane McBain", + "Jeremy Slate" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Money Jungle", + "year": 1968, + "cast": [ + "Lola Albright", + "John Ericson", + "Leslie Parrish" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Monterey Pop", + "year": 1968, + "cast": [ + "Jimi Hendrix", + "Otis Redding", + "Simon & Garfunkel", + "The Mamas & the Papas", + "Jefferson Airplane", + "The Who" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "More Dead Than Alive", + "year": 1968, + "cast": [ + "Clint Walker", + "Vincent Price", + "Anne Francis" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Movie Orgy", + "year": 1968, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "Never a Dull Moment", + "year": 1968, + "cast": [ + "Dick Van Dyke", + "Dorothy Provine", + "Edward G. Robinson" + ], + "genres": [ + "Crime", + "Comedy" + ] + }, + { + "title": "The Night of the Following Day", + "year": 1968, + "cast": [ + "Marlon Brando", + "Richard Boone", + "Rita Moreno" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Night of the Living Dead", + "year": 1968, + "cast": [ + "Duane Jones", + "Judith O'Dea" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Night They Raided Minsky's", + "year": 1968, + "cast": [ + "Jason Robards", + "Elliott Gould", + "Forrest Tucker" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "No Way to Treat a Lady", + "year": 1968, + "cast": [ + "Rod Steiger", + "Lee Remick", + "George Segal" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Nobody Runs Forever", + "year": 1968, + "cast": [ + "Rod Taylor", + "Christopher Plummer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Nobody's Perfect", + "year": 1968, + "cast": [ + "Doug McClure", + "Nancy Kwan", + "James Whitmore" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Odd Couple", + "year": 1968, + "cast": [ + "Jack Lemmon", + "Walter Matthau" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The One and Only, Genuine, Original Family Band", + "year": 1968, + "cast": [ + "Walter Brennan", + "Buddy Ebsen", + "Lesley Ann Warren", + "John Davidson", + "Kurt Russell" + ], + "genres": [ + "Family" + ] + }, + { + "title": "P.J.", + "year": 1968, + "cast": [ + "George Peppard", + "Raymond Burr", + "Gayle Hunnicutt" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Panic in the City", + "year": 1968, + "cast": [ + "Howard Duff", + "Linda Cristal", + "Anne Jeffreys" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Paper Lion", + "year": 1968, + "cast": [ + "Alan Alda", + "Lauren Hutton", + "Alex Karras" + ], + "genres": [ + "Biography", + "Sports" + ] + }, + { + "title": "The Party", + "year": 1968, + "cast": [ + "Peter Sellers", + "Claudine Longet" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Petulia", + "year": 1968, + "cast": [ + "George C. Scott", + "Julie Christie" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Pink Jungle", + "year": 1968, + "cast": [ + "James Garner", + "George Kennedy" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "A Place for Lovers", + "year": 1968, + "cast": [ + "Faye Dunaway", + "Marcello Mastroianni" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Planet of the Apes", + "year": 1968, + "cast": [ + "Charlton Heston", + "Roddy McDowall", + "Maurice Evans", + "Kim Hunter" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Power", + "year": 1968, + "cast": [ + "Suzanne Pleshette", + "George Hamilton" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Pretty Poison", + "year": 1968, + "cast": [ + "Tuesday Weld", + "Anthony Perkins", + "Beverly Garland" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "The Private Navy of Sgt. O'Farrell", + "year": 1968, + "cast": [ + "Bob Hope", + "Jeffrey Hunter", + "Phyllis Diller" + ], + "genres": [ + "War", + "Comedy" + ] + }, + { + "title": "The Producers", + "year": 1968, + "cast": [ + "Zero Mostel", + "Gene Wilder", + "Kenneth Mars", + "Dick Shawn", + "Lee Meredith", + "Christopher Hewett" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Psych-Out", + "year": 1968, + "cast": [ + "Jack Nicholson", + "Susan Strasberg" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Rachel, Rachel", + "year": 1968, + "cast": [ + "Joanne Woodward", + "James Olson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Rosemary's Baby", + "year": 1968, + "cast": [ + "Mia Farrow", + "John Cassavetes", + "Charles Grodin", + "Ruth Gordon", + "Ralph Bellamy" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Savage Seven", + "year": 1968, + "cast": [ + "Robert Walker Jr.", + "Larry Bishop" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Scalphunters", + "year": 1968, + "cast": [ + "Burt Lancaster", + "Ossie Davis", + "Telly Savalas" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Sea Gull", + "year": 1968, + "cast": [ + "Vanessa Redgrave", + "Simone Signoret", + "James Mason" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Secret Life of an American Wife", + "year": 1968, + "cast": [ + "Walter Matthau", + "Anne Jackson", + "Patrick O'Neal" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Secret War of Harry Frigg", + "year": 1968, + "cast": [ + "Paul Newman" + ], + "genres": [ + "War", + "Comedy" + ] + }, + { + "title": "The Sergeant", + "year": 1968, + "cast": [ + "Rod Steiger", + "John Phillip Law" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sergeant Ryker", + "year": 1968, + "cast": [ + "Lee Marvin", + "Bradford Dillman", + "Vera Miles" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Shakiest Gun in the West", + "year": 1968, + "cast": [ + "Don Knotts", + "Pat Morita", + "Jackie Coogan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Shalako", + "year": 1968, + "cast": [ + "Sean Connery", + "Brigitte Bardot" + ], + "genres": [ + "Western" + ] + }, + { + "title": "She-Devils on Wheels", + "year": 1968, + "cast": [ + "Betty Connell" + ], + "genres": [] + }, + { + "title": "The Shoes of the Fisherman", + "year": 1968, + "cast": [ + "Anthony Quinn", + "Laurence Olivier", + "David Janssen", + "Oskar Werner", + "Leo McKern", + "John Gielgud" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Single Room Furnished", + "year": 1968, + "cast": [ + "Jayne Mansfield" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Skidoo", + "year": 1968, + "cast": [ + "Jackie Gleason", + "Carol Channing", + "Mickey Rooney", + "John Phillip Law", + "Groucho Marx" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Sol Madrid", + "year": 1968, + "cast": [ + "David McCallum", + "Stella Stevens", + "Telly Savalas" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Speedway", + "year": 1968, + "cast": [ + "Elvis Presley", + "Nancy Sinatra" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Spirits of the Dead", + "year": 1968, + "cast": [ + "Brigitte Bardot", + "Alain Delon", + "Jane Fonda", + "Peter Fonda" + ], + "genres": [] + }, + { + "title": "The Split", + "year": 1968, + "cast": [ + "Jim Brown", + "Diahann Carroll", + "Gene Hackman", + "Julie Harris", + "Warren Oates", + "Donald Sutherland" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Stalking Moon", + "year": 1968, + "cast": [ + "Gregory Peck", + "Eva Marie Saint" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Star!", + "year": 1968, + "cast": [ + "Julie Andrews", + "Daniel Massey", + "Richard Crenna" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Stay Away, Joe", + "year": 1968, + "cast": [ + "Elvis Presley", + "Burgess Meredith", + "Katy Jurado" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Subject Was Roses", + "year": 1968, + "cast": [ + "Patricia Neal", + "Jack Albertson", + "Martin Sheen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Sweet Ride", + "year": 1968, + "cast": [ + "Anthony Franciosa", + "Michael Sarrazin", + "Jacqueline Bisset", + "Bob Denver" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sweet November", + "year": 1968, + "cast": [ + "Sandy Dennis", + "Anthony Newley" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Swimmer", + "year": 1968, + "cast": [ + "Burt Lancaster", + "Janice Rule", + "Marge Champion" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Targets", + "year": 1968, + "cast": [ + "Boris Karloff", + "Tim O'Kelly" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "They Came to Rob Las Vegas", + "year": 1968, + "cast": [ + "Gary Lockwood", + "Elke Sommer", + "Lee J. Cobb" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Thomas Crown Affair", + "year": 1968, + "cast": [ + "Steve McQueen", + "Faye Dunaway" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Three in the Attic", + "year": 1968, + "cast": [ + "Christopher Jones", + "Yvette Mimieux" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "Uptight", + "year": 1968, + "cast": [ + "Ruby Dee", + "Raymond St. Jacques", + "Max Julien" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Villa Rides", + "year": 1968, + "cast": [ + "Yul Brynner", + "Robert Mitchum", + "Charles Bronson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Vixen!", + "year": 1968, + "cast": [ + "Erica Gavin" + ], + "genres": [] + }, + { + "title": "Voyage to the Planet of Prehistoric Women", + "year": 1968, + "cast": [ + "Mamie Van Doren" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Walk the Angry Beach", + "year": 1968, + "cast": [ + "Rue McClanahan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "What's So Bad About Feeling Good?", + "year": 1968, + "cast": [ + "George Peppard", + "Mary Tyler Moore", + "Dom DeLuise" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Where Angels Go, Trouble Follows", + "year": 1968, + "cast": [ + "Rosalind Russell", + "Stella Stevens", + "Binnie Barnes" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Where Eagles Dare", + "year": 1968, + "cast": [ + "Clint Eastwood", + "Richard Burton" + ], + "genres": [ + "War" + ] + }, + { + "title": "Where Were You When the Lights Went Out?", + "year": 1968, + "cast": [ + "Doris Day", + "Robert Morse", + "Patrick O'Neal" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "White Comanche", + "year": 1968, + "cast": [ + "William Shatner", + "Joseph Cotten" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Wicked Dreams of Paula Schultz", + "year": 1968, + "cast": [ + "Elke Sommer", + "Bob Crane", + "Werner Klemperer" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Wild 90", + "year": 1968, + "cast": [ + "Norman Mailer", + "Buzz Farbar", + "Mickey Knox" + ], + "genres": [] + }, + { + "title": "Wild in the Streets", + "year": 1968, + "cast": [ + "Christopher Jones", + "Hal Holbrook", + "Shelley Winters", + "Richard Pryor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Wild Racers", + "year": 1968, + "cast": [ + "Fabian", + "Judy Cornwell", + "Talia Shire" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Wild, Wild World of Jayne Mansfield", + "year": 1968, + "cast": [ + "Jayne Mansfield" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Will Penny", + "year": 1968, + "cast": [ + "Charlton Heston", + "Joan Hackett", + "Bruce Dern" + ], + "genres": [ + "Western" + ] + }, + { + "title": "With Six You Get Eggroll", + "year": 1968, + "cast": [ + "Doris Day", + "Brian Keith", + "Barbara Hershey" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Wrecking Crew", + "year": 1968, + "cast": [ + "Dean Martin", + "Sharon Tate", + "Elke Sommer", + "Nancy Kwan", + "Tina Louise" + ], + "genres": [ + "Spy", + "Comedy" + ] + }, + { + "title": "Yours, Mine and Ours", + "year": 1968, + "cast": [ + "Lucille Ball", + "Henry Fonda" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "100 Rifles", + "year": 1969, + "cast": [ + "Burt Reynolds", + "Raquel Welch", + "Jim Brown" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Alice's Restaurant", + "year": 1969, + "cast": [ + "Arlo Guthrie" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Angel, Angel, Down We Go", + "year": 1969, + "cast": [ + "Jennifer Jones", + "Roddy McDowall" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Angel in My Pocket", + "year": 1969, + "cast": [ + "Andy Griffith", + "Jerry Van Dyke" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Appointment", + "year": 1969, + "cast": [ + "Omar Sharif", + "Anouk Aimée" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The April Fools", + "year": 1969, + "cast": [ + "Jack Lemmon", + "Catherine Deneuve", + "Peter Lawford", + "Myrna Loy" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "The Arrangement", + "year": 1969, + "cast": [ + "Kirk Douglas", + "Faye Dunaway", + "Deborah Kerr" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Bambi Meets Godzilla", + "year": 1969, + "cast": [], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "The Big Bounce", + "year": 1969, + "cast": [ + "Ryan O'Neal", + "Leigh Taylor-Young", + "Van Heflin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Big Cube", + "year": 1969, + "cast": [ + "Lana Turner", + "Dan O'Herlihy" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Blood of Dracula's Castle", + "year": 1969, + "cast": [ + "John Carradine", + "Robert Dix" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Blue Movie", + "year": 1969, + "cast": [ + "Viva", + "Louis Waldon" + ], + "genres": [ + "Erotic" + ] + }, + { + "title": "Bob & Carol & Ted & Alice", + "year": 1969, + "cast": [ + "Elliott Gould", + "Dyan Cannon", + "Natalie Wood", + "Robert Culp" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Boy Named Charlie Brown", + "year": 1969, + "cast": [ + "Peter Robbins", + "Pamelyn Ferdin", + "Glenn Gilger", + "Erin Sullivan" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "The Bridge at Remagen", + "year": 1969, + "cast": [ + "George Segal", + "Ben Gazzara", + "E. G. Marshall" + ], + "genres": [ + "War" + ] + }, + { + "title": "The Bushbaby", + "year": 1969, + "cast": [ + "Margaret Brooks", + "Lou Gossett Jr." + ], + "genres": [ + "Family" + ] + }, + { + "title": "Butch Cassidy and the Sundance Kid", + "year": 1969, + "cast": [ + "Paul Newman", + "Robert Redford", + "Katharine Ross" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Cactus Flower", + "year": 1969, + "cast": [ + "Walter Matthau", + "Goldie Hawn", + "Ingrid Bergman" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Castle Keep", + "year": 1969, + "cast": [ + "Burt Lancaster", + "Patrick O'Neal", + "Jean-Pierre Aumont", + "Bruce Dern", + "Peter Falk" + ], + "genres": [ + "War" + ] + }, + { + "title": "The Chairman", + "year": 1969, + "cast": [ + "Gregory Peck", + "Anne Heywood", + "Arthur Hill" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Change of Habit", + "year": 1969, + "cast": [ + "Elvis Presley", + "Mary Tyler Moore" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Change of Mind", + "year": 1969, + "cast": [ + "Raymond St. Jacques", + "Susan Oliver" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Changes", + "year": 1969, + "cast": [ + "Michele Carey", + "Jack Albertson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Chastity", + "year": 1969, + "cast": [ + "Cher", + "Stephen Whittaker" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Che!", + "year": 1969, + "cast": [ + "Omar Sharif", + "Jack Palance", + "Cesare Danova" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Childish Things", + "year": 1969, + "cast": [ + "Don Murray", + "Linda Evans" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Comic", + "year": 1969, + "cast": [ + "Dick Van Dyke", + "Mickey Rooney" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Computer Wore Tennis Shoes", + "year": 1969, + "cast": [ + "Kurt Russell", + "Cesar Romero" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Crooks and Coronets", + "year": 1969, + "cast": [ + "Telly Savalas", + "Warren Oates" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Cycle Savages", + "year": 1969, + "cast": [ + "Bruce Dern", + "Melody Patterson" + ], + "genres": [] + }, + { + "title": "Czechoslovakia 1968", + "year": 1969, + "cast": [ + "Neville Chamberlain", + "?", + "Leonid Brezhnev", + "?" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Dance of Death", + "year": 1969, + "cast": [ + "Boris Karloff", + "Julissa" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Death of a Gunfighter", + "year": 1969, + "cast": [ + "Richard Widmark", + "Lena Horne" + ], + "genres": [ + "Western" + ] + }, + { + "title": "De Sade", + "year": 1969, + "cast": [ + "Keir Dullea", + "Senta Berger" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Devil's 8", + "year": 1969, + "cast": [ + "Christopher George", + "Fabian", + "Leslie Parrish" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Don't Drink the Water", + "year": 1969, + "cast": [ + "Jackie Gleason", + "Estelle Parsons", + "Ted Bessell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Downhill Racer", + "year": 1969, + "cast": [ + "Robert Redford", + "Gene Hackman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Easy Rider", + "year": 1969, + "cast": [ + "Peter Fonda", + "Dennis Hopper", + "Jack Nicholson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Eggshells", + "year": 1969, + "cast": [ + "Kim Henkel", + "Amy Lester" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Extraordinary Seaman", + "year": 1969, + "cast": [ + "David Niven", + "Faye Dunaway", + "Mickey Rooney", + "Alan Alda", + "Jack Carter" + ], + "genres": [ + "War", + "Comedy" + ] + }, + { + "title": "Eye of the Cat", + "year": 1969, + "cast": [ + "Michael Sarrazin", + "Gayle Hunnicutt", + "Eleanor Parker" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Fantastic Plastic Machine", + "year": 1969, + "cast": [ + "Jay North" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Female Bunch", + "year": 1969, + "cast": [ + "Russ Tamblyn", + "Lon Chaney Jr." + ], + "genres": [ + "Action" + ] + }, + { + "title": "Flareup", + "year": 1969, + "cast": [ + "Raquel Welch" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Gaily, Gaily", + "year": 1969, + "cast": [ + "Beau Bridges", + "Brian Keith", + "Margot Kidder" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Gay Deceivers", + "year": 1969, + "cast": [ + "Kevin Coughlin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Gidget Grows Up", + "year": 1969, + "cast": [ + "Karen Valentine", + "Robert Cummings", + "Nina Foch" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Girl Who Knew Too Much", + "year": 1969, + "cast": [ + "Adam West", + "Nancy Kwan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Girl in Gold Boots", + "year": 1969, + "cast": [ + "Bara Byrnes" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Girl Who Returned", + "year": 1969, + "cast": [ + "Michael Herz" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Goodbye, Columbus", + "year": 1969, + "cast": [ + "Richard Benjamin", + "Ali MacGraw", + "Jack Klugman" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Goodbye, Mr. Chips", + "year": 1969, + "cast": [ + "Peter O'Toole", + "Petula Clark" + ], + "genres": [ + "Musical", + "Drama" + ] + }, + { + "title": "The Grasshopper", + "year": 1969, + "cast": [ + "Jacqueline Bisset", + "Jim Brown", + "Joseph Cotten" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Guns in the Heather", + "year": 1969, + "cast": [ + "Kurt Russell", + "Glenn Corbett" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Guns of the Magnificent Seven", + "year": 1969, + "cast": [ + "George Kennedy", + "James Whitmore", + "Reni Santoni", + "Monte Markham", + "Bernie Casey" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Gypsy Moths", + "year": 1969, + "cast": [ + "Burt Lancaster", + "Deborah Kerr", + "Gene Hackman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hail, Hero!", + "year": 1969, + "cast": [ + "Michael Douglas", + "Teresa Wright" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Happy Ending", + "year": 1969, + "cast": [ + "Jean Simmons", + "Shirley Jones", + "John Forsythe", + "Bobby Darin", + "Teresa Wright", + "Nanette Fabray" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hard Contract", + "year": 1969, + "cast": [ + "James Coburn", + "Lee Remick", + "Lilli Palmer" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Hello, Dolly!", + "year": 1969, + "cast": [ + "Barbra Streisand", + "Walter Matthau", + "Michael Crawford", + "Marianne McAndrew", + "Danny Lockin", + "Tommy Tune", + "Louis Armstrong" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Hello Down There", + "year": 1969, + "cast": [ + "Tony Randall", + "Janet Leigh", + "Jim Backus" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hell's Angels '69", + "year": 1969, + "cast": [ + "Conny Van Dyke", + "Jeremy Slate" + ], + "genres": [] + }, + { + "title": "Hell's Belles", + "year": 1969, + "cast": [ + "Jeremy Slate", + "Jocelyn Lane" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Hook, Line & Sinker", + "year": 1969, + "cast": [ + "Jerry Lewis", + "Peter Lawford", + "Anne Francis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "House of Cards", + "year": 1969, + "cast": [ + "George Peppard", + "Orson Welles", + "Inger Stevens" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "How to Commit Marriage", + "year": 1969, + "cast": [ + "Bob Hope", + "Jackie Gleason", + "Jane Wyman" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "If It's Tuesday, This Must Be Belgium", + "year": 1969, + "cast": [ + "Suzanne Pleshette", + "Ian McShane" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Illustrated Man", + "year": 1969, + "cast": [ + "Rod Steiger", + "Claire Bloom" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Impasse", + "year": 1969, + "cast": [ + "Burt Reynolds", + "Anne Francis" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "It Takes All Kinds", + "year": 1969, + "cast": [ + "Vera Miles", + "Robert Lansing" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "John and Mary", + "year": 1969, + "cast": [ + "Mia Farrow", + "Dustin Hoffman", + "Olympia Dukakis" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Judy's Little No-No", + "year": 1969, + "cast": [ + "Elisa Ingram", + "John Davis Lodge", + "Joe E. Ross" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Justine", + "year": 1969, + "cast": [ + "Robert Forster", + "Anouk Aimée", + "Dirk Bogarde", + "Michael York" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Krakatoa, East of Java", + "year": 1969, + "cast": [ + "Brian Keith", + "Maximilian Schell", + "Sal Mineo" + ], + "genres": [ + "Disaster" + ] + }, + { + "title": "Land Raiders", + "year": 1969, + "cast": [ + "Telly Savalas", + "Arlene Dahl" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Last Summer", + "year": 1969, + "cast": [ + "Barbara Hershey", + "Catherine Burns", + "Bruce Davison" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Learning Tree", + "year": 1969, + "cast": [ + "Kyle Johnson", + "Malcolm Atterbury", + "Dana Elcar" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Lola", + "year": 1969, + "cast": [ + "Susan George", + "Charles Bronson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Lost Flight", + "year": 1969, + "cast": [ + "Lloyd Bridges", + "Bobby Van", + "Anne Francis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Lost Man", + "year": 1969, + "cast": [ + "Sidney Poitier", + "Joanna Shimkus" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Love Camp 7", + "year": 1969, + "cast": [ + "Kathy Williams", + "Maria Lease" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Love God?", + "year": 1969, + "cast": [ + "Don Knotts", + "Anne Francis", + "Edmond O'Brien" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mackenna's Gold", + "year": 1969, + "cast": [ + "Gregory Peck", + "Omar Sharif", + "Telly Savalas", + "Camilla Sparv", + "Julie Newmar" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Madwoman of Chaillot", + "year": 1969, + "cast": [ + "Katharine Hepburn", + "Yul Brynner", + "Paul Henreid" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Marlowe", + "year": 1969, + "cast": [ + "James Garner", + "Rita Moreno", + "Gayle Hunnicutt", + "Carroll O'Connor", + "Bruce Lee" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Marooned", + "year": 1969, + "cast": [ + "Gregory Peck", + "Gene Hackman", + "David Janssen", + "Richard Crenna", + "James Franciscus", + "Lee Grant", + "Mariette Hartley", + "Nancy Kovack" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Me, Natalie", + "year": 1969, + "cast": [ + "Patty Duke", + "James Farantino" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Medium Cool", + "year": 1969, + "cast": [ + "Robert Forster", + "Verna Bloom" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Midas Run", + "year": 1969, + "cast": [ + "Richard Crenna", + "Anne Heywood", + "Fred Astaire" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Midnight Cowboy", + "year": 1969, + "cast": [ + "Jon Voight", + "Dustin Hoffman", + "Brenda Vaccaro", + "Sylvia Miles" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Monitors", + "year": 1969, + "cast": [ + "Guy Stockwell", + "Susan Oliver", + "Avery Schreiber", + "Sherry Jackson" + ], + "genres": [ + "Science Fiction", + "Comedy" + ] + }, + { + "title": "More Dead Than Alive", + "year": 1969, + "cast": [ + "Clint Walker", + "Vincent Price", + "Anne Francis", + "Paul Hampton" + ], + "genres": [ + "Western" + ] + }, + { + "title": "My Side of the Mountain", + "year": 1969, + "cast": [ + "Theodore Bikel", + "Teddy Eccles" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Naked Angels", + "year": 1969, + "cast": [ + "Richard Rust", + "Michael Greene" + ], + "genres": [] + }, + { + "title": "Nightmare in Wax", + "year": 1969, + "cast": [ + "Cameron Mitchell" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Number One", + "year": 1969, + "cast": [ + "Charlton Heston", + "Jessica Walter", + "Bruce Dern" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Paint Your Wagon", + "year": 1969, + "cast": [ + "Clint Eastwood", + "Lee Marvin", + "Jean Seberg" + ], + "genres": [ + "Musical", + "Western" + ] + }, + { + "title": "Popi", + "year": 1969, + "cast": [ + "Alan Arkin", + "Rita Moreno" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Putney Swope", + "year": 1969, + "cast": [ + "Arnold Johnson", + "Antonio Fargas" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Rain People", + "year": 1969, + "cast": [ + "Shirley Knight", + "James Caan", + "Robert Duvall" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Rascal", + "year": 1969, + "cast": [ + "Bill Mumy", + "Steve Forrest" + ], + "genres": [ + "Family" + ] + }, + { + "title": "The Reivers", + "year": 1969, + "cast": [ + "Steve McQueen" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Riot", + "year": 1969, + "cast": [ + "Gene Hackman", + "Jim Brown" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Royal Hunt of the Sun", + "year": 1969, + "cast": [ + "Robert Shaw", + "Christopher Plummer", + "Nigel Davenport" + ], + "genres": [ + "Historical" + ] + }, + { + "title": "Salesman", + "year": 1969, + "cast": [ + "Paul Brennan" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Sam Whiskey", + "year": 1969, + "cast": [ + "Burt Reynolds", + "Angie Dickinson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Secret Sex Lives of Romeo and Juliet", + "year": 1969, + "cast": [ + "Deirdre Nelson" + ], + "genres": [ + "Erotic", + "Comedy" + ] + }, + { + "title": "The Secret of Santa Vittoria", + "year": 1969, + "cast": [ + "Anna Magnani", + "Anthony Quinn", + "Virna Lisi" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Shark!", + "year": 1969, + "cast": [ + "Burt Reynolds", + "Arthur Kennedy", + "Silvia Pinal" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Sidehackers", + "year": 1969, + "cast": [ + "Diane McBain" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Slaves", + "year": 1969, + "cast": [ + "Stephen Boyd", + "Dionne Warwick", + "Ossie Davis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Some Kind of a Nut", + "year": 1969, + "cast": [ + "Dick Van Dyke", + "Angie Dickinson", + "Rosemary Forsyth" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Sterile Cuckoo", + "year": 1969, + "cast": [ + "Liza Minnelli", + "Wendell Burton", + "Tim McIntire" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Stiletto", + "year": 1969, + "cast": [ + "Alex Cord", + "Britt Ekland", + "Patrick O'Neal" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Support Your Local Sheriff", + "year": 1969, + "cast": [ + "James Garner", + "Walter Brennan", + "Joan Hackett" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Sweet Charity", + "year": 1969, + "cast": [ + "Shirley MacLaine", + "Chita Rivera", + "Ricardo Montalbán", + "John McMartin", + "Paula Kelly", + "Sammy Davis Jr." + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Take the Money and Run", + "year": 1969, + "cast": [ + "Woody Allen", + "Janet Margolin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Talent for Loving", + "year": 1969, + "cast": [ + "Richard Widmark", + "Cesar Romero", + "Caroline Munro" + ], + "genres": [ + "Western", + "Comedy" + ] + }, + { + "title": "Tell Them Willie Boy Is Here", + "year": 1969, + "cast": [ + "Robert Redford", + "Katharine Ross", + "Robert Blake" + ], + "genres": [ + "Drama", + "Western" + ] + }, + { + "title": "That Cold Day in the Park", + "year": 1969, + "cast": [ + "Sandy Dennis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "They Shoot Horses, Don't They?", + "year": 1969, + "cast": [ + "Jane Fonda", + "Michael Sarrazin", + "Gig Young", + "Susannah York", + "Red Buttons" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Time for Dying", + "year": 1969, + "cast": [ + "Audie Murphy", + "Beatrice Kay" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Topaz", + "year": 1969, + "cast": [ + "John Forsythe", + "Roscoe Lee Browne", + "John Vernon" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Trilogy", + "year": 1969, + "cast": [ + "Geraldine Page", + "Maureen Stapleton", + "Mildred Natwick" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Trouble with Girls", + "year": 1969, + "cast": [ + "Elvis Presley", + "Sheree North", + "Dabney Coleman", + "Vincent Price" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "True Grit", + "year": 1969, + "cast": [ + "John Wayne", + "Kim Darby", + "Glen Campbell", + "Dennis Hopper", + "Robert Duvall" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Undefeated", + "year": 1969, + "cast": [ + "John Wayne", + "Rock Hudson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Valley of Gwangi", + "year": 1969, + "cast": [ + "James Franciscus" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Viva Max!", + "year": 1969, + "cast": [ + "Peter Ustinov", + "Jonathan Winters", + "Pamela Tiffin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Wedding Party", + "year": 1969, + "cast": [ + "Jill Clayburgh", + "Robert De Niro" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "What Ever Happened to Aunt Alice?", + "year": 1969, + "cast": [ + "Geraldine Page", + "Ruth Gordon", + "Rosemary Forsyth" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Where It's At", + "year": 1969, + "cast": [ + "David Janssen", + "Don Rickles", + "Rosemary Forsyth" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Wild Bunch", + "year": 1969, + "cast": [ + "William Holden", + "Ernest Borgnine", + "Warren Oates", + "Robert Ryan", + "Edmond O'Brien", + "Ben Johnson", + "Jaime Sánchez", + "Emilio Fernández" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Winning", + "year": 1969, + "cast": [ + "Paul Newman", + "Joanne Woodward", + "Robert Wagner" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Wonderful Land of Oz", + "year": 1969, + "cast": [ + "Al Joseph" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Wrecking Crew", + "year": 1969, + "cast": [ + "Dean Martin", + "Elke Sommer", + "Nancy Kwan", + "Sharon Tate" + ], + "genres": [ + "Spy", + "Comedy" + ] + }, + { + "title": "Young Billy Young", + "year": 1969, + "cast": [ + "Robert Mitchum", + "Angie Dickinson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Adam at Six A.M.", + "year": 1970, + "cast": [ + "Michael Douglas", + "Lee Purcell", + "Joe Don Baker", + "Louise Latham" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Adventurers", + "year": 1970, + "cast": [ + "Bekim Fehmiu", + "Candice Bergen", + "Charles Aznavour", + "Olivia de Havilland" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Airport", + "year": 1970, + "cast": [ + "Burt Lancaster", + "Dean Martin", + "Jean Seberg", + "Jacqueline Bisset", + "Maureen Stapleton", + "Van Heflin", + "George Kennedy", + "Helen Hayes", + "Lloyd Nolan", + "Dana Wynter", + "Barbara Hale" + ], + "genres": [ + "Disaster" + ] + }, + { + "title": "Alex in Wonderland", + "year": 1970, + "cast": [ + "Donald Sutherland", + "Ellen Burstyn", + "Federico Fellini" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Angel Levine", + "year": 1970, + "cast": [ + "Zero Mostel", + "Harry Belafonte", + "Ida Kaminska" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Angel Unchained", + "year": 1970, + "cast": [ + "Larry Bishop", + "Tyne Daly", + "Aldo Ray" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Aristocats", + "year": 1970, + "cast": [ + "Phil Harris", + "Eva Gabor", + "Gary Dubin" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "The Baby Maker", + "year": 1970, + "cast": [ + "Barbara Hershey", + "Collin Wilcox Paxton", + "Scott Glenn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Ballad of Cable Hogue", + "year": 1970, + "cast": [ + "Jason Robards", + "Stella Stevens", + "David Warner" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Barquero", + "year": 1970, + "cast": [ + "Lee Van Cleef", + "Warren Oates" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Beneath the Planet of the Apes", + "year": 1970, + "cast": [ + "James Franciscus", + "Kim Hunter", + "Maurice Evans", + "Linda Harrison" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Beyond the Valley of the Dolls", + "year": 1970, + "cast": [ + "John Lazar", + "Dolly Read", + "Edy Williams" + ], + "genres": [ + "Erotic", + "Comedy" + ] + }, + { + "title": "Bigfoot", + "year": 1970, + "cast": [ + "John Carradine" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Bloody Mama", + "year": 1970, + "cast": [ + "Shelley Winters", + "Bruce Dern", + "Don Stroud" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Boatniks", + "year": 1970, + "cast": [ + "Robert Morse", + "Stefanie Powers", + "Phil Silvers", + "Norman Fell", + "Don Ameche" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Boys in the Band", + "year": 1970, + "cast": [ + "Kenneth Nelson", + "Cliff Gorman" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Brewster McCloud", + "year": 1970, + "cast": [ + "Bud Cort", + "Sally Kellerman", + "Shelley Duvall" + ], + "genres": [ + "Fantasy", + "Comedy" + ] + }, + { + "title": "A Bullet for Pretty Boy", + "year": 1970, + "cast": [ + "Fabian Forte", + "Jocelyn Lane" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Cannon for Cordoba", + "year": 1970, + "cast": [ + "George Peppard", + "Raf Vallone" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Catch-22", + "year": 1970, + "cast": [ + "Alan Arkin", + "Jon Voight", + "Bob Newhart", + "Orson Welles", + "Buck Henry", + "Martin Sheen", + "Bob Balaban", + "Richard Benjamin", + "Charles Grodin", + "Art Garfunkel", + "Paula Prentiss" + ], + "genres": [ + "War", + "Comedy" + ] + }, + { + "title": "Cherry, Harry & Raquel!", + "year": 1970, + "cast": [ + "Larissa Ely", + "Linda Ashton", + "Uschi Digard" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Cheyenne Social Club", + "year": 1970, + "cast": [ + "James Stewart", + "Henry Fonda", + "Shirley Jones" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Chisum", + "year": 1970, + "cast": [ + "John Wayne", + "Forrest Tucker", + "Ben Johnson", + "Glenn Corbett", + "Geoffrey Deuel", + "Christopher George" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Christine Jorgensen Story", + "year": 1970, + "cast": [ + "John Hansen" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Cockeyed Cowboys of Calico County", + "year": 1970, + "cast": [ + "Dan Blocker", + "Nanette Fabray", + "Jim Backus" + ], + "genres": [ + "Western", + "Comedy" + ] + }, + { + "title": "Colossus: The Forbin Project", + "year": 1970, + "cast": [ + "Susan Clark", + "Eric Braeden" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Cotton Comes to Harlem", + "year": 1970, + "cast": [ + "Redd Foxx", + "Godfrey Cambridge", + "Raymond St. Jacques" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Count Yorga, Vampire", + "year": 1970, + "cast": [ + "Robert Quarry", + "Michael Murphy" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Darker than Amber", + "year": 1970, + "cast": [ + "Rod Taylor", + "Theodore Bikel", + "Suzy Kendall" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Darling Lili", + "year": 1970, + "cast": [ + "Julie Andrews", + "Rock Hudson" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Delta Factor", + "year": 1970, + "cast": [ + "Christopher George", + "Yvette Mimieux", + "Yvonne De Carlo" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Diary of a Mad Housewife", + "year": 1970, + "cast": [ + "Carrie Snodgress", + "Richard Benjamin", + "Frank Langella" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dirty Dingus Magee", + "year": 1970, + "cast": [ + "Frank Sinatra", + "George Kennedy", + "Anne Jackson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Dunwich Horror", + "year": 1970, + "cast": [ + "Sandra Dee", + "Dean Stockwell" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "El Condor", + "year": 1970, + "cast": [ + "Jim Brown", + "Lee Van Cleef" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Elvis: That's the Way It Is", + "year": 1970, + "cast": [ + "Elvis Presley" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "End of the Road", + "year": 1970, + "cast": [ + "Stacy Keach", + "Harris Yulin", + "Dorothy Tristan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Equinox", + "year": 1970, + "cast": [ + "Frank Bonner" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Five Easy Pieces", + "year": 1970, + "cast": [ + "Jack Nicholson", + "Susan Anspach", + "Karen Black" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Flesh Feast", + "year": 1970, + "cast": [ + "Veronica Lake" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Gas-s-s-s", + "year": 1970, + "cast": [ + "Ben Vereen", + "Talia Shire" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Getting Straight", + "year": 1970, + "cast": [ + "Elliott Gould", + "Candice Bergen" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Gimme Shelter", + "year": 1970, + "cast": [ + "The Rolling Stones" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Great White Hope", + "year": 1970, + "cast": [ + "James Earl Jones", + "Jane Alexander" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "The Hawaiians", + "year": 1970, + "cast": [ + "Charlton Heston", + "Tina Chen", + "Geraldine Chaplin", + "John Phillip Law" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hercules in New York", + "year": 1970, + "cast": [ + "Arnold Schwarzenegger", + "Arnold Stang" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hi, Mom!", + "year": 1970, + "cast": [ + "Robert De Niro", + "Allen Garfield" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Honeymoon Killers", + "year": 1970, + "cast": [ + "Shirley Stoler", + "Tony LoBianco" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Hornets’ Nest", + "year": 1970, + "cast": [ + "Rock Hudson", + "Sylvia Koscina", + "Sergio Fantoni" + ], + "genres": [ + "War" + ] + }, + { + "title": "House of Dark Shadows", + "year": 1970, + "cast": [ + "Jonathan Frid", + "Grayson Hall" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "How Do I Love Thee?", + "year": 1970, + "cast": [ + "Jackie Gleason", + "Maureen O'Hara" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Husbands", + "year": 1970, + "cast": [ + "Peter Falk", + "Ben Gazzara" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "I Drink Your Blood", + "year": 1970, + "cast": [ + "Jadine Wong" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "I Love My Wife", + "year": 1970, + "cast": [ + "Elliott Gould", + "Brenda Vaccaro", + "Dabney Coleman", + "Angel Tompkins" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "I Never Sang for My Father", + "year": 1970, + "cast": [ + "Melvyn Douglas", + "Gene Hackman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "I Walk the Line", + "year": 1970, + "cast": [ + "Gregory Peck", + "Tuesday Weld" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Invincible Six", + "year": 1970, + "cast": [ + "Stuart Whitman", + "Elke Sommer", + "Curd Jürgens" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Jenny", + "year": 1970, + "cast": [ + "Marlo Thomas", + "Alan Alda" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Joe", + "year": 1970, + "cast": [ + "Peter Boyle", + "Susan Sarandon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Kelly's Heroes", + "year": 1970, + "cast": [ + "Clint Eastwood", + "Telly Savalas", + "Don Rickles", + "Carroll O'Connor", + "Donald Sutherland" + ], + "genres": [ + "War", + "Action" + ] + }, + { + "title": "King: A Filmed Record... Montgomery to Memphis", + "year": 1970, + "cast": [ + "Paul Newman", + "James Earl Jones" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Kremlin Letter", + "year": 1970, + "cast": [ + "Richard Boone", + "Max von Sydow" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Lady in the Car with Glasses and a Gun", + "year": 1970, + "cast": [ + "Samantha Eggar", + "Oliver Reed" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Landlord", + "year": 1970, + "cast": [ + "Beau Bridges", + "Louis Gossett Jr.", + "Lee Grant", + "Diana Sands", + "Pearl Bailey" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Last of the Mobile Hot Shots", + "year": 1970, + "cast": [ + "James Coburn", + "Lynn Redgrave" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Last Warrior", + "year": 1970, + "cast": [ + "Anthony Quinn", + "Claude Akins", + "Shelley Winters", + "Tony Bill" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Liberation of L.B. Jones", + "year": 1970, + "cast": [ + "Roscoe Lee Browne", + "Lee J. Cobb", + "Lola Falana", + "Yaphet Kotto" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Little Big Man", + "year": 1970, + "cast": [ + "Dustin Hoffman", + "Faye Dunaway", + "Martin Balsam", + "Chief Dan George" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Little Fauss and Big Halsy", + "year": 1970, + "cast": [ + "Robert Redford", + "Michael J. Pollard" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Love Story", + "year": 1970, + "cast": [ + "Ryan O'Neal", + "Ali MacGraw", + "Ray Milland", + "John Marley" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Lovers and Other Strangers", + "year": 1970, + "cast": [ + "Bea Arthur", + "Cloris Leachman", + "Vincent Gardenia", + "Richard Castellano", + "Bonnie Bedelia", + "Gig Young", + "Diane Keaton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Loving", + "year": 1970, + "cast": [ + "George Segal", + "Eva Marie Saint" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "M\"A*S*H", + "year": 1970, + "cast": [ + "Donald Sutherland", + "Elliott Gould", + "Sally Kellerman", + "Tom Skerritt", + "Jo Ann Pflug", + "John Schuck", + "Robert Duvall", + "René Auberjonois", + "Roger Bowen", + "Fred Williamson" + ], + "genres": [ + "Comedy", + "War" + ] + }, + { + "title": "Macho Callahan", + "year": 1970, + "cast": [ + "David Janssen", + "Jean Seberg", + "Lee J. Cobb" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Maidstone", + "year": 1970, + "cast": [ + "Norman Mailer", + "Rip Torn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Man Called Horse", + "year": 1970, + "cast": [ + "Richard Harris" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Molly Maguires", + "year": 1970, + "cast": [ + "Sean Connery", + "Richard Harris" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Monty Walsh", + "year": 1970, + "cast": [ + "Lee Marvin", + "Jack Palance", + "Jeanne Moreau" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Moonshine War", + "year": 1970, + "cast": [ + "Alan Alda", + "Richard Widmark", + "Patrick McGoohan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Move", + "year": 1970, + "cast": [ + "Elliott Gould", + "Paula Prentiss", + "Joe Silver" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "My Lover, My Son", + "year": 1970, + "cast": [ + "Romy Schneider", + "Dennis Waterman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Myra Breckinridge", + "year": 1970, + "cast": [ + "Raquel Welch", + "Mae West", + "Rex Reed", + "John Huston", + "Farrah Fawcett" + ], + "genres": [ + "Erotic", + "Comedy" + ] + }, + { + "title": "Nam's Angels", + "year": 1970, + "cast": [ + "Paul Koslo" + ], + "genres": [ + "War" + ] + }, + { + "title": "Norwood", + "year": 1970, + "cast": [ + "Glen Campbell", + "Kim Darby", + "Joe Namath" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Old Man Who Cried Wolf", + "year": 1970, + "cast": [ + "Edward G. Robinson", + "Martin Balsam", + "Diane Baker" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "On a Clear Day You Can See Forever", + "year": 1970, + "cast": [ + "Barbra Streisand", + "Yves Montand", + "Jack Nicholson" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "One More Time", + "year": 1970, + "cast": [ + "Sammy Davis, Jr.", + "Peter Lawford" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Only Game in Town", + "year": 1970, + "cast": [ + "Elizabeth Taylor", + "Warren Beatty" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Out-of-Towners", + "year": 1970, + "cast": [ + "Jack Lemmon", + "Sandy Dennis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Owl and the Pussycat", + "year": 1970, + "cast": [ + "Barbra Streisand", + "George Segal" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Party at Kitty and Stud's", + "year": 1970, + "cast": [ + "Sylvester Stallone" + ], + "genres": [ + "Erotic" + ] + }, + { + "title": "Patton", + "year": 1970, + "cast": [ + "George C. Scott", + "Karl Malden" + ], + "genres": [ + "War", + "Biography" + ] + }, + { + "title": "The People Next Door", + "year": 1970, + "cast": [ + "Eli Wallach", + "Julie Harris", + "Deborah Winters" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Phantom Tollbooth", + "year": 1970, + "cast": [ + "Butch Patrick", + "Mel Blanc" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "The Phynx", + "year": 1970, + "cast": [ + "Joan Blondell", + "Ultra Violet" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Puzzle of a Downfall Child", + "year": 1970, + "cast": [ + "Faye Dunaway", + "Roy Scheider", + "Barry Primus" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Quackser Fortune Has a Cousin in the Bronx", + "year": 1970, + "cast": [ + "Gene Wilder", + "Margot Kidder" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "R. P. M.", + "year": 1970, + "cast": [ + "Anthony Quinn", + "Ann-Margret", + "Gary Lockwood" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Rabbit, Run", + "year": 1970, + "cast": [ + "James Caan", + "Carrie Snodgress", + "Anjanette Comer" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Rebel Rousers", + "year": 1970, + "cast": [ + "Cameron Mitchell", + "Jack Nicholson" + ], + "genres": [] + }, + { + "title": "The Revolutionary", + "year": 1970, + "cast": [ + "Jon Voight", + "Seymour Cassel", + "Robert Duvall" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Rio Lobo", + "year": 1970, + "cast": [ + "John Wayne", + "Jorge Rivero", + "Jennifer O'Neill" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Skullduggery", + "year": 1970, + "cast": [ + "Burt Reynolds", + "Susan Clark" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Soldier Blue", + "year": 1970, + "cast": [ + "Candice Bergen", + "Peter Strauss" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Something for Everyone", + "year": 1970, + "cast": [ + "Angela Lansbury", + "Michael York", + "Anthony Higgins" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Sometimes a Great Notion", + "year": 1970, + "cast": [ + "Paul Newman", + "Henry Fonda", + "Lee Remick", + "Michael Sarrazin", + "Richard Jaeckel" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Start the Revolution Without Me", + "year": 1970, + "cast": [ + "Gene Wilder", + "Donald Sutherland" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Strawberry Statement", + "year": 1970, + "cast": [ + "Bruce Davison", + "Kim Darby", + "Bud Cort" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Street Scenes", + "year": 1970, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "Suppose They Gave a War and Nobody Came", + "year": 1970, + "cast": [ + "Brian Keith", + "Tony Curtis", + "Don Ameche" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Tell Me That You Love Me, Junie Moon", + "year": 1970, + "cast": [ + "Liza Minnelli", + "Ken Howard" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "There Was a Crooked Man...", + "year": 1970, + "cast": [ + "Kirk Douglas", + "Henry Fonda", + "Warren Oates", + "Burgess Meredith", + "Hume Cronyn", + "Martin Gabel" + ], + "genres": [ + "Western", + "Comedy" + ] + }, + { + "title": "They Call Me MISTER Tibbs!", + "year": 1970, + "cast": [ + "Sidney Poitier", + "Martin Landau", + "Barbara McNair" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "...tick...tick...tick...", + "year": 1970, + "cast": [ + "Jim Brown", + "George Kennedy", + "Fredric March" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Too Late the Hero", + "year": 1970, + "cast": [ + "Michael Caine", + "Cliff Robertson", + "Henry Fonda" + ], + "genres": [ + "War" + ] + }, + { + "title": "Tora! Tora! Tora!", + "year": 1970, + "cast": [ + "Jason Robards", + "So Yamamura", + "Martin Balsam", + "Joseph Cotten", + "James Whitmore", + "E.G. Marshall" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "Trash", + "year": 1970, + "cast": [ + "Joe Dallesandro", + "Holly Woodlawn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Tribes", + "year": 1970, + "cast": [ + "Darren McGavin", + "Earl Holliman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Traveling Executioner", + "year": 1970, + "cast": [ + "Stacy Keach", + "Bud Cort", + "Marianna Hill" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Twelve Chairs", + "year": 1970, + "cast": [ + "Frank Langella", + "Ron Moody", + "Dom DeLuise" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Two Mules for Sister Sara", + "year": 1970, + "cast": [ + "Clint Eastwood", + "Shirley MacLaine" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Up in the Cellar", + "year": 1970, + "cast": [ + "Joan Collins", + "Larry Hagman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "WUSA", + "year": 1970, + "cast": [ + "Paul Newman", + "Joanne Woodward", + "Anthony Perkins" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Walk in the Spring Rain", + "year": 1970, + "cast": [ + "Ingrid Bergman", + "Anthony Quinn" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Walk the Walk", + "year": 1970, + "cast": [ + "Bernie Hamilton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Watermelon Man", + "year": 1970, + "cast": [ + "Godfrey Cambridge", + "D'Urville Martin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "What Do You Say to a Naked Lady?", + "year": 1970, + "cast": [ + "Richard Roundtree" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Where's Poppa?", + "year": 1970, + "cast": [ + "George Segal", + "Ruth Gordon", + "Ron Leibman" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Which Way to the Front?", + "year": 1970, + "cast": [ + "Jerry Lewis", + "Jan Murray" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Wild Country", + "year": 1970, + "cast": [ + "Vera Miles", + "Steve Forrest" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Wild Scene", + "year": 1970, + "cast": [ + "John Craven" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Wizard of Gore", + "year": 1970, + "cast": [ + "Ray Sager" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Woodstock", + "year": 1970, + "cast": [ + "Jimi Hendrix", + "The Who", + "Jefferson Airplane", + "Santana", + "Joe Cocker", + "Janis Joplin", + "Arlo Guthrie", + "Joan Baez", + "Crosby", + "Stills & Nash", + "Sly and the Family Stone" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Yin and the Yang of Mr. Go", + "year": 1970, + "cast": [ + "James Mason", + "Jeff Bridges", + "Irene Tsu" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "You Can't Win 'Em All", + "year": 1970, + "cast": [ + "Tony Curtis", + "Charles Bronson" + ], + "genres": [ + "War" + ] + }, + { + "title": "Zabriskie Point", + "year": 1970, + "cast": [ + "Daria Halprin", + "G. D. Spradlin", + "Rod Taylor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Zig Zag", + "year": 1970, + "cast": [ + "George Kennedy", + "Anne Jackson", + "Eli Wallach" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "$ aka Dollars", + "year": 1971, + "cast": [ + "Warren Beatty", + "Goldie Hawn" + ], + "genres": [ + "Crime", + "Comedy" + ] + }, + { + "title": "200 Motels", + "year": 1971, + "cast": [ + "Frank Zappa", + "Ringo Starr", + "Theodore Bikel" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "The Anderson Tapes", + "year": 1971, + "cast": [ + "Sean Connery", + "Dyan Cannon", + "Christopher Walken", + "Martin Balsam", + "Alan King" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Andromeda Strain", + "year": 1971, + "cast": [ + "Arthur Hill", + "James Olson", + "Kate Reid", + "David Wayne", + "Paula Kelly" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Bad Man's River", + "year": 1971, + "cast": [ + "Lee Van Cleef", + "Gina Lollobrigida" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Bananas", + "year": 1971, + "cast": [ + "Woody Allen", + "Louise Lasser" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Barefoot Executive", + "year": 1971, + "cast": [ + "Kurt Russell", + "Joe Flynn" + ], + "genres": [ + "Comedy", + "Family" + ] + }, + { + "title": "The Battle of Love's Return", + "year": 1971, + "cast": [ + "Lloyd Kaufman", + "Lynn Lowry", + "Oliver Stone" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Bedknobs and Broomsticks", + "year": 1971, + "cast": [ + "Angela Lansbury", + "David Tomlinson" + ], + "genres": [ + "Musical", + "Fantasy" + ] + }, + { + "title": "The Beguiled", + "year": 1971, + "cast": [ + "Clint Eastwood", + "Geraldine Page", + "Elizabeth Hartman", + "Darlene Carr", + "Jo Ann Harris" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Big Doll House", + "year": 1971, + "cast": [ + "Roberta Collins", + "Pam Grier" + ], + "genres": [] + }, + { + "title": "Big Jake", + "year": 1971, + "cast": [ + "John Wayne", + "Maureen O'Hara", + "Richard Boone" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Billy Jack", + "year": 1971, + "cast": [ + "Tom Laughlin", + "Delores Taylor", + "Kenneth Tobey", + "Howard Hesseman" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Bless the Beasts and Children", + "year": 1971, + "cast": [ + "Bill Mumy", + "Barry Robins", + "Miles Chapin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Blood and Lace", + "year": 1971, + "cast": [ + "Gloria Grahame", + "Melody Patterson" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Blood Thirst", + "year": 1971, + "cast": [ + "Robert Winston", + "Yvonne Nielson", + "Judy Dennis" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Born to Win", + "year": 1971, + "cast": [ + "George Segal", + "Paula Prentiss", + "Karen Black" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Brian's Song", + "year": 1971, + "cast": [ + "James Caan", + "Billy Dee Williams", + "Shelley Fabares", + "Jack Warden" + ], + "genres": [ + "Biography", + "Drama" + ] + }, + { + "title": "Brother John", + "year": 1971, + "cast": [ + "Sidney Poitier", + "Will Geer", + "Bradford Dillman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Bunny O'Hare", + "year": 1971, + "cast": [ + "Bette Davis", + "Ernest Borgnine" + ], + "genres": [ + "Crime", + "Comedy" + ] + }, + { + "title": "Cain's Cutthroats", + "year": 1971, + "cast": [ + "John Carradine", + "Scott Brady" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Carnal Knowledge", + "year": 1971, + "cast": [ + "Jack Nicholson", + "Ann-Margret", + "Art Garfunkel", + "Candice Bergen", + "Rita Moreno" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Catlow", + "year": 1971, + "cast": [ + "Yul Brynner", + "Richard Crenna", + "Leonard Nimoy" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Chrome and Hot Leather", + "year": 1971, + "cast": [ + "William Smith", + "Kathrine Baumann", + "Marvin Gaye" + ], + "genres": [] + }, + { + "title": "Clay Pigeon", + "year": 1971, + "cast": [ + "Telly Savalas", + "Burgess Meredith" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Cold Turkey", + "year": 1971, + "cast": [ + "Dick Van Dyke", + "Bob Newhart" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Cry Uncle!", + "year": 1971, + "cast": [ + "Allen Garfield", + "Marcia Jean Kurtz" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Day of the Wolves", + "year": 1971, + "cast": [ + "Richard Egan", + "Martha Hyer", + "Jan Murray" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Deadly Trap", + "year": 1971, + "cast": [ + "Faye Dunaway", + "Frank Langella" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Deserter", + "year": 1971, + "cast": [ + "Bekim Fehmiu", + "John Huston", + "Richard Crenna", + "Ricardo Montalbán", + "Chuck Connors" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Desperate Characters", + "year": 1971, + "cast": [ + "Shirley MacLaine", + "Kenneth Mars" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Die Screaming, Marianne", + "year": 1971, + "cast": [ + "Susan George", + "Leo Genn" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Dirty Harry", + "year": 1971, + "cast": [ + "Clint Eastwood", + "Andrew Robinson", + "Reni Santoni", + "Harry Guardino", + "John Vernon" + ], + "genres": [ + "Drama", + "Action" + ] + }, + { + "title": "Doc", + "year": 1971, + "cast": [ + "Stacy Keach", + "Faye Dunaway", + "Harris Yulin" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Doctors' Wives", + "year": 1971, + "cast": [ + "Dyan Cannon", + "Richard Crenna", + "Gene Hackman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dracula vs. Frankenstein", + "year": 1971, + "cast": [ + "Lon Chaney, Jr.", + "J. Carrol Naish" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Drive, He Said", + "year": 1971, + "cast": [ + "William Tepper", + "Karen Black", + "Bruce Dern" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Duel", + "year": 1971, + "cast": [ + "Dennis Weaver", + "Jacqueline Scott" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Escape from the Planet of the Apes", + "year": 1971, + "cast": [ + "Roddy McDowall", + "Kim Hunter", + "Sal Mineo" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Evel Knievel", + "year": 1971, + "cast": [ + "George Hamilton", + "Sue Lyon", + "Bert Freed" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Fiddler on the Roof", + "year": 1971, + "cast": [ + "Topol", + "Norma Crane", + "Molly Picon", + "Paul Mann", + "Leonard Frey", + "Rosalind Harris", + "Michele Marsh" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Fools' Parade", + "year": 1971, + "cast": [ + "James Stewart", + "Kurt Russell", + "George Kennedy" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Four Rode Out", + "year": 1971, + "cast": [ + "Sue Lyon", + "Leslie Nielsen" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The French Connection", + "year": 1971, + "cast": [ + "Gene Hackman", + "Roy Scheider" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Fright", + "year": 1971, + "cast": [ + "Honor Blackman", + "Susan George" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "The Gang That Couldn't Shoot Straight", + "year": 1971, + "cast": [ + "Jerry Orbach", + "Robert De Niro" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Going Home", + "year": 1971, + "cast": [ + "Robert Mitchum", + "Brenda Vaccaro" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Grissom Gang", + "year": 1971, + "cast": [ + "Kim Darby", + "Scott Wilson", + "Tony Musante" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "A Gunfight", + "year": 1971, + "cast": [ + "Kirk Douglas", + "Johnny Cash" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Hannie Caulder", + "year": 1971, + "cast": [ + "Raquel Welch", + "Ernest Borgnine", + "Robert Culp", + "Strother Martin", + "Jack Elam", + "Christopher Lee" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Happy Birthday, Wanda June", + "year": 1971, + "cast": [ + "Rod Steiger", + "Don Murray", + "Susannah York" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Hard Ride", + "year": 1971, + "cast": [ + "Robert Fuller" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Harold and Maude", + "year": 1971, + "cast": [ + "Bud Cort", + "Ruth Gordon", + "Vivian Pickles" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Hellstrom Chronicle", + "year": 1971, + "cast": [ + "Lawrence Pressman" + ], + "genres": [ + "Satire" + ] + }, + { + "title": "The Hired Hand", + "year": 1971, + "cast": [ + "Peter Fonda", + "Warren Oates" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Horsemen", + "year": 1971, + "cast": [ + "Omar Sharif", + "Leigh Taylor-Young", + "Jack Palance" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Hospital", + "year": 1971, + "cast": [ + "George C. Scott", + "Diana Rigg", + "Barnard Hughes" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "How to Frame a Figg", + "year": 1971, + "cast": [ + "Don Knotts", + "Joe Flynn", + "Yvonne Craig" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Hunting Party", + "year": 1971, + "cast": [ + "Gene Hackman", + "Oliver Reed", + "Candice Bergen" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Incredible 2-Headed Transplant", + "year": 1971, + "cast": [ + "Bruce Dern", + "Pat Priest" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Johnny Got His Gun", + "year": 1971, + "cast": [ + "Timothy Bottoms", + "Diane Varsi", + "Donald Sutherland" + ], + "genres": [ + "Drama", + "War" + ] + }, + { + "title": "Kidnapped", + "year": 1971, + "cast": [ + "Michael Caine", + "Trevor Howard", + "Donald Pleasence" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Klute", + "year": 1971, + "cast": [ + "Jane Fonda", + "Donald Sutherland", + "Roy Scheider" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Kotch", + "year": 1971, + "cast": [ + "Walter Matthau", + "Deborah Winters", + "Felicia Farr" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Last Movie", + "year": 1971, + "cast": [ + "Dennis Hopper", + "Toni Basil" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Last Picture Show", + "year": 1971, + "cast": [ + "Jeff Bridges", + "Timothy Bottoms", + "Cybill Shepherd", + "Cloris Leachman", + "Ben Johnson", + "Ellen Burstyn", + "Eileen Brennan", + "Randy Quaid" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Last Run", + "year": 1971, + "cast": [ + "George C. Scott", + "Tony Musante", + "Trish Van Devere" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Lawman", + "year": 1971, + "cast": [ + "Burt Lancaster", + "Robert Ryan", + "Lee J. Cobb", + "Sheree North", + "J.D. Cannon", + "Albert Salmi", + "Robert Duvall" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Le Mans", + "year": 1971, + "cast": [ + "Steve McQueen", + "Siegfried Rauch" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Let's Scare Jessica to Death", + "year": 1971, + "cast": [ + "Zohra Lampert" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Light at the Edge of the World", + "year": 1971, + "cast": [ + "Kirk Douglas", + "Yul Brynner", + "Samantha Eggar" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Little Murders", + "year": 1971, + "cast": [ + "Elliott Gould", + "Marcia Rodd", + "Doris Roberts", + "Elizabeth Wilson", + "Vincent Gardenia" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Love Machine", + "year": 1971, + "cast": [ + "Dyan Cannon", + "John Phillip Law", + "Robert Ryan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Made for Each Other", + "year": 1971, + "cast": [ + "Renée Taylor", + "Joseph Bologna", + "Paul Sorvino" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Man in the Wilderness", + "year": 1971, + "cast": [ + "Richard Harris", + "John Huston" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Marriage of a Young Stockbroker", + "year": 1971, + "cast": [ + "Richard Benjamin", + "Joanna Shimkus", + "Adam West" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "McCabe & Mrs. Miller", + "year": 1971, + "cast": [ + "Warren Beatty", + "Julie Christie", + "William Devane", + "René Auberjonois", + "Keith Carradine" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Mephisto Waltz", + "year": 1971, + "cast": [ + "Alan Alda", + "Jacqueline Bisset", + "Barbara Parkins" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Million Dollar Duck", + "year": 1971, + "cast": [ + "Dean Jones", + "Sandy Duncan", + "Tony Roberts" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Minnie and Moskowitz", + "year": 1971, + "cast": [ + "John Cassavetes", + "Gena Rowlands", + "Seymour Cassel" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Mrs. Pollifax-Spy", + "year": 1971, + "cast": [ + "Rosalind Russell", + "Darren McGavin" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Murders in the Rue Morgue", + "year": 1971, + "cast": [ + "Jason Robards", + "Herbert Lom" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "Murphy's War", + "year": 1971, + "cast": [ + "Peter O'Toole" + ], + "genres": [ + "War" + ] + }, + { + "title": "Necromania", + "year": 1971, + "cast": [ + "Maria Arnold", + "Ed Wood" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "A New Leaf", + "year": 1971, + "cast": [ + "Walter Matthau", + "Elaine May", + "James Coco", + "Jack Weston", + "Doris Roberts" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Night God Screamed", + "year": 1971, + "cast": [ + "Jeanne Crain", + "Alex Nicol", + "Daniel Spelling", + "Michael Sugich", + "Barbara Hancock", + "Dawn Cleary", + "Gary Morgan" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Night of Dark Shadows", + "year": 1971, + "cast": [ + "Kate Jackson", + "David Selby", + "Lara Parker" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Octaman", + "year": 1971, + "cast": [ + "Pier Angeli", + "Jeff Morrow" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Omega Man", + "year": 1971, + "cast": [ + "Charlton Heston", + "Rosalind Cash", + "Anthony Zerbe" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "One More Train to Rob", + "year": 1971, + "cast": [ + "George Peppard", + "Diana Muldaur", + "John Vernon" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Panic in Needle Park", + "year": 1971, + "cast": [ + "Al Pacino", + "Kitty Winn", + "Kiel Martin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Pink Narcissus", + "year": 1971, + "cast": [ + "Don Brooks" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Play Misty for Me", + "year": 1971, + "cast": [ + "Clint Eastwood", + "Jessica Walter", + "Donna Mills" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Plaza Suite", + "year": 1971, + "cast": [ + "Walter Matthau", + "Lee Grant", + "Maureen Stapleton", + "Barbara Harris" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Pretty Maids All in a Row", + "year": 1971, + "cast": [ + "Rock Hudson", + "Angie Dickinson" + ], + "genres": [ + "Mystery", + "Comedy" + ] + }, + { + "title": "Punishment Park", + "year": 1971, + "cast": [ + "Scott Turner" + ], + "genres": [ + "Satire" + ] + }, + { + "title": "The Pursuit of Happiness", + "year": 1971, + "cast": [ + "Michael Sarrazin", + "Barbara Hershey", + "Robert Klein" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Raid on Rommel", + "year": 1971, + "cast": [ + "Richard Burton", + "John Colicos", + "Wolfgang Preiss" + ], + "genres": [ + "War" + ] + }, + { + "title": "Red Sky at Morning", + "year": 1971, + "cast": [ + "Desi Arnaz, Jr.", + "Catherine Burns", + "Richard Crenna" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Resurrection of Zachary Wheeler", + "year": 1971, + "cast": [ + "Angie Dickinson", + "Bradford Dillman", + "Leslie Nielsen" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Return of Count Yorga", + "year": 1971, + "cast": [ + "Robert Quarry", + "Mariette Hartley" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "A Safe Place", + "year": 1971, + "cast": [ + "Jack Nicholson", + "Tuesday Weld", + "Orson Welles" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Sandpit Generals", + "year": 1971, + "cast": [ + "Tisha Sterling" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "See No Evil", + "year": 1971, + "cast": [ + "Mia Farrow" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "The Seven Minutes", + "year": 1971, + "cast": [ + "Edy Williams", + "Yvonne De Carlo", + "Tom Selleck" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Shaft", + "year": 1971, + "cast": [ + "Richard Roundtree", + "Moses Gunn" + ], + "genres": [ + "Crime", + "Action" + ] + }, + { + "title": "Shoot Out", + "year": 1971, + "cast": [ + "Gregory Peck", + "James Gregory", + "Patricia Quinn", + "Jeff Corey", + "Susan Tyrrell" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Simon, King of the Witches", + "year": 1971, + "cast": [ + "Allyson Ames" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Skin Game", + "year": 1971, + "cast": [ + "James Garner", + "Louis Gossett, Jr.", + "Susan Clark" + ], + "genres": [ + "Western", + "Comedy" + ] + }, + { + "title": "Something Big", + "year": 1971, + "cast": [ + "Dean Martin", + "Brian Keith", + "Ben Johnson", + "Carol White", + "Honor Blackman" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Sometimes a Great Notion", + "year": 1971, + "cast": [ + "Paul Newman", + "Henry Fonda", + "Lee Remick", + "Michael Sarrazin", + "Richard Jaeckel" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Soul to Soul", + "year": 1971, + "cast": [ + "Tina Turner", + "Ike Turner", + "Carlos Santana" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Star Spangled Girl", + "year": 1971, + "cast": [ + "Sandy Duncan", + "Tony Roberts" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Straw Dogs", + "year": 1971, + "cast": [ + "Dustin Hoffman", + "Susan George", + "David Warner" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Such Good Friends", + "year": 1971, + "cast": [ + "Dyan Cannon", + "James Coco", + "Jennifer O'Neill" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Summer of '42", + "year": 1971, + "cast": [ + "Jennifer O'Neill", + "Gary Grimes", + "Jerry Houser" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Summertree", + "year": 1971, + "cast": [ + "Michael Douglas", + "Brenda Vaccaro" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sunday Bloody Sunday", + "year": 1971, + "cast": [ + "Glenda Jackson", + "Peter Finch" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Support Your Local Gunfighter!", + "year": 1971, + "cast": [ + "James Garner", + "Suzanne Pleshette", + "Harry Morgan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Sweet Sweetback's Baadasssss Song", + "year": 1971, + "cast": [ + "Melvin Van Peebles", + "John Amos" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "THX 1138", + "year": 1971, + "cast": [ + "Robert Duvall", + "Donald Pleasence", + "Ian Wolfe", + "Don Pedro Colley" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "T.R. Baskin", + "year": 1971, + "cast": [ + "Candice Bergen", + "Peter Boyle", + "James Caan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Taking Off", + "year": 1971, + "cast": [ + "Lynn Carlin", + "Buck Henry", + "Georgia Engel" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "There's Always Vanilla", + "year": 1971, + "cast": [ + "Raymond Laine" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "They Might Be Giants", + "year": 1971, + "cast": [ + "George C. Scott", + "Joanne Woodward" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Touch", + "year": 1971, + "cast": [ + "Elliott Gould", + "Bibi Andersson", + "Max von Sydow" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Touch of Satan", + "year": 1971, + "cast": [ + "Michael Berry" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "A Town Called Bastard", + "year": 1971, + "cast": [ + "Robert Shaw", + "Stella Stevens", + "Telly Savalas" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Trojan Women", + "year": 1971, + "cast": [ + "Katharine Hepburn", + "Vanessa Redgrave", + "Geneviève Bujold", + "Irene Papas" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Two-Lane Blacktop", + "year": 1971, + "cast": [ + "Warren Oates", + "James Taylor", + "Dennis Wilson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Valdez Is Coming", + "year": 1971, + "cast": [ + "Burt Lancaster", + "Susan Clark", + "Jon Cypher" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Vanishing Point", + "year": 1971, + "cast": [ + "Barry Newman", + "Cleavon Little", + "Dean Jagger" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Villain", + "year": 1971, + "cast": [ + "Richard Burton", + "Ian McShane" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Von Richthofen and Brown", + "year": 1971, + "cast": [ + "John Phillip Law", + "Don Stroud" + ], + "genres": [ + "War" + ] + }, + { + "title": "Werewolves on Wheels", + "year": 1971, + "cast": [ + "Billy Gray" + ], + "genres": [ + "Horror", + "Action" + ] + }, + { + "title": "What's the Matter with Helen?", + "year": 1971, + "cast": [ + "Debbie Reynolds", + "Shelley Winters", + "Dennis Weaver" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Who Is Harry Kellerman and Why Is He Saying Those Terrible Things About Me?", + "year": 1971, + "cast": [ + "Dustin Hoffman", + "Jack Warden", + "Barbara Harris" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Who Killed Mary What's 'Er Name?", + "year": 1971, + "cast": [ + "Red Buttons", + "Sam Waterston" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Wild Rovers", + "year": 1971, + "cast": [ + "William Holden", + "Ryan O'Neal", + "Karl Malden", + "Joe Don Baker", + "Tom Skerritt" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Willard", + "year": 1971, + "cast": [ + "Bruce Davison", + "Ernest Borgnine", + "Elsa Lanchester" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Willy Wonka & the Chocolate Factory", + "year": 1971, + "cast": [ + "Gene Wilder", + "Jack Albertson", + "Peter Ostrum" + ], + "genres": [ + "Musical", + "Fantasy" + ] + }, + { + "title": "Women in Cages", + "year": 1971, + "cast": [ + "Pam Grier", + "Jennifer Gan" + ], + "genres": [ + "Action" + ] + }, + { + "title": "You've Got to Walk It Like You Talk It or You'll Lose That Beat", + "year": 1971, + "cast": [ + "Allen Garfield", + "Richard Pryor" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "Zachariah", + "year": 1971, + "cast": [ + "John Rubinstein", + "Dick Van Patten", + "Don Johnson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Zodiac Killer", + "year": 1971, + "cast": [ + "Hal Reed", + "Bob Jones", + "Ray Lynch", + "Tom Pittman" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "1776", + "year": 1972, + "cast": [ + "William Daniels", + "Howard Da Silva", + "Donald Madden", + "Ken Howard", + "John Cullum", + "Ron Holgate", + "Blythe Danner" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Across 110th Street", + "year": 1972, + "cast": [ + "Anthony Quinn", + "Yaphet Kotto", + "Tony Franciosa" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Another Nice Mess", + "year": 1972, + "cast": [ + "Rich Little", + "Herb Voland" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Avanti!", + "year": 1972, + "cast": [ + "Jack Lemmon", + "Juliet Mills", + "Clive Revill" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Bad Company", + "year": 1972, + "cast": [ + "Jeff Bridges", + "Barry Brown" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Ben", + "year": 1972, + "cast": [ + "Meredith Baxter", + "Joseph Campanella" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Behind the Green Door", + "year": 1972, + "cast": [ + "Marilyn Chambers", + "Johnnie Keyes" + ], + "genres": [ + "Erotic" + ] + }, + { + "title": "Beware! The Blob", + "year": 1972, + "cast": [ + "Robert Walker Jr.", + "Dick Van Patten" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Big Bird Cage", + "year": 1972, + "cast": [ + "Pam Grier", + "Anitra Ford", + "Sid Haig" + ], + "genres": [] + }, + { + "title": "Black Rage", + "year": 1972, + "cast": [ + "Ted Cassidy", + "Phyllis Robinson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Blacula", + "year": 1972, + "cast": [ + "William Marshall", + "Vonetta McGee" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Bluebeard", + "year": 1972, + "cast": [ + "Richard Burton", + "Raquel Welch", + "Joey Heatherton", + "Virna Lisi", + "Nathalie Delon" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Bone", + "year": 1972, + "cast": [ + "Yaphet Kotto", + "Andrew Duggan", + "Joyce Van Patten" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Boxcar Bertha", + "year": 1972, + "cast": [ + "Barbara Hershey", + "David Carradine", + "Barry Primus", + "John Carradine", + "Bernie Casey" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Buck and the Preacher", + "year": 1972, + "cast": [ + "Sidney Poitier", + "Harry Belafonte", + "Ruby Dee" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Butterflies Are Free", + "year": 1972, + "cast": [ + "Goldie Hawn", + "Edward Albert", + "Eileen Heckart", + "Paul Michael Glaser" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Cabaret", + "year": 1972, + "cast": [ + "Liza Minnelli", + "Joel Grey", + "Michael York" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Candidate", + "year": 1972, + "cast": [ + "Robert Redford", + "Melvyn Douglas", + "Peter Boyle" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Carey Treatment", + "year": 1972, + "cast": [ + "James Coburn", + "Jennifer O'Neill" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Chato's Land", + "year": 1972, + "cast": [ + "Charles Bronson", + "Jack Palance", + "James Whitmore", + "Richard Basehart", + "Ralph Waite", + "Simon Oakland" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Children Shouldn't Play with Dead Things", + "year": 1972, + "cast": [ + "Alan Ormsby", + "Valerie Mamches" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Child's Play", + "year": 1972, + "cast": [ + "James Mason", + "Robert Preston", + "Beau Bridges" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Cisco Pike", + "year": 1972, + "cast": [ + "Kris Kristofferson", + "Gene Hackman", + "Karen Black", + "Harry Dean Stanton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Come Back, Charleston Blue", + "year": 1972, + "cast": [ + "Godfrey Cambridge", + "Raymond St. Jacques" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Conquest of the Planet of the Apes", + "year": 1972, + "cast": [ + "Roddy McDowall", + "Don Murray", + "Ricardo Montalbán", + "Hari Rhodes" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Cool Breeze", + "year": 1972, + "cast": [ + "Thalmus Rasulala", + "Judy Pace" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "A Cop", + "year": 1972, + "cast": [ + "Richard Crenna", + "Catherine Deneuve" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Corky", + "year": 1972, + "cast": [ + "Robert Blake", + "Charlotte Rampling", + "Patrick O'Neal", + "Christopher Connelly" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Cowboys", + "year": 1972, + "cast": [ + "John Wayne", + "Bruce Dern", + "Roscoe Lee Browne", + "Robert Carradine", + "A Martinez" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Culpepper Cattle Co.", + "year": 1972, + "cast": [ + "Gary Grimes", + "Billy Green Bush", + "Luke Askew", + "Bo Hopkins" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Deep Throat", + "year": 1972, + "cast": [ + "Linda Lovelace", + "Harry Reems" + ], + "genres": [ + "Erotic" + ] + }, + { + "title": "Deliverance", + "year": 1972, + "cast": [ + "Jon Voight", + "Burt Reynolds", + "Ned Beatty", + "Ronny Cox" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dirty Little Billy", + "year": 1972, + "cast": [ + "Michael J. Pollard", + "Lee Purcell" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Doberman Gang", + "year": 1972, + "cast": [ + "Julie Parrish", + "Hal Reed" + ], + "genres": [ + "Crime", + "Action" + ] + }, + { + "title": "Dr. Phibes Rises Again", + "year": 1972, + "cast": [ + "Vincent Price", + "Peter Cushing", + "Robert Quarry", + "Beryl Reid", + "Fiona Lewis", + "Terry-Thomas" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Dynamite Chicken", + "year": 1972, + "cast": [ + "Richard Pryor", + "Al Goldstein" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Effect of Gamma Rays on Man-in-the-Moon Marigolds", + "year": 1972, + "cast": [ + "Joanne Woodward" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Elvis on Tour", + "year": 1972, + "cast": [ + "Elvis Presley" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Endless Night", + "year": 1972, + "cast": [ + "Hayley Mills", + "Britt Eklund" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Everything You Always Wanted to Know About Sex* (*But Were Afraid to Ask)", + "year": 1972, + "cast": [ + "Woody Allen", + "Gene Wilder", + "Burt Reynolds", + "Tony Randall", + "Louise Lasser", + "Lynn Redgrave", + "Heather MacRae", + "Lou Jacobi", + "Regis Philbin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Fat City", + "year": 1972, + "cast": [ + "Jeff Bridges", + "Stacy Keach", + "Susan Tyrrell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Fillmore", + "year": 1972, + "cast": [ + "Santana", + "Grateful Dead", + "Jefferson Airplane" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Final Comedown", + "year": 1972, + "cast": [ + "Billy Dee Williams", + "Celia Kaye" + ], + "genres": [] + }, + { + "title": "Five Summer Stories", + "year": 1972, + "cast": [ + "Eddie Aikau" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Fritz the Cat", + "year": 1972, + "cast": [ + "Skip Hinnant" + ], + "genres": [ + "Animated", + "Erotic" + ] + }, + { + "title": "Frogs", + "year": 1972, + "cast": [ + "Ray Milland", + "Sam Elliott" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Fuzz", + "year": 1972, + "cast": [ + "Burt Reynolds", + "Raquel Welch", + "Yul Brynner", + "Jack Weston", + "Tom Skerritt" + ], + "genres": [ + "Action", + "Comedy" + ] + }, + { + "title": "Get to Know Your Rabbit", + "year": 1972, + "cast": [ + "Tom Smothers", + "Katharine Ross", + "Orson Welles" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Getaway", + "year": 1972, + "cast": [ + "Steve McQueen", + "Ali MacGraw", + "Al Lettieri", + "Ben Johnson", + "Sally Struthers", + "Jack Dodson", + "Bo Hopkins", + "Dub Taylor", + "Slim Pickens" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Godfather", + "year": 1972, + "cast": [ + "Marlon Brando", + "Al Pacino", + "James Caan", + "Robert Duvall", + "John Cazale", + "Diane Keaton", + "Talia Shire", + "Richard Castellano", + "Richard Conte", + "Sterling Hayden", + "Al Lettieri", + "Gianni Russo", + "Abe Vigoda", + "John Marley", + "Alex Rocco", + "Al Martino" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Grave of the Vampire", + "year": 1972, + "cast": [ + "William Smith", + "Lyn Peters" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Great Northfield Minnesota Raid", + "year": 1972, + "cast": [ + "Cliff Robertson", + "Robert Duvall" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Hammer", + "year": 1972, + "cast": [ + "Fred Williamson", + "Bernie Hamilton", + "Vonetta McGee" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Hammersmith Is Out", + "year": 1972, + "cast": [ + "Richard Burton", + "Elizabeth Taylor", + "Peter Ustinov" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Heartbreak Kid", + "year": 1972, + "cast": [ + "Charles Grodin", + "Cybill Shepherd", + "Jeannie Berlin", + "Eddie Albert", + "Audra Lindley" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Heat", + "year": 1972, + "cast": [ + "Joe Dallesandro", + "Sylvia Miles" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hickey & Boggs", + "year": 1972, + "cast": [ + "Bill Cosby", + "Robert Culp" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Hit Man", + "year": 1972, + "cast": [ + "Bernie Casey", + "Pam Grier" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Hot Rock", + "year": 1972, + "cast": [ + "Robert Redford", + "George Segal", + "Zero Mostel" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Images", + "year": 1972, + "cast": [ + "Susannah York", + "René Auberjonois" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "J.W. Coop", + "year": 1972, + "cast": [ + "Cliff Robertson", + "Geraldine Page" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Jeremiah Johnson", + "year": 1972, + "cast": [ + "Robert Redford", + "Will Geer" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Joe Kidd", + "year": 1972, + "cast": [ + "Clint Eastwood", + "Robert Duvall", + "John Saxon" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Journey Back to Oz", + "year": 1972, + "cast": [ + "Milton Berle", + "Herschel Bernardi", + "Margaret Hamilton" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Junior Bonner", + "year": 1972, + "cast": [ + "Steve McQueen", + "Robert Preston", + "Ida Lupino", + "Joe Don Baker", + "Barbara Leigh", + "Ben Johnson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Kansas City Bomber", + "year": 1972, + "cast": [ + "Raquel Welch", + "Kevin McCarthy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The King of Marvin Gardens", + "year": 1972, + "cast": [ + "Jack Nicholson", + "Ellen Burstyn", + "Bruce Dern" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Lady Sings the Blues", + "year": 1972, + "cast": [ + "Diana Ross", + "Billy Dee Williams", + "Richard Pryor" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "The Last House on the Left", + "year": 1972, + "cast": [ + "Sandra Cassel", + "David A. Hess" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Last of the Red Hot Lovers", + "year": 1972, + "cast": [ + "Alan Arkin", + "Sally Kellerman", + "Paula Prentiss" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Left Hand of Gemini", + "year": 1972, + "cast": [ + "Ian McShane", + "Richard Egan" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Legend of Boggy Creek", + "year": 1972, + "cast": [ + "William Stumpp" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Legend of Nigger Charley aka Legend of Black Charley", + "year": 1972, + "cast": [ + "Fred Williamson", + "D'Urville Martin" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Life and Times of Judge Roy Bean", + "year": 1972, + "cast": [ + "Paul Newman", + "Anthony Perkins", + "Victoria Principal", + "Jacqueline Bisset", + "John Huston", + "Ava Gardner" + ], + "genres": [ + "Western", + "Biography" + ] + }, + { + "title": "Limbo", + "year": 1972, + "cast": [ + "Kathleen Nolan", + "Kate Jackson", + "Stuart Margolin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Los Amigos", + "year": 1972, + "cast": [ + "Anthony Quinn", + "Franco Nero", + "Pamela Tiffin" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Magnificent Seven Ride", + "year": 1972, + "cast": [ + "Lee Van Cleef", + "George Kennedy", + "Stefanie Powers" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Man", + "year": 1972, + "cast": [ + "James Earl Jones", + "Martin Balsam", + "Barbara Rush" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Man of La Mancha", + "year": 1972, + "cast": [ + "Peter O'Toole", + "Sophia Loren", + "James Coco" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Mechanic", + "year": 1972, + "cast": [ + "Charles Bronson", + "Jan-Michael Vincent" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Melinda", + "year": 1972, + "cast": [ + "Calvin Lockhart", + "Vonetta McGee" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Napoleon and Samantha", + "year": 1972, + "cast": [ + "Michael Douglas", + "Jodie Foster" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Necromancy", + "year": 1972, + "cast": [ + "Orson Welles", + "Lee Purcell" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The New Centurions", + "year": 1972, + "cast": [ + "George C. Scott", + "Stacy Keach" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Night of the Lepus", + "year": 1972, + "cast": [ + "Stuart Whitman", + "Janet Leigh" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Now You See Him, Now You Don't", + "year": 1972, + "cast": [ + "Kurt Russell", + "Joe Flynn" + ], + "genres": [ + "Science Fiction", + "Comedy" + ] + }, + { + "title": "The Offence", + "year": 1972, + "cast": [ + "Sean Connery", + "Trevor Howard", + "Vivien Merchant" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "One Is a Lonely Number", + "year": 1972, + "cast": [ + "Trish Van Devere", + "Monte Markham", + "Janet Leigh" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Other", + "year": 1972, + "cast": [ + "Uta Hagen", + "Diana Muldaur", + "John Ritter" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Painters Painting", + "year": 1972, + "cast": [ + "Andy Warhol", + "Willem de Kooning" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Pancho Villa", + "year": 1972, + "cast": [ + "Telly Savalas", + "Clint Walker", + "Chuck Connors" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Payday", + "year": 1972, + "cast": [ + "Rip Torn", + "Ahna Capri" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Pete 'n' Tillie", + "year": 1972, + "cast": [ + "Walter Matthau", + "Carol Burnett", + "Geraldine Page" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Pink Flamingos", + "year": 1972, + "cast": [ + "Divine" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Play It Again, Sam", + "year": 1972, + "cast": [ + "Woody Allen", + "Diane Keaton", + "Tony Roberts", + "Susan Anspach" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Play It as It Lays", + "year": 1972, + "cast": [ + "Tuesday Weld", + "Anthony Perkins", + "Adam Roarke" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Pocket Money", + "year": 1972, + "cast": [ + "Paul Newman", + "Lee Marvin" + ], + "genres": [ + "Western", + "Comedy" + ] + }, + { + "title": "Pope Joan", + "year": 1972, + "cast": [ + "Liv Ullmann", + "Olivia de Havilland" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Portnoy's Complaint", + "year": 1972, + "cast": [ + "Richard Benjamin", + "Karen Black", + "Lee Grant" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Poseidon Adventure", + "year": 1972, + "cast": [ + "Gene Hackman", + "Ernest Borgnine", + "Shelley Winters", + "Stella Stevens", + "Roddy McDowall", + "Carol Lynley", + "Pamela Sue Martin", + "Red Buttons", + "Jack Albertson" + ], + "genres": [ + "Disaster", + "Adventure" + ] + }, + { + "title": "The Possession of Joel Delaney", + "year": 1972, + "cast": [ + "Shirley MacLaine", + "Perry King", + "Michael Hordern" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Prime Cut", + "year": 1972, + "cast": [ + "Lee Marvin", + "Gene Hackman", + "Sissy Spacek", + "Angel Tompkins" + ], + "genres": [ + "Drama", + "Action" + ] + }, + { + "title": "Private Parts", + "year": 1972, + "cast": [ + "Stanley Livingston" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Rage", + "year": 1972, + "cast": [ + "George C. Scott", + "Martin Sheen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Red Sun", + "year": 1972, + "cast": [ + "Charles Bronson", + "Ursula Andress" + ], + "genres": [ + "Western" + ] + }, + { + "title": "A Reflection of Fear", + "year": 1972, + "cast": [ + "Robert Shaw", + "Sondra Locke", + "Sally Kellerman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Revengers", + "year": 1972, + "cast": [ + "William Holden", + "Ernest Borgnine" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Salzburg Connection", + "year": 1972, + "cast": [ + "Barry Newman", + "Anna Karina", + "Klaus Maria Brandauer" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Savages", + "year": 1972, + "cast": [ + "Susan Blakely", + "Sam Waterston" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Shaft's Big Score", + "year": 1972, + "cast": [ + "Richard Roundtree", + "Moses Gunn" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Silent Running", + "year": 1972, + "cast": [ + "Bruce Dern", + "Ron Rifkin" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Sitting Target", + "year": 1972, + "cast": [ + "Oliver Reed", + "Jill St. John" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Skyjacked", + "year": 1972, + "cast": [ + "Charlton Heston", + "Yvette Mimieux", + "James Brolin", + "Jeanne Crain", + "Walter Pidgeon", + "Roosevelt Grier", + "Leslie Uggams" + ], + "genres": [ + "Disaster" + ] + }, + { + "title": "Slaughter", + "year": 1972, + "cast": [ + "Jim Brown", + "Rip Torn", + "Stella Stevens" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Slaughterhouse-Five", + "year": 1972, + "cast": [ + "Michael Sacks", + "Valerie Perrine" + ], + "genres": [ + "Science Fiction", + "Drama" + ] + }, + { + "title": "Snoopy, Come Home", + "year": 1972, + "cast": [ + "Voices of", + "Chad Webber", + "Robin Kohn", + "Hilary Momberger", + "Johanna Baer" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Snowball Express", + "year": 1972, + "cast": [ + "Nancy Olson", + "Dean Jones" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Sounder", + "year": 1972, + "cast": [ + "Cicely Tyson", + "Paul Winfield", + "Kevin Hooks" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Stigma", + "year": 1972, + "cast": [ + "Philip Michael Thomas" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Summertime Killer", + "year": 1972, + "cast": [ + "Olivia Hussey", + "Christopher Mitchum", + "Karl Malden" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Super Fly", + "year": 1972, + "cast": [ + "Ron O'Neal", + "Julius Harris" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "They Only Kill Their Masters", + "year": 1972, + "cast": [ + "James Garner", + ".", + "Katharine Ross" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Thing with Two Heads", + "year": 1972, + "cast": [ + "Ray Milland", + "Roosevelt Grier" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Thumb Tripping", + "year": 1972, + "cast": [ + "Bruce Dern", + "Meg Foster" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "To Find a Man", + "year": 1972, + "cast": [ + "Pamela Sue Martin", + "Darren O'Connor", + "Tom Bosley" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Tomorrow", + "year": 1972, + "cast": [ + "Robert Duvall", + "Peter Masterson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Travels with My Aunt", + "year": 1972, + "cast": [ + "Maggie Smith", + "Louis Gossett Jr." + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Treasure Island", + "year": 1972, + "cast": [ + "Richard Dawson", + "Davy Jones", + "Dal McKennon" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Treasure Island", + "year": 1972, + "cast": [ + "Orson Welles", + "Lionel Stander", + "Walter Slezak" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Trouble Man", + "year": 1972, + "cast": [ + "Robert Hooks", + "Paula Kelly" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Ulzana's Raid", + "year": 1972, + "cast": [ + "Burt Lancaster", + "Bruce Davison", + "Richard Jaeckel" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Up the Sandbox", + "year": 1972, + "cast": [ + "Barbra Streisand" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Visitors", + "year": 1972, + "cast": [ + "Patrick McVey", + "Patricia Joyce", + "James Woods" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The War Between Men and Women", + "year": 1972, + "cast": [ + "Jack Lemmon", + "Barbara Harris" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "What's Up, Doc?", + "year": 1972, + "cast": [ + "Barbra Streisand", + "Ryan O'Neal", + "Madeline Kahn" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "When the Legends Die", + "year": 1972, + "cast": [ + "Richard Widmark", + "Frederic Forrest" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Winter Soldier", + "year": 1972, + "cast": [ + "John Kerry" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Woman Hunter", + "year": 1972, + "cast": [ + "Barbara Eden", + "Robert Vaughn" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Wrath of God", + "year": 1972, + "cast": [ + "Robert Mitchum", + "Frank Langella", + "Rita Hayworth" + ], + "genres": [ + "Western" + ] + }, + { + "title": "You'll Like My Mother", + "year": 1972, + "cast": [ + "Patty Duke", + "Rosemary Murphy" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "40 Carats", + "year": 1973, + "cast": [ + "Edward Albert", + "Liv Ullmann", + "Binnie Barnes", + "Gene Kelly" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Ace Eli and Rodger of the Skies", + "year": 1973, + "cast": [ + "Cliff Robertson", + "Pamela Franklin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The All-American Boy", + "year": 1973, + "cast": [ + "Jon Voight" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Alpha Caper", + "year": 1973, + "cast": [ + "Henry Fonda", + "Leonard Nimoy", + "Larry Hagman" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "American Graffiti", + "year": 1973, + "cast": [ + "Richard Dreyfuss", + "Ron Howard", + "Candy Clark", + "Harrison Ford", + "Cindy Williams", + "Paul Le Mat", + "Mackenzie Phillips", + "Charles Martin Smith" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Arnold", + "year": 1973, + "cast": [ + "Stella Stevens", + "Roddy McDowall", + "Elsa Lanchester", + "Shani Wallis" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Arnold's Wrecking Co.", + "year": 1973, + "cast": [ + "Barbara Hencheck" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Ash Wednesday", + "year": 1973, + "cast": [ + "Elizabeth Taylor", + "Henry Fonda" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Baby", + "year": 1973, + "cast": [ + "Anjanette Comer", + "Ruth Roman", + "Marianna Hill" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Badge 373", + "year": 1973, + "cast": [ + "Robert Duvall", + "Verna Bloom" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Badlands", + "year": 1973, + "cast": [ + "Martin Sheen", + "Sissy Spacek", + "Warren Oates" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Bang the Drum Slowly", + "year": 1973, + "cast": [ + "Robert De Niro", + "Michael Moriarty", + "Vincent Gardenia", + "Phil Foster" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Battle for the Planet of the Apes", + "year": 1973, + "cast": [ + "Roddy McDowall", + "John Huston", + "Claude Akins" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Black Caesar", + "year": 1973, + "cast": [ + "Fred Williamson", + "Gloria Hendry" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Black Snake", + "year": 1973, + "cast": [ + "David Prowse", + "Anouska Hempel" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Blackenstein", + "year": 1973, + "cast": [ + "John Hart", + "Liz Renay" + ], + "genres": [] + }, + { + "title": "Blume in Love", + "year": 1973, + "cast": [ + "George Segal", + "Susan Anspach", + "Kris Kristofferson", + "Shelley Winters" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Book of Numbers", + "year": 1973, + "cast": [ + "Raymond St. Jacques", + "Philip Michael Thomas", + "Freda Payne", + "Hope Clarke" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Boy Who Cried Werewolf", + "year": 1973, + "cast": [ + "Robert J. Wilke" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Breezy", + "year": 1973, + "cast": [ + "William Holden", + "Kay Lenz" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Brother of the Wind", + "year": 1973, + "cast": [ + "Dick Robinson" + ], + "genres": [] + }, + { + "title": "Cahill U.S. Marshal", + "year": 1973, + "cast": [ + "John Wayne", + "Gary Grimes", + "George Kennedy", + "Neville Brand" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Candy Snatchers", + "year": 1973, + "cast": [ + "Tiffany Bolling" + ], + "genres": [] + }, + { + "title": "Charley and the Angel", + "year": 1973, + "cast": [ + "Fred MacMurray", + "Cloris Leachman", + "Kurt Russell" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Charley Varrick", + "year": 1973, + "cast": [ + "Walter Matthau", + "Joe Don Baker", + "John Vernon", + "Andrew Robinson", + "Felicia Farr", + "Norman Fell", + "Jacqueline Scott", + "Sheree North" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Charlotte's Web", + "year": 1973, + "cast": [ + "Voices of", + "Debbie Reynolds", + "Paul Lynde", + "Henry Gibson", + "Pamelyn Ferdin" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Cinderella Liberty", + "year": 1973, + "cast": [ + "James Caan", + "Marsha Mason", + "Eli Wallach" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Class of '44", + "year": 1973, + "cast": [ + "Gary Grimes" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Cleopatra Jones", + "year": 1973, + "cast": [ + "Tamara Dobson", + "Antonio Fargas", + "Shelley Winters" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Coffy", + "year": 1973, + "cast": [ + "Pam Grier" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Cops and Robbers", + "year": 1973, + "cast": [ + "Joseph Bologna", + "Cliff Gorman" + ], + "genres": [ + "Crime", + "Comedy" + ] + }, + { + "title": "The Crazies", + "year": 1973, + "cast": [ + "Lynn Lowry", + "Lane Carroll" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Day of the Dolphin", + "year": 1973, + "cast": [ + "George C. Scott", + "Trish Van Devere", + "Paul Sorvino", + "Fritz Weaver" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Delicate Balance", + "year": 1973, + "cast": [ + "Katharine Hepburn", + "Paul Scofield", + "Lee Remick" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Detroit 9000", + "year": 1973, + "cast": [ + "Alex Rocco", + "Hari Rhodes" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Devil in Miss Jones", + "year": 1973, + "cast": [ + "Georgina Spelvin", + "Harry Reems", + "Gerard Damiano" + ], + "genres": [ + "Erotic" + ] + }, + { + "title": "Dillinger", + "year": 1973, + "cast": [ + "Warren Oates", + "Harry Dean Stanton", + "Geoffrey Lewis", + "Ben Johnson", + "Richard Dreyfuss", + "Steve Kanaly", + "Cloris Leachman" + ], + "genres": [ + "Biography", + "Crime", + "Drama" + ] + }, + { + "title": "The Doll Squad", + "year": 1973, + "cast": [ + "Francine York", + "Anthony Eisley" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Don Is Dead", + "year": 1973, + "cast": [ + "Anthony Quinn", + "Angel Tompkins", + "Robert Forster", + "Al Lettieri" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Don't Be Afraid of the Dark", + "year": 1973, + "cast": [ + "Kim Darby", + "Jim Hutton", + "William Demarest" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Don't Play Us Cheap", + "year": 1973, + "cast": [ + "Esther Rolle" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Electra Glide in Blue", + "year": 1973, + "cast": [ + "Robert Blake" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Emperor of the North", + "year": 1973, + "cast": [ + "Lee Marvin", + "Ernest Borgnine", + "Keith Carradine" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Encounter with the Unknown", + "year": 1973, + "cast": [ + "Rod Serling", + "Robert Ginnaven" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Enter the Dragon", + "year": 1973, + "cast": [ + "Bruce Lee", + "John Saxon", + "Jim Kelly" + ], + "genres": [ + "Martial Arts" + ] + }, + { + "title": "Executive Action", + "year": 1973, + "cast": [ + "Burt Lancaster", + "Will Geer" + ], + "genres": [ + "Documentary", + "Drama" + ] + }, + { + "title": "The Exorcist", + "year": 1973, + "cast": [ + "Ellen Burstyn", + "Linda Blair", + "Jason Miller", + "Max von Sydow", + "Kitty Winn", + "Lee J. Cobb" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Five on the Black Hand Side", + "year": 1973, + "cast": [ + "D'Urville Martin", + "Glynn Turman" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Forced Entry", + "year": 1973, + "cast": [ + "Harry Reems" + ], + "genres": [ + "Erotic" + ] + }, + { + "title": "The Forgotten aka Don't Look in the Basement", + "year": 1973, + "cast": [ + "Jessie Lee Fulton" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Frank Film", + "year": 1973, + "cast": [ + "Frank Mouris" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "The Friends of Eddie Coyle", + "year": 1973, + "cast": [ + "Robert Mitchum", + "Peter Boyle", + "Richard Jordan", + "Steven Keats", + "Alex Rocco" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "From the Mixed-Up Files of Mrs. Basil E. Frankweiler", + "year": 1973, + "cast": [ + "Ingrid Bergman" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Ganja & Hess", + "year": 1973, + "cast": [ + "Bill Gunn", + "Duane Jones", + "Marlene Clark" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Godspell", + "year": 1973, + "cast": [ + "Victor Garber" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Golden Voyage of Sinbad", + "year": 1973, + "cast": [ + "John Phillip Law", + "Caroline Munro" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Gordon's War", + "year": 1973, + "cast": [ + "Paul Winfield" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Happy Mother's Day, Love George", + "year": 1973, + "cast": [ + "Patricia Neal", + "Cloris Leachman", + "Bobby Darin" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Harrad Experiment", + "year": 1973, + "cast": [ + "James Whitmore", + "Tippi Hedren", + "Don Johnson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Harry in Your Pocket", + "year": 1973, + "cast": [ + "James Coburn", + "Michael Sarrazin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Heavy Traffic", + "year": 1973, + "cast": [ + "Joseph Kaufmann", + "Jamie Farr", + "(voices)" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Hell Up in Harlem", + "year": 1973, + "cast": [ + "Fred Williamson", + "Julius Harris", + "Gloria Hendry" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "High Plains Drifter", + "year": 1973, + "cast": [ + "Clint Eastwood", + "Geoffrey Lewis", + "Verna Bloom", + "Marianna Hill", + "Mitchell Ryan" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Hit!", + "year": 1973, + "cast": [ + "Billy Dee Williams", + "Richard Pryor" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Iceman Cometh", + "year": 1973, + "cast": [ + "Lee Marvin", + "Robert Ryan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Idaho Transfer", + "year": 1973, + "cast": [ + "Keith Carradine" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Interval", + "year": 1973, + "cast": [ + "Merle Oberon", + "Robert Wolders", + "Russ Conway" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Invasion of the Bee Girls", + "year": 1973, + "cast": [ + "Anitra Ford" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Jesus Christ Superstar", + "year": 1973, + "cast": [ + "Ted Neeley", + "Carl Anderson" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Jeremy", + "year": 1973, + "cast": [ + "Robby Benson", + "Glynnis O'Connor" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Jonathan Livingston Seagull", + "year": 1973, + "cast": [ + "James Franciscus", + "Juliet Mills" + ], + "genres": [] + }, + { + "title": "Jory", + "year": 1973, + "cast": [ + "Robby Benson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Kid Blue", + "year": 1973, + "cast": [ + "Dennis Hopper", + "Warren Oates", + "Peter Boyle" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Lady Ice", + "year": 1973, + "cast": [ + "Donald Sutherland", + "Jennifer O'Neill" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Last American Hero", + "year": 1973, + "cast": [ + "Jeff Bridges", + "Valerie Perrine", + "Ned Beatty" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "The Last Detail", + "year": 1973, + "cast": [ + "Jack Nicholson", + "Otis Young", + "Randy Quaid" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Last of Sheila", + "year": 1973, + "cast": [ + "James Coburn", + "Raquel Welch", + "Dyan Cannon", + "James Mason", + "Joan Hackett", + "Richard Benjamin", + "Ian McShane" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Laughing Policeman", + "year": 1973, + "cast": [ + "Walter Matthau", + "Bruce Dern", + "Louis Gossett Jr.", + "Joanna Cassidy", + "Cathy Lee Crosby" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Little Cigars", + "year": 1973, + "cast": [ + "Angel Tompkins" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Lolly-Madonna XXX", + "year": 1973, + "cast": [ + "Rod Steiger", + "Robert Ryan", + "Jeff Bridges" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Long Goodbye", + "year": 1973, + "cast": [ + "Elliott Gould", + "Sterling Hayden", + "Henry Gibson", + "Nina van Pallandt", + "Jim Bouton", + "Mark Rydell" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Lost Horizon", + "year": 1973, + "cast": [ + "Liv Ullmann", + "Olivia Hussey", + "Peter Finch", + "Sally Kellerman", + "Charles Boyer", + "Michael York", + "John Gielgud", + "George Kennedy", + "Bobby Van" + ], + "genres": [ + "Musical", + "Fantasy" + ] + }, + { + "title": "Love and Pain and the Whole Damn Thing", + "year": 1973, + "cast": [ + "Maggie Smith", + "Timothy Bottoms" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Luther", + "year": 1973, + "cast": [ + "Stacy Keach", + "Patrick Magee" + ], + "genres": [ + "Drama", + "Biography" + ] + }, + { + "title": "The Mack", + "year": 1973, + "cast": [ + "Max Julien", + "Richard Pryor", + "Roger E. Mosley" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Mackintosh Man", + "year": 1973, + "cast": [ + "Paul Newman", + "James Mason" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Magnum Force", + "year": 1973, + "cast": [ + "Clint Eastwood", + "Hal Holbrook", + "Tim Matheson", + "David Soul", + "Robert Urich" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Manson", + "year": 1973, + "cast": [ + "Vincent Bugliosi" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Maurie", + "year": 1973, + "cast": [ + "Bernie Casey", + "Bo Svenson" + ], + "genres": [ + "Sports", + "Drama" + ] + }, + { + "title": "Mean Streets", + "year": 1973, + "cast": [ + "Robert De Niro", + "Harvey Keitel" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Messiah of Evil aka Dead People", + "year": 1973, + "cast": [ + "Elisha Cook Jr.", + "Anitra Ford" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Neptune Factor", + "year": 1973, + "cast": [ + "Ben Gazzara", + "Yvette Mimieux", + "Walter Pidgeon" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The No Mercy Man", + "year": 1973, + "cast": [ + "Sid Haig", + "Ron Thompson" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Oklahoma Crude", + "year": 1973, + "cast": [ + "George C. Scott", + "Faye Dunaway", + "John Mills" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "One Little Indian", + "year": 1973, + "cast": [ + "James Garner", + "Pat Hingle", + "Vera Miles" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Outfit", + "year": 1973, + "cast": [ + "Robert Duvall", + "Karen Black", + "Joe Don Baker", + "Sheree North", + "Robert Ryan" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Paper Chase", + "year": 1973, + "cast": [ + "Timothy Bottoms", + "Lindsay Wagner", + "John Houseman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Paper Moon", + "year": 1973, + "cast": [ + "Ryan O'Neal", + "Tatum O'Neal", + "Madeline Kahn" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Papillon", + "year": 1973, + "cast": [ + "Steve McQueen", + "Dustin Hoffman" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Pat Garrett and Billy the Kid", + "year": 1973, + "cast": [ + "James Coburn", + "Kris Kristofferson", + "Bob Dylan", + "John Beck", + "Slim Pickens", + "Katy Jurado", + "Jack Elam", + "Chill Wills" + ], + "genres": [ + "Western", + "Biography" + ] + }, + { + "title": "Please Don't Eat My Mother", + "year": 1973, + "cast": [ + "Buck Kartalian", + "Rene Bond" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Return of Charlie Chan", + "year": 1973, + "cast": [ + "Ross Martin", + "Richard Haydn" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Robin Hood", + "year": 1973, + "cast": [ + "voices of", + "Peter Ustinov", + "Terry-Thomas" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "The Roommates", + "year": 1973, + "cast": [ + "Marki Bey", + "Pat Woodell" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Sssssss", + "year": 1973, + "cast": [ + "Strother Martin" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Save the Tiger", + "year": 1973, + "cast": [ + "Jack Lemmon", + "Jack Gilford" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Scarecrow", + "year": 1973, + "cast": [ + "Gene Hackman", + "Al Pacino" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Scorpio", + "year": 1973, + "cast": [ + "Burt Lancaster", + "Alain Delon", + "Paul Scofield" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Scream Blacula Scream", + "year": 1973, + "cast": [ + "William Marshall", + "Pam Grier" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Serpico", + "year": 1973, + "cast": [ + "Al Pacino", + "John Randolph", + "Tony Roberts" + ], + "genres": [ + "Crime", + "Biography" + ] + }, + { + "title": "The Seven-Ups", + "year": 1973, + "cast": [ + "Roy Scheider", + "Tony Lo Bianco" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Shaft in Africa", + "year": 1973, + "cast": [ + "Richard Roundtree" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Shamus", + "year": 1973, + "cast": [ + "Burt Reynolds", + "Dyan Cannon" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Showdown", + "year": 1973, + "cast": [ + "Dean Martin", + "Rock Hudson", + "Susan Clark" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Sisters", + "year": 1973, + "cast": [ + "Margot Kidder", + "Jennifer Salt" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Slaughter's Big Rip-Off", + "year": 1973, + "cast": [ + "Jim Brown", + "Ed McMahon", + "Brock Peters" + ], + "genres": [] + }, + { + "title": "Sleeper", + "year": 1973, + "cast": [ + "Woody Allen", + "Diane Keaton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Slither", + "year": 1973, + "cast": [ + "James Caan", + "Sally Kellerman", + "Peter Boyle" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Some Call It Loving", + "year": 1973, + "cast": [ + "Zalman King", + "Richard Pryor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Soylent Green", + "year": 1973, + "cast": [ + "Charlton Heston", + "Leigh Taylor-Young", + "Chuck Connors", + "Edward G. Robinson" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Spook Who Sat By the Door", + "year": 1973, + "cast": [ + "Lawrence Cook", + "J. A. Preston" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Steelyard Blues", + "year": 1973, + "cast": [ + "Jane Fonda", + "Donald Sutherland", + "Peter Boyle" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Sticks and Bones", + "year": 1973, + "cast": [ + "Cliff DeYoung" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Sting", + "year": 1973, + "cast": [ + "Paul Newman", + "Robert Redford", + "Robert Shaw", + "Eileen Brennan", + "Ray Walston", + "Jack Kehoe", + "Charles Durning", + "Dana Elcar", + "Harold Gould", + "Robert Earl Jones", + "Dimitra Arliss", + "Sally Kirkland" + ], + "genres": [ + "Crime", + "Comedy" + ] + }, + { + "title": "The Stone Killer", + "year": 1973, + "cast": [ + "Charles Bronson", + "Martin Balsam", + "Paul Koslo" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Summer Wishes, Winter Dreams", + "year": 1973, + "cast": [ + "Joanne Woodward", + "Martin Balsam", + "Sylvia Sidney" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Superdad", + "year": 1973, + "cast": [ + "Bob Crane", + "Barbara Rush", + "Kurt Russell" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Sweet Kill", + "year": 1973, + "cast": [ + "Tab Hunter", + "Isabel Jewell", + "John Aprea" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Terminal Island", + "year": 1973, + "cast": [ + "Phyllis Davis", + "Marta Kristen" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Thief Who Came to Dinner", + "year": 1973, + "cast": [ + "Ryan O'Neal", + "Jacqueline Bisset", + "Warren Oates", + "Ned Beatty", + "Jill Clayburgh" + ], + "genres": [ + "Crime", + "Comedy" + ] + }, + { + "title": "The Three Musketeers", + "year": 1973, + "cast": [ + "Oliver Reed", + "Michael York", + "Richard Chamberlain", + "Raquel Welch" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Tom Sawyer", + "year": 1973, + "cast": [ + "Jodie Foster", + "Warren Oates" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Train Robbers", + "year": 1973, + "cast": [ + "John Wayne", + "Ann-Margret", + "Rod Taylor", + "Bobby Vinton" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Two People", + "year": 1973, + "cast": [ + "Peter Fonda", + "Lindsay Wagner" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Visions of Eight", + "year": 1973, + "cast": [ + "1972 Summer Olympics" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Walking Tall", + "year": 1973, + "cast": [ + "Joe Don Baker", + "Noah Beery Jr." + ], + "genres": [ + "Crime", + "Action" + ] + }, + { + "title": "The Way We Were", + "year": 1973, + "cast": [ + "Barbra Streisand", + "Robert Redford", + "Bradford Dillman", + "Susan Blakely", + "Patrick O'Neal", + "Lois Chiles" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Werewolf of Washington", + "year": 1973, + "cast": [ + "Dean Stockwell" + ], + "genres": [ + "Horror", + "Comedy" + ] + }, + { + "title": "Westworld", + "year": 1973, + "cast": [ + "Yul Brynner", + "Richard Benjamin", + "James Brolin" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "White Lightning", + "year": 1973, + "cast": [ + "Burt Reynolds", + "Ned Beatty", + "Bo Hopkins" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Wicked, Wicked", + "year": 1973, + "cast": [ + "David Bailey", + "Tiffany Bolling" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The World's Greatest Athlete", + "year": 1973, + "cast": [ + "John Amos", + "Tim Conway", + "Jan-Michael Vincent" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Blazing Saddles", + "year": 1974, + "cast": [ + "$119", + "500", + "000", + "[1]" + ], + "genres": [] + }, + { + "title": "The Towering Inferno", + "year": 1974, + "cast": [ + "$116", + "000", + "000", + "[2]" + ], + "genres": [] + }, + { + "title": "The Trial of Billy Jack", + "year": 1974, + "cast": [ + "$89", + "000", + "000", + "[3]" + ], + "genres": [] + }, + { + "title": "Young Frankenstein", + "year": 1974, + "cast": [ + "$86", + "273", + "333", + "[4]" + ], + "genres": [] + }, + { + "title": "Earthquake", + "year": 1974, + "cast": [ + "$79", + "666", + "653", + "[5]" + ], + "genres": [] + }, + { + "title": "The Godfather Part II", + "year": 1974, + "cast": [ + "$47", + "542", + "841", + "[6]" + ], + "genres": [] + }, + { + "title": "Airport 1975", + "year": 1974, + "cast": [ + "$47", + "285", + "152", + "[7]" + ], + "genres": [] + }, + { + "title": "The Life and Times of Grizzly Adams", + "year": 1974, + "cast": [ + "$45", + "411", + "063", + "[8]" + ], + "genres": [] + }, + { + "title": "The Longest Yard", + "year": 1974, + "cast": [ + "$43", + "008", + "075", + "[9]" + ], + "genres": [] + }, + { + "title": "Benji", + "year": 1974, + "cast": [ + "$39", + "552", + "000", + "[10]" + ], + "genres": [] + }, + { + "title": "11 Harrowhouse", + "year": 1974, + "cast": [ + "Charles Grodin", + "Candice Bergen", + "James Mason", + "Trevor Howard" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "99 and 44/100% Dead", + "year": 1974, + "cast": [ + "Richard Harris", + "Edmond O'Brien", + "Bradford Dillman", + "Chuck Connors" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Abby", + "year": 1974, + "cast": [ + "Carol Speed", + "Juanita Moore" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Airport 1975", + "year": 1974, + "cast": [ + "Charlton Heston", + "Karen Black", + "Gloria Swanson", + "George Kennedy", + "Susan Clark", + "Efrem Zimbalist, Jr.", + "Linda Blair", + "Sid Caesar", + "Myrna Loy" + ], + "genres": [ + "Disaster" + ] + }, + { + "title": "Alice Doesn't Live Here Anymore", + "year": 1974, + "cast": [ + "Ellen Burstyn", + "Kris Kristofferson", + "Diane Ladd", + "Harvey Keitel", + "Valerie Curtin", + "Vic Tayback", + "Alfred Lutter", + "Jodie Foster" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "All the Kind Strangers", + "year": 1974, + "cast": [ + "Stacy Keach", + "Samantha Eggar", + "John Savage" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "And Then There Were None", + "year": 1974, + "cast": [ + "Oliver Reed", + "Elke Sommer", + "Richard Attenborough", + "Herbert Lom", + "Charles Aznavour", + "Gert Frobe" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Arena", + "year": 1974, + "cast": [ + "Pam Grier", + "Margaret Markov" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Bank Shot", + "year": 1974, + "cast": [ + "George C. Scott", + "Joanna Cassidy" + ], + "genres": [ + "Crime", + "Comedy" + ] + }, + { + "title": "Benji", + "year": 1974, + "cast": [ + "Patsy Garrett" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Beyond the Door", + "year": 1974, + "cast": [ + "Juliet Mills" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Big Bad Mama", + "year": 1974, + "cast": [ + "Angie Dickinson", + "William Shatner" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Billy Two Hats", + "year": 1974, + "cast": [ + "Gregory Peck", + "Desi Arnaz Jr." + ], + "genres": [ + "Western" + ] + }, + { + "title": "Black Belt Jones", + "year": 1974, + "cast": [ + "Jim Kelly", + "Gloria Hendry" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Black Eye", + "year": 1974, + "cast": [ + "Fred Williamson", + "Rosemary Forsyth" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Black Godfather", + "year": 1974, + "cast": [ + "Rod Perry" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Black Samson", + "year": 1974, + "cast": [ + "Carol Speed" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Black Windmill", + "year": 1974, + "cast": [ + "Michael Caine", + "John Vernon" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Blazing Saddles", + "year": 1974, + "cast": [ + "Cleavon Little", + "Gene Wilder", + "Mel Brooks", + "Madeline Kahn", + "Harvey Korman", + "Slim Pickens", + "Alex Karras" + ], + "genres": [ + "Western", + "Comedy" + ] + }, + { + "title": "Bring Me the Head of Alfredo Garcia", + "year": 1974, + "cast": [ + "Warren Oates", + "Isela Vega", + "Helmut Dantine", + "Robert Webber", + "Gig Young" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Buster and Billie", + "year": 1974, + "cast": [ + "Jan-Michael Vincent", + "Pamela Sue Martin", + "Joan Goodfellow" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Busting", + "year": 1974, + "cast": [ + "Elliott Gould", + "Robert Blake" + ], + "genres": [ + "Crime", + "Comedy" + ] + }, + { + "title": "Caged Heat", + "year": 1974, + "cast": [ + "Erica Gavin", + "Juanita Brown" + ], + "genres": [ + "Action" + ] + }, + { + "title": "California Split", + "year": 1974, + "cast": [ + "Elliott Gould", + "George Segal" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Castaway Cowboy", + "year": 1974, + "cast": [ + "James Garner", + "Vera Miles", + "Robert Culp" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Chinatown", + "year": 1974, + "cast": [ + "Jack Nicholson", + "Faye Dunaway", + "John Huston", + "Perry Lopez", + "Diane Ladd", + "Burt Young" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Chosen Survivors", + "year": 1974, + "cast": [ + "Diana Muldaur", + "Bradford Dillman" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Claudine", + "year": 1974, + "cast": [ + "Diahann Carroll", + "James Earl Jones" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Cockfighter", + "year": 1974, + "cast": [ + "Warren Oates", + "Harry Dean Stanton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Conrack", + "year": 1974, + "cast": [ + "Jon Voight", + "Paul Winfield" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Conversation", + "year": 1974, + "cast": [ + "Gene Hackman", + "John Cazale", + "Cindy Williams", + "Frederic Forrest", + "Harrison Ford", + "Robert Duvall" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Crazy Joe", + "year": 1974, + "cast": [ + "Peter Boyle", + "Paula Prentiss", + "Fred Williamson", + "Eli Wallach", + "Rip Torn" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Crazy World of Julius Vrooder", + "year": 1974, + "cast": [ + "Timothy Bottoms", + "Barbara Hershey", + "Albert Salmi", + "George Marshall" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Daisy Miller", + "year": 1974, + "cast": [ + "Cybill Shepherd", + "Cloris Leachman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dark Star", + "year": 1974, + "cast": [ + "Dan O'Bannon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Death Wish", + "year": 1974, + "cast": [ + "Charles Bronson", + "Vincent Gardenia", + "Hope Lange", + "Stuart Margolin" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Dirty Mary, Crazy Larry", + "year": 1974, + "cast": [ + "Susan George", + "Peter Fonda", + "Vic Morrow" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Dove", + "year": 1974, + "cast": [ + "Joseph Bottoms", + "Dabney Coleman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Down and Dirty Duck", + "year": 1974, + "cast": [ + "Voices of", + "Robert Ridgely" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Earthquake", + "year": 1974, + "cast": [ + "Charlton Heston", + "Ava Gardner", + "Richard Roundtree", + "George Kennedy", + "Geneviève Bujold", + "Lorne Greene", + "Marjoe Gortner", + "Victoria Principal" + ], + "genres": [ + "Disaster" + ] + }, + { + "title": "Exploratorium", + "year": 1974, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "F for Fake", + "year": 1974, + "cast": [ + "Orson Welles", + "Joseph Cotten" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Female Trouble", + "year": 1974, + "cast": [ + "Divine" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Flesh Gordon", + "year": 1974, + "cast": [ + "Jason Williams", + "Candy Samples" + ], + "genres": [ + "Erotic", + "Comedy" + ] + }, + { + "title": "For Pete's Sake", + "year": 1974, + "cast": [ + "Barbra Streisand", + "Michael Sarrazin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Foxy Brown", + "year": 1974, + "cast": [ + "Pam Grier", + "Antonio Fargas" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Freebie and the Bean", + "year": 1974, + "cast": [ + "Alan Arkin", + "James Caan" + ], + "genres": [ + "Crime", + "Comedy" + ] + }, + { + "title": "The Front Page", + "year": 1974, + "cast": [ + "Jack Lemmon", + "Walter Matthau", + "Susan Sarandon", + "Carol Burnett" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Gambler", + "year": 1974, + "cast": [ + "James Caan", + "Lauren Hutton", + "Paul Sorvino" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "'Gator Bait", + "year": 1974, + "cast": [ + "Claudia Jennings" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Ginger in the Morning", + "year": 1974, + "cast": [ + "Fred Ward", + "Sissy Spacek", + "Monte Markham" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Girl from Petrovka", + "year": 1974, + "cast": [ + "Goldie Hawn", + "Hal Holbrook", + "Anthony Hopkins" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Godfather Part II", + "year": 1974, + "cast": [ + "Al Pacino", + "Robert De Niro", + "Lee Strasberg", + "Diane Keaton", + "Robert Duvall", + "John Cazale", + "Talia Shire", + "G. D. Spradlin", + "Bruno Kirby", + "Michael V. Gazzo", + "James Caan" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Golden Needles", + "year": 1974, + "cast": [ + "Joe Don Baker", + "Elizabeth Ashley" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Gone in 60 Seconds", + "year": 1974, + "cast": [ + "H. B. Halicki", + "Ronald Halicki" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Gravy Train", + "year": 1974, + "cast": [ + "Stacy Keach", + "Margot Kidder" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Great Gatsby", + "year": 1974, + "cast": [ + "Robert Redford", + "Mia Farrow", + "Sam Waterston", + "Bruce Dern", + "Karen Black", + "Lois Chiles" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Groove Tube", + "year": 1974, + "cast": [ + "Chevy Chase", + "Richard Belzer" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hangup", + "year": 1974, + "cast": [ + "William Elliott", + "Cliff Potts" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Harry and Tonto", + "year": 1974, + "cast": [ + "Art Carney", + "Ellen Burstyn", + "Larry Hagman" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Hearts and Minds", + "year": 1974, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "Herbie Rides Again", + "year": 1974, + "cast": [ + "Helen Hayes", + "Ken Berry" + ], + "genres": [ + "Family" + ] + }, + { + "title": "The House on Skull Mountain", + "year": 1974, + "cast": [ + "Victor French" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Huckleberry Finn", + "year": 1974, + "cast": [ + "Jeff East", + "Paul Winfield", + "David Wayne", + "Arthur O'Connell", + "Harvey Korman" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Invasion from Inner Earth", + "year": 1974, + "cast": [ + "Nick Holt" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Island at the Top of the World", + "year": 1974, + "cast": [ + "David Hartman", + "Mako" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "It's Alive", + "year": 1974, + "cast": [ + "John P. Ryan", + "Sharon Farrell" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Klansman", + "year": 1974, + "cast": [ + "Lee Marvin", + "Richard Burton", + "Cameron Mitchell", + "Linda Evans", + "O.J. Simpson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Ladies and Gentlemen: The Rolling Stones", + "year": 1974, + "cast": [ + "The Rolling Stones" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Lenny", + "year": 1974, + "cast": [ + "Dustin Hoffman", + "Valerie Perrine" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "The Life and Times of Grizzly Adams", + "year": 1974, + "cast": [ + "Dan Haggerty", + "Denver Pyle" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Longest Yard", + "year": 1974, + "cast": [ + "Burt Reynolds", + "Eddie Albert", + "Ed Lauter" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Lords of Flatbush", + "year": 1974, + "cast": [ + "Henry Winkler", + "Sylvester Stallone" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Lost in the Stars", + "year": 1974, + "cast": [ + "Brock Peters", + "Melba Moore", + "Clifton Davis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Lovin' Molly", + "year": 1974, + "cast": [ + "Blythe Danner", + "Anthony Perkins", + "Beau Bridges" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Macon County Line", + "year": 1974, + "cast": [ + "Max Baer Jr.", + "Alan Vint" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Mame", + "year": 1974, + "cast": [ + "Lucille Ball", + "Beatrice Arthur", + "Robert Preston", + "Bruce Davison", + "Jane Connell", + "Don Porter" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "McQ", + "year": 1974, + "cast": [ + "John Wayne", + "Eddie Albert", + "Al Lettieri" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Midnight Man", + "year": 1974, + "cast": [ + "Burt Lancaster", + "Susan Clark" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Missiles of October", + "year": 1974, + "cast": [ + "William Devane", + "Martin Sheen", + "Ralph Bellamy", + "Howard Da Silva" + ], + "genres": [ + "Drama", + "Biography" + ] + }, + { + "title": "Mixed Company", + "year": 1974, + "cast": [ + "Barbara Harris", + "Joseph Bologna" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mr. Majestyk", + "year": 1974, + "cast": [ + "Charles Bronson", + "Al Lettieri", + "Linda Cristal" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Newman's Law", + "year": 1974, + "cast": [ + "George Peppard", + "Roger Robinson" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Nickel Ride", + "year": 1974, + "cast": [ + "Jason Miller", + "Linda Haynes" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Nightmare Honeymoon", + "year": 1974, + "cast": [ + "Dack Rambo", + "John Beck" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Nine Lives of Fritz the Cat", + "year": 1974, + "cast": [ + "Skip Hinnant" + ], + "genres": [ + "Erotic", + "Animated" + ] + }, + { + "title": "Once Upon a Scoundrel", + "year": 1974, + "cast": [ + "Zero Mostel", + "Katy Jurado" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Open Season", + "year": 1974, + "cast": [ + "Peter Fonda", + "John Phillip Law" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Parallax View", + "year": 1974, + "cast": [ + "Warren Beatty", + "Paula Prentiss", + "Hume Cronyn", + "William Daniels" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Phantom of the Paradise", + "year": 1974, + "cast": [ + "Paul Williams", + "Jessica Harper" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Phase IV", + "year": 1974, + "cast": [ + "Michael Murphy", + "Nigel Davenport" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Private Afternoons of Pamela Mann", + "year": 1974, + "cast": [ + "Eric Edwards", + "Georgina Spelvin", + "Jamie Gillis" + ], + "genres": [ + "Erotic" + ] + }, + { + "title": "Report to the Commissioner", + "year": 1974, + "cast": [ + "Michael Moriarty", + "Yaphet Kotto", + "Susan Blakely" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Rhinoceros", + "year": 1974, + "cast": [ + "Gene Wilder", + "Zero Mostel", + "Karen Black" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Road Movie", + "year": 1974, + "cast": [], + "genres": [ + "Drama" + ] + }, + { + "title": "S*P*Y*S", + "year": 1974, + "cast": [ + "Donald Sutherland", + "Elliott Gould", + "Zouzou" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Savage Is Loose", + "year": 1974, + "cast": [ + "George C. Scott", + "Trish Van Devere" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Score", + "year": 1974, + "cast": [ + "Casey Donovan", + "Claire Wilbur", + "Lynn Lowry" + ], + "genres": [ + "Erotic" + ] + }, + { + "title": "Seizure", + "year": 1974, + "cast": [ + "Jonathan Frid", + "Herve Villechaize" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Space Is the Place", + "year": 1974, + "cast": [ + "Sun Ra" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Spikes Gang", + "year": 1974, + "cast": [ + "Lee Marvin", + "Gary Grimes", + "Ron Howard" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Sugar Hill", + "year": 1974, + "cast": [ + "Robert Quarry", + "Richard Lawson" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Sugarland Express", + "year": 1974, + "cast": [ + "Goldie Hawn", + "William Atherton", + "Ben Johnson" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Super Cops", + "year": 1974, + "cast": [ + "Ron Leibman", + "David Selby" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Taking of Pelham One Two Three", + "year": 1974, + "cast": [ + "Walter Matthau", + "Robert Shaw", + "Martin Balsam", + "Hector Elizondo", + "Jerry Stiller" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Tamarind Seed", + "year": 1974, + "cast": [ + "Julie Andrews", + "Omar Sharif" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Terminal Man", + "year": 1974, + "cast": [ + "George Segal", + "Joan Hackett" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Texas Chain Saw Massacre", + "year": 1974, + "cast": [ + "Gunnar Hansen", + "Marilyn Burns" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "That's Entertainment!", + "year": 1974, + "cast": [ + "Fred Astaire", + "Gene Kelly", + "Frank Sinatra", + "Elizabeth Taylor", + "Mickey Rooney", + "Liza Minnelli", + "Debbie Reynolds", + "James Stewart", + "Bing Crosby" + ], + "genres": [ + "Documentary", + "Musical" + ] + }, + { + "title": "Thieves Like Us", + "year": 1974, + "cast": [ + "Keith Carradine", + "Shelley Duvall" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Thomasine & Bushrod", + "year": 1974, + "cast": [ + "Max Julien", + "Vonetta McGee" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Three the Hard Way", + "year": 1974, + "cast": [ + "Fred Williamson", + "Jim Kelly", + "Jim Brown" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Three Tough Guys", + "year": 1974, + "cast": [ + "Lino Ventura", + "Isaac Hayes", + "Fred Williamson" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Thunderbolt and Lightfoot", + "year": 1974, + "cast": [ + "Clint Eastwood", + "Jeff Bridges", + "George Kennedy", + "Geoffrey Lewis" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Towering Inferno", + "year": 1974, + "cast": [ + "Steve McQueen", + "Paul Newman", + "Faye Dunaway", + "William Holden", + "Fred Astaire", + "Jennifer Jones", + "Richard Chamberlain", + "O. J. Simpson", + "Susan Blakely", + "Robert Wagner", + "Robert Vaughn" + ], + "genres": [ + "Disaster" + ] + }, + { + "title": "The Trial of Billy Jack", + "year": 1974, + "cast": [ + "Tom Laughlin", + "Delores Taylor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Truck Turner", + "year": 1974, + "cast": [ + "Isaac Hayes", + "Yaphet Kotto" + ], + "genres": [ + "Action" + ] + }, + { + "title": "UFO: Target Earth", + "year": 1974, + "cast": [ + "Nick Plakias", + "Cynthia Cline" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Ultimate Thrill", + "year": 1974, + "cast": [ + "Barry Brown", + "Britt Ekland" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Uptown Saturday Night", + "year": 1974, + "cast": [ + "Sidney Poitier", + "Bill Cosby", + "Richard Pryor" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Very Natural Thing", + "year": 1974, + "cast": [ + "Robert McLane" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Voyage", + "year": 1974, + "cast": [ + "Sophia Loren", + "Richard Burton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "W", + "year": 1974, + "cast": [ + "Twiggy", + "John Vernon", + "Dirk Benedict" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Where the Lilies Bloom", + "year": 1974, + "cast": [ + "Jan Smithers", + "Harry Dean Stanton" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Where the Red Fern Grows", + "year": 1974, + "cast": [ + "James Whitmore", + "Beverly Garland" + ], + "genres": [ + "Family" + ] + }, + { + "title": "The White Dawn", + "year": 1974, + "cast": [ + "Warren Oates", + "Timothy Bottoms" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Willie Dynamite", + "year": 1974, + "cast": [ + "Roscoe Orman", + "Eddie Rivers" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "A Woman Under the Influence", + "year": 1974, + "cast": [ + "Peter Falk", + "Gena Rowlands" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Wrestler", + "year": 1974, + "cast": [ + "Ed Asner" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Yakuza", + "year": 1974, + "cast": [ + "Robert Mitchum", + "Ken Takakura" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Young Frankenstein", + "year": 1974, + "cast": [ + "Gene Wilder", + "Peter Boyle", + "Marty Feldman", + "Madeline Kahn", + "Cloris Leachman", + "Teri Garr", + "Kenneth Mars", + "Gene Hackman" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Zandy's Bride", + "year": 1974, + "cast": [ + "Gene Hackman", + "Liv Ullmann" + ], + "genres": [ + "Western" + ] + }, + { + "title": "92 in the Shade", + "year": 1975, + "cast": [ + "Peter Fonda", + "Margot Kidder", + "Warren Oates", + "Elizabeth Ashley", + "Burgess Meredith", + "Harry Dean Stanton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Aaron Loves Angela", + "year": 1975, + "cast": [ + "Moses Gunn", + "Irene Cara" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Adventure of Sherlock Holmes' Smarter Brother", + "year": 1975, + "cast": [ + "Gene Wilder", + "Marty Feldman", + "Madeline Kahn", + "Leo McKern", + "Dom DeLuise" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Adventures of the Wilderness Family", + "year": 1975, + "cast": [ + "Robert Logan", + "Susan Damante-Shaw" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Aloha, Bobby and Rose", + "year": 1975, + "cast": [ + "Paul Le Mat", + "Tim McIntire", + "Leigh French" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Apple Dumpling Gang", + "year": 1975, + "cast": [ + "Tim Conway", + "Don Knotts", + "Harry Morgan" + ], + "genres": [ + "Family", + "Comedy" + ] + }, + { + "title": "At Long Last Love", + "year": 1975, + "cast": [ + "Burt Reynolds", + "Cybill Shepherd", + "Madeline Kahn", + "Duilio Del Prete", + "Eileen Brennan", + "John Hillerman" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Barry Lyndon", + "year": 1975, + "cast": [ + "Ryan O'Neal", + "Marisa Berenson", + "Hardy Krüger", + "Patrick Magee" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Bite the Bullet", + "year": 1975, + "cast": [ + "Gene Hackman", + "James Coburn", + "Candice Bergen", + "Ben Johnson", + "Jan-Michael Vincent", + "Ian Bannen", + "Dabney Coleman" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Black Bird", + "year": 1975, + "cast": [ + "George Segal", + "Elisha Cook Jr." + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Black Fist", + "year": 1975, + "cast": [ + "Richard Lawson", + "Dabney Coleman" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Blazing Stewardesses", + "year": 1975, + "cast": [ + "Yvonne De Carlo", + "Regina Carrol" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Boss Nigger", + "year": 1975, + "cast": [ + "Fred Williamson", + "D'Urville Martin" + ], + "genres": [ + "Western" + ] + }, + { + "title": "A Boy and His Dog", + "year": 1975, + "cast": [ + "Don Johnson", + "Susanne Benton", + "Jason Robards" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Brannigan", + "year": 1975, + "cast": [ + "John Wayne", + "Richard Attenborough", + "John Vernon", + "Judy Geeson", + "Mel Ferrer" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Breakheart Pass", + "year": 1975, + "cast": [ + "Charles Bronson", + "Ben Johnson", + "Jill Ireland", + "Richard Crenna", + "Charles Durning" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Breakout", + "year": 1975, + "cast": [ + "Charles Bronson", + "Robert Duvall", + "Jill Ireland", + "John Huston" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Brother, Can You Spare a Dime?", + "year": 1975, + "cast": [ + "W. C. Fields", + "Clark Gable", + "Herbert Hoover" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Bucktown", + "year": 1975, + "cast": [ + "Fred Williamson", + "Pam Grier" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Bug", + "year": 1975, + "cast": [ + "Bradford Dillman", + "Joanna Miles" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Bugs Bunny: Superstar", + "year": 1975, + "cast": [ + "Orson Welles" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "The Candy Tangerine Man", + "year": 1975, + "cast": [ + "John Daniels", + "Eli Haines", + "Tom Hankason" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Capone", + "year": 1975, + "cast": [ + "Ben Gazzara", + "Susan Blakely", + "John Cassavetes", + "Sylvester Stallone" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Cleopatra Jones and the Casino of Gold", + "year": 1975, + "cast": [ + "Tamara Dobson", + "Stella Stevens" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Conduct Unbecoming", + "year": 1975, + "cast": [ + "Stacy Keach", + "Richard Attenborough", + "Christopher Plummer", + "Michael York", + "Susannah York" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Cooley High", + "year": 1975, + "cast": [ + "Lawrence Hilton-Jacobs", + "Glynn Turman", + "Garrett Morris" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Coonskin aka Street Fight", + "year": 1975, + "cast": [ + "Voices of", + "Philip Michael Thomas", + "Barry White", + "Scatman Crothers", + "Charles Gordone" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Crazy Mama", + "year": 1975, + "cast": [ + "Cloris Leachman", + "Stuart Whitman", + "Ann Sothern", + "Donny Most", + "Linda Purl" + ], + "genres": [ + "Action", + "Comedy" + ] + }, + { + "title": "The Day of the Locust", + "year": 1975, + "cast": [ + "Donald Sutherland", + "Karen Black", + "William Atherton", + "Geraldine Page", + "Burgess Meredith" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Death Race 2000", + "year": 1975, + "cast": [ + "David Carradine", + "Sylvester Stallone" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Devil's Rain", + "year": 1975, + "cast": [ + "Ernest Borgnine", + "Ida Lupino", + "William Shatner" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Diamonds", + "year": 1975, + "cast": [ + "Robert Shaw", + "Richard Roundtree", + "Shelley Winters", + "Barbara Hershey" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Doc Savage: The Man of Bronze", + "year": 1975, + "cast": [ + "Ron Ely", + "Paul Gleason" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Dog Day Afternoon", + "year": 1975, + "cast": [ + "Al Pacino", + "John Cazale", + "Charles Durning", + "Chris Sarandon", + "James Broderick" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Dolemite", + "year": 1975, + "cast": [ + "Rudy Ray Moore", + "D'Urville Martin" + ], + "genres": [ + "Crime", + "Comedy" + ] + }, + { + "title": "The Drowning Pool", + "year": 1975, + "cast": [ + "Paul Newman", + "Joanne Woodward", + "Anthony Franciosa", + "Melanie Griffith", + "Murray Hamilton", + "Gail Strickland" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Eiger Sanction", + "year": 1975, + "cast": [ + "Clint Eastwood", + "George Kennedy", + "Jack Cassidy", + "Vonetta McGee", + "Gregory Walcott" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Escape to Witch Mountain", + "year": 1975, + "cast": [ + "Ray Milland", + "Donald Pleasence" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Farewell, My Lovely", + "year": 1975, + "cast": [ + "Robert Mitchum", + "Charlotte Rampling", + "John Ireland", + "Sylvia Miles", + "Harry Dean Stanton" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Fore Play", + "year": 1975, + "cast": [ + "Zero Mostel", + "Estelle Parsons" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Fortune", + "year": 1975, + "cast": [ + "Warren Beatty", + "Jack Nicholson", + "Stockard Channing" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Framed", + "year": 1975, + "cast": [ + "Joe Don Baker", + "Conny Van Dyke", + "John Marley" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "French Connection II", + "year": 1975, + "cast": [ + "Gene Hackman", + "Fernando Rey" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Friday Foster", + "year": 1975, + "cast": [ + "Pam Grier", + "Yaphet Kotto", + "Eartha Kitt" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Funny Lady", + "year": 1975, + "cast": [ + "Barbra Streisand", + "James Caan" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Giant Spider Invasion", + "year": 1975, + "cast": [ + "Steve Brodie", + "Alan Hale Jr." + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Give 'em Hell, Harry!", + "year": 1975, + "cast": [ + "James Whitmore" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Gone with the West", + "year": 1975, + "cast": [ + "James Caan", + "Stefanie Powers" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Great Waldo Pepper", + "year": 1975, + "cast": [ + "Robert Redford", + "Susan Sarandon", + "Margot Kidder" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Grey Gardens", + "year": 1975, + "cast": [ + "Edith Bouvier Beale", + "Edith Ewing Bouvier" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Happy Hooker", + "year": 1975, + "cast": [ + "Lynn Redgrave", + "Jean-Pierre Aumont", + "Conrad Janis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hard Times", + "year": 1975, + "cast": [ + "Charles Bronson", + "James Coburn", + "Jill Ireland" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hearts of the West", + "year": 1975, + "cast": [ + "Jeff Bridges", + "Andy Griffith", + "Donald Pleasence" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hester Street", + "year": 1975, + "cast": [ + "Carol Kane", + "Steven Keats" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Hiding Place", + "year": 1975, + "cast": [ + "Julie Harris", + "Eileen Heckart" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Hindenburg", + "year": 1975, + "cast": [ + "George C. Scott", + "Anne Bancroft", + "Roy Thinnes", + "Charles Durning", + "Gig Young" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Hustle", + "year": 1975, + "cast": [ + "Burt Reynolds", + "Catherine Deneuve", + "Ben Johnson" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Inserts", + "year": 1975, + "cast": [ + "Richard Dreyfuss", + "Veronica Cartwright", + "Jessica Harper", + "Bob Hoskins" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "I Wonder Who's Killing Her Now?", + "year": 1975, + "cast": [ + "Bill Dana", + "Bob Dishy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Jaws", + "year": 1975, + "cast": [ + "Roy Scheider", + "Robert Shaw", + "Richard Dreyfuss" + ], + "genres": [ + "Thriller", + "Adventure" + ] + }, + { + "title": "The Killer Elite", + "year": 1975, + "cast": [ + "James Caan", + "Robert Duvall", + "Burt Young", + "Mako" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Land That Time Forgot", + "year": 1975, + "cast": [ + "Doug McClure" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Lepke", + "year": 1975, + "cast": [ + "Tony Curtis", + "Anjanette Comer" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Let's Do It Again", + "year": 1975, + "cast": [ + "Sidney Poitier", + "Bill Cosby", + "Ossie Davis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Love and Death", + "year": 1975, + "cast": [ + "Woody Allen", + "Diane Keaton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Lucky Lady", + "year": 1975, + "cast": [ + "Liza Minnelli", + "Burt Reynolds", + "Gene Hackman" + ], + "genres": [ + "Crime", + "Comedy" + ] + }, + { + "title": "Mackintosh and T.J.", + "year": 1975, + "cast": [ + "Roy Rogers", + "Joan Hackett" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Mahogany", + "year": 1975, + "cast": [ + "Diana Ross", + "Billy Dee Williams", + "Anthony Perkins" + ], + "genres": [ + "Drama", + "Romance" + ] + }, + { + "title": "Man Friday", + "year": 1975, + "cast": [ + "Peter O'Toole", + "Richard Roundtree" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Man in the Glass Booth", + "year": 1975, + "cast": [ + "Maximilian Schell", + "Lois Nettleton" + ], + "genres": [ + "Drama", + "Biography" + ] + }, + { + "title": "The Man Who Would Be King", + "year": 1975, + "cast": [ + "Sean Connery", + "Michael Caine", + "Christopher Plummer" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Mandingo", + "year": 1975, + "cast": [ + "James Mason", + "Susan George", + "Ken Norton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Master Gunfighter", + "year": 1975, + "cast": [ + "Tom Laughlin", + "Ron O'Neal" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Milestones", + "year": 1975, + "cast": [ + "Grace Paley" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Mitchell", + "year": 1975, + "cast": [ + "Joe Don Baker", + "Martin Balsam", + "Linda Evans" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Moonrunners", + "year": 1975, + "cast": [ + "James Mitchum", + "Waylon Jennings" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Mr. Ricco", + "year": 1975, + "cast": [ + "Dean Martin" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Naked Came The Stranger", + "year": 1975, + "cast": [ + "Alan Marlow", + "Darby Lloyd Rains", + "David Savage" + ], + "genres": [ + "Erotic" + ] + }, + { + "title": "Nashville", + "year": 1975, + "cast": [ + "Keith Carradine", + "Karen Black", + "Ned Beatty", + "Ronee Blakley", + "Lily Tomlin", + "Barbara Harris", + "Gwen Welles" + ], + "genres": [ + "Drama", + "Musical" + ] + }, + { + "title": "Night Moves", + "year": 1975, + "cast": [ + "Gene Hackman", + "Susan Clark", + "Melanie Griffith", + "James Woods", + "Jennifer Warren", + "Harris Yulin" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Noah", + "year": 1975, + "cast": [ + "Robert Strauss", + "Sally Kirkland" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Once Is Not Enough", + "year": 1975, + "cast": [ + "Kirk Douglas", + "Alexis Smith", + "David Janssen", + "Deborah Raffin", + "Brenda Vaccaro", + "George Hamilton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "One Flew Over the Cuckoo's Nest", + "year": 1975, + "cast": [ + "Jack Nicholson", + "Louise Fletcher", + "Brad Dourif", + "Danny DeVito", + "William Redfield", + "Will Sampson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "One of Our Dinosaurs Is Missing", + "year": 1975, + "cast": [ + "Peter Ustinov", + "Helen Hayes" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Operation: Daybreak", + "year": 1975, + "cast": [ + "Timothy Bottoms", + "Martin Shaw", + "Joss Ackland" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Other Side of the Mountain", + "year": 1975, + "cast": [ + "Marilyn Hassett", + "Beau Bridges" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Out of Season", + "year": 1975, + "cast": [ + "Vanessa Redgrave", + "Cliff Robertson", + "Susan George" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Peeper", + "year": 1975, + "cast": [ + "Michael Caine", + "Natalie Wood", + "Kitty Winn" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Permission to Kill", + "year": 1975, + "cast": [ + "Dirk Bogarde", + "Ava Gardner" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Posse", + "year": 1975, + "cast": [ + "Kirk Douglas", + "Bruce Dern", + "Bo Hopkins" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Prisoner of Second Avenue", + "year": 1975, + "cast": [ + "Jack Lemmon", + "Anne Bancroft", + "Gene Saks" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Psychic Killer", + "year": 1975, + "cast": [ + "Jim Hutton", + "Julie Adams" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Queen of the Stardust Ballroom", + "year": 1975, + "cast": [ + "Maureen Stapleton", + "Charles Durning" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Race with the Devil", + "year": 1975, + "cast": [ + "Peter Fonda", + "Warren Oates" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Rafferty and the Gold Dust Twins", + "year": 1975, + "cast": [ + "Sally Kellerman", + "Alan Arkin", + "Mackenzie Phillips" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Rancho Deluxe", + "year": 1975, + "cast": [ + "Jeff Bridges", + "Sam Waterston", + "Elizabeth Ashley", + "Harry Dean Stanton", + "Clifton James", + "Slim Pickens" + ], + "genres": [ + "Comedy", + "Western" + ] + }, + { + "title": "The Reincarnation of Peter Proud", + "year": 1975, + "cast": [ + "Michael Sarrazin", + "Margot Kidder", + "Jennifer O'Neill" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Return to Macon County", + "year": 1975, + "cast": [ + "Nick Nolte", + "Don Johnson", + "Robin Mattson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Return of the Pink Panther", + "year": 1975, + "cast": [ + "Peter Sellers", + "Catherine Schell", + "Herbert Lom", + "Christopher Plummer" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Rocky Horror Picture Show", + "year": 1975, + "cast": [ + "Tim Curry", + "Susan Sarandon", + "Barry Bostwick" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Rollerball", + "year": 1975, + "cast": [ + "James Caan", + "John Beck", + "John Houseman" + ], + "genres": [ + "Science Fiction", + "Action" + ] + }, + { + "title": "The Romantic Englishwoman", + "year": 1975, + "cast": [ + "Glenda Jackson", + "Michael Caine" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Rooster Cogburn", + "year": 1975, + "cast": [ + "John Wayne", + "Katharine Hepburn" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Rosebud", + "year": 1975, + "cast": [ + "Peter O'Toole", + "Peter Lawford" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "Royal Flash", + "year": 1975, + "cast": [ + "Oliver Reed", + "Malcolm McDowell" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Russian Roulette", + "year": 1975, + "cast": [ + "George Segal", + "Denholm Elliott" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Shampoo", + "year": 1975, + "cast": [ + "Warren Beatty", + "Julie Christie", + "Goldie Hawn", + "Jack Warden", + "Lee Grant", + "Carrie Fisher", + "Tony Bill" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sheba, Baby", + "year": 1975, + "cast": [ + "Pam Grier", + "D'Urville Martin" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Smile", + "year": 1975, + "cast": [ + "Barbara Feldon", + "Bruce Dern" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Spiral Staircase", + "year": 1975, + "cast": [ + "Jacqueline Bisset", + "Christopher Plummer" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Stepford Wives", + "year": 1975, + "cast": [ + "Katharine Ross", + "Paula Prentiss", + "Tina Louise" + ], + "genres": [ + "Science Fiction", + "Thriller" + ] + }, + { + "title": "The Strongest Man in the World", + "year": 1975, + "cast": [ + "Kurt Russell", + "Joe Flynn", + "Phil Silvers" + ], + "genres": [ + "Family" + ] + }, + { + "title": "The Sunshine Boys", + "year": 1975, + "cast": [ + "Walter Matthau", + "George Burns", + "Richard Benjamin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Supervixens", + "year": 1975, + "cast": [ + "Charles Napier", + "Shari Eubank", + "Uschi Digard" + ], + "genres": [] + }, + { + "title": "Switchblade Sisters", + "year": 1975, + "cast": [ + "Robbie Lee", + "Joanne Nail" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Take a Hard Ride", + "year": 1975, + "cast": [ + "Jim Brown", + "Lee Van Cleef", + "Fred Williamson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "That Lucky Touch", + "year": 1975, + "cast": [ + "Roger Moore", + "Lee J. Cobb", + "Susannah York" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Three Days of the Condor", + "year": 1975, + "cast": [ + "Robert Redford", + "Faye Dunaway", + "Cliff Robertson" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Thundercrack!", + "year": 1975, + "cast": [ + "Marion Eaton", + "George Kuchar" + ], + "genres": [ + "Erotic", + "Horror" + ] + }, + { + "title": "Trucker's Woman", + "year": 1975, + "cast": [], + "genres": [ + "Action" + ] + }, + { + "title": "Tubby the Tuba", + "year": 1975, + "cast": [ + "Voices of", + "Dick Van Dyke", + "Jack Gilford" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "The Ultimate Warrior", + "year": 1975, + "cast": [ + "Yul Brynner", + "Max von Sydow", + "Joanna Miles" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "W.W. and the Dixie Dancekings", + "year": 1975, + "cast": [ + "Burt Reynolds", + "Conny Van Dyke", + "Ned Beatty", + "Jerry Reed", + "Art Carney" + ], + "genres": [ + "Action", + "Comedy" + ] + }, + { + "title": "Walking Tall Part 2", + "year": 1975, + "cast": [ + "Bo Svenson" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Werewolf of Woodstock", + "year": 1975, + "cast": [ + "Tige Andrews", + "Michael Parks" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "White Line Fever", + "year": 1975, + "cast": [ + "Jan-Michael Vincent", + "Slim Pickens", + "L. Q. Jones" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Wild Party", + "year": 1975, + "cast": [ + "Raquel Welch", + "James Coco", + "Perry King" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Wind and the Lion", + "year": 1975, + "cast": [ + "Sean Connery", + "Candice Bergen", + "John Huston", + "Geoffrey Lewis", + "Brian Keith" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Across the Great Divide", + "year": 1976, + "cast": [ + "Heather Rattray" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Alice, Sweet Alice", + "year": 1976, + "cast": [ + "Linda Miller", + "Brooke Shields" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "All the President's Men", + "year": 1976, + "cast": [ + "Robert Redford", + "Dustin Hoffman", + "Jason Robards", + "Jack Warden", + "Hal Holbrook", + "Stephen Collins", + "Jane Alexander", + "Martin Balsam", + "Ned Beatty", + "Lindsay Crouse" + ], + "genres": [ + "Drama", + "Biography" + ] + }, + { + "title": "Assault on Precinct 13", + "year": 1976, + "cast": [ + "Austin Stoker", + "Darwin Joston", + "Charles Cyphers" + ], + "genres": [ + "Action" + ] + }, + { + "title": "At the Earth's Core", + "year": 1976, + "cast": [ + "Doug McClure" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Baby Blue Marine", + "year": 1976, + "cast": [ + "Jan-Michael Vincent", + "Glynnis O'Connor", + "Katherine Helmond", + "Richard Gere" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Bad News Bears", + "year": 1976, + "cast": [ + "Walter Matthau", + "Tatum O'Neal", + "Chris Barnes", + "Jackie Earle Haley", + "Vic Morrow", + "Joyce Van Patten", + "Brandon Cruz" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Bette Midler Show", + "year": 1976, + "cast": [ + "Bette Midler", + "Sharon Redd", + "Ula Hedwig", + "Charlotte Crossley" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Big Bus", + "year": 1976, + "cast": [ + "Stockard Channing", + "Joseph Bologna", + "John Beck", + "Sally Kellerman", + "Richard Mulligan", + "Jose Ferrer", + "Murphy Dunne" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Bingo Long Traveling All-Stars & Motor Kings", + "year": 1976, + "cast": [ + "Billy Dee Williams", + "James Earl Jones", + "Richard Pryor" + ], + "genres": [ + "Comedy", + "Sports" + ] + }, + { + "title": "Black Heat", + "year": 1976, + "cast": [ + "Timothy Brown", + "Russ Tamblyn" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Black Shampoo", + "year": 1976, + "cast": [ + "John R. Daniels", + "Tanya Boyd", + "Joe Ortiz" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Blank Generation", + "year": 1976, + "cast": [ + "Richard Hell", + "Patti Smith Group", + "Ramones", + "Television" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Blue Bird", + "year": 1976, + "cast": [ + "Elizabeth Taylor", + "Jane Fonda", + "Cicely Tyson", + "Ava Gardner" + ], + "genres": [ + "Family", + "Fantasy" + ] + }, + { + "title": "Bobbie Jo and the Outlaw", + "year": 1976, + "cast": [ + "Lynda Carter", + "Marjoe Gortner" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Bound for Glory", + "year": 1976, + "cast": [ + "David Carradine", + "Ronny Cox", + "Melinda Dillon", + "Randy Quaid", + "Gail Strickland" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Breaking Point", + "year": 1976, + "cast": [ + "Bo Svenson", + "Robert Culp", + "John Colicos" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Buffalo Bill and the Indians, or Sitting Bull's History Lesson", + "year": 1976, + "cast": [ + "Paul Newman", + "Burt Lancaster", + "Harvey Keitel", + "Will Sampson", + "Joel Grey", + "Pat McCormick", + "Geraldine Chaplin" + ], + "genres": [ + "Western", + "Comedy" + ] + }, + { + "title": "Burnt Offerings", + "year": 1976, + "cast": [ + "Karen Black", + "Bette Davis", + "Oliver Reed" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Cannonball", + "year": 1976, + "cast": [ + "David Carradine", + "Robert Carradine", + "Veronica Hamel" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Car Wash", + "year": 1976, + "cast": [ + "Antonio Fargas", + "Franklyn Ajaye", + "George Carlin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Carrie", + "year": 1976, + "cast": [ + "Sissy Spacek", + "Piper Laurie", + "William Katt", + "Amy Irving", + "Betty Buckley", + "P.J. Soles", + "John Travolta" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Chesty Anderson, USN", + "year": 1976, + "cast": [ + "Shari Eubank", + "Fred Willard", + "Scatman Crothers" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Creature from Black Lake", + "year": 1976, + "cast": [ + "Jack Elam" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Death Journey", + "year": 1976, + "cast": [], + "genres": [ + "Action" + ] + }, + { + "title": "Death Machines", + "year": 1976, + "cast": [], + "genres": [] + }, + { + "title": "Deadly Hero", + "year": 1976, + "cast": [ + "Don Murray", + "James Earl Jones", + "Lilia Skala" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Diary of the Dead", + "year": 1976, + "cast": [ + "Héctor Elizondo", + "Geraldine Fitzgerald", + "Salome Jens" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Dixie Dynamite", + "year": 1976, + "cast": [ + "Warren Oates", + "Christopher George" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Dogs", + "year": 1976, + "cast": [], + "genres": [ + "Horror" + ] + }, + { + "title": "Dr. Black, Mr. Hyde", + "year": 1976, + "cast": [ + "Bernie Casey" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Drive-In Massacre", + "year": 1976, + "cast": [ + "Bruce Kimball" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Drum", + "year": 1976, + "cast": [ + "Warren Oates", + "Ken Norton", + "Pam Grier" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Duchess and the Dirtwater Fox", + "year": 1976, + "cast": [ + "Goldie Hawn", + "George Segal" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Eagle Has Landed", + "year": 1976, + "cast": [ + "Michael Caine", + "Robert Duvall" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Eat My Dust", + "year": 1976, + "cast": [ + "Ron Howard" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Embryo", + "year": 1976, + "cast": [ + "Rock Hudson", + "Barbara Carrera", + "Diane Ladd" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Enforcer", + "year": 1976, + "cast": [ + "Clint Eastwood", + "Tyne Daly", + "Bradford Dillman" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Family Plot", + "year": 1976, + "cast": [ + "Karen Black", + "Bruce Dern", + "Barbara Harris", + "William Devane", + "Cathleen Nesbitt", + "Ed Lauter" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "Fighting Mad", + "year": 1976, + "cast": [ + "Peter Fonda" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The First Nudie Musical", + "year": 1976, + "cast": [ + "Cindy Williams", + "Diana Canova" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "The Food of the Gods", + "year": 1976, + "cast": [ + "Marjoe Gortner", + "Pamela Franklin", + "Ida Lupino" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Freaky Friday", + "year": 1976, + "cast": [ + "Jodie Foster", + "Barbara Harris" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "From Noon till Three", + "year": 1976, + "cast": [ + "Charles Bronson", + "Jill Ireland" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Front", + "year": 1976, + "cast": [ + "Woody Allen", + "Zero Mostel", + "Andrea Marcovicci", + "Herschel Bernardi", + "Michael Murphy" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Futureworld", + "year": 1976, + "cast": [ + "Blythe Danner", + "Peter Fonda", + "Arthur Hill", + "Yul Brynner" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Gable and Lombard", + "year": 1976, + "cast": [ + "James Brolin", + "Jill Clayburgh" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Gang Wars", + "year": 1976, + "cast": [], + "genres": [] + }, + { + "title": "Gator", + "year": 1976, + "cast": [ + "Burt Reynolds", + "Lauren Hutton", + "Jack Weston" + ], + "genres": [ + "Action" + ] + }, + { + "title": "God Told Me To", + "year": 1976, + "cast": [ + "Tony LoBianco", + "Sandy Dennis", + "Deborah Raffin" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Great Scout & Cathouse Thursday", + "year": 1976, + "cast": [ + "Lee Marvin", + "Oliver Reed", + "Robert Culp", + "Kay Lenz" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Grizzly", + "year": 1976, + "cast": [ + "Christopher George", + "Andrew Prine", + "Richard Jaeckel" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Gumball Rally", + "year": 1976, + "cast": [ + "Gary Busey", + "Tim McIntire", + "Michael Sarrazin" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Gus", + "year": 1976, + "cast": [ + "Edward Asner", + "Don Knotts" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Harlan County, USA", + "year": 1976, + "cast": [ + "W.A. Boyle" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Harry and Walter Go to New York", + "year": 1976, + "cast": [ + "James Caan", + "Elliott Gould", + "Diane Keaton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hawmps!", + "year": 1976, + "cast": [ + "Slim Pickens", + "Denver Pyle" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hollywood Boulevard", + "year": 1976, + "cast": [ + "Mary Woronov", + "Dick Miller" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hot Potato", + "year": 1976, + "cast": [ + "Jim Kelly" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Human Tornado", + "year": 1976, + "cast": [ + "Rudy Ray Moore", + "Ernie Hudson" + ], + "genres": [ + "Action" + ] + }, + { + "title": "I Will, I Will... for Now", + "year": 1976, + "cast": [ + "Elliott Gould", + "Diane Keaton", + "Paul Sorvino" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "J. D.'s Revenge", + "year": 1976, + "cast": [ + "Louis Gossett, Jr.", + "Glynn Turman" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Jackson County Jail", + "year": 1976, + "cast": [ + "Yvette Mimieux", + "Tommy Lee Jones" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Killer Force", + "year": 1976, + "cast": [ + "Telly Savalas", + "Peter Fonda" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Killer Inside Me", + "year": 1976, + "cast": [ + "Stacy Keach", + "Susan Tyrrell" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Killing of a Chinese Bookie", + "year": 1976, + "cast": [ + "Ben Gazzara", + "Timothy Carey", + "Seymour Cassel" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "King Kong", + "year": 1976, + "cast": [ + "Jeff Bridges", + "Jessica Lange", + "Charles Grodin" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "King Kung Fu", + "year": 1976, + "cast": [ + "John Balee", + "John D. Hayes" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Last Hard Men", + "year": 1976, + "cast": [ + "Charlton Heston", + "James Coburn", + "Barbara Hershey", + "Michael Parks" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Last Tycoon", + "year": 1976, + "cast": [ + "Robert De Niro", + "Tony Curtis", + "Robert Mitchum", + "Ray Milland", + "Theresa Russell", + "Jack Nicholson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Leadbelly", + "year": 1976, + "cast": [ + "Roger E. Mosley" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Lifeguard", + "year": 1976, + "cast": [ + "Sam Elliott", + "Anne Archer", + "Kathleen Quinlan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Lipstick", + "year": 1976, + "cast": [ + "Margaux Hemingway", + "Mariel Hemingway" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Little Girl Who Lives Down the Lane", + "year": 1976, + "cast": [ + "Martin Sheen", + "Jodie Foster" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Logan's Run", + "year": 1976, + "cast": [ + "Michael York", + "Jenny Agutter", + "Peter Ustinov", + "Farrah Fawcett", + "Richard Jordan" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Mako: The Jaws of Death", + "year": 1976, + "cast": [ + "Richard Jaeckel", + "Jennifer Bishop" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Mansion of the Doomed", + "year": 1976, + "cast": [], + "genres": [ + "Horror" + ] + }, + { + "title": "Marathon Man", + "year": 1976, + "cast": [ + "Dustin Hoffman", + "Laurence Olivier", + "Roy Scheider", + "Marthe Keller", + "William Devane", + "Fritz Weaver" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Massacre at Central High", + "year": 1976, + "cast": [ + "Andrew Stevens", + "Robert Carradine" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Mastermind", + "year": 1976, + "cast": [ + "Zero Mostel" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Matter of Time", + "year": 1976, + "cast": [ + "Ingrid Bergman", + "Charles Boyer", + "Liza Minnelli" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Mean Johnny Barrows", + "year": 1976, + "cast": [ + "Fred Williamson", + "Elliott Gould" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Memory of Justice", + "year": 1976, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "Midway", + "year": 1976, + "cast": [ + "Charlton Heston", + "Henry Fonda", + "Robert Mitchum", + "Glenn Ford", + "Robert Wagner", + "Cliff Robertson", + "James Coburn" + ], + "genres": [ + "War" + ] + }, + { + "title": "Mikey and Nicky", + "year": 1976, + "cast": [ + "Peter Falk", + "John Cassavetes" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Missouri Breaks", + "year": 1976, + "cast": [ + "Marlon Brando", + "Jack Nicholson", + "Randy Quaid", + "Harry Dean Stanton", + "Frederic Forrest", + "Kathleen Lloyd" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Monkey Hustle", + "year": 1976, + "cast": [ + "Yaphet Kotto", + "Rosalind Cash" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Mother, Jugs & Speed", + "year": 1976, + "cast": [ + "Raquel Welch", + "Bill Cosby", + "Harvey Keitel" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Moving Violation", + "year": 1976, + "cast": [ + "Stephen McHattie", + "Kay Lenz" + ], + "genres": [ + "Crime", + "Comedy" + ] + }, + { + "title": "Murder by Death", + "year": 1976, + "cast": [ + "Peter Falk", + "Peter Sellers", + "David Niven", + "Maggie Smith", + "Alec Guinness", + "Elsa Lanchester", + "James Coco", + "James Cromwell", + "Eileen Brennan", + "Nancy Walker", + "Truman Capote" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Mysterious Monsters", + "year": 1976, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "Network", + "year": 1976, + "cast": [ + "Peter Finch", + "William Holden", + "Faye Dunaway", + "Beatrice Straight", + "Robert Duvall", + "Wesley Addy", + "Ned Beatty" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Next Man", + "year": 1976, + "cast": [ + "Sean Connery", + "Cornelia Sharpe" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Next Stop, Greenwich Village", + "year": 1976, + "cast": [ + "Shelley Winters", + "Lenny Baker", + "Christopher Walken" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Nickelodeon", + "year": 1976, + "cast": [ + "Ryan O'Neal", + "Burt Reynolds", + "Tatum O'Neal", + "Stella Stevens" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "No Deposit, No Return", + "year": 1976, + "cast": [ + "David Niven", + "Don Knotts", + "Darren McGavin", + "Barbara Feldon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Obsession", + "year": 1976, + "cast": [ + "Cliff Robertson", + "Geneviève Bujold", + "John Lithgow" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Ode to Billy Joe", + "year": 1976, + "cast": [ + "Robby Benson", + "Glynnis O'Connor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Omen", + "year": 1976, + "cast": [ + "Gregory Peck", + "Lee Remick", + "David Warner" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "One Away", + "year": 1976, + "cast": [ + "Elke Sommer", + "Bradford Dillman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "One Summer Love", + "year": 1976, + "cast": [ + "Beau Bridges", + "Susan Sarandon", + "James Noble" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Opening of Misty Beethoven", + "year": 1976, + "cast": [ + "Constance Money", + "Jamie Gillis", + "Gloria Leonard" + ], + "genres": [ + "Erotic" + ] + }, + { + "title": "The Outlaw Josey Wales", + "year": 1976, + "cast": [ + "Clint Eastwood", + "Chief Dan George", + "Sam Bottoms", + "John Vernon", + "Bill McKinney", + "Sondra Locke", + "Joyce Jameson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Return of a Man Called Horse", + "year": 1976, + "cast": [ + "Richard Harris" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Rich Man, Poor Man", + "year": 1976, + "cast": [ + "Nick Nolte", + "Peter Strauss", + "Susan Blakely", + "Ed Asner", + "Robert Reed", + "Fionnula Flanagan", + "Van Johnson", + "Bill Bixby", + "Kim Darby", + "Kay Lenz" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Ritz", + "year": 1976, + "cast": [ + "Rita Moreno", + "F. Murray Abraham", + "Kaye Ballard", + "Jerry Stiller" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Robin and Marian", + "year": 1976, + "cast": [ + "Sean Connery", + "Audrey Hepburn" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Rocky", + "year": 1976, + "cast": [ + "Sylvester Stallone", + "Carl Weathers", + "Talia Shire", + "Burt Young", + "Burgess Meredith", + "Tony Burton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Sailor Who Fell from Grace with the Sea", + "year": 1976, + "cast": [ + "Sarah Miles", + "Kris Kristofferson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Scorchy", + "year": 1976, + "cast": [ + "Connie Stevens" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Secrets of the Gods", + "year": 1976, + "cast": [ + "Rosko", + "(narrated by)" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Sell Out", + "year": 1976, + "cast": [ + "Richard Widmark", + "Oliver Reed" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Seven-Per-Cent Solution", + "year": 1976, + "cast": [ + "Robert Duvall", + "Alan Arkin", + "Nicol Williamson", + "Samantha Eggar", + "Laurence Olivier" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Shaggy D.A.", + "year": 1976, + "cast": [ + "Dean Jones", + "Suzanne Pleshette" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Shoot", + "year": 1976, + "cast": [ + "Cliff Robertson", + "Ernest Borgnine" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Shootist", + "year": 1976, + "cast": [ + "John Wayne", + "James Stewart", + "Lauren Bacall", + "Ron Howard", + "Harry Morgan", + "Scatman Crothers", + "Hugh O'Brian", + "Richard Boone", + "Sheree North" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Shout at the Devil", + "year": 1976, + "cast": [ + "Lee Marvin", + "Roger Moore" + ], + "genres": [ + "War" + ] + }, + { + "title": "Silent Movie", + "year": 1976, + "cast": [ + "Mel Brooks", + "Dom DeLuise", + "Marty Feldman", + "Sid Caesar", + "Bernadette Peters", + "Marcel Marceau", + "Anne Bancroft", + "Liza Minnelli", + "Burt Reynolds", + "James Caan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Silver Streak", + "year": 1976, + "cast": [ + "Gene Wilder", + "Richard Pryor", + "Jill Clayburgh", + "Patrick McGoohan", + "Ned Beatty", + "Clifton James" + ], + "genres": [ + "Crime", + "Comedy" + ] + }, + { + "title": "A Small Town in Texas", + "year": 1976, + "cast": [ + "Timothy Bottoms", + "Susan George" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Sky Riders", + "year": 1976, + "cast": [ + "James Coburn", + "Susannah York", + "Robert Culp" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Snuff", + "year": 1976, + "cast": [], + "genres": [] + }, + { + "title": "The Song Remains the Same", + "year": 1976, + "cast": [ + "Led Zeppelin" + ], + "genres": [ + "Performance" + ] + }, + { + "title": "Sparkle", + "year": 1976, + "cast": [ + "Philip Michael Thomas", + "Irene Cara" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Squirm", + "year": 1976, + "cast": [ + "Don Scardino", + "Jean Sullivan" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "A Star is Born", + "year": 1976, + "cast": [ + "Barbra Streisand", + "Kris Kristofferson", + "Gary Busey" + ], + "genres": [ + "Musical", + "Drama" + ] + }, + { + "title": "Stay Hungry", + "year": 1976, + "cast": [ + "Jeff Bridges", + "Sally Field", + "Arnold Schwarzenegger" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "St. Ives", + "year": 1976, + "cast": [ + "Charles Bronson", + "Jacqueline Bisset", + "John Houseman" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Swashbuckler", + "year": 1976, + "cast": [ + "Robert Shaw", + "James Earl Jones", + "Geneviève Bujold" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Sweet Revenge", + "year": 1976, + "cast": [ + "Stockard Channing", + "Sam Waterston" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Swiss Conspiracy", + "year": 1976, + "cast": [ + "David Janssen", + "Ray Milland" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sybil", + "year": 1976, + "cast": [ + "Sally Field", + "Joanne Woodward", + "Brad Davis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Target of an Assassin", + "year": 1976, + "cast": [ + "Anthony Quinn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Taxi Driver", + "year": 1976, + "cast": [ + "Robert De Niro", + "Jodie Foster", + "Cybill Shepherd", + "Harvey Keitel", + "Peter Boyle", + "Albert Brooks" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "That's Entertainment, Part II", + "year": 1976, + "cast": [ + "Fred Astaire", + "Gene Kelly" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "To Fly!", + "year": 1976, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Town That Dreaded Sundown", + "year": 1976, + "cast": [ + "Ben Johnson", + "Andrew Prine", + "Dawn Wells" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Track of the Moon Beast", + "year": 1976, + "cast": [ + "Leigh Drake" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Tracks", + "year": 1976, + "cast": [ + "Dennis Hopper", + "Dean Stockwell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Treasure of Matecumbe", + "year": 1976, + "cast": [ + "Robert Foxworth", + "Joan Hackett", + "Peter Ustinov" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Tunnel Vision", + "year": 1976, + "cast": [ + "Ron Silver", + "Howard Hesseman", + "Roger Bowen" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Two-Minute Warning", + "year": 1976, + "cast": [ + "Charlton Heston", + "John Cassavetes", + "Jack Klugman", + "David Janssen", + "Beau Bridges", + "Marilyn Hassett", + "Walter Pidgeon", + "Gena Rowlands" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Up!", + "year": 1976, + "cast": [ + "Raven De La Croix", + "Kitten Natividad" + ], + "genres": [ + "Erotic", + "Comedy" + ] + }, + { + "title": "Velvet Smooth", + "year": 1976, + "cast": [ + "Michael L. Fink", + "Johnnie Hill" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Victory at Entebbe", + "year": 1976, + "cast": [ + "Anthony Hopkins", + "Elizabeth Taylor", + "Burt Lancaster", + "Richard Dreyfuss", + "Julius Harris", + "Helmut Berger", + "Linda Blair", + "Kirk Douglas", + "Helen Hayes" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Vigilante Force", + "year": 1976, + "cast": [ + "Kris Kristofferson", + "Jan-Michael Vincent", + "Victoria Principal" + ], + "genres": [ + "Action" + ] + }, + { + "title": "W.C. Fields and Me", + "year": 1976, + "cast": [ + "Rod Steiger", + "Valerie Perrine", + "Jack Cassidy" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Welcome to L.A.", + "year": 1976, + "cast": [ + "Keith Carradine", + "Geraldine Chaplin", + "Harvey Keitel" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Won Ton Ton, the Dog Who Saved Hollywood", + "year": 1976, + "cast": [ + "Bruce Dern", + "Madeline Kahn", + "Art Carney" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "3 Women", + "year": 1977, + "cast": [ + "Shelley Duvall", + "Sissy Spacek", + "Janice Rule" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Airport '77", + "year": 1977, + "cast": [ + "Jack Lemmon", + "Brenda Vaccaro", + "James Stewart", + "Lee Grant", + "George Kennedy", + "Joseph Cotten", + "Olivia de Havilland", + "Christopher Lee", + "Darren McGavin" + ], + "genres": [ + "Disaster" + ] + }, + { + "title": "Andy Warhol's Bad", + "year": 1977, + "cast": [ + "Susan Tyrrell", + "Carroll Baker" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Annie Hall", + "year": 1977, + "cast": [ + "Woody Allen", + "Diane Keaton" + ], + "genres": [] + }, + { + "title": "Audrey Rose", + "year": 1977, + "cast": [ + "Marsha Mason", + "Anthony Hopkins", + "John Beck" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Bad News Bears in Breaking Training", + "year": 1977, + "cast": [ + "William Devane", + "Jackie Earle Haley" + ], + "genres": [] + }, + { + "title": "Barbara Broadcast", + "year": 1977, + "cast": [ + "Annette Haven", + "C. J. Laing", + "Jamie Gillis" + ], + "genres": [ + "Erotic" + ] + }, + { + "title": "Bare Knuckles", + "year": 1977, + "cast": [ + "Robert Viharo", + "Sherry Jackson", + "Gloria Hendry" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Between the Lines", + "year": 1977, + "cast": [ + "John Heard", + "Lindsay Crouse" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Beyond Reason", + "year": 1977, + "cast": [ + "Telly Savalas", + "Diana Muldaur" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Billion Dollar Hobo", + "year": 1977, + "cast": [ + "Tim Conway", + "Will Geer" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Billy Jack Goes to Washington", + "year": 1977, + "cast": [ + "Tom Laughlin", + "Lucie Arnaz", + "E. G. Marshall" + ], + "genres": [] + }, + { + "title": "Black Sunday", + "year": 1977, + "cast": [ + "Robert Shaw", + "Bruce Dern", + "Marthe Keller" + ], + "genres": [] + }, + { + "title": "Bobby Deerfield", + "year": 1977, + "cast": [ + "Al Pacino", + "Marthe Keller" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Breaker! Breaker!", + "year": 1977, + "cast": [ + "Chuck Norris", + "George Murdock" + ], + "genres": [ + "Action" + ] + }, + { + "title": "A Bridge Too Far", + "year": 1977, + "cast": [ + "Dirk Bogarde", + "James Caan", + "Michael Caine", + "Sean Connery", + "Edward Fox", + "Elliott Gould", + "Gene Hackman", + "Anthony Hopkins", + "Hardy Krüger", + "Laurence Olivier", + "Robert Redford", + "Maximilian Schell" + ], + "genres": [ + "War", + "Action" + ] + }, + { + "title": "Candleshoe", + "year": 1977, + "cast": [ + "David Niven", + "Helen Hayes", + "Jodie Foster" + ], + "genres": [ + "Family" + ] + }, + { + "title": "The Car", + "year": 1977, + "cast": [ + "James Brolin", + "Kathleen Lloyd", + "John Marley", + "Ronny Cox" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Choirboys", + "year": 1977, + "cast": [ + "Charles Durning", + "Louis Gossett Jr.", + "Perry King", + "Don Stroud", + "Burt Young", + "Barbara Rhoades", + "Phyllis Davis" + ], + "genres": [ + "Crime", + "Drama", + "Comedy" + ] + }, + { + "title": "Cinderella", + "year": 1977, + "cast": [ + "Cheryl Smith", + "Sy Richardson" + ], + "genres": [ + "Erotic", + "Musical" + ] + }, + { + "title": "Citizen's Band", + "year": 1977, + "cast": [ + "Paul Le Mat", + "Candy Clark", + "Roberts Blossom" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Close Encounters of the Third Kind", + "year": 1977, + "cast": [ + "Richard Dreyfuss", + "Teri Garr", + "Melinda Dillon", + "Francois Truffaut", + "Bob Balaban" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Confessions of Amans", + "year": 1977, + "cast": [ + "William Bryan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Contract on Cherry Street", + "year": 1977, + "cast": [ + "Frank Sinatra", + "Martin Balsam" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Cross of Iron", + "year": 1977, + "cast": [ + "James Coburn", + "James Mason", + "Maximilian Schell" + ], + "genres": [ + "War", + "Action" + ] + }, + { + "title": "Crossed Swords", + "year": 1977, + "cast": [ + "Oliver Reed", + "Raquel Welch", + "Mark Lester" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Damnation Alley", + "year": 1977, + "cast": [ + "George Peppard", + "Jan-Michael Vincent" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Day of the Animals", + "year": 1977, + "cast": [ + "Leslie Nielsen", + "Lynda Day George" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Death Bed: The Bed That Eats", + "year": 1977, + "cast": [ + "William Russ" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Deep", + "year": 1977, + "cast": [ + "Jacqueline Bisset", + "Robert Shaw", + "Nick Nolte" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Demon Seed", + "year": 1977, + "cast": [ + "Julie Christie", + "Fritz Weaver", + "Robert Vaughn" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Desperate Living", + "year": 1977, + "cast": [ + "Liz Renay", + "Mink Stole" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Domino Principle", + "year": 1977, + "cast": [ + "Gene Hackman", + "Candice Bergen", + "Richard Widmark", + "Eli Wallach", + "Mickey Rooney", + "Edward Albert" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Drive-In Massacre", + "year": 1977, + "cast": [], + "genres": [ + "Horror" + ] + }, + { + "title": "Eaten Alive", + "year": 1977, + "cast": [ + "Carolyn Jones", + "Michael Berryman" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Empire of the Ants", + "year": 1977, + "cast": [ + "Joan Collins", + "Albert Salmi" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Equus", + "year": 1977, + "cast": [ + "Richard Burton", + "Peter Firth", + "Joan Plowright" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Eraserhead", + "year": 1977, + "cast": [ + "Jack Nance", + "Charlotte Stewart" + ], + "genres": [ + "Horror", + "Fantasy" + ] + }, + { + "title": "Exorcist II: The Heretic", + "year": 1977, + "cast": [ + "Linda Blair", + "Richard Burton" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Fight for Your Life", + "year": 1977, + "cast": [ + "Robert Judd", + "William Sanderson" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "First Love", + "year": 1977, + "cast": [ + "William Katt", + "Susan Dey", + "Beverly D'Angelo" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "For the Love of Benji", + "year": 1977, + "cast": [ + "Patsy Garrett", + "Ed Nelson" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Fun with Dick and Jane", + "year": 1977, + "cast": [ + "George Segal", + "Jane Fonda", + "Ed McMahon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Gauntlet", + "year": 1977, + "cast": [ + "Clint Eastwood", + "Pat Hingle", + "Sondra Locke" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Goodbye Girl", + "year": 1977, + "cast": [ + "Richard Dreyfuss", + "Marsha Mason", + "Quinn Cummings" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Grand Theft Auto", + "year": 1977, + "cast": [ + "Ron Howard", + "Marion Ross" + ], + "genres": [ + "Action", + "Comedy" + ] + }, + { + "title": "The Grateful Dead Movie", + "year": 1977, + "cast": [ + "Bob Weir", + "Jerry Garcia" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Grayeagle", + "year": 1977, + "cast": [ + "Ben Johnson", + "Lana Wood" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Greased Lightning", + "year": 1977, + "cast": [ + "Richard Pryor", + "Pam Grier", + "Cleavon Little" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "The Greatest", + "year": 1977, + "cast": [ + "Muhammad Ali", + "Ernest Borgnine" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "The Great Smokey Roadblock", + "year": 1977, + "cast": [ + "Henry Fonda", + "Eileen Brennan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Herbie Goes to Monte Carlo", + "year": 1977, + "cast": [ + "Dean Jones", + "Don Knotts", + "Julie Sommars" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Heroes", + "year": 1977, + "cast": [ + "Henry Winkler", + "Sally Field", + "Harrison Ford" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "High Anxiety", + "year": 1977, + "cast": [ + "Mel Brooks", + "Madeline Kahn", + "Cloris Leachman", + "Harvey Korman", + "Howard Morris", + "Ron Carey" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Hills Have Eyes", + "year": 1977, + "cast": [ + "Susan Lanier", + "Michael Berryman", + "Dee Wallace" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "I Never Promised You a Rose Garden", + "year": 1977, + "cast": [ + "Kathleen Quinlan", + "Bibi Andersson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Incredible Melting Man", + "year": 1977, + "cast": [ + "Myron Healey", + "Janus Blythe" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Island of Dr. Moreau", + "year": 1977, + "cast": [ + "Burt Lancaster", + "Michael York" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Islands in the Stream", + "year": 1977, + "cast": [ + "George C. Scott", + "David Hemmings", + "Gilbert Roland" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Joyride", + "year": 1977, + "cast": [ + "Desi Arnaz Jr.", + "Melanie Griffith" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Julia", + "year": 1977, + "cast": [ + "Vanessa Redgrave", + "Jane Fonda", + "Jason Robards", + "Meryl Streep", + "Rosemary Murphy", + "John Glover", + "Hal Holbrook" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Kentucky Fried Movie", + "year": 1977, + "cast": [ + "Donald Sutherland", + "Henry Gibson", + "Uschi Digard" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Kingdom of the Spiders", + "year": 1977, + "cast": [ + "William Shatner", + "Woody Strode", + "Tiffany Bolling" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Last House on Dead End Street", + "year": 1977, + "cast": [ + "Roger Watkins", + "Ken Fisher" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Last Remake of Beau Geste", + "year": 1977, + "cast": [ + "Marty Feldman", + "Michael York", + "Ann-Margret" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Late Show", + "year": 1977, + "cast": [ + "Art Carney", + "Lily Tomlin", + "Eugene Roche", + "Bill Macy", + "Joanna Cassidy", + "Ruth Nelson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Lincoln Conspiracy", + "year": 1977, + "cast": [ + "Bradford Dillman", + "John Anderson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Little Night Music", + "year": 1977, + "cast": [ + "Elizabeth Taylor", + "Diana Rigg", + "Len Cariou" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Looking for Mr. Goodbar", + "year": 1977, + "cast": [ + "Diane Keaton", + "Tuesday Weld", + "Richard Gere" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "MacArthur", + "year": 1977, + "cast": [ + "Gregory Peck", + "G. D. Spradlin" + ], + "genres": [ + "War", + "Biography" + ] + }, + { + "title": "The Many Adventures of Winnie the Pooh", + "year": 1977, + "cast": [ + "Sterling Holloway", + "John Fiedler", + "Paul Winchell" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "March or Die", + "year": 1977, + "cast": [ + "Gene Hackman", + "Catherine Deneuve" + ], + "genres": [ + "War" + ] + }, + { + "title": "Martin", + "year": 1977, + "cast": [ + "John Amplas", + "Christine Forrest", + "Tom Savini" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Mouse and His Child", + "year": 1977, + "cast": [ + "Voices of", + "Cloris Leachman", + "Peter Ustinov", + "Andy Devine" + ], + "genres": [ + "Animated", + "Family" + ] + }, + { + "title": "Mr. Billion", + "year": 1977, + "cast": [ + "Terence Hill", + "Valerie Perrine", + "Jackie Gleason" + ], + "genres": [ + "Action" + ] + }, + { + "title": "New York, New York", + "year": 1977, + "cast": [ + "Liza Minnelli", + "Robert De Niro" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Oh, God!", + "year": 1977, + "cast": [ + "George Burns", + "John Denver", + "Paul Sorvino", + "Teri Garr" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "One on One", + "year": 1977, + "cast": [ + "Robby Benson", + "Annette O'Toole", + "G. D. Spradlin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Opening Night", + "year": 1977, + "cast": [ + "Gena Rowlands", + "Ben Gazzara", + "John Cassavetes" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Opening of Misty Beethoven", + "year": 1977, + "cast": [ + "Constance Money", + "Jamie Gillis", + "Gloria Leonard" + ], + "genres": [ + "Erotic" + ] + }, + { + "title": "Orca", + "year": 1977, + "cast": [ + "Richard Harris", + "Charlotte Rampling", + "Bo Derek" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Other Side of Midnight", + "year": 1977, + "cast": [ + "Marie-France Pisier", + "Susan Sarandon", + "John Beck", + "Clu Gulager", + "Michael Lerner", + "Raf Vallone" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Outlaw Blues", + "year": 1977, + "cast": [ + "Peter Fonda", + "Susan Saint James", + "John Crawford" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The People That Time Forgot", + "year": 1977, + "cast": [ + "Doug McClure", + "Sarah Douglas" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Pete's Dragon", + "year": 1977, + "cast": [ + "Sean Marshall", + "Helen Reddy", + "Mickey Rooney", + "Shelley Winters" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "A Piece of the Action", + "year": 1977, + "cast": [ + "Bill Cosby", + "Sidney Poitier", + "James Earl Jones" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Pine Canyon is Burning", + "year": 1977, + "cast": [ + "Kent McCord", + "Megan McCord", + "Shane Sinutko" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Planet of Dinosaurs", + "year": 1977, + "cast": [ + "Max Thayer", + "Louie Lawless" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Portrait of a Hitman", + "year": 1977, + "cast": [ + "Rod Steiger", + "Jack Palance", + "Bo Svenson" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Pumping Iron", + "year": 1977, + "cast": [ + "Arnold Schwarzenegger", + "Lou Ferrigno" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Rabid", + "year": 1977, + "cast": [ + "Marilyn Chambers", + "Joe Silver", + "Howard Ryshpan" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Race for Your Life, Charlie Brown", + "year": 1977, + "cast": [ + "Duncan Watson", + "Bill Melendez", + "Gail Davis", + "Stuart Brotman" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Raggedy Ann & Andy: A Musical Adventure", + "year": 1977, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "Raid on Entebbe", + "year": 1977, + "cast": [ + "Peter Finch", + "Martin Balsam", + "Yaphet Kotto", + "Charles Bronson", + "John Saxon", + "Jack Warden" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Rescuers", + "year": 1977, + "cast": [ + "Voices of", + "Eva Gabor", + "Bob Newhart", + "Geraldine Page" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Rollercoaster", + "year": 1977, + "cast": [ + "George Segal", + "Richard Widmark", + "Henry Fonda" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Rolling Thunder", + "year": 1977, + "cast": [ + "William Devane", + "Tommy Lee Jones", + "James Best" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Roots", + "year": 1977, + "cast": [ + "LeVar Burton", + "Louis Gossett Jr.", + "John Amos", + "Ben Vereen", + "Cicely Tyson", + "Georg Stanford Brown", + "Richard Roundtree", + "O. J. Simpson", + "Leslie Uggams", + "Madge Sinclair", + "Ed Asner", + "Chuck Connors", + "Lloyd Bridges", + "Sandy Duncan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Roseland", + "year": 1977, + "cast": [ + "Teresa Wright", + "Geraldine Chaplin", + "Christopher Walken" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Ruby", + "year": 1977, + "cast": [ + "Piper Laurie", + "Stuart Whitman" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Run for the Roses", + "year": 1977, + "cast": [ + "Vera Miles", + "Stuart Whitman", + "Lisa Eilbacher" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Satan's Cheerleaders", + "year": 1977, + "cast": [ + "Yvonne De Carlo", + "John Ireland" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Saturday Night Fever", + "year": 1977, + "cast": [ + "John Travolta", + "Karen Lynn Gorney", + "Donna Pescow" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Scott Joplin", + "year": 1977, + "cast": [ + "Billy Dee Williams", + "Clifton Davis", + "Margaret Avery" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Semi-Tough", + "year": 1977, + "cast": [ + "Burt Reynolds", + "Kris Kristofferson", + "Jill Clayburgh", + "Robert Preston", + "Brian Dennehy", + "Carl Weathers", + "Bert Convy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Sentinel", + "year": 1977, + "cast": [ + "Chris Sarandon", + "Martin Balsam", + "Ava Gardner" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "September 30, 1955", + "year": 1977, + "cast": [ + "Richard Thomas", + "Susan Tyrell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Serpent's Egg", + "year": 1977, + "cast": [ + "Liv Ullmann", + "David Carradine" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Short Eyes", + "year": 1977, + "cast": [ + "Bruce Davison", + "Jose Perez" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Sinbad and the Eye of the Tiger", + "year": 1977, + "cast": [ + "Jane Seymour", + "Taryn Power", + "Patrick Wayne" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Slap Shot", + "year": 1977, + "cast": [ + "Paul Newman", + "Strother Martin", + "Michael Ontkean", + "Lindsay Crouse", + "Jennifer Warren", + "M. Emmet Walsh" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Smokey and the Bandit", + "year": 1977, + "cast": [ + "Burt Reynolds", + "Jackie Gleason", + "Sally Field", + "Jerry Reed" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Sorcerer", + "year": 1977, + "cast": [ + "Roy Scheider", + "Francisco Rabal", + "Bruno Cremer" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Speedtrap", + "year": 1977, + "cast": [ + "Joe Don Baker", + "Tyne Daly", + "Richard Jaeckel" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Star Wars Episode IV: A New Hope (aka Star Wars)", + "year": 1977, + "cast": [ + "Mark Hamill", + "Harrison Ford", + "Carrie Fisher", + "Alec Guinness" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Telefon", + "year": 1977, + "cast": [ + "Charles Bronson", + "Lee Remick", + "Donald Pleasence" + ], + "genres": [ + "Spy" + ] + }, + { + "title": "Tentacles", + "year": 1977, + "cast": [ + "John Huston", + "Shelley Winters", + "Henry Fonda" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Thieves", + "year": 1977, + "cast": [ + "Marlo Thomas", + "Héctor Elizondo" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Thunder and Lightning", + "year": 1977, + "cast": [ + "David Carradine", + "Kate Jackson" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Turning Point", + "year": 1977, + "cast": [ + "Shirley MacLaine", + "Anne Bancroft", + "Mikhail Baryshnikov", + "Tom Skerritt" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Twilight's Last Gleaming", + "year": 1977, + "cast": [ + "Burt Lancaster", + "Richard Widmark", + "Charles Durning", + "Paul Winfield", + "Burt Young", + "Joseph Cotten", + "William Marshall", + "Melvyn Douglas" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Valentino", + "year": 1977, + "cast": [ + "Rudolf Nureyev", + "Leslie Caron", + "Carol Kane" + ], + "genres": [ + "Drama", + "Biography" + ] + }, + { + "title": "The Van", + "year": 1977, + "cast": [ + "Danny DeVito", + "Deborah White" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Viva Knievel!", + "year": 1977, + "cast": [ + "Evel Knievel", + "Lauren Hutton", + "Gene Kelly" + ], + "genres": [ + "Action", + "Biography" + ] + }, + { + "title": "Which Way Is Up?", + "year": 1977, + "cast": [ + "Richard Pryor", + "Lonette McKee" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The White Buffalo", + "year": 1977, + "cast": [ + "Charles Bronson", + "Will Sampson", + "Jack Warden", + "Slim Pickens", + "Kim Novak" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Wilma", + "year": 1977, + "cast": [ + "Shirley Jo Finney", + "Cicely Tyson", + "Denzel Washington" + ], + "genres": [ + "Drama", + "Biography" + ] + }, + { + "title": "Wizards", + "year": 1977, + "cast": [ + "Voices of", + "Mark Hamill", + "David Proval" + ], + "genres": [ + "Animated", + "Fantasy" + ] + }, + { + "title": "Word Is Out", + "year": 1977, + "cast": [ + "John Burnside", + "Elsa Gidlow" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The World's Greatest Lover", + "year": 1977, + "cast": [ + "Gene Wilder", + "Carol Kane", + "Dom DeLuise" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "You Light Up My Life", + "year": 1977, + "cast": [ + "Didi Conn" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Almost Summer", + "year": 1978, + "cast": [ + "Bruno Kirby", + "Lee Purcell", + "Didi Conn" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Alucarda", + "year": 1978, + "cast": [ + "Tina Romero", + "Susana Kamin", + "Claudio Brook" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "American Boy: A Profile of Steven Prince", + "year": 1978, + "cast": [ + "Steven Prince", + "Martin Scorsese" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "American Hot Wax", + "year": 1978, + "cast": [ + "Tim McIntire", + "Fran Drescher", + "Jay Leno", + "Laraine Newman", + "Chuck Berry" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "Attack of the Killer Tomatoes", + "year": 1978, + "cast": [ + "David Miller", + "George Wilson", + "Costa Dillon", + "Eric Christmas" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Avalanche", + "year": 1978, + "cast": [ + "Rock Hudson", + "Mia Farrow", + "Robert Forster" + ], + "genres": [ + "Disaster" + ] + }, + { + "title": "The Bad News Bears Go to Japan", + "year": 1978, + "cast": [ + "Tony Curtis", + "Jackie Earle Haley" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Battlestar Galactica", + "year": 1978, + "cast": [ + "Richard Hatch", + "Dirk Benedict", + "Lorne Greene" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Betsy", + "year": 1978, + "cast": [ + "Laurence Olivier", + "Tommy Lee Jones", + "Robert Duvall", + "Katharine Ross", + "Lesley-Anne Down", + "Kathleen Beller", + "Joseph Wiseman", + "Jane Alexander" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Big Fix", + "year": 1978, + "cast": [ + "Richard Dreyfuss", + "Susan Anspach", + "Bonnie Bedelia", + "John Lithgow", + "F. Murray Abraham" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Big Wednesday", + "year": 1978, + "cast": [ + "Jan-Michael Vincent", + "William Katt", + "Gary Busey" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Bloodbrothers", + "year": 1978, + "cast": [ + "Paul Sorvino", + "Tony Lo Bianco", + "Richard Gere" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Blue Collar", + "year": 1978, + "cast": [ + "Richard Pryor", + "Harvey Keitel", + "Yaphet Kotto" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "Born Again", + "year": 1978, + "cast": [ + "Dean Jones", + "Anne Francis", + "Dana Andrews" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Boys from Brazil", + "year": 1978, + "cast": [ + "Gregory Peck", + "Laurence Olivier", + "James Mason", + "Lilli Palmer", + "Steve Guttenberg", + "Uta Hagen", + "Denholm Elliott", + "John Dehner", + "Anne Meara" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Boys in Company C", + "year": 1978, + "cast": [ + "Stan Shaw", + "Andrew Stevens", + "R. Lee Ermey", + "James Whitmore Jr." + ], + "genres": [ + "Drama", + "War" + ] + }, + { + "title": "The Brink's Job", + "year": 1978, + "cast": [ + "Peter Falk", + "Peter Boyle", + "Warren Oates", + "Gena Rowlands", + "Paul Sorvino" + ], + "genres": [ + "Comedy", + "Crime" + ] + }, + { + "title": "The Buddy Holly Story", + "year": 1978, + "cast": [ + "Gary Busey", + "Charles Martin Smith", + "Don Stroud", + "Conrad Janis" + ], + "genres": [ + "Biography", + "Musical" + ] + }, + { + "title": "California Suite", + "year": 1978, + "cast": [ + "Jane Fonda", + "Alan Alda", + "Maggie Smith", + "Michael Caine", + "Bill Cosby", + "Richard Pryor", + "Walter Matthau" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Capricorn One", + "year": 1978, + "cast": [ + "Elliott Gould", + "Sam Waterston", + "James Brolin", + "O. J. Simpson", + "Brenda Vaccaro", + "Hal Holbrook" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "Caravans", + "year": 1978, + "cast": [ + "Anthony Quinn", + "Michael Sarrazin", + "Behrouz Vossoughi" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Casey's Shadow", + "year": 1978, + "cast": [ + "Walter Matthau", + "Alexis Smith", + "Murray Hamilton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Cat from Outer Space", + "year": 1978, + "cast": [ + "Sandy Duncan", + "Roddy McDowall", + "Ken Berry" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Cheap Detective", + "year": 1978, + "cast": [ + "Peter Falk", + "Ann-Margret", + "Sid Caesar", + "Dom DeLuise", + "Stockard Channing", + "Louise Fletcher", + "Marsha Mason" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Class of Miss MacMichael", + "year": 1978, + "cast": [ + "Glenda Jackson", + "Oliver Reed", + "Rosalind Cash" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Coma", + "year": 1978, + "cast": [ + "Geneviève Bujold", + "Michael Douglas", + "Richard Widmark", + "Elizabeth Ashley", + "Rip Torn" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Comes a Horseman", + "year": 1978, + "cast": [ + "James Caan", + "Jane Fonda", + "Jason Robards", + "George Grizzard", + "Richard Farnsworth" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Coming Home", + "year": 1978, + "cast": [ + "Jon Voight", + "Jane Fonda", + "Bruce Dern" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Convoy", + "year": 1978, + "cast": [ + "Kris Kristofferson", + "Ali MacGraw", + "Ernest Borgnine", + "Burt Young", + "Madge Sinclair" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Corvette Summer", + "year": 1978, + "cast": [ + "Mark Hamill", + "Annie Potts", + "Danny Bonaduce" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Covert Action", + "year": 1978, + "cast": [ + "David Janssen", + "Arthur Kennedy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Dain Curse", + "year": 1978, + "cast": [ + "James Coburn", + "Héctor Elizondo", + "Jean Simmons" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Damien: Omen II", + "year": 1978, + "cast": [ + "William Holden", + "Lee Grant" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Dawn of the Dead", + "year": 1978, + "cast": [ + "David Emge", + "Ken Foree", + "Scott H. Reiniger", + "Gaylen Ross" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Days of Heaven", + "year": 1978, + "cast": [ + "Richard Gere", + "Brooke Adams" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Death Dimension", + "year": 1978, + "cast": [ + "Jim Kelly", + "Harold Sakata", + "George Lazenby" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Deathsport", + "year": 1978, + "cast": [ + "Claudia Jennings", + "David Carradine" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Deer Hunter", + "year": 1978, + "cast": [ + "Robert De Niro", + "Christopher Walken", + "Meryl Streep", + "John Savage", + "John Cazale" + ], + "genres": [ + "Drama", + "War" + ] + }, + { + "title": "A Different Story", + "year": 1978, + "cast": [ + "Meg Foster", + "Perry King", + "Valerie Curtin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Distant Thunder", + "year": 1978, + "cast": [ + "Patty Dunning" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Driver", + "year": 1978, + "cast": [ + "Ryan O'Neal", + "Bruce Dern", + "Isabelle Adjani" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The End", + "year": 1978, + "cast": [ + "Burt Reynolds", + "Dom DeLuise", + "Sally Field" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "An Enemy of the People", + "year": 1978, + "cast": [ + "Steve McQueen", + "Charles Durning", + "Bibi Andersson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Every Which Way but Loose", + "year": 1978, + "cast": [ + "Clint Eastwood", + "Ruth Gordon", + "Beverly D'Angelo", + "Geoffrey Lewis", + "Sondra Locke" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Eyes of Laura Mars", + "year": 1978, + "cast": [ + "Faye Dunaway", + "Tommy Lee Jones", + "Brad Dourif" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "F.I.S.T.", + "year": 1978, + "cast": [ + "Sylvester Stallone", + "Rod Steiger", + "Melinda Dillon", + "Brian Dennehy", + "Kevin Conway", + "Peter Boyle" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "FM", + "year": 1978, + "cast": [ + "Alex Karras", + "Cleavon Little", + "Martin Mull", + "Michael Brandon", + "Eileen Brennan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Fedora", + "year": 1978, + "cast": [ + "William Holden", + "Marthe Keller", + "Hildegard Knef", + "Jose Ferrer", + "Frances Sternhagen", + "Stephen Collins" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Fingers", + "year": 1978, + "cast": [ + "Harvey Keitel", + "Michael V. Gazzo", + "Tanya Roberts" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Foul Play", + "year": 1978, + "cast": [ + "Chevy Chase", + "Goldie Hawn", + "Dudley Moore", + "Eugene Roche", + "Burgess Meredith" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Fury", + "year": 1978, + "cast": [ + "Kirk Douglas", + "Amy Irving", + "John Cassavetes", + "Andrew Stevens", + "Charles Durning", + "Carrie Snodgress" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Gates of Heaven", + "year": 1978, + "cast": [ + "Lucille Billingsley", + "Errol Morris" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Gay USA", + "year": 1978, + "cast": [ + "Footage of 1977", + "gay pride", + "events" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Girlfriends", + "year": 1978, + "cast": [ + "Melanie Mayron", + "Eli Wallach", + "Bob Balaban", + "Viveca Lindfors", + "Christopher Guest" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Go Tell the Spartans", + "year": 1978, + "cast": [ + "Burt Lancaster", + "Craig Wasson" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "Goin' South", + "year": 1978, + "cast": [ + "Jack Nicholson", + "Mary Steenburgen", + "John Belushi", + "Veronica Cartwright", + "Christopher Lloyd" + ], + "genres": [ + "Comedy", + "Western" + ] + }, + { + "title": "Good Guys Wear Black", + "year": 1978, + "cast": [ + "Chuck Norris", + "Dana Andrews", + "Anne Archer" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Gray Lady Down", + "year": 1978, + "cast": [ + "Charlton Heston", + "Ned Beatty", + "Ronny Cox", + "Stacy Keach", + "Rosemary Forsyth" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Grease", + "year": 1978, + "cast": [ + "John Travolta", + "Olivia Newton-John", + "Stockard Channing", + "Jeff Conaway", + "Eve Arden", + "Sid Caesar", + "Frankie Avalon", + "Edd Byrnes", + "Didi Conn" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "The Greek Tycoon", + "year": 1978, + "cast": [ + "Anthony Quinn", + "Jacqueline Bisset" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Halloween", + "year": 1978, + "cast": [ + "Donald Pleasence", + "Jamie Lee Curtis", + "P.J. Soles", + "Charles Cyphers", + "Kyle Richards" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Harper Valley PTA", + "year": 1978, + "cast": [ + "Barbara Eden", + "Nanette Fabray", + "Ronny Cox" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Heaven Can Wait", + "year": 1978, + "cast": [ + "Warren Beatty", + "Julie Christie", + "Jack Warden", + "Dyan Cannon", + "Charles Grodin", + "James Mason", + "Buck Henry", + "Vincent Gardenia", + "R.G. Armstrong" + ], + "genres": [ + "Comedy", + "Fantasy" + ] + }, + { + "title": "High-Ballin'", + "year": 1978, + "cast": [ + "Peter Fonda", + "Jerry Reed" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Holocaust", + "year": 1978, + "cast": [ + "Meryl Streep", + "Michael Moriarty", + "Rosemary Harris" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hooper", + "year": 1978, + "cast": [ + "Burt Reynolds", + "Sally Field", + "Jan-Michael Vincent", + "Brian Keith", + "Robert Klein", + "James Best", + "Adam West" + ], + "genres": [ + "Action", + "Comedy" + ] + }, + { + "title": "Hot Lead and Cold Feet", + "year": 1978, + "cast": [ + "Don Knotts", + "Jim Dale", + "Darren McGavin", + "Karen Valentine" + ], + "genres": [ + "Western", + "Comedy" + ] + }, + { + "title": "House Calls", + "year": 1978, + "cast": [ + "Walter Matthau", + "Glenda Jackson", + "Art Carney", + "Richard Benjamin", + "Candice Azzara" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "I Spit on Your Grave", + "year": 1978, + "cast": [ + "Camille Keaton" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "I Wanna Hold Your Hand", + "year": 1978, + "cast": [ + "Nancy Allen", + "Bobby DiCicco", + "Marc McClure" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Ice Castles", + "year": 1978, + "cast": [ + "Lynn-Holly Johnson", + "Robby Benson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "If Ever I See You Again", + "year": 1978, + "cast": [ + "Joseph Brooks", + "Shelley Hack", + "Jimmy Breslin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Interiors", + "year": 1978, + "cast": [ + "Geraldine Page", + "Diane Keaton", + "Maureen Stapleton", + "Mary Beth Hurt", + "Richard Jordan", + "E. G. Marshall" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "International Velvet", + "year": 1978, + "cast": [ + "Tatum O'Neal", + "Christopher Plummer" + ], + "genres": [ + "Drama", + "Family" + ] + }, + { + "title": "Invasion of the Body Snatchers", + "year": 1978, + "cast": [ + "Donald Sutherland", + "Brooke Adams", + "Leonard Nimoy" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Jaws 2", + "year": 1978, + "cast": [ + "Roy Scheider", + "Murray Hamilton", + "Lorraine Gary" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Jennifer", + "year": 1978, + "cast": [ + "Lisa Pelikan", + "Nina Foch", + "Bert Convy" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Killer of Sheep", + "year": 1978, + "cast": [], + "genres": [ + "Drama" + ] + }, + { + "title": "King of the Gypsies", + "year": 1978, + "cast": [ + "Eric Roberts", + "Brooke Shields", + "Shelley Winters", + "Susan Sarandon", + "Sterling Hayden" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Laserblast", + "year": 1978, + "cast": [ + "Kim Milford", + "Keenan Wynn" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Last Waltz", + "year": 1978, + "cast": [ + "The Band", + "Eric Clapton", + "Bob Dylan" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Legacy", + "year": 1978, + "cast": [ + "Katharine Ross", + "Sam Elliott", + "Roger Daltrey" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Let Me Die a Woman", + "year": 1978, + "cast": [ + "Harry Reems", + "Dr. Leo Wollman" + ], + "genres": [] + }, + { + "title": "The Lord of the Rings", + "year": 1978, + "cast": [ + "Voices of", + "John Hurt", + "Billy Barty" + ], + "genres": [ + "Fantasy", + "Animated" + ] + }, + { + "title": "Magic", + "year": 1978, + "cast": [ + "Anthony Hopkins", + "Ann-Margret", + "Burgess Meredith" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "The Magic of Lassie", + "year": 1978, + "cast": [ + "James Stewart", + "Mickey Rooney", + "Pernell Roberts" + ], + "genres": [ + "Family" + ] + }, + { + "title": "The Manitou", + "year": 1978, + "cast": [ + "Tony Curtis", + "Ann Sothern", + "Susan Strasberg" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Maraschino Cherry", + "year": 1978, + "cast": [ + "Gloria Leonard", + "Annette Haven", + "Constance Money" + ], + "genres": [ + "Erotic" + ] + }, + { + "title": "Mean Dog Blues", + "year": 1978, + "cast": [ + "Gregg Henry", + "Kay Lenz", + "Scatman Crothers" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Medusa Touch", + "year": 1978, + "cast": [ + "Richard Burton", + "Lee Remick" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Midnight Express", + "year": 1978, + "cast": [ + "Brad Davis", + "John Hurt", + "Randy Quaid" + ], + "genres": [ + "Drama", + "Biography" + ] + }, + { + "title": "Moment by Moment", + "year": 1978, + "cast": [ + "Lily Tomlin", + "John Travolta" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Movie Movie", + "year": 1978, + "cast": [ + "George C. Scott", + "Art Carney", + "Ann Reinking", + "Harry Hamlin", + "Trish Van Devere", + "Barry Bostwick", + "Red Buttons" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "National Lampoon's Animal House", + "year": 1978, + "cast": [ + "Tim Matheson", + "Tom Hulce", + "John Belushi", + "John Vernon", + "Peter Riegert", + "Karen Allen", + "Verna Bloom", + "Stephen Furst", + "Kevin Bacon", + "Donald Sutherland" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Night Full of Rain", + "year": 1978, + "cast": [ + "Giancarlo Giannini", + "Candice Bergen" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Norseman", + "year": 1978, + "cast": [ + "Lee Majors", + "Cornel Wilde", + "Mel Ferrer" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Oliver's Story", + "year": 1978, + "cast": [ + "Ryan O'Neal", + "Candice Bergen", + "Ray Milland" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Olly Olly Oxen Free", + "year": 1978, + "cast": [ + "Katharine Hepburn", + "Kevin McKenzie" + ], + "genres": [ + "Family" + ] + }, + { + "title": "The One and Only", + "year": 1978, + "cast": [ + "Henry Winkler", + "Kim Darby" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Paradise Alley", + "year": 1978, + "cast": [ + "Sylvester Stallone", + "Armand Assante", + "Anne Archer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Piranha", + "year": 1978, + "cast": [ + "Bradford Dillman", + "Barbara Steele", + "Dick Miller" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Planet of Dinosaurs", + "year": 1978, + "cast": [ + "James Whitworth", + "Charlotte Speer" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Pretty Baby", + "year": 1978, + "cast": [ + "Brooke Shields", + "Susan Sarandon", + "Keith Carradine" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Rabbit Test", + "year": 1978, + "cast": [ + "Billy Crystal", + "Doris Roberts", + "Alex Rocco" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Record City", + "year": 1978, + "cast": [ + "Ed Begley Jr.", + "Jack Carter", + "Ruth Buzzi" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Remember My Name", + "year": 1978, + "cast": [ + "Geraldine Chaplin", + "Anthony Perkins", + "Moses Gunn" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Renaldo and Clara", + "year": 1978, + "cast": [ + "Bob Dylan", + "Joan Baez", + "Harry Dean Stanton" + ], + "genres": [ + "Performance" + ] + }, + { + "title": "Return from Witch Mountain", + "year": 1978, + "cast": [ + "Christopher Lee", + "Bette Davis", + "Jack Soo" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Revenge of the Pink Panther", + "year": 1978, + "cast": [ + "Peter Sellers", + "Herbert Lom", + "Dyan Cannon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Same Time, Next Year", + "year": 1978, + "cast": [ + "Alan Alda", + "Ellen Burstyn" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Scenic Route", + "year": 1978, + "cast": [ + "Randy Danson", + "Marilyn Jones", + "Kevin Wade" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sextette", + "year": 1978, + "cast": [ + "Mae West", + "Dom DeLuise", + "Tony Curtis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Sgt. Pepper's Lonely Hearts Club Band", + "year": 1978, + "cast": [ + "Peter Frampton", + "The Bee Gees", + "George Burns" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Silent Partner", + "year": 1978, + "cast": [ + "Elliott Gould", + "Christopher Plummer", + "Susannah York" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Slow Dancing in the Big City", + "year": 1978, + "cast": [ + "Paul Sorvino", + "Anne Ditchburn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Somebody Killed Her Husband", + "year": 1978, + "cast": [ + "Farrah Fawcett", + "Jeff Bridges" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Song of the Canary", + "year": 1978, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "Straight Time", + "year": 1978, + "cast": [ + "Dustin Hoffman", + "Theresa Russell", + "Gary Busey" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Superman", + "year": 1978, + "cast": [ + "Marlon Brando", + "Gene Hackman", + "Christopher Reeve", + "Margot Kidder", + "Jackie Cooper", + "Ned Beatty", + "Valerie Perrine", + "Glenn Ford", + "Phyllis Thaxter", + "Susannah York", + "Jeff East" + ], + "genres": [ + "Superhero" + ] + }, + { + "title": "The Swarm", + "year": 1978, + "cast": [ + "Michael Caine", + "Henry Fonda", + "Olivia de Havilland", + "Fred MacMurray", + "Richard Widmark", + "Katharine Ross", + "Bradford Dillman", + "Richard Chamberlain", + "Slim Pickens", + "Lee Grant" + ], + "genres": [ + "Disaster" + ] + }, + { + "title": "Thank God It's Friday", + "year": 1978, + "cast": [ + "Jeff Goldblum", + "Debra Winger", + "Donna Summer" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Force Beyond", + "year": 1978, + "cast": [ + "Rosko", + "(narrated by)" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Toolbox Murders", + "year": 1978, + "cast": [ + "Cameron Mitchell" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Two Solitudes", + "year": 1978, + "cast": [ + "Stacy Keach", + "Jean-Pierre Aumont" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Uncle Joe Shannon", + "year": 1978, + "cast": [ + "Burt Young", + "Madge Sinclair" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "An Unmarried Woman", + "year": 1978, + "cast": [ + "Jill Clayburgh", + "Alan Bates", + "Michael Murphy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Up in Smoke", + "year": 1978, + "cast": [ + "Cheech Marin", + "Tommy Chong", + "Tom Skerritt", + "Stacy Keach" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Wedding", + "year": 1978, + "cast": [ + "Carol Burnett", + "Lillian Gish", + "Mia Farrow", + "Desi Arnaz Jr.", + "Lauren Hutton", + "Geraldine Chaplin", + "Vittorio Gassman", + "Howard Duff", + "Paul Dooley", + "Dina Merrill" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Who Is Killing the Great Chefs of Europe?", + "year": 1978, + "cast": [ + "George Segal", + "Jacqueline Bisset", + "Robert Morley" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Who'll Stop the Rain", + "year": 1978, + "cast": [ + "Nick Nolte", + "Tuesday Weld", + "Michael Moriarty", + "Anthony Zerbe", + "Gail Strickland" + ], + "genres": [ + "Drama", + "Action" + ] + }, + { + "title": "The Wiz", + "year": 1978, + "cast": [ + "Diana Ross", + "Michael Jackson", + "Nipsey Russell", + "Lena Horne" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Wolf Lake", + "year": 1978, + "cast": [ + "Rod Steiger", + "David Huffman", + "Robin Mattson" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Youngblood", + "year": 1978, + "cast": [ + "Lawrence Hilton-Jacobs", + "T. K. Carter" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Zero to Sixty", + "year": 1978, + "cast": [ + "Darren McGavin", + "Sylvia Miles", + "Joan Collins" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "10", + "year": 1979, + "cast": [ + "Dudley Moore", + "Julie Andrews", + "Bo Derek", + "Robert Webber", + "Brian Dennehy", + "Dee Wallace" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "1941", + "year": 1979, + "cast": [ + "John Belushi", + "Ned Beatty", + "Dan Aykroyd", + "John Candy", + "Toshirō Mifune", + "Robert Stack", + "Warren Oates", + "Tim Matheson", + "Nancy Allen", + "Bobby Di Cicco", + "Treat Williams", + "Slim Pickens" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Agatha", + "year": 1979, + "cast": [ + "Dustin Hoffman", + "Vanessa Redgrave" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Alien", + "year": 1979, + "cast": [ + "Sigourney Weaver", + "Tom Skerritt", + "Harry Dean Stanton", + "Veronica Cartwright", + "John Hurt", + "Ian Holm", + "Yaphet Kotto" + ], + "genres": [ + "Science Fiction", + "Horror" + ] + }, + { + "title": "The Alien Encounters", + "year": 1979, + "cast": [ + "Bonnie Henry" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "All That Jazz", + "year": 1979, + "cast": [ + "Roy Scheider", + "Jessica Lange", + "Ann Reinking", + "Ben Vereen" + ], + "genres": [ + "Drama", + "Musical" + ] + }, + { + "title": "An Almost Perfect Affair", + "year": 1979, + "cast": [ + "Monica Vitti", + "Keith Carradine" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "Americathon", + "year": 1979, + "cast": [ + "John Ritter", + "Harvey Korman", + "Fred Willard" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Amityville Horror", + "year": 1979, + "cast": [ + "James Brolin", + "Margot Kidder", + "Rod Steiger" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "...And Justice for All", + "year": 1979, + "cast": [ + "Al Pacino", + "John Forsythe", + "Christine Lahti", + "Jack Warden", + "Jeffrey Tambor" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "Angels' Brigade", + "year": 1979, + "cast": [ + "Sylvia Anderson", + "Peter Lawford", + "Jim Backus", + "Jack Palance" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Apocalypse Now", + "year": 1979, + "cast": [ + "Martin Sheen", + "Marlon Brando", + "Robert Duvall", + "Frederic Forrest", + "Sam Bottoms", + "Laurence Fishburne", + "Dennis Hopper", + "Albert Hall" + ], + "genres": [ + "Drama", + "War" + ] + }, + { + "title": "The Apple Dumpling Gang Rides Again", + "year": 1979, + "cast": [ + "Tim Conway", + "Don Knotts", + "Tim Matheson" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Ashanti", + "year": 1979, + "cast": [ + "Michael Caine", + "Peter Ustinov", + "Beverly Johnson" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Avalanche Express", + "year": 1979, + "cast": [ + "Lee Marvin", + "Robert Shaw", + "Joe Namath" + ], + "genres": [ + "Thriller", + "Action" + ] + }, + { + "title": "Baby Snakes", + "year": 1979, + "cast": [ + "Frank Zappa", + "Dale Bozzio" + ], + "genres": [ + "Performance" + ] + }, + { + "title": "Being There", + "year": 1979, + "cast": [ + "Peter Sellers", + "Shirley MacLaine", + "Melvyn Douglas", + "Richard Basehart", + "Richard A. Dysart", + "Jack Warden" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Bell Jar", + "year": 1979, + "cast": [ + "Marilyn Hassett", + "Julie Harris", + "Jameson Parker" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Beneath the Valley of the Ultra-Vixens", + "year": 1979, + "cast": [ + "Ken Kerr", + "Kitten Natividad", + "Uschi Digard" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Best Boy", + "year": 1979, + "cast": [ + "Philip Wohl", + "Zero Mostel" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Beyond the Poseidon Adventure", + "year": 1979, + "cast": [ + "Michael Caine", + "Sally Field", + "Telly Savalas", + "Shirley Jones", + "Karl Malden", + "Mark Harmon" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Birth of The Beatles", + "year": 1979, + "cast": [ + "Stephen MacKenna", + "Rod Culbertson" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "The Black Hole", + "year": 1979, + "cast": [ + "Ernest Borgnine", + "Anthony Perkins", + "Yvette Mimieux", + "Maximilian Schell" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Black Stallion", + "year": 1979, + "cast": [ + "Teri Garr", + "Mickey Rooney", + "Kelly Reno", + "Hoyt Axton" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Bloodline", + "year": 1979, + "cast": [ + "Audrey Hepburn", + "Ben Gazzara", + "James Mason" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Boardwalk", + "year": 1979, + "cast": [ + "Ruth Gordon", + "Lee Strasberg", + "Janet Leigh" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Breaking Away", + "year": 1979, + "cast": [ + "Dennis Christopher", + "Dennis Quaid", + "Daniel Stern", + "Jackie Earle Haley", + "Paul Dooley", + "Barbara Barrie" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "The Bugs Bunny/Road Runner Movie", + "year": 1979, + "cast": [ + "Voices of", + "Mel Blanc" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Butch and Sundance: The Early Days", + "year": 1979, + "cast": [ + "Tom Berenger", + "William Katt" + ], + "genres": [ + "Western" + ] + }, + { + "title": "C.H.O.M.P.S.", + "year": 1979, + "cast": [ + "Wesley Eure", + "Valerie Bertinelli" + ], + "genres": [ + "Family" + ] + }, + { + "title": "California Dreaming", + "year": 1979, + "cast": [ + "Glynnis O'Connor", + "Dennis Christopher", + "Seymour Cassel" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Caligula", + "year": 1979, + "cast": [ + "Malcolm McDowell", + "John Gielgud", + "Peter O'Toole", + "Helen Mirren" + ], + "genres": [ + "Historical", + "Erotic" + ] + }, + { + "title": "The Cat and the Canary", + "year": 1979, + "cast": [ + "Olivia Hussey", + "Honor Blackman" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Champ", + "year": 1979, + "cast": [ + "Jon Voight", + "Rick Schroder", + "Faye Dunaway" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Chapter Two", + "year": 1979, + "cast": [ + "James Caan", + "Marsha Mason", + "Joseph Bologna", + "Valerie Harper" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Cheerleaders' Wild Weekend", + "year": 1979, + "cast": [ + "Kristine DeBell" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Children of Sanchez", + "year": 1979, + "cast": [ + "Anthony Quinn", + "Dolores del Río", + "Katy Jurado" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The China Syndrome", + "year": 1979, + "cast": [ + "Jane Fonda", + "Jack Lemmon", + "Michael Douglas" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "City on Fire", + "year": 1979, + "cast": [ + "Susan Clark", + "Barry Newman", + "Ava Gardner" + ], + "genres": [ + "Disaster" + ] + }, + { + "title": "The Concorde ... Airport '79", + "year": 1979, + "cast": [ + "George Kennedy", + "Alain Delon", + "Charo", + "Robert Wagner", + "Susan Blakely" + ], + "genres": [ + "Drama", + "Thriller" + ] + }, + { + "title": "Cuba", + "year": 1979, + "cast": [ + "Sean Connery", + "Brooke Adams", + "Chris Sarandon", + "Jack Weston" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Disco Godfather", + "year": 1979, + "cast": [ + "Rudy Ray Moore", + "Carol Speed" + ], + "genres": [ + "Action", + "Comedy" + ] + }, + { + "title": "Dracula", + "year": 1979, + "cast": [ + "Frank Langella", + "Laurence Olivier" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Dreamer", + "year": 1979, + "cast": [ + "Tim Matheson", + "Jack Warden", + "Susan Blakely" + ], + "genres": [ + "Drama", + "Sports" + ] + }, + { + "title": "The Driller Killer", + "year": 1979, + "cast": [ + "Abel Ferrara", + "Carolyn Marz" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Electric Horseman", + "year": 1979, + "cast": [ + "Robert Redford", + "Jane Fonda", + "Willie Nelson" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Escape from Alcatraz", + "year": 1979, + "cast": [ + "Clint Eastwood", + "Patrick McGoohan", + "Fred Ward" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Europeans", + "year": 1979, + "cast": [ + "Lee Remick", + "Lisa Eichhorn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Fast Break", + "year": 1979, + "cast": [ + "Gabe Kaplan", + "Harold Sylvester" + ], + "genres": [ + "Comedy", + "Sports" + ] + }, + { + "title": "The Fifth Floor", + "year": 1979, + "cast": [ + "Sharon Farrell", + "Bo Hopkins" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Fish That Saved Pittsburgh", + "year": 1979, + "cast": [ + "Jonathan Winters", + "Julius Erving", + "Flip Wilson" + ], + "genres": [ + "Comedy", + "Sports" + ] + }, + { + "title": "Five Days from Home", + "year": 1979, + "cast": [ + "George Peppard" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Force of One", + "year": 1979, + "cast": [ + "Chuck Norris", + "Jennifer O'Neill", + "Clu Gulager" + ], + "genres": [ + "Action" + ] + }, + { + "title": "French Postcards", + "year": 1979, + "cast": [ + "Miles Chapin", + "Blanche Baker", + "Debra Winger" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Frisco Kid", + "year": 1979, + "cast": [ + "Gene Wilder", + "Harrison Ford" + ], + "genres": [ + "Western", + "Comedy" + ] + }, + { + "title": "Gal Young 'Un", + "year": 1979, + "cast": [ + "Dana Preu", + "David Peck" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Glove", + "year": 1979, + "cast": [ + "John Saxon", + "Joanna Cassidy", + "Roosevelt Grier", + "Joan Blondell" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Going in Style", + "year": 1979, + "cast": [ + "George Burns", + "Art Carney", + "Lee Strasberg" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Goldengirl", + "year": 1979, + "cast": [ + "Susan Anton", + "Leslie Caron", + "James Coburn" + ], + "genres": [ + "Drama", + "Sports" + ] + }, + { + "title": "The Great Santini", + "year": 1979, + "cast": [ + "Robert Duvall", + "Blythe Danner", + "Michael O'Keefe", + "Stan Shaw" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hair", + "year": 1979, + "cast": [ + "Treat Williams", + "Beverly D'Angelo", + "John Savage" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Hanover Street", + "year": 1979, + "cast": [ + "Harrison Ford", + "Lesley-Anne Down", + "Christopher Plummer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hardcore", + "year": 1979, + "cast": [ + "George C. Scott", + "Season Hubley", + "Peter Boyle" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Head Over Heels", + "year": 1979, + "cast": [ + "Mary Beth Hurt", + "John Heard" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Heartland", + "year": 1979, + "cast": [ + "Conchata Ferrell", + "Rip Torn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hot Stuff", + "year": 1979, + "cast": [ + "Dom DeLuise", + "Suzanne Pleshette", + "Jerry Reed" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Human Experiments", + "year": 1979, + "cast": [ + "Aldo Ray", + "Linda Haynes", + "Geoffrey Lewis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hurricane", + "year": 1979, + "cast": [ + "Mia Farrow", + "Jason Robards", + "Max von Sydow" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The In-Laws", + "year": 1979, + "cast": [ + "Peter Falk", + "Alan Arkin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Jaguar Lives!", + "year": 1979, + "cast": [ + "Christopher Lee", + "Barbara Bach", + "Capucine" + ], + "genres": [ + "Spy" + ] + }, + { + "title": "The Jerk", + "year": 1979, + "cast": [ + "Steve Martin", + "Bernadette Peters" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Jesus", + "year": 1979, + "cast": [ + "Brian Deacon", + "Eli Cohen" + ], + "genres": [ + "Drama", + "Family" + ] + }, + { + "title": "Just You and Me, Kid", + "year": 1979, + "cast": [ + "George Burns", + "Brooke Shields" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Kramer vs. Kramer", + "year": 1979, + "cast": [ + "Dustin Hoffman", + "Justin Henry", + "Meryl Streep", + "Jane Alexander", + "JoBeth Williams", + "Howard Duff" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Lady Vanishes", + "year": 1979, + "cast": [ + "Elliott Gould", + "Cybill Shepherd" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Last Embrace", + "year": 1979, + "cast": [ + "Roy Scheider", + "Janet Margolin" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "A Little Romance", + "year": 1979, + "cast": [ + "Laurence Olivier", + "Sally Kellerman", + "Diane Lane" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Lost and Found", + "year": 1979, + "cast": [ + "Glenda Jackson", + "George Segal" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Love and Bullets", + "year": 1979, + "cast": [ + "Charles Bronson", + "Jill Ireland" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Love At First Bite", + "year": 1979, + "cast": [ + "George Hamilton", + "Susan Saint James" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Main Event", + "year": 1979, + "cast": [ + "Barbra Streisand", + "Ryan O'Neal" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Magician of Lublin", + "year": 1979, + "cast": [ + "Alan Arkin", + "Valerie Perrine" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Manhattan", + "year": 1979, + "cast": [ + "Woody Allen", + "Diane Keaton", + "Mariel Hemingway", + "Meryl Streep" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Meteor", + "year": 1979, + "cast": [ + "Sean Connery", + "Natalie Wood", + "Karl Malden" + ], + "genres": [ + "Disaster", + "Science Fiction" + ] + }, + { + "title": "More American Graffiti", + "year": 1979, + "cast": [ + "Ron Howard", + "Candy Clark", + "Paul LeMat" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Mr. Mike's Mondo Video", + "year": 1979, + "cast": [ + "Dan Aykroyd", + "Jane Curtin", + "Teri Garr" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Muppet Movie", + "year": 1979, + "cast": [ + "James Coburn", + "Mel Brooks", + "Orson Welles" + ], + "genres": [ + "Comedy", + "Family" + ] + }, + { + "title": "Murder by Decree", + "year": 1979, + "cast": [ + "James Mason", + "Christopher Plummer" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "A Nightingale Sang in Berkeley Square", + "year": 1979, + "cast": [ + "David Niven", + "Elke Sommer", + "Richard Jordan" + ], + "genres": [ + "Crime", + "Comedy" + ] + }, + { + "title": "Nightwing", + "year": 1979, + "cast": [ + "Nick Mancuso", + "David Warner", + "Kathryn Harrold" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Norma Rae", + "year": 1979, + "cast": [ + "Sally Field", + "Ron Leibman", + "Beau Bridges" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The North Avenue Irregulars", + "year": 1979, + "cast": [ + "Edward Herrmann", + "Cloris Leachman", + "Susan Clark", + "Karen Valentine" + ], + "genres": [ + "Comedy", + "Family" + ] + }, + { + "title": "North Dallas Forty", + "year": 1979, + "cast": [ + "Nick Nolte", + "Mac Davis", + "G. D. Spradlin", + "Charles Durning", + "Dabney Coleman", + "Dayle Haddon" + ], + "genres": [ + "Drama", + "Sports" + ] + }, + { + "title": "The Onion Field", + "year": 1979, + "cast": [ + "James Woods", + "John Savage", + "Ted Danson" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Over the Edge", + "year": 1979, + "cast": [ + "Matt Dillon", + "Vincent Spano" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Parts: The Clonus Horror", + "year": 1979, + "cast": [ + "Peter Graves", + "Keenan Wynn" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Penitentiary", + "year": 1979, + "cast": [ + "Leon Issac Kennedy", + "Badja Djola" + ], + "genres": [ + "Action" + ] + }, + { + "title": "A Perfect Couple", + "year": 1979, + "cast": [ + "Paul Dooley", + "Marta Heflin", + "Henry Gibson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Phantasm", + "year": 1979, + "cast": [ + "Reggie Bannister", + "Angus Scrimm" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Prisoner of Zenda", + "year": 1979, + "cast": [ + "Peter Sellers", + "Elke Sommer", + "Lionel Jeffries" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Prize Fighter", + "year": 1979, + "cast": [ + "Don Knotts", + "Tim Conway" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Promise", + "year": 1979, + "cast": [ + "Kathleen Quinlan", + "Stephen Collins" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Promises in the Dark", + "year": 1979, + "cast": [ + "Marsha Mason", + "Ned Beatty" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Prophecy", + "year": 1979, + "cast": [ + "Robert Foxworth", + "Talia Shire", + "Armand Assante" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Punk Rock Movie", + "year": 1979, + "cast": [ + "John Lydon", + "Joe Strummer", + "Siouxsie Sioux" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Quintet", + "year": 1979, + "cast": [ + "Paul Newman", + "Fernando Rey" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Real Life", + "year": 1979, + "cast": [ + "Albert Brooks", + "Charles Grodin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Rich Kids", + "year": 1979, + "cast": [ + "Trini Alvarado", + "Jeremy Levy", + "John Lithgow" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Richard Pryor: Live in Concert", + "year": 1979, + "cast": [ + "Richard Pryor" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Rock 'n' Roll High School", + "year": 1979, + "cast": [ + "P. J. Soles", + "Mary Woronov", + "Ramones" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Rocky II", + "year": 1979, + "cast": [ + "Sylvester Stallone", + "Carl Weathers", + "Talia Shire", + "Burgess Meredith", + "Burt Young" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Roller Boogie", + "year": 1979, + "cast": [ + "Linda Blair", + "Jim Bray", + "Beverly Garland", + "Mark Goddard" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Rose", + "year": 1979, + "cast": [ + "Bette Midler", + "Alan Bates", + "Frederic Forrest" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Saint Jack", + "year": 1979, + "cast": [ + "Ben Gazzara", + "Denholm Elliott" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Scavenger Hunt", + "year": 1979, + "cast": [ + "Cloris Leachman", + "Cleavon Little", + "Tony Randall" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Seduction of Joe Tynan", + "year": 1979, + "cast": [ + "Alan Alda", + "Meryl Streep", + "Rip Torn", + "Barbara Harris", + "Melvyn Douglas" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Seven", + "year": 1979, + "cast": [ + "William Smith", + "Barbara Leigh" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Skatetown, U.S.A.", + "year": 1979, + "cast": [ + "Scott Baio", + "Flip Wilson", + "Patrick Swayze" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Something Short of Paradise", + "year": 1979, + "cast": [ + "Susan Sarandon", + "David Steinberg" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Star Trek: The Motion Picture", + "year": 1979, + "cast": [ + "William Shatner", + "Leonard Nimoy", + "DeForest Kelley", + "Persis Khambatta", + "Nichelle Nichols", + "George Takei" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Starting Over", + "year": 1979, + "cast": [ + "Burt Reynolds", + "Jill Clayburgh", + "Candice Bergen" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Sunburn", + "year": 1979, + "cast": [ + "Farrah Fawcett", + "Art Carney", + "Charles Grodin" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Take Down", + "year": 1979, + "cast": [ + "Lorenzo Lamas", + "Edward Herrmann", + "Kathleen Lloyd" + ], + "genres": [ + "Drama", + "Sports" + ] + }, + { + "title": "The Tale of Tiffany Lust", + "year": 1979, + "cast": [ + "Candida Royalle", + "Desiree Cousteau", + "Dominique Saint Claire", + "George Payne", + "Ron Jeremy", + "Samantha Fox", + "Vanessa del Rio", + "Veronica Hart" + ], + "genres": [ + "Erotic" + ] + }, + { + "title": "Tilt", + "year": 1979, + "cast": [ + "Brooke Shields", + "Charles Durning" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Time After Time", + "year": 1979, + "cast": [ + "Malcolm McDowell", + "David Warner", + "Mary Steenburgen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Tourist Trap", + "year": 1979, + "cast": [ + "Chuck Connors", + "Jocelyn Jones", + "Tanya Roberts" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Villain", + "year": 1979, + "cast": [ + "Kirk Douglas", + "Ann-Margret", + "Arnold Schwarzenegger" + ], + "genres": [ + "Western", + "Comedy" + ] + }, + { + "title": "The Visitor", + "year": 1979, + "cast": [ + "Glenn Ford", + "Shelley Winters", + "Steve Somers" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Wanda Nevada", + "year": 1979, + "cast": [ + "Peter Fonda", + "Brooke Shields" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Wanderers", + "year": 1979, + "cast": [ + "Ken Wahl", + "Karen Allen", + "Val Avery" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The War at Home", + "year": 1979, + "cast": [ + "Dwight D. Eisenhower", + "Allen Ginsberg" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Warriors", + "year": 1979, + "cast": [ + "James Remar", + "Michael Beck", + "David Patrick Kelly", + "Dorsey Wright", + "Lynne Thigpen" + ], + "genres": [ + "Action" + ] + }, + { + "title": "When You Comin' Back, Red Ryder?", + "year": 1979, + "cast": [ + "Marjoe Gortner", + "Candy Clark" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "When a Stranger Calls", + "year": 1979, + "cast": [ + "Carol Kane", + "Charles Durning" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Winter Kills", + "year": 1979, + "cast": [ + "Jeff Bridges", + "Anthony Perkins", + "Sterling Hayden", + "Eli Wallach", + "Richard Boone" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Wise Blood", + "year": 1979, + "cast": [ + "Brad Dourif", + "John Huston", + "Ned Beatty" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Wolfman", + "year": 1979, + "cast": [ + "Earl Owensby", + "Ed Grady" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Yanks", + "year": 1979, + "cast": [ + "Richard Gere", + "Vanessa Redgrave", + "Lisa Eichhorn" + ], + "genres": [ + "Drama", + "War" + ] + }, + { + "title": "Airplane!", + "year": 1980, + "cast": [ + "Robert Hays", + "Julie Hagerty", + "Leslie Nielsen", + "Peter Graves", + "Robert Stack", + "Lloyd Bridges", + "Kareem Abdul-Jabbar" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Alien Dead", + "year": 1980, + "cast": [ + "Buster Crabbe" + ], + "genres": [ + "Horror", + "Science Fiction" + ] + }, + { + "title": "Alligator", + "year": 1980, + "cast": [ + "Robert Forster", + "Robin Riker" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Altered States", + "year": 1980, + "cast": [ + "William Hurt", + "Blair Brown" + ], + "genres": [] + }, + { + "title": "American Gigolo", + "year": 1980, + "cast": [ + "Richard Gere", + "Lauren Hutton", + "Héctor Elizondo" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Animalympics", + "year": 1980, + "cast": [ + "Billy Crystal" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Antropophagus[citation needed]", + "year": 1980, + "cast": [ + "Tisa Farrow", + "Serena Grandi" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Any Which Way You Can", + "year": 1980, + "cast": [ + "Clint Eastwood", + "Geoffrey Lewis", + "Sondra Locke" + ], + "genres": [] + }, + { + "title": "Atlantic City", + "year": 1980, + "cast": [ + "Burt Lancaster", + "Susan Sarandon" + ], + "genres": [] + }, + { + "title": "The Baltimore Bullet", + "year": 1980, + "cast": [ + "James Coburn", + "Omar Sharif", + "Ronee Blakley" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Battle Beyond the Stars", + "year": 1980, + "cast": [ + "Richard Thomas", + "Robert Vaughn" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Below the Belt", + "year": 1980, + "cast": [ + "Regina Baff", + "John C. Becher", + "Mildred Burke", + "(as herself)", + "Firesign Theatre" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Big Brawl", + "year": 1980, + "cast": [ + "Jackie Chan" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Big Red One", + "year": 1980, + "cast": [ + "Lee Marvin", + "Mark Hamill", + "Robert Carradine" + ], + "genres": [ + "War" + ] + }, + { + "title": "The Black Marble", + "year": 1980, + "cast": [ + "Robert Foxworth", + "Paula Prentiss", + "Harry Dean Stanton" + ], + "genres": [ + "Crime", + "Comedy" + ] + }, + { + "title": "The Blue Lagoon", + "year": 1980, + "cast": [ + "Christopher Atkins", + "Brooke Shields" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Blues Brothers", + "year": 1980, + "cast": [ + "Dan Aykroyd", + "John Belushi", + "Carrie Fisher", + "Aretha Franklin", + "Ray Charles", + "James Brown", + "Cab Calloway", + "Kathleen Freeman", + "Steve Lawrence", + "John Candy" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Bon Voyage, Charlie Brown (and Don't Come Back!!)", + "year": 1980, + "cast": [ + "Arrin Skelley", + "Daniel Anderson", + "Patricia Patts", + "Casey Carlson", + "Annalisa Bortolin", + "Laura Planting" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "The Boogeyman", + "year": 1980, + "cast": [ + "Ron James", + "Suzanna Love", + "Ron Jeremy" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Borderline", + "year": 1980, + "cast": [ + "Charles Bronson", + "Ed Harris" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Bronco Billy", + "year": 1980, + "cast": [ + "Clint Eastwood", + "Sondra Locke", + "Geoffrey Lewis", + "Scatman Crothers" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Brubaker", + "year": 1980, + "cast": [ + "Robert Redford", + "Jane Alexander", + "Yaphet Kotto" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Caboblanco", + "year": 1980, + "cast": [ + "Charles Bronson", + "Jason Robards", + "Dominique Sanda" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Caddyshack", + "year": 1980, + "cast": [ + "Chevy Chase", + "Rodney Dangerfield", + "Bill Murray", + "Ted Knight", + "Michael O'Keefe", + "Cindy Morgan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Can't Stop the Music", + "year": 1980, + "cast": [ + "Valerie Perrine", + "Caitlyn Jenner", + "(credited as Bruce Jenner)", + "[a]", + "Village People" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Cardiac Arrest", + "year": 1980, + "cast": [ + "Garry Goodrow" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Carny", + "year": 1980, + "cast": [ + "Gary Busey", + "Jodie Foster", + "Robbie Robertson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Change of Seasons", + "year": 1980, + "cast": [ + "Shirley MacLaine", + "Anthony Hopkins", + "Bo Derek" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Changeling", + "year": 1980, + "cast": [ + "George C. Scott", + "Trish Van Devere" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Cheech & Chong's Next Movie", + "year": 1980, + "cast": [ + "Tommy Chong", + "Cheech Marin", + "Paul Reubens", + "Evelyn Guerrero" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Children", + "year": 1980, + "cast": [ + "Gil Rogers" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Christmas Evil", + "year": 1980, + "cast": [ + "Brandon Maggart" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Circle of Two", + "year": 1980, + "cast": [ + "Richard Burton", + "Tatum O'Neal" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Coal Miner's Daughter", + "year": 1980, + "cast": [ + "Sissy Spacek", + "Tommy Lee Jones", + "Beverly D'Angelo", + "Levon Helm" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Coast to Coast", + "year": 1980, + "cast": [ + "Robert Blake", + "Dyan Cannon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Competition", + "year": 1980, + "cast": [ + "Richard Dreyfuss", + "Amy Irving", + "Lee Remick" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Cruising", + "year": 1980, + "cast": [ + "Al Pacino", + "Paul Sorvino" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Death Watch", + "year": 1980, + "cast": [ + "Harvey Keitel", + "Romy Schneider", + "Harry Dean Stanton" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Defiance", + "year": 1980, + "cast": [ + "Art Carney", + "Jan-Michael Vincent", + "Danny Aiello", + "Theresa Saldana" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Delusion", + "year": 1980, + "cast": [ + "Patricia Pearcy", + "David Hayward" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Die Laughing", + "year": 1980, + "cast": [ + "Robby Benson", + "Charles Durning", + "Elsa Lanchester" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Divine Madness!", + "year": 1980, + "cast": [ + "Bette Midler" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Dogs of War", + "year": 1980, + "cast": [ + "Christopher Walken", + "Tom Berenger", + "Colin Blakely" + ], + "genres": [ + "War" + ] + }, + { + "title": "Don't Go in the Woods", + "year": 1980, + "cast": [ + "Mary Gail Artz" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Double Negative[citation needed]", + "year": 1980, + "cast": [ + "John Candy", + "Anthony Perkins" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Dressed to Kill", + "year": 1980, + "cast": [ + "Michael Caine", + "Angie Dickinson", + "Nancy Allen", + "Keith Gordon", + "Dennis Franz" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Earthling", + "year": 1980, + "cast": [ + "William Holden", + "Rick Schroder" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Elephant Man", + "year": 1980, + "cast": [ + "Anthony Hopkins", + "John Hurt", + "Anne Bancroft" + ], + "genres": [ + "Drama", + "Biography" + ] + }, + { + "title": "The Exterminator", + "year": 1980, + "cast": [ + "Robert Ginty", + "Samantha Eggar" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Fade to Black", + "year": 1980, + "cast": [ + "Dennis Christopher", + "Linda Kerridge" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Fame", + "year": 1980, + "cast": [ + "Irene Cara", + "Debbie Allen", + "Maureen Teefy" + ], + "genres": [ + "Drama", + "Musical" + ] + }, + { + "title": "Fatso", + "year": 1980, + "cast": [ + "Dom DeLuise", + "Anne Bancroft", + "Candice Azzara" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Fiendish Plot of Dr. Fu Manchu", + "year": 1980, + "cast": [ + "Peter Sellers", + "Sid Caesar", + "Helen Mirren" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Final Countdown", + "year": 1980, + "cast": [ + "Kirk Douglas", + "Katharine Ross", + "Martin Sheen" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The First Deadly Sin", + "year": 1980, + "cast": [ + "Frank Sinatra", + "Faye Dunaway", + "David Dukes", + "Brenda Vaccaro", + "James Whitmore" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "First Family", + "year": 1980, + "cast": [ + "Bob Newhart", + "Madeline Kahn", + "Gilda Radner", + "Richard Benjamin", + "Fred Willard" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Flash Gordon", + "year": 1980, + "cast": [ + "Timothy Dalton", + "Sam J. Jones", + "Max von Sydow", + "Melody Anderson" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Fog", + "year": 1980, + "cast": [ + "Adrienne Barbeau", + "Jamie Lee Curtis", + "Janet Leigh", + "John Houseman", + "Hal Holbrook" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Foolin' Around", + "year": 1980, + "cast": [ + "Gary Busey", + "Annette O'Toole", + "Cloris Leachman", + "William H. Macy", + "Tony Randall", + "Eddie Albert" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Formula", + "year": 1980, + "cast": [ + "George C. Scott", + "Marlon Brando" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Foxes", + "year": 1980, + "cast": [ + "Scott Baio", + "Jodie Foster", + "Randy Quaid" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Friday the 13th", + "year": 1980, + "cast": [ + "Betsy Palmer", + "Adrienne King", + "Kevin Bacon" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Galaxina", + "year": 1980, + "cast": [ + "Dorothy Stratten" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Gilda Live", + "year": 1980, + "cast": [ + "Gilda Radner" + ], + "genres": [ + "Performance" + ] + }, + { + "title": "Gloria", + "year": 1980, + "cast": [ + "Gena Rowlands" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Gong Show Movie", + "year": 1980, + "cast": [ + "Chuck Barris" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Gorp", + "year": 1980, + "cast": [ + "Dennis Quaid", + "Michael Lembeck", + "Rosanna Arquette" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hangar 18", + "year": 1980, + "cast": [ + "Gary Collins", + "Darren McGavin", + "Robert Vaughn" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Happy Hooker Goes Hollywood", + "year": 1980, + "cast": [ + "Martine Beswick", + "Chris Lemmon", + "Phil Silvers" + ], + "genres": [ + "Erotic", + "Comedy" + ] + }, + { + "title": "He Knows You're Alone", + "year": 1980, + "cast": [ + "Don Scardino" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Health", + "year": 1980, + "cast": [ + "Carol Burnett", + "James Garner", + "Glenda Jackson", + "Lauren Bacall", + "Dick Cavett" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Heart Beat", + "year": 1980, + "cast": [ + "Nick Nolte", + "Sissy Spacek", + "John Heard" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Heaven's Gate", + "year": 1980, + "cast": [ + "Kris Kristofferson", + "Christopher Walken", + "Isabelle Huppert", + "John Hurt", + "Jeff Bridges", + "Sam Waterston", + "Mickey Rourke" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Herbie Goes Bananas", + "year": 1980, + "cast": [ + "Cloris Leachman", + "Harvey Korman" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hero at Large", + "year": 1980, + "cast": [ + "Anne Archer", + "John Ritter" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Hollywood Knights", + "year": 1980, + "cast": [ + "Tony Danza", + "Fran Drescher", + "Michelle Pfeiffer" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Home Movies", + "year": 1980, + "cast": [ + "Kirk Douglas", + "Nancy Allen", + "Vincent Gardenia" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Honeysuckle Rose", + "year": 1980, + "cast": [ + "Willie Nelson", + "Dyan Cannon", + "Amy Irving" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hopscotch", + "year": 1980, + "cast": [ + "Walter Matthau", + "Glenda Jackson", + "Ned Beatty", + "Sam Waterston" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "How to Beat the High Co$t of Living", + "year": 1980, + "cast": [ + "Jane Curtin", + "Susan Saint James", + "Jessica Lange", + "Richard Benjamin" + ], + "genres": [ + "Crime", + "Comedy" + ] + }, + { + "title": "Humanoids from the Deep", + "year": 1980, + "cast": [ + "Doug McClure", + "Vic Morrow", + "Ann Turkel" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Hunter", + "year": 1980, + "cast": [ + "Steve McQueen", + "Kathryn Harrold", + "LeVar Burton", + "Ben Johnson", + "Eli Wallach" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Idolmaker", + "year": 1980, + "cast": [ + "Ray Sharkey", + "Peter Gallagher", + "Joe Pantoliano" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Image of the Beast", + "year": 1980, + "cast": [ + "William Wellman, Jr." + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "In God We Tru$t", + "year": 1980, + "cast": [ + "Peter Boyle", + "Andy Kaufman", + "Richard Pryor" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Inside Moves", + "year": 1980, + "cast": [ + "David Morse", + "John Savage", + "Diana Scarwid", + "Harold Russell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Island", + "year": 1980, + "cast": [ + "Michael Caine", + "David Warner" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "It's My Turn", + "year": 1980, + "cast": [ + "Jill Clayburgh", + "Michael Douglas", + "Charles Grodin", + "Beverly Garland" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Jane Austen in Manhattan", + "year": 1980, + "cast": [ + "Anne Baxter", + "Robert Powell" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Jazz Singer", + "year": 1980, + "cast": [ + "Neil Diamond", + "Laurence Olivier", + "Lucie Arnaz" + ], + "genres": [ + "Drama", + "Musical" + ] + }, + { + "title": "Just Tell Me What You Want", + "year": 1980, + "cast": [ + "Alan King", + "Ali MacGraw", + "Peter Weller", + "Myrna Loy", + "Keenan Wynn", + "Dina Merrill" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "The Kidnapping of the President", + "year": 1980, + "cast": [ + "Ava Gardner", + "Van Johnson", + "William Shatner" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Kill or Be Killed", + "year": 1980, + "cast": [ + "Charlotte Michelle", + "James Ryan" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Last Flight of Noah's Ark", + "year": 1980, + "cast": [ + "Elliott Gould", + "Rick Schroder" + ], + "genres": [ + "Adventure", + "Family" + ] + }, + { + "title": "The Last Married Couple in America", + "year": 1980, + "cast": [ + "George Segal", + "Natalie Wood" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Lathe of Heaven", + "year": 1980, + "cast": [ + "Kevin Conway", + "Bruce Davison" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Legend of Alfred Packer", + "year": 1980, + "cast": [ + "Patrick Day" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Life and Times of Rosie the Riveter", + "year": 1980, + "cast": [ + "Franklin Delano Roosevelt" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Little Darlings", + "year": 1980, + "cast": [ + "Tatum O'Neal", + "Kristy McNichol", + "Matt Dillon", + "Armand Assante", + "Cynthia Nixon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Little Miss Marker", + "year": 1980, + "cast": [ + "Walter Matthau", + "Julie Andrews", + "Bob Newhart", + "Tony Curtis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Long Riders", + "year": 1980, + "cast": [ + "David Carradine", + "Keith Carradine", + "Robert Carradine", + "Randy Quaid", + "Dennis Quaid", + "Stacy Keach", + "James Keach", + "Christopher Guest", + "Nicholas Guest" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Loose Shoes", + "year": 1980, + "cast": [ + "Royce D. Applegate" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Loving Couples", + "year": 1980, + "cast": [ + "Shirley MacLaine", + "James Coburn", + "Susan Sarandon" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Man with Bogart's Face", + "year": 1980, + "cast": [ + "Robert Sacchi", + "Victor Buono", + "Misty Rowe" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Maniac!", + "year": 1980, + "cast": [ + "Caroline Munro", + "Joe Spinell" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Melvin and Howard", + "year": 1980, + "cast": [ + "Jason Robards", + "Paul LeMat", + "Mary Steenburgen" + ], + "genres": [ + "Comedy", + "Biography" + ] + }, + { + "title": "Middle Age Crazy", + "year": 1980, + "cast": [ + "Bruce Dern", + "Ann-Margret" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Midnight Madness", + "year": 1980, + "cast": [ + "Michael J. Fox", + "David Naughton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Mirror Crack'd", + "year": 1980, + "cast": [ + "Angela Lansbury", + "Rock Hudson", + "Elizabeth Taylor", + "Tony Curtis", + "Kim Novak" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Monster Club", + "year": 1980, + "cast": [ + "Vincent Price" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Motel Hell", + "year": 1980, + "cast": [ + "Rory Calhoun" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Mother's Day", + "year": 1980, + "cast": [ + "Nancy Hendrickson", + "Deborah Luce" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Mountain Men", + "year": 1980, + "cast": [ + "Charlton Heston", + "Brian Keith", + "Seymour Cassel" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "My Bodyguard", + "year": 1980, + "cast": [ + "Chris Makepeace", + "Adam Baldwin", + "Matt Dillon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Night of the Demon", + "year": 1980, + "cast": [ + "Joy Allen", + "Bob Collins" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Nightkill", + "year": 1980, + "cast": [ + "Robert Mitchum", + "Jaclyn Smith", + "James Franciscus" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Nijinsky", + "year": 1980, + "cast": [ + "Alan Bates", + "George de la Peña", + "Leslie Browne" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Nine to Five", + "year": 1980, + "cast": [ + "Jane Fonda", + "Dolly Parton", + "Lily Tomlin", + "Dabney Coleman", + "Elizabeth Wilson", + "Sterling Hayden" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Ninth Configuration", + "year": 1980, + "cast": [ + "Stacy Keach", + "Jason Miller", + "Ed Flanders" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Nothing Personal", + "year": 1980, + "cast": [ + "Suzanne Somers", + "Donald Sutherland" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Nude Bomb", + "year": 1980, + "cast": [ + "Don Adams", + "Rhonda Fleming" + ], + "genres": [ + "Comedy", + "Mystery" + ] + }, + { + "title": "The Octagon", + "year": 1980, + "cast": [ + "Chuck Norris" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Oh, God! Book II", + "year": 1980, + "cast": [ + "George Burns", + "Suzanne Pleshette", + "David Birney" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Oh Heavenly Dog", + "year": 1980, + "cast": [ + "Chevy Chase", + "Jane Seymour", + "Omar Sharif" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "One Trick Pony", + "year": 1980, + "cast": [ + "Paul Simon", + "Rip Torn", + "Blair Brown", + "Joan Hackett" + ], + "genres": [ + "Musical", + "Drama" + ] + }, + { + "title": "Ordinary People", + "year": 1980, + "cast": [ + "Mary Tyler Moore", + "Donald Sutherland", + "Timothy Hutton", + "Judd Hirsch", + "Elizabeth McGovern" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Out of the Blue", + "year": 1980, + "cast": [ + "Dennis Hopper" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Permanent Vacation", + "year": 1980, + "cast": [ + "Richard Boes", + "Ruth Bolton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Pilot", + "year": 1980, + "cast": [ + "Cliff Robertson", + "Diane Baker" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Popeye", + "year": 1980, + "cast": [ + "Robin Williams", + "Shelley Duvall", + "Paul Dooley" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Pray TV", + "year": 1980, + "cast": [ + "Rosemary Alexander", + "Dabney Coleman" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Private Benjamin", + "year": 1980, + "cast": [ + "Goldie Hawn", + "Armand Assante", + "Eileen Brennan", + "Albert Brooks" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Private Eyes", + "year": 1980, + "cast": [ + "Tim Conway", + "Don Knotts", + "Trisha Noble" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Prom Night", + "year": 1980, + "cast": [ + "Jamie Lee Curtis", + "Leslie Nielsen" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Psychotronic Man", + "year": 1980, + "cast": [ + "Peter Spelson" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Raging Bull", + "year": 1980, + "cast": [ + "Robert De Niro", + "Joe Pesci", + "Cathy Moriarty" + ], + "genres": [ + "Biography", + "Drama" + ] + }, + { + "title": "Raise the Titanic", + "year": 1980, + "cast": [ + "Jason Robards", + "Alec Guinness", + "Anne Archer" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Resurrection", + "year": 1980, + "cast": [ + "Ellen Burstyn", + "Richard Farnsworth", + "Sam Shepard" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Return of the King", + "year": 1980, + "cast": [ + "Orson Bean", + "John Huston", + "Roddy McDowall" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Return of the Secaucus Seven", + "year": 1980, + "cast": [ + "Bruce MacDonald", + "Maggie Renzi", + "David Strathairn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Roadie", + "year": 1980, + "cast": [ + "Art Carney", + "Meat Loaf" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "Rockshow", + "year": 1980, + "cast": [ + "Paul McCartney", + "Linda McCartney", + "Wings" + ], + "genres": [ + "Documentary", + "Musical" + ] + }, + { + "title": "Rough Cut", + "year": 1980, + "cast": [ + "Burt Reynolds", + "David Niven", + "Lesley-Anne Down" + ], + "genres": [ + "Crime", + "Comedy" + ] + }, + { + "title": "Running Scared", + "year": 1980, + "cast": [ + "Judge Reinhold", + "Ken Wahl" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Saturn 3", + "year": 1980, + "cast": [ + "Kirk Douglas", + "Farrah Fawcett", + "Harvey Keitel" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Schizoid", + "year": 1980, + "cast": [ + "Marianna Hill", + "Craig Wasson" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Scruples", + "year": 1980, + "cast": [ + "Lindsay Wagner", + "Marie-France Pisier", + "Barry Bostwick", + "Kim Cattrall", + "Efrem Zimbalist, Jr.", + "Nick Mancuso", + "Connie Stevens", + "Gene Tierney" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Sea Wolves", + "year": 1980, + "cast": [ + "Roger Moore", + "Gregory Peck" + ], + "genres": [ + "Action", + "War" + ] + }, + { + "title": "Seems Like Old Times", + "year": 1980, + "cast": [ + "Chevy Chase", + "Goldie Hawn", + "Charles Grodin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Serial", + "year": 1980, + "cast": [ + "Martin Mull", + "Tuesday Weld", + "Christopher Lee" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "S*H*E", + "year": 1980, + "cast": [ + "Omar Sharif", + "Anita Ekberg", + "Cornelia Sharpe" + ], + "genres": [ + "Spy" + ] + }, + { + "title": "The Shining", + "year": 1980, + "cast": [ + "Jack Nicholson", + "Shelley Duvall", + "Scatman Crothers", + "Danny Lloyd", + "Anne Jackson", + "Barry Nelson" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Silent Scream", + "year": 1980, + "cast": [ + "Cameron Mitchell", + "Yvonne De Carlo" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Simon", + "year": 1980, + "cast": [ + "Alan Arkin", + "Madeline Kahn", + "Austin Pendleton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Small Circle of Friends", + "year": 1980, + "cast": [ + "Karen Allen", + "Brad Davis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Smokey and the Bandit II", + "year": 1980, + "cast": [ + "Burt Reynolds", + "Sally Field", + "Jackie Gleason", + "Jerry Reed", + "Dom DeLuise" + ], + "genres": [ + "Action", + "Comedy" + ] + }, + { + "title": "Somewhere in Time", + "year": 1980, + "cast": [ + "Christopher Reeve", + "Jane Seymour" + ], + "genres": [ + "Fantasy", + "Romance" + ] + }, + { + "title": "The Empire Strikes Back", + "year": 1980, + "cast": [ + "Carrie Fisher", + "Harrison Ford", + "Mark Hamill", + "Billy Dee Williams", + "Alec Guinness" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Stardust Memories", + "year": 1980, + "cast": [ + "Woody Allen", + "Charlotte Rampling", + "Jessica Harper" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Stir Crazy", + "year": 1980, + "cast": [ + "Richard Pryor", + "Gene Wilder" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Stunt Man", + "year": 1980, + "cast": [ + "Barbara Hershey", + "Peter O'Toole", + "Steve Railsback" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Sunday Lovers", + "year": 1980, + "cast": [ + "Roger Moore", + "Lino Ventura", + "Gene Wilder", + "Lynn Redgrave" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Super Fuzz", + "year": 1980, + "cast": [ + "Michelle Smutny", + "Ernest Borgnine" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Superman II", + "year": 1980, + "cast": [ + "Gene Hackman", + "Christopher Reeve", + "Margot Kidder", + "Terence Stamp", + "Sarah Douglas", + "Jack O'Halloran", + "Clifton James", + "Marc McClure", + "Valerie Perrine" + ], + "genres": [ + "Action", + "Adventure" + ] + }, + { + "title": "Tell Me a Riddle", + "year": 1980, + "cast": [ + "Melvyn Douglas", + "Lila Kedrova", + "Brooke Adams" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Terror Train", + "year": 1980, + "cast": [ + "Hart Bochner", + "David Copperfield", + "Ben Johnson", + "Jamie Lee Curtis" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Those Lips, Those Eyes", + "year": 1980, + "cast": [ + "Frank Langella", + "Glynnis O'Connor", + "Tom Hulce" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Times Square", + "year": 1980, + "cast": [ + "Tim Curry", + "Trini Alvarado" + ], + "genres": [ + "Drama", + "Musical" + ] + }, + { + "title": "Tom Horn", + "year": 1980, + "cast": [ + "Steve McQueen", + "Linda Evans", + "Richard Farnsworth" + ], + "genres": [ + "Western", + "Biography" + ] + }, + { + "title": "The Unseen", + "year": 1980, + "cast": [ + "Stephen Furst", + "Barbara Bach" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Up the Academy", + "year": 1980, + "cast": [ + "Ralph Macchio", + "Barbara Bach" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Urban Cowboy", + "year": 1980, + "cast": [ + "John Travolta", + "Debra Winger", + "Scott Glenn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Used Cars", + "year": 1980, + "cast": [ + "Kurt Russell", + "Jack Warden", + "Gerrit Graham" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Watcher in the Woods", + "year": 1980, + "cast": [ + "Carroll Baker", + "Bette Davis" + ], + "genres": [ + "Fantasy", + "Thriller" + ] + }, + { + "title": "When Time Ran Out", + "year": 1980, + "cast": [ + "Paul Newman", + "Jacqueline Bisset", + "William Holden", + "James Franciscus", + "Ernest Borgnine", + "Red Buttons", + "Barbara Carrera", + "Burgess Meredith" + ], + "genres": [ + "Disaster" + ] + }, + { + "title": "Where the Buffalo Roam", + "year": 1980, + "cast": [ + "Bill Murray", + "Peter Boyle", + "Bruno Kirby" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Wholly Moses", + "year": 1980, + "cast": [ + "Dudley Moore", + "Laraine Newman", + "Jack Gilford" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Why Would I Lie?", + "year": 1980, + "cast": [ + "Treat Williams", + "Lisa Eichhorn" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Willie & Phil", + "year": 1980, + "cast": [ + "Margot Kidder", + "Michael Ontkean", + "Ray Sharkey" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Windows", + "year": 1980, + "cast": [ + "Joseph Cortese", + "Talia Shire" + ], + "genres": [ + "Drama", + "Thriller" + ] + }, + { + "title": "Witches' Brew", + "year": 1980, + "cast": [ + "Teri Garr", + "Richard Benjamin", + "Lana Turner" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Xanadu", + "year": 1980, + "cast": [ + "Olivia Newton-John", + "Michael Beck", + "Gene Kelly" + ], + "genres": [ + "Fantasy", + "Musical" + ] + }, + { + "title": "Absence of Malice", + "year": 1981, + "cast": [ + "Paul Newman", + "Sally Field", + "Bob Balaban", + "Melinda Dillon", + "Wilford Brimley" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "All Night Long", + "year": 1981, + "cast": [ + "Gene Hackman", + "Barbra Streisand", + "Diane Ladd", + "Dennis Quaid" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "...All the Marbles", + "year": 1981, + "cast": [ + "Peter Falk" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Amateur", + "year": 1981, + "cast": [ + "John Savage", + "Christopher Plummer" + ], + "genres": [ + "Spy" + ] + }, + { + "title": "American Pop", + "year": 1981, + "cast": [ + "Lisa Jane Persky", + "Ron Thompson" + ], + "genres": [ + "Drama", + "Animated" + ] + }, + { + "title": "An American Werewolf in London", + "year": 1981, + "cast": [ + "David Naughton", + "Griffin Dunne" + ], + "genres": [ + "Horror", + "Comedy" + ] + }, + { + "title": "Amy", + "year": 1981, + "cast": [ + "Jenny Agutter", + "Barry Newman" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Arthur", + "year": 1981, + "cast": [ + "Dudley Moore", + "Liza Minnelli", + "John Gielgud", + "Geraldine Fitzgerald", + "Jill Eikenberry", + "Ted Ross" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Back Roads", + "year": 1981, + "cast": [ + "Sally Field", + "Tommy Lee Jones" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Blow Out", + "year": 1981, + "cast": [ + "John Travolta", + "Nancy Allen", + "John Lithgow", + "Dennis Franz" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Body Heat", + "year": 1981, + "cast": [ + "William Hurt", + "Kathleen Turner", + "Richard Crenna", + "Ted Danson", + "J. A. Preston", + "Mickey Rourke" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "Body and Soul", + "year": 1981, + "cast": [ + "Leon Isaac Kennedy", + "Jayne Kennedy", + "Michael V. Gazzo" + ], + "genres": [ + "Sports", + "Drama" + ] + }, + { + "title": "Buddy Buddy", + "year": 1981, + "cast": [ + "Jack Lemmon", + "Walter Matthau", + "Paula Prentiss", + "Klaus Kinski" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Burned at the Stake", + "year": 1981, + "cast": [ + "Susan Swift", + "Albert Salmi", + "Guy Stockwell" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Burning", + "year": 1981, + "cast": [ + "Brian Matthews", + "Holly Hunter", + "Jason Alexander" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Bustin' Loose", + "year": 1981, + "cast": [ + "Richard Pryor", + "Cicely Tyson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Cannonball Run", + "year": 1981, + "cast": [ + "Burt Reynolds", + "Dom DeLuise", + "Farrah Fawcett", + "Dean Martin", + "Sammy Davis Jr.", + "Roger Moore", + "Jackie Chan" + ], + "genres": [ + "Comedy", + "Action" + ] + }, + { + "title": "Carbon Copy", + "year": 1981, + "cast": [ + "George Segal", + "Susan Saint James", + "Denzel Washington" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Cattle Annie and Little Britches", + "year": 1981, + "cast": [ + "Burt Lancaster", + "Amanda Plummer", + "Diane Lane" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Caveman", + "year": 1981, + "cast": [ + "Ringo Starr", + "Dennis Quaid", + "Shelley Long", + "Barbara Bach", + "John Matuszak", + "Jack Gilford" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Charlie Chan and the Curse of the Dragon Queen", + "year": 1981, + "cast": [ + "Peter Ustinov", + "Angie Dickinson" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Chosen", + "year": 1981, + "cast": [ + "Maximilian Schell", + "Rod Steiger", + "Robby Benson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Circle of Power", + "year": 1981, + "cast": [ + "Yvette Mimieux", + "Christopher Allport" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Circle of Two", + "year": 1981, + "cast": [ + "Richard Burton", + "Tatum O'Neal" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Chu Chu and the Philly Flash", + "year": 1981, + "cast": [ + "Alan Arkin", + "Carol Burnett", + "Jack Warden" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Clash of the Titans", + "year": 1981, + "cast": [ + "Laurence Olivier", + "Harry Hamlin", + "Maggie Smith", + "Burgess Meredith", + "Ursula Andress", + "Judi Bowker", + "Claire Bloom" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Condorman", + "year": 1981, + "cast": [ + "Michael Crawford", + "Oliver Reed", + "Barbara Carrera" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Continental Divide", + "year": 1981, + "cast": [ + "John Belushi", + "Blair Brown" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Cutter's Way", + "year": 1981, + "cast": [ + "Jeff Bridges", + "John Heard", + "Lisa Eichhorn" + ], + "genres": [ + "Mystery", + "Drama" + ] + }, + { + "title": "Dead & Buried", + "year": 1981, + "cast": [ + "Melody Anderson", + "Jack Albertson" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Deadly Blessing", + "year": 1981, + "cast": [ + "Maren Jensen", + "Sharon Stone", + "Susan Buckner" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Death of a Centerfold: The Dorothy Stratten Story", + "year": 1981, + "cast": [ + "Jamie Lee Curtis", + "Bruce Weitz", + "Robert Reed" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Death Hunt", + "year": 1981, + "cast": [ + "Charles Bronson", + "Lee Marvin", + "Angie Dickinson", + "Andrew Stevens", + "Carl Weathers", + "Ed Lauter" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Decline of Western Civilization", + "year": 1981, + "cast": [ + "Black Flag", + "Circle Jerks", + "X" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Devil and Max Devlin", + "year": 1981, + "cast": [ + "Elliott Gould", + "Bill Cosby", + "Susan Anspach" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Don't Cry, It's Only Thunder", + "year": 1981, + "cast": [ + "Dennis Christopher", + "Susan Saint James" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dragonslayer", + "year": 1981, + "cast": [ + "Peter MacNicol", + "Ralph Richardson" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Endless Love", + "year": 1981, + "cast": [ + "Brooke Shields", + "Martin Hewitt", + "Don Murray", + "Shirley Knight", + "Richard Kiley", + "Beatrice Straight", + "Penelope Milford", + "James Spader", + "Tom Cruise" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Enter the Ninja", + "year": 1981, + "cast": [ + "Franco Nero", + "Susan George", + "Sho Kosugi", + "Christopher George" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Escape from New York", + "year": 1981, + "cast": [ + "Kurt Russell", + "Lee Van Cleef", + "Donald Pleasence", + "Adrienne Barbeau", + "Isaac Hayes", + "Ernest Borgnine" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Escape to Victory", + "year": 1981, + "cast": [ + "Sylvester Stallone", + "Michael Caine", + "Max von Sydow" + ], + "genres": [ + "War" + ] + }, + { + "title": "The Evil Dead", + "year": 1981, + "cast": [ + "Bruce Campbell", + "Ellen Sandweiss" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "An Eye for an Eye", + "year": 1981, + "cast": [ + "Chuck Norris", + "Christopher Reeve", + "Richard Roundtree" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Eye of the Needle", + "year": 1981, + "cast": [ + "Donald Sutherland", + "Kate Nelligan", + "Christopher Cazenove" + ], + "genres": [ + "Spy" + ] + }, + { + "title": "Eyewitness", + "year": 1981, + "cast": [ + "William Hurt", + "Sigourney Weaver", + "James Woods", + "Christopher Plummer" + ], + "genres": [ + "Mystery", + "Thriller" + ] + }, + { + "title": "Excalibur", + "year": 1981, + "cast": [ + "Nigel Terry", + "Helen Mirren" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "The Fan", + "year": 1981, + "cast": [ + "Lauren Bacall", + "James Garner", + "Maureen Stapleton", + "Michael Biehn", + "Hector Elizondo" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Fantasies", + "year": 1981, + "cast": [ + "Bo Derek" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Final Conflict", + "year": 1981, + "cast": [ + "Sam Neill", + "Rossano Brazzi", + "Don Gordon" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "First Monday in October", + "year": 1981, + "cast": [ + "Walter Matthau", + "Jill Clayburgh", + "Barnard Hughes" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Fort Apache, the Bronx", + "year": 1981, + "cast": [ + "Paul Newman", + "Edward Asner", + "Ken Wahl", + "Pam Grier" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Four Friends", + "year": 1981, + "cast": [ + "Craig Wasson", + "Jodi Thelen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Four Seasons", + "year": 1981, + "cast": [ + "Alan Alda", + "Carol Burnett", + "Rita Moreno", + "Len Cariou", + "Jack Weston", + "Sandy Dennis", + "Bess Armstrong" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Fox and the Hound", + "year": 1981, + "cast": [ + "voices of", + "Pearl Bailey", + "Mickey Rooney" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Friday the 13th Part 2", + "year": 1981, + "cast": [ + "Adrienne King", + "Amy Steel" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Full Moon High", + "year": 1981, + "cast": [ + "Adam Arkin", + "Ed McMahon" + ], + "genres": [ + "Comedy", + "Horror" + ] + }, + { + "title": "The Funhouse", + "year": 1981, + "cast": [ + "Elizabeth Berridge", + "Jack McDermott" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Galaxy of Terror", + "year": 1981, + "cast": [ + "Edward Albert", + "Erin Moran", + "Ray Walston" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Gangster Wars", + "year": 1981, + "cast": [ + "Michael Nouri", + "Joe Penny", + "Madeleine Stowe" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Ghost Story", + "year": 1981, + "cast": [ + "Fred Astaire", + "John Houseman", + "Melvyn Douglas" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Going Ape!", + "year": 1981, + "cast": [ + "Tony Danza", + "Jessica Walter", + "Danny DeVito" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Graduation Day", + "year": 1981, + "cast": [ + "Christopher George", + "Michael Pataki" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Great Muppet Caper", + "year": 1981, + "cast": [ + "Diana Rigg", + "Charles Grodin" + ], + "genres": [ + "Comedy", + "Family" + ] + }, + { + "title": "Halloween II", + "year": 1981, + "cast": [ + "Jamie Lee Curtis", + "Donald Pleasence" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Hand", + "year": 1981, + "cast": [ + "Michael Caine", + "Andrea Marcovicci" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Hard Country", + "year": 1981, + "cast": [ + "Jan-Michael Vincent", + "Kim Basinger", + "Michael Parks" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hardly Working", + "year": 1981, + "cast": [ + "Jerry Lewis", + "Susan Oliver", + "Deanna Lund" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Harry's War", + "year": 1981, + "cast": [ + "Edward Herrmann", + "Geraldine Page", + "Karen Grassle" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Heartbeeps", + "year": 1981, + "cast": [ + "Andy Kaufman", + "Bernadette Peters", + "Randy Quaid" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Heavy Metal", + "year": 1981, + "cast": [ + "Voices of", + "John Candy", + "Eugene Levy", + "Harold Ramis" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Hell Night", + "year": 1981, + "cast": [ + "Linda Blair", + "Vincent Van Patten", + "Peter Barton" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "History of the World: Part I", + "year": 1981, + "cast": [ + "Mel Brooks", + "Gregory Hines", + "Madeline Kahn", + "Harvey Korman", + "Cloris Leachman", + "Pamela Stephenson", + "Mary-Margaret Humes", + "Sid Caesar", + "Dom DeLuise", + "Ron Carey", + "Shecky Greene", + "Orson Welles" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Honky Tonk Freeway", + "year": 1981, + "cast": [ + "Beverly D'Angelo", + "Beau Bridges", + "William Devane" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Howling", + "year": 1981, + "cast": [ + "Dee Wallace", + "Patrick Macnee", + "Christopher Stone", + "Belinda Balaski", + "Elisabeth Brooks" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Incredible Shrinking Woman", + "year": 1981, + "cast": [ + "Lily Tomlin", + "Charles Grodin", + "Ned Beatty", + "Henry Gibson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Knightriders", + "year": 1981, + "cast": [ + "Ed Harris", + "Tom Savini" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Ladies and Gentlemen, the Fabulous Stains", + "year": 1981, + "cast": [ + "Diane Lane", + "Laura Dern", + "Ray Winstone" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Last Chase", + "year": 1981, + "cast": [ + "Lee Majors", + "Burgess Meredith" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Legend of the Lone Ranger", + "year": 1981, + "cast": [ + "Klinton Spilsbury", + "Michael Horse", + "Christopher Lloyd", + "Jason Robards" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Lion of the Desert", + "year": 1981, + "cast": [ + "Anthony Quinn", + "Rod Steiger", + "John Gielgud" + ], + "genres": [ + "Biography", + "War" + ] + }, + { + "title": "Looker", + "year": 1981, + "cast": [ + "Albert Finney", + "James Coburn", + "Susan Dey" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Looney Looney Looney Bugs Bunny Movie", + "year": 1981, + "cast": [ + "Mel Blanc", + "June Foray" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "The Man Who Saw Tomorrow", + "year": 1981, + "cast": [ + "Orson Welles" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Modern Problems", + "year": 1981, + "cast": [ + "Chevy Chase", + "Dabney Coleman", + "Nell Carter" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Modern Romance", + "year": 1981, + "cast": [ + "Albert Brooks", + "Kathryn Harrold", + "Bruno Kirby" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mommie Dearest", + "year": 1981, + "cast": [ + "Faye Dunaway", + "Diana Scarwid", + "Mara Hobel", + "Steve Forrest", + "Rutanya Alda", + "Howard Da Silva" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Ms. 45", + "year": 1981, + "cast": [ + "Zoe Tamerlis Lund", + "Abel Ferrara" + ], + "genres": [ + "Action" + ] + }, + { + "title": "My Dinner with Andre", + "year": 1981, + "cast": [ + "Andre Gregory", + "Wallace Shawn" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Neighbors", + "year": 1981, + "cast": [ + "John Belushi", + "Dan Aykroyd", + "Cathy Moriarty" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Nesting", + "year": 1981, + "cast": [ + "Robin Groves", + "Christopher Loomis", + "John Carradine" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Nice Dreams", + "year": 1981, + "cast": [ + "Cheech Marin", + "Tommy Chong" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Night the Lights Went Out in Georgia", + "year": 1981, + "cast": [ + "Kristy McNichol", + "Dennis Quaid", + "Mark Hamill" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Nighthawks", + "year": 1981, + "cast": [ + "Sylvester Stallone", + "Rutger Hauer", + "Billy Dee Williams" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Nobody's Perfekt", + "year": 1981, + "cast": [ + "Gabe Kaplan", + "Alex Karras", + "Susan Clark" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "On Golden Pond", + "year": 1981, + "cast": [ + "Henry Fonda", + "Katharine Hepburn", + "Jane Fonda", + "Dabney Coleman", + "Doug McKeon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "On the Right Track", + "year": 1981, + "cast": [ + "Gary Coleman", + "Michael Lembeck", + "Lisa Eilbacher" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Only When I Laugh", + "year": 1981, + "cast": [ + "Marsha Mason", + "Joan Hackett", + "James Coco", + "David Dukes", + "Kristy McNichol" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Paternity", + "year": 1981, + "cast": [ + "Burt Reynolds", + "Beverly D'Angelo", + "Elizabeth Ashley" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Pennies from Heaven", + "year": 1981, + "cast": [ + "Steve Martin", + "Bernadette Peters", + "Jessica Harper" + ], + "genres": [ + "Musical", + "Drama" + ] + }, + { + "title": "Piranha II: The Spawning", + "year": 1981, + "cast": [ + "Tricia O'Neil", + "Lance Henriksen" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Polyester", + "year": 1981, + "cast": [ + "Divine", + "Tab Hunter" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Postman Always Rings Twice", + "year": 1981, + "cast": [ + "Jack Nicholson", + "Jessica Lange", + "John Colicos", + "Michael Lerner", + "John P. Ryan", + "Anjelica Huston" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Prince of the City", + "year": 1981, + "cast": [ + "Treat Williams", + "Jerry Orbach", + "Lindsay Crouse", + "Bob Balaban", + "James Tolkan", + "Lane Smith", + "Lee Richardson" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Private Lessons", + "year": 1981, + "cast": [ + "Sylvia Kristel", + "Howard Hesseman", + "Ed Begley Jr." + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Prowler", + "year": 1981, + "cast": [ + "Vicky Dawson", + "Christopher Goutman" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Pursuit of D. B. Cooper", + "year": 1981, + "cast": [ + "Treat Williams", + "Robert Duvall", + "Kathryn Harrold" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Raggedy Man", + "year": 1981, + "cast": [ + "Sissy Spacek", + "Eric Roberts", + "Sam Shepard" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Ragtime", + "year": 1981, + "cast": [ + "Elizabeth McGovern", + "Howard Rollins", + "James Cagney", + "Pat O'Brien", + "Kenneth McMillan", + "Mary Steenburgen", + "James Olson", + "Mandy Patinkin", + "Brad Dourif", + "Moses Gunn", + "Robert Joy", + "Donald O'Connor", + "Norman Mailer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Raiders of the Lost Ark", + "year": 1981, + "cast": [ + "Harrison Ford", + "Karen Allen", + "Denholm Elliott", + "Paul Freeman", + "John Rhys-Davies", + "Ronald Lacey", + "Alfred Molina" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Reds", + "year": 1981, + "cast": [ + "Warren Beatty", + "Diane Keaton", + "Gene Hackman", + "Maureen Stapleton", + "Jerzy Kosinski", + "Paul Sorvino", + "Jack Nicholson" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Rich and Famous", + "year": 1981, + "cast": [ + "Jacqueline Bisset", + "Candice Bergen", + "Hart Bochner" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Rollover", + "year": 1981, + "cast": [ + "Jane Fonda", + "Kris Kristofferson", + "Hume Cronyn" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Ruckus", + "year": 1981, + "cast": [ + "Dirk Benedict", + "Linda Blair", + "Richard Farnsworth" + ], + "genres": [ + "Action", + "Comedy" + ] + }, + { + "title": "S.O.B.", + "year": 1981, + "cast": [ + "Julie Andrews", + "William Holden", + "Richard Mulligan", + "Robert Preston", + "Robert Webber", + "Robert Vaughn", + "Larry Hagman" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Salamander", + "year": 1981, + "cast": [ + "Franco Nero", + "Anthony Quinn", + "Sybil Danning" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Saturday the 14th", + "year": 1981, + "cast": [ + "Richard Benjamin", + "Paula Prentiss", + "Severn Darden" + ], + "genres": [ + "Horror", + "Comedy" + ] + }, + { + "title": "Second-Hand Hearts", + "year": 1981, + "cast": [ + "Robert Blake", + "Barbara Harris" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Sharky's Machine", + "year": 1981, + "cast": [ + "Burt Reynolds", + "Rachel Ward", + "Vittorio Gassman", + "Henry Silva", + "Charles Durning", + "Earl Holliman" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Shock Treatment", + "year": 1981, + "cast": [ + "Cliff DeYoung", + "Jessica Harper" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Southern Comfort", + "year": 1981, + "cast": [ + "Powers Boothe", + "Keith Carradine", + "Fred Ward", + "Peter Coyote" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Sphinx", + "year": 1981, + "cast": [ + "Frank Langella", + "Lesley-Anne Down", + "John Gielgud" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Stripes", + "year": 1981, + "cast": [ + "Bill Murray", + "Harold Ramis", + "Warren Oates", + "John Candy", + "Sean Young", + "P.J. Soles", + "John Larroquette" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Student Bodies", + "year": 1981, + "cast": [ + "Kristen Riter", + "Matt Goldsby" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Take This Job and Shove It", + "year": 1981, + "cast": [ + "Robert Hays", + "Art Carney", + "Barbara Hershey" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Taps", + "year": 1981, + "cast": [ + "George C. Scott", + "Timothy Hutton", + "Ronny Cox", + "Sean Penn", + "Tom Cruise" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Tarzan, the Ape Man", + "year": 1981, + "cast": [ + "Bo Derek", + "Richard Harris", + "John Phillip Law", + "Miles O'Keeffe" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Tattoo", + "year": 1981, + "cast": [ + "Bruce Dern", + "Maud Adams", + "Leonard Frey" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "They All Laughed", + "year": 1981, + "cast": [ + "Audrey Hepburn", + "Ben Gazzara", + "Patti Hansen", + "Dorothy Stratten", + "John Ritter" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Thief", + "year": 1981, + "cast": [ + "James Caan", + "Tuesday Weld", + "James Belushi", + "Robert Prosky", + "Willie Nelson" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "This Is Elvis", + "year": 1981, + "cast": [ + "Elvis Presley" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "True Confessions", + "year": 1981, + "cast": [ + "Robert De Niro", + "Robert Duvall", + "Charles Durning", + "Kenneth McMillan", + "Cyril Cusack", + "Ed Flanders", + "Burgess Meredith" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Tuck Everlasting", + "year": 1981, + "cast": [ + "Margaret Chamberlain", + "Paul Fleesa" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Under the Rainbow", + "year": 1981, + "cast": [ + "Chevy Chase", + "Carrie Fisher", + "Eve Arden" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Vernon, Florida", + "year": 1981, + "cast": [ + "Snake Reynolds" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Waitress!", + "year": 1981, + "cast": [ + "Jim Harris", + "[Carol Drake" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Whose Life Is It Anyway?", + "year": 1981, + "cast": [ + "Richard Dreyfuss", + "John Cassavetes", + "Christine Lahti", + "Thomas Carter", + "Kenneth McMillan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Wolfen", + "year": 1981, + "cast": [ + "Albert Finney", + "Gregory Hines" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Woman Inside", + "year": 1981, + "cast": [ + "Dane Clark", + "Joan Blondell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Zoot Suit", + "year": 1981, + "cast": [ + "Edward James Olmos", + "Daniel Valdez", + "Tyne Daly" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Zorro, the Gay Blade", + "year": 1981, + "cast": [ + "George Hamilton", + "Lauren Hutton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "48 Hrs.", + "year": 1982, + "cast": [ + "Nick Nolte", + "Eddie Murphy", + "Annette O'Toole", + "James Remar", + "David Patrick Kelly" + ], + "genres": [ + "Crime", + "Comedy" + ] + }, + { + "title": "Airplane II: The Sequel", + "year": 1982, + "cast": [ + "Robert Hays", + "Julie Hagerty", + "Lloyd Bridges", + "Chad Everett", + "William Shatner", + "Rip Torn", + "Sonny Bono" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Alone in the Dark", + "year": 1982, + "cast": [ + "Jack Palance", + "Donald Pleasence" + ], + "genres": [ + "Slasher" + ] + }, + { + "title": "Amityville II: The Possession", + "year": 1982, + "cast": [ + "James Olson", + "Burt Young", + "Rutanya Alda" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Android", + "year": 1982, + "cast": [ + "Klaus Kinski", + "Brie Howard" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Annie", + "year": 1982, + "cast": [ + "Aileen Quinn", + "Albert Finney", + "Carol Burnett", + "Tim Curry", + "Bernadette Peters", + "Ann Reinking", + "Geoffrey Holder", + "Edward Herrmann" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Atomic Cafe", + "year": 1982, + "cast": [ + "Dwight D. Eisenhower" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Author! Author!", + "year": 1982, + "cast": [ + "Al Pacino", + "Dyan Cannon", + "Tuesday Weld" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Barbarosa", + "year": 1982, + "cast": [ + "Willie Nelson", + "Gary Busey", + "Isela Vega" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Basket Case", + "year": 1982, + "cast": [ + "Kevin Van Hentenryck" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Beach Girls", + "year": 1982, + "cast": [ + "Jeana Tomasino", + "Debra Blee" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Beast Within", + "year": 1982, + "cast": [ + "Ronny Cox", + "Bibi Besch", + "L.Q. Jones" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Beastmaster", + "year": 1982, + "cast": [ + "Marc Singer", + "Tanya Roberts" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Best Friends", + "year": 1982, + "cast": [ + "Burt Reynolds", + "Goldie Hawn", + "Jessica Tandy", + "Barnard Hughes", + "Ron Silver" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "The Best Little Whorehouse in Texas", + "year": 1982, + "cast": [ + "Dolly Parton", + "Burt Reynolds", + "Charles Durning", + "Dom DeLuise", + "Jim Nabors" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Blade Runner", + "year": 1982, + "cast": [ + "Harrison Ford", + "Rutger Hauer", + "Sean Young", + "Daryl Hannah", + "William Sanderson", + "Joanna Cassidy", + "Brion James", + "Joe Turkel" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Border", + "year": 1982, + "cast": [ + "Jack Nicholson", + "Valerie Perrine", + "Harvey Keitel", + "Warren Oates" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Bugs Bunny's 3rd Movie: 1001 Rabbit Tales", + "year": 1982, + "cast": [ + "Mel Blanc", + "June Foray" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Burden of Dreams", + "year": 1982, + "cast": [ + "Werner Herzog", + "Claudia Cardinale", + "Mick Jagger" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Butterfly", + "year": 1982, + "cast": [ + "Pia Zadora", + "Ed McMahon", + "Orson Welles", + "Lois Nettleton", + "June Lockhart" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Cannery Row", + "year": 1982, + "cast": [ + "Nick Nolte", + "Debra Winger" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Cat People", + "year": 1982, + "cast": [ + "Nastassja Kinski", + "Malcolm McDowell", + "Annette O'Toole", + "John Heard" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Chan Is Missing", + "year": 1982, + "cast": [ + "Wood Moy", + "Marc Hayashi" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Come Back to the Five and Dime, Jimmy Dean, Jimmy Dean", + "year": 1982, + "cast": [ + "Cher", + "Sandy Dennis", + "Karen Black" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Comeback", + "year": 1982, + "cast": [ + "Animals", + "Eric Burdon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Conan the Barbarian", + "year": 1982, + "cast": [ + "Arnold Schwarzenegger", + "James Earl Jones", + "Mako" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Concrete Jungle", + "year": 1982, + "cast": [ + "Jill St. John", + "Tracey E. Bregman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Creepshow", + "year": 1982, + "cast": [ + "Hal Holbrook", + "Adrienne Barbeau", + "E. G. Marshall", + "Ted Danson", + "Fritz Weaver", + "Leslie Nielsen", + "Stephen King" + ], + "genres": [ + "Horror", + "Comedy" + ] + }, + { + "title": "The Dark Crystal", + "year": 1982, + "cast": [ + "Voices of", + "Frank Oz", + "Jim Henson" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Dead Men Don't Wear Plaid", + "year": 1982, + "cast": [ + "Steve Martin", + "Rachel Ward", + "Carl Reiner" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Death Wish II", + "year": 1982, + "cast": [ + "Charles Bronson", + "Jill Ireland", + "Vincent Gardenia" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Deathtrap", + "year": 1982, + "cast": [ + "Michael Caine", + "Christopher Reeve", + "Dyan Cannon" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Diner", + "year": 1982, + "cast": [ + "Mickey Rourke", + "Paul Reiser", + "Ellen Barkin", + "Steve Guttenberg", + "Kevin Bacon", + "Daniel Stern", + "Tim Daly" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Don't Go to Sleep", + "year": 1982, + "cast": [ + "Valerie Harper", + "Dennis Weaver", + "Robin Ignico", + "Kristen Cumming", + "Oliver Robbins", + "Ruth Gordon" + ], + "genres": [ + "Horror", + "Mystery" + ] + }, + { + "title": "E.T. the Extra-Terrestrial", + "year": 1982, + "cast": [ + "Dee Wallace", + "Henry Thomas", + "Peter Coyote", + "Drew Barrymore", + "Robert MacNaughton" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Eating Raoul", + "year": 1982, + "cast": [ + "Paul Bartel", + "Mary Woronov", + "Robert Beltran" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Endangered Species", + "year": 1982, + "cast": [ + "Robert Urich", + "JoBeth Williams", + "Paul Dooley" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Escape Artist", + "year": 1982, + "cast": [ + "Raúl Juliá", + "Griffin O'Neal", + "Teri Garr", + "Desi Arnaz" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Fast Times at Ridgemont High", + "year": 1982, + "cast": [ + "Sean Penn", + "Judge Reinhold", + "Phoebe Cates", + "Jennifer Jason Leigh", + "Robert Romanus", + "Brian Backer" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Fast-Walking", + "year": 1982, + "cast": [ + "James Woods", + "Tim McIntire", + "Kay Lenz" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Fighting Back", + "year": 1982, + "cast": [ + "Tom Skerritt", + "Patti LuPone", + "Michael Sarrazin" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Firefox", + "year": 1982, + "cast": [ + "Clint Eastwood", + "Nigel Hawthorne" + ], + "genres": [ + "Action" + ] + }, + { + "title": "First Blood", + "year": 1982, + "cast": [ + "Sylvester Stallone", + "Richard Crenna", + "Brian Dennehy", + "Jack Starrett", + "David Caruso" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Five Days One Summer", + "year": 1982, + "cast": [ + "Sean Connery", + "Betsy Brantley" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Flight of Dragons", + "year": 1982, + "cast": [ + "John Ritter", + "Bob McFadden" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Forbidden World", + "year": 1982, + "cast": [ + "Dawn Dunlap", + "Jesse Vint", + "Michael Bowen" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Forbidden Zone", + "year": 1982, + "cast": [ + "Hervé Villechaize", + "Susan Tyrell", + "Danny Elfman" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Forced Vengeance", + "year": 1982, + "cast": [ + "Chuck Norris", + "David Opatoshu", + "Frank Michael Liu" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Frances", + "year": 1982, + "cast": [ + "Jessica Lange", + "Kim Stanley", + "Sam Shepard" + ], + "genres": [ + "Drama", + "Biography" + ] + }, + { + "title": "Friday the 13th Part III", + "year": 1982, + "cast": [ + "Dana Kimmell", + "Larry Zerner" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Genocide", + "year": 1982, + "cast": [ + "Archive footage of", + "Adolf Hitler", + "Winston Churchill" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Gandhi", + "year": 1982, + "cast": [ + "Ben Kingsley", + "Edward Fox", + "John Gielgud", + "Trevor Howard", + "John Mills", + "Martin Sheen", + "Candice Bergen" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Grease 2", + "year": 1982, + "cast": [ + "Maxwell Caulfield", + "Michelle Pfeiffer", + "Adrian Zmed", + "Didi Conn", + "Eve Arden", + "Sid Caesar", + "Dody Goodman", + "Eddie Deezen", + "Connie Stevens", + "Lorna Luft" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Halloween III: Season of the Witch", + "year": 1982, + "cast": [ + "Dan O'Herlihy", + "Stacey Nelkin" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Hammett", + "year": 1982, + "cast": [ + "Frederic Forrest", + "Marilu Henner", + "Peter Boyle" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Hanky Panky", + "year": 1982, + "cast": [ + "Gene Wilder", + "Gilda Radner", + "Richard Widmark" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Harry Tracy", + "year": 1982, + "cast": [ + "Bruce Dern", + "Helen Shaver" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Heidi's Song", + "year": 1982, + "cast": [ + "Lorne Greene", + "Margery Gray", + "Sammy Davis, Jr." + ], + "genres": [ + "Animated", + "Family" + ] + }, + { + "title": "Hey Good Lookin'", + "year": 1982, + "cast": [ + "Voices of", + "David Proval", + "Tina Bowman" + ], + "genres": [ + "Animated", + "Erotic" + ] + }, + { + "title": "Honkytonk Man", + "year": 1982, + "cast": [ + "Clint Eastwood", + "Kyle Eastwood", + "Verna Bloom" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hospital Massacre", + "year": 1982, + "cast": [ + "Jon Van Ness", + "Barbi Benton" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Human Highway", + "year": 1982, + "cast": [ + "Neil Young", + "Russ Tamblyn", + "Devo" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "I Ought to Be in Pictures", + "year": 1982, + "cast": [ + "Walter Matthau", + "Ann-Margret", + "Dinah Manoff" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "I, the Jury", + "year": 1982, + "cast": [ + "Armand Assante", + "Paul Sorvino", + "Barbara Carrera" + ], + "genres": [ + "Action" + ] + }, + { + "title": "I'm Dancing as Fast as I Can", + "year": 1982, + "cast": [ + "Jill Clayburgh", + "Nicol Williamson", + "Dianne Wiest" + ], + "genres": [ + "Drama", + "Biography" + ] + }, + { + "title": "Inchon", + "year": 1982, + "cast": [ + "Laurence Olivier", + "Toshirō Mifune", + "Ben Gazzara", + "Jacqueline Bisset", + "Richard Roundtree" + ], + "genres": [ + "War" + ] + }, + { + "title": "It Came from Hollywood", + "year": 1982, + "cast": [ + "Archive footage of", + "Bela Lugosi", + "Mamie Van Doren" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Jekyll and Hyde... Together Again", + "year": 1982, + "cast": [ + "Bess Armstrong", + "Mark Blankfield", + "Tim Thomerson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Jinxed!", + "year": 1982, + "cast": [ + "Bette Midler", + "Rip Torn", + "Ken Wahl" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Kill Squad", + "year": 1982, + "cast": [ + "Cameron Mitchell", + "Jean Glaudé" + ], + "genres": [ + "Martial Arts" + ] + }, + { + "title": "Kiss Me Goodbye", + "year": 1982, + "cast": [ + "Sally Field", + "James Caan", + "Jeff Bridges" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Koyaanisqatsi", + "year": 1982, + "cast": [ + "Musical score by", + "Philip Glass" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Last American Virgin", + "year": 1982, + "cast": [ + "Lawrence Monoson", + "Diane Franklin", + "Steve Antin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Last Horror Film", + "year": 1982, + "cast": [ + "Caroline Munro", + "Joe Spinell" + ], + "genres": [ + "Comedy", + "Horror" + ] + }, + { + "title": "The Last Unicorn", + "year": 1982, + "cast": [ + "Mia Farrow", + "Alan Arkin", + "Jeff Bridges" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Let's Spend the Night Together", + "year": 1982, + "cast": [ + "The Rolling Stones" + ], + "genres": [ + "Performance" + ] + }, + { + "title": "Liquid Sky", + "year": 1982, + "cast": [ + "Anne Carlisle", + "Susan Doukas" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Lookin' to Get Out", + "year": 1982, + "cast": [ + "Jon Voight", + "Ann-Margret", + "Burt Young" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Love Child", + "year": 1982, + "cast": [ + "Amy Madigan", + "Beau Bridges", + "Mackenzie Phillips" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Love and Money", + "year": 1982, + "cast": [ + "Ray Sharkey", + "Ornella Muti", + "Klaus Kinski" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Madman", + "year": 1982, + "cast": [ + "Gaylen Ross", + "Harriet Bass" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Making Love", + "year": 1982, + "cast": [ + "Harry Hamlin", + "Kate Jackson", + "Michael Ontkean" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Megaforce", + "year": 1982, + "cast": [ + "Barry Bostwick", + "Persis Khambatta", + "Michael Beck" + ], + "genres": [ + "Action" + ] + }, + { + "title": "A Midsummer Night's Sex Comedy", + "year": 1982, + "cast": [ + "Mia Farrow", + "Woody Allen", + "José Ferrer", + "Julie Hagerty", + "Mary Steenburgen", + "Tony Roberts" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Missing", + "year": 1982, + "cast": [ + "Jack Lemmon", + "Sissy Spacek", + "John Shea" + ], + "genres": [ + "Drama", + "Biography" + ] + }, + { + "title": "Monsignor", + "year": 1982, + "cast": [ + "Christopher Reeve", + "Geneviève Bujold", + "Fernando Rey" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Mother Lode", + "year": 1982, + "cast": [ + "Charlton Heston", + "Kim Basinger", + "Nick Mancuso" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "My Favorite Year", + "year": 1982, + "cast": [ + "Peter O'Toole", + "Mark Linn-Baker", + "Joseph Bologna", + "Lainie Kazan", + "Jessica Harper", + "Bill Macy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Night Crossing", + "year": 1982, + "cast": [ + "Jane Alexander", + "Beau Bridges" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Night Shift", + "year": 1982, + "cast": [ + "Henry Winkler", + "Michael Keaton", + "Shelley Long" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "An Officer and a Gentleman", + "year": 1982, + "cast": [ + "Richard Gere", + "Louis Gossett, Jr.", + "Debra Winger", + "David Keith", + "Lisa Blount" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "One from the Heart", + "year": 1982, + "cast": [ + "Teri Garr", + "Frederic Forrest", + "Nastassja Kinski", + "Raúl Juliá" + ], + "genres": [ + "Drama", + "Musical" + ] + }, + { + "title": "Pandemonium", + "year": 1982, + "cast": [ + "Tom Smothers", + "Paul Reubens", + "Carol Kane" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Parasite", + "year": 1982, + "cast": [ + "Demi Moore", + "Robert Glaudini" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Partners", + "year": 1982, + "cast": [ + "John Hurt", + "Ryan O'Neal" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Personal Best", + "year": 1982, + "cast": [ + "Mariel Hemingway", + "Scott Glenn", + "Patrice Donnelly" + ], + "genres": [ + "Drama", + "Sports" + ] + }, + { + "title": "Poltergeist", + "year": 1982, + "cast": [ + "Craig T. Nelson", + "Beatrice Straight", + "Dominique Dunne" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Porky's", + "year": 1982, + "cast": [ + "Kim Cattrall", + "Mark Herrier", + "Wyatt Knight" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Q", + "year": 1982, + "cast": [ + "Michael Moriarty", + "Candy Clark", + "Richard Roundtree" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Richard Pryor: Live on the Sunset Strip", + "year": 1982, + "cast": [ + "Richard Pryor" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Rocky III", + "year": 1982, + "cast": [ + "Sylvester Stallone", + "Carl Weathers", + "Talia Shire", + "Burgess Meredith", + "Burt Young", + "Mr. T", + "Hulk Hogan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Safari 3000", + "year": 1982, + "cast": [ + "David Carradine", + "Stockard Channing" + ], + "genres": [ + "Action", + "Comedy" + ] + }, + { + "title": "Savannah Smiles", + "year": 1982, + "cast": [ + "Mark Miller", + "Donovan Scott" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Secret of NIMH", + "year": 1982, + "cast": [ + "Voices of", + "Dom DeLuise", + "Peter Strauss" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "The Seduction", + "year": 1982, + "cast": [ + "Morgan Fairchild", + "Andrew Stevens", + "Colleen Camp" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Sender", + "year": 1982, + "cast": [ + "Kathryn Harrold", + "Paul Freeman" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Shoot the Moon", + "year": 1982, + "cast": [ + "Albert Finney", + "Diane Keaton", + "Karen Allen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Silent Rage", + "year": 1982, + "cast": [ + "Chuck Norris", + "Ron Silver" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Six Pack", + "year": 1982, + "cast": [ + "Kenny Rogers", + "Diane Lane", + "Barry Corbin", + "Erin Gray", + "Terry Kiser", + "Anthony Michael Hall" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Six Weeks", + "year": 1982, + "cast": [ + "Dudley Moore", + "Mary Tyler Moore", + "Katherine Healy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Slayer", + "year": 1982, + "cast": [ + "Sarah Kendall", + "Frederick Flynn" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Slumber Party Massacre", + "year": 1982, + "cast": [ + "Michelle Michaels", + "Andree Honore" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Some Kind of Hero", + "year": 1982, + "cast": [ + "Richard Pryor", + "Ronny Cox", + "Margot Kidder" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sophie's Choice", + "year": 1982, + "cast": [ + "Meryl Streep", + "Kevin Kline", + "Peter MacNicol" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Soup for One", + "year": 1982, + "cast": [ + "Saul Rubinek", + "Marcia Strassman" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Star Trek II: The Wrath of Khan", + "year": 1982, + "cast": [ + "William Shatner", + "Leonard Nimoy", + "Ricardo Montalbán" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Still of the Night", + "year": 1982, + "cast": [ + "Meryl Streep", + "Roy Scheider" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "Summer Lovers", + "year": 1982, + "cast": [ + "Peter Gallagher", + "Daryl Hannah" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Swamp Thing", + "year": 1982, + "cast": [ + "Adrienne Barbeau", + "Louis Jourdan" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Sword and the Sorcerer", + "year": 1982, + "cast": [ + "Lee Horsley", + "Kathleen Beller" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Tempest", + "year": 1982, + "cast": [ + "John Cassavetes", + "Gena Rowlands", + "Molly Ringwald" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "Tex", + "year": 1982, + "cast": [ + "Matt Dillon", + "Jim Metzler", + "Meg Tilly" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "That Championship Season", + "year": 1982, + "cast": [ + "Robert Mitchum", + "Martin Sheen", + "Paul Sorvino", + "Bruce Dern", + "Stacy Keach" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "They Call Me Bruce?", + "year": 1982, + "cast": [ + "Johnny Yune", + "Margaux Hemingway" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Thing", + "year": 1982, + "cast": [ + "Kurt Russell", + "Keith David", + "Wilford Brimley" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Things Are Tough All Over", + "year": 1982, + "cast": [ + "Cheech Marin", + "Tommy Chong" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Timerider: The Adventure of Lyle Swann", + "year": 1982, + "cast": [ + "Fred Ward", + "Belinda Bauer", + "Peter Coyote" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Time Walker", + "year": 1982, + "cast": [ + "James Karen" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Tootsie", + "year": 1982, + "cast": [ + "Dustin Hoffman", + "Jessica Lange", + "Teri Garr", + "Charles Durning", + "Bill Murray", + "Dabney Coleman", + "George Gaynes" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Toy", + "year": 1982, + "cast": [ + "Jackie Gleason", + "Richard Pryor", + "Scott Schwartz", + "Teresa Ganzel", + "Ned Beatty" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Tron", + "year": 1982, + "cast": [ + "Jeff Bridges", + "David Warner", + "Bruce Boxleitner", + "Cindy Morgan" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Verdict", + "year": 1982, + "cast": [ + "Paul Newman", + "Jack Warden", + "James Mason", + "Charlotte Rampling", + "Wesley Addy", + "Lindsay Crouse" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Vice Squad", + "year": 1982, + "cast": [ + "Season Hubley", + "Wings Hauser", + "Fred Berry" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Victor Victoria", + "year": 1982, + "cast": [ + "Julie Andrews", + "James Garner", + "Robert Preston", + "Lesley Ann Warren", + "Alex Karras", + "John Rhys-Davies" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Visiting Hours", + "year": 1982, + "cast": [ + "Michael Ironside", + "Lee Grant" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Weavers: Wasn't That a Time!", + "year": 1982, + "cast": [ + "The Weavers", + "Pete Seeger" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "White Dog", + "year": 1982, + "cast": [ + "Kristy McNichol", + "Paul Winfield", + "Jameson Parker" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The World According to Garp", + "year": 1982, + "cast": [ + "Robin Williams", + "Glenn Close", + "Mary Beth Hurt", + "John Lithgow" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Wrong Is Right", + "year": 1982, + "cast": [ + "Sean Connery", + "Katharine Ross" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Yes, Giorgio", + "year": 1982, + "cast": [ + "Luciano Pavarotti", + "Kathryn Harrold" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Young Doctors in Love", + "year": 1982, + "cast": [ + "Michael McKean", + "Sean Young" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Zapped!", + "year": 1982, + "cast": [ + "Scott Baio", + "Willie Aames" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "10 to Midnight", + "year": 1983, + "cast": [ + "Charles Bronson", + "Lisa Eilbacher", + "Andrew Stevens" + ], + "genres": [ + "Action" + ] + }, + { + "title": "All the Right Moves", + "year": 1983, + "cast": [ + "Tom Cruise", + "Craig T. Nelson", + "Lea Thompson", + "Chris Penn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Americana", + "year": 1983, + "cast": [ + "David Carradine", + "Barbara Hershey" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Amityville 3-D", + "year": 1983, + "cast": [ + "Tony Roberts", + "Tess Harper", + "Robert Joy" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Angelo My Love", + "year": 1983, + "cast": [], + "genres": [ + "Drama" + ] + }, + { + "title": "Anna to the Infinite Power", + "year": 1983, + "cast": [ + "Dina Merrill", + "Jack Gilford" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Baby It's You", + "year": 1983, + "cast": [ + "Rosanna Arquette", + "Vincent Spano", + "Joanna Merlin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Bad Boys", + "year": 1983, + "cast": [ + "Sean Penn", + "Esai Morales", + "Reni Santoni", + "Ally Sheedy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Better Late Than Never", + "year": 1983, + "cast": [ + "David Niven", + "Maggie Smith", + "Art Carney" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Big Chill", + "year": 1983, + "cast": [ + "Glenn Close", + "Tom Berenger", + "Kevin Kline", + "JoBeth Williams", + "Jeff Goldblum", + "William Hurt", + "Meg Tilly", + "Mary Kay Place" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Big Score", + "year": 1983, + "cast": [ + "Fred Williamson", + "Richard Roundtree", + "John Saxon" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Bill Cosby: Himself", + "year": 1983, + "cast": [ + "Bill Cosby" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Black Stallion Returns", + "year": 1983, + "cast": [ + "Kelly Reno", + "Vincent Spano", + "Teri Garr" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Blue Thunder", + "year": 1983, + "cast": [ + "Roy Scheider", + "Malcolm McDowell", + "Daniel Stern" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Born in Flames", + "year": 1983, + "cast": [ + "Jeanne Satterfield" + ], + "genres": [] + }, + { + "title": "Brainstorm", + "year": 1983, + "cast": [ + "Natalie Wood", + "Christopher Walken", + "Louise Fletcher" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Breathless", + "year": 1983, + "cast": [ + "Richard Gere", + "Valérie Kaprisky" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Can She Bake a Cherry Pie?", + "year": 1983, + "cast": [ + "Karen Black", + "Michael Emil" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Chicken Ranch", + "year": 1983, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "Christine", + "year": 1983, + "cast": [ + "Keith Gordon", + "John Stockwell", + "Alexandra Paul", + "Robert Prosky", + "Harry Dean Stanton" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "A Christmas Story", + "year": 1983, + "cast": [ + "Peter Billingsley", + "Darren McGavin", + "Melinda Dillon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Circle of Power", + "year": 1983, + "cast": [ + "Yvette Mimieux" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Class", + "year": 1983, + "cast": [ + "Jacqueline Bisset", + "Rob Lowe", + "Andrew McCarthy", + "Cliff Robertson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Copkiller", + "year": 1983, + "cast": [ + "Harvey Keitel", + "John Lydon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Cracking Up", + "year": 1983, + "cast": [ + "Jerry Lewis", + "Herb Edelman", + "Zane Buzby" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Cross Creek", + "year": 1983, + "cast": [ + "Mary Steenburgen", + "Peter Coyote", + "Rip Torn", + "Alfre Woodard", + "Dana Hill" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Cujo", + "year": 1983, + "cast": [ + "Dee Wallace", + "Danny Pintauro", + "Daniel Hugh Kelly", + "Christopher Stone" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "D.C. Cab", + "year": 1983, + "cast": [ + "Adam Baldwin", + "Mr. T", + "Gary Busey" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Daffy Duck's Fantastic Island", + "year": 1983, + "cast": [ + "Mel Blanc", + "June Foray" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Daniel", + "year": 1983, + "cast": [ + "Timothy Hutton", + "Mandy Patinkin", + "Lindsay Crouse" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Day After", + "year": 1983, + "cast": [ + "Jason Robards", + "Steve Guttenberg", + "JoBeth Williams", + "John Lithgow", + "John Cullum", + "Jeff East" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Dead Zone", + "year": 1983, + "cast": [ + "Christopher Walken", + "Martin Sheen", + "Herbert Lom", + "Brooke Adams", + "Tom Skerritt", + "Anthony Zerbe" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Deal of the Century", + "year": 1983, + "cast": [ + "Chevy Chase", + "Gregory Hines", + "Sigourney Weaver" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Doctor Detroit", + "year": 1983, + "cast": [ + "Dan Aykroyd", + "Fran Drescher", + "Donna Dixon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Easy Money", + "year": 1983, + "cast": [ + "Rodney Dangerfield", + "Joe Pesci", + "Jennifer Jason Leigh" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Eddie and the Cruisers", + "year": 1983, + "cast": [ + "Michael Paré", + "Tom Berenger", + "Ellen Barkin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Eddie Macon's Run", + "year": 1983, + "cast": [ + "Kirk Douglas", + "John Schneider", + "Lee Purcell" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "El Norte", + "year": 1983, + "cast": [ + "Zaide Silvia Gutiérrez", + "David Villalpando" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Eureka", + "year": 1983, + "cast": [ + "Gene Hackman", + "Theresa Russell", + "Rutger Hauer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Exposed", + "year": 1983, + "cast": [ + "Nastassja Kinski", + "Rudolf Nureyev", + "Harvey Keitel" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Ferestadeh", + "year": 1983, + "cast": [ + "Parviz Sayyad", + "Mary Apick" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Fire and Ice", + "year": 1983, + "cast": [ + "Randy Norton", + "Cynthia Leake", + "Steve Sandor" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Flashdance", + "year": 1983, + "cast": [ + "Jennifer Beals", + "Michael Nouri", + "Belinda Bauer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Get Crazy", + "year": 1983, + "cast": [ + "Malcolm McDowell", + "Allen Garfield", + "Lou Reed" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Going Berserk", + "year": 1983, + "cast": [ + "John Candy", + "Eugene Levy", + "Pat Hingle" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Gorky Park", + "year": 1983, + "cast": [ + "William Hurt", + "Lee Marvin", + "Brian Dennehy" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Heart Like a Wheel", + "year": 1983, + "cast": [ + "Bonnie Bedelia", + "Beau Bridges" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Hercules", + "year": 1983, + "cast": [ + "Lou Ferrigno", + "Sybil Danning" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "High Road to China", + "year": 1983, + "cast": [ + "Tom Selleck", + "Bess Armstrong", + "Wilford Brimley" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The House on Sorority Row", + "year": 1983, + "cast": [ + "Kathryn McNeil", + "Eileen Davidson" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Hunger", + "year": 1983, + "cast": [ + "Catherine Deneuve", + "Susan Sarandon", + "David Bowie" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Independence Day", + "year": 1983, + "cast": [ + "Kathleen Quinlan", + "David Keith", + "Dianne Wiest" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Jaws 3-D", + "year": 1983, + "cast": [ + "Bess Armstrong", + "Dennis Quaid", + "Louis Gossett, Jr." + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Keep", + "year": 1983, + "cast": [ + "Scott Glenn", + "Jürgen Prochnow", + "Ian McKellen" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The King of Comedy", + "year": 1983, + "cast": [ + "Robert De Niro", + "Jerry Lewis", + "Sandra Bernhard", + "Tony Randall" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Lianna", + "year": 1983, + "cast": [ + "Linda Griffiths", + "Jane Hallaren", + "Jon DeVries" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Liquid Sky", + "year": 1983, + "cast": [ + "Anne Carlisle", + "Paula E. Sheppard" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Lone Wolf McQuade", + "year": 1983, + "cast": [ + "Chuck Norris", + "David Carradine", + "Barbara Carrera" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Lonely Lady", + "year": 1983, + "cast": [ + "Pia Zadora", + "Lloyd Bochner", + "Joseph Cali", + "Bibi Besch", + "Anthony Holland", + "Ray Liotta" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Lords of Discipline", + "year": 1983, + "cast": [ + "David Keith", + "G. D. Spradlin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Losin' It", + "year": 1983, + "cast": [ + "Tom Cruise", + "Jackie Earle Haley", + "Shelley Long" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Lovesick", + "year": 1983, + "cast": [ + "Dudley Moore", + "Alec Guinness", + "Elizabeth McGovern" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Man Who Loved Women", + "year": 1983, + "cast": [ + "Burt Reynolds", + "Julie Andrews", + "Sela Ward", + "Marilu Henner" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Man with Two Brains", + "year": 1983, + "cast": [ + "Steve Martin", + "Kathleen Turner" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Man, Woman and Child", + "year": 1983, + "cast": [ + "Martin Sheen", + "Blythe Danner" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Max Dugan Returns", + "year": 1983, + "cast": [ + "Jason Robards", + "Marsha Mason", + "Donald Sutherland", + "Matthew Broderick" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Metalstorm: The Destruction of Jared-Syn", + "year": 1983, + "cast": [ + "Kelly Preston", + "Tim Thomerson" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Mickey's Christmas Carol", + "year": 1983, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "Mr. Mom", + "year": 1983, + "cast": [ + "Michael Keaton", + "Teri Garr", + "Martin Mull" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "My Brother's Wedding", + "year": 1983, + "cast": [], + "genres": [ + "Drama" + ] + }, + { + "title": "My Tutor", + "year": 1983, + "cast": [ + "Caren Kaye", + "Matt Lattanzi", + "Crispin Glover" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Nate and Hayes", + "year": 1983, + "cast": [ + "Tommy Lee Jones", + "Michael O'Keefe" + ], + "genres": [ + "Action" + ] + }, + { + "title": "National Lampoon's Vacation", + "year": 1983, + "cast": [ + "Chevy Chase", + "Beverly D'Angelo", + "Randy Quaid", + "John Candy", + "Anthony Michael Hall", + "Dana Barron" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Never Cry Wolf", + "year": 1983, + "cast": [ + "Brian Dennehy", + "Charles Martin Smith" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Night Warning", + "year": 1983, + "cast": [ + "Bo Svenson", + "Julia Duffy", + "Bill Paxton" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "A Night in Heaven", + "year": 1983, + "cast": [ + "Christopher Atkins", + "Lesley Ann Warren" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Nightmares", + "year": 1983, + "cast": [ + "Lance Henriksen", + "Emilio Estevez" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Of Unknown Origin", + "year": 1983, + "cast": [ + "Peter Weller", + "Jennifer Dale" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Osterman Weekend", + "year": 1983, + "cast": [ + "Rutger Hauer", + "Craig T. Nelson", + "John Hurt", + "Burt Lancaster", + "Dennis Hopper", + "Chris Sarandon", + "Meg Foster" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "The Outsiders", + "year": 1983, + "cast": [ + "C. Thomas Howell", + "Matt Dillon", + "Diane Lane", + "Patrick Swayze", + "Ralph Macchio", + "Rob Lowe", + "Tom Cruise" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Pirates of Penzance", + "year": 1983, + "cast": [ + "Kevin Kline", + "Linda Ronstadt", + "Angela Lansbury" + ], + "genres": [] + }, + { + "title": "Porky's II: The Next Day", + "year": 1983, + "cast": [ + "Mark Herrier", + "Kaki Hunter" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Princess Daisy", + "year": 1983, + "cast": [ + "Rupert Everett", + "Lindsay Wagner", + "Merete Van Kamp", + "Claudia Cardinale", + "Barbara Bach" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Private School", + "year": 1983, + "cast": [ + "Phoebe Cates", + "Betsy Russell", + "Matthew Modine" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Psycho II", + "year": 1983, + "cast": [ + "Anthony Perkins", + "Meg Tilly", + "Robert Loggia", + "Vera Miles" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Reuben, Reuben", + "year": 1983, + "cast": [ + "Tom Conti", + "Kelly McGillis" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Revenge of the Ninja", + "year": 1983, + "cast": [ + "Sho Kosugi", + "Arthur Roberts" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Richard Pryor: Here and Now", + "year": 1983, + "cast": [ + "Richard Pryor" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Right Stuff", + "year": 1983, + "cast": [ + "Ed Harris", + "Scott Glenn", + "Dennis Quaid", + "Fred Ward", + "Sam Shepard", + "Charles Frank", + "Lance Henriksen" + ], + "genres": [ + "Drama", + "Biography" + ] + }, + { + "title": "Risky Business", + "year": 1983, + "cast": [ + "Tom Cruise", + "Rebecca De Mornay" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Romantic Comedy", + "year": 1983, + "cast": [ + "Dudley Moore", + "Mary Steenburgen" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Rumble Fish", + "year": 1983, + "cast": [ + "Matt Dillon", + "Mickey Rourke", + "Diane Lane", + "Nicolas Cage" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Running Brave", + "year": 1983, + "cast": [ + "Robby Benson", + "Pat Hingle", + "Graham Greene" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Sahara", + "year": 1983, + "cast": [ + "Brooke Shields", + "Lambert Wilson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Scarface", + "year": 1983, + "cast": [ + "Al Pacino", + "Michelle Pfeiffer", + "Steven Bauer", + "Mary Elizabeth Mastrantonio", + "Robert Loggia" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Silkwood", + "year": 1983, + "cast": [ + "Meryl Streep", + "Kurt Russell", + "Cher", + "Craig T. Nelson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sleepaway Camp", + "year": 1983, + "cast": [ + "Felissa Rose", + "Jonathan Tiersten" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Smokey and the Bandit Part 3", + "year": 1983, + "cast": [ + "Jackie Gleason", + "Jerry Reed", + "Pat McCormick" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Something Wicked This Way Comes", + "year": 1983, + "cast": [ + "Jonathan Pryce", + "Jason Robards", + "Pam Grier" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Space Raiders", + "year": 1983, + "cast": [ + "Vince Edwards" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Spacehunter: Adventures in the Forbidden Zone", + "year": 1983, + "cast": [ + "Peter Strauss", + "Molly Ringwald", + "Ernie Hudson" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Spring Break", + "year": 1983, + "cast": [ + "Perry Lang", + "Corinne Wahl" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Star 80", + "year": 1983, + "cast": [ + "Eric Roberts", + "Mariel Hemingway", + "Cliff Robertson" + ], + "genres": [ + "Drama", + "Biography" + ] + }, + { + "title": "The Star Chamber", + "year": 1983, + "cast": [ + "Michael Douglas", + "Hal Holbrook", + "Yaphet Kotto" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Return of the Jedi", + "year": 1983, + "cast": [ + "Mark Hamill", + "Harrison Ford", + "Carrie Fisher", + "Billy Dee Williams" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Staying Alive", + "year": 1983, + "cast": [ + "John Travolta", + "Cynthia Rhodes", + "Finola Hughes" + ], + "genres": [ + "Musical", + "Drama" + ] + }, + { + "title": "Still Smokin", + "year": 1983, + "cast": [ + "Cheech Marin", + "Tommy Chong" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Sting II", + "year": 1983, + "cast": [ + "Jackie Gleason", + "Teri Garr", + "Karl Malden" + ], + "genres": [ + "Crime", + "Comedy" + ] + }, + { + "title": "Strange Brew", + "year": 1983, + "cast": [ + "Rick Moranis", + "Dave Thomas", + "Max von Sydow" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Strange Invaders", + "year": 1983, + "cast": [ + "Paul Le Mat", + "Diana Scarwid", + "Nancy Allen" + ], + "genres": [ + "Science Fiction", + "Comedy" + ] + }, + { + "title": "Streamers", + "year": 1983, + "cast": [ + "Matthew Modine", + "David Alan Grier", + "George Dzundza" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Stroker Ace", + "year": 1983, + "cast": [ + "Burt Reynolds", + "Jim Nabors", + "Ned Beatty", + "Loni Anderson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Sudden Impact", + "year": 1983, + "cast": [ + "Clint Eastwood", + "Sondra Locke", + "Pat Hingle" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Superman III", + "year": 1983, + "cast": [ + "Christopher Reeve", + "Richard Pryor", + "Robert Vaughn", + "Annette O'Toole" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Survivors", + "year": 1983, + "cast": [ + "Walter Matthau", + "Robin Williams", + "Jerry Reed" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Table for Five", + "year": 1983, + "cast": [ + "Jon Voight", + "Richard Crenna", + "Roxana Zal" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Tender Mercies", + "year": 1983, + "cast": [ + "Robert Duvall", + "Tess Harper", + "Betty Buckley", + "Ellen Barkin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Terms of Endearment", + "year": 1983, + "cast": [ + "Shirley MacLaine", + "Debra Winger", + "Jack Nicholson", + "Jeff Daniels", + "Danny DeVito", + "John Lithgow" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "Testament", + "year": 1983, + "cast": [ + "Jane Alexander", + "William Devane", + "Roxana Zal" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "To Be or Not to Be", + "year": 1983, + "cast": [ + "Mel Brooks", + "Anne Bancroft", + "José Ferrer", + "Tim Matheson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Tough Enough", + "year": 1983, + "cast": [ + "Dennis Quaid", + "Pam Grier", + "Stan Shaw", + "Warren Oates" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Trading Places", + "year": 1983, + "cast": [ + "Eddie Murphy", + "Dan Aykroyd", + "Jamie Lee Curtis", + "Don Ameche", + "Ralph Bellamy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Trenchcoat", + "year": 1983, + "cast": [ + "Robert Hays", + "Margot Kidder" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Twilight Zone: The Movie", + "year": 1983, + "cast": [ + "Vic Morrow", + "John Lithgow", + "Kathleen Quinlan", + "Scatman Crothers", + "Kevin McCarthy", + "Dan Aykroyd", + "Albert Brooks" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Twice Upon a Time", + "year": 1983, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "Two of a Kind", + "year": 1983, + "cast": [ + "John Travolta", + "Olivia Newton-John", + "Charles Durning" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Uncommon Valor", + "year": 1983, + "cast": [ + "Gene Hackman", + "Fred Ward", + "Tex Cobb", + "Patrick Swayze" + ], + "genres": [ + "Action", + "War" + ] + }, + { + "title": "Under Fire", + "year": 1983, + "cast": [ + "Nick Nolte", + "Gene Hackman", + "Joanna Cassidy", + "Ed Harris" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Valley Girl", + "year": 1983, + "cast": [ + "Nicolas Cage", + "Deborah Foreman" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Videodrome", + "year": 1983, + "cast": [ + "James Woods", + "Deborah Harry" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Vigilante", + "year": 1983, + "cast": [ + "Robert Forster", + "Fred Williamson", + "Rutanya Alda" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Walking the Edge", + "year": 1983, + "cast": [ + "Robert Forster", + "Nancy Kwan", + "Joe Spinell" + ], + "genres": [ + "Action" + ] + }, + { + "title": "WarGames", + "year": 1983, + "cast": [ + "Matthew Broderick", + "Dabney Coleman", + "Ally Sheedy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Warrior of the Lost World", + "year": 1983, + "cast": [ + "Donald Pleasence", + "Persis Khambatta", + "Fred Williamson" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Wavelength", + "year": 1983, + "cast": [ + "Robert Carradine", + "Keenan Wynn" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Winds of War", + "year": 1983, + "cast": [ + "Robert Mitchum", + "Ali MacGraw", + "John Houseman", + "Polly Bergen", + "Jan-Michael Vincent" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "Winnie the Pooh and a Day for Eeyore", + "year": 1983, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "Without a Trace", + "year": 1983, + "cast": [ + "Kate Nelligan", + "Judd Hirsch", + "David Dukes" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Yentl", + "year": 1983, + "cast": [ + "Barbra Streisand", + "Mandy Patinkin", + "Amy Irving" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Zelig", + "year": 1983, + "cast": [ + "Woody Allen", + "Mia Farrow" + ], + "genres": [ + "Satire" + ] + }, + { + "title": "2010", + "year": 1984, + "cast": [ + "Roy Scheider", + "Helen Mirren", + "John Lithgow", + "Bob Balaban", + "Dana Elcar" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Adventures of Buckaroo Banzai", + "year": 1984, + "cast": [ + "Peter Weller", + "Ellen Barkin", + "John Lithgow", + "Jeff Goldblum", + "Christopher Lloyd" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Against All Odds", + "year": 1984, + "cast": [ + "Jeff Bridges", + "Rachel Ward", + "James Woods", + "Richard Widmark", + "Dorian Harewood", + "Alex Karras", + "Jane Greer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "All of Me", + "year": 1984, + "cast": [ + "Steve Martin", + "Lily Tomlin", + "Dana Elcar" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Alley Cat", + "year": 1984, + "cast": [ + "Karin Mani", + "Robert Torti" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Amadeus", + "year": 1984, + "cast": [ + "Tom Hulce", + "F. Murray Abraham", + "Elizabeth Berridge", + "Jeffrey Jones" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "The Ambassador", + "year": 1984, + "cast": [ + "Robert Mitchum", + "Ellen Burstyn", + "Donald Pleasence", + "Rock Hudson" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "American Dreamer", + "year": 1984, + "cast": [ + "Tom Conti", + "JoBeth Williams", + "Giancarlo Giannini" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Angel", + "year": 1984, + "cast": [ + "Donna Wilkes", + "Dick Shawn", + "Susan Tyrrell" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Bachelor Party", + "year": 1984, + "cast": [ + "Tom Hanks", + "Tawny Kitaen", + "Adrian Zmed" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Bad Manners", + "year": 1984, + "cast": [ + "Martin Mull", + "Karen Black" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Beat Street", + "year": 1984, + "cast": [ + "Rae Dawn Chong", + "Guy Davis" + ], + "genres": [ + "Drama", + "Musical" + ] + }, + { + "title": "Before Stonewall", + "year": 1984, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "Best Defense", + "year": 1984, + "cast": [ + "Dudley Moore", + "Eddie Murphy", + "Kate Capshaw", + "George Dzundza" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Beverly Hills Cop", + "year": 1984, + "cast": [ + "Eddie Murphy", + "Judge Reinhold", + "John Ashton", + "Lisa Eilbacher", + "Bronson Pinchot", + "Ronny Cox" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Birdy", + "year": 1984, + "cast": [ + "Matthew Modine", + "Nicolas Cage" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Blame It on Rio", + "year": 1984, + "cast": [ + "Michael Caine", + "Joseph Bologna", + "Michelle Johnson", + "Demi Moore", + "Valerie Harper" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Blind Date", + "year": 1984, + "cast": [ + "Kirstie Alley", + "Joseph Bottoms", + "Keir Dullea" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Blood Simple", + "year": 1984, + "cast": [ + "John Getz", + "Frances McDormand", + "M. Emmet Walsh", + "Dan Hedaya", + "Samm-Art Williams" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "Body Double", + "year": 1984, + "cast": [ + "Craig Wasson", + "Melanie Griffith", + "Gregg Henry", + "Deborah Shelton" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "Body Rock", + "year": 1984, + "cast": [ + "Lorenzo Lamas", + "Ray Sharkey" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Bolero", + "year": 1984, + "cast": [ + "Bo Derek", + "George Kennedy", + "Olivia d'Abo", + "Andrea Occhipinti" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Bostonians", + "year": 1984, + "cast": [ + "Christopher Reeve", + "Vanessa Redgrave", + "Jessica Tandy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Bounty", + "year": 1984, + "cast": [ + "Mel Gibson", + "Anthony Hopkins", + "Daniel Day-Lewis", + "Laurence Olivier" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Breakin'", + "year": 1984, + "cast": [ + "Lucinda Dickey", + "Christopher McDonald", + "Ice-T" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Breakin' 2: Electric Boogaloo", + "year": 1984, + "cast": [ + "Lucinda Dickey", + "Adolfo Quinones", + "Ice-T" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Broadway Danny Rose", + "year": 1984, + "cast": [ + "Mia Farrow", + "Woody Allen", + "Nick Apollo Forte" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Brother from Another Planet", + "year": 1984, + "cast": [ + "Joe Morton", + "Steve James" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Buddy System", + "year": 1984, + "cast": [ + "Richard Dreyfuss", + "Susan Sarandon", + "Nancy Allen", + "Jean Stapleton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "C.H.U.D.", + "year": 1984, + "cast": [ + "John Heard", + "Daniel Stern" + ], + "genres": [ + "Horror", + "Science Fiction" + ] + }, + { + "title": "Cannonball Run II", + "year": 1984, + "cast": [ + "Burt Reynolds", + "Dom DeLuise", + "Dean Martin", + "Shirley MacLaine", + "Sammy Davis, Jr.", + "Marilu Henner", + "Jackie Chan", + "Telly Savalas", + "Frank Sinatra" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Children of the Corn", + "year": 1984, + "cast": [ + "Peter Horton", + "Linda Hamilton" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Choose Me", + "year": 1984, + "cast": [ + "Keith Carradine", + "Lesley Ann Warren", + "Geneviève Bujold", + "Rae Dawn Chong" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "City Heat", + "year": 1984, + "cast": [ + "Clint Eastwood", + "Burt Reynolds", + "Madeline Kahn", + "Richard Roundtree", + "Jane Alexander", + "Rip Torn" + ], + "genres": [ + "Crime", + "Comedy" + ] + }, + { + "title": "Cloak & Dagger", + "year": 1984, + "cast": [ + "Henry Thomas", + "Dabney Coleman" + ], + "genres": [ + "Adventure", + "Family" + ] + }, + { + "title": "The Company of Wolves", + "year": 1984, + "cast": [ + "Angela Lansbury", + "Stephen Rea" + ], + "genres": [ + "Fantasy", + "Horror" + ] + }, + { + "title": "Conan the Destroyer", + "year": 1984, + "cast": [ + "Arnold Schwarzenegger", + "Grace Jones", + "Wilt Chamberlain", + "Olivia d'Abo", + "Mako" + ], + "genres": [ + "Action", + "Fantasy" + ] + }, + { + "title": "The Cotton Club", + "year": 1984, + "cast": [ + "Richard Gere", + "Gregory Hines", + "Diane Lane", + "Lonette McKee", + "Bob Hoskins", + "James Remar", + "Nicolas Cage", + "Maurice Hines", + "Fred Gwynne", + "Gwen Verdon" + ], + "genres": [ + "Drama", + "Musical" + ] + }, + { + "title": "Country", + "year": 1984, + "cast": [ + "Jessica Lange", + "Sam Shepard", + "Wilford Brimley" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Crackers", + "year": 1984, + "cast": [ + "Donald Sutherland", + "Jack Warden", + "Sean Penn" + ], + "genres": [ + "Crime", + "Comedy" + ] + }, + { + "title": "Crimes of Passion", + "year": 1984, + "cast": [ + "Kathleen Turner", + "Anthony Perkins" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dreamscape", + "year": 1984, + "cast": [ + "Dennis Quaid", + "Christopher Plummer", + "Kate Capshaw", + "Max von Sydow", + "David Patrick Kelly" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Dune", + "year": 1984, + "cast": [ + "Kyle MacLachlan", + "Sting", + "Sean Young", + "Kenneth McMillan", + "Francesca Annis", + "José Ferrer", + "Patrick Stewart", + "Alicia Witt", + "Virginia Madsen" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Electric Dreams", + "year": 1984, + "cast": [ + "Lenny Von Dohlen", + "Virginia Madsen" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Evil That Men Do", + "year": 1984, + "cast": [ + "Charles Bronson", + "José Ferrer" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Falling in Love", + "year": 1984, + "cast": [ + "Robert De Niro", + "Meryl Streep", + "Harvey Keitel" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Fear City", + "year": 1984, + "cast": [ + "Tom Berenger", + "Billy Dee Williams", + "Melanie Griffith" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Finders Keepers", + "year": 1984, + "cast": [ + "Michael O'Keefe", + "Louis Gossett, Jr.", + "Beverly D'Angelo" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Firestarter", + "year": 1984, + "cast": [ + "Drew Barrymore", + "David Keith", + "George C. Scott", + "Martin Sheen", + "Heather Locklear", + "Louise Fletcher" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Firstborn", + "year": 1984, + "cast": [ + "Teri Garr", + "Peter Weller", + "Corey Haim" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Flamingo Kid", + "year": 1984, + "cast": [ + "Matt Dillon", + "Richard Crenna", + "Héctor Elizondo" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Flash of Green", + "year": 1984, + "cast": [ + "Ed Harris", + "Blair Brown" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Flashpoint", + "year": 1984, + "cast": [ + "Kris Kristofferson", + "Treat Williams" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Footloose", + "year": 1984, + "cast": [ + "Kevin Bacon", + "John Lithgow", + "Lori Singer", + "Dianne Wiest", + "Chris Penn" + ], + "genres": [ + "Drama", + "Musical" + ] + }, + { + "title": "Friday the 13th: The Final Chapter", + "year": 1984, + "cast": [ + "Corey Feldman", + "Crispin Glover", + "Kimberly Beck" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Gallavants", + "year": 1984, + "cast": [ + "Robert Lydiard", + "Vic Perrin", + "Peter Cullen" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Garbo Talks", + "year": 1984, + "cast": [ + "Anne Bancroft", + "Ron Silver", + "Carrie Fisher" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Ghostbusters", + "year": 1984, + "cast": [ + "Bill Murray", + "Dan Aykroyd", + "Sigourney Weaver", + "Harold Ramis", + "Rick Moranis", + "Ernie Hudson", + "Annie Potts" + ], + "genres": [ + "Science Fiction", + "Comedy" + ] + }, + { + "title": "Gimme an 'F'", + "year": 1984, + "cast": [ + "Stephen Shellen", + "Jennifer Cooke", + "Beth Miller" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Girls Nite Out", + "year": 1984, + "cast": [ + "Julia Montgomery", + "Rutanya Alda" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Grandview, U.S.A.", + "year": 1984, + "cast": [ + "Jamie Lee Curtis", + "Patrick Swayze", + "C. Thomas Howell", + "Jennifer Jason Leigh", + "Troy Donahue", + "Carole Cook" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Gremlins", + "year": 1984, + "cast": [ + "Zach Galligan", + "Phoebe Cates", + "Hoyt Axton" + ], + "genres": [ + "Comedy", + "Horror" + ] + }, + { + "title": "Hard to Hold", + "year": 1984, + "cast": [ + "Rick Springfield", + "Patti Hansen", + "Albert Salmi" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Harry & Son", + "year": 1984, + "cast": [ + "Paul Newman", + "Robby Benson", + "Ellen Barkin", + "Judith Ivey", + "Ossie Davis", + "Joanne Woodward" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Heartbreakers", + "year": 1984, + "cast": [ + "Peter Coyote", + "Nick Mancuso", + "Kathryn Harrold", + "Max Gail", + "Carol Wayne" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hot Dog... The Movie", + "year": 1984, + "cast": [ + "David Naughton", + "Shannon Tweed" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Hotel New Hampshire", + "year": 1984, + "cast": [ + "Jodie Foster", + "Beau Bridges", + "Rob Lowe", + "Nastassja Kinski", + "Anita Morris", + "Matthew Modine" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Ice Pirates", + "year": 1984, + "cast": [ + "Robert Urich", + "Mary Crosby", + "Anjelica Huston" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Iceman", + "year": 1984, + "cast": [ + "Timothy Hutton", + "John Lone", + "Lindsay Crouse" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Indiana Jones and the Temple of Doom", + "year": 1984, + "cast": [ + "Harrison Ford", + "Jonathan Ke Quan", + "Kate Capshaw" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Irreconcilable Differences", + "year": 1984, + "cast": [ + "Ryan O'Neal", + "Drew Barrymore", + "Shelley Long" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Jesse Owens Story", + "year": 1984, + "cast": [ + "Dorian Harewood", + "Dan Ammerman" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Johnny Dangerously", + "year": 1984, + "cast": [ + "Michael Keaton", + "Marilu Henner", + "Griffin Dunne", + "Joe Piscopo", + "Maureen Stapleton", + "Peter Boyle" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Just the Way You Are", + "year": 1984, + "cast": [ + "Kristy McNichol", + "Michael Ontkean" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Karate Kid", + "year": 1984, + "cast": [ + "Ralph Macchio", + "Pat Morita", + "Elisabeth Shue", + "William Zabka", + "Martin Kove" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Killpoint", + "year": 1984, + "cast": [ + "Richard Roundtree", + "Leo Fong", + "Cameron Mitchell" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Lace", + "year": 1984, + "cast": [ + "Phoebe Cates", + "Angela Lansbury", + "Brooke Adams", + "Bess Armstrong", + "Anthony Quayle", + "Herbert Lom" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Lassiter", + "year": 1984, + "cast": [ + "Tom Selleck", + "Jane Seymour", + "Lauren Hutton" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Last Starfighter", + "year": 1984, + "cast": [ + "Lance Guest", + "Robert Preston", + "Dan O'Herlihy", + "Catherine Mary Stewart" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Little Drummer Girl", + "year": 1984, + "cast": [ + "Diane Keaton", + "Klaus Kinski", + "Sami Frey" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Lonely Guy", + "year": 1984, + "cast": [ + "Steve Martin", + "Judith Ivey", + "Charles Grodin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Love Letters", + "year": 1984, + "cast": [ + "Jamie Lee Curtis", + "James Keach", + "Bonnie Bartlett" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Love Streams", + "year": 1984, + "cast": [ + "Gena Rowlands", + "John Cassavetes" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Making the Grade", + "year": 1984, + "cast": [ + "Judd Nelson", + "Gordon Jump" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Maria's Lovers", + "year": 1984, + "cast": [ + "Nastassja Kinski", + "John Savage", + "Robert Mitchum" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Mass Appeal", + "year": 1984, + "cast": [ + "Jack Lemmon", + "Željko Ivanek", + "Charles Durning" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Meatballs Part II", + "year": 1984, + "cast": [ + "Richard Mulligan", + "Kim Richards" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Micki and Maude", + "year": 1984, + "cast": [ + "Dudley Moore", + "Ann Reinking", + "Amy Irving" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mike's Murder", + "year": 1984, + "cast": [ + "Debra Winger", + "Mark Keyloun" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Missing in Action", + "year": 1984, + "cast": [ + "Chuck Norris", + "James Hong", + "M. Emmet Walsh" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Moscow on the Hudson", + "year": 1984, + "cast": [ + "Robin Williams", + "María Conchita Alonso" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mrs. Soffel", + "year": 1984, + "cast": [ + "Diane Keaton", + "Mel Gibson", + "Edward Herrmann", + "Matthew Modine" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Muppets Take Manhattan", + "year": 1984, + "cast": [ + "Jim Henson", + "Frank Oz", + "Dave Goelz" + ], + "genres": [ + "Family" + ] + }, + { + "title": "The Naked Face", + "year": 1984, + "cast": [ + "Roger Moore", + "Rod Steiger", + "Elliott Gould", + "Anne Archer", + "David Hedison", + "Art Carney" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "National Lampoon's Joy of Sex", + "year": 1984, + "cast": [ + "Cameron Dye", + "Colleen Camp", + "Ernie Hudson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Natural", + "year": 1984, + "cast": [ + "Robert Redford", + "Robert Duvall", + "Glenn Close", + "Kim Basinger", + "Wilford Brimley", + "Richard Farnsworth", + "Robert Prosky", + "Barbara Hershey", + "Darren McGavin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The NeverEnding Story", + "year": 1984, + "cast": [ + "Barret Oliver", + "Noah Hathaway", + "Gerald McRaney" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Night Patrol", + "year": 1984, + "cast": [ + "Linda Blair", + "Murray Langston", + "Pat Paulsen" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Night of the Comet", + "year": 1984, + "cast": [ + "Catherine Mary Stewart", + "Geoffrey Lewis" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "A Nightmare on Elm Street", + "year": 1984, + "cast": [ + "Robert Englund", + "Heather Langenkamp", + "John Saxon", + "Ronee Blakley", + "Amanda Wyss", + "Johnny Depp" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Ninja III: The Domination", + "year": 1984, + "cast": [ + "Sho Kosugi", + "Lucinda Dickey" + ], + "genres": [ + "Action" + ] + }, + { + "title": "No Small Affair", + "year": 1984, + "cast": [ + "Jon Cryer", + "Demi Moore", + "George Wendt" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Not for Publication", + "year": 1984, + "cast": [ + "Nancy Allen", + "David Naughton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Nothing Lasts Forever", + "year": 1984, + "cast": [ + "Zach Galligan", + "Lauren Tom", + "Bill Murray" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Old Enough", + "year": 1984, + "cast": [ + "Sarah Boyd", + "Rainbow Harvest", + "Danny Aiello" + ], + "genres": [ + "Teen" + ] + }, + { + "title": "Once Upon a Time in America", + "year": 1984, + "cast": [ + "Robert De Niro", + "James Woods", + "Tuesday Weld", + "Elizabeth McGovern", + "Joe Pesci", + "Jennifer Connelly", + "Treat Williams", + "William Forsythe", + "Danny Aiello" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Over the Brooklyn Bridge", + "year": 1984, + "cast": [ + "Elliott Gould", + "Shelley Winters", + "Margaux Hemingway", + "Burt Young", + "Carol Kane", + "Sid Caesar" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Oxford Blues", + "year": 1984, + "cast": [ + "Rob Lowe", + "Ally Sheedy", + "Julian Sands" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Paris, Texas", + "year": 1984, + "cast": [ + "Harry Dean Stanton", + "Nastassja Kinski", + "Dean Stockwell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Passage to India", + "year": 1984, + "cast": [ + "Judy Davis", + "Peggy Ashcroft", + "Alec Guinness" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Perils of Gwendoline in the Land of the Yik-Yak", + "year": 1984, + "cast": [ + "Tawny Kitaen", + "Brent Huff" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Philadelphia Experiment", + "year": 1984, + "cast": [ + "Michael Paré", + "Nancy Allen" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Places in the Heart", + "year": 1984, + "cast": [ + "Sally Field", + "John Malkovich", + "Danny Glover", + "Lindsay Crouse", + "Ed Harris", + "Amy Madigan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Police Academy", + "year": 1984, + "cast": [ + "Steve Guttenberg", + "Kim Cattrall", + "G. W. Bailey", + "Bubba Smith", + "George Gaynes", + "Leslie Easterbrook", + "David Graf", + "Michael Winslow", + "Donovan Scott" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Pope of Greenwich Village", + "year": 1984, + "cast": [ + "Mickey Rourke", + "Eric Roberts", + "Daryl Hannah", + "Kenneth McMillan", + "Geraldine Page", + "M. Emmet Walsh", + "Burt Young" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Protocol", + "year": 1984, + "cast": [ + "Goldie Hawn", + "Andre Gregory", + "Chris Sarandon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Purple Hearts", + "year": 1984, + "cast": [ + "Ken Wahl", + "Cheryl Ladd" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "Purple Rain", + "year": 1984, + "cast": [ + "Prince", + "Morris Day", + "Apollonia Kotero" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Racing with the Moon", + "year": 1984, + "cast": [ + "Sean Penn", + "Nicolas Cage", + "Elizabeth McGovern" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Razor's Edge", + "year": 1984, + "cast": [ + "Bill Murray", + "Theresa Russell", + "Catherine Hicks", + "Denholm Elliott", + "Brian Doyle-Murray", + "James Keach" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Reckless", + "year": 1984, + "cast": [ + "Aidan Quinn", + "Daryl Hannah", + "Cliff De Young" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Red Dawn", + "year": 1984, + "cast": [ + "Patrick Swayze", + "Lea Thompson", + "Charlie Sheen", + "C. Thomas Howell", + "Jennifer Grey", + "Harry Dean Stanton", + "Powers Boothe", + "Ben Johnson" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Repo Man", + "year": 1984, + "cast": [ + "Emilio Estevez", + "Harry Dean Stanton", + "Tracey Walter" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Revenge of the Nerds", + "year": 1984, + "cast": [ + "Anthony Edwards", + "Robert Carradine", + "Timothy Busfield", + "Curtis Armstrong" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Rhinestone", + "year": 1984, + "cast": [ + "Sylvester Stallone", + "Dolly Parton", + "Ron Leibman", + "Tim Thomerson", + "Richard Farnsworth" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "The River", + "year": 1984, + "cast": [ + "Mel Gibson", + "Sissy Spacek", + "Scott Glenn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Roadhouse 66", + "year": 1984, + "cast": [ + "Willem Dafoe", + "Judge Reinhold" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Romancing the Stone", + "year": 1984, + "cast": [ + "Michael Douglas", + "Kathleen Turner", + "Danny DeVito" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Rosebud Beach Hotel", + "year": 1984, + "cast": [ + "Colleen Camp", + "Peter Scolari", + "Christopher Lee" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Runaway", + "year": 1984, + "cast": [ + "Tom Selleck", + "Gene Simmons", + "Cynthia Rhodes" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Savage Streets", + "year": 1984, + "cast": [ + "Linda Blair", + "John Vernon" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Secret Honor", + "year": 1984, + "cast": [ + "Philip Baker Hall" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sheena", + "year": 1984, + "cast": [ + "Tanya Roberts", + "Ted Wass", + "Donovan Scott" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Silent Madness", + "year": 1984, + "cast": [ + "Belinda Montgomery", + "Viveca Lindfors" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Silent Night, Deadly Night", + "year": 1984, + "cast": [ + "Lilyan Chauvin", + "Robert Brian Wilson", + "Linnea Quigley" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Sixteen Candles", + "year": 1984, + "cast": [ + "Molly Ringwald", + "Anthony Michael Hall" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Slapstick of Another Kind", + "year": 1984, + "cast": [ + "Jerry Lewis", + "Madeline Kahn" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Soldier's Story", + "year": 1984, + "cast": [ + "Howard Rollins", + "Adolph Caesar", + "Denzel Washington" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Songwriter", + "year": 1984, + "cast": [ + "Willie Nelson", + "Kris Kristofferson", + "Melinda Dillon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Splash", + "year": 1984, + "cast": [ + "Daryl Hannah", + "Tom Hanks", + "John Candy", + "Eugene Levy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Star Trek III: The Search for Spock", + "year": 1984, + "cast": [ + "William Shatner", + "Leonard Nimoy", + "George Takei" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Starman", + "year": 1984, + "cast": [ + "Jeff Bridges", + "Karen Allen", + "Charles Martin Smith" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Stop Making Sense", + "year": 1984, + "cast": [ + "Talking Heads" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Stranger Than Paradise", + "year": 1984, + "cast": [ + "John Lurie", + "Eszter Balint", + "Richard Edson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Streets of Fire", + "year": 1984, + "cast": [ + "Michael Paré", + "Diane Lane", + "Rick Moranis", + "Amy Madigan", + "Willem Dafoe" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Suburbia", + "year": 1984, + "cast": [ + "Jennifer Clay", + "Flea", + "Christina Beck" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Supergirl", + "year": 1984, + "cast": [ + "Helen Slater", + "Peter O'Toole", + "Faye Dunaway" + ], + "genres": [ + "Superhero" + ] + }, + { + "title": "Surf II", + "year": 1984, + "cast": [ + "Eddie Deezen", + "Cleavon Little", + "Eric Stoltz" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Swing Shift", + "year": 1984, + "cast": [ + "Goldie Hawn", + "Kurt Russell", + "Christine Lahti", + "Ed Harris" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Tank", + "year": 1984, + "cast": [ + "James Garner", + "C. Thomas Howell", + "Shirley Jones" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Teachers", + "year": 1984, + "cast": [ + "Nick Nolte", + "JoBeth Williams", + "Judd Hirsch", + "Ralph Macchio", + "Lee Grant" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Terminator", + "year": 1984, + "cast": [ + "Arnold Schwarzenegger", + "Linda Hamilton", + "Michael Biehn", + "Lance Henriksen", + "Paul Winfield" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Terror in the Aisles", + "year": 1984, + "cast": [ + "Donald Pleasence", + "Nancy Allen" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Thief of Hearts", + "year": 1984, + "cast": [ + "Steven Bauer", + "Barbara Williams" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "This Is Spinal Tap", + "year": 1984, + "cast": [ + "Michael McKean", + "Christopher Guest", + "Harry Shearer" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Tightrope", + "year": 1984, + "cast": [ + "Clint Eastwood", + "Geneviève Bujold", + "Dan Hedaya" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Top Secret!", + "year": 1984, + "cast": [ + "Val Kilmer", + "Lucy Gutteridge", + "Omar Sharif" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Toxic Avenger", + "year": 1984, + "cast": [ + "Mitch Cohen" + ], + "genres": [ + "Comedy", + "Horror" + ] + }, + { + "title": "Under the Volcano", + "year": 1984, + "cast": [ + "Albert Finney", + "Jacqueline Bisset" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Unfaithfully Yours", + "year": 1984, + "cast": [ + "Dudley Moore", + "Nastassja Kinski", + "Armand Assante", + "Albert Brooks" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Until September", + "year": 1984, + "cast": [ + "Karen Allen", + "Thierry Lhermitte" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Up the Creek", + "year": 1984, + "cast": [ + "Tim Matheson", + "Jennifer Runyon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Warrior and the Sorceress", + "year": 1984, + "cast": [ + "David Carradine", + "Maria Socas" + ], + "genres": [ + "Action", + "Fantasy" + ] + }, + { + "title": "Where the Boys Are '84", + "year": 1984, + "cast": [ + "Lisa Hartman", + "Lorna Luft", + "Wendy Schaal", + "Lynn-Holly Johnson", + "Russell Todd", + "Alana Stewart" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Where the Toys Come From", + "year": 1984, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "The Wild Life", + "year": 1984, + "cast": [ + "Chris Penn", + "Eric Stoltz", + "Lea Thompson", + "Rick Moranis", + "Ilan Mitchell-Smith" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Woman in Red", + "year": 1984, + "cast": [ + "Gene Wilder", + "Gilda Radner", + "Joseph Bologna", + "Charles Grodin", + "Kelly Le Brock" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A.D.", + "year": 1985, + "cast": [], + "genres": [] + }, + { + "title": "The Adventures of Mark Twain", + "year": 1985, + "cast": [ + "James Whitmore" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "After Hours", + "year": 1985, + "cast": [ + "Griffin Dunne", + "Rosanna Arquette", + "Verna Bloom", + "Linda Fiorentino", + "Catherine O'Hara", + "Teri Garr", + "John Heard" + ], + "genres": [ + "Comedy", + "Thriller" + ] + }, + { + "title": "Agnes of God", + "year": 1985, + "cast": [ + "Jane Fonda", + "Anne Bancroft", + "Meg Tilly" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Alamo Bay", + "year": 1985, + "cast": [ + "Amy Madigan", + "Ed Harris", + "Ho Nguyen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Alice in Wonderland", + "year": 1985, + "cast": [ + "Natalie Gregory", + "Red Buttons", + "Roddy McDowall", + "Jayne Meadows", + "Scott Baio", + "Robert Morley", + "Anthony Newley", + "Imogene Coca", + "Telly Savalas", + "Ringo Starr", + "Shelley Winters" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "American Flyers", + "year": 1985, + "cast": [ + "Kevin Costner", + "David Marshall Grant", + "Rae Dawn Chong", + "Alexandra Paul", + "Janice Rule", + "John Amos" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "American Ninja", + "year": 1985, + "cast": [ + "Michael Dudikoff", + "Steve James", + "Judie Aronson" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Anna Karenina", + "year": 1985, + "cast": [ + "Jacqueline Bisset", + "Christopher Reeve", + "Paul Scofield", + "Ian Ogilvy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Appointment with Fear", + "year": 1985, + "cast": [ + "Michele Little", + "Douglas Rowe", + "Garrick Dowhen", + "Kerry Remsen" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Avenging Angel", + "year": 1985, + "cast": [ + "Betsy Russell", + "Ossie Davis", + "Rory Calhoun" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Aviator, The", + "year": 1985, + "cast": [ + "Rosanna Arquette", + "Christopher Reeve", + "Tyne Daly" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Baby: Secret of the Lost Legend", + "year": 1985, + "cast": [ + "William Katt", + "Sean Young", + "Patrick McGoohan", + "Julian Fellowes" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Back to the Future", + "year": 1985, + "cast": [ + "Michael J. Fox", + "Christopher Lloyd", + "Lea Thompson", + "Crispin Glover", + "Thomas F. Wilson" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Bad Medicine", + "year": 1985, + "cast": [ + "Steve Guttenberg", + "Alan Arkin", + "Julie Hagerty", + "Curtis Armstrong" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Bad Seed, The", + "year": 1985, + "cast": [ + "Blair Brown", + "Lynn Redgrave", + "David Carradine" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Barbarian Queen", + "year": 1985, + "cast": [ + "Lana Clarkson" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Beer", + "year": 1985, + "cast": [ + "Rip Torn", + "Loretta Swit", + "David Alan Grier" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Better Off Dead", + "year": 1985, + "cast": [ + "John Cusack", + "Diane Franklin", + "David Ogden Stiers", + "Kim Darby" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Black Arrow", + "year": 1985, + "cast": [ + "Oliver Reed", + "Fernando Rey", + "Donald Pleasence" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Black Cauldron, The", + "year": 1985, + "cast": [ + "Grant Bardsley", + "Susan Sheridan", + "Freddie Jones", + "Nigel Hawthorne" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Boys Next Door, The", + "year": 1985, + "cast": [ + "Charlie Sheen", + "Maxwell Caulfield", + "Patti D'Arbanville" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Brazil", + "year": 1985, + "cast": [ + "Jonathan Pryce", + "Kim Greist", + "Michael Palin", + "Robert De Niro", + "Katherine Helmond" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Breakfast Club", + "year": 1985, + "cast": [ + "Emilio Estevez", + "Anthony Michael Hall", + "Judd Nelson", + "Molly Ringwald", + "Ally Sheedy", + "Paul Gleason", + "John Kapelos" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Brewster's Millions", + "year": 1985, + "cast": [ + "Richard Pryor", + "John Candy", + "Lonette McKee" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Bride", + "year": 1985, + "cast": [ + "Sting", + "Jennifer Beals", + "Anthony Higgins", + "Clancy Brown" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Bridge to Terabithia", + "year": 1985, + "cast": [ + "Julian Coutts", + "Julie Beaulieu", + "Annette O'Toole", + "Tom Heaton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Bring on the Night", + "year": 1985, + "cast": [ + "Sting", + "Branford Marsalis" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Cat's Eye", + "year": 1985, + "cast": [ + "Drew Barrymore", + "James Woods", + "Robert Hays", + "Alan King" + ], + "genres": [ + "Horror", + "Comedy" + ] + }, + { + "title": "Certain Fury", + "year": 1985, + "cast": [ + "Tatum O'Neal", + "Irene Cara", + "Peter Fonda" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Chorus Line, A", + "year": 1985, + "cast": [ + "Michael Douglas", + "Audrey Landers", + "Janet Jones" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Clue", + "year": 1985, + "cast": [ + "Tim Curry", + "Madeline Kahn", + "Lesley Ann Warren", + "Martin Mull", + "Eileen Brennan", + "Christopher Lloyd", + "Michael McKean", + "Colleen Camp" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Coca-Cola Kid", + "year": 1985, + "cast": [ + "Eric Roberts", + "Greta Scacchi" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Cocoon", + "year": 1985, + "cast": [ + "Don Ameche", + "Wilford Brimley", + "Hume Cronyn", + "Jessica Tandy", + "Maureen Stapleton", + "Steve Guttenberg", + "Brian Dennehy" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Code of Silence", + "year": 1985, + "cast": [ + "Chuck Norris", + "Molly Hagan", + "Henry Silva", + "Mike Genovese" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Color Purple, The", + "year": 1985, + "cast": [ + "Whoopi Goldberg", + "Danny Glover", + "Oprah Winfrey", + "Margaret Avery", + "Laurence Fishburne", + "Adolph Caesar", + "Rae Dawn Chong" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Commando", + "year": 1985, + "cast": [ + "Arnold Schwarzenegger", + "Rae Dawn Chong", + "Dan Hedaya", + "Vernon Wells", + "Bill Duke", + "David Patrick Kelly" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Compromising Positions", + "year": 1985, + "cast": [ + "Susan Sarandon", + "Raúl Juliá", + "Mary Beth Hurt", + "Joe Mantegna" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Creator", + "year": 1985, + "cast": [ + "Peter O'Toole", + "Mariel Hemingway", + "Vincent Spano", + "Virginia Madsen" + ], + "genres": [ + "Science Fiction", + "Comedy" + ] + }, + { + "title": "Creature", + "year": 1985, + "cast": [ + "Stan Iver", + "Diane Salinger", + "Klaus Kinski" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Crimewave", + "year": 1985, + "cast": [ + "Louise Lasser", + "Bruce Campbell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "D.A.R.Y.L.", + "year": 1985, + "cast": [ + "Barret Oliver", + "Michael McKean", + "Mary Beth Hurt", + "Colleen Camp" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Day of the Dead", + "year": 1985, + "cast": [ + "Lori Cardille", + "Sherman Howard" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Death Wish 3", + "year": 1985, + "cast": [ + "Charles Bronson", + "Martin Balsam" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Def-Con 4", + "year": 1985, + "cast": [ + "Lenore Zann", + "Maury Chaykin", + "Kate Lynch" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Desert Hearts", + "year": 1985, + "cast": [ + "Helen Shaver", + "Audra Lindley", + "Patricia Charbonneau" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Desperately Seeking Susan", + "year": 1985, + "cast": [ + "Rosanna Arquette", + "Aidan Quinn", + "Madonna" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Dim Sum: A Little Bit of Heart", + "year": 1985, + "cast": [ + "Laureen Chew", + "Kim Chew", + "Victor Wong" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Dungeonmaster, The", + "year": 1985, + "cast": [ + "Jeffrey Byron", + "Richard Moll" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Eleni", + "year": 1985, + "cast": [ + "Kate Nelligan", + "John Malkovich", + "Linda Hunt" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Emerald Forest, The", + "year": 1985, + "cast": [ + "Powers Boothe", + "Charley Boorman", + "Meg Foster" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Enemy Mine", + "year": 1985, + "cast": [ + "Dennis Quaid", + "Louis Gossett, Jr." + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Ewoks: The Battle for Endor", + "year": 1985, + "cast": [ + "Wilford Brimley", + "Warwick Davis", + "Aubree Miller" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Explorers", + "year": 1985, + "cast": [ + "River Phoenix", + "Ethan Hawke", + "Jason Presson" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Falcon and the Snowman, The", + "year": 1985, + "cast": [ + "Timothy Hutton", + "Sean Penn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Fandango", + "year": 1985, + "cast": [ + "Kevin Costner", + "Judd Nelson", + "Sam Robards", + "Suzy Amis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Fast Forward", + "year": 1985, + "cast": [ + "Tamara Mark", + "Monique Cintron" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Fever Pitch", + "year": 1985, + "cast": [ + "Ryan O'Neal", + "Giancarlo Giannini", + "Catherine Hicks", + "Chad Everett" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Final Justice", + "year": 1985, + "cast": [ + "Joe Don Baker", + "Rossano Brazzi", + "Venantino Venantini" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Flesh and Blood", + "year": 1985, + "cast": [ + "Rutger Hauer", + "Jennifer Jason Leigh", + "Ronald Lacey" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Flesh and Bullets", + "year": 1985, + "cast": [ + "Glenn McKay", + "Susan Silvers", + "Cornel Wilde" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Fletch", + "year": 1985, + "cast": [ + "Chevy Chase", + "Joe Don Baker", + "Dana Wheeler-Nicholson", + "Geena Davis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Fool for Love", + "year": 1985, + "cast": [ + "Sam Shepard", + "Kim Basinger", + "Randy Quaid" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Fraternity Vacation", + "year": 1985, + "cast": [ + "Sheree J. Wilson", + "Tim Robbins", + "John Vernon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Friday the 13th: A New Beginning", + "year": 1985, + "cast": [ + "Suzanne Bateman", + "Corey Feldman" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Fright Night", + "year": 1985, + "cast": [ + "Chris Sarandon", + "Roddy McDowall", + "William Ragsdale", + "Amanda Bearse" + ], + "genres": [ + "Comedy", + "Horror" + ] + }, + { + "title": "Ghoulies", + "year": 1985, + "cast": [ + "Mariska Hargitay", + "Peter Liapis" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Girls Just Want to Have Fun", + "year": 1985, + "cast": [ + "Sarah Jessica Parker", + "Helen Hunt" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Goodbye, New York", + "year": 1985, + "cast": [ + "Julie Hagerty", + "Amos Kollek" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Goonies, The", + "year": 1985, + "cast": [ + "Sean Astin", + "Josh Brolin", + "Jeff Cohen", + "Corey Feldman", + "Kerri Green", + "Martha Plimpton", + "Jonathan Ke Quan", + "Anne Ramsey", + "Robert Davi", + "Joe Pantoliano" + ], + "genres": [ + "Adventure", + "Family" + ] + }, + { + "title": "Gotcha!", + "year": 1985, + "cast": [ + "Anthony Edwards", + "Linda Fiorentino" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Gymkata", + "year": 1985, + "cast": [ + "Kurt Thomas", + "Tetchie Agbayani", + "Richard Norton" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Head Office", + "year": 1985, + "cast": [ + "Judge Reinhold", + "Eddie Albert", + "Danny DeVito" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Heaven Help Us", + "year": 1985, + "cast": [ + "Kevin Dillon", + "Andrew McCarthy", + "Mary Stuart Masterson", + "Donald Sutherland", + "John Heard", + "Patrick Dempsey" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Here Come the Littles", + "year": 1985, + "cast": [ + "Gregg Berger", + "Bettina Bush", + "Pat Fraley" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Hills Have Eyes Part II, The", + "year": 1985, + "cast": [ + "Michael Berryman", + "Janus Blythe" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Holcroft Covenant", + "year": 1985, + "cast": [ + "Michael Caine", + "Victoria Tennant" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "Howling II", + "year": 1985, + "cast": [ + "Christopher Lee", + "Sybil Danning" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Insignificance", + "year": 1985, + "cast": [ + "Theresa Russell", + "Tony Curtis", + "Gary Busey" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "Into the Night", + "year": 1985, + "cast": [ + "Jeff Goldblum", + "Michelle Pfeiffer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Invasion U.S.A.", + "year": 1985, + "cast": [ + "Chuck Norris", + "Richard Lynch" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Jagged Edge", + "year": 1985, + "cast": [ + "Jeff Bridges", + "Glenn Close", + "Robert Loggia" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Jewel of the Nile, The", + "year": 1985, + "cast": [ + "Kathleen Turner", + "Michael Douglas", + "Danny DeVito" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Journey of Natty Gann", + "year": 1985, + "cast": [ + "Meredith Salenger", + "John Cusack", + "Ray Wise" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Just One of the Guys", + "year": 1985, + "cast": [ + "Joyce Hyser", + "Sherilyn Fenn" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "King David", + "year": 1985, + "cast": [ + "Richard Gere", + "Edward Woodward", + "Alice Krige" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "King Solomon's Mines", + "year": 1985, + "cast": [ + "Richard Chamberlain", + "Sharon Stone", + "Herbert Lom" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Kiss of the Spider Woman", + "year": 1985, + "cast": [ + "William Hurt", + "Raúl Juliá", + "Sônia Braga" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Krush Groove", + "year": 1985, + "cast": [ + "Run D.M.C.", + "Sheila E.", + "Blair Underwood" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Ladyhawke", + "year": 1985, + "cast": [ + "Matthew Broderick", + "Michelle Pfeiffer", + "Rutger Hauer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Last Dragon, The", + "year": 1985, + "cast": [ + "Taimak", + "Julius Carry", + "Christopher Murney" + ], + "genres": [ + "Martial Arts" + ] + }, + { + "title": "Latino", + "year": 1985, + "cast": [ + "Robert Beltran", + "Annette Charles" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Legend", + "year": 1985, + "cast": [ + "Tom Cruise", + "Mia Sara", + "Tim Curry" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "The Legend of Billie Jean", + "year": 1985, + "cast": [ + "Helen Slater", + "Christian Slater", + "Keith Gordon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Lifeforce", + "year": 1985, + "cast": [ + "Steve Railsback", + "Mathilda May" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Lost in America", + "year": 1985, + "cast": [ + "Albert Brooks", + "Julie Hagerty" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Lust in the Dust", + "year": 1985, + "cast": [ + "Divine", + "Lainie Kazan", + "Tab Hunter" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mad Max Beyond Thunderdome", + "year": 1985, + "cast": [ + "Mel Gibson", + "Tina Turner" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Malibu Express", + "year": 1985, + "cast": [ + "Darby Hinton", + "Sybil Danning" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Man with One Red Shoe", + "year": 1985, + "cast": [ + "Tom Hanks", + "Dabney Coleman", + "Lori Singer" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Marie", + "year": 1985, + "cast": [ + "Sissy Spacek", + "Jeff Daniels", + "Keith Szarabajka", + "Morgan Freeman" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Mask", + "year": 1985, + "cast": [ + "Cher", + "Eric Stoltz", + "Sam Elliott", + "Laura Dern" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Mask of Murder", + "year": 1985, + "cast": [ + "Rod Taylor", + "Valerie Perrine", + "Christopher Lee" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Maxie", + "year": 1985, + "cast": [ + "Glenn Close", + "Mandy Patinkin", + "Ruth Gordon", + "Barnard Hughes", + "Valerie Curtin" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "The Mean Season", + "year": 1985, + "cast": [ + "Kurt Russell", + "Mariel Hemingway", + "Richard Jordan" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Mischief", + "year": 1985, + "cast": [ + "Doug McKeon", + "Catherine Mary Stewart" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mishima: A Life in Four Chapters", + "year": 1985, + "cast": [ + "Ken Ogata", + "Masayuki Shionoya" + ], + "genres": [] + }, + { + "title": "Missing in Action 2: The Beginning", + "year": 1985, + "cast": [ + "Chuck Norris", + "Soon-Tek Oh", + "Steven Williams" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Movers & Shakers", + "year": 1985, + "cast": [ + "Walter Matthau", + "Charles Grodin", + "Tyne Daly" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Moving Violations", + "year": 1985, + "cast": [ + "John Murray", + "Jennifer Tilly", + "Brian Backer" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mugsy's Girls", + "year": 1985, + "cast": [ + "Laura Branigan", + "Ruth Gordon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Murphy's Romance", + "year": 1985, + "cast": [ + "Sally Field", + "James Garner", + "Brian Kerwin" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "My Science Project", + "year": 1985, + "cast": [ + "John Stockwell", + "Danielle von Zerneck", + "Dennis Hopper", + "Fisher Stevens" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "National Lampoon's European Vacation", + "year": 1985, + "cast": [ + "Chevy Chase", + "Beverly D'Angelo", + "Jason Lively", + "Dana Hill", + "Eric Idle" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Nightmare on Elm Street 2: Freddy's Revenge", + "year": 1985, + "cast": [ + "Mark Patton", + "Kim Myers", + "Robert Englund", + "Robert Rusler" + ], + "genres": [ + "Slasher" + ] + }, + { + "title": "Noon Wine", + "year": 1985, + "cast": [ + "Stellan Skarsgård", + "Fred Ward", + "Jon Cryer", + "Lise Hilboldt" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Once Bitten", + "year": 1985, + "cast": [ + "Lauren Hutton", + "Jim Carrey", + "Cleavon Little" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "One Magic Christmas", + "year": 1985, + "cast": [ + "Mary Steenburgen", + "Harry Dean Stanton" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Ordeal by Innocence", + "year": 1985, + "cast": [ + "Donald Sutherland", + "Faye Dunaway" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Out of Africa", + "year": 1985, + "cast": [ + "Meryl Streep", + "Robert Redford", + "Klaus Maria Brandauer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Pale Rider", + "year": 1985, + "cast": [ + "Clint Eastwood", + "Michael Moriarty", + "Carrie Snodgress", + "Richard Dysart", + "Chris Penn" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Pee-wee's Big Adventure", + "year": 1985, + "cast": [ + "Paul Reubens", + "Elizabeth Daily", + "Mark Holton", + "Jan Hooks", + "Morgan Fairchild", + "James Brolin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Perfect", + "year": 1985, + "cast": [ + "John Travolta", + "Jamie Lee Curtis", + "Jann Wenner", + "Marilu Henner", + "Laraine Newman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Plenty", + "year": 1985, + "cast": [ + "Meryl Streep", + "Charles Dance", + "Sting", + "Ian McKellen", + "Tracey Ullman", + "John Gielgud", + "Sam Neill" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Police Academy 2: Their First Assignment", + "year": 1985, + "cast": [ + "Steven Guttenberg", + "Bubba Smith", + "David Graf", + "Bobcat Goldthwait" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Porky's Revenge", + "year": 1985, + "cast": [ + "Dan Monahan", + "Tony Ganios", + "Wyatt Knight" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Private Resort", + "year": 1985, + "cast": [ + "Rob Morrow", + "Johnny Depp", + "Andrew Clay" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Prizzi's Honor", + "year": 1985, + "cast": [ + "Jack Nicholson", + "Kathleen Turner", + "Robert Loggia", + "Anjelica Huston", + "William Hickey", + "John Randolph", + "Lee Richardson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Protector, The", + "year": 1985, + "cast": [ + "Jackie Chan", + "Danny Aiello" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Pumping Iron II: The Women", + "year": 1985, + "cast": [ + "Bev Francis", + "Rachel McLish" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Purple Rose of Cairo, The", + "year": 1985, + "cast": [ + "Mia Farrow", + "Jeff Daniels", + "Danny Aiello", + "John Wood", + "Deborah Rush", + "Van Johnson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Radioactive Dreams", + "year": 1985, + "cast": [ + "Michael Dudikoff", + "George Kennedy" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Rainbow Brite and the Star Stealer", + "year": 1985, + "cast": [ + "Bettina Bush", + "Charlie Adler" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Rambo: First Blood Part II", + "year": 1985, + "cast": [ + "Sylvester Stallone", + "Julia Nickson-Soul", + "Charles Napier", + "Richard Crenna" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Rappin'", + "year": 1985, + "cast": [ + "Mario Van Peebles", + "Eriq La Salle" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Re-Animator", + "year": 1985, + "cast": [ + "Jeffrey Combs", + "David Gale" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Real Genius", + "year": 1985, + "cast": [ + "Val Kilmer", + "Gabe Jarret", + "William Atherton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Red Sonja", + "year": 1985, + "cast": [ + "Arnold Schwarzenegger", + "Brigitte Nielsen", + "Sandahl Bergman" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Remo Williams: The Adventure Begins", + "year": 1985, + "cast": [ + "Fred Ward", + "Joel Grey", + "Kate Mulgrew" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Return of the Living Dead, The", + "year": 1985, + "cast": [ + "James Karen" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Return to Oz", + "year": 1985, + "cast": [ + "Fairuza Balk", + "Nicol Williamson", + "Jean Marsh" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Revolution", + "year": 1985, + "cast": [ + "Al Pacino", + "Nastassja Kinski", + "Donald Sutherland" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Rocky IV", + "year": 1985, + "cast": [ + "Sylvester Stallone", + "Dolph Lundgren", + "Talia Shire", + "Burt Young", + "Carl Weathers", + "Brigitte Nielsen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Runaway Train", + "year": 1985, + "cast": [ + "Jon Voight", + "Eric Roberts", + "Rebecca De Mornay" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Rustlers' Rhapsody", + "year": 1985, + "cast": [ + "Tom Berenger", + "Marilu Henner", + "Sela Ward", + "Patrick Wayne", + "Andy Griffith" + ], + "genres": [ + "Satire" + ] + }, + { + "title": "Santa Claus: The Movie", + "year": 1985, + "cast": [ + "Dudley Moore", + "John Lithgow", + "David Huddleston" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Secret Admirer", + "year": 1985, + "cast": [ + "C. Thomas Howell", + "Lori Loughlin", + "Kelly Preston" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Secret of the Sword", + "year": 1985, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "Sesame Street Presents Follow That Bird", + "year": 1985, + "cast": [ + "Jim Henson", + "Frank Oz", + "Sandra Bernhard" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Seven Minutes in Heaven", + "year": 1985, + "cast": [ + "Jennifer Connelly", + "Polly Draper", + "Spalding Gray" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Shooting Party", + "year": 1985, + "cast": [ + "James Mason", + "John Gielgud" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Silver Bullet", + "year": 1985, + "cast": [ + "Gary Busey", + "Corey Haim", + "Everett McGill", + "Megan Follows" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Silverado", + "year": 1985, + "cast": [ + "Scott Glenn", + "Kevin Kline", + "Kevin Costner", + "John Cleese", + "Danny Glover", + "Jeff Goldblum", + "Brian Dennehy", + "Rosanna Arquette", + "Linda Hunt" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Slugger's Wife", + "year": 1985, + "cast": [ + "Michael O'Keefe", + "Rebecca De Mornay" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Smooth Talk", + "year": 1985, + "cast": [ + "Laura Dern", + "Treat Williams", + "Levon Helm" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Spies Like Us", + "year": 1985, + "cast": [ + "Chevy Chase", + "Dan Aykroyd", + "Bernie Casey" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "St. Elmo's Fire", + "year": 1985, + "cast": [ + "Rob Lowe", + "Emilio Estevez", + "Demi Moore", + "Judd Nelson", + "Ally Sheedy", + "Andrew McCarthy", + "Mare Winningham", + "Andie MacDowell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Starchaser: The Legend of Orin", + "year": 1985, + "cast": [ + "Joe Colligan", + "Carmen Argenziano" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Stick", + "year": 1985, + "cast": [ + "Burt Reynolds", + "Candice Bergen", + "Charles Durning", + "George Segal" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Stitches", + "year": 1985, + "cast": [ + "Eddie Albert", + "Parker Stevenson", + "Jerry Feuer" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Stuff", + "year": 1985, + "cast": [ + "Michael Moriarty", + "Andrea Marcovicci", + "Garrett Morris" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Summer Rental", + "year": 1985, + "cast": [ + "John Candy", + "Richard Crenna", + "Rip Torn" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Sure Thing", + "year": 1985, + "cast": [ + "John Cusack", + "Daphne Zuniga", + "Nicollette Sheridan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Sweet Dreams", + "year": 1985, + "cast": [ + "Jessica Lange", + "Ed Harris", + "John Goodman" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Sylvester", + "year": 1985, + "cast": [ + "Melissa Gilbert", + "Richard Farnsworth" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Target", + "year": 1985, + "cast": [ + "Gene Hackman", + "Matt Dillon", + "Gayle Hunnicutt" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Teen Wolf", + "year": 1985, + "cast": [ + "Michael J. Fox", + "Susan Ursitti", + "Jay Tarses" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "That Was Then... This Is Now", + "year": 1985, + "cast": [ + "Emilio Estevez", + "Morgan Freeman", + "Craig Sheffer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "That's Dancing!", + "year": 1985, + "cast": [ + "Gene Kelly", + "Mikhail Baryshnikov", + "Ray Bolger", + "Sammy Davis Jr.", + "Liza Minnelli" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "To Live and Die in L.A.", + "year": 1985, + "cast": [ + "William Petersen", + "Willem Dafoe", + "John Turturro", + "John Pankow", + "Darlanne Fleugel", + "Dean Stockwell" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Tomboy", + "year": 1985, + "cast": [ + "Betsy Russell", + "Kristi Somers" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Trancers", + "year": 1985, + "cast": [ + "Tim Thomerson", + "Helen Hunt" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Transylvania 6-5000", + "year": 1985, + "cast": [ + "Jeff Goldblum", + "Geena Davis", + "Ed Begley Jr.", + "Carol Kane", + "Teresa Ganzel" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Trip to Bountiful", + "year": 1985, + "cast": [ + "Geraldine Page", + "John Heard", + "Rebecca De Mornay" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Trouble in Mind", + "year": 1985, + "cast": [ + "Kris Kristofferson", + "Keith Carradine", + "Lori Singer", + "Genevieve Bujold", + "George Kirby" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Tuff Turf", + "year": 1985, + "cast": [ + "James Spader", + "Robert Downey Jr.", + "Kim Richards" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Turk 182", + "year": 1985, + "cast": [ + "Timothy Hutton", + "Robert Urich", + "Kim Cattrall", + "Robert Culp", + "Peter Boyle", + "Darren McGavin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Turtle Diary", + "year": 1985, + "cast": [ + "Glenda Jackson", + "Ben Kingsley" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Twice in a Lifetime", + "year": 1985, + "cast": [ + "Gene Hackman", + "Ann-Margret", + "Ellen Burstyn", + "Amy Madigan", + "Ally Sheedy", + "Brian Dennehy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A View to a Kill", + "year": 1985, + "cast": [ + "Roger Moore", + "Christopher Walken", + "Grace Jones", + "Tanya Roberts" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Vision Quest", + "year": 1985, + "cast": [ + "Matthew Modine", + "Linda Fiorentino" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Volunteers", + "year": 1985, + "cast": [ + "Tom Hanks", + "John Candy", + "Rita Wilson", + "Tim Thomerson", + "George Plimpton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Weird Science", + "year": 1985, + "cast": [ + "Anthony Michael Hall", + "Ilan Mitchell-Smith", + "Kelly LeBrock", + "Bill Paxton", + "Robert Downey Jr." + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "White Nights", + "year": 1985, + "cast": [ + "Mikhail Baryshnikov", + "Gregory Hines", + "Helen Mirren", + "Isabella Rossellini", + "Geraldine Page" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Witness", + "year": 1985, + "cast": [ + "Harrison Ford", + "Kelly McGillis", + "Lukas Haas" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Year of the Dragon", + "year": 1985, + "cast": [ + "Mickey Rourke", + "Ariane", + "John Lone" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Young Sherlock Holmes", + "year": 1985, + "cast": [ + "Nicholas Rowe", + "Alan Cox" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "3:15", + "year": 1986, + "cast": [ + "Adam Baldwin", + "Jesse Aragon", + "René Auberjonois" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "8 Million Ways to Die", + "year": 1986, + "cast": [ + "Jeff Bridges", + "Rosanna Arquette", + "Andy García" + ], + "genres": [ + "Thriller", + "Crime" + ] + }, + { + "title": "9½ Weeks", + "year": 1986, + "cast": [ + "Mickey Rourke", + "Kim Basinger" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "52 Pick-Up", + "year": 1986, + "cast": [ + "Roy Scheider", + "Ann-Margret", + "John Glover" + ], + "genres": [ + "Thriller", + "Crime" + ] + }, + { + "title": "About Last Night...", + "year": 1986, + "cast": [ + "Rob Lowe", + "Demi Moore", + "James Belushi", + "Elizabeth Perkins" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "The Adventures of the American Rabbit", + "year": 1986, + "cast": [ + "Barry Gordon" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Aliens", + "year": 1986, + "cast": [ + "Sigourney Weaver", + "Michael Biehn", + "Lance Henriksen", + "Carrie Henn", + "Bill Paxton", + "Paul Reiser", + "Jenette Goldstein" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Amazons", + "year": 1986, + "cast": [ + "Penelope Reed", + "Joseph Whipp" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "American Anthem", + "year": 1986, + "cast": [ + "Mitchell Gaylord", + "Janet Jones" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "April Fool's Day", + "year": 1986, + "cast": [ + "Deborah Foreman", + "Jay Baker" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Armed and Dangerous", + "year": 1986, + "cast": [ + "John Candy", + "Eugene Levy", + "Meg Ryan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Armed Response", + "year": 1986, + "cast": [ + "David Carradine", + "Lee Van Cleef", + "Mako" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Artie Shaw: Time Is All You've Got", + "year": 1986, + "cast": [ + "Archive footage of", + "Artie Shaw", + "Billie Holiday" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "As Is", + "year": 1986, + "cast": [ + "Colleen Dewhurst", + "Robert Carradine" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "At Close Range", + "year": 1986, + "cast": [ + "Christopher Walken", + "Sean Penn", + "Chris Penn", + "Mary Stuart Masterson" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Avenging Force", + "year": 1986, + "cast": [ + "Michael Dudikoff", + "Steve James" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Back to School", + "year": 1986, + "cast": [ + "Rodney Dangerfield", + "Sally Kellerman", + "Keith Gordon", + "Ned Beatty", + "Adrienne Barbeau", + "Burt Young", + "Robert Downey Jr." + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Band of the Hand", + "year": 1986, + "cast": [ + "Stephen Lang", + "Lauren Holly", + "Leon" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Behind Enemy Lines", + "year": 1986, + "cast": [ + "David Carradine", + "Mako Iwamatsu", + "Steve James" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Best of Times", + "year": 1986, + "cast": [ + "Robin Williams", + "Kurt Russell", + "Pamela Reed" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Big Trouble", + "year": 1986, + "cast": [ + "Peter Falk", + "Alan Arkin", + "Beverly D'Angelo", + "Valerie Curtin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Big Trouble in Little China", + "year": 1986, + "cast": [ + "Kurt Russell", + "Kim Cattrall", + "Victor Wong" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Black Moon Rising", + "year": 1986, + "cast": [ + "Tommy Lee Jones", + "Linda Hamilton", + "Robert Vaughn" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Blue City", + "year": 1986, + "cast": [ + "Judd Nelson", + "Ally Sheedy", + "Scott Wilson", + "David Caruso" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Blue Velvet", + "year": 1986, + "cast": [ + "Isabella Rossellini", + "Kyle MacLachlan", + "Laura Dern", + "Dennis Hopper", + "Hope Lange" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "The Boy Who Could Fly", + "year": 1986, + "cast": [ + "Bonnie Bedelia", + "Lucy Deakins", + "Jay Underwood", + "Fred Savage", + "Fred Gwynne", + "Mindy Cohn", + "Colleen Dewhurst" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Brighton Beach Memoirs", + "year": 1986, + "cast": [ + "Jonathan Silverman", + "Blythe Danner", + "Judith Ivey" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Captain EO", + "year": 1986, + "cast": [ + "Michael Jackson" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Children of a Lesser God", + "year": 1986, + "cast": [ + "William Hurt", + "Marlee Matlin", + "Piper Laurie" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Choke Canyon", + "year": 1986, + "cast": [ + "Stephen Collins", + "Bo Svenson", + "Lance Henriksen" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Chopping Mall", + "year": 1986, + "cast": [ + "Kelli Maroney", + "Barbara Crampton", + "Dick Miller" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Clan of the Cave Bear", + "year": 1986, + "cast": [ + "Daryl Hannah", + "Pamela Reed", + "James Remar" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Club Paradise", + "year": 1986, + "cast": [ + "Robin Williams", + "Peter O'Toole", + "Rick Moranis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Cobra", + "year": 1986, + "cast": [ + "Sylvester Stallone", + "Brigitte Nielsen" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Color of Money", + "year": 1986, + "cast": [ + "Paul Newman", + "Tom Cruise", + "Mary Elizabeth Mastrantonio", + "John Turturro", + "Helen Shaver", + "Forest Whitaker" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Combat Shock", + "year": 1986, + "cast": [ + "Rick Giovinazzo", + "Veronica Stork" + ], + "genres": [ + "Drama", + "War" + ] + }, + { + "title": "Crawlspace", + "year": 1986, + "cast": [ + "Klaus Kinski", + "Talia Balsam" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Crimes of the Heart", + "year": 1986, + "cast": [ + "Diane Keaton", + "Jessica Lange", + "Sissy Spacek", + "Tess Harper" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Critters", + "year": 1986, + "cast": [ + "Dee Wallace", + "M. Emmet Walsh" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Crossroads", + "year": 1986, + "cast": [ + "Ralph Macchio", + "Joe Seneca", + "Jami Gertz" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dangerously Close", + "year": 1986, + "cast": [ + "John Stockwell", + "Carey Lowell" + ], + "genres": [] + }, + { + "title": "Deadly Friend", + "year": 1986, + "cast": [ + "Kristy Swanson" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Delta Force", + "year": 1986, + "cast": [ + "Chuck Norris", + "Lee Marvin" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Desert Bloom", + "year": 1986, + "cast": [ + "Annabeth Gish", + "Jon Voight", + "Ellen Barkin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Down and Out in Beverly Hills", + "year": 1986, + "cast": [ + "Nick Nolte", + "Richard Dreyfuss", + "Bette Midler", + "Elizabeth Peña" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Down by Law", + "year": 1986, + "cast": [ + "Tom Waits", + "John Lurie", + "Roberto Benigni", + "Ellen Barkin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Dr. Otto and the Riddle of the Gloom Beam", + "year": 1986, + "cast": [ + "Jim Varney", + "Glenn Petach" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Dream Lover", + "year": 1986, + "cast": [ + "Kristy McNichol" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Duet for One", + "year": 1986, + "cast": [ + "Julie Andrews", + "Alan Bates" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Echo Park", + "year": 1986, + "cast": [ + "Susan Dey", + "Tom Hulce", + "Cheech Marin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Equalizer 2000", + "year": 1986, + "cast": [ + "Richard Norton", + "Robert Patrick" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Every Time We Say Goodbye", + "year": 1986, + "cast": [ + "Tom Hanks" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "Extremities", + "year": 1986, + "cast": [ + "Farrah Fawcett", + "James Russo", + "Alfre Woodard", + "Diana Scarwid" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "Eye of the Tiger", + "year": 1986, + "cast": [ + "Gary Busey", + "Yaphet Kotto", + "Seymour Cassel" + ], + "genres": [ + "Action" + ] + }, + { + "title": "F/X", + "year": 1986, + "cast": [ + "Bryan Brown", + "Brian Dennehy", + "Diane Venora", + "Cliff DeYoung" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Ferris Bueller's Day Off", + "year": 1986, + "cast": [ + "Matthew Broderick", + "Alan Ruck", + "Mia Sara", + "Jennifer Grey" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Fine Mess", + "year": 1986, + "cast": [ + "Ted Danson", + "Howie Mandel" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Fire with Fire", + "year": 1986, + "cast": [ + "Craig Sheffer", + "Virginia Madsen" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Firewalker", + "year": 1986, + "cast": [ + "Chuck Norris", + "Louis Gossett Jr." + ], + "genres": [ + "Action" + ] + }, + { + "title": "Flight of the Navigator", + "year": 1986, + "cast": [ + "Veronica Cartwright", + "Joey Cramer", + "Sarah Jessica Parker" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Fly", + "year": 1986, + "cast": [ + "Jeff Goldblum", + "Geena Davis", + "John Getz" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Friday the 13th Part VI: Jason Lives", + "year": 1986, + "cast": [ + "C. J. Graham", + "Thom Mathews", + "David Kagen", + "Jennifer Cooke" + ], + "genres": [ + "Horror", + "Slasher" + ] + }, + { + "title": "From Beyond", + "year": 1986, + "cast": [ + "Jeffrey Combs", + "Barbara Crampton", + "Ken Foree" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Getting Even", + "year": 1986, + "cast": [ + "Edward Albert", + "Joe Don Baker" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "GoBots: Battle of the Rock Lords", + "year": 1986, + "cast": [ + "Margot Kidder", + "Telly Savalas", + "Roddy McDowall", + "Michael Nouri" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "The Golden Child", + "year": 1986, + "cast": [ + "Eddie Murphy", + "Charlotte Lewis", + "Charles Dance" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Good to Go", + "year": 1986, + "cast": [ + "Art Garfunkel", + "Robert DoQui", + "Harris Yulin" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Great Mouse Detective", + "year": 1986, + "cast": [ + "Barrie Ingham", + "Val Bettin", + "Vincent Price" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "A Great Wall", + "year": 1986, + "cast": [ + "Peter Wang", + "Kelvin Han Yee" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Gung Ho", + "year": 1986, + "cast": [ + "Michael Keaton", + "John Turturro", + "Mimi Rogers", + "Gedde Watanabe", + "George Wendt" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Half Moon Street", + "year": 1986, + "cast": [ + "Sigourney Weaver", + "Michael Caine" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Hamburger: The Motion Picture", + "year": 1986, + "cast": [ + "Leigh McCloskey", + "Dick Butkus" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hannah and Her Sisters", + "year": 1986, + "cast": [ + "Mia Farrow", + "Barbara Hershey", + "Dianne Wiest", + "Woody Allen", + "Michael Caine", + "Max von Sydow" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Haunted Honeymoon", + "year": 1986, + "cast": [ + "Gilda Radner", + "Gene Wilder", + "Dom DeLuise" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Heartbreak Ridge", + "year": 1986, + "cast": [ + "Clint Eastwood", + "Mario Van Peebles", + "Marsha Mason" + ], + "genres": [ + "Drama", + "War" + ] + }, + { + "title": "Heartburn", + "year": 1986, + "cast": [ + "Meryl Streep", + "Jack Nicholson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Heat", + "year": 1986, + "cast": [ + "Burt Reynolds", + "Karen Young", + "Peter MacNicol" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Heathcliff: The Movie", + "year": 1986, + "cast": [ + "Mel Blanc" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Hell Hunters", + "year": 1986, + "cast": [ + "Maud Adams", + "Stewart Granger", + "Candice Daly" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Henry: Portrait of a Serial Killer", + "year": 1986, + "cast": [ + "Michael Rooker", + "Tom Towles" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Highlander", + "year": 1986, + "cast": [ + "Christopher Lambert", + "Sean Connery", + "Roxanne Hart", + "Clancy Brown" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Hitcher", + "year": 1986, + "cast": [ + "Rutger Hauer", + "C. Thomas Howell", + "Jennifer Jason Leigh" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Hoosiers", + "year": 1986, + "cast": [ + "Gene Hackman", + "Barbara Hershey", + "Dennis Hopper", + "Sheb Wooley" + ], + "genres": [ + "Sports", + "Drama" + ] + }, + { + "title": "House", + "year": 1986, + "cast": [ + "William Katt", + "Kay Lenz", + "George Wendt" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Howard the Duck", + "year": 1986, + "cast": [ + "Lea Thompson", + "Jeffrey Jones", + "Tim Robbins" + ], + "genres": [ + "Science Fiction", + "Comedy" + ] + }, + { + "title": "Invaders from Mars", + "year": 1986, + "cast": [ + "Karen Black", + "Hunter Carson", + "Timothy Bottoms", + "Laraine Newman" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Iron Eagle", + "year": 1986, + "cast": [ + "Louis Gossett Jr.", + "Jason Gedrick" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Jake Speed", + "year": 1986, + "cast": [ + "Wayne Crawford", + "Dennis Christopher", + "Karen Kopins" + ], + "genres": [ + "Action", + "Comedy" + ] + }, + { + "title": "Jo Jo Dancer, Your Life Is Calling", + "year": 1986, + "cast": [ + "Richard Pryor", + "Paula Kelly", + "Wings Hauser" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Jumpin' Jack Flash", + "year": 1986, + "cast": [ + "Whoopi Goldberg", + "Stephen Collins", + "Jonathan Pryce", + "Annie Potts" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Just Between Friends", + "year": 1986, + "cast": [ + "Mary Tyler Moore", + "Christine Lahti", + "Ted Danson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Karate Kid, Part II", + "year": 1986, + "cast": [ + "Ralph Macchio", + "Pat Morita" + ], + "genres": [ + "Family", + "Drama" + ] + }, + { + "title": "King Kong Lives", + "year": 1986, + "cast": [ + "Linda Hamilton", + "Brian Kerwin" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Knights of the City", + "year": 1986, + "cast": [ + "Leon Isaac Kennedy", + "Nicholas Campbell", + "John Mengatti" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Labyrinth", + "year": 1986, + "cast": [ + "David Bowie", + "Jennifer Connelly" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Legal Eagles", + "year": 1986, + "cast": [ + "Robert Redford", + "Debra Winger", + "Daryl Hannah", + "Brian Dennehy", + "Terence Stamp", + "Steven Hill" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Let's Get Harry", + "year": 1986, + "cast": [ + "Michael Schoeffling", + "Mark Harmon", + "Robert Duvall" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Little Shop of Horrors", + "year": 1986, + "cast": [ + "Rick Moranis", + "Ellen Greene", + "Steve Martin" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Living the Blues", + "year": 1986, + "cast": [ + "Galyn Gorg", + "Sam Taylor" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Lucas", + "year": 1986, + "cast": [ + "Corey Haim", + "Kerri Green", + "Charlie Sheen", + "Winona Ryder" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Luxo Jr.", + "year": 1986, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "The Manhattan Project", + "year": 1986, + "cast": [ + "John Lithgow", + "Christopher Collet", + "Cynthia Nixon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Manhunter", + "year": 1986, + "cast": [ + "William Petersen", + "Dennis Farina", + "Brian Cox", + "Joan Allen", + "Tom Noonan", + "Kim Greist", + "Stephen Lang" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Maximum Overdrive", + "year": 1986, + "cast": [ + "Emilio Estevez", + "Pat Hingle" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Men's Club", + "year": 1986, + "cast": [ + "Roy Scheider", + "Harvey Keitel", + "Frank Langella", + "Treat Williams", + "Jennifer Jason Leigh", + "Stockard Channing" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Miracles", + "year": 1986, + "cast": [ + "Teri Garr", + "Paul Rodriguez", + "Christopher Lloyd", + "Tom Conti" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Mission", + "year": 1986, + "cast": [ + "Jeremy Irons", + "Robert De Niro", + "Liam Neeson", + "Aidan Quinn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Modern Girls", + "year": 1986, + "cast": [ + "Virginia Madsen", + "Cynthia Gibb", + "Daphne Zuniga" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Money Pit", + "year": 1986, + "cast": [ + "Tom Hanks", + "Shelley Long", + "Alexander Godunov", + "Maureen Stapleton", + "Joe Mantegna", + "Yakov Smirnoff" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Monster in the Closet", + "year": 1986, + "cast": [ + "Paul Dooley", + "Claude Akins", + "Stella Stevens", + "Howard Duff", + "Frank Ashmore" + ], + "genres": [ + "Comedy", + "Horror" + ] + }, + { + "title": "The Morning After", + "year": 1986, + "cast": [ + "Jane Fonda", + "Jeff Bridges", + "Raúl Juliá" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Mosquito Coast", + "year": 1986, + "cast": [ + "Harrison Ford", + "Helen Mirren", + "River Phoenix" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Murphy's Law", + "year": 1986, + "cast": [ + "Charles Bronson", + "Kathleen Wilhoite", + "Carrie Snodgress" + ], + "genres": [ + "Action" + ] + }, + { + "title": "My Chauffeur", + "year": 1986, + "cast": [ + "Deborah Foreman", + "Sam J. Jones", + "Penn & Teller" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "My Little Girl", + "year": 1986, + "cast": [ + "Mary Stuart Masterson", + "James Earl Jones", + "Geraldine Chaplin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "My Little Pony: The Movie", + "year": 1986, + "cast": [ + "Danny DeVito", + "Rhea Perlman", + "Madeline Kahn" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "'night, Mother", + "year": 1986, + "cast": [ + "Sissy Spacek", + "Anne Bancroft" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Night of the Creeps", + "year": 1986, + "cast": [ + "Jason Lively", + "Tom Atkins" + ], + "genres": [ + "Horror", + "Comedy" + ] + }, + { + "title": "No Mercy", + "year": 1986, + "cast": [ + "Richard Gere", + "Kim Basinger" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "No Retreat, No Surrender", + "year": 1986, + "cast": [ + "Jean-Claude Van Damme" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Nobody's Fool", + "year": 1986, + "cast": [ + "Rosanna Arquette", + "Eric Roberts" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Nomads", + "year": 1986, + "cast": [ + "Pierce Brosnan", + "Lesley-Anne Down" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Nothing in Common", + "year": 1986, + "cast": [ + "Tom Hanks", + "Jackie Gleason", + "Eva Marie Saint", + "Sela Ward", + "Barry Corbin", + "Héctor Elizondo" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Off Beat", + "year": 1986, + "cast": [ + "Judge Reinhold", + "Meg Tilly" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "On the Edge", + "year": 1986, + "cast": [ + "Bruce Dern", + "Pam Grier" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "One Crazy Summer", + "year": 1986, + "cast": [ + "John Cusack", + "Bobcat Goldthwait", + "Demi Moore" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "One More Saturday Night", + "year": 1986, + "cast": [ + "Tom Davis", + "Al Franken", + "Moira Harris" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Out of Bounds", + "year": 1986, + "cast": [ + "Anthony Michael Hall", + "Jenny Wright", + "Jeff Kober" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Parting Glances", + "year": 1986, + "cast": [ + "Steve Buscemi" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Patriot", + "year": 1986, + "cast": [ + "Gregg Henry", + "Simone Griffeth", + "Michael J. Pollard" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Peggy Sue Got Married", + "year": 1986, + "cast": [ + "Kathleen Turner", + "Nicolas Cage", + "Catherine Hicks", + "Joan Allen", + "Jim Carrey", + "Helen Hunt" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Pirates", + "year": 1986, + "cast": [ + "Walter Matthau" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Platoon", + "year": 1986, + "cast": [ + "Tom Berenger", + "Willem Dafoe", + "Charlie Sheen" + ], + "genres": [ + "War" + ] + }, + { + "title": "Playing for Keeps", + "year": 1986, + "cast": [ + "Daniel Jordano", + "Matthew Penn" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Police Academy 3: Back in Training", + "year": 1986, + "cast": [ + "Steve Guttenberg", + "Bubba Smith", + "Leslie Easterbrook" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Poltergeist II: The Other Side", + "year": 1986, + "cast": [ + "JoBeth Williams", + "Craig T. Nelson", + "Heather O'Rourke", + "Oliver Robins", + "Zelda Rubinstein" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Power", + "year": 1986, + "cast": [ + "Richard Gere", + "Julie Christie", + "Gene Hackman", + "Denzel Washington", + "Kate Capshaw" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Pretty in Pink", + "year": 1986, + "cast": [ + "Molly Ringwald", + "Andrew McCarthy", + "Jon Cryer", + "Harry Dean Stanton", + "Annie Potts", + "James Spader" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Psycho III", + "year": 1986, + "cast": [ + "Anthony Perkins", + "Diana Scarwid", + "Jeff Fahey" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Quicksilver", + "year": 1986, + "cast": [ + "Kevin Bacon", + "Jami Gertz", + "Paul Rodriguez" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Quiet Cool", + "year": 1986, + "cast": [ + "James Remar", + "Daphne Ashbrook", + "Nick Cassavetes" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Rad", + "year": 1986, + "cast": [ + "Bill Allen", + "Lori Loughlin", + "Talia Shire" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Ratboy", + "year": 1986, + "cast": [ + "Sharon Baird", + "Sondra Locke" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Raw Deal", + "year": 1986, + "cast": [ + "Arnold Schwarzenegger", + "Kathryn Harrold" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Red Headed Stranger", + "year": 1986, + "cast": [ + "Willie Nelson", + "Morgan Fairchild" + ], + "genres": [ + "Western" + ] + }, + { + "title": "River's Edge", + "year": 1986, + "cast": [ + "Crispin Glover", + "Keanu Reeves", + "Ione Skye Leitch", + "Daniel Roebuck", + "Dennis Hopper" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Robotech: The Movie", + "year": 1986, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "Round Midnight", + "year": 1986, + "cast": [ + "Dexter Gordon" + ], + "genres": [ + "Drama", + "Musical" + ] + }, + { + "title": "Running Scared", + "year": 1986, + "cast": [ + "Billy Crystal", + "Gregory Hines", + "Jimmy Smits" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Ruthless People", + "year": 1986, + "cast": [ + "Bette Midler", + "Danny DeVito", + "Judge Reinhold", + "Helen Slater", + "Anita Morris", + "Bill Pullman" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Salvador", + "year": 1986, + "cast": [ + "James Woods", + "James Belushi", + "Michael Murphy", + "John Savage" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "Saving Grace", + "year": 1986, + "cast": [ + "Tom Conti", + "Fernando Rey", + "Erland Josephson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Scorpion", + "year": 1986, + "cast": [ + "Tonny Tulleners", + "Don Murray" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Seize the Day", + "year": 1986, + "cast": [ + "Robin Williams", + "Jerry Stiller", + "Joseph Wiseman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Shanghai Surprise", + "year": 1986, + "cast": [ + "Sean Penn", + "Madonna" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "She's Gotta Have It", + "year": 1986, + "cast": [ + "Tracy Camilla Johns", + "Tommy Redmond" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Sherman's March", + "year": 1986, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "Short Circuit", + "year": 1986, + "cast": [ + "Ally Sheedy", + "Steve Guttenberg", + "Fisher Stevens" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Solarbabies", + "year": 1986, + "cast": [ + "Jason Patric", + "Jami Gertz", + "Lukas Haas" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Something Wild", + "year": 1986, + "cast": [ + "Jeff Daniels", + "Melanie Griffith", + "Ray Liotta" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Soul Man", + "year": 1986, + "cast": [ + "C. Thomas Howell", + "Rae Dawn Chong", + "James Earl Jones" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "SpaceCamp", + "year": 1986, + "cast": [ + "Kate Capshaw", + "Lea Thompson", + "Kelly Preston", + "Larry B. Scott" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Stand by Me", + "year": 1986, + "cast": [ + "Wil Wheaton", + "River Phoenix", + "Corey Feldman", + "Jerry O'Connell", + "Kiefer Sutherland" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Star Trek IV: The Voyage Home", + "year": 1986, + "cast": [ + "William Shatner", + "Leonard Nimoy", + "DeForest Kelley", + "James Doohan", + "Nichelle Nichols", + "George Takei", + "Catherine Hicks", + "Walter Koenig", + "Robin Curtis", + "Mark Lenard", + "Brock Peters" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Stoogemania", + "year": 1986, + "cast": [ + "Josh Mostel", + "Melanie Chartoff", + "Sid Caesar" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Streets of Gold", + "year": 1986, + "cast": [ + "Klaus Maria Brandauer", + "Adrian Pasdar", + "Wesley Snipes" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Sweet Liberty", + "year": 1986, + "cast": [ + "Alan Alda", + "Michael Caine", + "Michelle Pfeiffer", + "Bob Hoskins", + "Lise Hilboldt", + "Lois Chiles" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Tai-Pan", + "year": 1986, + "cast": [ + "Bryan Brown", + "Joan Chen", + "Tim Guinee" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "TerrorVision", + "year": 1986, + "cast": [ + "Chad Allen", + "Diane Franklin" + ], + "genres": [ + "Comedy", + "Horror" + ] + }, + { + "title": "The Texas Chainsaw Massacre 2", + "year": 1986, + "cast": [ + "Dennis Hopper" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "That's Life!", + "year": 1986, + "cast": [ + "Jack Lemmon", + "Julie Andrews", + "Sally Kellerman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Three Amigos", + "year": 1986, + "cast": [ + "Steve Martin", + "Chevy Chase", + "Martin Short" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Top Gun", + "year": 1986, + "cast": [ + "Tom Cruise", + "Kelly McGillis", + "Anthony Edwards", + "Val Kilmer", + "Meg Ryan", + "Tom Skerritt", + "Michael Ironside", + "Tim Robbins" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Touch and Go", + "year": 1986, + "cast": [ + "Michael Keaton", + "María Conchita Alonso" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Tough Guys", + "year": 1986, + "cast": [ + "Burt Lancaster", + "Kirk Douglas", + "Eli Wallach", + "Dana Carvey" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Transformers: The Movie", + "year": 1986, + "cast": [ + "Judd Nelson", + "Leonard Nimoy", + "Robert Stack", + "Orson Welles", + "Eric Idle", + "Chris Latta", + "Peter Cullen", + "Frank Welker", + "Neil Ross", + "Michael Bell", + "Paul Eiding" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Trick or Treat", + "year": 1986, + "cast": [ + "Marc Price", + "Gene Simmons", + "Ozzy Osbourne" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Troll", + "year": 1986, + "cast": [ + "Michael Moriarty", + "June Lockhart" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "True Stories", + "year": 1986, + "cast": [ + "David Byrne", + "John Goodman", + "Swoosie Kurtz" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Under the Cherry Moon", + "year": 1986, + "cast": [ + "Prince", + "Kristin Scott Thomas", + "Jerome Benton", + "Francesca Annis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Vamp", + "year": 1986, + "cast": [ + "Grace Jones" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Vampires", + "year": 1986, + "cast": [ + "John Bly", + "Jackie James", + "Duane Jones" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Violets Are Blue", + "year": 1986, + "cast": [ + "Sissy Spacek", + "Kevin Kline", + "Bonnie Bedelia" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "What You Mean We?", + "year": 1986, + "cast": [ + "Laurie Anderson" + ], + "genres": [ + "Short" + ] + }, + { + "title": "Wildcats", + "year": 1986, + "cast": [ + "Goldie Hawn", + "Swoosie Kurtz", + "Nipsey Russell", + "Robyn Lively", + "Woody Harrelson", + "Wesley Snipes" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Willy/Milly", + "year": 1986, + "cast": [ + "Pamela Adlon", + "Patty Duke", + "Eric Gurry" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Wisdom", + "year": 1986, + "cast": [ + "Emilio Estevez", + "Demi Moore", + "Tom Skerritt", + "Veronica Cartwright" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Wise Guys", + "year": 1986, + "cast": [ + "Danny DeVito", + "Joe Piscopo", + "Harvey Keitel", + "Dan Hedaya" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Witchboard", + "year": 1986, + "cast": [ + "Tawny Kitaen", + "Stephen Nichols" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Working Girls", + "year": 1986, + "cast": [], + "genres": [ + "Documentary", + "Drama" + ] + }, + { + "title": "The Wraith", + "year": 1986, + "cast": [ + "Charlie Sheen", + "Sherilyn Fenn", + "Nick Cassavetes", + "Randy Quaid" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Youngblood", + "year": 1986, + "cast": [ + "Rob Lowe", + "Patrick Swayze", + "Cynthia Gibb", + "Keanu Reeves" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "84 Charing Cross Road", + "year": 1987, + "cast": [ + "Anne Bancroft", + "Anthony Hopkins", + "Judi Dench" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Adventures in Babysitting", + "year": 1987, + "cast": [ + "Elisabeth Shue", + "Maia Brewton", + "Keith Coogan", + "Anthony Rapp", + "Vincent D'Onofrio", + "Penelope Ann Miller" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Alamo: 13 Days to Glory", + "year": 1987, + "cast": [ + "Brian Keith", + "James Arness", + "Alec Baldwin", + "Raúl Juliá" + ], + "genres": [ + "Western", + "Biography" + ] + }, + { + "title": "Allan Quatermain and the Lost City of Gold", + "year": 1987, + "cast": [ + "Richard Chamberlain", + "Sharon Stone", + "James Earl Jones" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Allnighter", + "year": 1987, + "cast": [ + "Susanna Hoffs", + "Joan Cusack" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Amazing Grace and Chuck", + "year": 1987, + "cast": [ + "Jamie Lee Curtis", + "Gregory Peck", + "William L. Petersen", + "Joshua Zuehlke", + "Alex English" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Amazing Mr. Bickford", + "year": 1987, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "Amazon Women on the Moon", + "year": 1987, + "cast": [ + "Arsenio Hall", + "Carrie Fisher", + "Sybil Danning", + "Griffin Dunne", + "Kelly Preston", + "David Alan Grier", + "Steve Forrest", + "Steve Allen", + "Steve Guttenberg", + "Rosanna Arquette", + "Michelle Pfeiffer" + ], + "genres": [ + "Comedy", + "Satire" + ] + }, + { + "title": "American Ninja 2: The Confrontation", + "year": 1987, + "cast": [ + "Michael Dudikoff", + "Steve James" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Angel Heart", + "year": 1987, + "cast": [ + "Mickey Rourke", + "Lisa Bonet", + "Robert De Niro", + "Charlotte Rampling" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Anguish", + "year": 1987, + "cast": [ + "Zelda Rubinstein", + "Michael Lerner" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Anna", + "year": 1987, + "cast": [ + "Sally Kirkland", + "Paulina Porizkova", + "Robert Fields" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Anne of Avonlea", + "year": 1987, + "cast": [ + "Megan Follows", + "Colleen Dewhurst", + "Wendy Hiller" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Assassination", + "year": 1987, + "cast": [ + "Charles Bronson", + "Jill Ireland", + "Stephen Elliott", + "Michael Ansara" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Athens, Georgia: Inside Out", + "year": 1987, + "cast": [ + "R.E.M.", + "The B-52's" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Baby Boom", + "year": 1987, + "cast": [ + "Diane Keaton", + "Sam Shepard", + "Harold Ramis", + "Sam Wanamaker", + "James Spader" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Back to the Beach", + "year": 1987, + "cast": [ + "Annette Funicello", + "Frankie Avalon", + "Bob Denver", + "Connie Stevens", + "Don Adams", + "Paul Reubens" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Bagdad Café", + "year": 1987, + "cast": [ + "Marianne Sägebrecht", + "C. C. H. Pounder" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Barfly", + "year": 1987, + "cast": [ + "Mickey Rourke", + "Faye Dunaway" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Bates Motel", + "year": 1987, + "cast": [ + "Kurt Paul", + "Bud Cort", + "Lori Petty", + "Moses Gunn" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Batteries Not Included", + "year": 1987, + "cast": [ + "Jessica Tandy", + "Hume Cronyn" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Bedroom Window", + "year": 1987, + "cast": [ + "Elizabeth McGovern", + "Steve Guttenberg", + "Isabelle Huppert" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "The Believers", + "year": 1987, + "cast": [ + "Martin Sheen", + "Helen Shaver", + "Robert Loggia", + "Jimmy Smits", + "Elizabeth Wilson", + "Harris Yulin" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Benji the Hunted", + "year": 1987, + "cast": [], + "genres": [ + "Family", + "Drama" + ] + }, + { + "title": "Berserker", + "year": 1987, + "cast": [], + "genres": [ + "Horror" + ] + }, + { + "title": "Best Seller", + "year": 1987, + "cast": [ + "James Woods", + "Brian Dennehy", + "Victoria Tennant" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "A Better Tomorrow 2", + "year": 1987, + "cast": [ + "Chow-Yun Fat" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Beverly Hills Cop II", + "year": 1987, + "cast": [ + "Eddie Murphy", + "Judge Reinhold", + "Brigitte Nielsen", + "Jürgen Prochnow", + "Ronny Cox", + "John Ashton" + ], + "genres": [ + "Action", + "Comedy" + ] + }, + { + "title": "Beyond Therapy", + "year": 1987, + "cast": [ + "Julie Hagerty", + "Jeff Goldblum", + "Glenda Jackson", + "Tom Conti", + "Christopher Guest" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Big Bang", + "year": 1987, + "cast": [ + "Luis Rego", + "Georges Aminel", + "Perrette Pradier" + ], + "genres": [ + "Animated", + "Erotic" + ] + }, + { + "title": "The Big Easy", + "year": 1987, + "cast": [ + "Dennis Quaid", + "Ellen Barkin", + "Ned Beatty" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Big Town", + "year": 1987, + "cast": [ + "Matt Dillon", + "Diane Lane", + "Tommy Lee Jones", + "Bruce Dern", + "Lee Grant", + "Tom Skerritt", + "Suzy Amis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Black Widow", + "year": 1987, + "cast": [ + "Debra Winger", + "Theresa Russell", + "Sami Frey", + "Nicol Williamson", + "Dennis Hopper" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Blind Date", + "year": 1987, + "cast": [ + "Bruce Willis", + "Kim Basinger", + "John Larroquette" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Blood Diner", + "year": 1987, + "cast": [ + "Rick Burks" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Body Slam", + "year": 1987, + "cast": [ + "Dirk Benedict", + "Roddy Piper", + "Tanya Roberts" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Born in East L.A.", + "year": 1987, + "cast": [ + "Cheech Marin", + "Daniel Stern", + "Paul Rodriguez" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Brave Little Toaster", + "year": 1987, + "cast": [ + "voices of", + "Jon Lovitz", + "Tim Stack" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Bride of Boogedy", + "year": 1987, + "cast": [], + "genres": [] + }, + { + "title": "Broadcast News", + "year": 1987, + "cast": [ + "William Hurt", + "Albert Brooks", + "Holly Hunter", + "Joan Cusack", + "Robert Prosky", + "Lois Chiles", + "Jack Nicholson" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "Burglar", + "year": 1987, + "cast": [ + "Whoopi Goldberg", + "Bobcat Goldthwait" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Buster Keaton: A Hard Act to Follow", + "year": 1987, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "Buy & Cell", + "year": 1987, + "cast": [ + "Robert Carradine", + "Randall \"Tex\" Cobb", + "Ben Vereen", + "Imogene Coca", + "Roddy Piper" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Can't Buy Me Love", + "year": 1987, + "cast": [ + "Patrick Dempsey", + "Amanda Peterson", + "Seth Green" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Cannibal Hookers", + "year": 1987, + "cast": [], + "genres": [ + "Comedy" + ] + }, + { + "title": "Captive Hearts", + "year": 1987, + "cast": [ + "Pat Morita", + "Chris Makepeace" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Celebration Family", + "year": 1987, + "cast": [ + "Stephanie Zimbalist", + "James Read", + "Ed Begley Jr." + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Charles Bukowski Tapes", + "year": 1987, + "cast": [], + "genres": [] + }, + { + "title": "Cherry 2000", + "year": 1987, + "cast": [ + "Melanie Griffith", + "David Andrews", + "Tim Thomerson" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "China Girl", + "year": 1987, + "cast": [ + "James Russo", + "David Caruso" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Chipmunk Adventure", + "year": 1987, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "Christmas Comes to Willow Creek", + "year": 1987, + "cast": [ + "John Schneider", + "Tom Wopat", + "Kim Delaney" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Cold Steel", + "year": 1987, + "cast": [ + "Brad Davis", + "Sharon Stone", + "Adam Ant" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Creepozoids", + "year": 1987, + "cast": [ + "Linnea Quigley" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Creepshow 2", + "year": 1987, + "cast": [ + "George Kennedy", + "Dorothy Lamour", + "Lois Chiles" + ], + "genres": [ + "Horror", + "Comedy" + ] + }, + { + "title": "Critical Condition", + "year": 1987, + "cast": [ + "Richard Pryor" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Cross My Heart", + "year": 1987, + "cast": [ + "Martin Short", + "Annette O'Toole", + "Paul Reiser" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Cry Freedom", + "year": 1987, + "cast": [ + "Denzel Washington", + "Kevin Kline" + ], + "genres": [ + "Drama", + "Biography" + ] + }, + { + "title": "Cry Wilderness", + "year": 1987, + "cast": [], + "genres": [ + "Family", + "Adventure" + ] + }, + { + "title": "The Cure for Insomnia", + "year": 1987, + "cast": [ + "Lee Groban" + ], + "genres": [] + }, + { + "title": "Cyclone", + "year": 1987, + "cast": [ + "Heather Thomas", + "Jeffrey Combs", + "Martin Landau" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Dancers", + "year": 1987, + "cast": [ + "Mikhail Baryshnikov" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Daniel and the Towers", + "year": 1987, + "cast": [ + "Michael McKean", + "Allan Arbus" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dark Tower", + "year": 1987, + "cast": [ + "Michael Moriarty", + "Jenny Agutter", + "Theodore Bikel" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Date with an Angel", + "year": 1987, + "cast": [ + "Michael E. Knight", + "Emmanuelle Béart", + "David Dukes", + "Phoebe Cates" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "The Dead", + "year": 1987, + "cast": [ + "Anjelica Huston" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dead of Winter", + "year": 1987, + "cast": [ + "Mary Steenburgen", + "Roddy McDowall", + "Jan Rubeš" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "Deadline", + "year": 1987, + "cast": [ + "Christopher Walken" + ], + "genres": [ + "War" + ] + }, + { + "title": "Dear America: Letters Home from Vietnam", + "year": 1987, + "cast": [ + "Tom Berenger", + "Sean Penn" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Death Before Dishonor", + "year": 1987, + "cast": [ + "Fred Dryer", + "Brian Keith", + "Joanna Pacuła" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Death Run", + "year": 1987, + "cast": [], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Death Wish 4: The Crackdown", + "year": 1987, + "cast": [ + "Charles Bronson", + "Kay Lenz" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Dinosaurs! – A Fun-Filled Trip Back in Time!", + "year": 1987, + "cast": [ + "Fred Savage" + ], + "genres": [] + }, + { + "title": "Dirty Dancing", + "year": 1987, + "cast": [ + "Patrick Swayze", + "Jennifer Grey", + "Jerry Orbach", + "Cynthia Rhodes", + "Jack Weston" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Disorderlies", + "year": 1987, + "cast": [ + "The Fat Boys", + "Ralph Bellamy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Dolls", + "year": 1987, + "cast": [], + "genres": [ + "Horror" + ] + }, + { + "title": "Dorf on Golf", + "year": 1987, + "cast": [ + "Tim Conway" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Dorf's Golf Bible", + "year": 1987, + "cast": [ + "Tim Conway" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Down Twisted", + "year": 1987, + "cast": [ + "Carey Lowell", + "Charles Rocket" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Dragnet", + "year": 1987, + "cast": [ + "Dan Aykroyd", + "Tom Hanks", + "Dabney Coleman", + "Harry Morgan", + "Alexandra Paul", + "Christopher Plummer" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Eddie Murphy Raw", + "year": 1987, + "cast": [ + "Eddie Murphy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Empire of the Sun", + "year": 1987, + "cast": [ + "Christian Bale", + "John Malkovich", + "Miranda Richardson" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "End of the Line", + "year": 1987, + "cast": [ + "Kevin Bacon", + "Wilford Brimley", + "Holly Hunter" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Enemy Territory", + "year": 1987, + "cast": [ + "Gary Frank", + "Ray Parker Jr.", + "Jan-Michael Vincent" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Ernest Goes to Camp", + "year": 1987, + "cast": [ + "Jim Varney" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Escape from Sobibor", + "year": 1987, + "cast": [ + "Alan Arkin", + "Joanna Pacuła", + "Rutger Hauer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Evil Dead II", + "year": 1987, + "cast": [ + "Bruce Campbell" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Extreme Prejudice", + "year": 1987, + "cast": [ + "Nick Nolte", + "Powers Boothe", + "Rip Torn", + "María Conchita Alonso" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Eyes on the Prize", + "year": 1987, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "Fatal Attraction", + "year": 1987, + "cast": [ + "Michael Douglas", + "Glenn Close", + "Anne Archer" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Fatal Beauty", + "year": 1987, + "cast": [ + "Whoopi Goldberg", + "Sam Elliott" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Fight for Life", + "year": 1987, + "cast": [ + "Jerry Lewis", + "Patty Duke", + "Morgan Freeman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Five Corners", + "year": 1987, + "cast": [ + "Tim Robbins", + "Jodie Foster", + "John Turturro" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Flowers in the Attic", + "year": 1987, + "cast": [ + "Louise Fletcher", + "Victoria Tennant", + "Kristy Swanson" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "From the Hip", + "year": 1987, + "cast": [ + "Judd Nelson", + "Elizabeth Perkins", + "John Hurt" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Full Metal Jacket", + "year": 1987, + "cast": [ + "Matthew Modine", + "R. Lee Ermey", + "Vincent D'Onofrio", + "Adam Baldwin", + "Dorian Harewood", + "Arliss Howard" + ], + "genres": [ + "War" + ] + }, + { + "title": "G.I. Joe: The Movie", + "year": 1987, + "cast": [ + "voices of", + "Don Johnson", + "Burgess Meredith", + "Sgt. Slaughter", + "Chris Latta", + "Michael Bell", + "Neil Ross" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Gardens of Stone", + "year": 1987, + "cast": [ + "James Caan", + "Anjelica Huston", + "James Earl Jones", + "D. B. Sweeney", + "Mary Stuart Masterson", + "Dean Stockwell" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "The Gate", + "year": 1987, + "cast": [ + "Stephen Dorff" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Glass Menagerie", + "year": 1987, + "cast": [ + "Joanne Woodward", + "John Malkovich", + "Karen Allen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Good Morning, Vietnam", + "year": 1987, + "cast": [ + "Robin Williams", + "Robert Wuhl", + "Forest Whitaker", + "Bruno Kirby", + "J. T. Walsh" + ], + "genres": [ + "War", + "Comedy" + ] + }, + { + "title": "Grateful Dead: So Far", + "year": 1987, + "cast": [ + "The Grateful Dead" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Hamburger Hill", + "year": 1987, + "cast": [ + "Dylan McDermott", + "Don Cheadle", + "Steven Weber" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "The Hanoi Hilton", + "year": 1987, + "cast": [ + "Michael Moriarty", + "Paul Le Mat" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "Happy New Year", + "year": 1987, + "cast": [ + "Peter Falk", + "Charles Durning", + "Wendy Hughes", + "Tom Courtenay" + ], + "genres": [ + "Crime", + "Comedy" + ] + }, + { + "title": "Hard Ticket to Hawaii", + "year": 1987, + "cast": [ + "Dona Speir" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Harry and the Hendersons", + "year": 1987, + "cast": [ + "John Lithgow", + "Melinda Dillon", + "Don Ameche" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hearts of Fire", + "year": 1987, + "cast": [ + "Bob Dylan", + "Rupert Everett" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hell Comes to Frogtown", + "year": 1987, + "cast": [ + "Roddy Piper" + ], + "genres": [] + }, + { + "title": "Hello Again", + "year": 1987, + "cast": [ + "Shelley Long", + "Corbin Bernsen", + "Judith Ivey", + "Gabriel Byrne", + "Sela Ward" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hello Mary Lou: Prom Night II", + "year": 1987, + "cast": [ + "Michael Ironside", + "Lisa Schrage" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Hellraiser", + "year": 1987, + "cast": [ + "Andrew Robinson", + "Claire Higgins", + "Ashley Laurence", + "Doug Bradley" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Hidden", + "year": 1987, + "cast": [ + "Kyle MacLachlan", + "Michael Nouri", + "Claudia Christian" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Hiding Out", + "year": 1987, + "cast": [ + "Jon Cryer", + "Annabeth Gish" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Hobo's Christmas", + "year": 1987, + "cast": [ + "Barnard Hughes", + "Gerald McRaney" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hollywood Shuffle", + "year": 1987, + "cast": [ + "Robert Townsend" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hope and Glory", + "year": 1987, + "cast": [ + "Sarah Miles", + "Sammi Davis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hot Pursuit", + "year": 1987, + "cast": [ + "John Cusack", + "Jerry Stiller", + "Ben Stiller" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "House II: The Second Story", + "year": 1987, + "cast": [ + "Arye Gross", + "Amy Yasbeck" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "House of Games", + "year": 1987, + "cast": [ + "Joe Mantegna", + "Lindsay Crouse", + "Ricky Jay" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Housekeeping", + "year": 1987, + "cast": [ + "Christine Lahti" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Howling III", + "year": 1987, + "cast": [ + "Barry Otto" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Hunk", + "year": 1987, + "cast": [ + "Deborah Shelton", + "James Coco" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "I Was a Teenage Zombie", + "year": 1987, + "cast": [], + "genres": [ + "Horror", + "Comedy" + ] + }, + { + "title": "I've Heard the Mermaids Singing", + "year": 1987, + "cast": [ + "Sheila McCarthy", + "Ann-Marie MacDonald" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "In the Mood", + "year": 1987, + "cast": [ + "Patrick Dempsey", + "Talia Balsam", + "Beverly D'Angelo" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Innerspace", + "year": 1987, + "cast": [ + "Dennis Quaid", + "Martin Short", + "Meg Ryan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Ironweed", + "year": 1987, + "cast": [ + "Jack Nicholson", + "Meryl Streep", + "Tom Waits", + "Fred Gwynne", + "Michael O'Keefe", + "Carroll Baker" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Ishtar", + "year": 1987, + "cast": [ + "Warren Beatty", + "Dustin Hoffman", + "Isabelle Adjani", + "Charles Grodin", + "Tess Harper", + "Jack Weston" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Jaws: The Revenge", + "year": 1987, + "cast": [ + "Lorraine Gary", + "Michael Caine", + "Mario Van Peebles" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Jetsons Meet the Flintstones", + "year": 1987, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "Jocks", + "year": 1987, + "cast": [ + "Scott Strader", + "Perry Lang" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "King Lear", + "year": 1987, + "cast": [ + "Peter Sellars", + "Burgess Meredith", + "Molly Ringwald", + "Woody Allen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Kung Fu: The Next Generation", + "year": 1987, + "cast": [ + "Brandon Lee" + ], + "genres": [ + "Martial Arts" + ] + }, + { + "title": "La Bamba", + "year": 1987, + "cast": [ + "Lou Diamond Phillips", + "Esai Morales", + "Rosanna DeSoto", + "Elizabeth Peña", + "Danielle von Zerneck" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Lady Beware", + "year": 1987, + "cast": [ + "Diane Lane" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Legend of the White Horse", + "year": 1987, + "cast": [ + "Christopher Lloyd", + "Dee Wallace", + "Christopher Stone" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Leonard Part 6", + "year": 1987, + "cast": [ + "Bill Cosby", + "Joe Don Baker", + "Gloria Foster" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Less Than Zero", + "year": 1987, + "cast": [ + "Andrew McCarthy", + "Jami Gertz", + "Robert Downey Jr.", + "James Spader" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Lethal Weapon", + "year": 1987, + "cast": [ + "Mel Gibson", + "Danny Glover", + "Gary Busey" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Light of Day", + "year": 1987, + "cast": [ + "Michael J. Fox", + "Gena Rowlands", + "Joan Jett" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Like Father Like Son", + "year": 1987, + "cast": [ + "Kirk Cameron", + "Dudley Moore", + "Sean Astin", + "Catherine Hicks", + "Margaret Colin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Lionheart", + "year": 1987, + "cast": [ + "Eric Stoltz", + "Gabriel Byrne" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Living on Tokyo Time", + "year": 1987, + "cast": [], + "genres": [] + }, + { + "title": "Long Gone", + "year": 1987, + "cast": [ + "William Petersen", + "Virginia Madsen", + "Dermot Mulroney" + ], + "genres": [ + "Sports", + "Comedy" + ] + }, + { + "title": "The Lost Boys", + "year": 1987, + "cast": [ + "Jason Patric", + "Corey Haim", + "Dianne Wiest", + "Barnard Hughes", + "Kiefer Sutherland", + "Jami Gertz" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Love Among Thieves", + "year": 1987, + "cast": [ + "Audrey Hepburn", + "Robert Wagner" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Love at Stake", + "year": 1987, + "cast": [ + "Patrick Cassidy", + "Kelly Preston", + "Barbara Carrera" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Made in Heaven", + "year": 1987, + "cast": [ + "Kelly McGillis", + "Timothy Hutton" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Maid to Order", + "year": 1987, + "cast": [ + "Ally Sheedy", + "Valerie Perrine", + "Beverly D'Angelo" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Making Mr. Right", + "year": 1987, + "cast": [ + "John Malkovich", + "Ann Magnuson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Malone", + "year": 1987, + "cast": [ + "Burt Reynolds", + "Cliff Robertson", + "Lauren Hutton" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Man on Fire", + "year": 1987, + "cast": [ + "Scott Glenn", + "Joe Pesci" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Mannequin", + "year": 1987, + "cast": [ + "Andrew McCarthy", + "Kim Cattrall" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Masters of the Universe", + "year": 1987, + "cast": [ + "Dolph Lundgren", + "Frank Langella", + "Courteney Cox", + "Billy Barty", + "Chelsea Field", + "Jon Cypher", + "Robert Duncan McNeill", + "James Tolkan", + "Christina Pickles" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Matewan", + "year": 1987, + "cast": [ + "Chris Cooper", + "Will Oldham", + "David Strathairn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Meatballs III: Summer Job", + "year": 1987, + "cast": [ + "Patrick Dempsey", + "Sally Kellerman" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Miami Connection", + "year": 1987, + "cast": [ + "Y.K. Kim", + "Vincent Hirsch" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Million Dollar Mystery", + "year": 1987, + "cast": [ + "Tom Bosley" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Monster Squad", + "year": 1987, + "cast": [ + "Stephen Macht", + "Tom Noonan", + "Andre Gower" + ], + "genres": [ + "Horror", + "Comedy" + ] + }, + { + "title": "Moonstruck", + "year": 1987, + "cast": [ + "Cher", + "Nicolas Cage", + "Olympia Dukakis", + "Danny Aiello", + "Vincent Gardenia", + "John Mahoney" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Morgan Stewart's Coming Home", + "year": 1987, + "cast": [ + "Jon Cryer", + "Paul Gleason", + "Lynn Redgrave" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mr. Nice Guy", + "year": 1987, + "cast": [ + "Jan Smithers", + "Mike McDonald" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Munchies", + "year": 1987, + "cast": [ + "Harvey Korman", + "Wendy Schaal" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "My Best Friend's Birthday", + "year": 1987, + "cast": [ + "Quentin Tarantino" + ], + "genres": [ + "Short" + ] + }, + { + "title": "My Little Girl", + "year": 1987, + "cast": [ + "James Earl Jones", + "Geraldine Page", + "Mary Stuart Masterson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Nadine", + "year": 1987, + "cast": [ + "Kim Basinger", + "Jeff Bridges", + "Rip Torn" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Near Dark", + "year": 1987, + "cast": [ + "Adrian Pasdar", + "Jenny Wright", + "Bill Paxton" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "A Nightmare on Elm Street 3: Dream Warriors", + "year": 1987, + "cast": [ + "Heather Langenkamp", + "Patricia Arquette", + "Robert Englund", + "Laurence Fishburne", + "John Saxon" + ], + "genres": [ + "Slasher" + ] + }, + { + "title": "No Man's Land", + "year": 1987, + "cast": [ + "Charlie Sheen", + "D. B. Sweeney", + "Randy Quaid" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "No Way Out", + "year": 1987, + "cast": [ + "Kevin Costner", + "Gene Hackman", + "Sean Young", + "Will Patton", + "George Dzundza", + "Howard Duff", + "Iman" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "North Shore", + "year": 1987, + "cast": [ + "Matt Adler" + ], + "genres": [ + "Sport" + ] + }, + { + "title": "Nowhere to Hide", + "year": 1987, + "cast": [ + "Amy Madigan", + "Michael Ironside" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Number One with a Bullet", + "year": 1987, + "cast": [ + "Robert Carradine", + "Billy Dee Williams", + "Valerie Bertinelli" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Nuts", + "year": 1987, + "cast": [ + "Barbra Streisand", + "Richard Dreyfuss", + "Karl Malden", + "Leslie Nielsen", + "Maureen Stapleton", + "Robert Webber", + "Eli Wallach", + "James Whitmore" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "O.C. and Stiggs", + "year": 1987, + "cast": [ + "Daniel H. Jenkins", + "Neill Barry", + "Paul Dooley", + "Jane Curtin", + "Jon Cryer", + "Cynthia Nixon", + "Martin Mull" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "On the Black Hill", + "year": 1987, + "cast": [], + "genres": [ + "Drama" + ] + }, + { + "title": "Orphans", + "year": 1987, + "cast": [ + "Albert Finney", + "Matthew Modine" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Outrageous Fortune", + "year": 1987, + "cast": [ + "Bette Midler", + "Shelley Long", + "Peter Coyote" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Over the Top", + "year": 1987, + "cast": [ + "Sylvester Stallone", + "Robert Loggia", + "David Mendenhall", + "Susan Blakely" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Overboard", + "year": 1987, + "cast": [ + "Goldie Hawn", + "Kurt Russell", + "Edward Herrmann", + "Roddy McDowall" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Pick-up Artist", + "year": 1987, + "cast": [ + "Robert Downey Jr.", + "Molly Ringwald", + "Dennis Hopper" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Pinocchio and the Emperor of the Night", + "year": 1987, + "cast": [ + "voices of", + "Scott Grimes", + "Tom Bosley", + "Don Knotts", + "Ed Asner", + "James Earl Jones", + "Rickie Lee Jones" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Planes, Trains and Automobiles", + "year": 1987, + "cast": [ + "Steve Martin", + "John Candy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Police Academy 4: Citizens on Patrol", + "year": 1987, + "cast": [ + "Steve Guttenberg", + "Bubba Smith", + "Michael Winslow", + "George Gaynes", + "David Graf", + "David Spade", + "Leslie Easterbrook", + "Bobcat Goldthwait", + "Corinne Bohrer" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Poor Little Rich Girl: The Barbara Hutton Story", + "year": 1987, + "cast": [ + "Farrah Fawcett" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "A Prayer for the Dying", + "year": 1987, + "cast": [ + "Mickey Rourke", + "Bob Hoskins", + "Alan Bates", + "Sammi Davis" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Predator", + "year": 1987, + "cast": [ + "Arnold Schwarzenegger", + "Carl Weathers", + "Jesse Ventura" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Prince of Darkness", + "year": 1987, + "cast": [ + "Donald Pleasence", + "Jameson Parker" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Princess Bride", + "year": 1987, + "cast": [ + "Cary Elwes", + "Robin Wright", + "Mandy Patinkin", + "André the Giant", + "Chris Sarandon", + "Christopher Guest", + "Wallace Shawn", + "Billy Crystal", + "Peter Falk", + "Fred Savage" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "The Principal", + "year": 1987, + "cast": [ + "James Belushi", + "Louis Gossett Jr.", + "Rae Dawn Chong" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Prison", + "year": 1987, + "cast": [ + "Lane Smith", + "Viggo Mortensen", + "Chelsea Field" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Project X", + "year": 1987, + "cast": [ + "Matthew Broderick", + "Helen Hunt" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Promised Land", + "year": 1987, + "cast": [ + "Kiefer Sutherland", + "Meg Ryan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Radio Days", + "year": 1987, + "cast": [ + "Mia Farrow", + "Dianne Wiest", + "Julie Kavner", + "Michael Tucker", + "Josh Mostel", + "Seth Green" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Raising Arizona", + "year": 1987, + "cast": [ + "Nicolas Cage", + "Holly Hunter", + "John Goodman" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Rampage", + "year": 1987, + "cast": [ + "Michael Biehn", + "Deborah Van Valkenburgh", + "Nicholas Campbell", + "Alex McArthur" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Real Men", + "year": 1987, + "cast": [ + "James Belushi", + "John Ritter" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Red's Dream", + "year": 1987, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "Redneck Zombies", + "year": 1987, + "cast": [], + "genres": [ + "Horror" + ] + }, + { + "title": "Rent-a-Cop", + "year": 1987, + "cast": [ + "Burt Reynolds", + "Liza Minnelli", + "James Remar" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Return to Horror High", + "year": 1987, + "cast": [ + "Vince Edwards" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "A Return to Salem's Lot", + "year": 1987, + "cast": [ + "Michael Moriarty", + "Samuel Fuller", + "Evelyn Keyes" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Revenge of the Nerds II: Nerds in Paradise", + "year": 1987, + "cast": [ + "Robert Carradine", + "Anthony Edwards" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Right to Die", + "year": 1987, + "cast": [ + "Raquel Welch" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "RoboCop", + "year": 1987, + "cast": [ + "Peter Weller", + "Nancy Allen", + "Dan O'Herlihy", + "Ronny Cox", + "Kurtwood Smith", + "Miguel Ferrer" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Rosary Murders", + "year": 1987, + "cast": [ + "Donald Sutherland", + "Charles Durning", + "Belinda Bauer" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Roxanne", + "year": 1987, + "cast": [ + "Steve Martin", + "Daryl Hannah", + "Rick Rossovich", + "Shelley Duvall", + "Fred Willard", + "Michael J. Pollard" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "RuPaul Is: Starbooty!", + "year": 1987, + "cast": [], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Running Man", + "year": 1987, + "cast": [ + "Arnold Schwarzenegger", + "Richard Dawson", + "María Conchita Alonso" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Russkies", + "year": 1987, + "cast": [ + "Joaquin Phoenix", + "Peter Billingsley" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Salvation!", + "year": 1987, + "cast": [ + "Viggo Mortensen", + "Exene Cervenka" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Scooby-Doo Meets the Boo Brothers", + "year": 1987, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "The Secret of My Succe$s", + "year": 1987, + "cast": [ + "Michael J. Fox", + "Helen Slater", + "Margaret Whitton", + "Richard Jordan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "September", + "year": 1987, + "cast": [ + "Mia Farrow", + "Sam Waterston", + "Dianne Wiest", + "Elaine Stritch" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Shake! Otis at Monterey", + "year": 1987, + "cast": [ + "Otis Redding" + ], + "genres": [ + "Performance" + ] + }, + { + "title": "Shy People", + "year": 1987, + "cast": [ + "Barbara Hershey", + "Jill Clayburgh" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Sicilian", + "year": 1987, + "cast": [ + "Christopher Lambert", + "Terence Stamp" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Siesta", + "year": 1987, + "cast": [ + "Ellen Barkin", + "Gabriel Byrne", + "Jodie Foster", + "Grace Jones", + "Isabella Rossellini", + "Julian Sands", + "Alexei Sayle", + "Martin Sheen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sign o' the Times", + "year": 1987, + "cast": [ + "Prince" + ], + "genres": [ + "Performance" + ] + }, + { + "title": "Silent Night, Deadly Night Part 2", + "year": 1987, + "cast": [ + "Eric Freeman" + ], + "genres": [ + "Slasher" + ] + }, + { + "title": "Sister, Sister", + "year": 1987, + "cast": [ + "Jennifer Jason Leigh", + "Judith Ivey" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Slam Dance", + "year": 1987, + "cast": [ + "Tom Hulce", + "Mary Elizabeth Mastrantonio", + "Virginia Madsen", + "Harry Dean Stanton" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Slumber Party Massacre II", + "year": 1987, + "cast": [ + "Crystal Bernard" + ], + "genres": [ + "Slasher" + ] + }, + { + "title": "Snow White", + "year": 1987, + "cast": [ + "Diana Rigg" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Some Kind of Wonderful", + "year": 1987, + "cast": [ + "Eric Stoltz", + "Mary Stuart Masterson", + "Lea Thompson", + "Craig Sheffer", + "John Ashton", + "Elias Koteas", + "Maddie Corman" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Someone to Love", + "year": 1987, + "cast": [ + "Orson Welles", + "Andrea Marcovicci", + "Sally Kellerman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Someone to Watch Over Me", + "year": 1987, + "cast": [ + "Tom Berenger", + "Mimi Rogers", + "Lorraine Bracco", + "Jerry Orbach", + "Andreas Katsulas" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "Sorority House Massacre", + "year": 1987, + "cast": [ + "Angela O'Neill", + "Wendy Martel" + ], + "genres": [ + "Slasher" + ] + }, + { + "title": "Spaceballs", + "year": 1987, + "cast": [ + "John Candy", + "Bill Pullman", + "Rick Moranis", + "Joan Rivers", + "Daphne Zuniga", + "Mel Brooks" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Square Dance", + "year": 1987, + "cast": [ + "Winona Ryder", + "Rob Lowe", + "Jason Robards" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Squeeze", + "year": 1987, + "cast": [ + "Michael Keaton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Stakeout", + "year": 1987, + "cast": [ + "Richard Dreyfuss", + "Emilio Estevez", + "Madeleine Stowe", + "Aidan Quinn" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Steel Dawn", + "year": 1987, + "cast": [ + "Patrick Swayze", + "Lisa Niemi" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Stepfather", + "year": 1987, + "cast": [ + "Terry O'Quinn", + "Jill Schoelen", + "Shelley Hack" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Still Crazy Like a Fox", + "year": 1987, + "cast": [ + "Jack Warden", + "John Rubinstein" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Straight to Hell", + "year": 1987, + "cast": [ + "Courtney Love", + "Dennis Hopper" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Street Smart", + "year": 1987, + "cast": [ + "Christopher Reeve", + "Morgan Freeman", + "Kathy Baker" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Street Trash", + "year": 1987, + "cast": [], + "genres": [ + "Horror" + ] + }, + { + "title": "Succumbs", + "year": 1987, + "cast": [ + "R.E.M." + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Summer Heat", + "year": 1987, + "cast": [ + "Lori Singer", + "Anthony Edwards" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Summer School", + "year": 1987, + "cast": [ + "Mark Harmon", + "Kirstie Alley" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Superman IV: The Quest for Peace", + "year": 1987, + "cast": [ + "Christopher Reeve", + "Gene Hackman", + "Margot Kidder", + "Mariel Hemingway", + "Jon Cryer", + "Jackie Cooper" + ], + "genres": [ + "Superhero" + ] + }, + { + "title": "Superstar: The Karen Carpenter Story", + "year": 1987, + "cast": [], + "genres": [ + "Biography" + ] + }, + { + "title": "Surf Nazis Must Die", + "year": 1987, + "cast": [], + "genres": [] + }, + { + "title": "Surrender", + "year": 1987, + "cast": [ + "Michael Caine", + "Sally Field", + "Steve Guttenberg" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Suspect", + "year": 1987, + "cast": [ + "Cher", + "Dennis Quaid", + "Liam Neeson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sweet Country", + "year": 1987, + "cast": [ + "Jane Alexander", + "John Cullum", + "Franco Nero" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sweet Revenge", + "year": 1987, + "cast": [ + "Nancy Allen", + "Gina Gershon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Swimming to Cambodia", + "year": 1987, + "cast": [ + "Spalding Gray" + ], + "genres": [] + }, + { + "title": "Teen Wolf Too", + "year": 1987, + "cast": [ + "Jason Bateman", + "Kim Darby", + "John Astin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Terminus", + "year": 1987, + "cast": [ + "Karen Allen", + "Jürgen Prochnow" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Terror Squad", + "year": 1987, + "cast": [ + "Chuck Connors" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "They Still Call Me Bruce", + "year": 1987, + "cast": [ + "Johnny Yune", + "Robert Guillaume" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Three Men and a Baby", + "year": 1987, + "cast": [ + "Steve Guttenberg", + "Tom Selleck", + "Ted Danson", + "Nancy Travis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Three O'Clock High", + "year": 1987, + "cast": [ + "Casey Siemaszko", + "Richard Tyson", + "Jeffrey Tambor" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Three for the Road", + "year": 1987, + "cast": [ + "Charlie Sheen", + "Sally Kellerman" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Throw Momma from the Train", + "year": 1987, + "cast": [ + "Billy Crystal", + "Danny DeVito", + "Anne Ramsey", + "Kate Mulgrew" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Thunder Prince", + "year": 1987, + "cast": [], + "genres": [] + }, + { + "title": "A Tiger's Tale", + "year": 1987, + "cast": [ + "Ann-Margret", + "C. Thomas Howell", + "Charles Durning" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Tigershark", + "year": 1987, + "cast": [], + "genres": [ + "Martial Arts" + ] + }, + { + "title": "Tin Men", + "year": 1987, + "cast": [ + "Richard Dreyfuss", + "Danny DeVito", + "Barbara Hershey" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Tough Guys Don't Dance", + "year": 1987, + "cast": [ + "Ryan O'Neal", + "Isabella Rossellini", + "Lawrence Tierney" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Trouble with Spies", + "year": 1987, + "cast": [ + "Donald Sutherland", + "Ned Beatty", + "Ruth Gordon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Uncle Meat", + "year": 1987, + "cast": [ + "Frank Zappa", + "Linda Ronstadt", + "Haskell Wexler" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Untouchables", + "year": 1987, + "cast": [ + "Sean Connery", + "Kevin Costner", + "Andy García", + "Robert De Niro", + "Patricia Clarkson", + "Charles Martin Smith" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Video Dead", + "year": 1987, + "cast": [], + "genres": [ + "Horror" + ] + }, + { + "title": "Video from Hell", + "year": 1987, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "Waiting for the Moon", + "year": 1987, + "cast": [ + "Linda Hunt", + "Linda Bassett" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Walker", + "year": 1987, + "cast": [ + "Ed Harris", + "Marlee Matlin" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Wall Street", + "year": 1987, + "cast": [ + "Charlie Sheen", + "Michael Douglas", + "Daryl Hannah", + "Martin Sheen", + "Hal Holbrook", + "Terence Stamp" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Wanted: Dead or Alive", + "year": 1987, + "cast": [ + "Rutger Hauer", + "Gene Simmons", + "Mel Harris" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Weeds", + "year": 1987, + "cast": [ + "Nick Nolte", + "Ernie Hudson", + "William Forsythe" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Whales of August", + "year": 1987, + "cast": [ + "Bette Davis", + "Lillian Gish", + "Vincent Price", + "Ann Sothern" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "White of the Eye", + "year": 1987, + "cast": [ + "David Keith", + "Cathy Moriarty" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "White Water Summer", + "year": 1987, + "cast": [ + "Kevin Bacon", + "Sean Astin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Who's That Girl", + "year": 1987, + "cast": [ + "Madonna", + "Griffin Dunne", + "Haviland Morris", + "Bibi Besch" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Wild Thing", + "year": 1987, + "cast": [ + "Robert Knepper", + "Kathleen Quinlan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Witches of Eastwick", + "year": 1987, + "cast": [ + "Susan Sarandon", + "Cher", + "Michelle Pfeiffer", + "Jack Nicholson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Worst of Faces of Death", + "year": 1987, + "cast": [], + "genres": [ + "Horror" + ] + }, + { + "title": "Yogi's Great Escape", + "year": 1987, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "You Ruined My Life", + "year": 1987, + "cast": [ + "Soleil Moon Frye" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Zombie High", + "year": 1987, + "cast": [ + "Virginia Madsen" + ], + "genres": [ + "Horror", + "Comedy" + ] + }, + { + "title": "18 Again!", + "year": 1988, + "cast": [ + "George Burns", + "Charlie Schlatter", + "Tony Roberts" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "1969", + "year": 1988, + "cast": [ + "Robert Downey, Jr.", + "Kiefer Sutherland", + "Bruce Dern", + "Winona Ryder", + "Joanna Cassidy", + "Mariette Hartley" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "'68", + "year": 1988, + "cast": [ + "Shony Alex Braun", + "Nike Doukas" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Above the Law", + "year": 1988, + "cast": [ + "Steven Seagal", + "Pam Grier", + "Sharon Stone" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Accidental Tourist", + "year": 1988, + "cast": [ + "William Hurt", + "Kathleen Turner", + "Geena Davis", + "Amy Wright", + "Bill Pullman", + "David Ogden Stiers" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Accused", + "year": 1988, + "cast": [ + "Kelly McGillis", + "Jodie Foster" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Action Jackson", + "year": 1988, + "cast": [ + "Carl Weathers", + "Vanity", + "Craig T. Nelson", + "Sharon Stone" + ], + "genres": [ + "Action" + ] + }, + { + "title": "After Death", + "year": 1988, + "cast": [ + "Jeff Stryker", + "Candice Daly" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Alien Nation", + "year": 1988, + "cast": [ + "James Caan", + "Mandy Patinkin", + "Terence Stamp" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Alien from L.A.", + "year": 1988, + "cast": [ + "Kathy Ireland", + "William R. Moses" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "American Gothic", + "year": 1988, + "cast": [ + "Rod Steiger", + "Yvonne De Carlo", + "Sarah Torgov", + "Janet Wright" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "And God Created Woman", + "year": 1988, + "cast": [ + "Rebecca De Mornay", + "Vincent Spano", + "Frank Langella" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Another Woman", + "year": 1988, + "cast": [ + "Mia Farrow", + "Gena Rowlands", + "Gene Hackman", + "Ian Holm" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Appointment With Death", + "year": 1988, + "cast": [ + "Peter Ustinov", + "Lauren Bacall", + "Carrie Fisher", + "John Gielgud", + "Piper Laurie", + "Hayley Mills", + "Jenny Seagrove", + "Nicholas Guest", + "David Soul" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Appointments of Dennis Jennings", + "year": 1988, + "cast": [ + "Steven Wright", + "Rowan Atkinson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Arthur 2: On the Rocks", + "year": 1988, + "cast": [ + "Dudley Moore", + "Liza Minnelli", + "John Gielgud", + "Geraldine Fitzgerald", + "Kathy Bates" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Baby M", + "year": 1988, + "cast": [ + "JoBeth Williams", + "John Shea", + "Bruce Weitz", + "Robin Strasser", + "Dabney Coleman" + ], + "genres": [ + "Drama", + "Biography" + ] + }, + { + "title": "Bad Dreams", + "year": 1988, + "cast": [ + "Jennifer Rubin" + ], + "genres": [ + "Horror", + "Thriller" + ] + }, + { + "title": "Bat*21", + "year": 1988, + "cast": [ + "Gene Hackman", + "Danny Glover", + "Jerry Reed" + ], + "genres": [ + "War", + "Biography" + ] + }, + { + "title": "Beaches", + "year": 1988, + "cast": [ + "Bette Midler", + "Barbara Hershey", + "John Heard", + "James Read", + "Lainie Kazan", + "Spalding Gray" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Beast", + "year": 1988, + "cast": [ + "Jason Patric", + "Steven Bauer", + "George Dzundza", + "Stephen Baldwin" + ], + "genres": [ + "War" + ] + }, + { + "title": "Beetlejuice", + "year": 1988, + "cast": [ + "Michael Keaton", + "Alec Baldwin", + "Geena Davis", + "Jeffrey Jones", + "Catherine O'Hara", + "Winona Ryder" + ], + "genres": [ + "Comedy", + "Fantasy" + ] + }, + { + "title": "Betrayed", + "year": 1988, + "cast": [ + "Debra Winger", + "Tom Berenger", + "John Heard" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Big", + "year": 1988, + "cast": [ + "Tom Hanks", + "Elizabeth Perkins", + "Robert Loggia", + "John Heard", + "Jared Rushton", + "Mercedes Ruehl" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Big Blue", + "year": 1988, + "cast": [ + "Rosanna Arquette", + "Jean-Marc Barr", + "Jean Reno" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Big Business", + "year": 1988, + "cast": [ + "Lily Tomlin", + "Bette Midler" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Big Time", + "year": 1988, + "cast": [ + "Tom Waits" + ], + "genres": [ + "Performance" + ] + }, + { + "title": "Big Top Pee-wee", + "year": 1988, + "cast": [ + "Paul Reubens", + "Penelope Ann Miller", + "Kris Kristofferson", + "Valeria Golino" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Biloxi Blues", + "year": 1988, + "cast": [ + "Matthew Broderick", + "Christopher Walken", + "Penelope Ann Miller" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Bird", + "year": 1988, + "cast": [ + "Forest Whitaker", + "Diane Venora" + ], + "genres": [ + "Drama", + "Biography" + ] + }, + { + "title": "Black Eagle", + "year": 1988, + "cast": [ + "Sho Kosugi", + "Jean-Claude Van Damme" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Black Roses", + "year": 1988, + "cast": [], + "genres": [ + "Horror" + ] + }, + { + "title": "The Blob", + "year": 1988, + "cast": [ + "Kevin Dillon", + "Shawnee Smith", + "Candy Clark" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Blood Orgy of the Leather Girls", + "year": 1988, + "cast": [], + "genres": [ + "Comedy" + ] + }, + { + "title": "Bloodsport", + "year": 1988, + "cast": [ + "Jean-Claude Van Damme", + "Donald Gibb", + "Forest Whitaker" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Bloodstone", + "year": 1988, + "cast": [ + "Rajinikanth" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Blue Iguana", + "year": 1988, + "cast": [ + "Dylan McDermott" + ], + "genres": [ + "Action", + "Comedy" + ] + }, + { + "title": "The Boost", + "year": 1988, + "cast": [ + "James Woods", + "Sean Young" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Bourne Identity", + "year": 1988, + "cast": [ + "Richard Chamberlain", + "Jaclyn Smith" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "Braddock: Missing in Action III", + "year": 1988, + "cast": [ + "Chuck Norris" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Brain Damage", + "year": 1988, + "cast": [ + "Rick Hearst" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Bravestarr: The Legend", + "year": 1988, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "Bright Lights, Big City", + "year": 1988, + "cast": [ + "Michael J. Fox", + "Kiefer Sutherland", + "Phoebe Cates", + "Dianne Wiest", + "Tracy Pollan", + "Swoosie Kurtz", + "Jason Robards" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Bull Durham", + "year": 1988, + "cast": [ + "Kevin Costner", + "Susan Sarandon", + "Tim Robbins", + "Robert Wuhl" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Bulletproof", + "year": 1988, + "cast": [ + "Gary Busey", + "Darlanne Fluegel" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "C.H.U.D. II: Bud the C.H.U.D.", + "year": 1988, + "cast": [ + "Tricia Leigh Fisher", + "Bianca Jagger" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Caddyshack II", + "year": 1988, + "cast": [ + "Jackie Mason", + "Dyan Cannon", + "Randy Quaid", + "Robert Stack", + "Jonathan Silverman", + "Chevy Chase", + "Dan Aykroyd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Call Me", + "year": 1988, + "cast": [ + "Patricia Charbonneau", + "Boyd Gaines", + "Steve Buscemi" + ], + "genres": [ + "Erotic", + "Thriller" + ] + }, + { + "title": "Casual Sex?", + "year": 1988, + "cast": [ + "Lea Thompson", + "Victoria Jackson", + "Andrew Dice Clay" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Catacombs", + "year": 1988, + "cast": [ + "Timothy Van Patten", + "Ian Abercrombie" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Cellar Dweller", + "year": 1988, + "cast": [ + "Debrah Farentino" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Child's Play", + "year": 1988, + "cast": [ + "Catherine Hicks", + "Chris Sarandon", + "Alex Vincent", + "Brad Dourif" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Chocolate War", + "year": 1988, + "cast": [ + "John Glover", + "Ilan Mitchell-Smith" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Christmas in Tattertown", + "year": 1988, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "Clara's Heart", + "year": 1988, + "cast": [ + "Whoopi Goldberg", + "Kathleen Quinlan", + "Neil Patrick Harris" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Clean and Sober", + "year": 1988, + "cast": [ + "Michael Keaton", + "Morgan Freeman", + "Kathy Baker" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Clownhouse", + "year": 1988, + "cast": [ + "Sam Rockwell" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Cocktail", + "year": 1988, + "cast": [ + "Tom Cruise", + "Bryan Brown", + "Elisabeth Shue" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Cocoon: The Return", + "year": 1988, + "cast": [ + "Don Ameche", + "Hume Cronyn", + "Wilford Brimley", + "Steve Guttenberg", + "Jessica Tandy", + "Maureen Stapleton", + "Tahnee Welch", + "Barret Oliver", + "Courteney Cox" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Colors", + "year": 1988, + "cast": [ + "Sean Penn", + "Robert Duvall", + "María Conchita Alonso" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Comic Book Confidential", + "year": 1988, + "cast": [ + "Robert Crumb", + "Stan Lee", + "Harvey Pekar" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Coming to America", + "year": 1988, + "cast": [ + "Eddie Murphy", + "Arsenio Hall", + "James Earl Jones" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Cop", + "year": 1988, + "cast": [ + "James Woods", + "Lesley Ann Warren", + "Charles Durning" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Couch Trip", + "year": 1988, + "cast": [ + "Dan Aykroyd", + "Charles Grodin", + "Walter Matthau", + "Donna Dixon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Crash Course", + "year": 1988, + "cast": [ + "Alyssa Milano", + "Jackee" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Crossing Delancey", + "year": 1988, + "cast": [ + "Amy Irving", + "Peter Riegert", + "Sylvia Miles", + "Jeroen Krabbe" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "A Cry in the Dark", + "year": 1988, + "cast": [ + "Meryl Streep", + "Sam Neill" + ], + "genres": [ + "Documentary", + "Drama" + ] + }, + { + "title": "D.O.A.", + "year": 1988, + "cast": [ + "Meg Ryan", + "Dennis Quaid", + "Daniel Stern", + "Charlotte Rampling" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "Da", + "year": 1988, + "cast": [ + "Barnard Hughes", + "Martin Sheen", + "William Hickey" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Daffy Duck's Quackbusters", + "year": 1988, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "Dance 'Til Dawn", + "year": 1988, + "cast": [ + "Alyssa Milano" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dangerous Curves", + "year": 1988, + "cast": [ + "Tate Donovan", + "Grant Heslov", + "Robert Stack" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Dangerous Liaisons", + "year": 1988, + "cast": [ + "Michelle Pfeiffer", + "Glenn Close", + "John Malkovich", + "Keanu Reeves", + "Uma Thurman", + "Swoosie Kurtz", + "Mildred Natwick" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dead Heat", + "year": 1988, + "cast": [ + "Treat Williams", + "Joe Piscopo", + "Darren McGavin" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Dead Next Door", + "year": 1988, + "cast": [], + "genres": [ + "Horror" + ] + }, + { + "title": "The Dead Pool", + "year": 1988, + "cast": [ + "Clint Eastwood", + "Liam Neeson", + "Patricia Clarkson", + "Jim Carrey" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "Dead Ringers", + "year": 1988, + "cast": [ + "Jeremy Irons", + "Geneviève Bujold" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dead Solid Perfect", + "year": 1988, + "cast": [ + "Randy Quaid", + "Kathryn Harrold", + "Corinne Bohrer" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Deadly Dreams", + "year": 1988, + "cast": [ + "Juliette Cummins" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Death Faces", + "year": 1988, + "cast": [], + "genres": [ + "Horror" + ] + }, + { + "title": "The Decline of Western Civilization II", + "year": 1988, + "cast": [ + "Aerosmith", + "Kiss", + "Ozzy Osbourne" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Destroyer", + "year": 1988, + "cast": [ + "Lyle Alzado", + "Anthony Perkins" + ], + "genres": [ + "Action", + "Horror" + ] + }, + { + "title": "Die Hard", + "year": 1988, + "cast": [ + "Bruce Willis", + "Alan Rickman", + "Bonnie Bedelia", + "William Atherton", + "Paul Gleason", + "Reginald VelJohnson", + "Alexander Godunov" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Dirty Rotten Scoundrels", + "year": 1988, + "cast": [ + "Michael Caine", + "Steve Martin", + "Glenne Headly" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Distant Thunder", + "year": 1988, + "cast": [ + "John Lithgow", + "Ralph Macchio" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dominick and Eugene", + "year": 1988, + "cast": [ + "Ray Liotta", + "Tom Hulce", + "Jamie Lee Curtis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Drifter", + "year": 1988, + "cast": [ + "Miles O'Keeffe", + "Kim Delaney", + "Timothy Bottoms" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Earth Girls Are Easy", + "year": 1988, + "cast": [ + "Geena Davis", + "Jeff Goldblum", + "Jim Carrey", + "Damon Wayans" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Eight Men Out", + "year": 1988, + "cast": [ + "John Cusack", + "Charlie Sheen", + "David Strathairn", + "John Mahoney", + "Clifton James", + "D. B. Sweeney", + "Studs Terkel" + ], + "genres": [ + "Drama", + "Biography" + ] + }, + { + "title": "Elvira, Mistress of the Dark", + "year": 1988, + "cast": [ + "Cassandra Peterson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Elvis and Me", + "year": 1988, + "cast": [ + "Dale Midkiff", + "Susan Walters" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Ernest Saves Christmas", + "year": 1988, + "cast": [ + "Jim Varney" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Everybody's All-American", + "year": 1988, + "cast": [ + "Dennis Quaid", + "Jessica Lange", + "Timothy Hutton", + "John Goodman", + "Patricia Clarkson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Far North", + "year": 1988, + "cast": [ + "Jessica Lange", + "Charles Durning", + "Patricia Arquette" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Feds", + "year": 1988, + "cast": [ + "Rebecca De Mornay", + "Mary Gross" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Fish Called Wanda", + "year": 1988, + "cast": [ + "John Cleese", + "Kevin Kline", + "Jamie Lee Curtis", + "Michael Palin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Flesheater", + "year": 1988, + "cast": [], + "genres": [ + "Horror" + ] + }, + { + "title": "For Keeps?", + "year": 1988, + "cast": [ + "Molly Ringwald", + "Randall Batinkoff", + "Kenneth Mars" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Frantic", + "year": 1988, + "cast": [ + "Harrison Ford", + "Emmanuelle Seigner", + "Betty Buckley" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Fresh Horses", + "year": 1988, + "cast": [ + "Molly Ringwald", + "Andrew McCarthy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Friday the 13th Part VII: The New Blood", + "year": 1988, + "cast": [ + "Lar Park Lincoln", + "Kane Hodder" + ], + "genres": [ + "Slasher" + ] + }, + { + "title": "Fright Night II", + "year": 1988, + "cast": [], + "genres": [ + "Horror" + ] + }, + { + "title": "Full Moon in Blue Water", + "year": 1988, + "cast": [ + "Gene Hackman", + "Teri Garr", + "Burgess Meredith" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Fun Down There", + "year": 1988, + "cast": [ + "Michael Waite", + "Yvonne Fisher" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Funny Farm", + "year": 1988, + "cast": [ + "Chevy Chase", + "Madolyn Smith" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Garfield: His 9 Lives", + "year": 1988, + "cast": [], + "genres": [ + "Comedy" + ] + }, + { + "title": "'Gator Bait II: Cajun Justice", + "year": 1988, + "cast": [ + "Jan Mackenzie", + "Jocelyn Boudreaux", + "Rocky Dugas", + "Keith Gros" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Good Mother", + "year": 1988, + "cast": [ + "Diane Keaton", + "Liam Neeson", + "Jason Robards" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Good, the Bad, and Huckleberry Hound", + "year": 1988, + "cast": [], + "genres": [ + "Comedy" + ] + }, + { + "title": "Gorillas in the Mist: The Story of Dian Fossey", + "year": 1988, + "cast": [ + "Sigourney Weaver", + "Bryan Brown" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Gotham", + "year": 1988, + "cast": [ + "Tommy Lee Jones", + "Virginia Madsen" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Grave of the Fireflies", + "year": 1988, + "cast": [], + "genres": [ + "Drama" + ] + }, + { + "title": "The Great Escape II: The Untold Story", + "year": 1988, + "cast": [ + "Christopher Reeve", + "Ian McShane", + "Donald Pleasence" + ], + "genres": [ + "War" + ] + }, + { + "title": "The Great Outdoors", + "year": 1988, + "cast": [ + "Dan Aykroyd", + "John Candy", + "Annette Bening" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hairspray", + "year": 1988, + "cast": [ + "Ricki Lake", + "Sonny Bono", + "Debbie Harry", + "Divine", + "Jerry Stiller", + "Ruth Brown", + "Pia Zadora" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Halloween 4: The Return of Michael Myers", + "year": 1988, + "cast": [ + "Donald Pleasence", + "Ellie Cornell", + "Danielle Harris" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Hanna's War", + "year": 1988, + "cast": [ + "Ellen Burstyn", + "Maruschka Detmers", + "Donald Pleasence" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Heart of Midnight", + "year": 1988, + "cast": [ + "Jennifer Jason Leigh", + "Peter Coyote", + "Brenda Vaccaro" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Heartbreak Hotel", + "year": 1988, + "cast": [ + "David Keith", + "Tuesday Weld" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Heathers", + "year": 1988, + "cast": [ + "Winona Ryder", + "Christian Slater", + "Shannen Doherty" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hellbound: Hellraiser II", + "year": 1988, + "cast": [ + "Clare Higgins", + "Ashley Laurence", + "Doug Bradley" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Hero and the Terror", + "year": 1988, + "cast": [ + "Chuck Norris", + "Brynn Thayer" + ], + "genres": [ + "Action" + ] + }, + { + "title": "High Spirits", + "year": 1988, + "cast": [ + "Peter O'Toole", + "Daryl Hannah", + "Steve Guttenberg", + "Beverly D'Angelo", + "Liam Neeson", + "Peter Gallagher", + "Jennifer Tilly" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hobgoblins", + "year": 1988, + "cast": [ + "Tom Bartlett" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Hollywood Chainsaw Hookers", + "year": 1988, + "cast": [], + "genres": [ + "Comedy" + ] + }, + { + "title": "Homeboy", + "year": 1988, + "cast": [ + "Mickey Rourke", + "Christopher Walken" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hot to Trot", + "year": 1988, + "cast": [ + "Bobcat Goldthwait", + "Dabney Coleman", + "Virginia Madsen" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The House on Carroll Street", + "year": 1988, + "cast": [ + "Kelly McGillis", + "Jeff Daniels", + "Mandy Patinkin" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Howling IV: The Original Nightmare", + "year": 1988, + "cast": [ + "Romy Windsor" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "I'm Gonna Git You Sucka", + "year": 1988, + "cast": [ + "Jim Brown", + "Isaac Hayes", + "Bernie Casey" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Ika Hands", + "year": 1988, + "cast": [], + "genres": [ + "Drama" + ] + }, + { + "title": "Illegally Yours", + "year": 1988, + "cast": [ + "Rob Lowe", + "Colleen Camp", + "Kenneth Mars" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Incredible Hulk Returns", + "year": 1988, + "cast": [ + "Bill Bixby", + "Lou Ferrigno", + "Lee Purcell", + "Steve Levitt", + "Jack Colvin", + "Erik Kramer" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Iron Eagle II", + "year": 1988, + "cast": [ + "Louis Gossett, Jr.", + "Mark Humphrey" + ], + "genres": [ + "Action" + ] + }, + { + "title": "It Came from Somewhere Else", + "year": 1988, + "cast": [ + "William Vanarsdale" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Jack's Back", + "year": 1988, + "cast": [ + "James Spader", + "Cynthia Gibb" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Johnny Be Good", + "year": 1988, + "cast": [ + "Anthony Michael Hall", + "Robert Downey, Jr.", + "Uma Thurman" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Justin Case", + "year": 1988, + "cast": [ + "George Carlin", + "Molly Hagan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Kansas", + "year": 1988, + "cast": [ + "Matt Dillon", + "Andrew McCarthy" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Kenny", + "year": 1988, + "cast": [ + "Kenny Easterday" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Killer Klowns from Outer Space", + "year": 1988, + "cast": [ + "Grant Cramer" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Kiss", + "year": 1988, + "cast": [ + "Joanna Pacula", + "Meredith Salenger" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Lady in White", + "year": 1988, + "cast": [ + "Lukas Haas", + "Len Cariou" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Land Before Time", + "year": 1988, + "cast": [ + "Gabriel Damon", + "Candace Hutson", + "Judith Barsi", + "Will Ryan", + "Helen Shaver" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Last Rites", + "year": 1988, + "cast": [ + "Tom Berenger", + "Daphne Zuniga", + "Anne Twomey" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Last Temptation of Christ", + "year": 1988, + "cast": [ + "Willem Dafoe", + "Barbara Hershey", + "Harvey Keitel", + "Harry Dean Stanton", + "David Bowie" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Laura Lansing Slept Here", + "year": 1988, + "cast": [ + "Katharine Hepburn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "License to Drive", + "year": 1988, + "cast": [ + "Corey Haim", + "Corey Feldman", + "Carol Kane", + "Heather Graham" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Light Years", + "year": 1988, + "cast": [ + "Voices of", + "Glenn Close", + "Jennifer Grey", + "Terrence Mann" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Little Nikita", + "year": 1988, + "cast": [ + "Sidney Poitier", + "River Phoenix" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Mac and Me", + "year": 1988, + "cast": [ + "Christine Ebersole" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Macho Dancer", + "year": 1988, + "cast": [], + "genres": [ + "Comedy" + ] + }, + { + "title": "Madame Sousatzka", + "year": 1988, + "cast": [ + "Shirley MacLaine", + "Navin Chowdhry", + "Shabana Azmi", + "Twiggy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Man for All Seasons", + "year": 1988, + "cast": [ + "Charlton Heston", + "John Gielgud", + "Vanessa Redgrave" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "The Man from Snowy River II", + "year": 1988, + "cast": [ + "Tom Burlinson", + "Brian Dennehy" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Maniac Cop", + "year": 1988, + "cast": [ + "Tom Atkins", + "Bruce Campbell", + "Robert Z'Dar", + "William Smith", + "Richard Roundtree" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Married to the Mob", + "year": 1988, + "cast": [ + "Michelle Pfeiffer", + "Matthew Modine", + "Dean Stockwell", + "Mercedes Ruehl", + "Oliver Platt", + "Alec Baldwin", + "Nancy Travis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Masquerade", + "year": 1988, + "cast": [ + "Rob Lowe", + "Meg Tilly", + "Kim Cattrall", + "Doug Savant", + "Dana Delany" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Memories of Me", + "year": 1988, + "cast": [ + "Billy Crystal", + "JoBeth Williams", + "Alan King" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Messenger of Death", + "year": 1988, + "cast": [ + "Charles Bronson", + "Trish Van Devere", + "Daniel Benzali" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Mickey's 60th Birthday", + "year": 1988, + "cast": [], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Midnight Run", + "year": 1988, + "cast": [ + "Robert De Niro", + "Charles Grodin", + "Yaphet Kotto", + "John Ashton", + "Dennis Farina" + ], + "genres": [ + "Crime", + "Comedy" + ] + }, + { + "title": "The Milagro Beanfield War", + "year": 1988, + "cast": [ + "Sônia Braga", + "Rubén Blades", + "Christopher Walken", + "Melanie Griffith", + "Daniel Stern" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Miles from Home", + "year": 1988, + "cast": [ + "Richard Gere", + "Kevin Anderson", + "John Malkovich", + "Brian Dennehy", + "Penelope Ann Miller", + "Helen Hunt" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Miracle Mile", + "year": 1988, + "cast": [ + "Anthony Edwards", + "Mare Winningham" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Missile", + "year": 1988, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "Mississippi Burning", + "year": 1988, + "cast": [ + "Gene Hackman", + "Willem Dafoe", + "Frances McDormand" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Moderns", + "year": 1988, + "cast": [ + "Keith Carradine", + "Linda Fiorentino", + "Genevieve Bujold", + "John Lone", + "Geraldine Chaplin", + "Kevin J. O'Connor" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Monkey Shines", + "year": 1988, + "cast": [ + "John Pankow", + "Jason Beghe", + "Joyce Van Patten" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Moon Over Parador", + "year": 1988, + "cast": [ + "Richard Dreyfuss", + "Raúl Juliá", + "Sônia Braga", + "Jonathan Winters" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Moonwalker", + "year": 1988, + "cast": [ + "Michael Jackson", + "Joe Pesci", + "Sean Lennon" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Moving", + "year": 1988, + "cast": [ + "Richard Pryor", + "Randy Quaid", + "Dana Carvey" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mr. North", + "year": 1988, + "cast": [ + "Anthony Edwards", + "Robert Mitchum", + "Lauren Bacall" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Murder of Mary Phagan", + "year": 1988, + "cast": [ + "Jack Lemmon", + "Kevin Spacey", + "Cynthia Nixon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "My Best Friend Is a Vampire", + "year": 1988, + "cast": [ + "Robert Sean Leonard", + "David Warner" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "My Stepmother Is an Alien", + "year": 1988, + "cast": [ + "Kim Basinger", + "Dan Aykroyd", + "Alyson Hannigan", + "Jon Lovitz" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mystic Pizza", + "year": 1988, + "cast": [ + "Julia Roberts", + "Annabeth Gish", + "Lili Taylor", + "William R. Moses", + "Vincent D'Onofrio", + "Adam Storke" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Naked Gun: From the Files of Police Squad!", + "year": 1988, + "cast": [ + "Leslie Nielsen", + "Priscilla Presley", + "George Kennedy", + "O.J. Simpson", + "Ricardo Montalbán" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Necromancer", + "year": 1988, + "cast": [ + "Elizabeth Kaitan", + "John Tyler" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Negatives", + "year": 1988, + "cast": [ + "Duane Jones" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The New Adventures of Pippi Longstocking", + "year": 1988, + "cast": [ + "Tami Erin", + "Eileen Brennan" + ], + "genres": [ + "Family" + ] + }, + { + "title": "A New Life", + "year": 1988, + "cast": [ + "Alan Alda", + "Ann-Margret", + "Hal Linden", + "Veronica Hamel" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "The Night Before", + "year": 1988, + "cast": [ + "Keanu Reeves", + "Lori Loughlin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Night in the Life of Jimmy Reardon", + "year": 1988, + "cast": [ + "River Phoenix", + "Matthew Perry" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Nightmare at Bittercreek", + "year": 1988, + "cast": [ + "Lindsay Wagner", + "Tom Skerritt" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Nightmare on Elm Street 4: The Dream Master", + "year": 1988, + "cast": [ + "Robert Englund" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Ninja Strike Force", + "year": 1988, + "cast": [], + "genres": [ + "Action" + ] + }, + { + "title": "No Retreat, No Surrender 2", + "year": 1988, + "cast": [ + "Loren Avedon" + ], + "genres": [ + "Martial Arts" + ] + }, + { + "title": "Not Of This Earth", + "year": 1988, + "cast": [ + "Traci Lords" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Off Limits", + "year": 1988, + "cast": [ + "Willem Dafoe", + "Gregory Hines", + "Amanda Pays" + ], + "genres": [ + "Drama", + "War" + ] + }, + { + "title": "Oliver & Company", + "year": 1988, + "cast": [ + "voices of", + "Billy Joel", + "Joey Lawrence", + "Bette Midler", + "Dom DeLuise", + "Cheech Marin", + "Robert Loggia", + "Sheryl Lee Ralph" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Ollie Hopnoodle's Haven of Bliss", + "year": 1988, + "cast": [ + "Jerry O'Connell", + "James Sikking", + "Jean Shepherd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Out of Time", + "year": 1988, + "cast": [ + "Bill Maher" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Pass the Ammo", + "year": 1988, + "cast": [ + "Bill Paxton", + "Tim Curry" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Patty Hearst", + "year": 1988, + "cast": [ + "Natasha Richardson", + "William Forsythe", + "Ving Rhames", + "Frances Fisher", + "Dana Delany" + ], + "genres": [ + "Drama", + "Biography" + ] + }, + { + "title": "Permanent Record", + "year": 1988, + "cast": [ + "Keanu Reeves", + "Jennifer Rubin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Phantasm II", + "year": 1988, + "cast": [ + "James LeGros", + "Reggie Bannister", + "Angus Scrimm" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Picasso Trigger", + "year": 1988, + "cast": [ + "Dona Speir" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Plain Clothes", + "year": 1988, + "cast": [ + "Arliss Howard", + "Suzy Amis", + "Seymour Cassel" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Platoon Leader", + "year": 1988, + "cast": [ + "Michael Dudikoff", + "Michael DeLorenzo" + ], + "genres": [ + "War" + ] + }, + { + "title": "Police Academy 5: Assignment Miami Beach", + "year": 1988, + "cast": [ + "Bubba Smith", + "David Graf", + "Michael Winslow", + "Leslie Easterbrook" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Poltergeist III", + "year": 1988, + "cast": [ + "Heather O'Rourke", + "Tom Skerritt", + "Nancy Allen", + "Zelda Rubinstein" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Pound Puppies and the Legend of Big Paw", + "year": 1988, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "The Presidio", + "year": 1988, + "cast": [ + "Sean Connery", + "Mark Harmon", + "Meg Ryan" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Prince of Pennsylvania", + "year": 1988, + "cast": [ + "Keanu Reeves", + "Bonnie Bedelia" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Prison", + "year": 1988, + "cast": [ + "Viggo Mortensen", + "Chelsea Field" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Punchline", + "year": 1988, + "cast": [ + "Tom Hanks", + "Sally Field", + "John Goodman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Purple People Eater", + "year": 1988, + "cast": [ + "Neil Patrick Harris", + "Ned Beatty", + "Thora Birch" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Puss in Boots", + "year": 1988, + "cast": [ + "Christopher Walken" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Rain Man", + "year": 1988, + "cast": [ + "Dustin Hoffman", + "Tom Cruise", + "Valeria Golino" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "Rambo III", + "year": 1988, + "cast": [ + "Sylvester Stallone" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Rampage", + "year": 1988, + "cast": [ + "Michael Biehn", + "Nicholas Campbell" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Rattle and Hum", + "year": 1988, + "cast": [ + "Bono", + "U2" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Red Heat", + "year": 1988, + "cast": [ + "Arnold Schwarzenegger", + "James Belushi", + "Ed O'Ross", + "Peter Boyle", + "Laurence Fishburne", + "Gina Gershon" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Red Hot Skate Rock", + "year": 1988, + "cast": [ + "Red Hot Chili Peppers" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Remote Control", + "year": 1988, + "cast": [ + "Kevin Dillon", + "Jennifer Tilly" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Rent-A-Cop", + "year": 1988, + "cast": [ + "Burt Reynolds", + "Liza Minnelli" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Rented Lips", + "year": 1988, + "cast": [ + "Martin Mull", + "Jennifer Tilly", + "Dick Shawn", + "Robert Downey, Jr." + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Rescue", + "year": 1988, + "cast": [ + "Kevin Dillon", + "Ned Vaughn" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Return of the Killer Tomatoes", + "year": 1988, + "cast": [ + "John Astin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Return of the Living Dead Part II", + "year": 1988, + "cast": [ + "James Karen", + "Thom Mathews" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Rocket Gibraltar", + "year": 1988, + "cast": [ + "Burt Lancaster", + "Suzy Amis", + "Patricia Clarkson", + "Frances Conroy", + "Sinead Cusack", + "John Glover", + "Bill Pullman", + "Kevin Spacey", + "Macaulay Culkin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Running on Empty", + "year": 1988, + "cast": [ + "River Phoenix", + "Judd Hirsch", + "Christine Lahti", + "Martha Plimpton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Satisfaction", + "year": 1988, + "cast": [ + "Justine Bateman", + "Liam Neeson", + "Trini Alvarado" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Saturday the 14th Strikes Back", + "year": 1988, + "cast": [ + "Ray Walston" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Scarecrows", + "year": 1988, + "cast": [ + "Ted Vernon" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "School Daze", + "year": 1988, + "cast": [ + "Laurence Fishburne", + "Giancarlo Esposito", + "Tisha Campbell", + "Ossie Davis", + "Spike Lee" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Scooby-Doo and the Ghoul School", + "year": 1988, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "Scooby-Doo and the Reluctant Werewolf", + "year": 1988, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "Scrooged", + "year": 1988, + "cast": [ + "Bill Murray", + "Karen Allen", + "Alfre Woodard", + "John Forsythe", + "Robert Mitchum", + "John Glover", + "Bobcat Goldthwait", + "Carol Kane" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Serpent and the Rainbow", + "year": 1988, + "cast": [ + "Bill Pullman", + "Cathy Tyson", + "Paul Winfield" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Seventh Sign", + "year": 1988, + "cast": [ + "Demi Moore", + "Michael Biehn", + "Jürgen Prochnow" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Slaughterhouse Rock", + "year": 1988, + "cast": [ + "Toni Basil" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Shadow Man", + "year": 1988, + "cast": [ + "Tom Hulce" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Shadows in the Storm", + "year": 1988, + "cast": [ + "Mia Sara", + "Ned Beatty", + "Michael Madsen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Shakedown", + "year": 1988, + "cast": [ + "Peter Weller", + "Sam Elliott" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "She's Having a Baby", + "year": 1988, + "cast": [ + "Kevin Bacon", + "Elizabeth McGovern", + "Alec Baldwin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Shoot to Kill", + "year": 1988, + "cast": [ + "Sidney Poitier", + "Tom Berenger", + "Kirstie Alley" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Short Circuit 2", + "year": 1988, + "cast": [ + "Fisher Stevens", + "Michael McKean", + "Cynthia Gibb" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Sleepaway Camp II: Unhappy Campers", + "year": 1988, + "cast": [ + "Pamela Springsteen", + "Renee Estevez" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Slugs", + "year": 1988, + "cast": [ + "Michael Garfield" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Some Girls", + "year": 1988, + "cast": [ + "Patrick Dempsey", + "Jennifer Connelly" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Sorority Babes in the Slimeball Bowl-O-Rama", + "year": 1988, + "cast": [ + "Linnea Quigley" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Spalding Gray: Terrors of Pleasure", + "year": 1988, + "cast": [], + "genres": [] + }, + { + "title": "Spellbinder", + "year": 1988, + "cast": [ + "Tim Daly", + "Kelly Preston", + "Rick Rossovich" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Spellcaster", + "year": 1988, + "cast": [ + "Adam Ant", + "Gail O'Grady" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Spike of Bensonhurst", + "year": 1988, + "cast": [ + "Sasha Mitchell", + "Ernest Borgnine" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Splash, Too", + "year": 1988, + "cast": [ + "Amy Yasbeck", + "Todd Waring" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Split Decisions", + "year": 1988, + "cast": [ + "Craig Sheffer", + "Jeff Fahey", + "Gene Hackman", + "Jennifer Beals" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Stand and Deliver", + "year": 1988, + "cast": [ + "Edward James Olmos", + "Lou Diamond Phillips" + ], + "genres": [ + "Drama", + "Biography" + ] + }, + { + "title": "Stars and Bars", + "year": 1988, + "cast": [ + "Daniel Day-Lewis", + "Harry Dean Stanton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Stealing Home", + "year": 1988, + "cast": [ + "Jodie Foster", + "Mark Harmon", + "Blair Brown", + "Harold Ramis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Stormy Monday", + "year": 1988, + "cast": [ + "Tommy Lee Jones", + "Melanie Griffith", + "Sting", + "Sean Bean" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Storytelling Giant", + "year": 1988, + "cast": [], + "genres": [ + "Drama" + ] + }, + { + "title": "Sunset", + "year": 1988, + "cast": [ + "Bruce Willis", + "James Garner", + "Malcolm McDowell", + "Mariel Hemingway", + "Kathleen Quinlan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Sweet Hearts Dance", + "year": 1988, + "cast": [ + "Don Johnson", + "Susan Sarandon", + "Jeff Daniels", + "Elizabeth Perkins" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Sweet Lies", + "year": 1988, + "cast": [ + "Treat Williams", + "Joanna Pacuła" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Switching Channels", + "year": 1988, + "cast": [ + "Burt Reynolds", + "Kathleen Turner", + "Christopher Reeve" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Talk Radio", + "year": 1988, + "cast": [ + "Eric Bogosian", + "Alec Baldwin", + "Ellen Greene" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Tapeheads", + "year": 1988, + "cast": [ + "Tim Robbins", + "John Cusack" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Tequila Sunrise", + "year": 1988, + "cast": [ + "Mel Gibson", + "Michelle Pfeiffer", + "Kurt Russell", + "Raul Julia", + "J.T. Walsh", + "Arliss Howard" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "They Live", + "year": 1988, + "cast": [ + "Roddy Piper", + "Keith David", + "Meg Foster" + ], + "genres": [ + "Horror", + "Comedy" + ] + }, + { + "title": "The Thin Blue Line", + "year": 1988, + "cast": [ + "(interviews)" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Time Is Money", + "year": 1988, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "A Time of Destiny", + "year": 1988, + "cast": [ + "William Hurt", + "Timothy Hutton", + "Melissa Leo" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Tin Toy", + "year": 1988, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "Tommy Tricker and the Stamp Traveller", + "year": 1988, + "cast": [], + "genres": [ + "Drama" + ] + }, + { + "title": "Too Good to Be True", + "year": 1988, + "cast": [ + "Loni Anderson", + "Patrick Duffy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Torch Song Trilogy", + "year": 1988, + "cast": [ + "Harvey Fierstein", + "Anne Bancroft", + "Matthew Broderick", + "Brian Kerwin" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Tougher Than Leather", + "year": 1988, + "cast": [ + "Joseph Simmons", + "Darryl McDaniels" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Track 29", + "year": 1988, + "cast": [ + "Theresa Russell", + "Gary Oldman", + "Christopher Lloyd" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Tucker: The Man and His Dream", + "year": 1988, + "cast": [ + "Jeff Bridges", + "Joan Allen", + "Martin Landau", + "Lloyd Bridges" + ], + "genres": [ + "Drama", + "Biography" + ] + }, + { + "title": "Twins", + "year": 1988, + "cast": [ + "Arnold Schwarzenegger", + "Danny DeVito", + "Chloe Webb", + "Kelly Preston" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Two Moon Junction", + "year": 1988, + "cast": [ + "Sherilyn Fenn", + "Richard Tyson", + "Kristy McNichol", + "Louise Fletcher" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Unbearable Lightness of Being", + "year": 1988, + "cast": [ + "Daniel Day-Lewis", + "Juliette Binoche", + "Lena Olin", + "Derek de Lint" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Understudy: Graveyard Shift II", + "year": 1988, + "cast": [], + "genres": [ + "Comedy" + ] + }, + { + "title": "Uninvited (1988 film)", + "year": 1988, + "cast": [], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Very Brady Christmas", + "year": 1988, + "cast": [ + "Florence Henderson", + "Robert Reed", + "Ann B. Davis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Vibes", + "year": 1988, + "cast": [ + "Cyndi Lauper", + "Jeff Goldblum", + "Peter Falk" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Vice Versa", + "year": 1988, + "cast": [ + "Judge Reinhold", + "Fred Savage", + "Swoosie Kurtz" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Victim of the Brain", + "year": 1988, + "cast": [], + "genres": [ + "Drama" + ] + }, + { + "title": "War Party", + "year": 1988, + "cast": [ + "Billy Wirth", + "Kevin Dillon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "War and Remembrance", + "year": 1988, + "cast": [ + "Robert Mitchum", + "John Gielgud", + "Polly Bergen", + "Jane Seymour", + "Barry Bostwick", + "Hart Bochner", + "E.G. Marshall", + "Sharon Stone" + ], + "genres": [ + "Drama", + "War" + ] + }, + { + "title": "Watchers", + "year": 1988, + "cast": [ + "Corey Haim" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Waxwork", + "year": 1988, + "cast": [ + "Deborah Foreman", + "Zach Galligan" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Who Framed Roger Rabbit", + "year": 1988, + "cast": [ + "Bob Hoskins", + "Joanna Cassidy", + "Christopher Lloyd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Willow", + "year": 1988, + "cast": [ + "Warwick Davis", + "Val Kilmer", + "Joanne Whalley", + "Jean Marsh", + "Billy Barty" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Willy the Sparrow", + "year": 1988, + "cast": [], + "genres": [ + "Drama" + ] + }, + { + "title": "Witchcraft", + "year": 1988, + "cast": [], + "genres": [ + "Drama" + ] + }, + { + "title": "Working Girl", + "year": 1988, + "cast": [ + "Melanie Griffith", + "Harrison Ford", + "Sigourney Weaver", + "Joan Cusack", + "Alec Baldwin", + "Philip Bosco", + "Oliver Platt", + "Nora Dunn" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "World Gone Wild", + "year": 1988, + "cast": [ + "Bruce Dern", + "Michael Paré", + "Catherine Mary Stewart" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Young Guns", + "year": 1988, + "cast": [ + "Emilio Estevez", + "Kiefer Sutherland", + "Charlie Sheen", + "Lou Diamond Phillips", + "Dermot Mulroney", + "Casey Siemaszko" + ], + "genres": [ + "Western" + ] + }, + { + "title": "84C MoPic", + "year": 1989, + "cast": [ + "Jonathan Emerson", + "Nicholas Cascone" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Abyss", + "year": 1989, + "cast": [ + "Ed Harris", + "Mary Elizabeth Mastrantonio", + "Michael Biehn" + ], + "genres": [ + "Science Fiction", + "Drama" + ] + }, + { + "title": "After Midnight", + "year": 1989, + "cast": [ + "Marg Helgenberger", + "Marc McClure" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Alienator", + "year": 1989, + "cast": [ + "Jan-Michael Vincent", + "John Phillip Law" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Alien Seed", + "year": 1989, + "cast": [ + "Erik Estrada" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "All Dogs Go to Heaven", + "year": 1989, + "cast": [ + "Burt Reynolds", + "Dom DeLuise", + "Judith Barsi", + "Vic Tayback" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Always", + "year": 1989, + "cast": [ + "Richard Dreyfuss", + "Holly Hunter", + "John Goodman", + "Brad Johnson", + "Audrey Hepburn" + ], + "genres": [ + "Fantasy", + "Romance" + ] + }, + { + "title": "American Ninja 3: Blood Hunt", + "year": 1989, + "cast": [ + "David Bradley", + "Steve James", + "Marjoe Gortner" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Amityville 4: The Evil Escapes", + "year": 1989, + "cast": [ + "Patty Duke", + "Jane Wyatt", + "Fredric Lehne" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Arena", + "year": 1989, + "cast": [ + "Paul Satterfield", + "Hamilton Camp" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Back to the Future Part II", + "year": 1989, + "cast": [ + "Michael J. Fox", + "Christopher Lloyd", + "Lea Thompson" + ], + "genres": [ + "Science Fiction", + "Comedy" + ] + }, + { + "title": "Batman", + "year": 1989, + "cast": [ + "Michael Keaton", + "Jack Nicholson", + "Kim Basinger", + "Robert Wuhl", + "Jack Palance", + "Billy Dee Williams" + ], + "genres": [ + "Superhero", + "Action" + ] + }, + { + "title": "Bert Rigby, You're a Fool", + "year": 1989, + "cast": [ + "Robert Lindsay", + "Robbie Coltrane", + "Anne Bancroft" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Best of the Best", + "year": 1989, + "cast": [ + "Eric Roberts", + "James Earl Jones", + "Sally Kirkland" + ], + "genres": [ + "Martial Arts" + ] + }, + { + "title": "Beverly Hills Brats", + "year": 1989, + "cast": [ + "Peter Billingsley", + "Martin Sheen" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Beyond the Stars", + "year": 1989, + "cast": [ + "Christian Slater", + "Martin Sheen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Big Picture", + "year": 1989, + "cast": [ + "Kevin Bacon", + "Martin Short", + "Teri Hatcher", + "J.T. Walsh", + "Michael McKean", + "Jennifer Jason Leigh" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Bill & Ted's Excellent Adventure", + "year": 1989, + "cast": [ + "Keanu Reeves", + "Alex Winter", + "George Carlin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Black Rain", + "year": 1989, + "cast": [ + "Michael Douglas", + "Andy García", + "Ken Takakura", + "Kate Capshaw" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Blaze", + "year": 1989, + "cast": [ + "Paul Newman", + "Lolita Davidovich" + ], + "genres": [ + "Drama", + "Biography" + ] + }, + { + "title": "Blind Fury", + "year": 1989, + "cast": [ + "Rutger Hauer", + "Terry O'Quinn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Bloodhounds of Broadway", + "year": 1989, + "cast": [ + "Matt Dillon", + "Jennifer Grey", + "Julie Hagerty", + "Rutger Hauer", + "Madonna", + "Esai Morales", + "Anita Morris", + "Randy Quaid" + ], + "genres": [ + "Drama", + "Musical" + ] + }, + { + "title": "Born on the Fourth of July", + "year": 1989, + "cast": [ + "Tom Cruise", + "Kyra Sedgwick", + "Willem Dafoe" + ], + "genres": [ + "Biography", + "Drama" + ] + }, + { + "title": "Breaking In", + "year": 1989, + "cast": [ + "Burt Reynolds", + "Casey Siemaszko" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Bridesmaids", + "year": 1989, + "cast": [ + "Shelley Hack", + "Sela Ward" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The 'Burbs", + "year": 1989, + "cast": [ + "Tom Hanks", + "Bruce Dern", + "Carrie Fisher", + "Rick Ducommun", + "Corey Feldman" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "C.H.U.D. II: Bud the C.H.U.D.", + "year": 1989, + "cast": [ + "Brian Robbins", + "Tricia Leigh Fisher", + "Bianca Jagger" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Cameron's Closet", + "year": 1989, + "cast": [ + "Scott Curtis", + "Cotter Smith", + "Tab Hunter" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Cannibal Women in the Avocado Jungle of Death", + "year": 1989, + "cast": [ + "Shannon Tweed", + "Bill Maher", + "Karen Mistal", + "Adrienne Barbeau" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Casualties of War", + "year": 1989, + "cast": [ + "Michael J. Fox", + "Sean Penn" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "Cat Chaser", + "year": 1989, + "cast": [ + "Peter Weller", + "Kelly McGillis", + "Charles Durning" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Chameleon Street", + "year": 1989, + "cast": [ + "Wendell B. Harris, Jr." + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Chances Are", + "year": 1989, + "cast": [ + "Cybill Shepherd", + "Robert Downey, Jr.", + "Ryan O'Neal", + "Mary Stuart Masterson" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Chattahoochee", + "year": 1989, + "cast": [ + "Gary Oldman", + "Dennis Hopper", + "Pamela Reed", + "Ned Beatty" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Checking Out", + "year": 1989, + "cast": [ + "Jeff Daniels", + "Melanie Mayron" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Cheetah", + "year": 1989, + "cast": [ + "Keith Coogan", + "Lucy Deakins" + ], + "genres": [ + "Family", + "Drama" + ] + }, + { + "title": "The Chilling", + "year": 1989, + "cast": [ + "Linda Blair", + "Dan Haggerty", + "Troy Donahue" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Cohen and Tate", + "year": 1989, + "cast": [ + "Roy Scheider", + "Adam Baldwin", + "Harley Cross" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Cold Feet", + "year": 1989, + "cast": [ + "Keith Carradine", + "Sally Kirkland", + "Tom Waits" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Collision Course", + "year": 1989, + "cast": [ + "Jay Leno", + "Pat Morita", + "Chris Sarandon" + ], + "genres": [ + "Action", + "Comedy" + ] + }, + { + "title": "Common Threads: Stories from the Quilt", + "year": 1989, + "cast": [ + "Narrated by", + "Dustin Hoffman", + "Music by", + "Bobby McFerrin" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Communion", + "year": 1989, + "cast": [ + "Christopher Walken", + "Lindsay Crouse", + "Frances Sternhagen" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "Cookie", + "year": 1989, + "cast": [ + "Peter Falk", + "Dianne Wiest", + "Emily Lloyd", + "Jerry Lewis" + ], + "genres": [ + "Crime", + "Comedy" + ] + }, + { + "title": "Cousins", + "year": 1989, + "cast": [ + "Ted Danson", + "Isabella Rossellini", + "Sean Young", + "William Petersen", + "Norma Aleandro", + "Lloyd Bridges" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Crimes and Misdemeanors", + "year": 1989, + "cast": [ + "Martin Landau", + "Woody Allen", + "Mia Farrow", + "Alan Alda", + "Anjelica Huston", + "Sam Waterston", + "Jerry Orbach" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Criminal Law", + "year": 1989, + "cast": [ + "Gary Oldman", + "Kevin Bacon", + "Tess Harper" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Cutting Class", + "year": 1989, + "cast": [ + "Donovan Leitch", + "Jill Schoelen", + "Brad Pitt", + "Martin Mull" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Cyborg", + "year": 1989, + "cast": [ + "Jean-Claude Van Damme", + "Deborah Richter" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Dad", + "year": 1989, + "cast": [ + "Jack Lemmon", + "Ted Danson", + "Ethan Hawke", + "Olympia Dukakis", + "Kathy Baker", + "Kevin Spacey" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Day One", + "year": 1989, + "cast": [ + "Brian Dennehy", + "David Strathairn", + "Michael Tucker" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Dead Bang", + "year": 1989, + "cast": [ + "Don Johnson", + "Tim Reid", + "Penelope Ann Miller" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Dead Calm", + "year": 1989, + "cast": [ + "Nicole Kidman", + "Sam Neill", + "Billy Zane" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "The Dead Pit", + "year": 1989, + "cast": [ + "Jeremy Slate" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Dead Poets Society", + "year": 1989, + "cast": [ + "Robin Williams", + "Robert Sean Leonard", + "Ethan Hawke", + "Josh Charles" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "DeepStar Six", + "year": 1989, + "cast": [ + "Greg Evigan", + "Nia Peeples", + "Miguel Ferrer" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Disorganized Crime", + "year": 1989, + "cast": [ + "Fred Gwynne", + "Lou Diamond Phillips", + "Rubén Blades", + "Corbin Bernsen" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Do the Right Thing", + "year": 1989, + "cast": [ + "Danny Aiello", + "Spike Lee", + "John Turturro", + "Bill Nunn", + "Ossie Davis", + "Giancarlo Esposito", + "Richard Edson", + "Rosie Perez", + "Ruby Dee" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dr. Caligari", + "year": 1989, + "cast": [ + "Madeleine Reynal", + "Laura Albert" + ], + "genres": [] + }, + { + "title": "The Dream Team", + "year": 1989, + "cast": [ + "Michael Keaton", + "Christopher Lloyd", + "Peter Boyle" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Dream a Little Dream", + "year": 1989, + "cast": [ + "Corey Feldman", + "Corey Haim", + "Meredith Salenger", + "Jason Robards", + "Piper Laurie" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Driving Miss Daisy", + "year": 1989, + "cast": [ + "Morgan Freeman", + "Jessica Tandy", + "Dan Aykroyd", + "Esther Rolle", + "Patti LuPone" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Drugstore Cowboy", + "year": 1989, + "cast": [ + "Matt Dillon", + "Kelly Lynch" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Dry White Season", + "year": 1989, + "cast": [ + "Donald Sutherland", + "Marlon Brando", + "Susan Sarandon", + "Janet Suzman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Eat a Bowl of Tea", + "year": 1989, + "cast": [ + "Cora Miao", + "Russel Wong" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Eddie and the Cruisers II: Eddie Lives!", + "year": 1989, + "cast": [ + "Michael Paré", + "Marina Orsini", + "Matthew Laurance" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Edge of Sanity", + "year": 1989, + "cast": [ + "Anthony Perkins", + "Glynis Barber" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Enemies, a Love Story", + "year": 1989, + "cast": [ + "Ron Silver", + "Anjelica Huston", + "Lena Olin", + "Margaret Sophie Stein" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Evil Below", + "year": 1989, + "cast": [ + "Paul Siebert", + "June Chadwick" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Experts", + "year": 1989, + "cast": [ + "John Travolta", + "Arye Gross", + "Kelly Preston" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Fabulous Baker Boys", + "year": 1989, + "cast": [ + "Jeff Bridges", + "Beau Bridges", + "Michelle Pfeiffer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Family Business", + "year": 1989, + "cast": [ + "Sean Connery", + "Dustin Hoffman", + "Matthew Broderick" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Farewell to the King", + "year": 1989, + "cast": [ + "Nick Nolte", + "Nigel Havers", + "Frank McRae" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Fat Man and Little Boy", + "year": 1989, + "cast": [ + "Paul Newman", + "Dwight Schultz", + "Bonnie Bedelia", + "John Cusack" + ], + "genres": [ + "Documentary", + "Drama" + ] + }, + { + "title": "The Favorite", + "year": 1989, + "cast": [ + "F. Murray Abraham", + "Maud Adams" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Field of Dreams", + "year": 1989, + "cast": [ + "Kevin Costner", + "Amy Madigan", + "James Earl Jones", + "Ray Liotta", + "Burt Lancaster", + "Timothy Busfield", + "Gaby Hoffmann" + ], + "genres": [ + "Drama", + "Fantasy" + ] + }, + { + "title": "The Final Days", + "year": 1989, + "cast": [ + "Lane Smith", + "Richard Kiley" + ], + "genres": [ + "Drama", + "Biography" + ] + }, + { + "title": "Fire and Rain", + "year": 1989, + "cast": [], + "genres": [ + "Documentary", + "Drama" + ] + }, + { + "title": "Flesh Gordon Meets the Cosmic Cheerleaders", + "year": 1989, + "cast": [], + "genres": [ + "Comedy" + ] + }, + { + "title": "Fletch Lives", + "year": 1989, + "cast": [ + "Chevy Chase", + "R. Lee Ermey", + "Hal Holbrook" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Fly II", + "year": 1989, + "cast": [ + "Eric Stoltz", + "Daphne Zuniga" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "For All Mankind", + "year": 1989, + "cast": [ + "(Mission Apollo personnel)" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Friday the 13th Part VIII: Jason Takes Manhattan", + "year": 1989, + "cast": [ + "Jensen Daggett", + "Scott Reeves", + "Kane Hodder" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Ghostbusters II", + "year": 1989, + "cast": [ + "Bill Murray", + "Dan Aykroyd", + "Sigourney Weaver", + "Harold Ramis", + "Rick Moranis", + "Ernie Hudson", + "Annie Potts", + "Peter MacNicol" + ], + "genres": [ + "Comedy", + "Science Fiction" + ] + }, + { + "title": "Ginger Ale Afternoon", + "year": 1989, + "cast": [], + "genres": [ + "Drama" + ] + }, + { + "title": "Gleaming the Cube", + "year": 1989, + "cast": [ + "Christian Slater", + "Steven Bauer", + "Tony Hawk" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Glory", + "year": 1989, + "cast": [ + "Matthew Broderick", + "Denzel Washington", + "Morgan Freeman", + "Cary Elwes", + "Andre Braugher" + ], + "genres": [ + "Drama", + "War" + ] + }, + { + "title": "Going Overboard", + "year": 1989, + "cast": [ + "Adam Sandler" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Great Balls of Fire!", + "year": 1989, + "cast": [ + "Dennis Quaid", + "Winona Ryder", + "John Doe", + "Alec Baldwin" + ], + "genres": [ + "Comedy", + "Biography" + ] + }, + { + "title": "Gross Anatomy", + "year": 1989, + "cast": [ + "Matthew Modine", + "Daphne Zuniga", + "Christine Lahti" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Halloween 5: The Revenge of Michael Myers", + "year": 1989, + "cast": [ + "Donald Pleasence", + "Danielle Harris", + "Ellie Cornell", + "Wendy Kaplan" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Harlem Nights", + "year": 1989, + "cast": [ + "Eddie Murphy", + "Richard Pryor", + "Danny Aiello", + "Redd Foxx", + "Jasmine Guy", + "Michael Lerner", + "Stan Shaw", + "Arsenio Hall" + ], + "genres": [ + "Crime", + "Drama", + "Comedy" + ] + }, + { + "title": "Heart of Dixie", + "year": 1989, + "cast": [ + "Ally Sheedy", + "Virginia Madsen", + "Phoebe Cates" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Heathers", + "year": 1989, + "cast": [ + "Winona Ryder", + "Christian Slater", + "Shannen Doherty", + "Kim Walker", + "Lisanne Falk" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Her Alibi", + "year": 1989, + "cast": [ + "Tom Selleck", + "Paulina Porizkova" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hit List", + "year": 1989, + "cast": [ + "Jan-Michael Vincent", + "Lance Henriksen" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Homer and Eddie", + "year": 1989, + "cast": [ + "Whoopi Goldberg", + "Jim Belushi" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Homework", + "year": 1989, + "cast": [], + "genres": [ + "Drama" + ] + }, + { + "title": "Honey, I Shrunk the Kids", + "year": 1989, + "cast": [ + "Rick Moranis", + "Matt Frewer", + "Marcia Strassman", + "Kristine Sutherland" + ], + "genres": [ + "Family", + "Comedy" + ] + }, + { + "title": "The Horror Show", + "year": 1989, + "cast": [ + "Lance Henriksen", + "Brion James" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "How I Got into College", + "year": 1989, + "cast": [ + "Anthony Edwards", + "Lara Flynn Boyle" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Howling V: The Rebirth", + "year": 1989, + "cast": [ + "Phil Davis", + "Victoria Caitlin", + "Clive Turner" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Identity Crisis", + "year": 1989, + "cast": [ + "Mario van Peebles" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Immediate Family", + "year": 1989, + "cast": [ + "Glenn Close", + "James Woods", + "Mary Stuart Masterson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "In Country", + "year": 1989, + "cast": [ + "Bruce Willis", + "Emily Lloyd" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Indiana Jones and the Last Crusade", + "year": 1989, + "cast": [ + "Harrison Ford", + "Sean Connery", + "Denholm Elliott", + "Alison Doody", + "Julian Glover", + "John Rhys-Davies", + "River Phoenix" + ], + "genres": [ + "Action", + "Adventure" + ] + }, + { + "title": "An Innocent Man", + "year": 1989, + "cast": [ + "Tom Selleck", + "David Rasche", + "Laila Robins" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Intruder", + "year": 1989, + "cast": [ + "Renee Estevez" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Jacknife", + "year": 1989, + "cast": [ + "Robert De Niro", + "Ed Harris", + "Kathy Baker" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The January Man", + "year": 1989, + "cast": [ + "Kevin Kline", + "Susan Sarandon", + "Mary Elizabeth Mastrantonio", + "Harvey Keitel", + "Danny Aiello", + "Rod Steiger" + ], + "genres": [ + "Comedy", + "Mystery" + ] + }, + { + "title": "Johnny Handsome", + "year": 1989, + "cast": [ + "Mickey Rourke", + "Lance Henriksen", + "Ellen Barkin" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "K-9", + "year": 1989, + "cast": [ + "James Belushi", + "Mel Harris" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Kamillions", + "year": 1989, + "cast": [], + "genres": [ + "Drama" + ] + }, + { + "title": "The Karate Kid, Part III", + "year": 1989, + "cast": [ + "Ralph Macchio", + "Pat Morita", + "Thomas Ian Griffith" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Kickboxer", + "year": 1989, + "cast": [ + "Jean-Claude Van Damme" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Kill Me Again", + "year": 1989, + "cast": [ + "Val Kilmer", + "Joanne Whalley", + "Michael Madsen" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Killer!", + "year": 1989, + "cast": [ + "Duke Ernsberger" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Kinjite: Forbidden Subjects", + "year": 1989, + "cast": [ + "Charles Bronson", + "Perry Lopez" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Knick Knack", + "year": 1989, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "L.A. Takedown", + "year": 1989, + "cast": [ + "Michael Rooker", + "Scott Plank" + ], + "genres": [ + "Crime", + "Thriller" + ] + }, + { + "title": "Last Exit to Brooklyn", + "year": 1989, + "cast": [ + "Jennifer Jason Leigh" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Lauderdale", + "year": 1989, + "cast": [ + "Renee Shugart" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Lean on Me", + "year": 1989, + "cast": [ + "Morgan Freeman", + "Lynne Thigpen", + "Robert Guillaume" + ], + "genres": [ + "Biography", + "Drama" + ] + }, + { + "title": "Let It Ride", + "year": 1989, + "cast": [ + "Richard Dreyfuss", + "Teri Garr", + "Jennifer Tilly" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Lethal Weapon 2", + "year": 1989, + "cast": [ + "Mel Gibson", + "Danny Glover", + "Joe Pesci" + ], + "genres": [ + "Action", + "Comedy" + ] + }, + { + "title": "Leviathan", + "year": 1989, + "cast": [ + "Peter Weller", + "Richard Crenna", + "Amanda Pays" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Limit Up", + "year": 1989, + "cast": [ + "Nancy Allen", + "Ray Charles" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Listen to Me", + "year": 1989, + "cast": [ + "Kirk Cameron", + "Jami Gertz", + "Roy Scheider", + "Christopher Atkins" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Little Golden Book Land", + "year": 1989, + "cast": [], + "genres": [ + "Drama" + ] + }, + { + "title": "The Little Mermaid", + "year": 1989, + "cast": [ + "voices of", + "Jodi Benson", + "Pat Carroll", + "Buddy Hackett" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Little Monsters", + "year": 1989, + "cast": [ + "Fred Savage", + "Daniel Stern" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Lock Up", + "year": 1989, + "cast": [ + "Sylvester Stallone", + "Donald Sutherland" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Lonesome Dove", + "year": 1989, + "cast": [ + "Robert Duvall", + "Tommy Lee Jones", + "Diane Lane", + "Danny Glover", + "Anjelica Huston", + "Robert Urich", + "Rick Schroeder", + "D. B. Sweeney", + "Frederic Forrest", + "Glenne Headly", + "Barry Corbin", + "Chris Cooper" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Look Who's Talking", + "year": 1989, + "cast": [ + "John Travolta", + "Kirstie Alley", + "Olympia Dukakis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Lords of the Deep", + "year": 1989, + "cast": [ + "Bradford Dillman", + "Priscilla Barnes" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Lost Angels", + "year": 1989, + "cast": [ + "Donald Sutherland" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Loverboy", + "year": 1989, + "cast": [ + "Patrick Dempsey", + "Kate Jackson", + "Kirstie Alley" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Major League", + "year": 1989, + "cast": [ + "Tom Berenger", + "Charlie Sheen", + "Corbin Bernsen", + "Rene Russo", + "Wesley Snipes", + "Bob Uecker" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Making of Me", + "year": 1989, + "cast": [ + "Martin Short" + ], + "genres": [ + "Short" + ] + }, + { + "title": "Meet the Hollowheads", + "year": 1989, + "cast": [ + "Juliette Lewis", + "John Glover" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Mighty Quinn", + "year": 1989, + "cast": [ + "Denzel Washington", + "Robert Townsend" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Mike Hammer: Murder Takes All", + "year": 1989, + "cast": [ + "Stacy Keach", + "Lynda Carter" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Millennium", + "year": 1989, + "cast": [ + "Kris Kristofferson", + "Cheryl Ladd", + "Daniel J. Travanti", + "Robert Joy" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Miss Firecracker", + "year": 1989, + "cast": [ + "Holly Hunter", + "Tim Robbins", + "Mary Steenburgen" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Moontrap", + "year": 1989, + "cast": [ + "Walter Koenig", + "Bruce Campbell" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Music Box", + "year": 1989, + "cast": [ + "Jessica Lange", + "Armin Mueller-Stahl", + "Frederic Forrest", + "Lukas Haas" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "My Mom's a Werewolf", + "year": 1989, + "cast": [], + "genres": [ + "Comedy" + ] + }, + { + "title": "My Name is Bill W.", + "year": 1989, + "cast": [ + "James Garner", + "James Woods", + "JoBeth Williams" + ], + "genres": [ + "Drama", + "Biography" + ] + }, + { + "title": "Mystery Train", + "year": 1989, + "cast": [ + "Youki Kudoh", + "Masatoshi Nagase" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "National Lampoon's Christmas Vacation", + "year": 1989, + "cast": [ + "Chevy Chase", + "Beverly D'Angelo", + "Juliette Lewis", + "Randy Quaid", + "Johnny Galecki" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Never on Tuesday", + "year": 1989, + "cast": [], + "genres": [ + "Comedy" + ] + }, + { + "title": "New York Stories", + "year": 1989, + "cast": [ + "Nick Nolte", + "Rosanna Arquette", + "Giancarlo Giannini", + "Talia Shire", + "Heather McComb", + "Mae Questel", + "Woody Allen", + "Mia Farrow" + ], + "genres": [] + }, + { + "title": "Next of Kin", + "year": 1989, + "cast": [ + "Patrick Swayze", + "Liam Neeson", + "Adam Baldwin", + "Helen Hunt", + "Bill Paxton" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Nick Knight", + "year": 1989, + "cast": [ + "Rick Springfield" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Night Game", + "year": 1989, + "cast": [ + "Roy Scheider", + "Karen Young" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Night of the Ninja", + "year": 1989, + "cast": [], + "genres": [ + "Drama" + ] + }, + { + "title": "A Nightmare on Elm Street 5: The Dream Child", + "year": 1989, + "cast": [ + "Robert Englund" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Nightwish", + "year": 1989, + "cast": [ + "Brian Thompson", + "Jack Starrett", + "Elizabeth Kaitan" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "No Holds Barred", + "year": 1989, + "cast": [ + "Hulk Hogan", + "Joan Severance" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Nowhere to Run", + "year": 1989, + "cast": [ + "David Carradine", + "Matt Adler" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Offerings", + "year": 1989, + "cast": [ + "Loretta Leigh Bowman", + "Tobe Sexton" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Old Gringo", + "year": 1989, + "cast": [ + "Jane Fonda", + "Gregory Peck", + "Jimmy Smits" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Out of the Dark", + "year": 1989, + "cast": [ + "Karen Witter", + "Karen Black", + "Bud Cort" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Package", + "year": 1989, + "cast": [ + "Gene Hackman", + "Joanna Cassidy", + "Tommy Lee Jones", + "John Heard", + "Dennis Franz" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Parent Trap III", + "year": 1989, + "cast": [ + "Hayley Mills", + "Barry Bostwick" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Parenthood", + "year": 1989, + "cast": [ + "Steve Martin", + "Mary Steenburgen", + "Dianne Wiest", + "Keanu Reeves", + "Martha Plimpton", + "Jason Robards", + "Rick Moranis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Parents", + "year": 1989, + "cast": [ + "Randy Quaid", + "Mary Beth Hurt" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Penn & Teller Get Killed", + "year": 1989, + "cast": [ + "Penn and Teller" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Pet Sematary", + "year": 1989, + "cast": [ + "Dale Midkiff", + "Fred Gwynne", + "Denise Crosby" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Phantom of the Opera: The Motion Picture", + "year": 1989, + "cast": [ + "Robert Englund", + "Jill Schoelen", + "Bill Nighy" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Physical Evidence", + "year": 1989, + "cast": [ + "Burt Reynolds", + "Theresa Russell", + "Ned Beatty" + ], + "genres": [ + "Crime", + "Thriller" + ] + }, + { + "title": "Pink Cadillac", + "year": 1989, + "cast": [ + "Clint Eastwood", + "Bernadette Peters" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Police Academy 6: City Under Siege", + "year": 1989, + "cast": [ + "Bubba Smith", + "Michael Winslow", + "Leslie Easterbrook" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Prancer", + "year": 1989, + "cast": [ + "Rebecca Harrell", + "Sam Elliott" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Preppie Murder", + "year": 1989, + "cast": [ + "William Baldwin", + "Lara Flynn Boyle", + "Danny Aiello", + "Joanna Kerns", + "William Devane" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Pumpkinhead", + "year": 1989, + "cast": [ + "Lance Henriksen", + "Jeff East" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Punisher", + "year": 1989, + "cast": [ + "Dolph Lundgren" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Puppet Master", + "year": 1989, + "cast": [ + "Paul LeMat", + "William Hickey" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "R.O.T.O.R.", + "year": 1989, + "cast": [ + "Richard Gesswein", + "Jayne Smith" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Red Scorpion", + "year": 1989, + "cast": [ + "Dolph Lundgren", + "M. Emmet Walsh" + ], + "genres": [ + "War", + "Action" + ] + }, + { + "title": "Relentless", + "year": 1989, + "cast": [ + "Judd Nelson", + "Robert Loggia", + "Meg Foster" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Renegades", + "year": 1989, + "cast": [ + "Lou Diamond Phillips", + "Kiefer Sutherland" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Return of Swamp Thing", + "year": 1989, + "cast": [ + "Louis Jourdan", + "Heather Locklear" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "River of Death", + "year": 1989, + "cast": [ + "Michael Dudikoff", + "Robert Vaughn", + "and", + "Donald Pleasence" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Road House", + "year": 1989, + "cast": [ + "Patrick Swayze", + "Kelly Lynch", + "Sam Elliott", + "Ben Gazzara" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Roger & Me", + "year": 1989, + "cast": [ + "Michael Moore", + "Roger B. Smith" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Samurai Cop", + "year": 1989, + "cast": [], + "genres": [ + "Drama" + ] + }, + { + "title": "Say Anything", + "year": 1989, + "cast": [ + "John Cusack", + "Ione Skye", + "John Mahoney", + "Lili Taylor" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Scenes from the Class Struggle in Beverly Hills", + "year": 1989, + "cast": [ + "Jacqueline Bisset", + "Mary Woronov" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Sea of Love", + "year": 1989, + "cast": [ + "Al Pacino", + "Ellen Barkin", + "John Goodman" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Second Sight", + "year": 1989, + "cast": [ + "John Larroquette", + "Bronson Pinchot" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "See No Evil, Hear No Evil", + "year": 1989, + "cast": [ + "Gene Wilder", + "Richard Pryor", + "Joan Severance", + "Kevin Spacey" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "See You in the Morning", + "year": 1989, + "cast": [ + "Jeff Bridges", + "Alice Krige", + "Farrah Fawcett" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Sex, Lies, and Videotape", + "year": 1989, + "cast": [ + "James Spader", + "Andie MacDowell", + "Peter Gallagher", + "Laura San Giacomo" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Shag", + "year": 1989, + "cast": [ + "Phoebe Cates", + "Bridget Fonda", + "Annabeth Gish" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Shakedown", + "year": 1989, + "cast": [ + "Peter Weller", + "Sam Elliott" + ], + "genres": [ + "Crime", + "Drama", + "Action" + ] + }, + { + "title": "She's Out of Control", + "year": 1989, + "cast": [ + "Tony Danza", + "Ami Dolenz", + "Catherine Hicks" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "She-Devil", + "year": 1989, + "cast": [ + "Meryl Streep", + "Roseanne Barr", + "Ed Begley, Jr." + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Shocker", + "year": 1989, + "cast": [ + "Mitch Pileggi", + "Michael Murphy" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Sidewalk Stories", + "year": 1989, + "cast": [ + "Tom Alpern", + "Nicole Alysia" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Signs of Life", + "year": 1989, + "cast": [ + "Beau Bridges", + "Vincent D'Onofrio" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Silent Night, Deadly Night 3: Better Watch Out!", + "year": 1989, + "cast": [ + "Richard Beymer", + "Laura Harring" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Sinbad of the Seven Seas", + "year": 1989, + "cast": [ + "Lou Ferrigno", + "John Steiner" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Sing", + "year": 1989, + "cast": [ + "Lorraine Bracco", + "Peter Dobson", + "Jessica Steen" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Skin Deep", + "year": 1989, + "cast": [ + "John Ritter", + "Alyson Reed", + "Vincent Gardenia" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Slaves of New York", + "year": 1989, + "cast": [ + "Bernadette Peters", + "Adam Coleman Howard", + "Chris Sarandon" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Sleepaway Camp III: Teenage Wasteland", + "year": 1989, + "cast": [ + "Pamela Springsteen", + "Tracy Griffith" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Small Sacrifices", + "year": 1989, + "cast": [ + "Farrah Fawcett", + "Ryan O'Neal", + "Gordon Clapp" + ], + "genres": [ + "Drama", + "Biography" + ] + }, + { + "title": "Snake Eater", + "year": 1989, + "cast": [ + "Lorenzo Lamas" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Society", + "year": 1989, + "cast": [ + "Billy Warlock", + "Devin DeVasquez" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Speed Zone", + "year": 1989, + "cast": [ + "John Candy", + "Eugene Levy", + "Joe Flaherty", + "Brooke Shields" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Split", + "year": 1989, + "cast": [ + "Timothy Dwight", + "Joan Bechtel" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Star Trek V: The Final Frontier", + "year": 1989, + "cast": [ + "William Shatner", + "Leonard Nimoy", + "DeForest Kelley", + "Nichelle Nichols", + "George Takei", + "James Doohan", + "Laurence Luckinbill" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Staying Together", + "year": 1989, + "cast": [ + "Sean Astin", + "Stockard Channing", + "Melinda Dillon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Steel Magnolias", + "year": 1989, + "cast": [ + "Sally Field", + "Dolly Parton", + "Shirley MacLaine", + "Daryl Hannah", + "Olympia Dukakis", + "Julia Roberts", + "Tom Skerritt", + "Dylan McDermott", + "Kevin J. O'Connor", + "Sam Shepard" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Stepfather II", + "year": 1989, + "cast": [ + "Terry O'Quinn", + "Meg Foster" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Strapless", + "year": 1989, + "cast": [ + "Bridget Fonda", + "Bruno Ganz", + "Blair Brown" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Suckling", + "year": 1989, + "cast": [ + "Frank Reeves", + "Marie Michaels" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Sweet Bird of Youth", + "year": 1989, + "cast": [ + "Elizabeth Taylor", + "Mark Harmon", + "Valerie Perrine", + "Rip Torn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Tango & Cash", + "year": 1989, + "cast": [ + "Sylvester Stallone", + "Kurt Russell", + "Jack Palance", + "Teri Hatcher" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Tap", + "year": 1989, + "cast": [ + "Gregory Hines", + "Suzzanne Douglas", + "Sammy Davis, Jr." + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Teen Witch", + "year": 1989, + "cast": [ + "Robyn Lively", + "Dan Gauthier" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Ten Little Indians", + "year": 1989, + "cast": [ + "Donald Pleasence", + "Brenda Vaccaro", + "Frank Stallone", + "Herbert Lom" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "The Terror Within", + "year": 1989, + "cast": [ + "George Kennedy", + "Andrew Stevens" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "This Ain't Bebop", + "year": 1989, + "cast": [], + "genres": [ + "Drama" + ] + }, + { + "title": "Those She Left Behind", + "year": 1989, + "cast": [ + "Gary Cole", + "Joanna Kerns" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Three Fugitives", + "year": 1989, + "cast": [ + "Nick Nolte", + "Martin Short", + "James Earl Jones" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "To Die For", + "year": 1989, + "cast": [ + "Brendan Hughes" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Tongues Untied", + "year": 1989, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Toxic Avenger Part II", + "year": 1989, + "cast": [ + "Ron Fazio" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Toxic Avenger Part III: The Last Temptation of Toxie", + "year": 1989, + "cast": [], + "genres": [ + "Horror" + ] + }, + { + "title": "Trapped", + "year": 1989, + "cast": [ + "Katy Boyer", + "Bruce Abbott", + "Kathleen Quinlan" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Trial of the Incredible Hulk", + "year": 1989, + "cast": [ + "Lou Ferrigno", + "Bill Bixby" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Triumph of the Spirit", + "year": 1989, + "cast": [ + "Willem Dafoe", + "Edward James Olmos" + ], + "genres": [ + "Drama", + "War" + ] + }, + { + "title": "Troop Beverly Hills", + "year": 1989, + "cast": [ + "Shelley Long", + "Craig T. Nelson", + "Betty Thomas" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Tropical Snow", + "year": 1989, + "cast": [ + "Jsu Garcia", + "Madeleine Stowe", + "David Carradine" + ], + "genres": [ + "Action" + ] + }, + { + "title": "True Believer", + "year": 1989, + "cast": [ + "James Woods", + "Robert Downey, Jr." + ], + "genres": [ + "Drama" + ] + }, + { + "title": "True Love", + "year": 1989, + "cast": [ + "Annabella Sciorra", + "Aida Turturro" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The True Story of Frank Zappa's 200 Motels", + "year": 1989, + "cast": [ + "Frank Zappa" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Tummy Trouble", + "year": 1989, + "cast": [ + "Roger Rabbit" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Turner & Hooch", + "year": 1989, + "cast": [ + "Tom Hanks", + "Mare Winningham", + "Craig T. Nelson", + "J. C. Quinn", + "Reginald VelJohnson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Twister", + "year": 1989, + "cast": [ + "Suzy Amis", + "Dylan McDermott", + "Crispin Glover" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "UHF", + "year": 1989, + "cast": [ + "Weird Al Yankovic", + "Michael Richards" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Unbelievable Truth", + "year": 1989, + "cast": [ + "Adrienne Shelley" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Uncle Buck", + "year": 1989, + "cast": [ + "John Candy", + "Amy Madigan", + "Jean Louisa Kelly", + "Macaulay Culkin", + "Gaby Hoffmann" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Valmont", + "year": 1989, + "cast": [ + "Colin Firth", + "Annette Bening", + "Meg Tilly", + "Fairuza Balk" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Vampire's Kiss", + "year": 1989, + "cast": [ + "Nicolas Cage", + "Jennifer Beals", + "María Conchita Alonso" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Wait Until Spring, Bandini", + "year": 1989, + "cast": [ + "Joe Mantegna", + "Ornella Muti", + "Faye Dunaway" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The War of the Roses", + "year": 1989, + "cast": [ + "Michael Douglas", + "Kathleen Turner" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Warlock", + "year": 1989, + "cast": [ + "Julian Sands", + "Lori Singer" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "We're No Angels", + "year": 1989, + "cast": [ + "Sean Penn", + "Robert De Niro", + "Demi Moore" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Weekend at Bernie's", + "year": 1989, + "cast": [ + "Andrew McCarthy", + "Jonathan Silverman" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Welcome Home", + "year": 1989, + "cast": [ + "Kris Kristofferson", + "JoBeth Williams", + "Sam Waterston", + "Brian Keith" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "When Harry Met Sally...", + "year": 1989, + "cast": [ + "Billy Crystal", + "Meg Ryan", + "Carrie Fisher", + "Bruno Kirby" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Who's Harry Crumb?", + "year": 1989, + "cast": [ + "John Candy", + "Annie Potts", + "Shawnee Smith" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Wicked Stepmother", + "year": 1989, + "cast": [ + "Bette Davis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Winter People", + "year": 1989, + "cast": [ + "Kurt Russell", + "Kelly McGillis", + "Lloyd Bridges" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Wired", + "year": 1989, + "cast": [ + "Michael Chiklis", + "J. T. Walsh" + ], + "genres": [ + "Drama", + "Biography" + ] + }, + { + "title": "The Wizard of Speed and Time", + "year": 1989, + "cast": [ + "Mike Jittlov", + "Paige Moore" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "The Wizard", + "year": 1989, + "cast": [ + "Fred Savage" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Women of Brewster Place", + "year": 1989, + "cast": [ + "Oprah Winfrey", + "Robin Givens" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Worth Winning", + "year": 1989, + "cast": [ + "Mark Harmon", + "Madeleine Stowe" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Adventures of Ford Fairlane", + "year": 1990, + "cast": [ + "Andrew Dice Clay", + "Wayne Newton", + "Priscilla Presley", + "Lauren Holly", + "Maddie Corman", + "Ed O'Neill", + "Morris Day", + "Tone Loc", + "Gilbert Gottfried", + "Robert Englund" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "After Dark, My Sweet", + "year": 1990, + "cast": [ + "Jason Patric", + "Rachel Ward", + "Bruce Dern" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Air America", + "year": 1990, + "cast": [ + "Mel Gibson", + "Robert Downey, Jr.", + "Nancy Travis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Alice", + "year": 1990, + "cast": [ + "Mia Farrow", + "Joe Mantegna", + "William Hurt", + "Alec Baldwin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Almost an Angel", + "year": 1990, + "cast": [ + "Paul Hogan", + "Elias Koteas", + "Charlton Heston" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Ambulance", + "year": 1990, + "cast": [ + "Eric Roberts", + "James Earl Jones", + "Megan Gallagher" + ], + "genres": [ + "Action" + ] + }, + { + "title": "American Dream", + "year": 1990, + "cast": [ + "proposed strike at", + "Hormel Foods" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "American Ninja 4: The Annihilation", + "year": 1990, + "cast": [ + "Michael Dudikoff" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Andre's Mother", + "year": 1990, + "cast": [ + "Richard Thomas", + "Sada Thompson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Angel Town", + "year": 1990, + "cast": [ + "Olivier Gruner", + "Theresa Saldana" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Another 48 Hrs.", + "year": 1990, + "cast": [ + "Eddie Murphy", + "Nick Nolte" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Arachnophobia", + "year": 1990, + "cast": [ + "Jeff Daniels", + "John Goodman", + "Harley Jane Kozak", + "Julian Sands" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Avalon", + "year": 1990, + "cast": [ + "Aidan Quinn", + "Armin Mueller-Stahl", + "Joan Plowright", + "Elizabeth Perkins", + "Kevin Pollak" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Awakenings", + "year": 1990, + "cast": [ + "Robert De Niro", + "Robin Williams", + "Penelope Ann Miller", + "John Heard", + "Julie Kavner", + "Ruth Nelson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Back to the Future Part III", + "year": 1990, + "cast": [ + "Michael J. Fox", + "Christopher Lloyd", + "Mary Steenburgen", + "Thomas F. Wilson" + ], + "genres": [ + "Comedy", + "Science Fiction" + ] + }, + { + "title": "Bad Influence", + "year": 1990, + "cast": [ + "Rob Lowe", + "James Spader" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Basket Case 2", + "year": 1990, + "cast": [ + "Annie Ross" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Betsy's Wedding", + "year": 1990, + "cast": [ + "Alan Alda", + "Molly Ringwald", + "Ally Sheedy", + "Madeline Kahn", + "Joe Pesci", + "Anthony LaPaglia", + "Catherine O'Hara" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Bird on a Wire", + "year": 1990, + "cast": [ + "Mel Gibson", + "Goldie Hawn", + "David Carradine", + "Bill Duke", + "Stephen Tobolowsky", + "Joan Severance" + ], + "genres": [ + "Comedy", + "Crime" + ] + }, + { + "title": "Blind Faith", + "year": 1990, + "cast": [ + "Robert Urich", + "Joanna Kerns", + "Johnny Galecki", + "William Forsythe", + "Dennis Farina" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Bloodfist II", + "year": 1990, + "cast": [ + "Don Wilson" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Blue Steel", + "year": 1990, + "cast": [ + "Jamie Lee Curtis", + "Ron Silver", + "Clancy Brown", + "Elizabeth Pena", + "Louise Fletcher" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Bonfire of the Vanities", + "year": 1990, + "cast": [ + "Tom Hanks", + "Bruce Willis", + "Melanie Griffith", + "Morgan Freeman", + "Kim Cattrall", + "Saul Rubinek", + "F. Murray Abraham", + "Alan King" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Bride of Re-Animator", + "year": 1990, + "cast": [ + "Bruce Abbott", + "Fabiana Udenio" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Cadence", + "year": 1990, + "cast": [ + "Charlie Sheen", + "Martin Sheen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Cadillac Man", + "year": 1990, + "cast": [ + "Robin Williams", + "Tim Robbins", + "Pamela Reed", + "Lori Petty", + "Fran Drescher" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Camp Cucamonga", + "year": 1990, + "cast": [ + "John Ratzenberger" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Captain America", + "year": 1990, + "cast": [ + "Matt Salinger", + "Ronny Cox", + "Scott Paulin" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Cartoon All-Stars to the Rescue", + "year": 1990, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "Catchfire", + "year": 1990, + "cast": [ + "Dennis Hopper", + "Jodie Foster" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Challenger", + "year": 1990, + "cast": [ + "Karen Allen", + "Barry Bostwick" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Checkered Flag", + "year": 1990, + "cast": [ + "Billy Campbell", + "Rob Estes" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Child in the Night", + "year": 1990, + "cast": [ + "Elijah Wood", + "Tom Skerritt" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Child's Play 2", + "year": 1990, + "cast": [ + "Alex Vincent", + "Gerrit Graham" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "China Cry", + "year": 1990, + "cast": [ + "Julia Nickson", + "France Nuyen", + "and", + "James Shigeta" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The China Lake Murders", + "year": 1990, + "cast": [ + "Tom Skerritt", + "Michael Parks" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "China O'Brien", + "year": 1990, + "cast": [ + "Cynthia Rothrock" + ], + "genres": [ + "Martial Arts" + ] + }, + { + "title": "Class of 1999", + "year": 1990, + "cast": [ + "Malcolm McDowell", + "Stacy Keach", + "Traci Lind" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Coins in the Fountain", + "year": 1990, + "cast": [ + "Loni Anderson", + "Stepfanie Kramer" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Come See the Paradise", + "year": 1990, + "cast": [ + "Dennis Quaid", + "Tamlyn Tomita" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Coupe de Ville", + "year": 1990, + "cast": [ + "Daniel Stern", + "Patrick Dempsey" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Crash and Burn", + "year": 1990, + "cast": [ + "Megan Ward" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Crazy People", + "year": 1990, + "cast": [ + "Dudley Moore", + "Daryl Hannah", + "Paul Reiser", + "Mercedes Ruehl", + "J.T. Walsh" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Cry-Baby", + "year": 1990, + "cast": [ + "Johnny Depp", + "Amy Locane", + "Susan Tyrrell", + "Iggy Pop", + "Ricki Lake", + "Traci Lords", + "Polly Bergen" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Daddy's Dyin': Who's Got the Will?", + "year": 1990, + "cast": [ + "Beau Bridges", + "Beverly D'Angelo" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Dances with Wolves", + "year": 1990, + "cast": [ + "Kevin Costner", + "Mary McDonnell", + "Graham Greene" + ], + "genres": [ + "Drama", + "Western" + ] + }, + { + "title": "Deep Throat 2", + "year": 1990, + "cast": [], + "genres": [ + "Erotic" + ] + }, + { + "title": "The Dark Side of the Moon", + "year": 1990, + "cast": [ + "Robert Sampson" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Darkman", + "year": 1990, + "cast": [ + "Liam Neeson", + "Frances McDormand", + "Colin Friels", + "Larry Drake" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Daughter of Darkness", + "year": 1990, + "cast": [ + "Anthony Perkins", + "Mia Sara" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Days of Thunder", + "year": 1990, + "cast": [ + "Tom Cruise", + "Robert Duvall", + "Randy Quaid", + "Nicole Kidman", + "Cary Elwes" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Death Machine", + "year": 1990, + "cast": [ + "Brad Dourif" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Death Warrant", + "year": 1990, + "cast": [ + "Jean-Claude Van Damme" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Deceptions", + "year": 1990, + "cast": [ + "Nicollette Sheridan", + "Harry Hamlin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Decoration Day", + "year": 1990, + "cast": [ + "James Garner" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Def by Temptation", + "year": 1990, + "cast": [ + "Samuel L. Jackson", + "Kadeem Hardison" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Delta Force 2: The Colombian Connection", + "year": 1990, + "cast": [ + "Chuck Norris", + "Billy Drago" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Denial", + "year": 1990, + "cast": [ + "Robin Wright", + "Jason Patric", + "Rae Dawn Chong" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Desperate Hours", + "year": 1990, + "cast": [ + "Anthony Hopkins", + "Mickey Rourke", + "Mimi Rogers", + "Kelly Lynch", + "Lindsay Crouse", + "David Morse", + "Elias Koteas", + "Shawnee Smith" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "Dick Tracy", + "year": 1990, + "cast": [ + "Warren Beatty", + "Al Pacino", + "Madonna", + "Glenne Headly", + "Charlie Korsmo" + ], + "genres": [ + "Comedy", + "Fantasy" + ] + }, + { + "title": "Die Hard 2", + "year": 1990, + "cast": [ + "Bruce Willis", + "Bonnie Bedelia", + "William Atherton", + "William Sadler" + ], + "genres": [ + "Action" + ] + }, + { + "title": "A Divine Double Feature", + "year": 1990, + "cast": [], + "genres": [] + }, + { + "title": "Dorf Goes Auto Racing", + "year": 1990, + "cast": [ + "Tim Conway" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Downtown", + "year": 1990, + "cast": [ + "Anthony Edwards", + "Forest Whitaker", + "Joe Pantoliano", + "Penelope Ann Miller" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Dream Machine", + "year": 1990, + "cast": [ + "Corey Haim" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "DuckTales the Movie: Treasure of the Lost Lamp", + "year": 1990, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "Edward Scissorhands", + "year": 1990, + "cast": [ + "Johnny Depp", + "Winona Ryder", + "Dianne Wiest", + "Alan Arkin", + "Anthony Michael Hall", + "Vincent Price", + "Kathy Baker" + ], + "genres": [ + "Comedy", + "Fantasy" + ] + }, + { + "title": "The End of Innocence", + "year": 1990, + "cast": [ + "Dyan Cannon", + "John Heard", + "Rebecca Schaeffer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Ernest Goes to Jail", + "year": 1990, + "cast": [ + "Jim Varney" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Everybody Wins", + "year": 1990, + "cast": [ + "Nick Nolte", + "Debra Winger", + "Jack Warden" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Exorcist III", + "year": 1990, + "cast": [ + "George C. Scott", + "Ed Flanders", + "Brad Dourif", + "Nicol Williamson" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Eyes on the Prize", + "year": 1990, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "Faces of Death IV", + "year": 1990, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "Far Out Man", + "year": 1990, + "cast": [ + "Tommy Chong", + "Rae Dawn Chong" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Final Sanction", + "year": 1990, + "cast": [ + "Ted Prior" + ], + "genres": [] + }, + { + "title": "Fire Birds", + "year": 1990, + "cast": [ + "Nicolas Cage", + "Tommy Lee Jones", + "Sean Young" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The First Power", + "year": 1990, + "cast": [ + "Lou Diamond Phillips" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Flashback", + "year": 1990, + "cast": [ + "Kiefer Sutherland", + "Dennis Hopper" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Flatliners", + "year": 1990, + "cast": [ + "Julia Roberts", + "Kiefer Sutherland", + "Kevin Bacon", + "William Baldwin", + "Oliver Platt" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Forbidden Dance", + "year": 1990, + "cast": [ + "Laura Harring" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Fourth War", + "year": 1990, + "cast": [ + "Roy Scheider", + "Jürgen Prochnow" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Frankenhooker", + "year": 1990, + "cast": [ + "James Lorinz" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Frankenstein Unbound", + "year": 1990, + "cast": [ + "John Hurt", + "Raúl Juliá", + "Bridget Fonda" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Freshman", + "year": 1990, + "cast": [ + "Matthew Broderick", + "Marlon Brando", + "Penelope Ann Miller", + "Bruno Kirby", + "Frank Whaley" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Full Fathom Five", + "year": 1990, + "cast": [ + "Michael Moriarty" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Funny About Love", + "year": 1990, + "cast": [ + "Gene Wilder", + "Christine Lahti", + "Mary Stuart Masterson", + "Robert Prosky" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Getting Lucky", + "year": 1990, + "cast": [ + "Steven Cooke", + "Lezlie McCraw" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Ghost", + "year": 1990, + "cast": [ + "Demi Moore", + "Patrick Swayze", + "Whoopi Goldberg", + "Tony Goldwyn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Ghost Dad", + "year": 1990, + "cast": [ + "Bill Cosby" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Ghosts Can't Do It", + "year": 1990, + "cast": [ + "Bo Derek", + "Anthony Quinn" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Girlfriend from Hell", + "year": 1990, + "cast": [ + "Dana Ashbrook" + ], + "genres": [] + }, + { + "title": "The Godfather Part III", + "year": 1990, + "cast": [ + "Al Pacino", + "Andy García", + "Diane Keaton", + "Talia Shire", + "Sofia Coppola", + "Joe Mantegna", + "Eli Wallach" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Goodfellas", + "year": 1990, + "cast": [ + "Robert De Niro", + "Ray Liotta", + "Joe Pesci", + "Lorraine Bracco", + "Paul Sorvino", + "Frank Vincent", + "Michael Imperioli" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Graffiti Bridge", + "year": 1990, + "cast": [ + "Prince", + "Morris Day", + "Ingrid Chavez" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Green Card", + "year": 1990, + "cast": [ + "Andie MacDowell", + "Gérard Depardieu" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Gremlins 2: The New Batch", + "year": 1990, + "cast": [ + "Phoebe Cates", + "Zach Galligan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Grifters", + "year": 1990, + "cast": [ + "John Cusack", + "Anjelica Huston", + "Annette Bening" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Grim Prairie Tales", + "year": 1990, + "cast": [ + "James Earl Jones" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Guardian", + "year": 1990, + "cast": [ + "Jenny Seagrove", + "Dwier Brown", + "Carey Lowell" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Guns", + "year": 1990, + "cast": [ + "Erik Estrada", + "Dona Speir" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Guyver", + "year": 1990, + "cast": [ + "Mark Hamill", + "Vivian Wu" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Handmaid's Tale", + "year": 1990, + "cast": [ + "Natasha Richardson", + "Faye Dunaway", + "Robert Duvall", + "Elizabeth McGovern" + ], + "genres": [ + "Science Fiction", + "Drama" + ] + }, + { + "title": "Hard to Kill", + "year": 1990, + "cast": [ + "Steven Seagal", + "Kelly Le Brock" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Hardware", + "year": 1990, + "cast": [ + "Dylan McDermott", + "Stacey Travis", + "Iggy Pop" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Havana", + "year": 1990, + "cast": [ + "Robert Redford", + "Raúl Juliá", + "Lena Olin", + "Tomas Milian", + "Alan Arkin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Heart Condition", + "year": 1990, + "cast": [ + "Denzel Washington", + "Bob Hoskins", + "Chloe Webb" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Henry & June", + "year": 1990, + "cast": [ + "Fred Ward", + "Uma Thurman", + "Maria de Medeiros" + ], + "genres": [ + "Drama", + "Biography" + ] + }, + { + "title": "Henry: Portrait of a Serial Killer", + "year": 1990, + "cast": [ + "Michael Rooker", + "Tom Towles" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Home Alone", + "year": 1990, + "cast": [ + "Macaulay Culkin", + "Joe Pesci", + "Daniel Stern", + "John Heard", + "Catherine O'Hara" + ], + "genres": [ + "Comedy", + "Family" + ] + }, + { + "title": "Hot Cars, Cold Facts", + "year": 1990, + "cast": [], + "genres": [ + "Short" + ] + }, + { + "title": "The Hot Spot", + "year": 1990, + "cast": [ + "Don Johnson", + "Jennifer Connelly", + "Virginia Madsen", + "Charles Martin Smith" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "House Party", + "year": 1990, + "cast": [ + "Kid 'n Play", + "Robin Harris" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Hunt for Red October", + "year": 1990, + "cast": [ + "Sean Connery", + "Alec Baldwin", + "Scott Glenn", + "Sam Neill", + "James Earl Jones", + "Tim Curry" + ], + "genres": [ + "Drama", + "Adventure" + ] + }, + { + "title": "I Come in Peace", + "year": 1990, + "cast": [ + "Dolph Lundgren" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "I Love You to Death", + "year": 1990, + "cast": [ + "Kevin Kline", + "Tracey Ullman", + "River Phoenix", + "Joan Plowright", + "William Hurt", + "Keanu Reeves" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "I'm Dangerous Tonight", + "year": 1990, + "cast": [ + "Mädchen Amick", + "as Mädchen Amick" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Industrial Symphony No. 1", + "year": 1990, + "cast": [ + "Laura Dern" + ], + "genres": [ + "Short" + ] + }, + { + "title": "Initiation: Silent Night, Deadly Night 4", + "year": 1990, + "cast": [ + "Neith Hunter", + "Clint Howard", + "Maud Adams" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Internal Affairs", + "year": 1990, + "cast": [ + "Richard Gere", + "Andy García", + "Nancy Travis", + "Laurie Metcalf", + "Richard Bradford", + "William Baldwin" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "Iron & Silk", + "year": 1990, + "cast": [], + "genres": [] + }, + { + "title": "It", + "year": 1990, + "cast": [ + "Tim Curry", + "Harry Anderson", + "Dennis Christopher", + "Richard Masur", + "Annette O'Toole", + "Tim Reid", + "John Ritter", + "Richard Thomas" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Jacob's Ladder", + "year": 1990, + "cast": [ + "Tim Robbins", + "Danny Aiello", + "Elizabeth Peña" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "Jetsons: The Movie", + "year": 1990, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "Joe Versus the Volcano", + "year": 1990, + "cast": [ + "Tom Hanks", + "Meg Ryan", + "Lloyd Bridges", + "Robert Stack", + "Ossie Davis" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "The Kill-Off", + "year": 1990, + "cast": [ + "Cathy Haase" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Killer Tomatoes Strike Back", + "year": 1990, + "cast": [ + "John Astin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Kindergarten Cop", + "year": 1990, + "cast": [ + "Arnold Schwarzenegger", + "Penelope Ann Miller", + "Pamela Reed", + "Linda Hunt", + "Richard Tyson", + "Carroll Baker" + ], + "genres": [ + "Comedy", + "Family" + ] + }, + { + "title": "King of New York", + "year": 1990, + "cast": [ + "Christopher Walken", + "Wesley Snipes", + "Laurence Fishburne", + "Victor Argo", + "David Caruso" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Laser Mission", + "year": 1990, + "cast": [ + "Brandon Lee" + ], + "genres": [] + }, + { + "title": "The Last of the Finest", + "year": 1990, + "cast": [ + "Brian Dennehy", + "Joe Pantoliano", + "Jeff Fahey" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Leatherface: The Texas Chainsaw Massacre III", + "year": 1990, + "cast": [ + "Kane Hodder" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Lemon Sisters", + "year": 1990, + "cast": [ + "Diane Keaton", + "Carol Kane", + "Kathryn Grody", + "Aidan Quinn", + "Elliott Gould", + "Ruben Blades" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Lionheart", + "year": 1990, + "cast": [ + "Jean-Claude Van Damme" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Long Walk Home", + "year": 1990, + "cast": [ + "Sissy Spacek", + "Whoopi Goldberg" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Look Who's Talking Too", + "year": 1990, + "cast": [ + "John Travolta", + "Kirstie Alley", + "Bruce Willis", + "Roseanne Barr", + "Olympia Dukakis", + "Elias Koteas", + "Damon Wayans" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Loose Cannons", + "year": 1990, + "cast": [ + "Gene Hackman", + "Dan Aykroyd", + "Dom DeLuise", + "Ronny Cox", + "Nancy Travis" + ], + "genres": [ + "Action", + "Comedy" + ] + }, + { + "title": "Lord of the Flies", + "year": 1990, + "cast": [ + "Balthazar Getty" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Love at Large", + "year": 1990, + "cast": [ + "Tom Berenger", + "Elizabeth Perkins", + "Anne Archer" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Mack the Knife", + "year": 1990, + "cast": [ + "Raúl Juliá", + "Richard Harris", + "Julie Walters" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Madhouse", + "year": 1990, + "cast": [ + "Kirstie Alley", + "John Larroquette" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Man Called Sarge", + "year": 1990, + "cast": [ + "Gary Kroeger", + "Marc Singer" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Maniac Cop 2", + "year": 1990, + "cast": [ + "Robert Davi", + "Laurene Landon", + "Robert Z'Dar", + "Bruce Campbell", + "Michael Lerner", + "Leo Rossi" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Marked for Death", + "year": 1990, + "cast": [ + "Steven Seagal", + "Keith David", + "Joanna Pacula" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Martians Go Home", + "year": 1990, + "cast": [ + "Randy Quaid", + "Margaret Colin", + "Anita Morris" + ], + "genres": [ + "Comedy", + "Science Fiction" + ] + }, + { + "title": "Masters of Menace", + "year": 1990, + "cast": [ + "David Rasche", + "Catherine Bach" + ], + "genres": [] + }, + { + "title": "Megaville", + "year": 1990, + "cast": [ + "Billy Zane" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Memphis Belle", + "year": 1990, + "cast": [ + "Matthew Modine", + "Eric Stoltz", + "John Lithgow", + "Harry Connick, Jr.", + "Sean Astin", + "Billy Zane", + "D.B. Sweeney", + "Tate Donovan", + "David Strathairn" + ], + "genres": [ + "Drama", + "War" + ] + }, + { + "title": "Men at Work", + "year": 1990, + "cast": [ + "Charlie Sheen", + "Emilio Estevez" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Men Don't Leave", + "year": 1990, + "cast": [ + "Jessica Lange", + "Chris O'Donnell", + "Joan Cusack", + "Arliss Howard", + "Charlie Korsmo" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Men of Respect", + "year": 1990, + "cast": [ + "John Turturro", + "Stanley Tucci", + "Rod Steiger", + "Peter Boyle", + "Dennis Farina" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Meridian: Kiss of the Beast", + "year": 1990, + "cast": [], + "genres": [] + }, + { + "title": "Mermaids", + "year": 1990, + "cast": [ + "Cher", + "Winona Ryder", + "Bob Hoskins", + "Michael Schoeffling", + "Christina Ricci" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Metamorphosis: The Alien Factor", + "year": 1990, + "cast": [], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Metropolitan", + "year": 1990, + "cast": [ + "Carolyn Farina" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Miami Blues", + "year": 1990, + "cast": [ + "Alec Baldwin", + "Jennifer Jason Leigh", + "Fred Ward" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Miller's Crossing", + "year": 1990, + "cast": [ + "Gabriel Byrne", + "Albert Finney", + "Marcia Gay Harden", + "John Turturro", + "Jon Polito" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Misery", + "year": 1990, + "cast": [ + "James Caan", + "Kathy Bates" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Mister Frost", + "year": 1990, + "cast": [ + "Jeff Goldblum", + "Kathy Baker", + "Alan Bates" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Mister Johnson", + "year": 1990, + "cast": [ + "Pierce Brosnan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Mo' Better Blues", + "year": 1990, + "cast": [ + "Denzel Washington", + "Wesley Snipes", + "Spike Lee", + "Bill Nunn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Mob Story", + "year": 1990, + "cast": [ + "John Vernon", + "Kate Vernon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Mom for Christmas", + "year": 1990, + "cast": [ + "Olivia Newton-John" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Moon 44", + "year": 1990, + "cast": [ + "Michael Paré" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Mother Goose Rock 'n' Rhyme", + "year": 1990, + "cast": [], + "genres": [ + "Family" + ] + }, + { + "title": "Mountains of the Moon", + "year": 1990, + "cast": [ + "Patrick Bergin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Mr. Destiny", + "year": 1990, + "cast": [ + "James Belushi", + "Michael Caine", + "Linda Hamilton", + "Hart Bochner", + "Jon Lovitz", + "Rene Russo" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Mr. and Mrs. Bridge", + "year": 1990, + "cast": [ + "Paul Newman", + "Joanne Woodward" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Murder in Mississippi", + "year": 1990, + "cast": [ + "Tom Hulce", + "Blair Underwood" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "My Blue Heaven", + "year": 1990, + "cast": [ + "Steve Martin", + "Rick Moranis", + "Joan Cusack" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Narrow Margin", + "year": 1990, + "cast": [ + "Gene Hackman", + "Anne Archer" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "Navy SEALs", + "year": 1990, + "cast": [ + "Charlie Sheen", + "Michael Biehn", + "Joanne Whalley", + "Rick Rossovich", + "Bill Paxton", + "Dennis Haysbert" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The NeverEnding Story II: The Next Chapter", + "year": 1990, + "cast": [ + "Jonathan Brandis" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Night Eyes", + "year": 1990, + "cast": [ + "Andrew Stevens", + "Tanya Roberts" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Night of the Living Dead", + "year": 1990, + "cast": [ + "Tony Todd" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Nightbreed", + "year": 1990, + "cast": [ + "Craig Sheffer" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Ninja Academy", + "year": 1990, + "cast": [ + "Will Egan" + ], + "genres": [ + "Martial Arts" + ] + }, + { + "title": "No Retreat, No Surrender 3: Blood Brothers", + "year": 1990, + "cast": [ + "Loren Avedon" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Nutcracker Prince", + "year": 1990, + "cast": [ + "voices of", + "Kiefer Sutherland", + "Megan Follows" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Opportunity Knocks", + "year": 1990, + "cast": [ + "Dana Carvey", + "Robert Loggia" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Pacific Heights", + "year": 1990, + "cast": [ + "Michael Keaton", + "Melanie Griffith", + "Matthew Modine" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Paris Is Burning", + "year": 1990, + "cast": [ + "ball culture of", + "drag queens" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Pit and the Pendulum", + "year": 1990, + "cast": [ + "Lance Henriksen", + "Mark Margolis" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Plunder & Lightning", + "year": 1990, + "cast": [ + "Ed Gilbert", + "R.J. Williams", + "Sally Struthers", + "Janna Michaels", + "Pat Fraley", + "Tony Jay", + "Jim Cummings" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Postcards from the Edge", + "year": 1990, + "cast": [ + "Meryl Streep", + "Dennis Quaid", + "Shirley MacLaine", + "Gene Hackman", + "Annette Bening", + "Richard Dreyfuss" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Predator 2", + "year": 1990, + "cast": [ + "Danny Glover", + "Gary Busey", + "Rubén Blades", + "María Conchita Alonso", + "Bill Paxton" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Presumed Innocent", + "year": 1990, + "cast": [ + "Harrison Ford", + "Greta Scacchi", + "Bonnie Bedelia", + "Brian Dennehy", + "Raúl Juliá", + "Paul Winfield", + "John Spencer" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Pretty Woman", + "year": 1990, + "cast": [ + "Julia Roberts", + "Richard Gere", + "Héctor Elizondo", + "Jason Alexander", + "Laura San Giacomo", + "Ralph Bellamy" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Problem Child", + "year": 1990, + "cast": [ + "John Ritter", + "Jack Warden", + "Michael Oliver", + "Gilbert Gottfried", + "Amy Yasbeck", + "Michael Richards" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Prom Night III: The Last Kiss", + "year": 1990, + "cast": [ + "Courtney Taylor", + "Tim Conlon", + "Cynthia Preston", + "David Stratton", + "Dylan Neal" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Psycho IV: The Beginning", + "year": 1990, + "cast": [ + "Anthony Perkins", + "Olivia Hussey" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Pump Up the Volume", + "year": 1990, + "cast": [ + "Christian Slater", + "Samantha Mathis", + "Mimi Kennedy", + "Scott Paulin" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Q&A", + "year": 1990, + "cast": [ + "Nick Nolte", + "Timothy Hutton", + "Armand Assante", + "Patrick O'Neal", + "Charles S. Dutton", + "Lee Richardson" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Quick Change", + "year": 1990, + "cast": [ + "Bill Murray", + "Geena Davis", + "Jason Robards", + "Randy Quaid", + "Tony Shalhoub", + "Phil Hartman" + ], + "genres": [ + "Crime", + "Comedy" + ] + }, + { + "title": "Quigley Down Under", + "year": 1990, + "cast": [ + "Tom Selleck", + "Laura San Giacomo", + "Alan Rickman" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Ralph S. Mouse", + "year": 1990, + "cast": [], + "genres": [] + }, + { + "title": "The Reflecting Skin", + "year": 1990, + "cast": [ + "Viggo Mortensen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Repossessed", + "year": 1990, + "cast": [ + "Linda Blair", + "Leslie Nielsen" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Rescuers Down Under", + "year": 1990, + "cast": [ + "voices of", + "Bob Newhart", + "Eva Gabor", + "John Candy", + "George C. Scott" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Revenge", + "year": 1990, + "cast": [ + "Kevin Costner", + "Anthony Quinn", + "Madeleine Stowe", + "Sally Kirkland", + "Miguel Ferrer", + "James Gammon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Reversal of Fortune", + "year": 1990, + "cast": [ + "Jeremy Irons", + "Glenn Close", + "Ron Silver" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "RoboCop 2", + "year": 1990, + "cast": [ + "Peter Weller", + "Nancy Allen", + "Dan O'Herlihy", + "Tom Noonan", + "Belinda Bauer", + "Gabriel Damon" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Robot Jox", + "year": 1990, + "cast": [ + "Gary Graham" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Rock 'n' Roll High School Forever", + "year": 1990, + "cast": [ + "Corey Feldman" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Rocky V", + "year": 1990, + "cast": [ + "Sylvester Stallone", + "Talia Shire", + "Burt Young", + "Tommy Morrison", + "Richard Gant", + "Sage Stallone" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Roller Coaster Rabbit", + "year": 1990, + "cast": [], + "genres": [] + }, + { + "title": "Romeo-Juliet", + "year": 1990, + "cast": [ + "John Hurt", + "Vanessa Redgrave" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "The Rookie", + "year": 1990, + "cast": [ + "Clint Eastwood", + "Charlie Sheen", + "Raul Julia", + "Sonia Braga" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Rose Kennedy: A Life to Remember", + "year": 1990, + "cast": [], + "genres": [ + "Documentary", + "Short" + ] + }, + { + "title": "Rosencrantz & Guildenstern Are Dead", + "year": 1990, + "cast": [ + "Tim Roth", + "Gary Oldman", + "Richard Dreyfuss" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Russia House", + "year": 1990, + "cast": [ + "Sean Connery", + "Michelle Pfeiffer", + "Roy Scheider", + "James Fox", + "Klaus Maria Brandauer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Shipwrecked", + "year": 1990, + "cast": [ + "Gabriel Byrne" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "A Shock to the System", + "year": 1990, + "cast": [ + "Michael Caine", + "Elizabeth McGovern", + "Swoosie Kurtz" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Short Time", + "year": 1990, + "cast": [ + "Dabney Coleman", + "Teri Garr" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Show of Force", + "year": 1990, + "cast": [ + "Amy Irving", + "Andy García", + "Robert Duvall", + "Kevin Spacey" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Shreck", + "year": 1990, + "cast": [], + "genres": [] + }, + { + "title": "The Shrimp on the Barbie", + "year": 1990, + "cast": [ + "Cheech Marin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Sibling Rivalry", + "year": 1990, + "cast": [ + "Kirstie Alley", + "Scott Bakula", + "Bill Pullman", + "Jami Gertz", + "Sam Elliott", + "Carrie Fisher" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Side Out", + "year": 1990, + "cast": [ + "C. Thomas Howell", + "Peter Horton" + ], + "genres": [ + "Drama", + "Sports" + ] + }, + { + "title": "Slumber Party Massacre 3", + "year": 1990, + "cast": [], + "genres": [ + "Horror" + ] + }, + { + "title": "Sorority House Massacre 2", + "year": 1990, + "cast": [ + "Gail Harris" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Snake Eater II: The Drug Buster", + "year": 1990, + "cast": [ + "Lorenzo Lamas" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Solar Crisis", + "year": 1990, + "cast": [ + "Tim Matheson", + "Charlton Heston", + "Peter Boyle" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Somebody has to Shoot the Picture", + "year": 1990, + "cast": [ + "Roy Scheider", + "Bonnie Bedelia" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Soultaker", + "year": 1990, + "cast": [ + "Joe Estevez" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "Spaced Invaders", + "year": 1990, + "cast": [ + "Douglas Barr" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Spirit of '76", + "year": 1990, + "cast": [ + "Carl Reiner", + "Rob Reiner" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Spontaneous Combustion", + "year": 1990, + "cast": [ + "Brad Dourif" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Spymaker: The Secret Life of Ian Fleming", + "year": 1990, + "cast": [ + "Jason Connery" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Stanley & Iris", + "year": 1990, + "cast": [ + "Jane Fonda", + "Robert De Niro", + "Martha Plimpton", + "Swoosie Kurtz" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "State of Grace", + "year": 1990, + "cast": [ + "Sean Penn", + "Ed Harris", + "Gary Oldman", + "Robin Wright", + "John Turturro", + "John C. Reilly" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Stella", + "year": 1990, + "cast": [ + "Bette Midler", + "Trini Alvarado", + "John Goodman", + "Stephen Collins", + "Marsha Mason", + "Eileen Brennan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Strike It Rich", + "year": 1990, + "cast": [ + "Robert Lindsay", + "Molly Ringwald" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Taking Care of Business", + "year": 1990, + "cast": [ + "James Belushi", + "Charles Grodin", + "Héctor Elizondo", + "Mako", + "Veronica Hamel" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Tales from the Darkside: The Movie", + "year": 1990, + "cast": [ + "Christian Slater", + "Julianne Moore" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Teenage Mutant Ninja Turtles", + "year": 1990, + "cast": [ + "Judith Hoag", + "Elias Koteas" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Terminal City Ricochet", + "year": 1990, + "cast": [], + "genres": [ + "Drama" + ] + }, + { + "title": "Texasville", + "year": 1990, + "cast": [ + "Jeff Bridges", + "Annie Potts", + "Cybill Shepherd", + "Cloris Leachman", + "Timothy Bottoms", + "Eileen Brennan", + "Randy Quaid" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "That's Black Entertainment", + "year": 1990, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "Three Men and a Little Lady", + "year": 1990, + "cast": [ + "Tom Selleck", + "Ted Danson", + "Steve Guttenberg", + "Nancy Travis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Till There Was You", + "year": 1990, + "cast": [ + "Mark Harmon" + ], + "genres": [] + }, + { + "title": "Time of Love", + "year": 1990, + "cast": [], + "genres": [] + }, + { + "title": "Too Much Sun", + "year": 1990, + "cast": [ + "Robert Downey, Jr.", + "Eric Idle", + "Ralph Macchio" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "To Sleep with Anger", + "year": 1990, + "cast": [ + "Danny Glover" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Total Recall", + "year": 1990, + "cast": [ + "Arnold Schwarzenegger", + "Rachel Ticotin", + "Sharon Stone", + "Michael Ironside", + "Ronny Cox" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Treasure Island", + "year": 1990, + "cast": [ + "Christian Bale", + "Charlton Heston" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Tremors", + "year": 1990, + "cast": [ + "Kevin Bacon", + "Fred Ward", + "Finn Carter", + "Michael Gross", + "Reba McEntire" + ], + "genres": [ + "Horror", + "Comedy" + ] + }, + { + "title": "Troll 2", + "year": 1990, + "cast": [], + "genres": [] + }, + { + "title": "Troll 3", + "year": 1990, + "cast": [], + "genres": [] + }, + { + "title": "Trust", + "year": 1990, + "cast": [ + "Adrienne Shelley" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Tune in Tomorrow", + "year": 1990, + "cast": [ + "Barbara Hershey", + "Peter Falk", + "Keanu Reeves" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Twisted Obsession", + "year": 1990, + "cast": [ + "Jeff Goldblum", + "Miranda Richardson" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Two Jakes", + "year": 1990, + "cast": [ + "Jack Nicholson", + "Harvey Keitel", + "Meg Tilly", + "Madeleine Stowe", + "Eli Wallach", + "Ruben Blades", + "Perry Lopez", + "Richard Farnsworth" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Vincent & Theo", + "year": 1990, + "cast": [ + "Tim Roth", + "Paul Rhys" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Voodoo Dawn", + "year": 1990, + "cast": [ + "Raymond St. Jacques", + "Theresa Merritt", + "Gina Gershon" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Welcome Home, Roxy Carmichael", + "year": 1990, + "cast": [ + "Winona Ryder", + "Jeff Daniels" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "When You Remember Me", + "year": 1990, + "cast": [ + "Kevin Spacey", + "Fred Savage" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Where the Heart Is", + "year": 1990, + "cast": [ + "Dabney Coleman", + "Uma Thurman", + "Crispin Glover", + "Suzy Amis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "White Hunter Black Heart", + "year": 1990, + "cast": [ + "Clint Eastwood", + "Jeff Fahey" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "White Palace", + "year": 1990, + "cast": [ + "James Spader", + "Susan Sarandon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "White Room", + "year": 1990, + "cast": [ + "Kate Nelligan", + "Margot Kidder" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Why Me?", + "year": 1990, + "cast": [ + "Christopher Lambert", + "Christopher Lloyd" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Wild Orchid", + "year": 1990, + "cast": [ + "Mickey Rourke", + "Carre Otis", + "Jacqueline Bisset" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Wild at Heart", + "year": 1990, + "cast": [ + "Nicolas Cage", + "Laura Dern", + "Diane Ladd", + "Willem Dafoe", + "Harry Dean Stanton", + "Isabella Rossellini" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Witchcraft II: The Temptress", + "year": 1990, + "cast": [ + "Delia Sheppard" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Witches", + "year": 1990, + "cast": [ + "Anjelica Huston", + "Mai Zetterling" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Without You I'm Nothing", + "year": 1990, + "cast": [ + "Sandra Bernhard" + ], + "genres": [ + "Performance" + ] + }, + { + "title": "Young Guns II", + "year": 1990, + "cast": [ + "Emilio Estevez", + "Kiefer Sutherland", + "Lou Diamond Phillips", + "Christian Slater", + "William Petersen" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Zapped Again!", + "year": 1990, + "cast": [ + "Todd Eric Andrews", + "Sue Ane Langdon", + "Karen Black", + "Linda Blair" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "12:01 PM", + "year": 1990, + "cast": [ + "Kurtwood Smith" + ], + "genres": [ + "Short" + ] + }, + { + "title": "29th Street", + "year": 1991, + "cast": [ + "Danny Aiello", + "Anthony LaPaglia" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Across the Tracks", + "year": 1991, + "cast": [ + "Rick Schroder", + "Brad Pitt", + "Carrie Snodgress" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Addams Family", + "year": 1991, + "cast": [ + "Anjelica Huston", + "Raúl Juliá", + "Christopher Lloyd", + "Christina Ricci", + "Dan Hedaya" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "All I Want for Christmas", + "year": 1991, + "cast": [ + "Harley Jane Kozak", + "Thora Birch", + "Ethan Embry", + "Jamey Sheridan", + "Leslie Nielsen" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "An American Tail: Fievel Goes West", + "year": 1991, + "cast": [ + "James Stewart", + "John Cleese", + "Amy Irving", + "(voices)" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "And the Sea Will Tell", + "year": 1991, + "cast": [ + "Rachel Ward", + "James Brolin", + "Richard Crenna", + "Deidre Hall" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Another You", + "year": 1991, + "cast": [ + "Richard Pryor", + "Gene Wilder", + "Mercedes Ruehl", + "Vanessa L. Williams" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "At Play in the Fields of the Lord", + "year": 1991, + "cast": [ + "Tom Berenger", + "Aidan Quinn", + "Daryl Hannah", + "John Lithgow", + "Kathy Bates", + "Tom Waits" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Backdraft", + "year": 1991, + "cast": [ + "Kurt Russell", + "William Baldwin", + "Robert De Niro", + "Scott Glenn", + "Donald Sutherland", + "Jennifer Jason Leigh", + "Rebecca De Mornay" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Barton Fink", + "year": 1991, + "cast": [ + "John Turturro", + "John Goodman", + "John Mahoney", + "Judy Davis", + "Michael Lerner", + "Steve Buscemi" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Beauty and the Beast", + "year": 1991, + "cast": [ + "Robby Benson", + "Paige O'Hara", + "Jerry Orbach", + "Angela Lansbury", + "(voices)" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Bill & Ted's Bogus Journey", + "year": 1991, + "cast": [ + "Keanu Reeves", + "Alex Winter", + "Joss Ackland", + "Pam Grier", + "George Carlin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Billy Bathgate", + "year": 1991, + "cast": [ + "Dustin Hoffman", + "Bruce Willis", + "Nicole Kidman", + "Steven Hill", + "Loren Dean" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Bingo", + "year": 1991, + "cast": [ + "Cindy Williams", + "David Rasche" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Blue Desert", + "year": 1991, + "cast": [ + "Courteney Cox", + "D. B. Sweeney" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Body Parts", + "year": 1991, + "cast": [ + "Jeff Fahey", + "Kim Delaney" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Boneyard", + "year": 1991, + "cast": [ + "Ed Nelson", + "Norman Fell" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Borrower", + "year": 1991, + "cast": [ + "Rae Dawn Chong" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Boyz n the Hood", + "year": 1991, + "cast": [ + "Ice Cube", + "Cuba Gooding, Jr.", + "Morris Chestnut", + "Laurence Fishburne", + "Angela Bassett", + "Nia Long" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Breathing Fire", + "year": 1991, + "cast": [ + "Jonathan Quan" + ], + "genres": [ + "Martial Arts" + ] + }, + { + "title": "Bride of Re-Animator", + "year": 1991, + "cast": [ + "Bruce Abbott" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "A Brief History of Time", + "year": 1991, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "Brother Future", + "year": 1991, + "cast": [ + "Phill Lewis", + "Moses Gunn" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Bugsy", + "year": 1991, + "cast": [ + "Warren Beatty", + "Annette Bening", + "Ben Kingsley", + "Harvey Keitel", + "Joe Mantegna", + "Elliott Gould", + "Wendy Phillips", + "Bebe Neuwirth", + "Bill Graham" + ], + "genres": [ + "Drama", + "Biography" + ] + }, + { + "title": "The Butcher's Wife", + "year": 1991, + "cast": [ + "Demi Moore", + "Jeff Daniels" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "By the Sword", + "year": 1991, + "cast": [ + "F. Murray Abraham", + "Eric Roberts", + "Mia Sara" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Cape Fear", + "year": 1991, + "cast": [ + "Robert De Niro", + "Nick Nolte", + "Jessica Lange", + "Juliette Lewis", + "Robert Mitchum", + "Gregory Peck", + "Joe Don Baker", + "Fred Dalton Thompson", + "Illeana Douglas" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Captain America", + "year": 1991, + "cast": [ + "Matt Salinger", + "Ronny Cox", + "Ned Beatty" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Career Opportunities", + "year": 1991, + "cast": [ + "Jennifer Connelly", + "Frank Whaley" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Children of the Night", + "year": 1991, + "cast": [ + "Ami Dolenz", + "Karen Black" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Child's Play 3", + "year": 1991, + "cast": [ + "Brad Dourif", + "Justin Whalin", + "Perrey Reeves" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Chopper Chicks in Zombietown", + "year": 1991, + "cast": [ + "Vicki Frederick", + "Billy Bob Thornton" + ], + "genres": [ + "Comedy", + "Horror" + ] + }, + { + "title": "Chuck Amuck: The Movie", + "year": 1991, + "cast": [ + "Chuck Jones" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "City of Hope", + "year": 1991, + "cast": [ + "Vincent Spano", + "Chris Cooper", + "Joe Morton", + "Angela Bassett" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "City Slickers", + "year": 1991, + "cast": [ + "Billy Crystal", + "Daniel Stern", + "Bruno Kirby", + "Patricia Wettig", + "Helen Slater", + "Jack Palance" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Class Action", + "year": 1991, + "cast": [ + "Gene Hackman", + "Mary Elizabeth Mastrantonio" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Class of Nuke 'Em High II: Subhumanoid Meltdown", + "year": 1991, + "cast": [ + "Lisa Gaye" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Closet Land", + "year": 1991, + "cast": [ + "Madeleine Stowe", + "Alan Rickman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Cold Heaven", + "year": 1991, + "cast": [ + "Theresa Russell", + "Mark Harmon", + "James Russo" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Commitments", + "year": 1991, + "cast": [ + "Colm Meaney", + "Robert Arkins" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Company Business", + "year": 1991, + "cast": [ + "Gene Hackman", + "Mikhail Baryshnikov" + ], + "genres": [ + "Spy" + ] + }, + { + "title": "Cool as Ice", + "year": 1991, + "cast": [ + "Vanilla Ice", + "Kristin Minter", + "Michael Gross", + "Candy Clark", + "John Haymes Newton", + "Naomi Campbell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Curly Sue", + "year": 1991, + "cast": [ + "Alisan Porter", + "James Belushi", + "Kelly Lynch", + "John Getz", + "Fred Dalton Thompson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Dark Backward", + "year": 1991, + "cast": [ + "Judd Nelson", + "Bill Paxton", + "Wayne Newton", + "Lara Flynn Boyle" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Dark Wind", + "year": 1991, + "cast": [ + "Lou Diamond Phillips", + "Fred Ward" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Daughters of the Dust", + "year": 1991, + "cast": [], + "genres": [ + "Drama" + ] + }, + { + "title": "Dead Again", + "year": 1991, + "cast": [ + "Kenneth Branagh", + "Andy García", + "Emma Thompson", + "Robin Williams" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Deceived", + "year": 1991, + "cast": [ + "Goldie Hawn", + "John Heard" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Defending Your Life", + "year": 1991, + "cast": [ + "Albert Brooks", + "Meryl Streep", + "Rip Torn", + "Lee Grant" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Defenseless", + "year": 1991, + "cast": [ + "Barbara Hershey", + "Sam Shepard", + "J.T. Walsh" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Delirious", + "year": 1991, + "cast": [ + "John Candy", + "Mariel Hemingway", + "Emma Samms" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Do or Die", + "year": 1991, + "cast": [ + "Pat Morita", + "Erik Estrada" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Doc Hollywood", + "year": 1991, + "cast": [ + "Michael J. Fox", + "Julie Warner", + "Woody Harrelson", + "Bridget Fonda" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Doctor", + "year": 1991, + "cast": [ + "William Hurt", + "Christine Lahti", + "Mandy Patinkin", + "Elizabeth Perkins", + "Adam Arkin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dogfight", + "year": 1991, + "cast": [ + "River Phoenix", + "Lili Taylor" + ], + "genres": [ + "Drama", + "War" + ] + }, + { + "title": "Don't Tell Mom the Babysitter's Dead", + "year": 1991, + "cast": [ + "Christina Applegate", + "Joanna Cassidy", + "Keith Coogan", + "Josh Charles" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Doors", + "year": 1991, + "cast": [ + "Val Kilmer", + "Meg Ryan", + "Kyle MacLachlan", + "Kathleen Quinlan", + "Frank Whaley", + "Kevin Dillon", + "Josh Evans", + "Billy Idol" + ], + "genres": [ + "Drama", + "Biography" + ] + }, + { + "title": "Double Impact", + "year": 1991, + "cast": [ + "Jean-Claude Van Damme" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Drop Dead Fred", + "year": 1991, + "cast": [ + "Phoebe Cates", + "Rik Mayall" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Dutch", + "year": 1991, + "cast": [ + "Ed O'Neill", + "Ethan Embry", + "JoBeth Williams", + "Christopher McDonald" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Dying Young", + "year": 1991, + "cast": [ + "Julia Roberts", + "Campbell Scott", + "Vincent D'Onofrio", + "Colleen Dewhurst", + "David Selby" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Edge of Honor", + "year": 1991, + "cast": [ + "Corey Feldman", + "Meredith Salenger" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Ernest Scared Stupid", + "year": 1991, + "cast": [ + "Jim Varney" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Eve of Destruction", + "year": 1991, + "cast": [ + "Gregory Hines", + "Renee Soutendijk" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Eyes of an Angel", + "year": 1991, + "cast": [ + "John Travolta", + "Ellie Raab", + "Tito Larriva" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "F/X2", + "year": 1991, + "cast": [ + "Bryan Brown", + "Brian Dennehy", + "Rachel Ticotin", + "Joanna Gleason" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "Father of the Bride", + "year": 1991, + "cast": [ + "Steve Martin", + "Diane Keaton", + "Kimberly Williams", + "Martin Short", + "George Newbern" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Final Approach", + "year": 1991, + "cast": [ + "James Sikking", + "Héctor Elizondo" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Fisher King", + "year": 1991, + "cast": [ + "Robin Williams", + "Jeff Bridges", + "Mercedes Ruehl", + "Amanda Plummer" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "The Five Heartbeats", + "year": 1991, + "cast": [ + "Robert Townsend", + "Michael Wright", + "Leon Robinson" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Flight of the Intruder", + "year": 1991, + "cast": [ + "Danny Glover", + "Willem Dafoe", + "Brad Johnson", + "Rosanna Arquette", + "Tom Sizemore" + ], + "genres": [ + "Action" + ] + }, + { + "title": "For the Boys", + "year": 1991, + "cast": [ + "Bette Midler", + "James Caan", + "George Segal", + "Arye Gross" + ], + "genres": [ + "Drama", + "Musical" + ] + }, + { + "title": "Frankie and Johnny", + "year": 1991, + "cast": [ + "Al Pacino", + "Michelle Pfeiffer", + "Héctor Elizondo", + "Kate Nelligan" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Freddy's Dead: The Final Nightmare", + "year": 1991, + "cast": [ + "Robert Englund", + "Lisa Zane" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Fried Green Tomatoes", + "year": 1991, + "cast": [ + "Kathy Bates", + "Mary Stuart Masterson", + "Mary-Louise Parker", + "Jessica Tandy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Grand Canyon", + "year": 1991, + "cast": [ + "Kevin Kline", + "Danny Glover", + "Alfre Woodard", + "Steve Martin", + "Mary-Louise Parker", + "Mary McDonnell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Guilty by Suspicion", + "year": 1991, + "cast": [ + "Robert De Niro", + "Annette Bening", + "Patricia Wettig", + "Sam Wanamaker", + "George Wendt" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hangin' with the Homeboys", + "year": 1991, + "cast": [ + "John Leguizamo", + "Mario Joyner", + "Doug E. Doug" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hard Promises", + "year": 1991, + "cast": [ + "Sissy Spacek", + "William Petersen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Hard Way", + "year": 1991, + "cast": [ + "Michael J. Fox", + "James Woods", + "Stephen Lang", + "Annabella Sciorra", + "Delroy Lindo", + "Luis Guzman", + "Penny Marshall" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Harley Davidson and the Marlboro Man", + "year": 1991, + "cast": [ + "Mickey Rourke", + "Don Johnson", + "Tom Sizemore", + "Daniel Baldwin", + "Chelsea Field", + "Vanessa L. Williams", + "Giancarlo Esposito", + "Tia Carrere" + ], + "genres": [ + "Action" + ] + }, + { + "title": "He Said, She Said", + "year": 1991, + "cast": [ + "Kevin Bacon", + "Elizabeth Perkins", + "Nathan Lane", + "Sharon Stone" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hear My Song", + "year": 1991, + "cast": [ + "Adrian Dunbar", + "David McCallum", + "Ned Beatty" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hearts of Darkness: A Filmmaker's Apocalypse", + "year": 1991, + "cast": [ + "Eleanor Coppola", + "(narrator)" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Heroes of Desert Storm", + "year": 1991, + "cast": [], + "genres": [] + }, + { + "title": "Highlander II: The Quickening", + "year": 1991, + "cast": [ + "Christopher Lambert", + "Virginia Madsen", + "Sean Connery", + "Michael Ironside" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Highway 61", + "year": 1991, + "cast": [ + "Valerie Buhagiar" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Hitman", + "year": 1991, + "cast": [ + "Chuck Norris", + "Michael Parks" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Homicide", + "year": 1991, + "cast": [ + "Joe Mantegna", + "William H. Macy", + "Ving Rhames" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hook", + "year": 1991, + "cast": [ + "Robin Williams", + "Dustin Hoffman", + "Julia Roberts", + "Bob Hoskins", + "Charlie Korsmo", + "Maggie Smith", + "Amber Scott", + "Caroline Goodall", + "Dante Basco" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Hot Shots!", + "year": 1991, + "cast": [ + "Charlie Sheen", + "Cary Elwes", + "Valeria Golino", + "Jon Cryer", + "Lloyd Bridges" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Hours and Times", + "year": 1991, + "cast": [ + "David Angus", + "Ian Hart" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "House Party 2", + "year": 1991, + "cast": [], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hudson Hawk", + "year": 1991, + "cast": [ + "Bruce Willis", + "Danny Aiello", + "Andie MacDowell", + "James Coburn", + "Sandra Bernhard", + "Richard E. Grant", + "David Caruso" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "If Looks Could Kill", + "year": 1991, + "cast": [ + "Richard Grieco", + "Linda Hunt", + "Roger Rees", + "Gabrielle Anwar", + "Roger Daltrey" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Indian Runner", + "year": 1991, + "cast": [ + "Viggo Mortensen", + "David Morse", + "Valeria Golino", + "Patricia Arquette", + "Charles Bronson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Inner Circle", + "year": 1991, + "cast": [ + "Tom Hulce", + "Lolita Davidovich", + "Bob Hoskins" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "JFK", + "year": 1991, + "cast": [ + "Kevin Costner", + "Tommy Lee Jones", + "Gary Oldman", + "Joe Pesci", + "Kevin Bacon", + "Sissy Spacek", + "Donald Sutherland", + "Laurie Metcalf", + "John Candy", + "Ed Asner", + "Michael Rooker", + "Jack Lemmon", + "Walter Matthau" + ], + "genres": [ + "Drama", + "Biography" + ] + }, + { + "title": "Johnny Suede", + "year": 1991, + "cast": [ + "Brad Pitt", + "Catherine Keener" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Jungle Fever", + "year": 1991, + "cast": [ + "Wesley Snipes", + "Annabella Sciorra", + "Spike Lee", + "Anthony Quinn", + "John Turturro", + "Samuel L. Jackson", + "Ossie Davis", + "Ruby Dee", + "Halle Berry" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Kafka", + "year": 1991, + "cast": [ + "Jeremy Irons", + "Alec Guinness", + "Theresa Russell", + "Ian Holm" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "King Ralph", + "year": 1991, + "cast": [ + "John Goodman", + "Peter O'Toole", + "John Hurt" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Kiss Before Dying", + "year": 1991, + "cast": [ + "Matt Dillon", + "Sean Young", + "Max von Sydow", + "Diane Ladd", + "James Russo" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "L.A. Story", + "year": 1991, + "cast": [ + "Steve Martin", + "Victoria Tennant", + "Marilu Henner", + "Richard E. Grant", + "Sarah Jessica Parker" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Last Boy Scout", + "year": 1991, + "cast": [ + "Bruce Willis", + "Damon Wayans", + "Chelsea Field", + "Noble Willingham", + "Taylor Negron", + "Danielle Harris", + "Halle Berry" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Liebestraum", + "year": 1991, + "cast": [ + "Bill Pullman", + "Kevin Anderson", + "Kim Novak" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Life Stinks", + "year": 1991, + "cast": [ + "Mel Brooks", + "Lesley Ann Warren", + "Howard Morris", + "Jeffrey Tambor" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Linguini Incident", + "year": 1991, + "cast": [ + "David Bowie", + "Rosanna Arquette" + ], + "genres": [] + }, + { + "title": "Little Man Tate", + "year": 1991, + "cast": [ + "Jodie Foster", + "Dianne Wiest", + "Harry Connick, Jr.", + "Adam Hann-Byrd" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Love Hurts", + "year": 1991, + "cast": [ + "Jeff Daniels", + "Judith Ivey", + "Cloris Leachman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Madonna: Truth or Dare", + "year": 1991, + "cast": [ + "Madonna" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Man in the Moon", + "year": 1991, + "cast": [ + "Reese Witherspoon", + "Jason London", + "Sam Waterston", + "Tess Harper" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Marrying Man", + "year": 1991, + "cast": [ + "Alec Baldwin", + "Kim Basinger", + "Elisabeth Shue", + "Paul Reiser", + "Fisher Stevens", + "Robert Loggia" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "McBain", + "year": 1991, + "cast": [ + "Christopher Walken", + "María Conchita Alonso", + "Michael Ironside" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Meet the Applegates", + "year": 1991, + "cast": [ + "Ed Begley, Jr.", + "Stockard Channing", + "Dabney Coleman" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Men of Respect", + "year": 1991, + "cast": [ + "John Turturro", + "Rod Steiger", + "Dennis Farina", + "Stanley Tucci", + "Peter Boyle" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Mississippi Masala", + "year": 1991, + "cast": [ + "Denzel Washington" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Mobsters", + "year": 1991, + "cast": [ + "Christian Slater", + "Patrick Dempsey", + "Richard Grieco", + "Costas Mandylor", + "Michael Gambon", + "Lara Flynn Boyle", + "Chris Penn", + "F. Murray Abraham", + "Anthony Quinn" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Mortal Thoughts", + "year": 1991, + "cast": [ + "Demi Moore", + "Glenne Headly", + "Harvey Keitel", + "Bruce Willis" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "My Girl", + "year": 1991, + "cast": [ + "Dan Aykroyd", + "Jamie Lee Curtis", + "Macaulay Culkin", + "Anna Chlumsky" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "My Own Private Idaho", + "year": 1991, + "cast": [ + "Keanu Reeves", + "River Phoenix" + ], + "genres": [] + }, + { + "title": "Mystery Date", + "year": 1991, + "cast": [ + "Ethan Hawke", + "Teri Polo" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Naked Gun 2½: The Smell of Fear", + "year": 1991, + "cast": [ + "Leslie Nielsen", + "Priscilla Presley", + "George Kennedy", + "O. J. Simpson", + "Robert Goulet" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Naked Lunch", + "year": 1991, + "cast": [ + "Peter Weller", + "Judy Davis", + "Roy Scheider" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Necessary Roughness", + "year": 1991, + "cast": [ + "Scott Bakula", + "Héctor Elizondo", + "Sinbad", + "Kathy Ireland", + "Harley Jane Kozak" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "New Jack City", + "year": 1991, + "cast": [ + "Wesley Snipes", + "Ice-T", + "Mario Van Peebles", + "Chris Rock", + "Judd Nelson" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Night on Earth", + "year": 1991, + "cast": [ + "Winona Ryder", + "Gena Rowlands", + "Roberto Benigni" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Not Without My Daughter", + "year": 1991, + "cast": [ + "Sally Field", + "Alfred Molina" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Nothing but Trouble", + "year": 1991, + "cast": [ + "Chevy Chase", + "Demi Moore", + "John Candy", + "Dan Aykroyd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Object of Beauty", + "year": 1991, + "cast": [ + "John Malkovich", + "Andie MacDowell", + "Lolita Davidovich" + ], + "genres": [ + "Crime", + "Comedy" + ] + }, + { + "title": "Once Around", + "year": 1991, + "cast": [ + "Richard Dreyfuss", + "Holly Hunter", + "Danny Aiello", + "Gena Rowlands", + "Laura San Giacomo" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "One Good Cop", + "year": 1991, + "cast": [ + "Michael Keaton", + "Rene Russo", + "Anthony LaPaglia", + "Benjamin Bratt" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Only the Lonely", + "year": 1991, + "cast": [ + "John Candy", + "Maureen O'Hara", + "Ally Sheedy", + "Anthony Quinn", + "James Belushi" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Oscar", + "year": 1991, + "cast": [ + "Sylvester Stallone", + "Ornella Muti", + "Peter Riegert", + "Vincent Spano", + "Marisa Tomei", + "Tim Curry" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Other People's Money", + "year": 1991, + "cast": [ + "Danny DeVito", + "Gregory Peck", + "Penelope Ann Miller", + "Piper Laurie", + "Dean Jones" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "Out for Justice", + "year": 1991, + "cast": [ + "Steven Seagal", + "William Forsythe", + "Jerry Orbach" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Paradise", + "year": 1991, + "cast": [ + "Melanie Griffith", + "Don Johnson", + "Elijah Wood", + "Thora Birch" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Paris Trout", + "year": 1991, + "cast": [ + "Dennis Hopper", + "Barbara Hershey", + "Ed Harris" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Pastime", + "year": 1991, + "cast": [ + "William Russ", + "Glenn Plummer", + "Jeffrey Tambor" + ], + "genres": [ + "Sports", + "Drama" + ] + }, + { + "title": "The People Under the Stairs", + "year": 1991, + "cast": [ + "Everett McGill", + "Ving Rhames", + "Brandon Adams" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Perfect Harmony", + "year": 1991, + "cast": [], + "genres": [] + }, + { + "title": "The Perfect Weapon", + "year": 1991, + "cast": [ + "Jeff Speakman", + "Mako", + "Mariska Hargitay" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Point Break", + "year": 1991, + "cast": [ + "Patrick Swayze", + "Keanu Reeves", + "Lori Petty", + "Gary Busey" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Poison", + "year": 1991, + "cast": [], + "genres": [ + "Drama" + ] + }, + { + "title": "The Prince of Tides", + "year": 1991, + "cast": [ + "Nick Nolte", + "Barbra Streisand", + "Blythe Danner", + "Melinda Dillon", + "Kate Nelligan", + "George Carlin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Problem Child 2", + "year": 1991, + "cast": [ + "John Ritter", + "Michael Oliver", + "Amy Yasbeck", + "Jack Warden", + "Laraine Newman", + "Ivyann Schwan", + "Gilbert Gottfried" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Puppet Master II", + "year": 1991, + "cast": [ + "Elizabeth Maclellan", + "Collin Bernsen" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Puppet Master III: Toulon's Revenge", + "year": 1991, + "cast": [ + "Guy Rolfe", + "Sarah Douglas", + "Walter Gotell" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Pure Luck", + "year": 1991, + "cast": [ + "Martin Short", + "Danny Glover", + "Sheila Kelly" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Rage in Harlem", + "year": 1991, + "cast": [ + "Forest Whitaker", + "Gregory Hines", + "Robin Givens" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Rambling Rose", + "year": 1991, + "cast": [ + "Laura Dern", + "Diane Ladd", + "Robert Duvall", + "Lukas Haas" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Rapture", + "year": 1991, + "cast": [ + "Mimi Rogers", + "David Duchovny", + "Will Patton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Regarding Henry", + "year": 1991, + "cast": [ + "Harrison Ford", + "Annette Bening", + "Donald Moffat", + "Bill Nunn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Return to the Blue Lagoon", + "year": 1991, + "cast": [ + "Milla Jovovich", + "Brian Krause" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Ricochet", + "year": 1991, + "cast": [ + "Denzel Washington", + "John Lithgow", + "Lindsay Wagner" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Road to Ruin", + "year": 1991, + "cast": [ + "Peter Weller", + "Carey Lowell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Robin Hood: Prince of Thieves", + "year": 1991, + "cast": [ + "Kevin Costner", + "Morgan Freeman", + "Mary Elizabeth Mastrantonio", + "Alan Rickman", + "Christian Slater" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Rocketeer", + "year": 1991, + "cast": [ + "Billy Campbell", + "Jennifer Connelly", + "Timothy Dalton", + "Alan Arkin", + "Paul Sorvino" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Rover Dangerfield", + "year": 1991, + "cast": [ + "Rodney Dangerfield", + "Ronnie Schell" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Run", + "year": 1991, + "cast": [ + "Patrick Dempsey", + "Kelly Preston" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Rush", + "year": 1991, + "cast": [ + "Jason Patric", + "Jennifer Jason Leigh", + "Sam Elliott" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Scenes from a Mall", + "year": 1991, + "cast": [ + "Woody Allen", + "Bette Midler" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Scissors", + "year": 1991, + "cast": [ + "Sharon Stone", + "Ronny Cox", + "Steve Railsback" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Scorchers", + "year": 1991, + "cast": [ + "Faye Dunaway", + "James Earl Jones", + "Emily Lloyd", + "Jennifer Tilly" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Search for Signs of Intelligent Life in the Universe", + "year": 1991, + "cast": [ + "Lily Tomlin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Sgt. Kabukiman N.Y.P.D.", + "year": 1991, + "cast": [], + "genres": [] + }, + { + "title": "Shadows and Fog", + "year": 1991, + "cast": [ + "Woody Allen", + "John Cusack", + "Mia Farrow", + "Jodie Foster", + "Kathy Bates", + "John Malkovich", + "Madonna", + "Lily Tomlin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Shattered", + "year": 1991, + "cast": [ + "Tom Berenger", + "Greta Scacchi", + "Bob Hoskins", + "Joanne Whalley", + "Corbin Bernsen" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "Shout", + "year": 1991, + "cast": [ + "Jamie Walters", + "Heather Graham", + "Linda Fiorentino", + "John Travolta" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Showdown in Little Tokyo", + "year": 1991, + "cast": [ + "Dolph Lundgren", + "Brandon Lee" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Silence of the Lambs", + "year": 1991, + "cast": [ + "Anthony Hopkins", + "Jodie Foster", + "Scott Glenn", + "Ted Levine", + "Frankie Faison", + "Anthony Heald", + "Kasi Lemmons", + "Diane Baker", + "Brooke Smith" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Slacker", + "year": 1991, + "cast": [], + "genres": [] + }, + { + "title": "Sleeping with the Enemy", + "year": 1991, + "cast": [ + "Julia Roberts", + "Patrick Bergin", + "Kevin Anderson" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Soapdish", + "year": 1991, + "cast": [ + "Sally Field", + "Kevin Kline", + "Robert Downey, Jr.", + "Elisabeth Shue", + "Cathy Moriarty", + "Whoopi Goldberg", + "Kathy Najimy", + "Carrie Fisher", + "Teri Hatcher" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Sometimes They Come Back", + "year": 1991, + "cast": [ + "Tim Matheson", + "Brooke Adams" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Star Trek VI: The Undiscovered Country", + "year": 1991, + "cast": [ + "William Shatner", + "Leonard Nimoy", + "Christopher Plummer", + "Kim Cattrall", + "David Warner", + "Iman", + "Brock Peters", + "DeForest Kelley", + "Nichelle Nichols" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Stepping Out", + "year": 1991, + "cast": [ + "Liza Minnelli", + "Julie Walters", + "Jane Krakowski", + "Bill Irwin", + "Ellen Greene", + "Shelley Winters", + "Sheila McCarthy", + "Andrea Martin", + "Carol Woods" + ], + "genres": [ + "Drama", + "Musical" + ] + }, + { + "title": "Stone Cold", + "year": 1991, + "cast": [ + "Brian Bosworth", + "William Forsythe" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Straight Out of Brooklyn", + "year": 1991, + "cast": [ + "Larry Gilliard, Jr.", + "Matty Rich" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Strictly Business", + "year": 1991, + "cast": [ + "Tommy Davidson", + "Joseph C. Phillips", + "Halle Berry", + "Anne-Marie Johnson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Suburban Commando", + "year": 1991, + "cast": [ + "Hulk Hogan", + "Christopher Lloyd", + "Shelley Duvall" + ], + "genres": [ + "Science Fiction", + "Comedy" + ] + }, + { + "title": "The Super", + "year": 1991, + "cast": [ + "Joe Pesci", + "Vincent Gardenia", + "Rubén Blades" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Switch", + "year": 1991, + "cast": [ + "Ellen Barkin", + "Bruce Payne", + "Jimmy Smits", + "JoBeth Williams" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Taking of Beverly Hills", + "year": 1991, + "cast": [ + "Ken Wahl", + "Harley Jane Kozak" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Talent for the Game", + "year": 1991, + "cast": [ + "Edward James Olmos", + "Lorraine Bracco" + ], + "genres": [ + "Sports" + ] + }, + { + "title": "Talkin' Dirty After Dark", + "year": 1991, + "cast": [ + "Martin Lawrence", + "Mark Curry" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Teenage Mutant Ninja Turtles II: The Secret of the Ooze", + "year": 1991, + "cast": [ + "Paige Turco", + "David Warner", + "Ernie Reyes, Jr." + ], + "genres": [ + "Action", + "Comedy", + "Family" + ] + }, + { + "title": "Terminator 2: Judgment Day", + "year": 1991, + "cast": [ + "Arnold Schwarzenegger", + "Linda Hamilton", + "Robert Patrick", + "Edward Furlong" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Thelma & Louise", + "year": 1991, + "cast": [ + "Susan Sarandon", + "Geena Davis", + "Harvey Keitel", + "Michael Madsen", + "Brad Pitt", + "Christopher McDonald", + "Stephen Tobolowsky" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "There's Nothing Out There", + "year": 1991, + "cast": [ + "Craig Peck", + "Wendy Bednarz" + ], + "genres": [ + "Comedy", + "Horror" + ] + }, + { + "title": "Together Alone", + "year": 1991, + "cast": [ + "Terry Curry", + "Todd Stites" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Toy Soldiers", + "year": 1991, + "cast": [ + "Sean Astin", + "Wil Wheaton", + "Louis Gossett, Jr.", + "Denholm Elliott" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Triple Bogey on a Par Five Hole", + "year": 1991, + "cast": [ + "Eric Mitchell", + "and", + "Daisy Hall" + ], + "genres": [ + "Crime", + "Comedy" + ] + }, + { + "title": "True Colors", + "year": 1991, + "cast": [ + "John Cusack", + "James Spader", + "Richard Widmark" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "True Identity", + "year": 1991, + "cast": [ + "Frank Langella", + "Lenny Henry" + ], + "genres": [] + }, + { + "title": "Two Evil Eyes", + "year": 1991, + "cast": [ + "Harvey Keitel", + "E. G. Marshall", + "Martin Balsam", + "Adrienne Barbeau" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Victim of Love", + "year": 1991, + "cast": [ + "Pierce Brosnan", + "JoBeth Williams", + "Virginia Madsen" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "What About Bob?", + "year": 1991, + "cast": [ + "Bill Murray", + "Richard Dreyfuss", + "Julie Hagerty", + "Charlie Korsmo", + "Kathryn Erbe" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "White Fang", + "year": 1991, + "cast": [ + "Ethan Hawke", + "Klaus Maria Brandauer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Whore", + "year": 1991, + "cast": [ + "Theresa Russell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Wild Hearts Can't Be Broken", + "year": 1991, + "cast": [ + "Gabrielle Anwar", + "Michael Schoeffling", + "Cliff Robertson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Year of the Gun", + "year": 1991, + "cast": [ + "Andrew McCarthy", + "Sharon Stone", + "Valeria Golino" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "1492: Conquest of Paradise", + "year": 1992, + "cast": [ + "Gérard Depardieu", + "Armand Assante", + "Sigourney Weaver" + ], + "genres": [ + "Drama", + "Biography" + ] + }, + { + "title": "1991: The Year Punk Broke", + "year": 1992, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "3 Ninjas", + "year": 1992, + "cast": [ + "Max Elliott Slade" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Aladdin", + "year": 1992, + "cast": [ + "voices of", + "Robin Williams", + "Gilbert Gottfried" + ], + "genres": [ + "Animated", + "Comedy" + ] + }, + { + "title": "Alien 3", + "year": 1992, + "cast": [ + "Sigourney Weaver", + "Charles S. Dutton", + "Charles Dance" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "American Me", + "year": 1992, + "cast": [ + "Edward James Olmos", + "William Forsythe" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Article 99", + "year": 1992, + "cast": [ + "Ray Liotta", + "Kiefer Sutherland", + "Forest Whitaker" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Babe", + "year": 1992, + "cast": [ + "John Goodman", + "Kelly McGillis", + "Trini Alvarado" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Bad Lieutenant", + "year": 1992, + "cast": [ + "Harvey Keitel", + "Victor Argo" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Basic Instinct", + "year": 1992, + "cast": [ + "Michael Douglas", + "Sharon Stone", + "George Dzundza", + "Jeanne Tripplehorn" + ], + "genres": [ + "Erotic", + "Thriller" + ] + }, + { + "title": "Batman Returns", + "year": 1992, + "cast": [ + "Michael Keaton", + "Danny DeVito", + "Michelle Pfeiffer" + ], + "genres": [ + "Superhero" + ] + }, + { + "title": "Beauty and the Beast", + "year": 1992, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "Bébé's Kids", + "year": 1992, + "cast": [ + "Faizon Love", + "Vanessa Bell Calloway" + ], + "genres": [] + }, + { + "title": "Beethoven", + "year": 1992, + "cast": [ + "Charles Grodin", + "Bonnie Hunt" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Blame It on the Bellboy", + "year": 1992, + "cast": [ + "Dudley Moore", + "Bryan Brown", + "Patsy Kensit" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Blown Away", + "year": 1992, + "cast": [ + "Corey Haim", + "Nicole Eggert", + "Corey Feldman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Bob Roberts", + "year": 1992, + "cast": [ + "Tim Robbins", + "Giancarlo Esposito", + "Fred Ward" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Bodyguard", + "year": 1992, + "cast": [ + "Kevin Costner", + "Whitney Houston" + ], + "genres": [ + "Crime", + "Romance" + ] + }, + { + "title": "Boomerang", + "year": 1992, + "cast": [ + "Eddie Murphy", + "Robin Givens", + "Halle Berry" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Brain Donors", + "year": 1992, + "cast": [ + "John Turturro", + "Mel Smith", + "Nancy Marchand" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Bram Stoker's Dracula", + "year": 1992, + "cast": [ + "Gary Oldman", + "Winona Ryder", + "Keanu Reeves", + "Anthony Hopkins" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Buffy the Vampire Slayer", + "year": 1992, + "cast": [ + "Kristy Swanson", + "Donald Sutherland", + "Luke Perry", + "Rutger Hauer", + "Paul Reubens" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Candyman", + "year": 1992, + "cast": [ + "Virginia Madsen", + "Tony Todd" + ], + "genres": [ + "Slasher" + ] + }, + { + "title": "Captain Ron", + "year": 1992, + "cast": [ + "Kurt Russell", + "Martin Short", + "Mary Kay Place" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Chain of Desire", + "year": 1992, + "cast": [ + "Malcolm McDowell", + "Linda Fiorentino", + "Elias Koteas" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Chaplin", + "year": 1992, + "cast": [ + "Robert Downey, Jr.", + "Dan Aykroyd", + "Kevin Kline", + "Anthony Hopkins" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Child of Rage", + "year": 1992, + "cast": [ + "Mel Harris", + "Mariette Hartley" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Children of the Corn II: The Final Sacrifice", + "year": 1992, + "cast": [ + "Terence Knox" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Christopher Columbus: The Discovery", + "year": 1992, + "cast": [ + "Georges Corraface", + "Rachel Ward", + "Tom Selleck", + "Marlon Brando" + ], + "genres": [ + "Adventure", + "Biography" + ] + }, + { + "title": "Claire of the Moon", + "year": 1992, + "cast": [], + "genres": [] + }, + { + "title": "Class Act", + "year": 1992, + "cast": [ + "Kid 'n Play" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Consenting Adults", + "year": 1992, + "cast": [ + "Kevin Kline", + "Mary Elizabeth Mastrantonio", + "Kevin Spacey", + "Rebecca Miller", + "Forest Whitaker" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Cool World", + "year": 1992, + "cast": [ + "Kim Basinger", + "Gabriel Byrne", + "Brad Pitt" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "CrissCross", + "year": 1992, + "cast": [ + "Goldie Hawn", + "Arliss Howard" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Crossing the Bridge", + "year": 1992, + "cast": [ + "Josh Charles", + "Jason Gedrick", + "Stephen Baldwin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Cruel Doubt", + "year": 1992, + "cast": [ + "Blythe Danner", + "Ed Asner", + "Gwyneth Paltrow" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Cutting Edge", + "year": 1992, + "cast": [ + "D. B. Sweeney", + "Moira Kelly" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Death Becomes Her", + "year": 1992, + "cast": [ + "Meryl Streep", + "Bruce Willis", + "Goldie Hawn", + "Isabella Rossellini" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Deep Cover", + "year": 1992, + "cast": [ + "Laurence Fishburne", + "Jeff Goldblum" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Diggstown", + "year": 1992, + "cast": [ + "James Woods", + "Louis Gossett, Jr.", + "Oliver Platt", + "Heather Graham", + "Bruce Dern" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Distinguished Gentleman", + "year": 1992, + "cast": [ + "Eddie Murphy", + "Lane Smith" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Dr. Giggles", + "year": 1992, + "cast": [ + "Larry Drake", + "Holly Marie Combs", + "Cliff DeYoung" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Encino Man", + "year": 1992, + "cast": [ + "Brendan Fraser", + "Sean Astin", + "Pauly Shore" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Equinox", + "year": 1992, + "cast": [ + "Matthew Modine", + "Lara Flynn Boyle", + "Marisa Tomei" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Falling from Grace", + "year": 1992, + "cast": [ + "John Mellencamp", + "Mariel Hemingway", + "Kay Lenz" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Far and Away", + "year": 1992, + "cast": [ + "Tom Cruise", + "Nicole Kidman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "FernGully: The Last Rainforest", + "year": 1992, + "cast": [ + "Jonathan Ward", + "Samantha Mathis", + "Tim Curry", + "Robin Williams", + "Christian Slater" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "A Few Good Men", + "year": 1992, + "cast": [ + "Tom Cruise", + "Demi Moore", + "Jack Nicholson", + "Kiefer Sutherland", + "Kevin Bacon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Fifty/Fifty", + "year": 1992, + "cast": [ + "Peter Weller", + "Robert Hays" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Final Analysis", + "year": 1992, + "cast": [ + "Richard Gere", + "Kim Basinger", + "Uma Thurman", + "Eric Roberts", + "Keith David" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Folks!", + "year": 1992, + "cast": [ + "Tom Selleck", + "Don Ameche", + "Anne Jackson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Forever Young", + "year": 1992, + "cast": [ + "Mel Gibson", + "Jamie Lee Curtis", + "Elijah Wood" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Four Eyes and Six Guns", + "year": 1992, + "cast": [ + "Judge Reinhold", + "Patricia Clarkson", + "Fred Ward" + ], + "genres": [ + "Comedy", + "Western" + ] + }, + { + "title": "Freejack", + "year": 1992, + "cast": [ + "Emilio Estevez", + "Anthony Hopkins", + "Mick Jagger", + "Rene Russo" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Frozen Assets", + "year": 1992, + "cast": [ + "Shelley Long", + "Corbin Bernsen" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Gas Food Lodging", + "year": 1992, + "cast": [ + "Brooke Adams", + "Ione Skye" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Gladiator", + "year": 1992, + "cast": [ + "Cuba Gooding, Jr.", + "James Marshall", + "Brian Dennehy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Glengarry Glen Ross", + "year": 1992, + "cast": [ + "Al Pacino", + "Jack Lemmon", + "Ed Harris", + "Kevin Spacey", + "Alec Baldwin", + "Alan Arkin", + "Jonathan Pryce" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Gun in Betty Lou's Handbag", + "year": 1992, + "cast": [ + "Penelope Ann Miller", + "Eric Thal", + "Alfre Woodard", + "Cathy Moriarty", + "Julianne Moore" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Hand That Rocks the Cradle", + "year": 1992, + "cast": [ + "Rebecca De Mornay", + "Annabella Sciorra", + "Matt McCoy", + "Ernie Hudson", + "Julianne Moore", + "Madeline Zima" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Hero", + "year": 1992, + "cast": [ + "Dustin Hoffman", + "Geena Davis", + "Andy García" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Highway to Hell", + "year": 1992, + "cast": [ + "Chad Lowe", + "Kristy Swanson" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Hoffa", + "year": 1992, + "cast": [ + "Jack Nicholson", + "Danny DeVito", + "Armand Assante" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Home Alone 2: Lost in New York", + "year": 1992, + "cast": [ + "Macaulay Culkin", + "Joe Pesci", + "Daniel Stern" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Honey, I Blew Up the Kid", + "year": 1992, + "cast": [ + "Rick Moranis", + "Marcia Strassman" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Honeymoon in Vegas", + "year": 1992, + "cast": [ + "Nicolas Cage", + "James Caan", + "Sarah Jessica Parker" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Housesitter", + "year": 1992, + "cast": [ + "Steve Martin", + "Goldie Hawn", + "Dana Delany" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Husbands and Wives", + "year": 1992, + "cast": [ + "Woody Allen", + "Mia Farrow", + "Judy Davis", + "Sydney Pollack", + "Juliette Lewis", + "Liam Neeson", + "Blythe Danner" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "In the Soup", + "year": 1992, + "cast": [ + "Steve Buscemi", + "Jennifer Beals", + "Seymour Cassel" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Innocent Blood", + "year": 1992, + "cast": [ + "Anne Parillaud", + "Anthony LaPaglia", + "Don Rickles" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Into the Sun", + "year": 1992, + "cast": [ + "Michael Paré", + "Anthony Michael Hall" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Jennifer 8", + "year": 1992, + "cast": [ + "Andy García", + "Uma Thurman", + "John Malkovich" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Juice", + "year": 1992, + "cast": [ + "Tupac Shakur", + "Omar Epps" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Just Another Girl on the I.R.T.", + "year": 1992, + "cast": [ + "Ariyan Johnson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Knight Moves", + "year": 1992, + "cast": [ + "Christopher Lambert", + "Diane Lane" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Kuffs", + "year": 1992, + "cast": [ + "Christian Slater", + "Milla Jovovich", + "Bruce Boxleitner" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Ladybugs", + "year": 1992, + "cast": [ + "Rodney Dangerfield", + "Jonathan Brandis", + "Jackee Harry" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Last of the Mohicans", + "year": 1992, + "cast": [ + "Daniel Day-Lewis", + "Madeleine Stowe" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Lawnmower Man", + "year": 1992, + "cast": [ + "Jeff Fahey", + "Pierce Brosnan" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "A League of Their Own", + "year": 1992, + "cast": [ + "Geena Davis", + "Tom Hanks", + "Madonna", + "Lori Petty", + "Rosie O'Donnell", + "David Strathairn", + "Jon Lovitz", + "Bill Pullman" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Leap of Faith", + "year": 1992, + "cast": [ + "Steve Martin", + "Debra Winger", + "Liam Neeson", + "Lolita Davidovich", + "Lukas Haas" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Leaving Normal", + "year": 1992, + "cast": [ + "Meg Tilly", + "Christine Lahti", + "Patrika Darbo" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Lethal Weapon 3", + "year": 1992, + "cast": [ + "Mel Gibson", + "Danny Glover", + "Joe Pesci", + "Rene Russo" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Light Sleeper", + "year": 1992, + "cast": [ + "Willem Dafoe", + "Susan Sarandon", + "Dana Delany" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Live Wire", + "year": 1992, + "cast": [ + "Pierce Brosnan", + "Ron Silver", + "Ben Cross", + "Lisa Eilbacher" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Lorenzo's Oil", + "year": 1992, + "cast": [ + "Nick Nolte", + "Susan Sarandon" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Love Crimes", + "year": 1992, + "cast": [ + "Sean Young", + "Patrick Bergin", + "Arnetia Walker" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Love Field", + "year": 1992, + "cast": [ + "Michelle Pfeiffer", + "Dennis Haysbert" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Love Potion No. 9", + "year": 1992, + "cast": [ + "Sandra Bullock", + "Tate Donovan", + "Anne Bancroft" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mac", + "year": 1992, + "cast": [ + "John Turturro", + "Nicholas Turturro", + "Ellen Barkin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Mad at the Moon", + "year": 1992, + "cast": [ + "Hart Bochner" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Malcolm X", + "year": 1992, + "cast": [ + "Denzel Washington", + "Angela Bassett", + "Spike Lee", + "Albert Hall", + "Delroy Lindo" + ], + "genres": [ + "Drama", + "Biography" + ] + }, + { + "title": "The Mambo Kings", + "year": 1992, + "cast": [ + "Armand Assante", + "Antonio Banderas", + "Cathy Moriarty", + "Maruschka Detmers", + "Desi Arnaz, Jr." + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Man Bites Dog", + "year": 1992, + "cast": [ + "Benoit Poelvoorde" + ], + "genres": [ + "Satire" + ] + }, + { + "title": "Man Trouble", + "year": 1992, + "cast": [ + "Jack Nicholson", + "Ellen Barkin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Meatballs 4", + "year": 1992, + "cast": [ + "Corey Feldman", + "Sarah Douglas" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Medicine Man", + "year": 1992, + "cast": [ + "Sean Connery", + "Lorraine Bracco" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Medusa: Dare to Be Truthful", + "year": 1992, + "cast": [ + "Julie Brown", + "Bobcat Goldthwait" + ], + "genres": [ + "Satire" + ] + }, + { + "title": "Memoirs of an Invisible Man", + "year": 1992, + "cast": [ + "Chevy Chase", + "Daryl Hannah", + "Sam Neill" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Me, Myself & I", + "year": 1992, + "cast": [ + "JoBeth Williams", + "George Segal", + "Shelley Hack" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Midnight Clear", + "year": 1992, + "cast": [ + "Peter Berg", + "Ethan Hawke", + "Kevin Dillon", + "Gary Sinise" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "The Mighty Ducks", + "year": 1992, + "cast": [ + "Emilio Estevez", + "Lane Smith", + "Joss Ackland", + "Joshua Jackson" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Miracle Beach", + "year": 1992, + "cast": [ + "Dean Cameron", + "Ami Dolenz", + "Pat Morita" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mistress", + "year": 1992, + "cast": [ + "Robert Wuhl", + "Martin Landau", + "Robert De Niro" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mo' Money", + "year": 1992, + "cast": [ + "Damon Wayans", + "Marlon Wayans", + "Stacey Dash" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mom and Dad Save the World", + "year": 1992, + "cast": [ + "Teri Garr", + "Jon Lovitz", + "Jeffrey Jones" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Monster in a Box", + "year": 1992, + "cast": [ + "Spalding Gray" + ], + "genres": [] + }, + { + "title": "Mr. Baseball", + "year": 1992, + "cast": [ + "Tom Selleck", + "Dennis Haysbert" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Mr. Saturday Night", + "year": 1992, + "cast": [ + "Billy Crystal", + "David Paymer", + "Julie Warner" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mrs. 'Arris Goes to Paris", + "year": 1992, + "cast": [ + "Angela Lansbury", + "Diana Rigg" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Muppet Christmas Carol", + "year": 1992, + "cast": [ + "Michael Caine" + ], + "genres": [ + "Family" + ] + }, + { + "title": "My Cousin Vinny", + "year": 1992, + "cast": [ + "Joe Pesci", + "Ralph Macchio", + "Marisa Tomei", + "Mitchell Whitfield", + "Fred Gwynne" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "My New Gun", + "year": 1992, + "cast": [ + "Diane Lane", + "James Le Gros" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Nemesis", + "year": 1992, + "cast": [ + "Olivier Gruner", + "Tim Thomerson" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Newsies", + "year": 1992, + "cast": [ + "Christian Bale", + "Robert Duvall", + "Ann-Margret", + "Bill Pullman" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Night and the City", + "year": 1992, + "cast": [ + "Robert De Niro", + "Jessica Lange", + "Alan King" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Nitrate Kisses", + "year": 1992, + "cast": [ + "Barbara Hammer" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Noises Off", + "year": 1992, + "cast": [ + "Carol Burnett", + "Michael Caine", + "Denholm Elliott", + "Julie Hagerty", + "Marilu Henner", + "Mark Linn-Baker", + "Christopher Reeve", + "John Ritter", + "Nicollette Sheridan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "O Pioneers!", + "year": 1992, + "cast": [ + "Jessica Lange", + "David Strathairn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Of Mice and Men", + "year": 1992, + "cast": [ + "John Malkovich", + "Gary Sinise", + "Sherilyn Fenn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Oh, What a Night", + "year": 1992, + "cast": [ + "Corey Haim", + "Robbie Coltrane" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Once Upon a Crime", + "year": 1992, + "cast": [ + "John Candy", + "James Belushi", + "Cybill Shepherd", + "Sean Young", + "Richard Lewis", + "Ornella Muti", + "Giancarlo Giannini", + "George Hamilton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "One False Move", + "year": 1992, + "cast": [ + "Bill Paxton", + "Cynda Williams", + "Michael Beach", + "Billy Bob Thornton" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Only You", + "year": 1992, + "cast": [ + "Helen Hunt", + "Andrew McCarthy", + "Kelly Preston" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Out on a Limb", + "year": 1992, + "cast": [ + "Matthew Broderick", + "Jeffrey Jones" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Passed Away", + "year": 1992, + "cast": [ + "Bob Hoskins", + "William Petersen", + "Maureen Stapleton", + "Frances McDormand", + "Nancy Travis", + "Tim Curry", + "Blair Brown", + "Pamela Reed", + "Peter Riegert", + "Jack Warden" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Passenger 57", + "year": 1992, + "cast": [ + "Wesley Snipes", + "Bruce Payne", + "Tom Sizemore" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Passion Fish", + "year": 1992, + "cast": [ + "Mary McDonnell", + "Alfre Woodard", + "David Strathairn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Patriot Games", + "year": 1992, + "cast": [ + "Harrison Ford", + "Anne Archer", + "Sean Bean", + "Patrick Bergin", + "James Earl Jones", + "Polly Walker", + "Thora Birch", + "Richard Harris" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Pet Sematary Two", + "year": 1992, + "cast": [ + "Anthony Edwards", + "Edward Furlong" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Pets or Meat: The Return to Flint", + "year": 1992, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "Pinocchio", + "year": 1992, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "The Playboys", + "year": 1992, + "cast": [ + "Robin Wright", + "Aidan Quinn", + "Albert Finney" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Player", + "year": 1992, + "cast": [ + "Tim Robbins", + "Greta Scacchi", + "Peter Gallagher", + "Cynthia Stevenson", + "Whoopi Goldberg", + "Brion James", + "Lyle Lovett" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "Poison Ivy", + "year": 1992, + "cast": [ + "Drew Barrymore", + "Sara Gilbert", + "Tom Skerritt", + "Cheryl Ladd" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Post No Bills", + "year": 1992, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Power of One", + "year": 1992, + "cast": [ + "Stephen Dorff", + "Morgan Freeman", + "Armin Mueller-Stahl", + "John Gielgud" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Praying with Anger", + "year": 1992, + "cast": [ + "M. Night Shyamalan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Prelude to a Kiss", + "year": 1992, + "cast": [ + "Alec Baldwin", + "Meg Ryan" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Primary Motive", + "year": 1992, + "cast": [ + "Judd Nelson", + "Justine Bateman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Prison Planet", + "year": 1992, + "cast": [], + "genres": [] + }, + { + "title": "A Private Matter", + "year": 1992, + "cast": [ + "Sissy Spacek", + "Aidan Quinn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Prom Night IV: Deliver Us from Evil", + "year": 1992, + "cast": [ + "Nicole de Boer" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Public Eye", + "year": 1992, + "cast": [ + "Joe Pesci", + "Barbara Hershey", + "Stanley Tucci" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Pure Country", + "year": 1992, + "cast": [ + "George Strait", + "Lesley Ann Warren", + "Isabel Glasser" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Quicksand: No Escape", + "year": 1992, + "cast": [ + "Donald Sutherland", + "Tim Matheson", + "Felicity Huffman" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Radio Flyer", + "year": 1992, + "cast": [ + "Elijah Wood", + "Joseph Mazzello", + "Lorraine Bracco", + "John Heard", + "Adam Baldwin" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Rain Without Thunder", + "year": 1992, + "cast": [ + "Betty Buckley", + "Jeff Daniels" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Raising Cain", + "year": 1992, + "cast": [ + "John Lithgow", + "Lolita Davidovich" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Rapid Fire", + "year": 1992, + "cast": [ + "Brandon Lee" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Red Rock West", + "year": 1992, + "cast": [ + "Nicolas Cage", + "Dennis Hopper", + "Lara Flynn Boyle" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Reservoir Dogs", + "year": 1992, + "cast": [ + "Harvey Keitel", + "Tim Roth", + "Steve Buscemi", + "Chris Penn", + "Michael Madsen", + "Lawrence Tierney" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Resurrected", + "year": 1992, + "cast": [ + "Chris Sarandon", + "John Terry" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Revenge of the Nerds III: The Next Generation", + "year": 1992, + "cast": [ + "Robert Carradine", + "Ted McGinley", + "Curtis Armstrong", + "Julia Montgomery" + ], + "genres": [ + "Comedy", + "Teen" + ] + }, + { + "title": "A River Runs Through It", + "year": 1992, + "cast": [ + "Craig Sheffer", + "Brad Pitt", + "Tom Skerritt", + "Brenda Blethyn", + "Emily Lloyd" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Roadside Prophets", + "year": 1992, + "cast": [ + "John Doe", + "Adam Horovitz", + "David Carradine" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "RoboCop 3", + "year": 1992, + "cast": [ + "Robert John Burke", + "John Castle" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Rock-a-Doodle", + "year": 1992, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "Ruby", + "year": 1992, + "cast": [ + "Danny Aiello", + "Sherilyn Fenn" + ], + "genres": [ + "Drama", + "Biography" + ] + }, + { + "title": "Samantha", + "year": 1992, + "cast": [ + "Martha Plimpton", + "Dermot Mulroney" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Samurai Vampire Bikers From Hell", + "year": 1992, + "cast": [], + "genres": [ + "Comedy" + ] + }, + { + "title": "Scent of a Woman", + "year": 1992, + "cast": [ + "Al Pacino", + "Chris O'Donnell", + "Philip Seymour Hoffman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "School Ties", + "year": 1992, + "cast": [ + "Brendan Fraser", + "Chris O'Donnell", + "Matt Damon", + "Ben Affleck" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Seed People", + "year": 1992, + "cast": [ + "Sam Hennings", + "Andrea Roth", + "Dane Witherspoon" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Setting Sun", + "year": 1992, + "cast": [ + "Diane Lane", + "Donald Sutherland" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Shakes the Clown", + "year": 1992, + "cast": [ + "Bobcat Goldthwait", + "Florence Henderson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Shining Through", + "year": 1992, + "cast": [ + "Michael Douglas", + "Melanie Griffith", + "Liam Neeson", + "Joely Richardson", + "John Gielgud" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Shipwrecked", + "year": 1992, + "cast": [ + "Gabriel Byrne" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Sidekicks", + "year": 1992, + "cast": [ + "Chuck Norris", + "Jonathan Brandis", + "Mako", + "Joe Piscopo" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Silent Night, Deadly Night 5: The Toy Maker", + "year": 1992, + "cast": [ + "Mickey Rooney" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Simple Men", + "year": 1992, + "cast": [ + "Robert John Burke" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sinatra", + "year": 1992, + "cast": [ + "Philip Casnoff", + "Olympia Dukakis", + "Gina Gershon" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Sinbad", + "year": 1992, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "Single White Female", + "year": 1992, + "cast": [ + "Bridget Fonda", + "Jennifer Jason Leigh", + "Steven Weber", + "Peter Friedman", + "Stephen Tobolowsky" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Singles", + "year": 1992, + "cast": [ + "Bridget Fonda", + "Matt Dillon", + "Campbell Scott", + "Kyra Sedgwick" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Sister Act", + "year": 1992, + "cast": [ + "Whoopi Goldberg", + "Maggie Smith", + "Harvey Keitel" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Sleepwalkers", + "year": 1992, + "cast": [ + "Brian Krause", + "Alice Krige", + "Madchen Amick" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Sneakers", + "year": 1992, + "cast": [ + "Robert Redford", + "Dan Aykroyd", + "Ben Kingsley", + "Mary McDonnell", + "River Phoenix", + "Sidney Poitier", + "David Strathairn" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Society", + "year": 1992, + "cast": [ + "Billy Warlock" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "South Central", + "year": 1992, + "cast": [ + "Glenn Plummer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Spirit of Christmas", + "year": 1992, + "cast": [ + "Trey Parker", + "Matt Stone" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Star Time", + "year": 1992, + "cast": [ + "Maureen Teefy" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Stay Tuned", + "year": 1992, + "cast": [ + "John Ritter", + "Pam Dawber", + "Jeffrey Jones" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Stop! Or My Mom Will Shoot", + "year": 1992, + "cast": [ + "Sylvester Stallone", + "Estelle Getty", + "JoBeth Williams", + "Roger Rees" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Stormy Weathers", + "year": 1992, + "cast": [ + "Cybill Shepherd" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Storyville", + "year": 1992, + "cast": [ + "James Spader", + "Joanne Whalley-Kilmer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Straight Talk", + "year": 1992, + "cast": [ + "Dolly Parton", + "James Woods", + "Griffin Dunne" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Stranger Among Us", + "year": 1992, + "cast": [ + "Melanie Griffith", + "Tracy Pollan", + "John Pankow", + "Mia Sara" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Swoon", + "year": 1992, + "cast": [ + "Darell Schlachet" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "That Night", + "year": 1992, + "cast": [ + "C. Thomas Howell", + "Juliette Lewis", + "Eliza Dushku" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "There Goes the Neighborhood", + "year": 1992, + "cast": [ + "Jeff Daniels", + "Catherine O'Hara", + "Héctor Elizondo" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "This Is My Life", + "year": 1992, + "cast": [ + "Julie Kavner", + "Samantha Mathis", + "Carrie Fisher" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Three Musketeers", + "year": 1992, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "Thumbelina", + "year": 1992, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "Thunderheart", + "year": 1992, + "cast": [ + "Val Kilmer", + "Sam Shepard", + "Graham Greene" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Tiny Toon Adventures: How I Spent My Vacation", + "year": 1992, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "To Grandmother's House We Go", + "year": 1992, + "cast": [ + "Mary-Kate Olsen", + "Ashley Olsen" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Tom and Jerry: The Movie", + "year": 1992, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "Topsy and Bunker: The Cat Killers", + "year": 1992, + "cast": [], + "genres": [] + }, + { + "title": "Toys", + "year": 1992, + "cast": [ + "Robin Williams", + "Joan Cusack", + "LL Cool J", + "Robin Wright", + "Michael Gambon", + "Donald O'Connor" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Traces of Red", + "year": 1992, + "cast": [ + "James Belushi", + "Lorraine Bracco", + "Tony Goldwyn" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Trespass", + "year": 1992, + "cast": [ + "Bill Paxton", + "Ice Cube", + "Ice-T", + "William Sadler" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Tune", + "year": 1992, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "The Turning", + "year": 1992, + "cast": [ + "Karen Allen", + "Michael Dolan", + "Gillian Anderson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Twin Peaks: Fire Walk with Me", + "year": 1992, + "cast": [ + "Sheryl Lee", + "Moira Kelly", + "Kiefer Sutherland", + "Kyle MacLachlan", + "David Bowie" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Under Siege", + "year": 1992, + "cast": [ + "Steven Seagal", + "Tommy Lee Jones", + "Gary Busey", + "Erika Eleniak" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Unforgiven", + "year": 1992, + "cast": [ + "Clint Eastwood", + "Gene Hackman", + "Morgan Freeman", + "Richard Harris" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Universal Soldier", + "year": 1992, + "cast": [ + "Jean-Claude Van Damme", + "Dolph Lundgren", + "Ally Walker" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Unlawful Entry", + "year": 1992, + "cast": [ + "Kurt Russell", + "Ray Liotta", + "Madeleine Stowe" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Used People", + "year": 1992, + "cast": [ + "Shirley MacLaine", + "Marcello Mastroianni", + "Kathy Bates", + "Jessica Tandy", + "Marcia Gay Harden" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Visions of Light", + "year": 1992, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Waterdance", + "year": 1992, + "cast": [ + "Eric Stoltz", + "Helen Hunt", + "Wesley Snipes" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Waxwork II: Lost in Time", + "year": 1992, + "cast": [ + "Bruce Campbell" + ], + "genres": [ + "Horror", + "Comedy" + ] + }, + { + "title": "Wayne's World", + "year": 1992, + "cast": [ + "Mike Myers", + "Dana Carvey", + "Rob Lowe", + "Tia Carrere" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Where the Day Takes You", + "year": 1992, + "cast": [ + "Sean Astin", + "Lara Flynn Boyle" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Whispers in the Dark", + "year": 1992, + "cast": [ + "Annabella Sciorra", + "Jamey Sheridan", + "Alan Alda", + "John Leguizamo", + "Anthony LaPaglia", + "Jill Clayburgh", + "Deborah Kara Unger" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "White Men Can't Jump", + "year": 1992, + "cast": [ + "Wesley Snipes", + "Woody Harrelson", + "Rosie Perez" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "White Sands", + "year": 1992, + "cast": [ + "Willem Dafoe", + "Mary Elizabeth Mastrantonio", + "Mickey Rourke", + "Samuel L. Jackson" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Who Do I Gotta Kill?", + "year": 1992, + "cast": [ + "Sandra Bullock" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Wind", + "year": 1992, + "cast": [ + "Matthew Modine", + "Jennifer Grey" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Witness", + "year": 1992, + "cast": [ + "Gary Sinise" + ], + "genres": [ + "Short" + ] + }, + { + "title": "The Year of the Comet", + "year": 1992, + "cast": [ + "Tim Daly", + "Penelope Ann Miller", + "Louis Jourdan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Zebrahead", + "year": 1992, + "cast": [ + "Michael Rapaport" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Zipperface", + "year": 1992, + "cast": [ + "David Clover", + "Donna Adams", + "Jonathan Mandell" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Acting on Impulse", + "year": 1993, + "cast": [ + "C. Thomas Howell", + "Linda Fiorentino", + "Nancy Allen" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Addams Family Values", + "year": 1993, + "cast": [ + "Anjelica Huston", + "Raúl Juliá", + "Christopher Lloyd", + "Christina Ricci", + "Joan Cusack" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Adventures of Huck Finn", + "year": 1993, + "cast": [ + "Elijah Wood" + ], + "genres": [ + "Family" + ] + }, + { + "title": "The Age of Innocence", + "year": 1993, + "cast": [ + "Daniel Day-Lewis", + "Michelle Pfeiffer", + "Winona Ryder" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Aileen Wuornos: The Selling of a Serial Killer", + "year": 1993, + "cast": [ + "Aileen Wuornos" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Airborne", + "year": 1993, + "cast": [ + "Shane McDermott", + "Seth Green" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Alive", + "year": 1993, + "cast": [ + "Ethan Hawke", + "Vincent Spano", + "Josh Hamilton" + ], + "genres": [ + "Drama", + "Biography" + ] + }, + { + "title": "Amos & Andrew", + "year": 1993, + "cast": [ + "Nicolas Cage", + "Samuel L. Jackson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Another Stakeout", + "year": 1993, + "cast": [ + "Richard Dreyfuss", + "Emilio Estevez", + "Rosie O'Donnell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Arizona Dream", + "year": 1993, + "cast": [ + "Johnny Depp", + "Jerry Lewis", + "Faye Dunaway" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Evil Dead 3: Army of Darkness", + "year": 1993, + "cast": [ + "Bruce Campbell", + "Embeth Davidtz" + ], + "genres": [ + "Comedy", + "Horror" + ] + }, + { + "title": "Aspen Extreme", + "year": 1993, + "cast": [ + "Paul Gross", + "Peter Berg", + "Finola Hughes", + "Teri Polo" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Ballad of Little Jo", + "year": 1993, + "cast": [ + "Suzy Amis", + "Bo Hopkins", + "Ian McKellen", + "Heather Graham" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Bank Robber", + "year": 1993, + "cast": [ + "Patrick Dempsey", + "Lisa Bonet", + "Judge Reinhold" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Batman: Mask of the Phantasm", + "year": 1993, + "cast": [ + "Voices of", + "Kevin Conroy", + "Dana Delany" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Beethoven's 2nd", + "year": 1993, + "cast": [ + "Charles Grodin", + "Bonnie Hunt", + "Debi Mazar", + "Chris Penn" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Benny & Joon", + "year": 1993, + "cast": [ + "Johnny Depp", + "Mary Stuart Masterson", + "Aidan Quinn" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Best of the Best 2", + "year": 1993, + "cast": [ + "Eric Roberts", + "Chris Penn" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Beverly Hillbillies", + "year": 1993, + "cast": [ + "Cloris Leachman", + "Jim Varney", + "Lily Tomlin", + "Dabney Coleman", + "Erika Eleniak", + "Diedrich Bader", + "Lea Thompson", + "Rob Schneider", + "Dolly Parton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Blood In Blood Out", + "year": 1993, + "cast": [ + "Jesse Borrego", + "Benjamin Bratt", + "Damian Chapa", + "Delroy Lindo" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Bodies, Rest & Motion", + "year": 1993, + "cast": [ + "Phoebe Cates", + "Bridget Fonda", + "Tim Roth", + "Eric Stoltz" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Body of Evidence", + "year": 1993, + "cast": [ + "Willem Dafoe", + "Madonna", + "Joe Mantegna", + "Anne Archer", + "Julianne Moore", + "Jürgen Prochnow" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Body Snatchers", + "year": 1993, + "cast": [ + "Gabrielle Anwar", + "R. Lee Ermey", + "Terry Kinney", + "Meg Tilly", + "Forest Whitaker", + "Billy Wirth" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Boiling Point", + "year": 1993, + "cast": [ + "Wesley Snipes", + "Dennis Hopper", + "Lolita Davidovich", + "Viggo Mortensen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Bopha!", + "year": 1993, + "cast": [ + "Danny Glover", + "Malcolm McDowell", + "Alfre Woodard" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Born Yesterday", + "year": 1993, + "cast": [ + "Melanie Griffith", + "Don Johnson", + "John Goodman" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Boxing Helena", + "year": 1993, + "cast": [ + "Sherilyn Fenn", + "Julian Sands" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "A Bronx Tale", + "year": 1993, + "cast": [ + "Chazz Palminteri", + "Robert De Niro", + "Lillo Brancato, Jr." + ], + "genres": [ + "Drama" + ] + }, + { + "title": "CB4", + "year": 1993, + "cast": [ + "Chris Rock", + "Phil Hartman", + "Chris Elliott" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Calendar Girl", + "year": 1993, + "cast": [ + "Jason Priestley", + "Gabriel Olds", + "Jerry O'Connell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Cannibal! The Musical", + "year": 1993, + "cast": [ + "Trey Parker", + "Matt Stone", + "Dian Bachar", + "Toddy Walters" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Carlito's Way", + "year": 1993, + "cast": [ + "Al Pacino", + "Sean Penn", + "Penelope Ann Miller", + "John Leguizamo", + "Luis Guzman", + "Viggo Mortensen" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Cemetery Club", + "year": 1993, + "cast": [ + "Olympia Dukakis", + "Ellen Burstyn", + "Diane Ladd", + "Danny Aiello" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Cliffhanger", + "year": 1993, + "cast": [ + "Sylvester Stallone", + "John Lithgow", + "Michael Rooker", + "Janine Turner" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Coneheads", + "year": 1993, + "cast": [ + "Dan Aykroyd", + "Jane Curtin", + "Michelle Burke" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Cool Runnings", + "year": 1993, + "cast": [ + "John Candy" + ], + "genres": [ + "Comedy", + "Biography" + ] + }, + { + "title": "Cop and a Half", + "year": 1993, + "cast": [ + "Burt Reynolds", + "Norman D. Golden II" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Crush", + "year": 1993, + "cast": [ + "Cary Elwes", + "Alicia Silverstone", + "Kurtwood Smith", + "Jennifer Rubin" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Cruel Path", + "year": 1993, + "cast": [ + "Dustin J. Boes", + "Dale Vaughan", + "Walter Cherry" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Dangerous Game", + "year": 1993, + "cast": [ + "Harvey Keitel", + "Madonna", + "James Russo" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Dangerous Woman", + "year": 1993, + "cast": [ + "Debra Winger", + "Gabriel Byrne", + "Barbara Hershey" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Dark Half", + "year": 1993, + "cast": [ + "Timothy Hutton", + "Amy Madigan" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Dave", + "year": 1993, + "cast": [ + "Kevin Kline", + "Sigourney Weaver", + "Frank Langella", + "Ving Rhames", + "Ben Kingsley" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Dazed and Confused", + "year": 1993, + "cast": [ + "Jason London", + "Rory Cochrane", + "Matthew McConaughey", + "Milla Jovovich", + "Joey Lauren Adams", + "Nicky Katt", + "Ben Affleck", + "Parker Posey" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Deadfall", + "year": 1993, + "cast": [ + "Michael Biehn", + "Nicolas Cage", + "James Coburn", + "Sarah Trigger", + "Peter Fonda", + "Charlie Sheen", + "Talia Shire" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Demolition Man", + "year": 1993, + "cast": [ + "Sylvester Stallone", + "Wesley Snipes", + "Sandra Bullock", + "Nigel Hawthorne", + "Bob Gunton", + "Benjamin Bratt", + "Bill Cobbs", + "Glenn Shadix", + "Denis Leary" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Dennis the Menace", + "year": 1993, + "cast": [ + "Walter Matthau", + "Mason Gamble", + "Joan Plowright", + "Christopher Lloyd", + "Lea Thompson", + "Paul Winfield" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Dragon: The Bruce Lee Story", + "year": 1993, + "cast": [ + "Jason Scott Lee", + "Lauren Holly", + "Robert Wagner" + ], + "genres": [ + "Drama", + "Biography" + ] + }, + { + "title": "Ernest Rides Again", + "year": 1993, + "cast": [ + "Jim Varney", + "Linda Kash" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Ethan Frome", + "year": 1993, + "cast": [ + "Liam Neeson", + "Patricia Arquette", + "Joan Allen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Excessive Force", + "year": 1993, + "cast": [ + "Thomas Ian Griffith", + "Lance Henriksen" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Extreme Justice", + "year": 1993, + "cast": [ + "Lou Diamond Phillips", + "Scott Glenn", + "Chelsea Field" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Falling Down", + "year": 1993, + "cast": [ + "Michael Douglas", + "Robert Duvall", + "Barbara Hershey", + "Rachel Ticotin", + "Frederic Forrest", + "Tuesday Weld" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "A Far Off Place", + "year": 1993, + "cast": [ + "Reese Witherspoon", + "Ethan Embry" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Fatal Instinct", + "year": 1993, + "cast": [ + "Armand Assante", + "Sherilyn Fenn", + "Sean Young", + "Kate Nelligan" + ], + "genres": [ + "Satire" + ] + }, + { + "title": "Fearless", + "year": 1993, + "cast": [ + "Jeff Bridges", + "Isabella Rossellini", + "Rosie Perez" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Fire on the Amazon", + "year": 1993, + "cast": [ + "Sandra Bullock", + "Craig Sheffer", + "Juan Fernandez" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Fire in the Sky", + "year": 1993, + "cast": [ + "D. B. Sweeney", + "Robert Patrick", + "Craig Sheffer", + "James Garner" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Firm", + "year": 1993, + "cast": [ + "Tom Cruise", + "Gene Hackman", + "Ed Harris", + "Jeanne Tripplehorn", + "Holly Hunter", + "David Strathairn", + "Wilford Brimley", + "Hal Holbrook", + "Gary Busey" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Flesh and Bone", + "year": 1993, + "cast": [ + "Dennis Quaid", + "Meg Ryan", + "James Caan", + "Gwyneth Paltrow" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Fly by Night", + "year": 1993, + "cast": [ + "Jeffrey Sams", + "Daryl Mitchell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "For Love or Money", + "year": 1993, + "cast": [ + "Michael J. Fox", + "Gabrielle Anwar" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Free Willy", + "year": 1993, + "cast": [ + "Jason James Richter", + "Lori Petty", + "Michael Madsen", + "Jayne Atkinson", + "August Schellenberg" + ], + "genres": [ + "Family" + ] + }, + { + "title": "The Fugitive", + "year": 1993, + "cast": [ + "Harrison Ford", + "Tommy Lee Jones", + "Jeroen Krabbe", + "Joe Pantoliano", + "Sela Ward", + "Julianne Moore", + "Andreas Katsulas" + ], + "genres": [ + "Action", + "Drama" + ] + }, + { + "title": "Geronimo: An American Legend", + "year": 1993, + "cast": [ + "Wes Studi", + "Jason Patric", + "Gene Hackman", + "Robert Duvall" + ], + "genres": [ + "Biography", + "Drama" + ] + }, + { + "title": "Gettysburg", + "year": 1993, + "cast": [ + "Tom Berenger", + "Jeff Daniels", + "Martin Sheen", + "Stephen Lang" + ], + "genres": [ + "Biography", + "War" + ] + }, + { + "title": "Ghost in the Machine", + "year": 1993, + "cast": [ + "Karen Allen", + "Chris Mulkey" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Good Son", + "year": 1993, + "cast": [ + "Macaulay Culkin", + "Elijah Wood", + "Wendy Crewson", + "David Morse", + "Daniel Hugh Kelly" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Groundhog Day", + "year": 1993, + "cast": [ + "Bill Murray", + "Andie MacDowell", + "Chris Elliott", + "Brian Doyle Murray" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Grumpy Old Men", + "year": 1993, + "cast": [ + "Jack Lemmon", + "Walter Matthau", + "Ann-Margret", + "Daryl Hannah", + "Kevin Pollak", + "Burgess Meredith", + "Ossie Davis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Guilty as Sin", + "year": 1993, + "cast": [ + "Don Johnson", + "Rebecca De Mornay", + "Jack Warden", + "Stephen Lang" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Happily Ever After", + "year": 1993, + "cast": [ + "Irene Cara", + "Edward Asner", + "Carol Channing" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Hard Target", + "year": 1993, + "cast": [ + "Jean-Claude Van Damme", + "Lance Henriksen", + "Yancy Butler", + "Arnold Vosloo", + "Wilford Brimley" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Heart and Souls", + "year": 1993, + "cast": [ + "Robert Downey, Jr.", + "Charles Grodin", + "Alfre Woodard", + "Elisabeth Shue", + "Kyra Sedgwick", + "Tom Sizemore", + "David Paymer" + ], + "genres": [ + "Comedy", + "Fantasy" + ] + }, + { + "title": "Heaven & Earth", + "year": 1993, + "cast": [ + "Tommy Lee Jones", + "Joan Chen", + "Haing S. Ngor" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "Hexed", + "year": 1993, + "cast": [ + "Arye Gross", + "Claudia Christian" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hocus Pocus", + "year": 1993, + "cast": [ + "Bette Midler", + "Sarah Jessica Parker", + "Kathy Najimy", + "Omri Katz", + "Thora Birch", + "Vinessa Shaw" + ], + "genres": [ + "Comedy", + "Fantasy" + ] + }, + { + "title": "A Home of Our Own", + "year": 1993, + "cast": [ + "Kathy Bates", + "Edward Furlong" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Homeward Bound: The Incredible Journey", + "year": 1993, + "cast": [ + "Don Ameche", + "Michael J. Fox", + "Sally Field", + "Benj Thall" + ], + "genres": [ + "Adventure", + "Family" + ] + }, + { + "title": "Hot Shots! Part Deux", + "year": 1993, + "cast": [ + "Charlie Sheen", + "Lloyd Bridges", + "Valeria Golino" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "House of Cards", + "year": 1993, + "cast": [ + "Kathleen Turner", + "Tommy Lee Jones" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A House in the Hills", + "year": 1993, + "cast": [ + "Michael Madsen", + "Helen Slater", + "Jeffrey Tambor" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The House of the Spirits", + "year": 1993, + "cast": [ + "Meryl Streep", + "Jeremy Irons", + "Glenn Close", + "Winona Ryder", + "Antonio Banderas", + "Vanessa Redgrave", + "Armin Mueller-Stahl", + "María Conchita Alonso", + "Vincent Gallo" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "In the Line of Fire", + "year": 1993, + "cast": [ + "Clint Eastwood", + "John Malkovich", + "Rene Russo", + "Dylan McDermott", + "Gary Cole" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "In the Name of the Father", + "year": 1993, + "cast": [ + "Daniel Day-Lewis", + "Emma Thompson", + "Pete Postlethwaite" + ], + "genres": [ + "Drama", + "Biography" + ] + }, + { + "title": "Indecent Proposal", + "year": 1993, + "cast": [ + "Robert Redford", + "Demi Moore", + "Woody Harrelson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Indian Summer", + "year": 1993, + "cast": [ + "Alan Arkin", + "Diane Lane", + "Elizabeth Perkins", + "Bill Paxton", + "Vincent Spano", + "Kimberly Williams-Paisley", + "Julie Warner", + "Matt Craven" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Jack the Bear", + "year": 1993, + "cast": [ + "Danny DeVito", + "Gary Sinise" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Jason Goes to Hell: The Final Friday", + "year": 1993, + "cast": [ + "Kane Hodder", + "Erin Gray" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Josh and S.A.M.", + "year": 1993, + "cast": [ + "Jacob Tierney", + "Noah Fleiss", + "Martha Plimpton", + "Joan Allen", + "Stephen Tobolowsky" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Joshua Tree", + "year": 1993, + "cast": [ + "Dolph Lundgren", + "Kristian Alfonso", + "George Segal" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Joy Luck Club", + "year": 1993, + "cast": [ + "Ming-Na", + "Rosalind Chao", + "Lauren Tom", + "Tamlyn Tomita" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Judgment Night", + "year": 1993, + "cast": [ + "Emilio Estevez", + "Cuba Gooding, Jr.", + "Denis Leary", + "Jeremy Piven", + "Stephen Dorff", + "Peter Greene", + "Everlast" + ], + "genres": [ + "Action", + "Thriller" + ] + }, + { + "title": "Jurassic Park", + "year": 1993, + "cast": [ + "Sam Neill", + "Laura Dern", + "Jeff Goldblum", + "Richard Attenborough" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Kalifornia", + "year": 1993, + "cast": [ + "Brad Pitt", + "Juliette Lewis", + "David Duchovny", + "Michelle Forbes" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "King of the Hill", + "year": 1993, + "cast": [ + "Lisa Eichhorn", + "Karen Allen", + "Adrien Brody" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Last Action Hero", + "year": 1993, + "cast": [ + "Arnold Schwarzenegger", + "Austin O'Brien", + "Charles Dance", + "Anthony Quinn", + "F. Murray Abraham", + "Mercedes Ruehl", + "Tom Noonan", + "Robert Prosky", + "Art Carney" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Leprechaun", + "year": 1993, + "cast": [ + "Warwick Davis", + "Jennifer Aniston" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Life with Mikey", + "year": 1993, + "cast": [ + "Michael J. Fox", + "Christina Vidal", + "Cyndi Lauper", + "Nathan Lane" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Loaded Weapon 1", + "year": 1993, + "cast": [ + "Emilio Estevez", + "Samuel L. Jackson" + ], + "genres": [ + "Satire" + ] + }, + { + "title": "Lost in Yonkers", + "year": 1993, + "cast": [ + "Mercedes Ruehl", + "Irene Worth", + "Richard Dreyfuss", + "David Strathairn" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "M. Butterfly", + "year": 1993, + "cast": [ + "Jeremy Irons", + "John Lone", + "Ian Richardson" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Mad Dog and Glory", + "year": 1993, + "cast": [ + "Robert De Niro", + "Uma Thurman", + "Bill Murray", + "David Caruso" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Made in America", + "year": 1993, + "cast": [ + "Whoopi Goldberg", + "Ted Danson", + "Will Smith", + "Nia Long" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Malice", + "year": 1993, + "cast": [ + "Alec Baldwin", + "Nicole Kidman", + "Bill Pullman", + "Anne Bancroft", + "Bebe Neuwirth", + "Peter Gallagher", + "George C. Scott" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Man Without a Face", + "year": 1993, + "cast": [ + "Mel Gibson", + "Nick Stahl", + "Gaby Hoffmann" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Man's Best Friend", + "year": 1993, + "cast": [ + "Ally Sheedy", + "Lance Henriksen" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Manhattan Murder Mystery", + "year": 1993, + "cast": [ + "Diane Keaton", + "Anjelica Huston", + "Alan Alda", + "Woody Allen" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Matinee", + "year": 1993, + "cast": [ + "John Goodman", + "Cathy Moriarty", + "Omri Katz" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Me and the Kid", + "year": 1993, + "cast": [ + "Danny Aiello", + "Joe Pantoliano", + "Ben Stein" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Menace II Society", + "year": 1993, + "cast": [ + "Larenz Tate", + "Tyrin Turner", + "Charles S. Dutton", + "Jada Pinkett Smith", + "Samuel L. Jackson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Meteor Man", + "year": 1993, + "cast": [ + "Robert Townsend", + "James Earl Jones" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Money for Nothing", + "year": 1993, + "cast": [ + "John Cusack", + "Debi Mazar", + "Michael Madsen" + ], + "genres": [ + "Crime", + "Comedy" + ] + }, + { + "title": "Monolith", + "year": 1993, + "cast": [ + "Bill Paxton", + "Lindsay Frost", + "John Hurt" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Mr. Jones", + "year": 1993, + "cast": [ + "Richard Gere", + "Lena Olin", + "Anne Bancroft" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Mr. Nanny", + "year": 1993, + "cast": [ + "Hulk Hogan", + "Sherman Hemsley", + "Austin Pendleton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mr. Wonderful", + "year": 1993, + "cast": [ + "Matt Dillon", + "Annabella Sciorra", + "Mary-Louise Parker", + "William Hurt" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Mrs. Doubtfire", + "year": 1993, + "cast": [ + "Robin Williams", + "Sally Field", + "Pierce Brosnan", + "Harvey Fierstein", + "Polly Holliday", + "Robert Prosky", + "Lisa Jakub", + "Matthew Lawrence", + "Mara Wilson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Much Ado About Nothing", + "year": 1993, + "cast": [ + "Kenneth Branagh", + "Emma Thompson", + "Michael Keaton", + "Denzel Washington", + "Keanu Reeves", + "Robert Sean Leonard", + "Kate Beckinsale" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Music of Chance", + "year": 1993, + "cast": [ + "James Spader", + "Mandy Patinkin", + "Charles Durning", + "Joel Grey" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "My Life", + "year": 1993, + "cast": [ + "Nicole Kidman", + "Michael Keaton", + "Bradley Whitford", + "Queen Latifah" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Naked in New York", + "year": 1993, + "cast": [ + "Eric Stoltz", + "Mary-Louise Parker", + "Jill Clayburgh", + "Tony Curtis", + "Timothy Dalton", + "Ralph Macchio", + "Kathleen Turner" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Needful Things", + "year": 1993, + "cast": [ + "Ed Harris", + "Max von Sydow", + "Bonnie Bedelia", + "Amanda Plummer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Nightmare Before Christmas", + "year": 1993, + "cast": [ + "Danny Elfman", + "Chris Sarandon", + "Catherine O'Hara" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Nowhere to Run", + "year": 1993, + "cast": [ + "Jean-Claude Van Damme", + "Rosanna Arquette", + "Kieran Culkin", + "Ted Levine", + "Joss Ackland" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Once Upon a Forest", + "year": 1993, + "cast": [ + "Michael Crawford", + "Ellen Blain" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Only the Strong", + "year": 1993, + "cast": [ + "Mark Dacascos", + "Stacey Travis", + "Geoffrey Lewis" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Pelican Brief", + "year": 1993, + "cast": [ + "Julia Roberts", + "Denzel Washington", + "John Lithgow", + "Sam Shepard", + "Tony Goldwyn", + "John Heard", + "James B. Sikking", + "William Atherton" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "A Perfect World", + "year": 1993, + "cast": [ + "Kevin Costner", + "Clint Eastwood", + "Laura Dern", + "Bradley Whitford" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "Philadelphia", + "year": 1993, + "cast": [ + "Tom Hanks", + "Denzel Washington", + "Antonio Banderas", + "Jason Robards", + "Mary Steenburgen", + "Joanne Woodward" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Piano", + "year": 1993, + "cast": [ + "Holly Hunter", + "Harvey Keitel", + "Sam Neill", + "Anna Paquin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Poetic Justice", + "year": 1993, + "cast": [ + "Janet Jackson", + "Tupac Shakur", + "Regina King", + "Joe Torry", + "Tyra Ferrell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Point of No Return", + "year": 1993, + "cast": [ + "Bridget Fonda", + "Gabriel Byrne", + "Dermot Mulroney", + "Anne Bancroft", + "Harvey Keitel" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Posse", + "year": 1993, + "cast": [ + "Mario Van Peebles", + "Stephen Baldwin", + "Tone Loc", + "Blair Underwood", + "Billy Zane" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Program", + "year": 1993, + "cast": [ + "James Caan", + "Halle Berry", + "Craig Sheffer", + "Omar Epps", + "Kristy Swanson" + ], + "genres": [ + "Drama", + "Sports" + ] + }, + { + "title": "Public Access", + "year": 1993, + "cast": [ + "Ron Marquette", + "Dina Brooks" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Puppet Master 4", + "year": 1993, + "cast": [ + "Gordon Currie", + "Chandra West" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Real McCoy", + "year": 1993, + "cast": [ + "Kim Basinger", + "Val Kilmer", + "Terence Stamp" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Red Rock West", + "year": 1993, + "cast": [ + "Nicolas Cage", + "Dennis Hopper", + "Lara Flynn Boyle" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Remains of the Day", + "year": 1993, + "cast": [ + "Anthony Hopkins", + "Emma Thompson", + "James Fox", + "Christopher Reeve", + "Peter Vaughan", + "Ben Chaplin", + "Hugh Grant" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Return of the Living Dead 3", + "year": 1993, + "cast": [ + "Melinda Clarke", + "J. Trevor Edmond" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Rich in Love", + "year": 1993, + "cast": [ + "Albert Finney", + "Jill Clayburgh", + "Kyle MacLachlan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Rising Sun", + "year": 1993, + "cast": [ + "Sean Connery", + "Wesley Snipes", + "Harvey Keitel", + "Tia Carrere", + "Cary-Hiroyuki Tagawa", + "Kevin Anderson" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Robin Hood: Men in Tights", + "year": 1993, + "cast": [ + "Cary Elwes", + "Isaac Hayes", + "Patrick Stewart", + "Amy Yasbeck", + "Dave Chappelle", + "Richard Lewis", + "Tracey Ullman", + "Roger Rees" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "RoboCop 3", + "year": 1993, + "cast": [ + "Robert John Burke", + "Nancy Allen", + "Rip Torn" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Romeo Is Bleeding", + "year": 1993, + "cast": [ + "Gary Oldman", + "Lena Olin", + "Annabella Sciorra", + "Juliette Lewis", + "Roy Scheider" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Rookie of the Year", + "year": 1993, + "cast": [ + "Thomas Ian Nicholas", + "Gary Busey", + "Dan Hedaya" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Roosters", + "year": 1993, + "cast": [ + "Edward James Olmos", + "Sônia Braga" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Ruby Cairo", + "year": 1993, + "cast": [ + "Andie MacDowell", + "Liam Neeson", + "Viggo Mortensen" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Ruby in Paradise", + "year": 1993, + "cast": [ + "Ashley Judd", + "Dorothy Lyman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Rudy", + "year": 1993, + "cast": [ + "Sean Astin", + "Charles S. Dutton", + "Ned Beatty", + "Jon Favreau" + ], + "genres": [ + "Drama", + "Biography" + ] + }, + { + "title": "The Saint of Fort Washington", + "year": 1993, + "cast": [ + "Danny Glover", + "Matt Dillon", + "Rick Aviles" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Sandlot", + "year": 1993, + "cast": [ + "Karen Allen", + "Denis Leary", + "James Earl Jones" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Schindler's List", + "year": 1993, + "cast": [ + "Liam Neeson", + "Ralph Fiennes", + "Ben Kingsley", + "Caroline Goodall", + "Jonathan Sagall", + "Embeth Davidtz" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Searching for Bobby Fischer", + "year": 1993, + "cast": [ + "Joe Mantegna", + "Joan Allen", + "Laurence Fishburne", + "Ben Kingsley", + "Max Pomeranc" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sesame Street's 25th Birthday: A Musical Celebration!", + "year": 1993, + "cast": [ + "Musical" + ], + "genres": [] + }, + { + "title": "Short Cuts", + "year": 1993, + "cast": [ + "Julianne Moore", + "Jack Lemmon", + "Robert Downey, Jr.", + "Tim Robbins", + "Chris Penn", + "Jennifer Jason Leigh", + "Madeleine Stowe", + "Matthew Modine", + "Anne Archer", + "Fred Ward", + "Lily Tomlin", + "Tom Waits", + "Andie MacDowell", + "Bruce Davison", + "Lili Taylor", + "Peter Gallagher", + "Frances McDormand", + "Lori Singer", + "Huey Lewis", + "Annie Ross", + "Lyle Lovett" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sister Act 2: Back in the Habit", + "year": 1993, + "cast": [ + "Whoopi Goldberg", + "Kathy Najimy", + "James Coburn" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Six Degrees of Separation", + "year": 1993, + "cast": [ + "Stockard Channing", + "Will Smith", + "Donald Sutherland" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Slaughter of the Innocents", + "year": 1993, + "cast": [ + "Scott Glenn", + "Darlanne Fluegel", + "Kevin Sorbo" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Sleepless in Seattle", + "year": 1993, + "cast": [ + "Tom Hanks", + "Meg Ryan", + "Ross Malinger", + "Bill Pullman", + "Rosie O'Donnell", + "Rita Wilson", + "Rob Reiner" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Sliver", + "year": 1993, + "cast": [ + "Sharon Stone", + "William Baldwin", + "Tom Berenger", + "Martin Landau", + "Polly Walker", + "Nina Foch", + "CCH Pounder", + "Colleen Camp" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Sniper", + "year": 1993, + "cast": [ + "Tom Berenger", + "Billy Zane" + ], + "genres": [ + "Action" + ] + }, + { + "title": "So I Married an Axe Murderer", + "year": 1993, + "cast": [ + "Mike Myers", + "Nancy Travis", + "Anthony LaPaglia", + "Amanda Plummer", + "Brenda Fricker", + "Alan Arkin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Sommersby", + "year": 1993, + "cast": [ + "Richard Gere", + "Jodie Foster", + "Bill Pullman", + "James Earl Jones" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Son in Law", + "year": 1993, + "cast": [ + "Pauly Shore", + "Carla Gugino", + "Lane Smith" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Son of the Pink Panther", + "year": 1993, + "cast": [ + "Roberto Benigni", + "Herbert Lom", + "Claudia Cardinale" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Striking Distance", + "year": 1993, + "cast": [ + "Bruce Willis", + "Sarah Jessica Parker", + "Tom Sizemore", + "Dennis Farina", + "Robert Pastorelli" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Sunset Grill", + "year": 1993, + "cast": [ + "Peter Weller", + "Lori Singer", + "Stacy Keach" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Super Mario Bros.", + "year": 1993, + "cast": [ + "Bob Hoskins", + "John Leguizamo", + "Dennis Hopper", + "Samantha Mathis", + "Fisher Stevens", + "Richard Edson", + "Fiona Shaw" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Suture", + "year": 1993, + "cast": [ + "Dennis Haysbert", + "Mel Harris" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Swing Kids", + "year": 1993, + "cast": [ + "Robert Sean Leonard", + "Christian Bale", + "Barbara Hershey" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Teenage Mutant Ninja Turtles III", + "year": 1993, + "cast": [ + "Paige Turco", + "Elias Koteas", + "Stuart Wilson" + ], + "genres": [ + "Action", + "Comedy" + ] + }, + { + "title": "The Temp", + "year": 1993, + "cast": [ + "Timothy Hutton", + "Lara Flynn Boyle", + "Faye Dunaway", + "Dwight Schultz", + "Oliver Platt", + "Steven Weber" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Theremin: An Electronic Odyssey", + "year": 1993, + "cast": [ + "Footage of", + "Leon Theremin", + "Brian Wilson" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Thing Called Love", + "year": 1993, + "cast": [ + "Samantha Mathis", + "River Phoenix", + "Dermot Mulroney", + "Sandra Bullock" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "This Boy's Life", + "year": 1993, + "cast": [ + "Robert De Niro", + "Ellen Barkin", + "Leonardo DiCaprio" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Three Musketeers", + "year": 1993, + "cast": [ + "Charlie Sheen", + "Kiefer Sutherland", + "Oliver Platt", + "Chris O'Donnell", + "Tim Curry", + "Rebecca De Mornay" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Three of Hearts", + "year": 1993, + "cast": [ + "William Baldwin", + "Sherilyn Fenn", + "Kelly Lynch" + ], + "genres": [ + "Drama", + "Romance" + ] + }, + { + "title": "Tom and Jerry: The Movie", + "year": 1993, + "cast": [ + "Richard Kind", + "Dana Hill", + "Anndi McAfee", + "Tony Jay", + "Rip Taylor" + ], + "genres": [ + "Animated", + "Musical" + ] + }, + { + "title": "Tombstone", + "year": 1993, + "cast": [ + "Kurt Russell", + "Val Kilmer", + "Dana Delany", + "Bill Paxton", + "Sam Elliott", + "Powers Boothe", + "Michael Biehn", + "Billy Zane", + "Jason Priestley", + "Robert John Burke", + "Joanna Pacula", + "Stephen Lang", + "Michael Rooker", + "Jon Tenney" + ], + "genres": [ + "Western", + "Biography" + ] + }, + { + "title": "Totally F***ed Up", + "year": 1993, + "cast": [ + "James Duval", + "Craig Gilmore" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "True Romance", + "year": 1993, + "cast": [ + "Christian Slater", + "Patricia Arquette", + "Dennis Hopper", + "Val Kilmer", + "Gary Oldman", + "Brad Pitt", + "Christopher Walken", + "Bronson Pinchot", + "James Gandolfini" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Twenty Bucks", + "year": 1993, + "cast": [ + "Brendan Fraser", + "Linda Hunt", + "Elisabeth Shue", + "Christopher Lloyd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Undercover Blues", + "year": 1993, + "cast": [ + "Kathleen Turner", + "Dennis Quaid" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Untamed Heart", + "year": 1993, + "cast": [ + "Christian Slater", + "Marisa Tomei", + "Rosie Perez" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "The Vanishing", + "year": 1993, + "cast": [ + "Jeff Bridges", + "Kiefer Sutherland", + "Nancy Travis", + "Sandra Bullock" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The War Room", + "year": 1993, + "cast": [ + "James Carville", + "Paul Begala" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Warlock: The Armageddon", + "year": 1993, + "cast": [ + "Julian Sands", + "Paula Marshall" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Watch It", + "year": 1993, + "cast": [ + "Peter Gallagher", + "Suzy Amis", + "John C. McGinley" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Wayne's World 2", + "year": 1993, + "cast": [ + "Mike Myers", + "Dana Carvey", + "Tia Carrere", + "Christopher Walken" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "We're Back! A Dinosaur's Story", + "year": 1993, + "cast": [ + "Voices of", + "Jay Leno", + "John Goodman" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "The Wedding Banquet", + "year": 1993, + "cast": [ + "Winston Chao", + "Dion Birney" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "Weekend at Bernie's II", + "year": 1993, + "cast": [ + "Andrew McCarthy", + "Jonathan Silverman", + "Terry Kiser" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "What's Eating Gilbert Grape", + "year": 1993, + "cast": [ + "Johnny Depp", + "Juliette Lewis", + "Leonardo DiCaprio" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "What's Love Got to Do with It", + "year": 1993, + "cast": [ + "Angela Bassett", + "Laurence Fishburne" + ], + "genres": [ + "Biography", + "Drama" + ] + }, + { + "title": "Where's God When I'm S-Scared?", + "year": 1993, + "cast": [ + "Phil Vischer", + "Mike Nawrocki" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "White Wolves: A Cry in the Wild II", + "year": 1993, + "cast": [ + "Mark-Paul Gosselaar", + "Amy O'Neill", + "Ami Dolenz" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Who's the Man?", + "year": 1993, + "cast": [ + "Ice-T", + "Bernie Mac", + "Denis Leary" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Wilder Napalm", + "year": 1993, + "cast": [ + "Debra Winger", + "Dennis Quaid", + "Arliss Howard" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Woman of Desire", + "year": 1993, + "cast": [ + "Bo Derek", + "Robert Mitchum", + "Jeff Fahey" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Wrestling Ernest Hemingway", + "year": 1993, + "cast": [ + "Robert Duvall", + "Richard Harris", + "Shirley MacLaine", + "Sandra Bullock" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Wrong Man", + "year": 1993, + "cast": [ + "Rosanna Arquette", + "Kevin Anderson", + "John Lithgow" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Younger and Younger", + "year": 1993, + "cast": [ + "Donald Sutherland", + "Brendan Fraser", + "Lolita Davidovich" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "3 Chains o' Gold", + "year": 1994, + "cast": [], + "genres": [ + "Musical" + ] + }, + { + "title": "3 Ninjas Kick Back", + "year": 1994, + "cast": [ + "Victor Wong", + "Max Elliott Slade", + "Sean Fox", + "J. Evan Bonifant" + ], + "genres": [ + "Action", + "Family" + ] + }, + { + "title": "8 Seconds", + "year": 1994, + "cast": [ + "Luke Perry", + "Stephen Baldwin", + "Cynthia Gibb" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Above the Rim", + "year": 1994, + "cast": [ + "Duane Martin", + "Leon", + "Tupac Shakur" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Abraham", + "year": 1994, + "cast": [ + "Richard Harris", + "Barbara Hershey" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Ace Ventura: Pet Detective", + "year": 1994, + "cast": [ + "Jim Carrey", + "Courteney Cox", + "Sean Young", + "Tone Loc", + "Dan Marino" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Africa: The Serengeti", + "year": 1994, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Air Up There", + "year": 1994, + "cast": [ + "Kevin Bacon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Airheads", + "year": 1994, + "cast": [ + "Brendan Fraser", + "Adam Sandler", + "Steve Buscemi" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Aladdin: The Return of Jafar", + "year": 1994, + "cast": [], + "genres": [ + "Family" + ] + }, + { + "title": "Alien Nation: Dark Horizon", + "year": 1994, + "cast": [ + "Gary Graham", + "Eric Pierpoint" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Amateur", + "year": 1994, + "cast": [ + "Isabelle Huppert", + "Martin Donovan" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Andre", + "year": 1994, + "cast": [ + "Keith Carradine", + "Tina Majorino" + ], + "genres": [ + "Family", + "Drama" + ] + }, + { + "title": "Angels in the Outfield", + "year": 1994, + "cast": [ + "Danny Glover", + "Tony Danza", + "Christopher Lloyd", + "Joseph Gordon-Levitt", + "Brenda Fricker", + "Jay O. Sanders" + ], + "genres": [ + "Comedy", + "Sports" + ] + }, + { + "title": "Angie", + "year": 1994, + "cast": [ + "Geena Davis", + "Stephen Rea", + "James Gandolfini", + "Aida Turturro" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Another Midnight Run", + "year": 1994, + "cast": [ + "Christopher McDonald", + "Cathy Moriarty" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Baby's Day Out", + "year": 1994, + "cast": [ + "Joe Mantegna", + "Lara Flynn Boyle", + "Joe Pantoliano", + "Brian Haley" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Bad Girls", + "year": 1994, + "cast": [ + "Madeleine Stowe", + "Mary Stuart Masterson", + "Andie MacDowell", + "Drew Barrymore", + "Dermot Mulroney" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Bar Girls", + "year": 1994, + "cast": [], + "genres": [ + "Drama" + ] + }, + { + "title": "Barcelona", + "year": 1994, + "cast": [ + "Taylor Nichols", + "Mira Sorvino" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Beretta's Island", + "year": 1994, + "cast": [ + "Franco Columbu" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Beverly Hills Cop III", + "year": 1994, + "cast": [ + "Eddie Murphy", + "Judge Reinhold", + "Héctor Elizondo", + "Theresa Randle" + ], + "genres": [ + "Action", + "Comedy" + ] + }, + { + "title": "The Birds II: Land's End", + "year": 1994, + "cast": [ + "Brad Johnson", + "Chelsea Field" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Black Beauty", + "year": 1994, + "cast": [ + "Alan Cumming", + "Sean Bean" + ], + "genres": [ + "Family", + "Drama" + ] + }, + { + "title": "Blank Check", + "year": 1994, + "cast": [ + "Brian Bonsall", + "Karen Duffy", + "Miguel Ferrer", + "James Rebhorn", + "Tone Loc", + "Jayne Atkinson", + "Michael Lerner" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Blankman", + "year": 1994, + "cast": [ + "Damon Wayans", + "David Alan Grier", + "Robin Givens" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Blind Justice", + "year": 1994, + "cast": [ + "Armand Assante", + "Elisabeth Shue" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Blink", + "year": 1994, + "cast": [ + "Madeleine Stowe", + "Aidan Quinn", + "James Remar", + "Laurie Metcalf" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Bloodfist V: Human Target", + "year": 1994, + "cast": [ + "Don Wilson" + ], + "genres": [ + "Martial Arts" + ] + }, + { + "title": "Bloodlust: Subspecies III", + "year": 1994, + "cast": [], + "genres": [ + "Horror" + ] + }, + { + "title": "Blown Away", + "year": 1994, + "cast": [ + "Jeff Bridges", + "Tommy Lee Jones", + "Suzy Amis", + "Lloyd Bridges", + "Forest Whitaker" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Blue Chips", + "year": 1994, + "cast": [ + "Nick Nolte", + "Mary McDonnell", + "Shaquille O'Neal", + "Alfre Woodard", + "Ed O'Neill", + "J. T. Walsh" + ], + "genres": [ + "Drama", + "Sports" + ] + }, + { + "title": "Blue Sky", + "year": 1994, + "cast": [ + "Jessica Lange", + "Tommy Lee Jones" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Brainscan", + "year": 1994, + "cast": [ + "Edward Furlong", + "Frank Langella" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Breach of Conduct", + "year": 1994, + "cast": [ + "Peter Coyote" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Breathing Lessons", + "year": 1994, + "cast": [ + "James Garner", + "Joanne Woodward" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Bullets over Broadway", + "year": 1994, + "cast": [ + "John Cusack", + "Jennifer Tilly", + "Dianne Wiest", + "Chazz Palminteri", + "Jim Broadbent", + "Rob Reiner", + "Mary-Louise Parker", + "Tracey Ullman", + "Joe Viterelli" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Cabin Boy", + "year": 1994, + "cast": [ + "Chris Elliott", + "Andy Richter" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Camp Nowhere", + "year": 1994, + "cast": [ + "Jonathan Jackson", + "Christopher Lloyd", + "Melody Kay", + "Andrew Keegan", + "Marnette Patterson", + "Jessica Alba" + ], + "genres": [ + "Family", + "Comedy" + ] + }, + { + "title": "Campground Massacre", + "year": 1994, + "cast": [ + "Walter Cherry", + "Wesley Shane Winter", + "Jeremy Winter", + "Dustin J. Boes", + "Mathew Vaughan", + "Janie Dull" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Cancer Wars", + "year": 1994, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "Car 54, Where Are You?", + "year": 1994, + "cast": [ + "John C. McGinley", + "David Johansen", + "Fran Drescher", + "Rosie O'Donnell", + "Nipsey Russell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Chariots of Fur", + "year": 1994, + "cast": [], + "genres": [] + }, + { + "title": "The Chase", + "year": 1994, + "cast": [ + "Charlie Sheen", + "Kristy Swanson" + ], + "genres": [ + "Comedy", + "Action" + ] + }, + { + "title": "Chasers", + "year": 1994, + "cast": [ + "Tom Berenger", + "William McNamara", + "Erika Eleniak", + "Gary Busey" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "China Moon", + "year": 1994, + "cast": [ + "Ed Harris", + "Madeleine Stowe", + "Benicio del Toro", + "Charles Dance" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Cinderella", + "year": 1994, + "cast": [], + "genres": [] + }, + { + "title": "City Slickers II: The Legend of Curly's Gold", + "year": 1994, + "cast": [ + "Billy Crystal", + "Jack Palance", + "Jon Lovitz", + "Daniel Stern", + "Patricia Wettig" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Class of Nuke 'Em High 3: The Good, the Bad and the Subhumanoid", + "year": 1994, + "cast": [], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Clean, Shaven", + "year": 1994, + "cast": [ + "Peter Greene" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Clean Slate", + "year": 1994, + "cast": [ + "Dana Carvey", + "Valeria Golino", + "James Earl Jones", + "Michael Gambon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Clear and Present Danger", + "year": 1994, + "cast": [ + "Harrison Ford", + "Willem Dafoe", + "Anne Archer", + "James Earl Jones", + "Donald Moffat", + "Harris Yulin", + "Joaquim de Almeida", + "Henry Czerny" + ], + "genres": [ + "Action", + "Drama" + ] + }, + { + "title": "Clerks", + "year": 1994, + "cast": [ + "Brian O'Halloran", + "Jeff Anderson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Client", + "year": 1994, + "cast": [ + "Susan Sarandon", + "Tommy Lee Jones", + "Brad Renfro", + "Mary-Louise Parker", + "Anthony LaPaglia", + "J. T. Walsh" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Clifford", + "year": 1994, + "cast": [ + "Martin Short", + "Charles Grodin", + "Mary Steenburgen", + "Dabney Coleman", + "Richard Kind" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Cobb", + "year": 1994, + "cast": [ + "Tommy Lee Jones", + "Robert Wuhl", + "Lolita Davidovich" + ], + "genres": [ + "Biography", + "Drama" + ] + }, + { + "title": "Color of Night", + "year": 1994, + "cast": [ + "Bruce Willis", + "Jane March", + "Rubén Blades", + "Lesley Ann Warren", + "Scott Bakula", + "Brad Dourif", + "Lance Henriksen", + "Kevin J. O'Connor" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Confessions of a Sorority Girl", + "year": 1994, + "cast": [], + "genres": [ + "Drama" + ] + }, + { + "title": "The Cool Surface", + "year": 1994, + "cast": [ + "Robert Patrick", + "Teri Hatcher" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Cool and the Crazy", + "year": 1994, + "cast": [ + "Jennifer Blanc", + "Jared Leto" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Cops and Robbersons", + "year": 1994, + "cast": [ + "Chevy Chase", + "Jack Palance", + "Dianne Wiest", + "Jason James Richter" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Corrina, Corrina", + "year": 1994, + "cast": [ + "Whoopi Goldberg", + "Ray Liotta", + "Tina Majorino" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Cowboy Way", + "year": 1994, + "cast": [ + "Woody Harrelson", + "Kiefer Sutherland", + "Dylan McDermott", + "Ernie Hudson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Cremaster Cycle", + "year": 1994, + "cast": [], + "genres": [] + }, + { + "title": "Crooklyn", + "year": 1994, + "cast": [ + "Alfre Woodard", + "Delroy Lindo" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Crow", + "year": 1994, + "cast": [ + "Brandon Lee", + "Michael Wincott", + "Ernie Hudson" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Crumb", + "year": 1994, + "cast": [ + "R. Crumb" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Cyborg 3: The Recycler", + "year": 1994, + "cast": [ + "Malcolm McDowell", + "Zach Galligan" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "D2: The Mighty Ducks", + "year": 1994, + "cast": [ + "Emilio Estevez", + "Joshua Jackson" + ], + "genres": [ + "Family" + ] + }, + { + "title": "The Dallas Connection", + "year": 1994, + "cast": [ + "Julie Strain" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Deadly Target", + "year": 1994, + "cast": [ + "Gary Daniels", + "Ken McLeod", + "Max Gail" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Death and the Maiden", + "year": 1994, + "cast": [ + "Sigourney Weaver", + "Ben Kingsley", + "Stuart Wilson" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "Death Wish V: The Face of Death", + "year": 1994, + "cast": [ + "Charles Bronson", + "Michael Parks" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dinosaur Island", + "year": 1994, + "cast": [ + "Ross Hagen", + "Antonia Dorian" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Disclosure", + "year": 1994, + "cast": [ + "Michael Douglas", + "Demi Moore", + "Donald Sutherland", + "Caroline Goodall", + "Dennis Miller" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Don't Drink the Water", + "year": 1994, + "cast": [ + "Woody Allen", + "Michael J. Fox" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Doomsday Gun", + "year": 1994, + "cast": [ + "Frank Langella", + "Alan Arkin", + "Kevin Spacey" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Double Dragon", + "year": 1994, + "cast": [ + "Mark Dacascos", + "Scott Wolf", + "Robert Patrick", + "Alyssa Milano" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Dream Lover", + "year": 1994, + "cast": [ + "James Spader", + "Mädchen Amick" + ], + "genres": [ + "Drama", + "Thriller" + ] + }, + { + "title": "Drop Zone", + "year": 1994, + "cast": [ + "Wesley Snipes", + "Gary Busey", + "Yancy Butler" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Dumb and Dumber", + "year": 1994, + "cast": [ + "Jim Carrey", + "Jeff Daniels", + "Lauren Holly" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Ed Wood", + "year": 1994, + "cast": [ + "Johnny Depp", + "Martin Landau", + "Bill Murray", + "Jeffrey Jones", + "Sarah Jessica Parker", + "Patricia Arquette" + ], + "genres": [ + "Comedy", + "Biography" + ] + }, + { + "title": "Emmanuelle in Space", + "year": 1994, + "cast": [ + "Krista Allen" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Even Cowgirls Get the Blues", + "year": 1994, + "cast": [ + "Uma Thurman", + "Lorraine Bracco", + "Angie Dickinson", + "Pat Morita", + "Keanu Reeves", + "John Hurt", + "Rain Phoenix", + "Roseanne Barr", + "Ed Begley, Jr." + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "Exit to Eden", + "year": 1994, + "cast": [ + "Dana Delany", + "Paul Mercurio", + "Rosie O'Donnell", + "Dan Aykroyd", + "Iman", + "Stuart Wilson", + "Héctor Elizondo" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "F.T.W.", + "year": 1994, + "cast": [ + "Mickey Rourke", + "Lori Singer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Fantastic Four", + "year": 1994, + "cast": [], + "genres": [] + }, + { + "title": "Fast Getaway II", + "year": 1994, + "cast": [ + "Corey Haim", + "Cynthia Rothrock", + "Leo Rossi" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Favor", + "year": 1994, + "cast": [ + "Harley Jane Kozak", + "Elizabeth McGovern", + "Ken Wahl", + "Brad Pitt", + "Bill Pullman" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Fear of a Black Hat", + "year": 1994, + "cast": [ + "Kasi Lemmons" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Flintstones", + "year": 1994, + "cast": [ + "John Goodman", + "Rick Moranis", + "Rosie O'Donnell", + "Elizabeth Perkins", + "Kyle MacLachlan", + "Halle Berry", + "Elizabeth Taylor" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Foot Shooting Party", + "year": 1994, + "cast": [ + "Leonardo DiCaprio" + ], + "genres": [ + "Short" + ] + }, + { + "title": "The Force", + "year": 1994, + "cast": [ + "Yasmine Bleeth", + "Jason Gedrick" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Forrest Gump", + "year": 1994, + "cast": [ + "Tom Hanks", + "Robin Wright Penn", + "Gary Sinise", + "Sally Field", + "Mykelti Williamson", + "Haley Joel Osment" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Frank & Jesse", + "year": 1994, + "cast": [ + "Rob Lowe", + "Bill Paxton" + ], + "genres": [ + "Western", + "Biography" + ] + }, + { + "title": "Fresh", + "year": 1994, + "cast": [ + "Sean Nelson", + "Samuel L. Jackson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Gang War: Bangin' In Little Rock", + "year": 1994, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "Gary Larson's Tales from the Far Side", + "year": 1994, + "cast": [], + "genres": [] + }, + { + "title": "The Getaway", + "year": 1994, + "cast": [ + "Alec Baldwin", + "Kim Basinger", + "James Woods", + "Michael Madsen", + "Jennifer Tilly", + "Richard Farnsworth", + "Philip Seymour Hoffman" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Getting Even with Dad", + "year": 1994, + "cast": [ + "Macaulay Culkin", + "Ted Danson", + "Glenne Headly" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Gift", + "year": 1994, + "cast": [ + "Bonnie Bedelia", + "Diane Ladd" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Girlie Show - Live Down Under", + "year": 1994, + "cast": [], + "genres": [] + }, + { + "title": "Go Fish", + "year": 1994, + "cast": [ + "Guinevere Turner" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "God Wants Me To Forgive Them!?!", + "year": 1994, + "cast": [ + "Phil Vischer", + "Mike Nawrocki" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Golden Gate", + "year": 1994, + "cast": [ + "Matt Dillon", + "Joan Chen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Greedy", + "year": 1994, + "cast": [ + "Michael J. Fox", + "Kirk Douglas", + "Nancy Travis", + "Phil Hartman", + "Ed Begley, Jr.", + "Bob Balaban", + "Colleen Camp", + "Olivia d'Abo" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Guarding Tess", + "year": 1994, + "cast": [ + "Shirley MacLaine", + "Nicolas Cage", + "Austin Pendleton", + "Edward Albert" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Guinevere", + "year": 1994, + "cast": [ + "Sheryl Lee", + "Noah Wyle" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Gunmen", + "year": 1994, + "cast": [ + "Christopher Lambert", + "Mario Van Peebles", + "Denis Leary" + ], + "genres": [ + "Action", + "Comedy" + ] + }, + { + "title": "Hail Caesar", + "year": 1994, + "cast": [ + "Robert Downey, Jr.", + "Anthony Michael Hall" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hated: GG Allin and the Murder Junkies", + "year": 1994, + "cast": [], + "genres": [] + }, + { + "title": "The Hidden II", + "year": 1994, + "cast": [ + "Kate Hodge" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Highlander III: The Sorcerer", + "year": 1994, + "cast": [ + "Christopher Lambert", + "Mario van Peebles" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Holy Matrimony", + "year": 1994, + "cast": [ + "Patricia Arquette", + "Joseph Gordon-Levitt", + "Tate Donovan", + "Armin Mueller-Stahl" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Honey, I Shrunk the Audience", + "year": 1994, + "cast": [], + "genres": [] + }, + { + "title": "Hoop Dreams", + "year": 1994, + "cast": [], + "genres": [ + "Documentary", + "Sports" + ] + }, + { + "title": "House Party 3", + "year": 1994, + "cast": [ + "Kid 'n Play", + "Bernie Mac" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "How the West Was Fun", + "year": 1994, + "cast": [ + "Mary-Kate Olsen", + "Ashley Olsen" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Hudsucker Proxy", + "year": 1994, + "cast": [ + "Tim Robbins", + "Jennifer Jason Leigh", + "Paul Newman" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "I Don't Hate Las Vegas Anymore", + "year": 1994, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "I Like It Like That", + "year": 1994, + "cast": [ + "Jon Seda", + "Lauren Velez", + "Rita Moreno" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "I Love Trouble", + "year": 1994, + "cast": [ + "Julia Roberts", + "Nick Nolte" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "I'll Do Anything", + "year": 1994, + "cast": [ + "Nick Nolte", + "Joely Richardson", + "Albert Brooks", + "Tracey Ullman", + "Julie Kavner", + "Whittni Wright" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "I.Q.", + "year": 1994, + "cast": [ + "Tim Robbins", + "Meg Ryan", + "Walter Matthau" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Imaginary Crimes", + "year": 1994, + "cast": [ + "Harvey Keitel" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Immortal Beloved", + "year": 1994, + "cast": [ + "Gary Oldman", + "Isabella Rossellini" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "In Search of Dr. Seuss", + "year": 1994, + "cast": [ + "Kathy Najimy", + "Christopher Lloyd" + ], + "genres": [ + "Family" + ] + }, + { + "title": "In the Army Now", + "year": 1994, + "cast": [ + "Pauly Shore", + "Andy Dick", + "Lori Petty" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Inkwell", + "year": 1994, + "cast": [ + "Larenz Tate", + "Joe Morton", + "Jada Pinkett Smith" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Intersection", + "year": 1994, + "cast": [ + "Richard Gere", + "Sharon Stone", + "Lolita Davidovich", + "Martin Landau" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Interview with the Vampire", + "year": 1994, + "cast": [ + "Tom Cruise", + "Brad Pitt", + "Kirsten Dunst", + "Christian Slater", + "Stephen Rea", + "Antonio Banderas", + "Thandie Newton" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Iron Will", + "year": 1994, + "cast": [ + "Mackenzie Astin", + "Kevin Spacey" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Is There Life Out There?", + "year": 1994, + "cast": [ + "Reba McEntire", + "Keith Carradine" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "It Could Happen to You", + "year": 1994, + "cast": [ + "Nicolas Cage", + "Bridget Fonda", + "Rosie Perez" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "It Don't Cost Nothin' to Say Good Morning", + "year": 1994, + "cast": [], + "genres": [] + }, + { + "title": "It's Pat", + "year": 1994, + "cast": [ + "Julia Sweeney", + "Dave Foley" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Jacob", + "year": 1994, + "cast": [], + "genres": [ + "Drama" + ] + }, + { + "title": "Jason's Lyric", + "year": 1994, + "cast": [ + "Jada Pinkett Smith", + "Allen Payne" + ], + "genres": [ + "Drama", + "Romance" + ] + }, + { + "title": "Jimmy Hollywood", + "year": 1994, + "cast": [ + "Joe Pesci", + "Christian Slater" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "Junior", + "year": 1994, + "cast": [ + "Arnold Schwarzenegger", + "Danny DeVito", + "Emma Thompson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Kickboxer 4", + "year": 1994, + "cast": [ + "Sasha Mitchell" + ], + "genres": [] + }, + { + "title": "Kill the Moonlight", + "year": 1994, + "cast": [ + "Thomas Hendrix", + "Ross Harris" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Killing Zoe", + "year": 1994, + "cast": [ + "Eric Stoltz", + "Julie Delpy" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Knight Rider 2010", + "year": 1994, + "cast": [ + "Richard Joseph Paul" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Land Before Time II: The Great Valley Adventure", + "year": 1994, + "cast": [ + "John Ingle", + "Scott McAfee" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Lassie", + "year": 1994, + "cast": [ + "Tom Guiry", + "Helen Slater", + "Richard Farnsworth" + ], + "genres": [ + "Family" + ] + }, + { + "title": "The Last Seduction", + "year": 1994, + "cast": [ + "Linda Fiorentino", + "Bill Pullman", + "Peter Berg" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Legends of the Fall", + "year": 1994, + "cast": [ + "Brad Pitt", + "Anthony Hopkins", + "Aidan Quinn", + "Julia Ormond", + "Henry Thomas" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Leprechaun 2", + "year": 1994, + "cast": [ + "Warwick Davis" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Life with Billy", + "year": 1994, + "cast": [ + "Stephen McHattie" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Lion King", + "year": 1994, + "cast": [ + "(voices)", + "Jonathan Taylor Thomas", + "Matthew Broderick", + "Jeremy Irons", + "James Earl Jones", + "Whoopi Goldberg", + "Moira Kelly", + "Nathan Lane" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Little Big League", + "year": 1994, + "cast": [ + "Luke Edwards", + "Timothy Busfield", + "Dennis Farina" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Little Buddha", + "year": 1994, + "cast": [ + "Keanu Reeves", + "Bridget Fonda", + "Chris Isaak" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Little Giants", + "year": 1994, + "cast": [ + "Rick Moranis", + "Ed O'Neill" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Little Odessa", + "year": 1994, + "cast": [ + "Tim Roth", + "Edward Furlong", + "Moira Kelly", + "Vanessa Redgrave", + "Maximilian Schell" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Little Rascals", + "year": 1994, + "cast": [ + "Bug Hall", + "Travis Tedford", + "Reba McEntire", + "Whoopi Goldberg", + "Mel Brooks" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Little Women", + "year": 1994, + "cast": [ + "Winona Ryder", + "Claire Danes", + "Trini Alvarado", + "Kirsten Dunst", + "Susan Sarandon", + "Christian Bale", + "Gabriel Byrne", + "Samantha Mathis", + "Eric Stoltz" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Love Affair", + "year": 1994, + "cast": [ + "Warren Beatty", + "Annette Bening", + "Garry Shandling", + "Katharine Hepburn", + "Pierce Brosnan", + "Kate Capshaw", + "Chloe Webb" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Love and a .45", + "year": 1994, + "cast": [ + "Gil Bellows", + "Renée Zellweger" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Low Down Dirty Shame", + "year": 1994, + "cast": [ + "Keenen Ivory Wayans", + "Jada Pinkett" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Lurking Fear", + "year": 1994, + "cast": [ + "Blake Bailey", + "Jon Finch" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Major League II", + "year": 1994, + "cast": [ + "Tom Berenger", + "Charlie Sheen", + "Corbin Bernsen", + "Omar Epps", + "Dennis Haysbert", + "Bob Uecker" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mary Shelley's Frankenstein", + "year": 1994, + "cast": [ + "Robert De Niro", + "Helena Bonham Carter", + "Kenneth Branagh", + "Aidan Quinn", + "Tom Hulce", + "Ian Holm" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Mask", + "year": 1994, + "cast": [ + "Jim Carrey", + "Cameron Diaz", + "Peter Greene", + "Ben Stein", + "Richard Jeni", + "Peter Riegert", + "Amy Yasbeck" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Maverick", + "year": 1994, + "cast": [ + "Mel Gibson", + "Jodie Foster", + "James Garner" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Men of War", + "year": 1994, + "cast": [ + "Dolph Lundgren", + "Charlotte Lewis" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Midnight Run for Your Life", + "year": 1994, + "cast": [ + "Christopher McDonald", + "Melora Walters" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Midnight Runaround", + "year": 1994, + "cast": [ + "Christopher McDonald" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Milk Money", + "year": 1994, + "cast": [ + "Ed Harris", + "Melanie Griffith", + "Malcolm McDowell", + "Anne Heche", + "Casey Siemaszko" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Million to Juan", + "year": 1994, + "cast": [ + "Paul Rodriguez", + "Polly Draper" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Miracle on 34th Street", + "year": 1994, + "cast": [ + "Richard Attenborough", + "Elizabeth Perkins", + "Dylan McDermott", + "Mara Wilson" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Mixed Nuts", + "year": 1994, + "cast": [ + "Steve Martin", + "Madeline Kahn", + "Rita Wilson", + "Liev Schrieber", + "Juliette Lewis", + "Anthony LaPaglia", + "Adam Sandler" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Molly & Gina", + "year": 1994, + "cast": [ + "Frances Fisher", + "Peter Fonda" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Monkey Trouble", + "year": 1994, + "cast": [ + "Thora Birch", + "Harvey Keitel", + "Mimi Rogers", + "Christopher McDonald" + ], + "genres": [ + "Family" + ] + }, + { + "title": "The Monster", + "year": 1994, + "cast": [ + "Roberto Benigni" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mrs. Parker and the Vicious Circle", + "year": 1994, + "cast": [ + "Jennifer Jason Leigh", + "Matthew Broderick", + "Campbell Scott", + "Lili Taylor", + "Martha Plimpton", + "Keith Carradine", + "Jennifer Beals" + ], + "genres": [ + "Drama", + "Biography" + ] + }, + { + "title": "Multi-Facial", + "year": 1994, + "cast": [ + "Vin Diesel" + ], + "genres": [ + "Short" + ] + }, + { + "title": "My Father the Hero", + "year": 1994, + "cast": [ + "Gérard Depardieu", + "Katherine Heigl", + "Dalton James" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "My Girl 2", + "year": 1994, + "cast": [ + "Anna Chlumsky", + "Dan Aykroyd", + "Jamie Lee Curtis", + "Austin O'Brien" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "My Summer Story", + "year": 1994, + "cast": [ + "Charles Grodin", + "Mary Steenburgen", + "Kieran Culkin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Naked Gun 33⅓: The Final Insult", + "year": 1994, + "cast": [ + "Leslie Nielsen", + "Priscilla Presley", + "George Kennedy", + "O.J. Simpson", + "Fred Ward", + "Anna Nicole Smith", + "Kathleen Freeman", + "Pia Zadora", + "Raquel Welch" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "National Lampoon's Last Resort", + "year": 1994, + "cast": [ + "Corey Feldman", + "Corey Haim" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Natural Born Killers", + "year": 1994, + "cast": [ + "Woody Harrelson", + "Juliette Lewis", + "Robert Downey, Jr.", + "Tommy Lee Jones", + "Tom Sizemore", + "Rodney Dangerfield", + "Edie McClurg", + "Balthazar Getty" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Nell", + "year": 1994, + "cast": [ + "Liam Neeson", + "Jodie Foster", + "Natasha Richardson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The NeverEnding Story III: Escape from Fantasia", + "year": 1994, + "cast": [ + "Jason James Richter", + "Jack Black" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Next Karate Kid", + "year": 1994, + "cast": [ + "Hilary Swank", + "Pat Morita", + "Michael Ironside" + ], + "genres": [ + "Action" + ] + }, + { + "title": "No Dessert, Dad, till You Mow the Lawn", + "year": 1994, + "cast": [ + "Joanna Kerns", + "Robert Hays" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Night Of The Axe", + "year": 1994, + "cast": [ + "Walter Cherry", + "Danny French", + "Elly Davis", + "Jeremy Winter", + "Michael Gaggliano", + "Donald Dillard", + "Wesley Shane Winter", + "Dustin J. Boes" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "No Escape", + "year": 1994, + "cast": [ + "Ray Liotta", + "Kevin Dillon", + "Stuart Wilson", + "Kevin J. O'Connor" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Nobody's Fool", + "year": 1994, + "cast": [ + "Paul Newman", + "Bruce Willis", + "Melanie Griffith", + "Jessica Tandy", + "Dylan Walsh", + "Philip Seymour Hoffman", + "Pruitt Taylor Vince" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "North", + "year": 1994, + "cast": [ + "Elijah Wood", + "Jason Alexander", + "Julia Louis-Dreyfus", + "Bruce Willis", + "Jon Lovitz", + "Alan Arkin", + "Dan Aykroyd", + "Reba McEntire", + "Kathy Bates", + "John Ritter" + ], + "genres": [ + "Comedy", + "Fantasy" + ] + }, + { + "title": "On Deadly Ground", + "year": 1994, + "cast": [ + "Steven Seagal", + "Michael Caine", + "Joan Chen" + ], + "genres": [ + "Action" + ] + }, + { + "title": "One Survivor Remembers", + "year": 1994, + "cast": [], + "genres": [] + }, + { + "title": "Only You", + "year": 1994, + "cast": [ + "Marisa Tomei", + "Robert Downey, Jr.", + "Bonnie Hunt" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Out of Darkness", + "year": 1994, + "cast": [ + "Diana Ross", + "Beah Richards" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "PCU", + "year": 1994, + "cast": [ + "Jeremy Piven", + "David Spade" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Pagemaster", + "year": 1994, + "cast": [ + "Macaulay Culkin", + "Christopher Lloyd" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "The Paper", + "year": 1994, + "cast": [ + "Michael Keaton", + "Robert Duvall", + "Glenn Close", + "Marisa Tomei", + "Randy Quaid", + "Jason Alexander" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Party", + "year": 1994, + "cast": [ + "Gary Coleman", + "Floyd Harden" + ], + "genres": [] + }, + { + "title": "Pentathlon", + "year": 1994, + "cast": [ + "Dolph Lundgren" + ], + "genres": [ + "Action", + "Thriller" + ] + }, + { + "title": "Pet Shop", + "year": 1994, + "cast": [], + "genres": [ + "Family" + ] + }, + { + "title": "Phantasm III: Lord of the Dead", + "year": 1994, + "cast": [ + "Reggie Bannister", + "Angus Scrimm" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Police Academy: Mission to Moscow", + "year": 1994, + "cast": [ + "George Gaynes", + "Michael Winslow" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Pontiac Moon", + "year": 1994, + "cast": [ + "Ted Danson", + "Mary Steenburgen" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Prêt-à-Porter", + "year": 1994, + "cast": [ + "Marcello Mastroianni", + "Sophia Loren", + "Julia Roberts", + "Jean-Pierre Cassel", + "Kim Basinger", + "Tim Robbins", + "Forest Whitaker", + "Danny Aiello" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Princess Caraboo", + "year": 1994, + "cast": [ + "Phoebe Cates", + "Jim Broadbent" + ], + "genres": [ + "Biography", + "Comedy" + ] + }, + { + "title": "Pulp Fiction", + "year": 1994, + "cast": [ + "John Travolta", + "Samuel L. Jackson", + "Bruce Willis", + "Uma Thurman", + "Ving Rhames", + "Harvey Keitel", + "Christopher Walken", + "Amanda Plummer", + "Tim Roth", + "Frank Whaley", + "Eric Stoltz" + ], + "genres": [ + "Action", + "Comedy" + ] + }, + { + "title": "Pumpkinhead II: Blood Wings", + "year": 1994, + "cast": [], + "genres": [ + "Horror" + ] + }, + { + "title": "Puppet Master 5: The Final Chapter", + "year": 1994, + "cast": [], + "genres": [ + "Horror" + ] + }, + { + "title": "The Puppet Masters", + "year": 1994, + "cast": [ + "Donald Sutherland" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Quiz Show", + "year": 1994, + "cast": [ + "Ralph Fiennes", + "John Turturro", + "Rob Morrow", + "Paul Scofield", + "Christopher McDonald", + "Barry Levinson", + "Martin Scorsese" + ], + "genres": [ + "Drama", + "Biography" + ] + }, + { + "title": "Radio Inside", + "year": 1994, + "cast": [ + "William McNamara", + "Elisabeth Shue" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Radioland Murders", + "year": 1994, + "cast": [ + "Mary Stuart Masterson", + "Brian Benben" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Rapa Nui", + "year": 1994, + "cast": [ + "Jason Scott Lee", + "Esai Morales", + "Sandrine Holt" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Raw Justice", + "year": 1994, + "cast": [ + "Pamela Anderson", + "Robert Hays" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Reality Bites", + "year": 1994, + "cast": [ + "Winona Ryder", + "Ethan Hawke", + "Ben Stiller", + "Janeane Garofalo", + "Steve Zahn" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Ref", + "year": 1994, + "cast": [ + "Denis Leary", + "Kevin Spacey", + "Judy Davis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Renaissance Man", + "year": 1994, + "cast": [ + "Danny DeVito", + "Gregory Hines", + "Mark Wahlberg", + "Cliff Robertson", + "Kadeem Hardison", + "Lillo Brancato, Jr." + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Revenge of the Nerds IV: Nerds in Love", + "year": 1994, + "cast": [ + "Robert Carradine" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Richie Rich", + "year": 1994, + "cast": [ + "Macaulay Culkin", + "John Larroquette" + ], + "genres": [ + "Comedy", + "Family" + ] + }, + { + "title": "The River Wild", + "year": 1994, + "cast": [ + "Meryl Streep", + "Kevin Bacon", + "David Strathairn", + "Joseph Mazzello", + "John C. Reilly" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Road to Wellville", + "year": 1994, + "cast": [ + "Anthony Hopkins", + "Matthew Broderick", + "John Cusack", + "Bridget Fonda", + "Dana Carvey", + "Lara Flynn Boyle", + "Camryn Manheim" + ], + "genres": [ + "Comedy", + "Biography" + ] + }, + { + "title": "Roadracers", + "year": 1994, + "cast": [], + "genres": [ + "Drama" + ] + }, + { + "title": "Romeo Is Bleeding", + "year": 1994, + "cast": [ + "Gary Oldman", + "Lena Olin", + "Annabella Sciorra", + "Juliette Lewis", + "Roy Scheider" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Roswell", + "year": 1994, + "cast": [ + "Kyle MacLachlan", + "Martin Sheen" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Jungle Book", + "year": 1994, + "cast": [ + "Jason Scott Lee", + "Cary Elwes", + "Lena Headey" + ], + "genres": [ + "Family", + "Adventure" + ] + }, + { + "title": "S.F.W.", + "year": 1994, + "cast": [ + "Stephen Dorff", + "Reese Witherspoon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Sabotage", + "year": 1994, + "cast": [ + "Walter Cherry", + "Wayne Quiggins", + "Dustin J. Boes" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Santa Clause", + "year": 1994, + "cast": [ + "Tim Allen", + "Judge Reinhold", + "Wendy Crewson", + "Eric Lloyd", + "David Krumholtz" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Scooby-Doo in Arabian Nights", + "year": 1994, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "The Scout", + "year": 1994, + "cast": [ + "Albert Brooks", + "Brendan Fraser", + "Dianne Wiest" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Search for One-eye Jimmy", + "year": 1994, + "cast": [ + "Steve Buscemi", + "Samuel L. Jackson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Sesame Street Jam: A Musical Celebration", + "year": 1994, + "cast": [], + "genres": [ + "Musical" + ] + }, + { + "title": "The Secret of Roan Inish", + "year": 1994, + "cast": [ + "Jeni Courtney" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Serial Mom", + "year": 1994, + "cast": [ + "Kathleen Turner", + "Sam Waterston", + "Ricki Lake", + "Matthew Lillard" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Shadow", + "year": 1994, + "cast": [ + "Alec Baldwin", + "John Lone", + "Penelope Ann Miller" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Shatter Dead", + "year": 1994, + "cast": [], + "genres": [ + "Horror" + ] + }, + { + "title": "The Shawshank Redemption", + "year": 1994, + "cast": [ + "Tim Robbins", + "Morgan Freeman", + "James Whitmore", + "Clancy Brown", + "William Sadler", + "Gil Bellows", + "Bob Gunton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Silence of the Hams", + "year": 1994, + "cast": [ + "Billy Zane", + "Dom DeLuise" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Silent Fall", + "year": 1994, + "cast": [ + "Richard Dreyfuss", + "Linda Hamilton", + "John Lithgow", + "Liv Tyler" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Silent Tongue", + "year": 1994, + "cast": [ + "Richard Harris", + "River Phoenix" + ], + "genres": [ + "Western" + ] + }, + { + "title": "A Simple Twist of Fate", + "year": 1994, + "cast": [ + "Steve Martin", + "Gabriel Byrne", + "Catherine O'Hara", + "Stephen Baldwin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sioux City", + "year": 1994, + "cast": [ + "Lou Diamond Phillips", + "Melinda Dillon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sleep with Me", + "year": 1994, + "cast": [ + "Meg Tilly", + "Eric Stoltz" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Spanking the Monkey", + "year": 1994, + "cast": [ + "Alberta Watson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Specialist", + "year": 1994, + "cast": [ + "Sylvester Stallone", + "Sharon Stone", + "James Woods", + "Rod Steiger", + "Eric Roberts" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Speechless", + "year": 1994, + "cast": [ + "Michael Keaton", + "Geena Davis", + "Christopher Reeve" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Speed", + "year": 1994, + "cast": [ + "Keanu Reeves", + "Sandra Bullock", + "Dennis Hopper", + "Jeff Daniels", + "Joe Morton" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Squanto: A Warrior's Tale", + "year": 1994, + "cast": [ + "Adam Beach", + "Sheldon Peters" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Stand", + "year": 1994, + "cast": [ + "Gary Sinise", + "Molly Ringwald", + "Rob Lowe", + "Ruby Dee", + "Laura San Giacomo", + "Jamey Sheridan", + "Miguel Ferrer", + "Ossie Davis", + "Adam Storke", + "Corin Nemec", + "Ray Walston", + "Matt Frewer" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Star Trek Generations", + "year": 1994, + "cast": [ + "Patrick Stewart", + "William Shatner" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Stargate", + "year": 1994, + "cast": [ + "Kurt Russell", + "James Spader", + "Jaye Davidson" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Street Fighter", + "year": 1994, + "cast": [ + "Jean-Claude Van Damme", + "Raúl Juliá", + "Ming-Na Wen", + "Kylie Minogue", + "Damian Chapa", + "Byron Mann", + "Wes Studi" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Stoned Age", + "year": 1994, + "cast": [ + "Bradford Tatum", + "Clifton Collins, Jr." + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Sugar Hill", + "year": 1994, + "cast": [ + "Wesley Snipes" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Surviving the Game", + "year": 1994, + "cast": [ + "Ice-T", + "Rutger Hauer", + "Gary Busey", + "Charles S. Dutton", + "F. Murray Abraham", + "John C. McGinley", + "William McNamara" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Swan Princess", + "year": 1994, + "cast": [ + "voices of", + "John Cleese", + "Jack Palance" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Swimming with Sharks", + "year": 1994, + "cast": [ + "Kevin Spacey", + "Frank Whaley", + "Michelle Forbes" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Teresa's Tattoo", + "year": 1994, + "cast": [ + "C. Thomas Howell", + "Lou Diamond Phillips", + "Melissa Etheridge" + ], + "genres": [ + "Action", + "Comedy" + ] + }, + { + "title": "Terminal Velocity", + "year": 1994, + "cast": [ + "Charlie Sheen", + "Nastassja Kinski", + "James Gandolfini", + "Christopher McDonald" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Texas Chainsaw Massacre: The Next Generation", + "year": 1994, + "cast": [ + "Renée Zellweger", + "Matthew McConaughey" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "That's Entertainment! III", + "year": 1994, + "cast": [ + "Gene Kelly", + "Lena Horne", + "Debbie Reynolds" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Threesome", + "year": 1994, + "cast": [ + "Lara Flynn Boyle", + "Stephen Baldwin", + "Josh Charles" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Thumbelina", + "year": 1994, + "cast": [], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Time Chasers", + "year": 1994, + "cast": [ + "Matthew Burch" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "A Time to Heal", + "year": 1994, + "cast": [ + "Nicollette Sheridan", + "Gary Cole" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Timecop", + "year": 1994, + "cast": [ + "Jean-Claude Van Damme", + "Mia Sara", + "Ron Silver" + ], + "genres": [ + "Action", + "Science Fiction" + ] + }, + { + "title": "Tom & Viv", + "year": 1994, + "cast": [ + "Willem Dafoe", + "Miranda Richardson", + "Rosemary Harris" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Trapped in Paradise", + "year": 1994, + "cast": [ + "Nicolas Cage", + "Jon Lovitz", + "Dana Carvey" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Trial by Jury", + "year": 1994, + "cast": [ + "Joanne Whalley-Kilmer", + "Armand Assante", + "Gabriel Byrne", + "William Hurt" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "A Troll in Central Park", + "year": 1994, + "cast": [ + "voices of", + "Cloris Leachman", + "Dom DeLuise" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Troublemakers", + "year": 1994, + "cast": [ + "Terence Hill", + "Bud Spencer" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "True Lies", + "year": 1994, + "cast": [ + "Arnold Schwarzenegger", + "Jamie Lee Curtis", + "Tom Arnold", + "Charlton Heston", + "Bill Paxton", + "Tia Carrere", + "Art Malik" + ], + "genres": [ + "Action", + "Comedy" + ] + }, + { + "title": "Undefeatable", + "year": 1994, + "cast": [ + "Cynthia Rothrock" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Vanya on 42nd Street", + "year": 1994, + "cast": [ + "Julianne Moore", + "George Gaynes" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Visual Bible: Acts", + "year": 1994, + "cast": [], + "genres": [] + }, + { + "title": "Wagons East!", + "year": 1994, + "cast": [ + "John Candy", + "Richard Lewis", + "John C. McGinley", + "Ellen Greene" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The War", + "year": 1994, + "cast": [ + "Kevin Costner", + "Elijah Wood", + "Christine Baranski" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Wes Craven's New Nightmare", + "year": 1994, + "cast": [ + "Robert Englund", + "Heather Langenkamp" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "What Happened Was", + "year": 1994, + "cast": [ + "Tom Noonan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "When a Man Loves a Woman", + "year": 1994, + "cast": [ + "Andy García", + "Meg Ryan", + "Tina Majorino", + "Mae Whitman", + "Ellen Burstyn", + "Lauren Tom" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "White Fang 2: Myth of the White Wolf", + "year": 1994, + "cast": [ + "Scott Wolf" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Whore II", + "year": 1994, + "cast": [], + "genres": [ + "Documentary", + "Drama" + ] + }, + { + "title": "Widows' Peak", + "year": 1994, + "cast": [ + "Mia Farrow", + "Natasha Richardson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "With Honors", + "year": 1994, + "cast": [ + "Brendan Fraser", + "Joe Pesci", + "Moira Kelly", + "Patrick Dempsey", + "Josh Hamilton", + "Gore Vidal" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Without Warning", + "year": 1994, + "cast": [ + "Jane Kaczmarek" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Witness to the Execution", + "year": 1994, + "cast": [ + "Tim Daly", + "Sean Young" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Wolf", + "year": 1994, + "cast": [ + "Jack Nicholson", + "Michelle Pfeiffer", + "James Spader", + "Kate Nelligan", + "Christopher Plummer" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "World and Time Enough", + "year": 1994, + "cast": [], + "genres": [ + "Drama" + ] + }, + { + "title": "Wyatt Earp", + "year": 1994, + "cast": [ + "Kevin Costner", + "Gene Hackman", + "Dennis Quaid", + "Isabella Rossellini", + "Michael Madsen", + "Mark Harmon", + "Mare Winningham", + "JoBeth Williams", + "Tom Sizemore" + ], + "genres": [ + "Western", + "Biography" + ] + }, + { + "title": "The Yearling", + "year": 1994, + "cast": [ + "Peter Strauss", + "Jean Smart" + ], + "genres": [ + "Family", + "Drama" + ] + }, + { + "title": "You So Crazy", + "year": 1994, + "cast": [ + "Martin Lawrence" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "3 Ninjas Knuckle Up", + "year": 1995, + "cast": [ + "Victor Wong", + "Charles Napier", + "Michael Treanor", + "Max Elliott Slade" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Above Suspicion", + "year": 1995, + "cast": [ + "Christopher Reeve", + "Kim Cattrall", + "Joe Mantegna" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Ace Ventura: When Nature Calls", + "year": 1995, + "cast": [ + "Jim Carrey", + "Ian McNeice", + "Sophie Okonedo", + "Bob Gunton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Addiction", + "year": 1995, + "cast": [ + "Lili Taylor", + "Christopher Walken", + "Annabella Sciorra" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Amanda and the Alien", + "year": 1995, + "cast": [ + "John Diehl", + "Michael Dorn" + ], + "genres": [ + "Science Fiction", + "Comedy" + ] + }, + { + "title": "The Amazing Panda Adventure", + "year": 1995, + "cast": [ + "Stephen Lang", + "Ryan Slater", + "Yi Ding" + ], + "genres": [ + "Family" + ] + }, + { + "title": "The American President", + "year": 1995, + "cast": [ + "Michael Douglas", + "Annette Bening", + "Martin Sheen", + "Michael J. Fox", + "Samantha Mathis", + "Richard Dreyfuss" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Angela", + "year": 1995, + "cast": [ + "Miranda Stuart Rhyne" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Angels and Insects", + "year": 1995, + "cast": [ + "Mark Rylance", + "Patsy Kensit", + "Kristin Scott Thomas" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Angus", + "year": 1995, + "cast": [ + "Charlie Talbert", + "George C. Scott", + "Kathy Bates" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Apollo 13", + "year": 1995, + "cast": [ + "Tom Hanks", + "Kevin Bacon", + "Bill Paxton", + "Gary Sinise", + "Ed Harris", + "Kathleen Quinlan" + ], + "genres": [ + "Drama", + "Biography" + ] + }, + { + "title": "Assassins", + "year": 1995, + "cast": [ + "Sylvester Stallone", + "Antonio Banderas", + "Julianne Moore" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Attack of the 60 Foot Centerfold", + "year": 1995, + "cast": [ + "J. J. North", + "Ted Monte", + "Tammy Parks" + ], + "genres": [ + "Science Fiction", + "Comedy" + ] + }, + { + "title": "Aurora: Operation Intercept", + "year": 1995, + "cast": [ + "Bruce Payne", + "Lance Henriksen" + ], + "genres": [ + "Spy", + "Thriller" + ] + }, + { + "title": "Babe", + "year": 1995, + "cast": [ + "James Cromwell", + "Christine Cavanaugh", + "Hugo Weaving" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "The Baby-Sitters Club", + "year": 1995, + "cast": [ + "Schuyler Fisk", + "Bre Blair", + "Rachael Leigh Cook" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Bad Boys", + "year": 1995, + "cast": [ + "Martin Lawrence", + "Will Smith", + "Téa Leoni", + "Tcheky Karyo", + "Theresa Randle", + "Joe Pantoliano" + ], + "genres": [ + "Action", + "Comedy" + ] + }, + { + "title": "Bad Company", + "year": 1995, + "cast": [ + "Ellen Barkin", + "Laurence Fishburne", + "Frank Langella" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "Balto", + "year": 1995, + "cast": [ + "Voices of", + "Kevin Bacon", + "Bob Hoskins", + "Bridget Fonda", + "Phil Collins" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Bang", + "year": 1995, + "cast": [ + "Darling Narita", + "Peter Greene" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Basketball Diaries", + "year": 1995, + "cast": [ + "Leonardo DiCaprio", + "Lorraine Bracco" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Batman Forever", + "year": 1995, + "cast": [ + "Val Kilmer", + "Tommy Lee Jones", + "Jim Carrey", + "Nicole Kidman", + "Chris O'Donnell", + "Drew Barrymore", + "Debi Mazar" + ], + "genres": [ + "Superhero" + ] + }, + { + "title": "Baywatch the Movie: Forbidden Paradise", + "year": 1995, + "cast": [ + "David Hasselhoff", + "Pamela Anderson", + "Parker Stevenson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Before Sunrise", + "year": 1995, + "cast": [ + "Ethan Hawke", + "Julie Delpy" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Beyond Rangoon", + "year": 1995, + "cast": [ + "Patricia Arquette", + "Frances McDormand", + "Johnny Cheah", + "Adelle Lutz" + ], + "genres": [ + "Biography", + "Drama" + ] + }, + { + "title": "The Big Green", + "year": 1995, + "cast": [ + "Steve Guttenberg", + "Olivia d'Abo", + "Bug Hall" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Billy Madison", + "year": 1995, + "cast": [ + "Adam Sandler", + "Bridgette Wilson", + "Darren McGavin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Black Scorpion", + "year": 1995, + "cast": [ + "Joan Severance", + "Bruce Abbott" + ], + "genres": [ + "Superhero" + ] + }, + { + "title": "Bloodfist VI: Ground Zero", + "year": 1995, + "cast": [ + "Don Wilson", + "Marcus Aurelius" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Bloodfist VII: Manhunt", + "year": 1995, + "cast": [ + "Don Wilson", + "Jillian McWhirter" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Blue in the Face", + "year": 1995, + "cast": [ + "Harvey Keitel", + "Madonna", + "Giancarlo Esposito", + "Roseanne Barr" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Born to Be Wild", + "year": 1995, + "cast": [ + "Wil Horneff", + "Helen Shaver", + "John C. McGinley" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Boys Life", + "year": 1995, + "cast": [ + "Robert Lee King", + "Raoul O'Connell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Boys on the Side", + "year": 1995, + "cast": [ + "Whoopi Goldberg", + "Mary-Louise Parker", + "Drew Barrymore", + "Matthew McConaughey", + "James Remar" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Brady Bunch Movie", + "year": 1995, + "cast": [ + "Shelley Long", + "Gary Cole", + "Christine Taylor" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Braveheart", + "year": 1995, + "cast": [ + "Mel Gibson", + "Sophie Marceau", + "Catherine McCormack", + "Patrick McGoohan" + ], + "genres": [ + "Drama", + "Biography" + ] + }, + { + "title": "The Bridges of Madison County", + "year": 1995, + "cast": [ + "Clint Eastwood", + "Meryl Streep" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Brothers McMullen", + "year": 1995, + "cast": [ + "Edward Burns", + "Mike McGlone" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "A Bucket of Blood", + "year": 1995, + "cast": [ + "Anthony Michael Hall", + "Paul Bartel" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Bushwhacked", + "year": 1995, + "cast": [ + "Daniel Stern", + "Brad Sullivan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Bye Bye Love", + "year": 1995, + "cast": [ + "Matthew Modine", + "Randy Quaid", + "Paul Reiser", + "Janeane Garofalo", + "Amy Brenneman", + "Lindsay Crouse", + "Rob Reiner" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Canadian Bacon", + "year": 1995, + "cast": [ + "Alan Alda", + "John Candy", + "Bill Nunn", + "Rhea Perlman", + "Rip Torn" + ], + "genres": [ + "Comedy", + "Satire" + ] + }, + { + "title": "Candyman 2: Farewell to the Flesh", + "year": 1995, + "cast": [ + "Tony Todd", + "Kelly Rowan" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Carnosaur 2", + "year": 1995, + "cast": [ + "John Savage", + "Cliff De Young" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Casino", + "year": 1995, + "cast": [ + "Robert De Niro", + "Sharon Stone", + "Joe Pesci", + "James Woods", + "Kevin Pollak", + "Alan King", + "Don Rickles" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Casper", + "year": 1995, + "cast": [ + "Christina Ricci", + "Bill Pullman", + "Cathy Moriarty", + "Eric Idle" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Castle Freak", + "year": 1995, + "cast": [ + "Jeffrey Combs", + "Barbara Crampton" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Catherine the Great", + "year": 1995, + "cast": [ + "Catherine Zeta-Jones", + "Jeanne Moreau" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "The Celluloid Closet", + "year": 1995, + "cast": [ + "Lily Tomlin", + "(narrator)" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Chicken from Outer Space", + "year": 1995, + "cast": [ + "(as voices)" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Children of the Corn III: Urban Harvest", + "year": 1995, + "cast": [ + "Daniel Cerny", + "Ron Melendez" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Citizen X", + "year": 1995, + "cast": [ + "Stephen Rea", + "Donald Sutherland", + "Max von Sydow", + "Jeffrey DeMunn" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Clockers", + "year": 1995, + "cast": [ + "Harvey Keitel", + "John Turturro", + "Delroy Lindo", + "Mekhi Phifer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Clueless", + "year": 1995, + "cast": [ + "Alicia Silverstone", + "Paul Rudd", + "Stacey Dash", + "Brittany Murphy", + "Dan Hedaya", + "Jeremy Sisto", + "Elisa Donovan", + "Breckin Meyer", + "Wallace Shawn" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Coldblooded", + "year": 1995, + "cast": [ + "Jason Priestley", + "Peter Riegert", + "Robert Loggia" + ], + "genres": [ + "Comedy", + "Thriller" + ] + }, + { + "title": "The Computer Wore Tennis Shoes", + "year": 1995, + "cast": [ + "Kirk Cameron" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Congo", + "year": 1995, + "cast": [ + "Dylan Walsh", + "Laura Linney", + "Ernie Hudson", + "Tim Curry", + "Grant Heslov", + "Joe Don Baker" + ], + "genres": [ + "Science Fiction", + "Adventure" + ] + }, + { + "title": "Copycat", + "year": 1995, + "cast": [ + "Sigourney Weaver", + "Holly Hunter", + "Dermot Mulroney", + "William McNamara", + "Will Patton", + "Harry Connick, Jr." + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Cover Me", + "year": 1995, + "cast": [ + "Rick Rossovich", + "Courtney Taylor", + "Paul Sorvino", + "Stephen Nichols" + ], + "genres": [ + "Erotic", + "Thriller" + ] + }, + { + "title": "Crimson Tide", + "year": 1995, + "cast": [ + "Denzel Washington", + "Gene Hackman", + "James Gandolfini" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Crossing Guard", + "year": 1995, + "cast": [ + "Jack Nicholson", + "Anjelica Huston", + "David Morse" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Cry, the Beloved Country", + "year": 1995, + "cast": [ + "James Earl Jones", + "Richard Harris", + "Charles S. Dutton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Cure", + "year": 1995, + "cast": [ + "Brad Renfro", + "Joseph Mazzello", + "Diana Scarwid", + "Annabella Sciorra" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Cutthroat Island", + "year": 1995, + "cast": [ + "Geena Davis", + "Matthew Modine", + "Frank Langella" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Cyborg Cop II", + "year": 1995, + "cast": [ + "David Bradley", + "Morgan Hunter" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Dangerous Minds", + "year": 1995, + "cast": [ + "Michelle Pfeiffer", + "George Dzundza" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Dead Man", + "year": 1995, + "cast": [ + "Johnny Depp", + "Gary Farmer" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Dead Man Walking", + "year": 1995, + "cast": [ + "Susan Sarandon", + "Sean Penn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dead Presidents", + "year": 1995, + "cast": [ + "Larenz Tate", + "Keith David", + "Chris Tucker" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Demon Knight", + "year": 1995, + "cast": [ + "William Sadler", + "Billy Zane", + "Jada Pinkett Smith" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Desperado", + "year": 1995, + "cast": [ + "Antonio Banderas", + "Salma Hayek" + ], + "genres": [ + "Comedy", + "Action" + ] + }, + { + "title": "Devil in a Blue Dress", + "year": 1995, + "cast": [ + "Denzel Washington", + "Tom Sizemore", + "Don Cheadle", + "Jennifer Beals", + "Terry Kinney", + "Albert Hall" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Die Hard with a Vengeance", + "year": 1995, + "cast": [ + "Bruce Willis", + "Jeremy Irons", + "Samuel L. Jackson" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Dolores Claiborne", + "year": 1995, + "cast": [ + "Kathy Bates", + "Jennifer Jason Leigh", + "David Strathairn", + "Christopher Plummer", + "John C. Reilly" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Don Juan DeMarco", + "year": 1995, + "cast": [ + "Marlon Brando", + "Johnny Depp", + "Faye Dunaway" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Don't Hang Up, Tough Guy!", + "year": 1995, + "cast": [ + "Jerky Boys" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Doom Generation", + "year": 1995, + "cast": [ + "James Duval" + ], + "genres": [] + }, + { + "title": "Dr. Jekyll and Ms. Hyde", + "year": 1995, + "cast": [ + "Tim Daly", + "Sean Young" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Dracula: Dead and Loving It", + "year": 1995, + "cast": [ + "Leslie Nielsen", + "Peter MacNicol", + "Steven Weber", + "Amy Yasbeck" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Dream a Little Dream 2", + "year": 1995, + "cast": [ + "Corey Feldman", + "Corey Haim" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Dying Rooms", + "year": 1995, + "cast": [ + "(in Chinese orphanages)" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Ebbie", + "year": 1995, + "cast": [ + "Susan Lucci", + "Jeffrey DeMunn", + "Ron Lea", + "Taran Noah Smith" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Empire Records", + "year": 1995, + "cast": [ + "Anthony LaPaglia", + "Maxwell Caulfield", + "Debi Mazar", + "Rory Cochrane", + "Robin Tunney", + "Ethan Embry", + "Johnny Whitworth", + "Renée Zellweger", + "Liv Tyler" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Escape to Witch Mountain", + "year": 1995, + "cast": [ + "Robert Vaughn", + "Elisabeth Moss" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Evolver", + "year": 1995, + "cast": [ + "Ethan Embry" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Eyes Beyond Seeing", + "year": 1995, + "cast": [ + "Keith Hamilton Cobb" + ], + "genres": [] + }, + { + "title": "Faces of Death 5", + "year": 1995, + "cast": [], + "genres": [ + "Horror" + ] + }, + { + "title": "Fair Game", + "year": 1995, + "cast": [ + "William Baldwin", + "Cindy Crawford" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Fall Time", + "year": 1995, + "cast": [ + "Mickey Rourke", + "David Arquette", + "Stephen Baldwin" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Far from Home: The Adventures of Yellow Dog", + "year": 1995, + "cast": [ + "Jesse Bradford", + "Mimi Rogers", + "Bruce Davison" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Father of the Bride Part II", + "year": 1995, + "cast": [ + "Steve Martin", + "Diane Keaton", + "Martin Short", + "Kimberly Williams-Paisley", + "George Newbern", + "Kieran Culkin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "First Knight", + "year": 1995, + "cast": [ + "Sean Connery", + "Richard Gere", + "Julia Ormond" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Flirt", + "year": 1995, + "cast": [ + "Parker Posey" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Fluke", + "year": 1995, + "cast": [ + "Nancy Travis", + "Eric Stoltz", + "Matthew Modine" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Forget Paris", + "year": 1995, + "cast": [ + "Billy Crystal", + "Debra Winger", + "Joe Mantegna" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Four Rooms", + "year": 1995, + "cast": [ + "Tim Roth", + "Antonio Banderas", + "Madonna", + "Jennifer Beals", + "Valeria Golino", + "Marisa Tomei", + "Lili Taylor", + "Ione Skye", + "Tamlyn Tomita" + ], + "genres": [] + }, + { + "title": "Free Willy 2: The Adventure Home", + "year": 1995, + "cast": [ + "Francis Capra", + "Michael Madsen" + ], + "genres": [ + "Adventure", + "Family" + ] + }, + { + "title": "French Kiss", + "year": 1995, + "cast": [ + "Meg Ryan", + "Kevin Kline", + "Timothy Hutton" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Friday", + "year": 1995, + "cast": [ + "Ice Cube", + "Chris Tucker" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Friendship's Field", + "year": 1995, + "cast": [], + "genres": [] + }, + { + "title": "Frisk", + "year": 1995, + "cast": [ + "Parker Posey" + ], + "genres": [] + }, + { + "title": "From the Journals of Jean Seberg", + "year": 1995, + "cast": [], + "genres": [ + "Documentary", + "Drama" + ] + }, + { + "title": "From the Mixed-Up Files of Mrs. Basil E. Frankweiler", + "year": 1995, + "cast": [ + "Lauren Bacall", + "Miriam Flynn", + "M. Emmet Walsh" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Full Body Massage", + "year": 1995, + "cast": [ + "Mimi Rogers", + "Bryan Brown" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Funny Bones", + "year": 1995, + "cast": [ + "Oliver Platt", + "Jerry Lewis", + "Lee Evans", + "Leslie Caron" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Gate of Heavenly Peace", + "year": 1995, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "Georgia", + "year": 1995, + "cast": [ + "Jennifer Jason Leigh", + "Mare Winningham" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Get Shorty", + "year": 1995, + "cast": [ + "John Travolta", + "Gene Hackman", + "Rene Russo", + "Danny DeVito", + "James Gandolfini", + "Delroy Lindo", + "David Paymer", + "Dennis Farina" + ], + "genres": [ + "Crime", + "Comedy" + ] + }, + { + "title": "The Glass Shield", + "year": 1995, + "cast": [ + "Ice Cube", + "Lori Petty" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Go Now", + "year": 1995, + "cast": [ + "Robert Carlyle" + ], + "genres": [] + }, + { + "title": "Gold Diggers: The Secret of Bear Mountain", + "year": 1995, + "cast": [ + "Christina Ricci", + "Anna Chlumsky" + ], + "genres": [ + "Family" + ] + }, + { + "title": "A Goofy Movie", + "year": 1995, + "cast": [ + "voices of", + "Jason Marsden", + "Pauly Shore" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Gordy", + "year": 1995, + "cast": [ + "Doug Stone" + ], + "genres": [ + "Family" + ] + }, + { + "title": "The Great Mom Swap", + "year": 1995, + "cast": [ + "Shelley Fabares", + "Valerie Harper", + "Mary Kate Schellhardt", + "Hillary Tuck" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Grumpier Old Men", + "year": 1995, + "cast": [ + "Jack Lemmon", + "Walter Matthau", + "Ann-Margret", + "Sophia Loren" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Gumby: The Movie", + "year": 1995, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "Hackers", + "year": 1995, + "cast": [ + "Jonny Lee Miller", + "Angelina Jolie", + "Lorraine Bracco" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Halloween: The Curse of Michael Myers", + "year": 1995, + "cast": [ + "Donald Pleasence", + "Paul Rudd" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Harrison Bergeron", + "year": 1995, + "cast": [ + "Sean Astin", + "Christopher Plummer", + "Eugene Levy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Haunted", + "year": 1995, + "cast": [ + "Aidan Quinn", + "Kate Beckinsale", + "John Gielgud" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Heat", + "year": 1995, + "cast": [ + "Al Pacino", + "Robert De Niro", + "Val Kilmer", + "Ashley Judd", + "Amy Brenneman", + "Tom Sizemore", + "Jon Voight", + "Wes Studi", + "Ted Levine", + "Natalie Portman", + "Dennis Haysbert", + "Hank Azaria" + ], + "genres": [ + "Crime", + "Drama", + "Action" + ] + }, + { + "title": "Heavy", + "year": 1995, + "cast": [ + "Liv Tyler", + "Pruitt Taylor Vince", + "Shelley Winters" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Heavyweights", + "year": 1995, + "cast": [ + "Ben Stiller" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Here Come The Munsters", + "year": 1995, + "cast": [ + "Edward Herrmann", + "Veronica Hamel" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hideaway", + "year": 1995, + "cast": [ + "Jeff Goldblum", + "Christine Lahti", + "Alicia Silverstone" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "High on Crack Street", + "year": 1995, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "Higher Learning", + "year": 1995, + "cast": [ + "Omar Epps", + "Kristy Swanson", + "Ice Cube", + "Jennifer Connelly", + "Michael Rapaport", + "Laurence Fishburne" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Hills Have Eyes III", + "year": 1995, + "cast": [ + "Lance Henriksen", + "Natasha Gregson Wagner", + "Giovanni Ribisi" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Home Movies", + "year": 1995, + "cast": [], + "genres": [] + }, + { + "title": "Home for the Holidays", + "year": 1995, + "cast": [ + "Holly Hunter", + "Robert Downey, Jr.", + "Anne Bancroft", + "Charles Durning", + "Steve Guttenberg", + "Dylan McDermott", + "Cynthia Stevenson", + "Claire Danes" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Houseguest", + "year": 1995, + "cast": [ + "Sinbad", + "Phil Hartman" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "How to Make an American Quilt", + "year": 1995, + "cast": [ + "Winona Ryder", + "Anne Bancroft", + "Ellen Burstyn", + "Kate Nelligan", + "Alfre Woodard", + "Mykelti Williamson", + "Jared Leto" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Howling: New Moon Rising", + "year": 1995, + "cast": [], + "genres": [ + "Horror" + ] + }, + { + "title": "The Hunted", + "year": 1995, + "cast": [ + "Christopher Lambert", + "John Lone", + "Joan Chen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Ice Cream Man", + "year": 1995, + "cast": [ + "Clint Howard", + "Olivia Hussey" + ], + "genres": [ + "Slasher" + ] + }, + { + "title": "The Immortals", + "year": 1995, + "cast": [ + "Eric Roberts", + "Tia Carrere", + "Tony Curtis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "In the Mouth of Madness", + "year": 1995, + "cast": [ + "Sam Neill", + "David Warner", + "Jürgen Prochnow", + "Charlton Heston" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Incredibly True Adventure of Two Girls in Love", + "year": 1995, + "cast": [ + "Laurel Holloman", + "Nicole Ari Parker" + ], + "genres": [] + }, + { + "title": "The Indian in the Cupboard", + "year": 1995, + "cast": [ + "Hal Scardino", + "Litefoot", + "Lindsay Crouse", + "Richard Jenkins", + "Rishi Bhat", + "Steve Coogan", + "David Keith" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Indictment: The McMartin Trial", + "year": 1995, + "cast": [ + "James Woods", + "Mercedes Ruehl", + "Henry Thomas", + "Lolita Davidovich", + "Shirley Knight", + "Sada Thompson" + ], + "genres": [ + "Drama", + "Biography" + ] + }, + { + "title": "The Infiltrator", + "year": 1995, + "cast": [ + "Oliver Platt", + "Arliss Howard" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "It Takes Two", + "year": 1995, + "cast": [ + "Mary-Kate Olsen", + "Ashley Olsen", + "Kirstie Alley", + "Steve Guttenberg" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Jack-O", + "year": 1995, + "cast": [], + "genres": [ + "Horror" + ] + }, + { + "title": "Jade", + "year": 1995, + "cast": [ + "David Caruso", + "Chazz Palminteri", + "Linda Fiorentino", + "Angie Everhart", + "Michael Biehn", + "Richard Crenna" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Jefferson in Paris", + "year": 1995, + "cast": [ + "Nick Nolte", + "Thandie Newton" + ], + "genres": [ + "Drama", + "Biography" + ] + }, + { + "title": "Jeffrey", + "year": 1995, + "cast": [ + "Steven Weber", + "Patrick Stewart" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Jerky Boys: The Movie", + "year": 1995, + "cast": [ + "The Jerky Boys", + "Alan Arkin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Johnny Mnemonic", + "year": 1995, + "cast": [ + "Keanu Reeves", + "Dolph Lundgren", + "Dina Meyer", + "Ice-T" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Joseph", + "year": 1995, + "cast": [], + "genres": [ + "Drama" + ] + }, + { + "title": "Josh Kirby... Time Warrior!", + "year": 1995, + "cast": [ + "Corbin Allred" + ], + "genres": [ + "Family", + "Science Fiction" + ] + }, + { + "title": "Judge Dredd", + "year": 1995, + "cast": [ + "Sylvester Stallone", + "Armand Assante", + "Diane Lane", + "Rob Schneider", + "Max von Sydow", + "Jürgen Prochnow", + "Joan Chen" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Jumanji", + "year": 1995, + "cast": [ + "Robin Williams", + "Bonnie Hunt", + "Kirsten Dunst", + "Bradley Pierce", + "Jonathan Hyde", + "David Alan Grier", + "Bebe Neuwirth" + ], + "genres": [ + "Family", + "Fantasy" + ] + }, + { + "title": "Jury Duty", + "year": 1995, + "cast": [ + "Pauly Shore", + "Tia Carrere", + "Abe Vigoda" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Just Cause", + "year": 1995, + "cast": [ + "Sean Connery", + "Laurence Fishburne", + "Kate Capshaw", + "Blair Underwood" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Kicking and Screaming", + "year": 1995, + "cast": [ + "Josh Hamilton", + "Olivia d'Abo" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Kid in King Arthur's Court", + "year": 1995, + "cast": [ + "Thomas Ian Nicholas", + "Joss Ackland" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Kidnapped", + "year": 1995, + "cast": [ + "Armand Assante" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Kids", + "year": 1995, + "cast": [ + "Chloë Sevigny", + "Rosario Dawson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Kiss of Death", + "year": 1995, + "cast": [ + "David Caruso", + "Nicolas Cage", + "Samuel L. Jackson", + "Helen Hunt", + "Kathryn Erbe", + "Michael Rapaport", + "Ving Rhames", + "Anne Meara", + "Stanley Tucci" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Land Before Time III: The Time of the Great Giving", + "year": 1995, + "cast": [ + "voices of Scott McAfee", + "Candace Hutson" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "The Last Supper", + "year": 1995, + "cast": [ + "Cameron Diaz", + "Ron Eldard", + "Annabeth Gish", + "Courtney B. Vance" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Last of the Dogmen", + "year": 1995, + "cast": [ + "Tom Berenger", + "Barbara Hershey" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Leaving Las Vegas", + "year": 1995, + "cast": [ + "Nicolas Cage", + "Elisabeth Shue" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Let It Be Me", + "year": 1995, + "cast": [ + "Campbell Scott", + "Jennifer Beals" + ], + "genres": [] + }, + { + "title": "Life 101", + "year": 1995, + "cast": [ + "Corey Haim", + "Ami Dolenz" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Little Princess", + "year": 1995, + "cast": [ + "Liesel Matthews", + "Eleanor Bron" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Live Nude Girls", + "year": 1995, + "cast": [ + "Kim Cattrall", + "Dana Delany", + "Cynthia Stevenson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Living in Oblivion", + "year": 1995, + "cast": [ + "Catherine Keener", + "Steve Buscemi" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Living Sea", + "year": 1995, + "cast": [ + "narrated by", + "Meryl Streep" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Liz: The Elizabeth Taylor Story", + "year": 1995, + "cast": [ + "Sherilyn Fenn", + "Angus Macfadyen" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Lord of Illusions", + "year": 1995, + "cast": [ + "Scott Bakula", + "Famke Janssen" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Losing Isaiah", + "year": 1995, + "cast": [ + "Jessica Lange", + "Halle Berry" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Mad Love", + "year": 1995, + "cast": [ + "Chris O'Donnell", + "Drew Barrymore" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Maddening", + "year": 1995, + "cast": [ + "Angie Dickinson", + "Burt Reynolds", + "Mia Sara" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Magic in the Water", + "year": 1995, + "cast": [ + "Mark Harmon" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Magic Island (film)", + "year": 1995, + "cast": [ + "Zachery Ty Bryan", + "Andrew Divoff", + "Edward Kerr", + "Lee Armstrong", + "French Stewart", + "Jessie-Ann Friend", + "Oscar Dillon", + "Abraham Benrubi", + "Sean O'Kane", + "Schae Harrison", + "Ja'net Dubois" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Major Payne", + "year": 1995, + "cast": [ + "Damon Wayans", + "Karyn Parsons" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mallrats", + "year": 1995, + "cast": [ + "Shannen Doherty", + "Jeremy London", + "Jason Lee", + "Claire Forlani", + "Jason Mewes", + "Kevin Smith", + "Ben Affleck", + "Joey Lauren Adams", + "Michael Rooker" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Man of the House", + "year": 1995, + "cast": [ + "Chevy Chase", + "Farrah Fawcett", + "Jonathan Taylor Thomas" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Man of the Year", + "year": 1995, + "cast": [], + "genres": [ + "Drama" + ] + }, + { + "title": "The Mangler", + "year": 1995, + "cast": [ + "Robert Englund", + "Ted Levine" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Margaret's Museum", + "year": 1995, + "cast": [ + "Helena Bonham Carter", + "Kate Nelligan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Message to Love", + "year": 1995, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "Miami Rhapsody", + "year": 1995, + "cast": [ + "Sarah Jessica Parker", + "Antonio Banderas", + "Mia Farrow", + "Gil Bellows", + "Kevin Pollak" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Midwinter's Tale", + "year": 1995, + "cast": [ + "Michael Maloney" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Mighty Aphrodite", + "year": 1995, + "cast": [ + "Woody Allen", + "Mira Sorvino", + "Helena Bonham Carter", + "Michael Rapaport", + "F. Murray Abraham" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mighty Morphin Power Rangers: The Movie", + "year": 1995, + "cast": [ + "Karan Ashley", + "Johnny Yong Bosch", + "Steve Cardenas", + "Jason David Frank", + "Amy Jo Johnson", + "David Yost", + "Jason Narvy", + "Paul Schrier" + ], + "genres": [ + "Science Fiction", + "Family" + ] + }, + { + "title": "Money Train", + "year": 1995, + "cast": [ + "Wesley Snipes", + "Woody Harrelson", + "Jennifer Lopez", + "Robert Blake", + "Chris Cooper" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Monster Mash", + "year": 1995, + "cast": [ + "Bobby Pickett" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Moonlight and Valentino", + "year": 1995, + "cast": [ + "Elizabeth Perkins", + "Whoopi Goldberg", + "Gwyneth Paltrow", + "Kathleen Turner", + "Jon Bon Jovi" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Mortal Kombat", + "year": 1995, + "cast": [ + "Robin Shou", + "Linden Ashby", + "Bridgette Wilson", + "Christopher Lambert", + "Cary-Hiroyuki Tagawa", + "Talisa Soto", + "Trevor Goddard" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Mortal Kombat: The Journey Begins", + "year": 1995, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "Mr. Holland's Opus", + "year": 1995, + "cast": [ + "Richard Dreyfuss", + "Glenne Headly", + "Jay Thomas", + "Olympia Dukakis", + "Terrence Howard", + "Alicia Witt" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Multi-Facial", + "year": 1995, + "cast": [ + "Vin Diesel" + ], + "genres": [] + }, + { + "title": "Murder in the First", + "year": 1995, + "cast": [ + "Kevin Bacon", + "Christian Slater", + "Gary Oldman", + "Embeth Davidtz" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "My Antonia", + "year": 1995, + "cast": [ + "Jason Robards", + "Eva Marie Saint", + "Neil Patrick Harris" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "My Family", + "year": 1995, + "cast": [ + "Jimmy Smits", + "Esai Morales", + "Edward James Olmos" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "National Lampoon's Senior Trip", + "year": 1995, + "cast": [ + "Matt Frewer", + "Tara Strong" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Nature of the Beast", + "year": 1995, + "cast": [ + "Eric Roberts", + "Lance Henriksen" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Net", + "year": 1995, + "cast": [ + "Sandra Bullock", + "Jeremy Northam", + "Dennis Miller" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "Never Talk to Strangers", + "year": 1995, + "cast": [ + "Antonio Banderas", + "Rebecca De Mornay", + "Dennis Miller", + "Harry Dean Stanton", + "Len Cariou" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "New Jersey Drive", + "year": 1995, + "cast": [ + "Sharron Corley", + "Gabriel Casseus" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Nick of Time", + "year": 1995, + "cast": [ + "Johnny Depp", + "Christopher Walken", + "Charles S. Dutton", + "Roma Maffia", + "Peter Strauss", + "Marsha Mason" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "Night Watch", + "year": 1995, + "cast": [ + "Pierce Brosnan", + "William Devane", + "Alexandra Paul" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Night and the Moment", + "year": 1995, + "cast": [ + "Willem Dafoe", + "Lena Olin", + "Miranda Richardson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Nine Months", + "year": 1995, + "cast": [ + "Hugh Grant", + "Julianne Moore", + "Jeff Goldblum", + "Robin Williams", + "Tom Arnold", + "Joan Cusack" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Nixon", + "year": 1995, + "cast": [ + "Anthony Hopkins", + "Joan Allen", + "James Woods", + "J. T. Walsh", + "David Hyde Pierce", + "Ed Harris", + "Paul Sorvino", + "Mary Steenburgen", + "Bob Hoskins", + "Madeline Kahn" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "No Exit", + "year": 1995, + "cast": [ + "Jeff Wincott" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Nona Tapes", + "year": 1995, + "cast": [ + "Alice in Chains" + ], + "genres": [ + "Satire" + ] + }, + { + "title": "Now and Then", + "year": 1995, + "cast": [ + "Demi Moore", + "Melanie Griffith", + "Rosie O'Donnell", + "Rita Wilson", + "Christina Ricci", + "Thora Birch", + "Gaby Hoffmann", + "Ashleigh Blair Sterling" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Operation Dumbo Drop", + "year": 1995, + "cast": [ + "Ray Liotta", + "Danny Glover", + "Denis Leary" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Othello", + "year": 1995, + "cast": [ + "Laurence Fishburne", + "Kenneth Branagh" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Other Woman", + "year": 1995, + "cast": [ + "Jill Eikenberry", + "Lloyd Bridges" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Outbreak", + "year": 1995, + "cast": [ + "Dustin Hoffman", + "Rene Russo", + "Morgan Freeman", + "Donald Sutherland", + "Cuba Gooding Jr.", + "Kevin Spacey", + "Patrick Dempsey" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Palookaville", + "year": 1995, + "cast": [ + "William Forsythe", + "Frances McDormand" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Panther", + "year": 1995, + "cast": [ + "Kadeem Hardison", + "Courtney B. Vance" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Parallel Sons", + "year": 1995, + "cast": [ + "Gabriel Mann" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Party Girl", + "year": 1995, + "cast": [ + "Parker Posey", + "Liev Schreiber" + ], + "genres": [] + }, + { + "title": "The Passion of Darkly Noon", + "year": 1995, + "cast": [ + "Brendan Fraser", + "Viggo Mortensen", + "Ashley Judd" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Payback", + "year": 1995, + "cast": [ + "C. Thomas Howell", + "Joan Severance", + "Marshall Bell", + "R. G. Armstrong" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Pebble and the Penguin", + "year": 1995, + "cast": [ + "voices of", + "Martin Short", + "Tim Curry" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "The Perez Family", + "year": 1995, + "cast": [ + "Marisa Tomei", + "Anjelica Huston", + "Alfred Molina" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Personal Journey with Martin Scorsese Through American Movies", + "year": 1995, + "cast": [ + "Martin Scorsese" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Persuasion", + "year": 1995, + "cast": [ + "Amanda Root", + "Ciarán Hinds" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Picture Bride", + "year": 1995, + "cast": [], + "genres": [] + }, + { + "title": "Piranha", + "year": 1995, + "cast": [ + "William Katt", + "Alexandra Paul" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Pocahontas", + "year": 1995, + "cast": [ + "Voices of", + "Irene Bedard", + "Mel Gibson", + "Christian Bale", + "Russell Means" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Powder", + "year": 1995, + "cast": [ + "Sean Patrick Flanery", + "Mary Steenburgen", + "Jeff Goldblum" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Power Within", + "year": 1995, + "cast": [ + "Karen Valentine" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Problem Child 3: Junior in Love", + "year": 1995, + "cast": [ + "William Katt", + "Gilbert Gottfried", + "Jack Warden" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Prophecy", + "year": 1995, + "cast": [ + "Christopher Walken", + "Elias Koteas", + "Virginia Madsen", + "Eric Stoltz" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "The Quick and the Dead", + "year": 1995, + "cast": [ + "Sharon Stone", + "Russell Crowe", + "Gene Hackman", + "Leonardo DiCaprio" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Rack, Shack, and Benny", + "year": 1995, + "cast": [ + "Phil Vischer", + "Mike Nawrocki" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Reckless", + "year": 1995, + "cast": [ + "Mia Farrow", + "Scott Glenn", + "Mary-Louise Parker" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Requiem", + "year": 1995, + "cast": [], + "genres": [ + "Short" + ] + }, + { + "title": "Restoration", + "year": 1995, + "cast": [ + "Robert Downey, Jr.", + "Meg Ryan", + "Sam Neill", + "Hugh Grant" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Richard III", + "year": 1995, + "cast": [ + "Ian McKellen", + "Robert Downey, Jr.", + "Maggie Smith" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Rob Roy", + "year": 1995, + "cast": [ + "Liam Neeson", + "Jessica Lange", + "Tim Roth", + "John Hurt", + "Eric Stoltz" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Roommates", + "year": 1995, + "cast": [ + "Peter Falk", + "D. B. Sweeney", + "Julianne Moore" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Runaway Brain", + "year": 1995, + "cast": [ + "Mickey Mouse" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Sabrina", + "year": 1995, + "cast": [ + "Harrison Ford", + "Julia Ormond", + "Greg Kinnear", + "Nancy Marchand", + "Lauren Holly", + "John Wood", + "Richard Crenna", + "Angie Dickinson" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Safe", + "year": 1995, + "cast": [ + "Julianne Moore" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sailor Moon SuperS movie", + "year": 1995, + "cast": [], + "genres": [ + "Fantasy" + ] + }, + { + "title": "The Scarlet Letter", + "year": 1995, + "cast": [ + "Demi Moore", + "Gary Oldman", + "Robert Duvall", + "Joan Plowright", + "Robert Prosky" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Screamers", + "year": 1995, + "cast": [ + "Peter Weller", + "Jennifer Rubin" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Sense and Sensibility", + "year": 1995, + "cast": [ + "Emma Thompson", + "Alan Rickman", + "Kate Winslet", + "Hugh Grant" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Seven", + "year": 1995, + "cast": [ + "Brad Pitt", + "Morgan Freeman", + "Kevin Spacey", + "Gwyneth Paltrow" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Set-Up", + "year": 1995, + "cast": [ + "Billy Zane", + "Mia Sara", + "James Coburn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Shock Treatment", + "year": 1995, + "cast": [ + "Matthew Schultz" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Showgirls", + "year": 1995, + "cast": [ + "Elizabeth Berkley", + "Kyle MacLachlan", + "Gina Gershon", + "Glenn Plummer", + "Robert Davi", + "Alan Rachins", + "Gina Ravera" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Skin", + "year": 1995, + "cast": [], + "genres": [ + "Short" + ] + }, + { + "title": "Slam Dunk Ernest", + "year": 1995, + "cast": [ + "Jim Varney", + "Kareem Abdul-Jabbar" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Slave of Dreams", + "year": 1995, + "cast": [ + "Adrian Pasdar", + "Sherilyn Fenn", + "Edward James Olmos" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sleepstalker", + "year": 1995, + "cast": [ + "Kathryn Morris" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Smoke", + "year": 1995, + "cast": [ + "Harvey Keitel", + "William Hurt", + "Stockard Channing", + "Forest Whitaker", + "Ashley Judd" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Soldier Boyz", + "year": 1995, + "cast": [ + "Michael Dudikoff" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Something to Talk About", + "year": 1995, + "cast": [ + "Julia Roberts", + "Dennis Quaid", + "Kyra Sedgwick", + "Robert Duvall", + "Gena Rowlands" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Species", + "year": 1995, + "cast": [ + "Ben Kingsley", + "Michael Madsen", + "Forest Whitaker", + "Alfred Molina", + "Marg Helgenberger", + "Natasha Henstridge" + ], + "genres": [ + "Science Fiction", + "Thriller" + ] + }, + { + "title": "Spin", + "year": 1995, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Spirit of Christmas", + "year": 1995, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "The Stars Fell on Henrietta", + "year": 1995, + "cast": [ + "Robert Duvall", + "Aidan Quinn", + "Brian Dennehy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Stonewall", + "year": 1995, + "cast": [ + "Guillermo Díaz" + ], + "genres": [] + }, + { + "title": "Strange Days", + "year": 1995, + "cast": [ + "Ralph Fiennes", + "Angela Bassett", + "Juliette Lewis" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Stuart Saves His Family", + "year": 1995, + "cast": [ + "Al Franken", + "Laura San Giacomo", + "Vincent D'Onofrio" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Sudden Death", + "year": 1995, + "cast": [ + "Jean-Claude Van Damme", + "Powers Boothe", + "Dorian Harewood" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Surrogate", + "year": 1995, + "cast": [ + "Alyssa Milano", + "Connie Sellecca" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Tales from the Hood", + "year": 1995, + "cast": [ + "Clarence Williams III", + "David Alan Grier" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Tall Tale", + "year": 1995, + "cast": [ + "Patrick Swayze", + "Oliver Platt", + "Scott Glenn", + "Nick Stahl" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Tank Girl", + "year": 1995, + "cast": [ + "Lori Petty", + "Malcolm McDowell", + "Ice-T", + "Naomi Watts" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Theodore Rex", + "year": 1995, + "cast": [ + "Whoopi Goldberg" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Thief and the Cobbler", + "year": 1995, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "Things to Do in Denver When You're Dead", + "year": 1995, + "cast": [ + "Andy García", + "Christopher Walken", + "Treat Williams", + "Gabrielle Anwar", + "Christopher Lloyd", + "William Forsythe", + "Jack Warden" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Three Wishes", + "year": 1995, + "cast": [ + "Patrick Swayze", + "Mary Elizabeth Mastrantonio" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "The Tie That Binds", + "year": 1995, + "cast": [ + "Daryl Hannah", + "Keith Carradine", + "Moira Kelly", + "Vincent Spano" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "To Die For", + "year": 1995, + "cast": [ + "Nicole Kidman", + "Matt Dillon", + "Joaquin Phoenix", + "Illeana Douglas" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "To Wong Foo, Thanks for Everything! Julie Newmar", + "year": 1995, + "cast": [ + "Wesley Snipes", + "Patrick Swayze", + "John Leguizamo", + "Stockard Channing", + "Chris Penn", + "Blythe Danner", + "Arliss Howard", + "Julie Newmar" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "To the Limit", + "year": 1995, + "cast": [ + "Anna Nicole Smith", + "Michael Nouri" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Tom and Huck", + "year": 1995, + "cast": [ + "Jonathan Taylor Thomas", + "Brad Renfro" + ], + "genres": [ + "Comedy", + "Family" + ] + }, + { + "title": "Tommy Boy", + "year": 1995, + "cast": [ + "Chris Farley", + "David Spade", + "Brian Dennehy", + "Bo Derek" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Top Dog", + "year": 1995, + "cast": [ + "Chuck Norris" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Toy Story", + "year": 1995, + "cast": [ + "Tim Allen", + "Tom Hanks", + "(voices)" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Trinity and Beyond", + "year": 1995, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "Truman", + "year": 1995, + "cast": [ + "Gary Sinise", + "Diana Scarwid" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Twelve Monkeys", + "year": 1995, + "cast": [ + "Bruce Willis", + "Madeleine Stowe", + "Brad Pitt" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Two Bits", + "year": 1995, + "cast": [ + "Jerry Barone", + "Mary Elizabeth Mastrantonio", + "Al Pacino" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Under Siege 2: Dark Territory", + "year": 1995, + "cast": [ + "Steven Seagal", + "Eric Bogosian", + "Katherine Heigl" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Underneath", + "year": 1995, + "cast": [ + "Peter Gallagher" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Unzipped", + "year": 1995, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Usual Suspects", + "year": 1995, + "cast": [ + "Stephen Baldwin", + "Gabriel Byrne", + "Benicio del Toro", + "Kevin Pollak", + "Kevin Spacey", + "Chazz Palminteri", + "Suzy Amis", + "Giancarlo Esposito", + "Pete Postlethwaite" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Vampire in Brooklyn", + "year": 1995, + "cast": [ + "Eddie Murphy", + "Angela Bassett" + ], + "genres": [ + "Comedy", + "Horror" + ] + }, + { + "title": "Village of the Damned", + "year": 1995, + "cast": [ + "Christopher Reeve", + "Kirstie Alley", + "Linda Kozlowski", + "Mark Hamill", + "Meredith Salenger", + "Michael Paré" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Virtuosity", + "year": 1995, + "cast": [ + "Denzel Washington", + "Russell Crowe", + "Kelly Lynch" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Waiting to Exhale", + "year": 1995, + "cast": [ + "Whitney Houston", + "Angela Bassett", + "Loretta Devine", + "Lela Rochon", + "Gregory Hines", + "Dennis Haysbert", + "Michael Beach" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Walk in the Clouds", + "year": 1995, + "cast": [ + "Keanu Reeves", + "Aitana Sanchez-Gijón", + "Anthony Quinn", + "Giancarlo Giannini" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Walking Dead", + "year": 1995, + "cast": [ + "Eddie Griffin", + "Allen Payne", + "Joe Morton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Waterworld", + "year": 1995, + "cast": [ + "Kevin Costner", + "Dennis Hopper", + "Jeanne Tripplehorn", + "Tina Majorino" + ], + "genres": [ + "Action", + "Science Fiction" + ] + }, + { + "title": "Welcome to the Dollhouse", + "year": 1995, + "cast": [ + "Heather Matarazzo" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The West Side Waltz", + "year": 1995, + "cast": [ + "Shirley MacLaine", + "Liza Minnelli", + "Kathy Bates" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "While You Were Sleeping", + "year": 1995, + "cast": [ + "Sandra Bullock", + "Bill Pullman", + "Peter Gallagher", + "Peter Boyle" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "White Man's Burden", + "year": 1995, + "cast": [ + "John Travolta", + "Harry Belafonte" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Wife", + "year": 1995, + "cast": [], + "genres": [ + "Drama" + ] + }, + { + "title": "Wigstock: The Movie", + "year": 1995, + "cast": [], + "genres": [] + }, + { + "title": "Wild Bill", + "year": 1995, + "cast": [ + "Jeff Bridges", + "Ellen Barkin", + "David Arquette", + "John Hurt", + "Diane Lane", + "Keith Carradine", + "Bruce Dern", + "Christina Applegate" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Wild Side", + "year": 1995, + "cast": [ + "Christopher Walken", + "Anne Heche", + "Joan Chen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Wings of Courage", + "year": 1995, + "cast": [ + "Craig Sheffer", + "Elizabeth McGovern" + ], + "genres": [] + }, + { + "title": "Without Evidence", + "year": 1995, + "cast": [ + "Scott Plank", + "Angelina Jolie" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Wrong Woman", + "year": 1995, + "cast": [ + "Nancy McKeon", + "Chelsea Field" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "101 Dalmatians", + "year": 1996, + "cast": [ + "Glenn Close", + "Jeff Daniels", + "Joely Richardson", + "Joan Plowright" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "2 Days in the Valley", + "year": 1996, + "cast": [ + "Danny Aiello", + "Jeff Daniels", + "James Spader", + "Charlize Theron", + "Teri Hatcher", + "Marsha Mason", + "Eric Stoltz" + ], + "genres": [ + "Comedy", + "Crime" + ] + }, + { + "title": "Adrenalin: Fear the Rush", + "year": 1996, + "cast": [ + "Christopher Lambert", + "Natasha Henstridge" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Adventures of Pinocchio", + "year": 1996, + "cast": [ + "Martin Landau", + "Jonathan Taylor Thomas", + "Udo Kier", + "Geneviève Bujold", + "Bebe Neuwirth", + "Rob Schneider", + "Corey Carrier" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Aladdin and the King of Thieves", + "year": 1996, + "cast": [ + "Scott Weinger", + "Robin Williams", + "John Rhys-Davies" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Alaska", + "year": 1996, + "cast": [ + "Thora Birch", + "Vincent Kartheiser", + "Dirk Benedict", + "Charlton Heston" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Alien Nation: Millennium", + "year": 1996, + "cast": [ + "Gary Graham", + "Eric Pierpoint" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Alien Nation: The Enemy Within", + "year": 1996, + "cast": [ + "Gary Graham", + "Eric Pierpoint", + "Michele Scarabelli" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "All Dogs Go to Heaven 2", + "year": 1996, + "cast": [ + "Ernest Borgnine", + "Bebe Neuwirth", + "Charlie Sheen", + "Dom DeLuise", + "Sheena Easton" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Amityville Dollhouse", + "year": 1996, + "cast": [ + "Robin Thomas", + "Starr Andreeff", + "Allen Cutler" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Andersonville", + "year": 1996, + "cast": [ + "Frederic Forrest", + "Carmen Argenziano", + "Jayce Bartok" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Arrival", + "year": 1996, + "cast": [ + "Charlie Sheen", + "Lindsay Crouse", + "Richard Schiff" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Associate", + "year": 1996, + "cast": [ + "Whoopi Goldberg", + "Dianne Wiest", + "Eli Wallach", + "Tim Daly" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "August", + "year": 1996, + "cast": [ + "Anthony Hopkins", + "Rhys Ifans", + "Leslie Phillips" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Back to Back", + "year": 1996, + "cast": [ + "Michael Rooker", + "Danielle Harris", + "Ryo Ishibashi" + ], + "genres": [ + "Action", + "Drama" + ] + }, + { + "title": "Bad Moon", + "year": 1996, + "cast": [ + "Mariel Hemingway", + "Michael Paré", + "Mason Gamble" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Barb Wire", + "year": 1996, + "cast": [ + "Pamela Anderson", + "Temuera Morrison", + "Victoria Rowell", + "Jack Noseworthy", + "Xander Berkeley", + "Udo Kier", + "Steve Railsback" + ], + "genres": [ + "Action", + "Science Fiction" + ] + }, + { + "title": "Basquiat", + "year": 1996, + "cast": [ + "Jeffrey Wright", + "David Bowie", + "Benicio del Toro" + ], + "genres": [ + "Biography", + "Drama" + ] + }, + { + "title": "Bastard Out of Carolina", + "year": 1996, + "cast": [ + "Jennifer Jason Leigh", + "Jena Malone" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Beast", + "year": 1996, + "cast": [ + "William Petersen", + "Karen Sillas", + "Charles Martin Smith" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Beautiful Girls", + "year": 1996, + "cast": [ + "Matt Dillon", + "Timothy Hutton", + "Michael Rapaport", + "Uma Thurman", + "Natalie Portman", + "Mira Sorvino", + "Rosie O'Donnell", + "Lauren Holly", + "Martha Plimpton" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Beavis and Butt-Head Do America", + "year": 1996, + "cast": [ + "Mike Judge", + "Demi Moore", + "Bruce Willis", + "Robert Stack", + "Cloris Leachman" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Bed of Roses", + "year": 1996, + "cast": [ + "Mary Stuart Masterson", + "Christian Slater" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Before and After", + "year": 1996, + "cast": [ + "Meryl Streep", + "Liam Neeson", + "Edward Furlong" + ], + "genres": [ + "Drama", + "Thriller" + ] + }, + { + "title": "Best of the Best 3: No Turning Back", + "year": 1996, + "cast": [ + "Phillip Rhee", + "Christopher McDonald" + ], + "genres": [ + "Martial Arts" + ] + }, + { + "title": "Big Bully", + "year": 1996, + "cast": [ + "Rick Moranis", + "Tom Arnold" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Big Night", + "year": 1996, + "cast": [ + "Tony Shalhoub", + "Stanley Tucci", + "Isabella Rossellini", + "Minnie Driver", + "Ian Holm", + "Marc Anthony", + "Allison Janney", + "Liev Schreiber" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Bio-Dome", + "year": 1996, + "cast": [ + "Pauly Shore", + "Stephen Baldwin", + "William Atherton", + "Joey Lauren Adams", + "Teresa Hill" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Birdcage", + "year": 1996, + "cast": [ + "Robin Williams", + "Nathan Lane", + "Gene Hackman", + "Dianne Wiest", + "Hank Azaria", + "Calista Flockhart", + "Dan Futterman" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Black Sheep", + "year": 1996, + "cast": [ + "Chris Farley", + "David Spade", + "Gary Busey", + "Tim Matheson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Black Sun", + "year": 1996, + "cast": [], + "genres": [ + "Drama" + ] + }, + { + "title": "Blood Brothers", + "year": 1996, + "cast": [ + "Bruce Springsteen", + "The E Street Band", + "Jon Landau" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Blood and Wine", + "year": 1996, + "cast": [ + "Jack Nicholson", + "Jennifer Lopez", + "Stephen Dorff", + "Judy Davis", + "Michael Caine" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Bloodsport II: The Next Kumite", + "year": 1996, + "cast": [ + "Daniel Bernhardt", + "Pat Morita" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Bottle Rocket", + "year": 1996, + "cast": [ + "Luke Wilson", + "Owen Wilson", + "James Caan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Bound", + "year": 1996, + "cast": [ + "Gina Gershon", + "Jennifer Tilly", + "Joe Pantoliano" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Box of Moon Light", + "year": 1996, + "cast": [ + "John Turturro", + "Sam Rockwell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Boys", + "year": 1996, + "cast": [ + "Winona Ryder", + "Lukas Haas" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Boys Next Door", + "year": 1996, + "cast": [ + "Matthew Modine", + "Nathan Lane", + "Courtney B. Vance", + "Mare Winningham" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Brain Candy", + "year": 1996, + "cast": [ + "Kevin McDonald", + "Scott Thompson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Brassed Off", + "year": 1996, + "cast": [ + "Ewan McGregor", + "Pete Postlethwaite", + "Tara Fitzgerald" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Breaking the Waves", + "year": 1996, + "cast": [ + "Emily Watson", + "Stellan Skarsgård" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Broken Arrow", + "year": 1996, + "cast": [ + "John Travolta", + "Christian Slater", + "Samantha Mathis" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Bullet", + "year": 1996, + "cast": [ + "Mickey Rourke", + "Tupac Shakur" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Bulletproof", + "year": 1996, + "cast": [ + "Damon Wayans", + "Adam Sandler", + "James Caan", + "James Farentino", + "Kristen Wilson" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Busted", + "year": 1996, + "cast": [ + "Corey Feldman", + "Corey Haim", + "Dominick Brascia", + "Ava Fabian" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Butch Camp", + "year": 1996, + "cast": [ + "Judy Tenuta", + "Paul Denniston" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Cable Guy", + "year": 1996, + "cast": [ + "Jim Carrey", + "Matthew Broderick" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Camp Stories", + "year": 1996, + "cast": [], + "genres": [ + "Drama" + ] + }, + { + "title": "Cannes Man", + "year": 1996, + "cast": [ + "Francesco Quinn", + "Seymour Cassel" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Cannibal! The Musical", + "year": 1996, + "cast": [ + "Trey Parker", + "Matt Stone", + "Dian Bachar", + "Jason McHugh" + ], + "genres": [] + }, + { + "title": "Carnosaur 3: Primal Species", + "year": 1996, + "cast": [ + "Scott Valentine", + "Janet Gunn" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Carpool", + "year": 1996, + "cast": [ + "Tom Arnold", + "David Paymer", + "Rhea Perlman", + "Rachael Leigh Cook", + "Rod Steiger" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Carried Away", + "year": 1996, + "cast": [ + "Dennis Hopper", + "Amy Irving" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Celtic Pride", + "year": 1996, + "cast": [ + "Damon Wayans", + "Daniel Stern", + "Dan Aykroyd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Chain Reaction", + "year": 1996, + "cast": [ + "Keanu Reeves", + "Morgan Freeman", + "Rachel Weisz", + "Fred Ward", + "Brian Cox" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Chamber", + "year": 1996, + "cast": [ + "Chris O'Donnell", + "Gene Hackman", + "Faye Dunaway" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Cherokee Kid", + "year": 1996, + "cast": [ + "Sinbad", + "James Coburn", + "Burt Reynolds", + "Gregory Hines" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Children of the Corn IV: The Gathering", + "year": 1996, + "cast": [ + "Naomi Watts", + "Jamie Renée Smith", + "Karen Black" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Christmas Every Day", + "year": 1996, + "cast": [ + "Erik von Detten", + "Robert Hays", + "Bess Armstrong" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Cinema Europe: The Other Hollywood", + "year": 1996, + "cast": [ + "Kenneth Branagh", + "(narrator)" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Citizen Ruth", + "year": 1996, + "cast": [ + "Laura Dern", + "Swoosie Kurtz", + "Kurtwood Smith", + "Kelly Preston", + "Burt Reynolds" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "City Hall", + "year": 1996, + "cast": [ + "Al Pacino", + "John Cusack", + "Bridget Fonda", + "Danny Aiello", + "Martin Landau", + "Tony Franciosa" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Clancy's Kitchen", + "year": 1996, + "cast": [ + "Mark Aiken", + "Indira Varma", + "Rocky Marshall" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Close Up", + "year": 1996, + "cast": [ + "Michael Mauro", + "Kevin Kenny" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Color of a Brisk and Leaping Day", + "year": 1996, + "cast": [ + "Peter Alexander", + "Henry Gibson", + "Michael Stipe" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Cosmic Voyage", + "year": 1996, + "cast": [ + "Morgan Freeman", + "(narrator)" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Courage Under Fire", + "year": 1996, + "cast": [ + "Denzel Washington", + "Meg Ryan", + "Lou Diamond Phillips", + "Matt Damon" + ], + "genres": [ + "War" + ] + }, + { + "title": "The Craft", + "year": 1996, + "cast": [ + "Robin Tunney", + "Fairuza Balk", + "Neve Campbell", + "Rachel True" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Crossworlds", + "year": 1996, + "cast": [ + "Rutger Hauer", + "Josh Charles", + "Andrea Roth", + "Stuart Wilson", + "Jack Black" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Cremaster Cycle", + "year": 1996, + "cast": [ + "Marti Domination", + "Kathleen Crepeau" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "The Crow: City of Angels", + "year": 1996, + "cast": [ + "Vincent Pérez", + "Mia Kirshner", + "Richard Brooks", + "Iggy Pop", + "Thuy Trang" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Crucible", + "year": 1996, + "cast": [ + "Daniel Day-Lewis", + "Winona Ryder", + "Paul Scofield", + "Joan Allen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Curdled", + "year": 1996, + "cast": [ + "Angela Jones", + "William Baldwin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "D3: The Mighty Ducks", + "year": 1996, + "cast": [ + "Emilio Estevez", + "Joshua Jackson" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Daddy's Girl", + "year": 1996, + "cast": [ + "William Katt", + "Michele Greene" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dallas: J.R. Returns", + "year": 1996, + "cast": [ + "Larry Hagman", + "Patrick Duffy", + "Linda Gray" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Daylight", + "year": 1996, + "cast": [ + "Sylvester Stallone", + "Amy Brenneman", + "Viggo Mortensen", + "Dan Hedaya", + "Jay O. Sanders", + "Karen Young", + "Claire Bloom", + "Sage Stallone", + "Vanessa Bell Calloway", + "Danielle Harris", + "Barry Newman", + "Stan Shaw" + ], + "genres": [ + "Disaster" + ] + }, + { + "title": "The Daytrippers", + "year": 1996, + "cast": [ + "Hope Davis", + "Stanley Tucci", + "Liev Schreiber", + "Parker Posey" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dead Man's Island", + "year": 1996, + "cast": [ + "Barbara Eden", + "William Shatner" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "Deadly Outbreak", + "year": 1996, + "cast": [ + "Jeff Speakman", + "Ron Silver" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Dear Diary", + "year": 1996, + "cast": [ + "Bebe Neuwirth", + "Bruce Altman" + ], + "genres": [ + "Short" + ] + }, + { + "title": "Dear God", + "year": 1996, + "cast": [ + "Greg Kinnear", + "Laurie Metcalf", + "Tim Conway" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Death and the Compass", + "year": 1996, + "cast": [], + "genres": [ + "Drama" + ] + }, + { + "title": "Demolition High", + "year": 1996, + "cast": [ + "Corey Haim", + "Alan Thicke", + "Dick Van Patten" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Denise Calls Up", + "year": 1996, + "cast": [ + "Timothy Daly", + "Liev Schreiber" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Dentist", + "year": 1996, + "cast": [ + "Corbin Bernsen", + "Molly Hagan" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Diabolique", + "year": 1996, + "cast": [ + "Sharon Stone", + "Isabelle Adjani", + "Chazz Palminteri", + "Kathy Bates" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Diary of a Camper", + "year": 1996, + "cast": [ + "(none)" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Don't Be a Menace to South Central While Drinking Your Juice in the Hood", + "year": 1996, + "cast": [ + "Marlon Wayans", + "Shawn Wayans", + "Bernie Mac", + "Keenen Ivory Wayans", + "Omar Epps" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Don't Look Back", + "year": 1996, + "cast": [ + "Eric Stoltz", + "Billy Bob Thornton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dorf on the Diamond", + "year": 1996, + "cast": [ + "Tim Conway" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Down Periscope", + "year": 1996, + "cast": [ + "Kelsey Grammer", + "Lauren Holly", + "Rip Torn", + "Bruce Dern", + "William H. Macy", + "Rob Schneider" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Dragonheart", + "year": 1996, + "cast": [ + "Dennis Quaid", + "David Thewlis", + "Pete Postlethwaite", + "Dina Meyer", + "Jason Isaacs", + "Julie Christie", + "(voice of)", + "Sean Connery" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Drawing Flies", + "year": 1996, + "cast": [ + "Jason Lee", + "Jason Mewes" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Dream for an Insomniac", + "year": 1996, + "cast": [ + "Ione Skye", + "Jennifer Aniston" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dunston Checks In", + "year": 1996, + "cast": [ + "Jason Alexander", + "Faye Dunaway", + "Paul Reubens", + "Eric Lloyd", + "Rupert Everett", + "Glenn Shadix" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "East Palace, West Palace", + "year": 1996, + "cast": [], + "genres": [ + "Drama" + ] + }, + { + "title": "Ed", + "year": 1996, + "cast": [ + "Matt LeBlanc" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Ed's Next Move", + "year": 1996, + "cast": [ + "Matt Ross" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Eddie", + "year": 1996, + "cast": [ + "Whoopi Goldberg", + "Frank Langella", + "Dennis Farina" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Emma", + "year": 1996, + "cast": [ + "Gwyneth Paltrow", + "Ewan McGregor", + "Jeremy Northam" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Empty Mirror", + "year": 1996, + "cast": [ + "Norman Rodway", + "Camilla Søeberg" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The English Patient", + "year": 1996, + "cast": [ + "Ralph Fiennes", + "Kristin Scott Thomas", + "Juliette Binoche", + "Willem Dafoe" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Entertaining Angels: The Dorothy Day Story", + "year": 1996, + "cast": [ + "Moira Kelly", + "Heather Graham", + "Martin Sheen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Eraser", + "year": 1996, + "cast": [ + "Arnold Schwarzenegger", + "Vanessa Williams", + "James Caan", + "Robert Pastorelli", + "James Coburn" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Escape from L.A.", + "year": 1996, + "cast": [ + "Kurt Russell", + "Steve Buscemi", + "Peter Fonda", + "Cliff Robertson", + "Stacy Keach", + "Michelle Forbes" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Evening Star", + "year": 1996, + "cast": [ + "Shirley MacLaine", + "Bill Paxton", + "Juliette Lewis", + "Miranda Richardson", + "George Newbern", + "Mackenzie Astin", + "Scott Wolf", + "Ben Johnson", + "Marion Ross" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Everyone Says I Love You", + "year": 1996, + "cast": [ + "Edward Norton", + "Alan Alda", + "Woody Allen", + "Goldie Hawn", + "Julia Roberts", + "Drew Barrymore", + "Natalie Portman", + "Lukas Haas", + "Tim Roth" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Evita", + "year": 1996, + "cast": [ + "Antonio Banderas", + "Madonna", + "Jonathan Pryce" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Executive Decision", + "year": 1996, + "cast": [ + "Kurt Russell", + "Halle Berry", + "John Leguizamo", + "Oliver Platt", + "Joe Morton", + "David Suchet", + "Steven Seagal" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Extreme Measures", + "year": 1996, + "cast": [ + "Hugh Grant", + "Gene Hackman", + "Sarah Jessica Parker" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Eye for an Eye", + "year": 1996, + "cast": [ + "Sally Field", + "Kiefer Sutherland", + "Ed Harris", + "Joe Mantegna", + "Beverly D'Angelo" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Face", + "year": 1996, + "cast": [ + "Yasmine Bleeth", + "Richard Beymer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Faces of Death VI", + "year": 1996, + "cast": [], + "genres": [ + "Horror" + ] + }, + { + "title": "Faithful", + "year": 1996, + "cast": [ + "Cher", + "Ryan O'Neal", + "Chazz Palminteri" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Family Thing", + "year": 1996, + "cast": [ + "Robert Duvall", + "James Earl Jones" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Fan", + "year": 1996, + "cast": [ + "Robert De Niro", + "Wesley Snipes", + "Ellen Barkin", + "Benicio del Toro", + "John Leguizamo" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Fargo", + "year": 1996, + "cast": [ + "Frances McDormand", + "William H. Macy", + "Steve Buscemi", + "Peter Stormare", + "Harve Presnell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Fear", + "year": 1996, + "cast": [ + "Mark Wahlberg", + "Reese Witherspoon", + "Alyssa Milano", + "William Petersen", + "Amy Brenneman" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Feeling Minnesota", + "year": 1996, + "cast": [ + "Keanu Reeves", + "Cameron Diaz", + "Vincent D'Onofrio", + "Dan Aykroyd", + "Courtney Love", + "Tuesday Weld", + "Delroy Lindo" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Fetishes", + "year": 1996, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "Fever Lake", + "year": 1996, + "cast": [ + "Corey Haim", + "Mario Lopez", + "Bo Hopkins" + ], + "genres": [ + "Slasher" + ] + }, + { + "title": "Fire on the Mountain", + "year": 1996, + "cast": [], + "genres": [ + "Documentary", + "War" + ] + }, + { + "title": "First Kid", + "year": 1996, + "cast": [ + "Sinbad", + "Brock Pierce" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The First Wives Club", + "year": 1996, + "cast": [ + "Diane Keaton", + "Goldie Hawn", + "Bette Midler" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Fled", + "year": 1996, + "cast": [ + "Laurence Fishburne", + "Stephen Baldwin" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Flipper", + "year": 1996, + "cast": [ + "Elijah Wood", + "Paul Hogan" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Flirting with Disaster", + "year": 1996, + "cast": [ + "Ben Stiller", + "Téa Leoni", + "Patricia Arquette", + "Alan Alda", + "Mary Tyler Moore", + "George Segal", + "Lily Tomlin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Fly Away Home", + "year": 1996, + "cast": [ + "Jeff Daniels", + "Anna Paquin", + "Dana Delany" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Follow Me Home", + "year": 1996, + "cast": [ + "Alfre Woodard", + "Benjamin Bratt" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "For Hope", + "year": 1996, + "cast": [ + "Dana Delany", + "Tracy Nelson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Foxfire", + "year": 1996, + "cast": [ + "Angelina Jolie", + "Jenny Shimizu" + ], + "genres": [] + }, + { + "title": "Freeway", + "year": 1996, + "cast": [ + "Kiefer Sutherland", + "Reese Witherspoon", + "Brooke Shields" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Frequent Flyer", + "year": 1996, + "cast": [ + "Jack Wagner", + "Joan Severance" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Frighteners", + "year": 1996, + "cast": [ + "Michael J. Fox", + "Trini Alvarado" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "From Dusk Till Dawn", + "year": 1996, + "cast": [ + "George Clooney", + "Quentin Tarantino", + "Harvey Keitel", + "Juliette Lewis", + "Salma Hayek", + "Fred Williamson", + "Cheech Marin" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Frostbiter: Wrath of the Wendigo", + "year": 1996, + "cast": [], + "genres": [] + }, + { + "title": "The Funeral", + "year": 1996, + "cast": [ + "Christopher Walken", + "Chris Penn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Gang in Blue", + "year": 1996, + "cast": [ + "Mario van Peebles", + "Josh Brolin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Generation X", + "year": 1996, + "cast": [ + "Matt Frewer", + "Finola Hughes" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Get on the Bus", + "year": 1996, + "cast": [ + "Charles S. Dutton", + "Ossie Davis", + "Andre Braugher" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Getting Away with Murder", + "year": 1996, + "cast": [ + "Dan Aykroyd", + "Jack Lemmon", + "Bonnie Hunt", + "Lily Tomlin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Ghost and the Darkness", + "year": 1996, + "cast": [ + "Val Kilmer", + "Michael Douglas" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Ghosts of Mississippi", + "year": 1996, + "cast": [ + "Alec Baldwin", + "Whoopi Goldberg", + "James Woods" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Giant Mine", + "year": 1996, + "cast": [], + "genres": [] + }, + { + "title": "Girl 6", + "year": 1996, + "cast": [ + "Theresa Randle", + "Isaiah Washington" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Girls Town", + "year": 1996, + "cast": [ + "Lili Taylor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Glimmer Man", + "year": 1996, + "cast": [ + "Steven Seagal", + "Keenen Ivory Wayans" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Gone in the Night", + "year": 1996, + "cast": [ + "Shannen Doherty", + "Kevin Dillon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Gotti", + "year": 1996, + "cast": [ + "Armand Assante", + "Anthony Quinn" + ], + "genres": [ + "Biography", + "Crime", + "Drama" + ] + }, + { + "title": "Grace of My Heart", + "year": 1996, + "cast": [ + "Illeana Douglas", + "Matt Dillon", + "Eric Stoltz", + "John Turturro", + "Patsy Kensit" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Grave", + "year": 1996, + "cast": [ + "Craig Sheffer", + "Gabrielle Anwar" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Gray's Anatomy", + "year": 1996, + "cast": [ + "Spalding Gray" + ], + "genres": [] + }, + { + "title": "The Great White Hype", + "year": 1996, + "cast": [ + "Damon Wayans", + "Peter Berg", + "Jeff Goldblum", + "Samuel L. Jackson", + "Jamie Foxx" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hamlet", + "year": 1996, + "cast": [ + "Kenneth Branagh", + "Derek Jacobi", + "Julie Christie", + "Richard Briers" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Happy Gilmore", + "year": 1996, + "cast": [ + "Adam Sandler", + "Julie Bowen", + "Christopher McDonald", + "Carl Weathers", + "Bob Barker" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hard Eight", + "year": 1996, + "cast": [ + "Philip Baker Hall", + "John C. Reilly", + "Gwyneth Paltrow", + "Samuel L. Jackson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Harriet the Spy", + "year": 1996, + "cast": [ + "Michelle Trachtenberg", + "Rosie O'Donnell" + ], + "genres": [ + "Family", + "Mystery" + ] + }, + { + "title": "Heaven's Prisoners", + "year": 1996, + "cast": [ + "Alec Baldwin", + "Teri Hatcher", + "Eric Roberts", + "Kelly Lynch", + "Mary Stuart Masterson" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Heidi Fleiss: Hollywood Madam", + "year": 1996, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "Hellraiser: Bloodline", + "year": 1996, + "cast": [ + "Bruce Ramsay" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "High School High", + "year": 1996, + "cast": [ + "Jon Lovitz", + "Tia Carrere", + "Louise Fletcher" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hollow Point", + "year": 1996, + "cast": [ + "Thomas Ian Griffith", + "Tia Carrere", + "John Lithgow" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Homeward Bound II: Lost in San Francisco", + "year": 1996, + "cast": [ + "voices of", + "Sally Field", + "Michael J. Fox" + ], + "genres": [ + "Family" + ] + }, + { + "title": "House Arrest", + "year": 1996, + "cast": [ + "Jamie Lee Curtis", + "Kevin Pollak", + "Jennifer Tilly", + "Christopher McDonald", + "Jennifer Love Hewitt", + "Ray Walston" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Hunchback of Notre Dame", + "year": 1996, + "cast": [ + "voices of", + "Tom Hulce", + "Demi Moore", + "Kevin Kline" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Hustler White", + "year": 1996, + "cast": [], + "genres": [ + "Drama" + ] + }, + { + "title": "Hype!", + "year": 1996, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "I Love You, I Love You Not", + "year": 1996, + "cast": [ + "Jeanne Moreau", + "Jude Law", + "Claire Danes" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "I Shot Andy Warhol", + "year": 1996, + "cast": [ + "Lili Taylor", + "Jared Harris", + "Martha Plimpton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "I'm Not Rappaport", + "year": 1996, + "cast": [ + "Walter Matthau", + "Ossie Davis", + "Amy Irving", + "Martha Plimpton", + "Craig T. Nelson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "If Lucy Fell", + "year": 1996, + "cast": [ + "Sarah Jessica Parker", + "Elle Macpherson" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "If These Walls Could Talk", + "year": 1996, + "cast": [ + "Demi Moore", + "Sissy Spacek", + "Cher" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "In Cold Blood", + "year": 1996, + "cast": [ + "Anthony Edwards", + "Eric Roberts", + "Sam Neill" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "In Love and War", + "year": 1996, + "cast": [ + "Sandra Bullock", + "Chris O'Donnell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Independence Day", + "year": 1996, + "cast": [ + "Will Smith", + "Bill Pullman", + "Jeff Goldblum", + "Mary McDonnell", + "Margaret Colin", + "Judd Hirsch", + "Randy Quaid", + "Robert Loggia", + "James Rebhorn", + "Harvey Fierstein", + "Vivica A. Fox", + "Harry Connick Jr." + ], + "genres": [ + "Disaster", + "Science Fiction" + ] + }, + { + "title": "Infinity", + "year": 1996, + "cast": [ + "Matthew Broderick", + "Patricia Arquette" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Irma Vep", + "year": 1996, + "cast": [ + "Maggie Cheung" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Island of Dr. Moreau", + "year": 1996, + "cast": [ + "Marlon Brando", + "Val Kilmer", + "David Thewlis", + "Fairuza Balk" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "It's My Party", + "year": 1996, + "cast": [ + "Eric Roberts", + "Olivia Newton-John", + "Margaret Cho", + "Marlee Matlin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Jack", + "year": 1996, + "cast": [ + "Robin Williams", + "Diane Lane", + "Brian Kerwin", + "Jennifer Lopez", + "Fran Drescher", + "Bill Cosby" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Jake's Women", + "year": 1996, + "cast": [ + "Alan Alda" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "James and the Giant Peach", + "year": 1996, + "cast": [ + "Animated" + ], + "genres": [] + }, + { + "title": "Jane Eyre", + "year": 1996, + "cast": [ + "Charlotte Gainsbourg", + "William Hurt", + "Anna Paquin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Jerry Maguire", + "year": 1996, + "cast": [ + "Tom Cruise", + "Renée Zellweger", + "Cuba Gooding Jr.", + "Bonnie Hunt", + "Jay Mohr", + "Kelly Preston", + "Jerry O'Connell" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Jimmy Zip", + "year": 1996, + "cast": [ + "Alyssa Milano" + ], + "genres": [ + "Short" + ] + }, + { + "title": "Jingle All the Way", + "year": 1996, + "cast": [ + "Arnold Schwarzenegger", + "Sinbad", + "Phil Hartman", + "Rita Wilson", + "Robert Conrad", + "Jake Lloyd", + "James Belushi" + ], + "genres": [ + "Comedy", + "Family" + ] + }, + { + "title": "Joe's Apartment", + "year": 1996, + "cast": [ + "Jerry O'Connell", + "Megan Ward" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Johns", + "year": 1996, + "cast": [ + "Lukas Haas", + "David Arquette" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Juror", + "year": 1996, + "cast": [ + "Demi Moore", + "Alec Baldwin", + "Joseph Gordon-Levitt", + "James Gandolfini", + "Anne Heche", + "Lindsay Crouse", + "Tony Lo Bianco" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Just Your Luck", + "year": 1996, + "cast": [ + "Sean Patrick Flanery", + "Virginia Madsen", + "Carroll Baker" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Kama Sutra: A Tale of Love", + "year": 1996, + "cast": [], + "genres": [ + "Drama" + ] + }, + { + "title": "Kansas City", + "year": 1996, + "cast": [ + "Jennifer Jason Leigh", + "Harry Belafonte", + "Miranda Richardson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Kazaam", + "year": 1996, + "cast": [ + "Shaquille O'Neal" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Killer: A Journal of Murder", + "year": 1996, + "cast": [ + "James Woods", + "Robert Sean Leonard" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Kingpin", + "year": 1996, + "cast": [ + "Woody Harrelson", + "Randy Quaid", + "Vanessa Angel", + "Bill Murray" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Kounterfeit", + "year": 1996, + "cast": [ + "Hilary Swank", + "Bruce Payne", + "Corbin Bernsen" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Land Before Time IV: Journey Through the Mists", + "year": 1996, + "cast": [ + "voices of John Ingle", + "Candace Hutson", + "Heather Hogan" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Larger Than Life", + "year": 1996, + "cast": [ + "Bill Murray", + "Janeane Garofalo", + "Pat Hingle", + "Matthew McConaughey", + "Linda Fiorentino" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Last Angel of History", + "year": 1996, + "cast": [ + "George Clinton" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Last Dance", + "year": 1996, + "cast": [ + "Sharon Stone", + "Rob Morrow", + "Peter Gallagher", + "Randy Quaid" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Last Days of Frankie the Fly", + "year": 1996, + "cast": [ + "Dennis Hopper", + "Daryl Hannah", + "Michael Madsen" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Last Man Standing", + "year": 1996, + "cast": [ + "Bruce Willis", + "Christopher Walken", + "Bruce Dern" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Late Shift", + "year": 1996, + "cast": [ + "John Michael Higgins", + "Daniel Roebuck", + "Treat Williams", + "Kathy Bates", + "Bob Balaban", + "Rich Little" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "The Lawnmower Man 2: Beyond Cyberspace", + "year": 1996, + "cast": [ + "Patrick Bergin", + "Matt Frewer", + "Austin O'Brien" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Lewis and Clark and George", + "year": 1996, + "cast": [ + "Rose McGowan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Listen", + "year": 1996, + "cast": [ + "Brooke Langton", + "Sarah G. Buxton" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Little Riders", + "year": 1996, + "cast": [ + "Paul Scofield", + "Malcolm McDowell", + "Noley Thornton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Little Witches", + "year": 1996, + "cast": [ + "Sheeri Rappaport" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Loch Ness", + "year": 1996, + "cast": [ + "Ted Danson", + "Joely Richardson" + ], + "genres": [ + "Family" + ] + }, + { + "title": "London Suite", + "year": 1996, + "cast": [ + "Kelsey Grammer", + "Patricia Clarkson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Lone Star", + "year": 1996, + "cast": [ + "Chris Cooper", + "Matthew McConaughey", + "Kris Kristofferson", + "Elizabeth Peña" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Long Day's Journey Into Night", + "year": 1996, + "cast": [ + "William Hutt" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Long Kiss Goodnight", + "year": 1996, + "cast": [ + "Geena Davis", + "Samuel L. Jackson", + "Craig Bierko", + "David Morse", + "Brian Cox" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Looking for Richard", + "year": 1996, + "cast": [ + "Alec Baldwin", + "Al Pacino", + "Winona Ryder", + "Kevin Spacey" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Love Is All There Is", + "year": 1996, + "cast": [ + "Angelina Jolie", + "Paul Sorvino", + "Barbara Carrera", + "Lainie Kazan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Lumière and Company", + "year": 1996, + "cast": [], + "genres": [ + "Short" + ] + }, + { + "title": "Mad Dog Time", + "year": 1996, + "cast": [ + "Jeff Goldblum", + "Gabriel Byrne", + "Richard Dreyfuss", + "Ellen Barkin", + "Diane Lane", + "Gregory Hines", + "Kyle MacLachlan" + ], + "genres": [ + "Comedy", + "Crime" + ] + }, + { + "title": "Magenta", + "year": 1996, + "cast": [ + "Julian McMahon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Malicious", + "year": 1996, + "cast": [ + "Molly Ringwald" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Man Who Captured Eichmann", + "year": 1996, + "cast": [ + "Robert Duvall", + "Arliss Howard" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Manny & Lo", + "year": 1996, + "cast": [ + "Scarlett Johansson", + "Mary Kay Place" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Mars Attacks!", + "year": 1996, + "cast": [ + "Jack Nicholson", + "Glenn Close", + "Annette Bening", + "Pierce Brosnan", + "Danny DeVito", + "Jim Brown", + "Sarah Jessica Parker", + "Martin Short", + "Michael J. Fox", + "Lukas Haas", + "Natalie Portman" + ], + "genres": [ + "Science Fiction", + "Comedy" + ] + }, + { + "title": "Marvin's Room", + "year": 1996, + "cast": [ + "Meryl Streep", + "Diane Keaton", + "Leonardo DiCaprio", + "Robert De Niro" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Mary Reilly", + "year": 1996, + "cast": [ + "Julia Roberts", + "John Malkovich", + "Glenn Close" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Matilda", + "year": 1996, + "cast": [ + "Mara Wilson", + "Danny DeVito", + "Rhea Perlman", + "Embeth Davidtz", + "Pam Ferris" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Maximum Risk", + "year": 1996, + "cast": [ + "Jean-Claude Van Damme", + "Natasha Henstridge" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Memory Run", + "year": 1996, + "cast": [ + "Karen Duffy", + "Matt McCoy" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Merlin's Shop of Mystical Wonders", + "year": 1996, + "cast": [], + "genres": [] + }, + { + "title": "Michael", + "year": 1996, + "cast": [ + "John Travolta", + "Andie MacDowell", + "William Hurt", + "Bob Hoskins" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Michael Collins", + "year": 1996, + "cast": [ + "Liam Neeson", + "Aidan Quinn", + "Stephen Rea", + "Alan Rickman", + "Julia Roberts" + ], + "genres": [ + "Historical", + "Biography" + ] + }, + { + "title": "The Mirror Has Two Faces", + "year": 1996, + "cast": [ + "Barbra Streisand", + "Jeff Bridges", + "Lauren Bacall", + "Pierce Brosnan", + "Mimi Rogers", + "George Segal", + "Brenda Vaccaro" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Mission: Impossible", + "year": 1996, + "cast": [ + "Tom Cruise", + "Ving Rhames", + "Jon Voight", + "Vanessa Redgrave", + "Emmanuelle Béart", + "Kristin Scott Thomas", + "Jean Reno" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Mojave Moon", + "year": 1996, + "cast": [ + "Danny Aiello", + "Anne Archer", + "Angelina Jolie" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Moll Flanders", + "year": 1996, + "cast": [ + "Robin Wright Penn", + "Morgan Freeman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Mother", + "year": 1996, + "cast": [ + "Albert Brooks", + "Debbie Reynolds", + "Rob Morrow", + "Lisa Kudrow" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mother Night", + "year": 1996, + "cast": [ + "Nick Nolte" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Mother's Instinct", + "year": 1996, + "cast": [ + "Lindsay Wagner" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Mr. Wrong", + "year": 1996, + "cast": [ + "Ellen DeGeneres", + "Bill Pullman", + "Dean Stockwell", + "Joan Cusack", + "Joan Plowright" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mrs. Santa Claus", + "year": 1996, + "cast": [ + "Angela Lansbury", + "Michael Jeter" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Mrs. Winterbourne", + "year": 1996, + "cast": [ + "Shirley MacLaine", + "Brendan Fraser", + "Ricki Lake" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Mulholland Falls", + "year": 1996, + "cast": [ + "Nick Nolte", + "Jennifer Connelly", + "Melanie Griffith", + "John Malkovich", + "Michael Madsen", + "Chazz Palminteri", + "Chris Penn", + "Treat Williams" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Multiplicity", + "year": 1996, + "cast": [ + "Michael Keaton", + "Andie MacDowell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Muppet Treasure Island", + "year": 1996, + "cast": [ + "Tim Curry", + "Jennifer Saunders", + "Kevin Bishop" + ], + "genres": [ + "Family" + ] + }, + { + "title": "My Fellow Americans", + "year": 1996, + "cast": [ + "Jack Lemmon", + "James Garner", + "Dan Aykroyd", + "Lauren Bacall", + "John Heard" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mystery Science Theater 3000: The Movie", + "year": 1996, + "cast": [ + "Mike Nelson" + ], + "genres": [ + "Comedy", + "Science Fiction" + ] + }, + { + "title": "The Night Hunter", + "year": 1996, + "cast": [ + "Don \"The Dragon\" Wilson" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Norma Jean & Marilyn", + "year": 1996, + "cast": [ + "Ashley Judd", + "Mira Sorvino" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "The Nutty Professor", + "year": 1996, + "cast": [ + "Eddie Murphy", + "James Coburn", + "Jada Pinkett Smith", + "Dave Chappelle" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "One Fine Day", + "year": 1996, + "cast": [ + "George Clooney", + "Michelle Pfeiffer" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "The One That Got Away", + "year": 1996, + "cast": [ + "David Morrissey", + "Paul McGann" + ], + "genres": [ + "War" + ] + }, + { + "title": "Orientation", + "year": 1996, + "cast": [], + "genres": [] + }, + { + "title": "Original Gangstas", + "year": 1996, + "cast": [ + "Fred Williamson", + "Pam Grier", + "Jim Brown" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Our Son, the Matchmaker", + "year": 1996, + "cast": [ + "Ann Jillian", + "Ellen Burstyn" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Pallbearer", + "year": 1996, + "cast": [ + "David Schwimmer", + "Gwyneth Paltrow", + "Barbara Hershey" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Pandora's Clock", + "year": 1996, + "cast": [ + "Richard Dean Anderson", + "Jane Leeves", + "Daphne Zuniga" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Paradise Lost: The Child Murders at Robin Hood Hills", + "year": 1996, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "The People vs. Larry Flynt", + "year": 1996, + "cast": [ + "Woody Harrelson", + "Courtney Love", + "Edward Norton" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "The Phantom", + "year": 1996, + "cast": [ + "Billy Zane", + "Kristy Swanson", + "Treat Williams", + "Catherine Zeta-Jones", + "James Remar", + "Patrick McGoohan" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Phat Beach", + "year": 1996, + "cast": [ + "Jermaine 'Huggy' Hopkins", + "Coolio", + "Brian Hooks" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Phenomenon", + "year": 1996, + "cast": [ + "John Travolta", + "Forest Whitaker", + "Kyra Sedgwick", + "Robert Duvall" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Pie in the Sky", + "year": 1996, + "cast": [ + "Josh Charles", + "Anne Heche", + "John Goodman" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Pinocchio's Revenge", + "year": 1996, + "cast": [ + "Rosalind Allen" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Poison Ivy II: Lily", + "year": 1996, + "cast": [ + "Alyssa Milano" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Pompatus of Love", + "year": 1996, + "cast": [ + "Jon Cryer", + "Mia Sara" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Portrait of a Lady", + "year": 1996, + "cast": [ + "Nicole Kidman", + "John Malkovich", + "Barbara Hershey", + "Christian Bale" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Preacher's Wife", + "year": 1996, + "cast": [ + "Denzel Washington", + "Whitney Houston", + "Courtney B. Vance" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Primal Fear", + "year": 1996, + "cast": [ + "Richard Gere", + "Edward Norton", + "Laura Linney", + "John Mahoney", + "Alfre Woodard", + "Frances McDormand", + "Andre Braugher" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Proprietor", + "year": 1996, + "cast": [ + "Jeanne Moreau", + "Sean Young" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Public Enemies", + "year": 1996, + "cast": [ + "Theresa Russell", + "Eric Roberts", + "James Marsden" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Puddle Cruiser", + "year": 1996, + "cast": [], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Quest", + "year": 1996, + "cast": [ + "Jean-Claude Van Damme", + "Roger Moore", + "James Remar" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Race the Sun", + "year": 1996, + "cast": [ + "Halle Berry", + "James Belushi" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Ransom", + "year": 1996, + "cast": [ + "Mel Gibson", + "Rene Russo", + "Gary Sinise", + "Delroy Lindo" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Rasputin: Dark Servant of Destiny", + "year": 1996, + "cast": [ + "Alan Rickman", + "Greta Scacchi", + "Ian McKellen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Red Ribbon Blues", + "year": 1996, + "cast": [ + "Paul Mercurio", + "Debi Mazar" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Return of Techno-Destructo", + "year": 1996, + "cast": [], + "genres": [] + }, + { + "title": "The Rich Man's Wife", + "year": 1996, + "cast": [ + "Halle Berry", + "Clive Owen", + "Peter Greene" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Riders of the Purple Sage", + "year": 1996, + "cast": [ + "Ed Harris", + "Amy Madigan", + "Robin Tunney" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Rock", + "year": 1996, + "cast": [ + "Sean Connery", + "Nicolas Cage", + "Ed Harris" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Romeo + Juliet", + "year": 1996, + "cast": [ + "Leonardo DiCaprio", + "Claire Danes", + "Brian Dennehy", + "John Leguizamo", + "Pete Postlethwaite", + "Paul Sorvino", + "Diane Venora" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "Sabrina the Teenage Witch", + "year": 1996, + "cast": [ + "Melissa Joan Hart" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Samson and Delilah", + "year": 1996, + "cast": [ + "Elizabeth Hurley", + "Dennis Hopper", + "Michael Gambon", + "Diana Rigg" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Santa Claws", + "year": 1996, + "cast": [], + "genres": [ + "Horror" + ] + }, + { + "title": "Santa with Muscles", + "year": 1996, + "cast": [ + "Hulk Hogan" + ], + "genres": [ + "Action", + "Comedy" + ] + }, + { + "title": "Schizopolis", + "year": 1996, + "cast": [ + "Steven Soderbergh" + ], + "genres": [] + }, + { + "title": "Scream", + "year": 1996, + "cast": [ + "David Arquette", + "Neve Campbell", + "Courteney Cox", + "Rose McGowan", + "Skeet Ulrich", + "Matthew Lillard", + "Jamie Kennedy", + "Drew Barrymore" + ], + "genres": [ + "Horror", + "Slasher" + ] + }, + { + "title": "Set It Off", + "year": 1996, + "cast": [ + "Jada Pinkett", + "Queen Latifah", + "Vivica A. Fox", + "Kimberly Elise", + "Blair Underwood" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sgt. Bilko", + "year": 1996, + "cast": [ + "Steve Martin", + "Dan Aykroyd", + "Glenne Headly" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "She Cried No", + "year": 1996, + "cast": [ + "Mark-Paul Gosselaar" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "She's the One", + "year": 1996, + "cast": [ + "Jennifer Aniston", + "Cameron Diaz" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Shiloh", + "year": 1996, + "cast": [ + "Rod Steiger", + "Michael Moriarty" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Silent Trigger", + "year": 1996, + "cast": [ + "Dolph Lundgren" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Skin & Bone", + "year": 1996, + "cast": [ + "J. Wyatt" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sleepers", + "year": 1996, + "cast": [ + "Brad Pitt", + "Robert De Niro", + "Jason Patric", + "Minnie Driver", + "Kevin Bacon", + "Terry Kinney", + "Brad Renfro", + "Ron Eldard", + "Vittorio Gassman", + "Dustin Hoffman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sling Blade", + "year": 1996, + "cast": [ + "Billy Bob Thornton", + "Dwight Yoakam", + "John Ritter", + "Lucas Black", + "James Hampton", + "J. T. Walsh" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Snowboard Academy", + "year": 1996, + "cast": [ + "Corey Haim", + "Jim Varney", + "Brigitte Nielsen" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Solo", + "year": 1996, + "cast": [ + "Mario van Peebles", + "William Sadler" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Sometimes They Come Back... Again", + "year": 1996, + "cast": [ + "Michael Gross", + "Hilary Swank" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Space Jam", + "year": 1996, + "cast": [ + "Michael Jordan", + "Wayne Knight", + "Theresa Randle", + "Bill Murray" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Space Truckers", + "year": 1996, + "cast": [ + "Stephen Dorff", + "Dennis Hopper" + ], + "genres": [ + "Science Fiction", + "Comedy" + ] + }, + { + "title": "Special Effects: Anything Can Happen", + "year": 1996, + "cast": [], + "genres": [] + }, + { + "title": "The Spitfire Grill", + "year": 1996, + "cast": [ + "Alison Elliott", + "Ellen Burstyn", + "Marcia Gay Harden" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Spy Hard", + "year": 1996, + "cast": [ + "Leslie Nielsen", + "Nicollette Sheridan", + "Andy Griffith", + "Barry Bostwick", + "Marcia Gay Harden", + "Charles Durning" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Star Trek: First Contact", + "year": 1996, + "cast": [ + "Patrick Stewart", + "Brent Spiner", + "LeVar Burton", + "James Cromwell", + "Jonathan Frakes", + "Alice Krige", + "Neal McDonough", + "Marina Sirtis" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Stealing Beauty", + "year": 1996, + "cast": [ + "Liv Tyler", + "Joseph Fiennes", + "Jeremy Irons" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Stolen Memories: Secrets from the Rose Garden", + "year": 1996, + "cast": [ + "Mary Tyler Moore", + "Linda Lavin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Story of Healing", + "year": 1996, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "Striptease", + "year": 1996, + "cast": [ + "Demi Moore", + "Armand Assante", + "Ving Rhames", + "Burt Reynolds", + "Robert Patrick", + "Paul Guilfoyle", + "Pandora Peaks" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Stupids", + "year": 1996, + "cast": [ + "Tom Arnold", + "Jessica Lundy", + "Bug Hall", + "Mark Metcalf" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Substance of Fire", + "year": 1996, + "cast": [ + "Ron Rifkin", + "Sarah Jessica Parker" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Substitute", + "year": 1996, + "cast": [ + "Tom Berenger", + "Ernie Hudson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Sunchaser", + "year": 1996, + "cast": [ + "Woody Harrelson", + "Jon Seda" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sunset Park", + "year": 1996, + "cast": [ + "Rhea Perlman", + "Terrence Howard" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Surviving Picasso", + "year": 1996, + "cast": [ + "Anthony Hopkins", + "Natascha McElhone", + "Julianne Moore" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Susie Q", + "year": 1996, + "cast": [ + "Justin Whalin", + "Amy Jo Johnson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sweet Temptation", + "year": 1996, + "cast": [], + "genres": [] + }, + { + "title": "Swingers", + "year": 1996, + "cast": [ + "Jon Favreau", + "Vince Vaughn", + "Ron Livingston", + "Alex Désert", + "Patrick Van Horn", + "Heather Graham" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Tales of Erotica", + "year": 1996, + "cast": [ + "Arliss Howard", + "Mira Sorvino" + ], + "genres": [] + }, + { + "title": "Talk to Me", + "year": 1996, + "cast": [ + "Yasmine Bleeth", + "Veronica Hamel" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Tender Fictions", + "year": 1996, + "cast": [ + "Catherine Jauniaux" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "That Thing You Do!", + "year": 1996, + "cast": [ + "Tom Everett Scott", + "Liv Tyler", + "Steve Zahn", + "Ethan Embry", + "Johnathon Schaech", + "Tom Hanks" + ], + "genres": [ + "Drama", + "Musical" + ] + }, + { + "title": "A Thin Line Between Love and Hate", + "year": 1996, + "cast": [ + "Martin Lawrence", + "Lynn Whitfield" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Thinner", + "year": 1996, + "cast": [ + "Robert John Burke", + "Lucinda Jenney", + "Joe Mantegna" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Ticket to New Year's", + "year": 1996, + "cast": [ + "Grateful Dead" + ], + "genres": [ + "Performance" + ] + }, + { + "title": "A Time to Kill", + "year": 1996, + "cast": [ + "Matthew McConaughey", + "Sandra Bullock", + "Samuel L. Jackson", + "Kevin Spacey", + "Donald Sutherland", + "Kiefer Sutherland", + "Ashley Judd", + "Patrick McGoohan", + "Brenda Fricker" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Tin Cup", + "year": 1996, + "cast": [ + "Kevin Costner", + "Rene Russo", + "Don Johnson", + "Cheech Marin", + "Linda Hart" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Titanic", + "year": 1996, + "cast": [ + "George C. Scott", + "Eva Marie Saint", + "Peter Gallagher", + "Catherine Zeta-Jones" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "To Brave Alaska", + "year": 1996, + "cast": [ + "Alyssa Milano", + "Cameron Bancroft", + "Winston Rekert" + ], + "genres": [ + "Adventure", + "Drama" + ] + }, + { + "title": "To Gillian on Her 37th Birthday", + "year": 1996, + "cast": [ + "Peter Gallagher", + "Michelle Pfeiffer", + "Claire Danes", + "Kathy Baker" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "To Sir, with Love II", + "year": 1996, + "cast": [ + "Sidney Poitier", + "Lulu", + "Judy Geeson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Toad Warrior", + "year": 1996, + "cast": [ + "Scott Shaw", + "Joe Estevez", + "Sandra Purpuro" + ], + "genres": [ + "Action", + "Science Fiction" + ] + }, + { + "title": "The Toilers and the Wayfarers", + "year": 1996, + "cast": [ + "Matt Klemp", + "Andrew Woodhouse" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Tornado!", + "year": 1996, + "cast": [ + "Bruce Campbell", + "Shannon Sturges" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Trees Lounge", + "year": 1996, + "cast": [ + "Steve Buscemi", + "Anthony LaPaglia", + "Chloë Sevigny", + "Samuel L. Jackson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Tremors 2: Aftershocks", + "year": 1996, + "cast": [ + "Fred Ward", + "Helen Shaver" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Trigger Effect", + "year": 1996, + "cast": [ + "Kyle MacLachlan", + "Dermot Mulroney", + "Elisabeth Shue" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Trilogy of Terror II", + "year": 1996, + "cast": [ + "Lysette Anthony" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Tromeo and Juliet", + "year": 1996, + "cast": [ + "Jane Jensen", + "Will Keenan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "True Crime", + "year": 1996, + "cast": [ + "Alicia Silverstone", + "Kevin Dillon", + "Bill Nunn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Truth About Cats & Dogs", + "year": 1996, + "cast": [ + "Uma Thurman", + "Janeane Garafalo", + "Ben Chaplin", + "Jamie Foxx" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Twisted Desire", + "year": 1996, + "cast": [ + "Melissa Joan Hart" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Twister", + "year": 1996, + "cast": [ + "Helen Hunt", + "Bill Paxton", + "Jami Gertz", + "Cary Elwes" + ], + "genres": [ + "Disaster" + ] + }, + { + "title": "Two Much", + "year": 1996, + "cast": [ + "Antonio Banderas", + "Melanie Griffith", + "Daryl Hannah", + "Danny Aiello", + "Joan Cusack" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Unforgettable", + "year": 1996, + "cast": [ + "Ray Liotta", + "Linda Fiorentino", + "Peter Coyote", + "Christopher McDonald" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Unhook the Stars", + "year": 1996, + "cast": [ + "Gena Rowlands", + "Marisa Tomei", + "Gérard Depardieu", + "Moira Kelly" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Unlikely Angel", + "year": 1996, + "cast": [ + "Dolly Parton", + "Roddy McDowall" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Up Close & Personal", + "year": 1996, + "cast": [ + "Robert Redford", + "Michelle Pfeiffer", + "Joe Mantegna", + "Stockard Channing", + "Kate Nelligan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Very Brady Sequel", + "year": 1996, + "cast": [ + "Shelley Long", + "Gary Cole", + "Tim Matheson", + "Christine Taylor" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Walking and Talking", + "year": 1996, + "cast": [ + "Catherine Keener", + "Anne Heche", + "Liev Schreiber" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The War at Home", + "year": 1996, + "cast": [ + "Martin Sheen", + "Emilio Estevez" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Watermelon Woman", + "year": 1996, + "cast": [ + "Cheryl Dunye", + "Guinevere Turner", + "Valarie Walker" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Wedding Bell Blues", + "year": 1996, + "cast": [ + "Illeana Douglas", + "Paulina Porizkova" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Werewolf", + "year": 1996, + "cast": [ + "Jorge Rivero" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "When We Were Kings", + "year": 1996, + "cast": [ + "Muhammad Ali", + "George Foreman" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "White Squall", + "year": 1996, + "cast": [ + "Jeff Bridges", + "Ryan Phillippe", + "Scott Wolf" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Whole Wide World", + "year": 1996, + "cast": [ + "Renée Zellweger", + "Vincent D'Onofrio" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Windsor Protocol", + "year": 1996, + "cast": [ + "Kyle MacLachlan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Winner", + "year": 1996, + "cast": [ + "Rebecca De Mornay", + "Michael Madsen", + "Vincent D'Onofrio", + "Billy Bob Thornton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Wish Upon a Star", + "year": 1996, + "cast": [ + "Katherine Heigl", + "Danielle Harris" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Your Studio and You", + "year": 1996, + "cast": [ + "Sylvester Stallone", + "Demi Moore", + "Steven Spielberg" + ], + "genres": [ + "Short" + ] + }, + { + "title": "Zarkorr! The Invader", + "year": 1996, + "cast": [ + "Franklin A. Vallette", + "Don Yanan", + "Peter Looney", + "Dyer McHenry", + "Rees Christian Pugh", + "Torie Lynch", + "Stan Chambers", + "Elizabeth Anderson" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "…First Do No Harm", + "year": 1997, + "cast": [ + "Meryl Streep", + "Fred Ward" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "12 Angry Men", + "year": 1997, + "cast": [ + "Jack Lemmon", + "George C. Scott", + "James Gandolfini", + "Ossie Davis", + "William Petersen", + "Hume Cronyn", + "Edward James Olmos", + "Courtney B. Vance", + "Mykelti Williamson", + "Dorian Harewood", + "Armin Mueller-Stahl", + "Tony Danza" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "20,000 Leagues Under the Sea", + "year": 1997, + "cast": [ + "Ben Cross", + "Richard Crenna" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "20,000 Leagues Under the Sea", + "year": 1997, + "cast": [ + "Michael Caine", + "Patrick Dempsey" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "4 Little Girls", + "year": 1997, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "8 Heads in a Duffel Bag", + "year": 1997, + "cast": [ + "Joe Pesci", + "Andy Comeau", + "Kristy Swanson", + "David Spade", + "Dyan Cannon", + "George Hamilton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Aberration", + "year": 1997, + "cast": [ + "Pamela Gidley" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Absolute Power", + "year": 1997, + "cast": [ + "Clint Eastwood", + "Gene Hackman", + "Ed Harris", + "Laura Linney", + "Judy Davis", + "Scott Glenn", + "E. G. Marshall", + "Dennis Haysbert", + "Melora Hardin", + "Richard Jenkins" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Addicted to Love", + "year": 1997, + "cast": [ + "Meg Ryan", + "Matthew Broderick", + "Kelly Preston", + "Tchéky Karyo" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Afterglow", + "year": 1997, + "cast": [ + "Nick Nolte", + "Julie Christie", + "Lara Flynn Boyle", + "Jonny Lee Miller" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Against the Law", + "year": 1997, + "cast": [ + "Nancy Allen", + "Nick Mancuso" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Air Force One", + "year": 1997, + "cast": [ + "Harrison Ford", + "Glenn Close", + "Gary Oldman" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Alarmist", + "year": 1997, + "cast": [ + "David Arquette", + "Kate Capshaw", + "Stanley Tucci" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Alaska: Spirit of the Wild", + "year": 1997, + "cast": [ + "Alaska" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Albino Alligator", + "year": 1997, + "cast": [ + "Matt Dillon", + "Faye Dunaway", + "Gary Sinise", + "Joe Mantegna" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "Alien Resurrection", + "year": 1997, + "cast": [ + "Sigourney Weaver", + "Winona Ryder", + "Ron Perlman", + "Dan Hedaya" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Alien Nation: The Udara Legacy", + "year": 1997, + "cast": [ + "Gary Graham" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "All Over Me", + "year": 1997, + "cast": [ + "Alison Folland", + "Tara Subkoff" + ], + "genres": [] + }, + { + "title": "American Perfekt", + "year": 1997, + "cast": [ + "Fairuza Balk", + "Robert Forster", + "Amanda Plummer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "An Alan Smithee Film: Burn Hollywood Burn", + "year": 1997, + "cast": [ + "Ryan O'Neal", + "Eric Idle", + "Coolio" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "An American Werewolf in Paris", + "year": 1997, + "cast": [ + "Tom Everett Scott", + "Julie Delpy", + "Vince Vieluf", + "Julie Bowen" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Amistad", + "year": 1997, + "cast": [ + "Morgan Freeman", + "Anthony Hopkins", + "Djimon Hounsou", + "Matthew McConaughey", + "Stellan Skarsgård", + "Anna Paquin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Anaconda", + "year": 1997, + "cast": [ + "Jennifer Lopez", + "Jon Voight", + "Ice Cube", + "Eric Stoltz", + "Owen Wilson", + "Jonathan Hyde", + "Kari Wührer" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Anastasia", + "year": 1997, + "cast": [ + "Meg Ryan", + "John Cusack", + "Kelsey Grammer", + "Hank Azaria", + "Christopher Lloyd", + "Angela Lansbury", + "(voices)" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Angels in the Endzone", + "year": 1997, + "cast": [ + "Christopher Lloyd", + "Paul Dooley" + ], + "genres": [ + "Fantasy", + "Sports" + ] + }, + { + "title": "Anna Karenina", + "year": 1997, + "cast": [ + "Sophie Marceau", + "Sean Bean" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Anthem to Beauty", + "year": 1997, + "cast": [ + "Grateful Dead" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Apostle", + "year": 1997, + "cast": [ + "Robert Duvall", + "Miranda Richardson", + "Farrah Fawcett" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "As Good as It Gets", + "year": 1997, + "cast": [ + "Jack Nicholson", + "Helen Hunt", + "Greg Kinnear", + "Cuba Gooding, Jr.", + "Shirley Knight" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "The Assignment", + "year": 1997, + "cast": [ + "Aidan Quinn", + "Ben Kingsley" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Asteroid", + "year": 1997, + "cast": [ + "Michael Biehn", + "Annabella Sciorra", + "Zachary Charles", + "Don Franklin", + "Carlos Gómez", + "Michael Weatherly", + "Anne-Marie Johnson" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Austin Powers: International Man of Mystery", + "year": 1997, + "cast": [ + "Mike Myers", + "Elizabeth Hurley", + "Michael York", + "Robert Wagner", + "Seth Green", + "Mindy Sterling", + "Mimi Rogers" + ], + "genres": [ + "Spy", + "Comedy" + ] + }, + { + "title": "B*A*P*S", + "year": 1997, + "cast": [ + "Halle Berry", + "Martin Landau" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Back in Business", + "year": 1997, + "cast": [ + "Brian Bosworth", + "Joe Torry" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Bang", + "year": 1997, + "cast": [ + "Darling Narita", + "Peter Greene" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Batman and Robin", + "year": 1997, + "cast": [ + "Arnold Schwarzenegger", + "George Clooney", + "Chris O'Donnell", + "Uma Thurman", + "Alicia Silverstone", + "John Glover", + "Elle Macpherson" + ], + "genres": [ + "Action", + "Superhero" + ] + }, + { + "title": "Bean", + "year": 1997, + "cast": [ + "Rowan Atkinson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Beautician and the Beast", + "year": 1997, + "cast": [ + "Fran Drescher", + "Timothy Dalton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Beauty and the Beast: The Enchanted Christmas", + "year": 1997, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "Below Utopia", + "year": 1997, + "cast": [ + "Alyssa Milano", + "Ice-T" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Best Bad Thing", + "year": 1997, + "cast": [ + "Lana McKissick", + "Robert Ito" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Best Men", + "year": 1997, + "cast": [ + "Fred Ward", + "Drew Barrymore" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Better Place", + "year": 1997, + "cast": [ + "Elon Bailey" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Beverly Hills Ninja", + "year": 1997, + "cast": [ + "Chris Farley", + "Nicollette Sheridan", + "Robin Shou" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Big One", + "year": 1997, + "cast": [ + "Michael Moore" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Black Scorpion II: Aftershock", + "year": 1997, + "cast": [ + "Joan Severance", + "Whip Hubley" + ], + "genres": [ + "Superhero" + ] + }, + { + "title": "The Blood Oranges", + "year": 1997, + "cast": [ + "Sheryl Lee" + ], + "genres": [] + }, + { + "title": "Bloodsport III", + "year": 1997, + "cast": [ + "Daniel Bernhardt", + "John Rhys-Davies" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Bongwater", + "year": 1997, + "cast": [ + "Luke Wilson", + "Jack Black", + "Alicia Witt" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Boogie Boy", + "year": 1997, + "cast": [ + "Traci Lords", + "Frederic Forrest", + "Joan Jett" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Boogie Nights", + "year": 1997, + "cast": [ + "Mark Wahlberg", + "Burt Reynolds", + "Julianne Moore", + "John C. Reilly", + "Don Cheadle", + "Philip Seymour Hoffman", + "Heather Graham", + "Thomas Jane", + "William H. Macy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Booty Call", + "year": 1997, + "cast": [ + "Jamie Foxx", + "Tommy Davidson", + "Vivica A. Fox", + "Tamala Jones" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Boxer", + "year": 1997, + "cast": [ + "Daniel Day-Lewis", + "Emily Watson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Boys Life 2", + "year": 1997, + "cast": [ + "Vincent D'Onofrio", + "Mary Beth Hurt" + ], + "genres": [] + }, + { + "title": "The Brave", + "year": 1997, + "cast": [ + "Johnny Depp", + "Marlon Brando" + ], + "genres": [] + }, + { + "title": "Breakdown", + "year": 1997, + "cast": [ + "Kurt Russell", + "Kathleen Quinlan", + "J. T. Walsh" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Breast Men", + "year": 1997, + "cast": [ + "Chris Cooper", + "David Schwimmer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Broadway Damage", + "year": 1997, + "cast": [ + "Mara Hobel" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Brooklyn State of Mind", + "year": 1997, + "cast": [ + "Vincent Spano", + "Maria Grazia Cucinotta", + "Danny Aiello" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Buddy", + "year": 1997, + "cast": [ + "Rene Russo", + "Robbie Coltrane", + "Alan Cumming" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Butcher Boy", + "year": 1997, + "cast": [ + "Stephen Rea" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Campfire Tales", + "year": 1997, + "cast": [ + "Gunnar Hansen" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Cannibal Rollerbabes", + "year": 1997, + "cast": [], + "genres": [ + "Horror" + ] + }, + { + "title": "Casper: A Spirited Beginning", + "year": 1997, + "cast": [ + "Steve Guttenberg", + "Lori Loughlin", + "Rodney Dangerfield" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Cats Don't Dance", + "year": 1997, + "cast": [], + "genres": [] + }, + { + "title": "Chasing Amy", + "year": 1997, + "cast": [ + "Ben Affleck", + "Joey Lauren Adams", + "Jason Lee", + "Jason Mewes" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Chicago Cab", + "year": 1997, + "cast": [ + "Paul Dillon", + "Gillian Anderson", + "John Cusack", + "Laurie Metcalf", + "Julianne Moore" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Chinese Box", + "year": 1997, + "cast": [ + "Jeremy Irons", + "Gong Li" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Christmas Carol", + "year": 1997, + "cast": [ + "Tim Curry", + "Whoopi Goldberg", + "voices" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "City of Industry", + "year": 1997, + "cast": [ + "Harvey Keitel", + "Stephen Dorff", + "Timothy Hutton", + "Famke Janssen", + "Lucy Liu" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Clockwatchers", + "year": 1997, + "cast": [ + "Toni Collette", + "Lisa Kudrow", + "Parker Posey" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Commandments", + "year": 1997, + "cast": [ + "Aidan Quinn", + "Courteney Cox", + "Anthony LaPaglia" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Common Bonds", + "year": 1997, + "cast": [], + "genres": [] + }, + { + "title": "Con Air", + "year": 1997, + "cast": [ + "Nicolas Cage", + "John Cusack", + "John Malkovich", + "Steve Buscemi", + "Ving Rhames", + "Mykelti Williamson", + "Rachel Ticotin" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Conspiracy Theory", + "year": 1997, + "cast": [ + "Mel Gibson", + "Julia Roberts", + "Patrick Stewart" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Contact", + "year": 1997, + "cast": [ + "Jodie Foster", + "Matthew McConaughey", + "James Woods", + "Angela Bassett", + "John Hurt", + "Tom Skerritt", + "David Morse" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Cop Land", + "year": 1997, + "cast": [ + "Sylvester Stallone", + "Harvey Keitel", + "Ray Liotta", + "Robert De Niro", + "Annabella Sciorra", + "Peter Berg", + "Michael Rapaport" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Coven", + "year": 1997, + "cast": [], + "genres": [ + "Horror" + ] + }, + { + "title": "Crayola Kids Adventures", + "year": 1997, + "cast": [], + "genres": [ + "Family" + ] + }, + { + "title": "The Cremaster Cycle", + "year": 1997, + "cast": [], + "genres": [] + }, + { + "title": "Crossed Swords", + "year": 1997, + "cast": [ + "Oliver Reed", + "Raquel Welch" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Crowned and Dangerous", + "year": 1997, + "cast": [ + "Yasmine Bleeth", + "Jill Clayburgh" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Danger Zone", + "year": 1997, + "cast": [ + "Billy Zane", + "Robert Downey, Jr.", + "Cary-Hiroyuki Tagawa" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Dangerous Ground", + "year": 1997, + "cast": [ + "Ice Cube", + "Elizabeth Hurley" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Dante's Peak", + "year": 1997, + "cast": [ + "Pierce Brosnan", + "Linda Hamilton" + ], + "genres": [ + "Disaster" + ] + }, + { + "title": "Deconstructing Harry", + "year": 1997, + "cast": [ + "Kirstie Alley", + "Richard Benjamin", + "Billy Crystal", + "Judy Davis", + "Julia Louis-Dreyfus", + "Demi Moore" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Def Jam's How to Be a Player", + "year": 1997, + "cast": [ + "Bill Bellamy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Defying Gravity", + "year": 1997, + "cast": [], + "genres": [ + "Drama" + ] + }, + { + "title": "Demolition University", + "year": 1997, + "cast": [ + "Corey Haim", + "Ami Dolenz", + "Laraine Newman" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Detective Conan: The Time-Bombed Skyscraper", + "year": 1997, + "cast": [], + "genres": [ + "Crime" + ] + }, + { + "title": "The Devil's Advocate", + "year": 1997, + "cast": [ + "Keanu Reeves", + "Al Pacino", + "Charlize Theron" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Different Strokes", + "year": 1997, + "cast": [ + "Dana Plato", + "Bentley Mitchum" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dogtown", + "year": 1997, + "cast": [ + "Mary Stuart Masterson", + "Jon Favreau" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Donnie Brasco", + "year": 1997, + "cast": [ + "Al Pacino", + "Johnny Depp", + "Michael Madsen", + "Anne Heche", + "Bruno Kirby" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Double Team", + "year": 1997, + "cast": [ + "Jean-Claude Van Damme", + "Dennis Rodman", + "Mickey Rourke" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Dream with the Fishes", + "year": 1997, + "cast": [ + "David Arquette" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Edge", + "year": 1997, + "cast": [ + "Anthony Hopkins", + "Alec Baldwin", + "Harold Perrineau" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Eight Days a Week", + "year": 1997, + "cast": [ + "Keri Russell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Elevated", + "year": 1997, + "cast": [], + "genres": [ + "Short" + ] + }, + { + "title": "Elvis Meets Nixon", + "year": 1997, + "cast": [ + "Rick Peters", + "Bob Gunton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The End of Violence", + "year": 1997, + "cast": [ + "Bill Pullman", + "Andie MacDowell", + "Gabriel Byrne" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Ernest Goes to Africa", + "year": 1997, + "cast": [ + "Jim Varney" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Eve's Bayou", + "year": 1997, + "cast": [ + "Samuel L. Jackson", + "Lynn Whitfield" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Event Horizon", + "year": 1997, + "cast": [ + "Laurence Fishburne", + "Sam Neill", + "Kathleen Quinlan", + "Joely Richardson", + "Richard T. Jones", + "Jack Noseworthy", + "Jason Isaacs", + "Sean Pertwee" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Ex", + "year": 1997, + "cast": [ + "Yancy Butler", + "Suzy Amis" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "Excess Baggage", + "year": 1997, + "cast": [ + "Alicia Silverstone", + "Benicio del Toro", + "Christopher Walken", + "Harry Connick, Jr." + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Face/Off", + "year": 1997, + "cast": [ + "John Travolta", + "Nicolas Cage", + "Joan Allen", + "Alessandro Nivola", + "Gina Gershon", + "Dominique Swain" + ], + "genres": [ + "Action" + ] + }, + { + "title": "FairyTale: A True Story", + "year": 1997, + "cast": [ + "Peter O'Toole", + "Harvey Keitel" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Fakin' Da Funk", + "year": 1997, + "cast": [ + "Pam Grier", + "Duane Martin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Fast, Cheap and Out of Control", + "year": 1997, + "cast": [ + "profile of 4 unusual occupations" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Fathers' Day", + "year": 1997, + "cast": [ + "Robin Williams", + "Billy Crystal", + "Julia Louis-Dreyfus", + "Nastassja Kinski" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Favorite Son", + "year": 1997, + "cast": [], + "genres": [] + }, + { + "title": "Fierce Creatures", + "year": 1997, + "cast": [ + "John Cleese", + "Jamie Lee Curtis", + "Kevin Kline", + "Michael Palin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Fifth Element", + "year": 1997, + "cast": [ + "Bruce Willis", + "Gary Oldman", + "Milla Jovovich", + "Chris Tucker", + "Ian Holm", + "Luke Perry" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Fire Down Below", + "year": 1997, + "cast": [ + "Steven Seagal", + "Marg Helgenberger", + "Kris Kristofferson", + "Harry Dean Stanton", + "Stephen Lang" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Firehouse", + "year": 1997, + "cast": [ + "Richard Dean Anderson", + "Edie Falco" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Firelight", + "year": 1997, + "cast": [ + "Sophie Marceau" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "First Time Felon", + "year": 1997, + "cast": [ + "Omar Epps", + "Delroy Lindo" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Flash", + "year": 1997, + "cast": [ + "Lucas Black", + "Ellen Burstyn" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Flubber", + "year": 1997, + "cast": [ + "Robin Williams" + ], + "genres": [ + "Comedy", + "Fantasy" + ] + }, + { + "title": "Flying Saucer Rock'n'Roll", + "year": 1997, + "cast": [], + "genres": [ + "Short" + ] + }, + { + "title": "Free Willy 3: The Rescue", + "year": 1997, + "cast": [ + "Jason James Richter" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Fools Rush In", + "year": 1997, + "cast": [ + "Matthew Perry", + "Salma Hayek" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "For Richer or Poorer", + "year": 1997, + "cast": [ + "Tim Allen", + "Kirstie Alley" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Full Tilt Boogie", + "year": 1997, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "Future War", + "year": 1997, + "cast": [ + "Daniel Bernhardt" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "G.I. Jane", + "year": 1997, + "cast": [ + "Demi Moore", + "Viggo Mortensen", + "Anne Bancroft" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Game", + "year": 1997, + "cast": [ + "Michael Douglas", + "Sean Penn", + "James Rebhorn", + "Deborah Kara Unger", + "Carroll Baker" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Gang Related", + "year": 1997, + "cast": [ + "James Belushi", + "Tupac Shakur", + "Lela Rochon" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Gattaca", + "year": 1997, + "cast": [ + "Ethan Hawke", + "Uma Thurman", + "Jude Law" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "George Wallace", + "year": 1997, + "cast": [ + "Gary Sinise", + "Mare Winningham", + "Angelina Jolie" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "George of the Jungle", + "year": 1997, + "cast": [ + "Brendan Fraser", + "Leslie Mann", + "Thomas Haden Church" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Geri's Game", + "year": 1997, + "cast": [], + "genres": [ + "Animated", + "Short" + ] + }, + { + "title": "Get a Clue", + "year": 1997, + "cast": [ + "Ray Walston", + "Diane Ladd", + "Sally Kirkland" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Ghosts", + "year": 1997, + "cast": [ + "Michael Jackson" + ], + "genres": [] + }, + { + "title": "Going All the Way", + "year": 1997, + "cast": [ + "Jeremy Davis", + "Ben Affleck", + "Amy Locane" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Gone Fishin'", + "year": 1997, + "cast": [ + "Joe Pesci", + "Danny Glover", + "Rosanna Arquette", + "Lynn Whitfield" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Good Burger", + "year": 1997, + "cast": [ + "Kenan Thompson", + "Kel Mitchell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Good Will Hunting", + "year": 1997, + "cast": [ + "Matt Damon", + "Robin Williams", + "Ben Affleck", + "Minnie Driver", + "Stellan Skarsgård" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Goodbye America", + "year": 1997, + "cast": [ + "Wolfgang Bodison", + "Corin Nemec" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Grateful Dead: Downhill from Here", + "year": 1997, + "cast": [ + "The Grateful Dead" + ], + "genres": [ + "Performance" + ] + }, + { + "title": "Gridlock'd", + "year": 1997, + "cast": [ + "Tim Roth", + "Tupac Shakur" + ], + "genres": [ + "Comedy", + "Crime" + ] + }, + { + "title": "Grosse Pointe Blank", + "year": 1997, + "cast": [ + "John Cusack", + "Minnie Driver", + "Dan Aykroyd", + "Alan Arkin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hacks", + "year": 1997, + "cast": [ + "Stephen Rea", + "Illeana Douglas", + "John Ritter" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hands on a Hard Body: The Documentary", + "year": 1997, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "Hard Eight", + "year": 1997, + "cast": [ + "Philip Baker Hall", + "John C. Reilly", + "Gwyneth Paltrow" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hav Plenty", + "year": 1997, + "cast": [], + "genres": [ + "Comedy" + ] + }, + { + "title": "Henry Fool", + "year": 1997, + "cast": [ + "Thomas Jay Ryan", + "Parker Posey" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hercules", + "year": 1997, + "cast": [], + "genres": [ + "Family", + "Fantasy" + ] + }, + { + "title": "Highball", + "year": 1997, + "cast": [ + "Justine Bateman", + "Peter Bogdanovich" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hitler", + "year": 1997, + "cast": [], + "genres": [] + }, + { + "title": "Home Alone 3", + "year": 1997, + "cast": [ + "Alex D. Linz" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Honey, We Shrunk Ourselves", + "year": 1997, + "cast": [ + "Rick Moranis" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Hoodlum", + "year": 1997, + "cast": [ + "Laurence Fishburne", + "Tim Roth", + "Vanessa Williams", + "Andy García" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The House of Yes", + "year": 1997, + "cast": [ + "Parker Posey" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hugo Pool", + "year": 1997, + "cast": [ + "Alyssa Milano", + "Patrick Dempsey" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hurricane Streets", + "year": 1997, + "cast": [ + "Heather Matarazzo" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "I Know What You Did Last Summer", + "year": 1997, + "cast": [ + "Jennifer Love Hewitt", + "Sarah Michelle Gellar", + "Ryan Phillippe", + "Freddie Prinze, Jr.", + "Johnny Galecki", + "Bridgette Wilson", + "Anne Heche" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "I Married a Strange Person!", + "year": 1997, + "cast": [], + "genres": [] + }, + { + "title": "I'm Bout It", + "year": 1997, + "cast": [ + "Master P" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Ice Storm", + "year": 1997, + "cast": [ + "Kevin Kline", + "Joan Allen", + "Sigourney Weaver", + "Tobey Maguire", + "Christina Ricci", + "Elijah Wood" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "In & Out", + "year": 1997, + "cast": [ + "Kevin Kline", + "Joan Cusack", + "Tom Selleck", + "Matt Dillon", + "Bob Newhart", + "Debbie Reynolds", + "Wilford Brimley" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "In the Company of Men", + "year": 1997, + "cast": [ + "Aaron Eckhart", + "Matt Molloy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "In the Gloaming", + "year": 1997, + "cast": [ + "Glenn Close", + "Bridget Fonda", + "Whoopi Goldberg", + "Robert Sean Leonard", + "David Strathairn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Inferno", + "year": 1997, + "cast": [ + "Don Wilson" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Informant", + "year": 1997, + "cast": [ + "Cary Elwes", + "Timothy Dalton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Intensity", + "year": 1997, + "cast": [ + "Piper Laurie", + "Molly Parker" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Inventing the Abbotts", + "year": 1997, + "cast": [ + "Liv Tyler", + "Jennifer Connelly", + "Joaquin Phoenix", + "Billy Crudup", + "Joanna Going" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "It's In the Water", + "year": 1997, + "cast": [], + "genres": [ + "Drama" + ] + }, + { + "title": "The Jackal", + "year": 1997, + "cast": [ + "Bruce Willis", + "Richard Gere", + "Sidney Poitier", + "Diane Venora" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Jackie Brown", + "year": 1997, + "cast": [ + "Pam Grier", + "Samuel L. Jackson", + "Robert Forster", + "Robert De Niro", + "Michael Keaton", + "Bridget Fonda", + "Chris Tucker" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Jane Eyre", + "year": 1997, + "cast": [ + "Samantha Morton", + "Ciarán Hinds" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Jungle 2 Jungle", + "year": 1997, + "cast": [ + "Tim Allen", + "Martin Short", + "JoBeth Williams", + "Lolita Davidovich", + "Sam Huntington" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Jungle Emperor Leo", + "year": 1997, + "cast": [], + "genres": [] + }, + { + "title": "Just in Time", + "year": 1997, + "cast": [ + "Mark Moses", + "Brittany Alyse Smith" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Just Write", + "year": 1997, + "cast": [ + "Sherilyn Fenn", + "Jeremy Piven" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Justice League of America", + "year": 1997, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "Keeping the Promise", + "year": 1997, + "cast": [ + "Keith Carradine", + "Annette O'Toole" + ], + "genres": [ + "Family", + "Drama" + ] + }, + { + "title": "Keys to Tulsa", + "year": 1997, + "cast": [ + "James Spader", + "Eric Stoltz", + "Mary Tyler Moore" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Kiss the Girls", + "year": 1997, + "cast": [ + "Morgan Freeman", + "Ashley Judd" + ], + "genres": [ + "Crime", + "Thriller" + ] + }, + { + "title": "Knockin' On Heaven's Door", + "year": 1997, + "cast": [ + "Rutger Hauer" + ], + "genres": [] + }, + { + "title": "Kull the Conqueror", + "year": 1997, + "cast": [ + "Kevin Sorbo", + "Tia Carrere", + "Thomas Ian Griffith", + "Litefoot", + "Harvey Fierstein" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Kundun", + "year": 1997, + "cast": [], + "genres": [ + "Biography" + ] + }, + { + "title": "L.A. Confidential", + "year": 1997, + "cast": [ + "Kevin Spacey", + "Russell Crowe", + "Guy Pearce", + "Kim Basinger", + "Danny DeVito", + "James Cromwell", + "David Strathairn", + "Simon Baker" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Land Before Time V: The Mysterious Island", + "year": 1997, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "Last Stand at Saber River", + "year": 1997, + "cast": [ + "Tom Selleck", + "Keith Carradine", + "Haley Joel Osment" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Last Time I Committed Suicide", + "year": 1997, + "cast": [ + "Thomas Jane", + "Keanu Reeves" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Latter-Day Saints", + "year": 1997, + "cast": [], + "genres": [] + }, + { + "title": "Lawn Dogs", + "year": 1997, + "cast": [ + "Sam Rockwell", + "Mischa Barton", + "Kathleen Quinlan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Leave It to Beaver", + "year": 1997, + "cast": [ + "Christopher McDonald", + "Janine Turner" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Leprechaun 4: In Space", + "year": 1997, + "cast": [ + "Warwick Davis" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Lewis and Clark and George", + "year": 1997, + "cast": [ + "Rose McGowan", + "Dan Gunther" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Liar Liar", + "year": 1997, + "cast": [ + "Jim Carrey", + "Justin Cooper", + "Maura Tierney", + "Cary Elwes", + "Jennifer Tilly", + "Amanda Donohoe" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Liberty!", + "year": 1997, + "cast": [ + "Roger Rees", + "Philip Seymour Hoffman", + "Donna Murphy" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "A Life Less Ordinary", + "year": 1997, + "cast": [ + "Ewan McGregor", + "Cameron Diaz", + "Holly Hunter", + "Delroy Lindo", + "Ian Holm" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Little City", + "year": 1997, + "cast": [ + "Josh Charles", + "Jon Bon Jovi", + "Penelope Ann Miller" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Little Red Riding Hood", + "year": 1997, + "cast": [], + "genres": [ + "Short" + ] + }, + { + "title": "Lolita", + "year": 1997, + "cast": [ + "Dominique Swain", + "Jeremy Irons", + "Frank Langella", + "Melanie Griffith" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Lost Highway", + "year": 1997, + "cast": [ + "Bill Pullman", + "Patricia Arquette", + "Balthazar Getty", + "Robert Loggia", + "Robert Blake" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "The Lost World: Jurassic Park", + "year": 1997, + "cast": [ + "Jeff Goldblum", + "Julianne Moore", + "Pete Postlethwaite", + "Arliss Howard", + "Richard Attenborough" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Love Jones", + "year": 1997, + "cast": [ + "Larenz Tate", + "Nia Long" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Love and Death on Long Island", + "year": 1997, + "cast": [ + "John Hurt", + "Jason Priestley" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Love! Valour! Compassion!", + "year": 1997, + "cast": [ + "Jason Alexander", + "John Glover" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Lovelife", + "year": 1997, + "cast": [ + "Carla Gugino", + "Sherilyn Fenn" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Lucky Three", + "year": 1997, + "cast": [], + "genres": [ + "Short" + ] + }, + { + "title": "MPG: Motion Picture Genocide", + "year": 1997, + "cast": [], + "genres": [] + }, + { + "title": "Mad City", + "year": 1997, + "cast": [ + "Dustin Hoffman", + "John Travolta", + "Mia Kirshner", + "Alan Alda" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Man Who Knew Too Little", + "year": 1997, + "cast": [ + "Bill Murray", + "Joanne Whalley", + "Peter Gallagher" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Masterminds", + "year": 1997, + "cast": [ + "Patrick Stewart", + "Vincent Kartheiser" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The MatchMaker", + "year": 1997, + "cast": [ + "Janeane Garofalo", + "David O'Hara", + "Milo O'Shea", + "Denis Leary" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "McHale's Navy", + "year": 1997, + "cast": [ + "Tom Arnold", + "Tim Curry", + "David Alan Grier", + "Debra Messing" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mean Guns", + "year": 1997, + "cast": [ + "Ice-T", + "Christopher Lambert" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Meet Wally Sparks", + "year": 1997, + "cast": [ + "Rodney Dangerfield", + "Burt Reynolds", + "Cindy Williams" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Member of the Wedding", + "year": 1997, + "cast": [ + "Anna Paquin", + "Alfre Woodard" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Men in Black", + "year": 1997, + "cast": [ + "Will Smith", + "Tommy Lee Jones", + "Vincent D'Onofrio", + "Linda Fiorentino", + "Rip Torn", + "Tony Shalhoub" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Men with Guns", + "year": 1997, + "cast": [ + "Mandy Patinkin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Metro", + "year": 1997, + "cast": [ + "Eddie Murphy", + "Michael Wincott", + "Michael Rapaport" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Midas Touch", + "year": 1997, + "cast": [ + "Trever O'Brien" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Midnight in the Garden of Good and Evil", + "year": 1997, + "cast": [ + "Kevin Spacey", + "John Cusack", + "Jude Law" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Mighty Ducks the Movie: The First Face-Off", + "year": 1997, + "cast": [ + "voices of", + "Brad Garrett", + "James Belushi", + "Tim Curry" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Mimic", + "year": 1997, + "cast": [ + "Mira Sorvino", + "Jeremy Northam", + "Josh Brolin", + "Charles S. Dutton", + "Giancarlo Giannini", + "F. Murray Abraham" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Miss Evers' Boys", + "year": 1997, + "cast": [ + "Alfre Woodard", + "Laurence Fishburne" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Money Talks", + "year": 1997, + "cast": [ + "Chris Tucker", + "Charlie Sheen", + "Heather Locklear" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Monty Roberts: A Real Horse Whisperer", + "year": 1997, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "Mortal Kombat: Annihilation", + "year": 1997, + "cast": [ + "Robin Shou", + "Talisa Soto", + "Sandra Hess", + "James Remar" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Most Wanted", + "year": 1997, + "cast": [ + "Keenen Ivory Wayans", + "Jon Voight", + "Jill Hennessy" + ], + "genres": [ + "Action" + ] + }, + { + "title": "MouseHunt", + "year": 1997, + "cast": [ + "Nathan Lane", + "Lee Evans", + "Christopher Walken", + "Maury Chaykin", + "William Hickey" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mr. Magoo", + "year": 1997, + "cast": [ + "Leslie Nielsen", + "Miguel Ferrer", + "Kelly Lynch", + "Malcolm McDowell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mrs Dalloway", + "year": 1997, + "cast": [ + "Vanessa Redgrave", + "Natascha McElhone" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Murder at 1600", + "year": 1997, + "cast": [ + "Wesley Snipes", + "Diane Lane" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "My Best Friend's Wedding", + "year": 1997, + "cast": [ + "Julia Roberts", + "Dermot Mulroney", + "Cameron Diaz", + "Rupert Everett" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "My Teacher Ate My Homework", + "year": 1997, + "cast": [ + "Shelley Duvall", + "Sheila McCarthy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Myth of Fingerprints", + "year": 1997, + "cast": [ + "Blythe Danner", + "James LeGros", + "Julianne Moore", + "Roy Scheider" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Nevada", + "year": 1997, + "cast": [ + "Amy Brenneman", + "Kirstie Alley", + "Gabrielle Anwar" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Niagara, Niagara", + "year": 1997, + "cast": [ + "Henry Thomas", + "Robin Tunney", + "Stephen Lang" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Night Falls on Manhattan", + "year": 1997, + "cast": [ + "Andy García", + "Richard Dreyfuss", + "Lena Olin", + "Ian Holm", + "Ron Leibman", + "James Gandolfini" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Night Flier", + "year": 1997, + "cast": [ + "Miguel Ferrer" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Night of the Demons 3", + "year": 1997, + "cast": [], + "genres": [ + "Horror" + ] + }, + { + "title": "Nightwatch", + "year": 1997, + "cast": [ + "Ewan McGregor", + "Patricia Arquette", + "Nick Nolte" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Northern Lights", + "year": 1997, + "cast": [ + "Diane Keaton" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Nothing to Lose", + "year": 1997, + "cast": [ + "Martin Lawrence", + "Tim Robbins", + "Kelly Preston" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Nowhere", + "year": 1997, + "cast": [], + "genres": [ + "Drama" + ] + }, + { + "title": "The Odyssey", + "year": 1997, + "cast": [ + "Armand Assante", + "Isabella Rossellini", + "Greta Scacchi", + "Eric Roberts", + "Vanessa L. Williams" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Office Killer", + "year": 1997, + "cast": [ + "Carol Kane", + "Molly Ringwald", + "Jeanne Tripplehorn" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Oliver Twist", + "year": 1997, + "cast": [ + "Richard Dreyfuss", + "Elijah Wood" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Omega Doom", + "year": 1997, + "cast": [ + "Rutger Hauer" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "On the 2nd Day of Christmas", + "year": 1997, + "cast": [ + "Mary Stuart Masterson", + "Mark Ruffalo" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "On the Edge of Innocence", + "year": 1997, + "cast": [ + "Kellie Martin", + "Karen Young" + ], + "genres": [] + }, + { + "title": "One Eight Seven", + "year": 1997, + "cast": [ + "Samuel L. Jackson", + "John Heard" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "One Night Stand", + "year": 1997, + "cast": [ + "Wesley Snipes", + "Nastassja Kinski", + "Kyle MacLachlan", + "Ming-Na Wen", + "Robert Downey, Jr.", + "Glenn Plummer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Orgazmo", + "year": 1997, + "cast": [ + "Trey Parker", + "Dian Bachar", + "Robyn Lynne Raab", + "Michael Dean Jacobs", + "Matt Stone" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Oscar and Lucinda", + "year": 1997, + "cast": [ + "Ralph Fiennes", + "Cate Blanchett", + "Tom Wilkinson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Out to Sea", + "year": 1997, + "cast": [ + "Jack Lemmon", + "Walter Matthau", + "Dyan Cannon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Painted Angels", + "year": 1997, + "cast": [ + "Brenda Fricker", + "Kelly McGillis" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Paradise Road", + "year": 1997, + "cast": [ + "Glenn Close", + "Frances McDormand", + "Julianna Margulies" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "The Peacemaker", + "year": 1997, + "cast": [ + "George Clooney", + "Nicole Kidman" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Perfect Body", + "year": 1997, + "cast": [ + "Amy Jo Johnson", + "Cathy Rigby" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Pest", + "year": 1997, + "cast": [ + "John Leguizamo", + "Freddy Rodriguez" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Picture Perfect", + "year": 1997, + "cast": [ + "Jennifer Aniston", + "Jay Mohr", + "Kevin Bacon" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Playing God", + "year": 1997, + "cast": [ + "David Duchovny", + "Timothy Hutton", + "Angelina Jolie" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Poison Ivy: The New Seduction", + "year": 1997, + "cast": [ + "Jaime Pressly" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "Police 2020", + "year": 1997, + "cast": [], + "genres": [] + }, + { + "title": "Pooh's Grand Adventure: The Search for Christopher Robin", + "year": 1997, + "cast": [ + "Jim Cummings", + "John Fielder", + "Ken Sansom", + "Andre Stojka", + "Peter Cullen", + "David Warner", + "Paul Winchell" + ], + "genres": [ + "Family", + "Animated" + ] + }, + { + "title": "The Postman", + "year": 1997, + "cast": [ + "Kevin Costner", + "Olivia Williams", + "Larenz Tate", + "Will Patton" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Preaching to the Perverted", + "year": 1997, + "cast": [], + "genres": [] + }, + { + "title": "Prefontaine", + "year": 1997, + "cast": [ + "Jared Leto", + "R. Lee Ermey", + "Ed O'Neill" + ], + "genres": [ + "Biography", + "Drama" + ] + }, + { + "title": "Pressurecooker", + "year": 1997, + "cast": [], + "genres": [] + }, + { + "title": "Private Parts", + "year": 1997, + "cast": [ + "Howard Stern", + "Robin Quivers", + "Mary McCormack", + "Paul Giamatti", + "Allison Janney" + ], + "genres": [ + "Biography", + "Comedy" + ] + }, + { + "title": "Pullet Surprise", + "year": 1997, + "cast": [], + "genres": [] + }, + { + "title": "Quicksilver Highway", + "year": 1997, + "cast": [ + "Christopher Lloyd" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Quiet Days in Hollywood", + "year": 1997, + "cast": [ + "Hilary Swank", + "Chad Lowe", + "Natasha Gregson Wagner" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Rainmaker", + "year": 1997, + "cast": [ + "Matt Damon", + "Claire Danes", + "Danny DeVito", + "Jon Voight", + "Mary Kay Place", + "Mickey Rourke", + "Danny Glover", + "Virginia Madsen", + "Roy Scheider" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Red Corner", + "year": 1997, + "cast": [ + "Richard Gere", + "Bai Ling" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Relic", + "year": 1997, + "cast": [ + "Penelope Ann Miller", + "Tom Sizemore", + "Linda Hunt", + "James Whitmore" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "A River Made to Drown In", + "year": 1997, + "cast": [ + "Michael Imperioli", + "Richard Chamberlain" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Robinson Crusoe", + "year": 1997, + "cast": [ + "Pierce Brosnan" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "RocketMan", + "year": 1997, + "cast": [ + "Harland Williams", + "Jessica Lundy", + "William Sadler" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Romy and Michele's High School Reunion", + "year": 1997, + "cast": [ + "Mira Sorvino", + "Lisa Kudrow", + "Janeane Garofalo" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Rosewood", + "year": 1997, + "cast": [ + "Jon Voight", + "Ving Rhames", + "Don Cheadle", + "Bruce McGill", + "Loren Dean", + "Esther Rolle", + "Elise Neal" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Rough Riders", + "year": 1997, + "cast": [ + "Tom Berenger", + "Chris Noth", + "Gary Busey", + "Sam Elliott" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Running Time", + "year": 1997, + "cast": [ + "Bruce Campbell" + ], + "genres": [] + }, + { + "title": "Sick: The Life and Death of Bob Flanagan, Supermasochist", + "year": 1997, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Saint", + "year": 1997, + "cast": [ + "Val Kilmer", + "Elisabeth Shue" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Saint-Ex", + "year": 1997, + "cast": [ + "Bruno Ganz", + "Miranda Richardson" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Scream 2", + "year": 1997, + "cast": [ + "David Arquette", + "Neve Campbell", + "Courteney Cox", + "Omar Epps", + "Sarah Michelle Gellar", + "Laurie Metcalf", + "Jerry O'Connell", + "Timothy Olyphant", + "Jada Pinkett" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Second Jungle Book: Mowgli & Baloo", + "year": 1997, + "cast": [], + "genres": [] + }, + { + "title": "Selena", + "year": 1997, + "cast": [ + "Jennifer Lopez", + "Edward James Olmos" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Seven Years in Tibet", + "year": 1997, + "cast": [ + "Brad Pitt", + "David Thewlis", + "Victor Wong", + "Lhakpa Tsamchoe" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Shadow Conspiracy", + "year": 1997, + "cast": [ + "Charlie Sheen", + "Donald Sutherland", + "Linda Hamilton", + "Sam Waterston", + "Stephen Lang", + "Ben Gazzara" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "She's So Lovely", + "year": 1997, + "cast": [ + "Sean Penn", + "Robin Wright Penn", + "John Travolta" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Shrieker", + "year": 1997, + "cast": [], + "genres": [ + "Horror" + ] + }, + { + "title": "A Simple Wish", + "year": 1997, + "cast": [ + "Martin Short", + "Mara Wilson", + "Kathleen Turner" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Six Ways to Sunday", + "year": 1997, + "cast": [ + "Adrien Brody", + "Deborah Harry" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The 6th Man", + "year": 1997, + "cast": [ + "Marlon Wayans", + "Kadeem Hardison" + ], + "genres": [] + }, + { + "title": "A Smile Like Yours", + "year": 1997, + "cast": [ + "Greg Kinnear", + "Lauren Holly", + "Joan Cusack" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Snow White: A Tale of Terror", + "year": 1997, + "cast": [ + "Sigourney Weaver", + "Monica Keena", + "Sam Neill" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Soul Food", + "year": 1997, + "cast": [ + "Vanessa L. Williams", + "Vivica A. Fox", + "Nia Long", + "Michael Beach" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Space Marines", + "year": 1997, + "cast": [], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Spaceman", + "year": 1997, + "cast": [], + "genres": [] + }, + { + "title": "The Spanish Prisoner", + "year": 1997, + "cast": [ + "Campbell Scott", + "Steve Martin", + "Rebecca Pidgeon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Spawn", + "year": 1997, + "cast": [ + "Michael Jai White", + "John Leguizamo", + "Martin Sheen", + "Theresa Randle", + "Nicol Williamson", + "D. B. Sweeney" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Speed 2: Cruise Control", + "year": 1997, + "cast": [ + "Sandra Bullock", + "Jason Patric", + "Willem Dafoe" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Sprung", + "year": 1997, + "cast": [ + "Tisha Campbell", + "Paula Jai Parker" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Star Kid", + "year": 1997, + "cast": [ + "Joseph Mazzello", + "Richard Gilliland" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Starship Troopers", + "year": 1997, + "cast": [ + "Casper Van Dien", + "Dina Meyer", + "Denise Richards", + "Jake Busey", + "Neil Patrick Harris", + "Patrick Muldoon" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Steel", + "year": 1997, + "cast": [ + "Shaquille O'Neal", + "Annabeth Gish", + "Judd Nelson", + "Richard Roundtree", + "Ray J" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Stranger in the House", + "year": 1997, + "cast": [ + "Michele Greene", + "Steve Railsback" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "Strategic Command", + "year": 1997, + "cast": [], + "genres": [] + }, + { + "title": "Strawberry Fields", + "year": 1997, + "cast": [], + "genres": [] + }, + { + "title": "Suicide Kings", + "year": 1997, + "cast": [ + "Christopher Walken", + "Denis Leary", + "Henry Thomas" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sunday", + "year": 1997, + "cast": [ + "David Suchet", + "Lisa Harrow", + "Jared Harris" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Super Speedway", + "year": 1997, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Swan Princess II: Escape from Castle Mountain", + "year": 1997, + "cast": [], + "genres": [] + }, + { + "title": "Swept from the Sea", + "year": 1997, + "cast": [ + "Rachel Weisz", + "Ian McKellen", + "Kathy Bates" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Switchback", + "year": 1997, + "cast": [ + "Dennis Quaid", + "Danny Glover", + "Jared Leto" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Telling Lies in America", + "year": 1997, + "cast": [ + "Kevin Bacon", + "Brad Renfro" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "That Darn Cat", + "year": 1997, + "cast": [ + "Christina Ricci", + "Doug E. Doug" + ], + "genres": [ + "Family" + ] + }, + { + "title": "That Old Feeling", + "year": 1997, + "cast": [ + "Bette Midler", + "Dennis Farina" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "This World, Then the Fireworks", + "year": 1997, + "cast": [ + "Billy Zane", + "Gina Gershon", + "Sheryl Lee" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Thousand Acres", + "year": 1997, + "cast": [ + "Jessica Lange", + "Michelle Pfeiffer", + "Jennifer Jason Leigh", + "Jason Robards", + "Colin Firth" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "'Til There Was You", + "year": 1997, + "cast": [ + "Jeanne Tripplehorn", + "Dylan McDermott", + "Sarah Jessica Parker" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Titanic", + "year": 1997, + "cast": [ + "Leonardo DiCaprio", + "Kate Winslet", + "Billy Zane", + "Frances Fisher", + "Victor Garber", + "Kathy Bates", + "Bill Paxton", + "Gloria Stuart", + "David Warner", + "Suzy Amis" + ], + "genres": [ + "Historical", + "Disaster" + ] + }, + { + "title": "Top of the World", + "year": 1997, + "cast": [ + "Peter Weller", + "Dennis Hopper" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Touch", + "year": 1997, + "cast": [ + "Bridget Fonda", + "Christopher Walken", + "Skeet Ulrich", + "Tom Arnold", + "Gina Gershon", + "Lolita Davidovich" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Toothless", + "year": 1997, + "cast": [], + "genres": [ + "Family" + ] + }, + { + "title": "Touch Me", + "year": 1997, + "cast": [ + "Amanda Peet", + "Michael Vartan", + "Peter Facinelli" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Tower of Terror", + "year": 1997, + "cast": [ + "Steve Guttenberg", + "Kirsten Dunst" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Traveller", + "year": 1997, + "cast": [ + "Bill Paxton", + "Mark Wahlberg", + "Julianna Margulies" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Trekkies", + "year": 1997, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "Trial and Error", + "year": 1997, + "cast": [ + "Michael Richards", + "Jeff Daniels", + "Charlize Theron" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Trojan War", + "year": 1997, + "cast": [ + "Will Friedle", + "Jennifer Love Hewitt" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Truth or Consequences, N.M.", + "year": 1997, + "cast": [ + "Kiefer Sutherland", + "Kevin Pollak", + "Kim Dickens", + "Grace Phillips" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Turbo: A Power Rangers Movie", + "year": 1997, + "cast": [ + "Johnny Yong Bosch", + "Nakia Burrise", + "Jason David Frank", + "Catherine Sutherland" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Turbulence", + "year": 1997, + "cast": [ + "Ray Liotta", + "Lauren Holly", + "Hector Elizondo", + "Rachel Ticotin", + "Catherine Hicks", + "Brendan Gleeson" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Twilight of the Golds", + "year": 1997, + "cast": [ + "Jennifer Beals", + "Brendan Fraser" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Twisted", + "year": 1997, + "cast": [ + "William Hickey", + "Billy Porter" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "U Turn", + "year": 1997, + "cast": [ + "Sean Penn", + "Jennifer Lopez", + "Nick Nolte", + "Powers Boothe", + "Jon Voight", + "Joaquin Phoenix", + "Claire Danes", + "Billy Bob Thornton" + ], + "genres": [ + "Thriller", + "Comedy" + ] + }, + { + "title": "Ulee's Gold", + "year": 1997, + "cast": [ + "Peter Fonda", + "Patricia Richardson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Under Wraps", + "year": 1997, + "cast": [ + "Adam Wylie", + "Ed Lauter" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Vampire Journals", + "year": 1997, + "cast": [], + "genres": [ + "Horror" + ] + }, + { + "title": "Vanishing Point", + "year": 1997, + "cast": [ + "Viggo Mortensen", + "Jason Priestley", + "Keith David" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Vegas Vacation", + "year": 1997, + "cast": [ + "Chevy Chase", + "Beverly D'Angelo", + "Randy Quaid", + "Ethan Embry", + "Marisol Nichols" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Velocity Trap", + "year": 1997, + "cast": [ + "Olivier Gruner", + "Craig Wasson" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Volcano", + "year": 1997, + "cast": [ + "Tommy Lee Jones", + "Anne Heche", + "Gaby Hoffmann", + "Don Cheadle", + "Keith David" + ], + "genres": [ + "Disaster" + ] + }, + { + "title": "Waco: The Rules of Engagement", + "year": 1997, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "Wag the Dog", + "year": 1997, + "cast": [ + "Dustin Hoffman", + "Robert De Niro", + "Woody Harrelson", + "Anne Heche", + "Denis Leary", + "Willie Nelson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Waiting for Guffman", + "year": 1997, + "cast": [ + "Eugene Levy", + "Catherine O'Hara", + "Christopher Guest", + "Fred Willard", + "Parker Posey" + ], + "genres": [ + "Satire" + ] + }, + { + "title": "Warriors of Virtue", + "year": 1997, + "cast": [], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Washington Square", + "year": 1997, + "cast": [ + "Jennifer Jason Leigh", + "Albert Finney", + "Maggie Smith" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Weapons of Mass Distraction", + "year": 1997, + "cast": [ + "Ben Kingsley", + "Gabriel Byrne", + "Mimi Rogers", + "Jeffrey Tambor", + "Chris Mulkey", + "Illeana Douglas" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Welcome to Sarajevo", + "year": 1997, + "cast": [ + "Stephen Dillane", + "Woody Harrelson", + "Marisa Tomei" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "What the Deaf Man Heard", + "year": 1997, + "cast": [ + "Matthew Modine", + "James Earl Jones" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Wild America", + "year": 1997, + "cast": [ + "Jonathan Taylor Thomas", + "Devon Sawa", + "Scott Bairstow" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Wings of the Dove", + "year": 1997, + "cast": [ + "Helena Bonham Carter", + "Linus Roache", + "Alison Elliott" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Winter Guest", + "year": 1997, + "cast": [ + "Emma Thompson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Wishmaster", + "year": 1997, + "cast": [ + "Tammy Lauren", + "Chris Lemmon" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Woodlanders", + "year": 1997, + "cast": [ + "Rufus Sewell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Wrong Guy", + "year": 1997, + "cast": [ + "Dave Foley", + "Jennifer Tilly", + "David Higgins", + "Colm Feore" + ], + "genres": [ + "Comedy", + "Crime" + ] + }, + { + "title": "Year of the Horse", + "year": 1997, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "Young Thugs: Innocent Blood", + "year": 1997, + "cast": [], + "genres": [] + }, + { + "title": "Young and Dangerous 4", + "year": 1997, + "cast": [ + "Ekin Cheng", + "Jordan Chan" + ], + "genres": [] + }, + { + "title": "Zeus and Roxanne", + "year": 1997, + "cast": [ + "Steve Guttenberg", + "Kathleen Quinlan" + ], + "genres": [ + "Family" + ] + }, + { + "title": "20 Dates", + "year": 1998, + "cast": [ + "Myles Berkowitz", + "Elisabeth Wagner", + "Tia Carrere" + ], + "genres": [ + "Satire" + ] + }, + { + "title": "54", + "year": 1998, + "cast": [ + "Ryan Phillippe", + "Salma Hayek", + "Mike Myers", + "Neve Campbell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Addams Family Reunion", + "year": 1998, + "cast": [ + "Tim Curry", + "Daryl Hannah" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Adventures of Sebastian Cole", + "year": 1998, + "cast": [ + "Adrian Grenier", + "Margaret Colin", + "Clark Gregg", + "John Shea" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Almost Heroes", + "year": 1998, + "cast": [ + "Chris Farley", + "Matthew Perry", + "Bokeem Woodbine", + "Eugene Levy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Ambushed", + "year": 1998, + "cast": [ + "Courtney B. Vance", + "Jeremy Lelliott", + "Virginia Madsen" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "American History X", + "year": 1998, + "cast": [ + "Edward Norton", + "Edward Furlong", + "Beverly D'Angelo", + "Elliott Gould", + "Stacy Keach", + "Fairuza Balk", + "Jennifer Lien", + "Avery Brooks" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "An Alan Smithee Film: Burn Hollywood Burn", + "year": 1998, + "cast": [ + "Ryan O'Neal", + "Coolio", + "Eric Idle" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Another Day in Paradise", + "year": 1998, + "cast": [ + "James Woods", + "Melanie Griffith", + "Peter Sarsgaard" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Antz", + "year": 1998, + "cast": [ + "Voices of", + "Woody Allen", + "Gene Hackman", + "Jennifer Lopez", + "Danny Glover", + "Dan Aykroyd", + "Jane Curtin", + "Sylvester Stallone", + "Sharon Stone" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Apt Pupil", + "year": 1998, + "cast": [ + "Ian McKellen", + "Brad Renfro", + "Joshua Jackson" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Armageddon", + "year": 1998, + "cast": [ + "Bruce Willis", + "Ben Affleck", + "Liv Tyler", + "Billy Bob Thornton", + "Will Patton", + "Steve Buscemi", + "Michael Clarke Duncan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Avengers", + "year": 1998, + "cast": [ + "Ralph Fiennes", + "Uma Thurman", + "Sean Connery", + "Jim Broadbent", + "Fiona Shaw", + "Eddie Izzard" + ], + "genres": [ + "Action" + ] + }, + { + "title": "B. Monkey", + "year": 1998, + "cast": [ + "Jared Harris", + "Asia Argento", + "Rupert Everett" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Babe: Pig in the City", + "year": 1998, + "cast": [ + "James Cromwell", + "Magda Szubanski", + "Mickey Rooney" + ], + "genres": [ + "Family" + ] + }, + { + "title": "BASEketball", + "year": 1998, + "cast": [ + "Trey Parker", + "Matt Stone", + "Yasmine Bleeth", + "Jenny McCarthy", + "Robert Vaughn", + "Ernest Borgnine", + "Bob Costas", + "Al Michaels" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Belly", + "year": 1998, + "cast": [ + "Nas", + "Tionne \"T-Boz\" Watkins", + "Method Man" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Beloved", + "year": 1998, + "cast": [ + "Oprah Winfrey", + "Danny Glover", + "Thandie Newton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Big Hit", + "year": 1998, + "cast": [ + "Mark Wahlberg", + "Lou Diamond Phillips", + "Bokeem Woodbine", + "Antonio Sabàto, Jr." + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Big Lebowski", + "year": 1998, + "cast": [ + "Jeff Bridges", + "John Goodman", + "Julianne Moore", + "Steve Buscemi", + "John Turturro", + "Tara Reid", + "Ben Gazzara" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Billy's Hollywood Screen Kiss", + "year": 1998, + "cast": [ + "Sean Hayes", + "Brad Rowe", + "Paul Bartel" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Black Dog", + "year": 1998, + "cast": [ + "Patrick Swayze", + "Charles S. Dutton", + "Randy Travis", + "Gabriel Casseus", + "Meat Loaf" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Blade", + "year": 1998, + "cast": [ + "Wesley Snipes", + "Stephen Dorff", + "Kris Kristofferson" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Blues Brothers 2000", + "year": 1998, + "cast": [ + "Dan Aykroyd", + "John Goodman", + "Joe Morton", + "J. Evan Bonifant", + "Nia Peeples" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Break Up", + "year": 1998, + "cast": [ + "Bridget Fonda", + "Hart Bochner", + "Kiefer Sutherland" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Bride of Chucky", + "year": 1998, + "cast": [ + "Jennifer Tilly", + "Katherine Heigl", + "Nick Stabile", + "John Ritter" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Broken Vessels", + "year": 1998, + "cast": [ + "Todd Field", + "Jason London", + "Roxana Zal" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Brown's Requiem", + "year": 1998, + "cast": [ + "Michael Rooker", + "Selma Blair", + "Will Sasso" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Buffalo '66", + "year": 1998, + "cast": [ + "Vincent Gallo", + "Christina Ricci", + "Ben Gazzara" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Bug's Life", + "year": 1998, + "cast": [ + "Voices of", + "Dave Foley", + "Kevin Spacey", + "Julia Louis-Dreyfus" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Bulworth", + "year": 1998, + "cast": [ + "Warren Beatty", + "Halle Berry", + "Oliver Platt", + "Don Cheadle", + "Paul Sorvino", + "Isaiah Washington" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Can't Hardly Wait", + "year": 1998, + "cast": [ + "Jennifer Love Hewitt", + "Ethan Embry", + "Charlie Korsmo", + "Lauren Ambrose", + "Peter Facinelli", + "Seth Green" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Casper Meets Wendy", + "year": 1998, + "cast": [ + "Hilary Duff", + "Cathy Moriarty-Gentile", + "Shelley Duvall", + "Teri Garr" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Caught Up", + "year": 1998, + "cast": [ + "Bokeem Woodbine", + "Cynda Williams", + "Snoop Dogg" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Celebrity", + "year": 1998, + "cast": [ + "Kenneth Branagh", + "Judy Davis", + "Bebe Neuwirth", + "Charlize Theron", + "Leonardo DiCaprio" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Chairman of the Board", + "year": 1998, + "cast": [ + "Carrot Top", + "Courtney Thorne-Smith" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "City of Angels", + "year": 1998, + "cast": [ + "Nicolas Cage", + "Meg Ryan", + "Andre Braugher", + "Dennis Franz" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "A Civil Action", + "year": 1998, + "cast": [ + "John Travolta", + "Robert Duvall", + "William H. Macy", + "Tony Shalhoub", + "Kathleen Quinlan", + "John Lithgow", + "Dan Hedaya", + "Sydney Pollack", + "James Gandolfini" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Clay Pigeons", + "year": 1998, + "cast": [ + "Joaquin Phoenix", + "Janeane Garofalo", + "Georgina Cates", + "Vince Vaughn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Cousin Bette", + "year": 1998, + "cast": [ + "Jessica Lange", + "Elisabeth Shue", + "Hugh Laurie", + "Bob Hoskins" + ], + "genres": [ + "Historical", + "Drama" + ] + }, + { + "title": "Curse of the Puppet Master", + "year": 1998, + "cast": [ + "George Peck", + "Emily Harrison", + "Josh Green" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Curve", + "year": 1998, + "cast": [ + "Matthew Lillard", + "Michael Vartan", + "Randall Batinkoff", + "Keri Russell" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Dance with Me", + "year": 1998, + "cast": [ + "Vanessa L. Williams", + "Chayanne", + "Kris Kristofferson", + "Joan Plowright" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Dancer, Texas Pop. 81", + "year": 1998, + "cast": [ + "Ethan Embry", + "Patricia Wettig", + "Ashley Johnson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Dancing at Lughnasa", + "year": 1998, + "cast": [ + "Meryl Streep", + "Catherine McCormack", + "Kathy Burke" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Dangerous Beauty", + "year": 1998, + "cast": [ + "Catherine McCormack", + "Oliver Platt", + "Fred Ward" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dark City", + "year": 1998, + "cast": [ + "Jennifer Connelly", + "William Hurt", + "Rufus Sewell", + "Kiefer Sutherland" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Dead Man on Campus", + "year": 1998, + "cast": [ + "Mark-Paul Gosselaar", + "Tom Everett Scott" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Deep Impact", + "year": 1998, + "cast": [ + "Robert Duvall", + "Téa Leoni", + "Morgan Freeman", + "Elijah Wood", + "Vanessa Redgrave", + "Maximilian Schell", + "Leelee Sobieski" + ], + "genres": [ + "Disaster" + ] + }, + { + "title": "Deep Rising", + "year": 1998, + "cast": [ + "Treat Williams", + "Famke Janssen", + "Wes Studi", + "Kevin J. O'Connor", + "Anthony Heald", + "Jason Flemyng", + "Djimon Hounsou", + "Clifton Powell", + "Derrick O'Connor" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Dennis the Menace Strikes Again", + "year": 1998, + "cast": [ + "Justin Cooper", + "Don Rickles", + "Betty White", + "George Kennedy", + "Brian Doyle-Murray", + "Scott 'Carrot Top' Thompson" + ], + "genres": [ + "Family" + ] + }, + { + "title": "The Dentist 2", + "year": 1998, + "cast": [ + "Corbin Bernsen", + "Jillian McWhirter" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Desert Blue", + "year": 1998, + "cast": [ + "Brendan Sexton III", + "Kate Hudson", + "Casey Affleck", + "Christina Ricci" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Desperate Measures", + "year": 1998, + "cast": [ + "Michael Keaton", + "Andy García", + "Marcia Gay Harden", + "Brian Cox" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Digging to China", + "year": 1998, + "cast": [ + "Evan Rachel Wood", + "Kevin Bacon", + "Mary Stuart Masterson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dirty Work", + "year": 1998, + "cast": [ + "Norm Macdonald", + "Jack Warden", + "Don Rickles", + "Chevy Chase", + "Chris Farley" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Disturbing Behavior", + "year": 1998, + "cast": [ + "James Marsden", + "Katie Holmes", + "Nick Stahl", + "William Sadler" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Dr. Dolittle", + "year": 1998, + "cast": [ + "Eddie Murphy", + "Ossie Davis", + "Richard Schiff" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Down in the Delta", + "year": 1998, + "cast": [ + "Alfre Woodard", + "Loretta Devine", + "Esther Rolle" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Drive", + "year": 1998, + "cast": [ + "Mark Dacascos", + "Tracey Walter", + "Brittany Murphy" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Edge of Seventeen", + "year": 1998, + "cast": [ + "Chris Stafford", + "Lea DeLaria", + "Tina Holmes" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Eighteenth Angel", + "year": 1998, + "cast": [ + "Rachael Leigh Cook", + "Christopher McDonald", + "Stanley Tucci" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Enemy of the State", + "year": 1998, + "cast": [ + "Will Smith", + "Gene Hackman", + "Jon Voight", + "Barry Pepper", + "Regina King", + "Lisa Bonet" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Ever After", + "year": 1998, + "cast": [ + "Drew Barrymore", + "Dougray Scott", + "Anjelica Huston" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "The Faculty", + "year": 1998, + "cast": [ + "Elijah Wood", + "Jordana Brewster", + "Clea DuVall", + "Laura Harris", + "Josh Hartnett", + "Shawn Hatosy", + "Salma Hayek", + "Usher Raymond", + "Famke Janssen", + "Piper Laurie" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Fallen", + "year": 1998, + "cast": [ + "Denzel Washington", + "John Goodman", + "Embeth Davidtz", + "James Gandolfini" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Farm: Angola, USA", + "year": 1998, + "cast": [ + "Narrated by", + "Bernard Addison" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Fear and Loathing in Las Vegas", + "year": 1998, + "cast": [ + "Johnny Depp", + "Benicio del Toro" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Finding Graceland", + "year": 1998, + "cast": [ + "Harvey Keitel", + "Johnathon Schaech", + "Bridget Fonda", + "Gretchen Mol" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Firestorm", + "year": 1998, + "cast": [ + "Howie Long", + "Scott Glenn", + "William Forsythe", + "Suzy Amis" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Gingerbread Man", + "year": 1998, + "cast": [ + "Kenneth Branagh", + "Robert Downey, Jr.", + "Embeth Davidtz", + "Robert Duvall", + "Daryl Hannah", + "Tom Berenger" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "God Said \"Ha!\"", + "year": 1998, + "cast": [ + "Julia Sweeney" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Gods and Monsters", + "year": 1998, + "cast": [ + "Ian McKellen", + "Brendan Fraser", + "Lynn Redgrave", + "Lolita Davidovich" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "The Godson", + "year": 1998, + "cast": [ + "Rodney Dangerfield", + "Kevin McDonald", + "Dom DeLuise" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Godzilla", + "year": 1998, + "cast": [ + "Matthew Broderick", + "Jean Reno", + "Maria Pitillo", + "Hank Azaria", + "Vicki Lewis", + "Kevin Dunn", + "Harry Shearer" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Goodbye Lover", + "year": 1998, + "cast": [ + "Patricia Arquette", + "Dermot Mulroney", + "Mary-Louise Parker", + "Ellen DeGeneres" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Great Expectations", + "year": 1998, + "cast": [ + "Ethan Hawke", + "Gwyneth Paltrow", + "Chris Cooper", + "Hank Azaria" + ], + "genres": [ + "Historical", + "Drama" + ] + }, + { + "title": "The Hairy Bird", + "year": 1998, + "cast": [ + "Kirsten Dunst", + "Gaby Hoffmann", + "Lynn Redgrave" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Half Baked", + "year": 1998, + "cast": [ + "Dave Chappelle", + "Jim Breuer", + "Guillermo Diaz", + "Harland Williams", + "Clarence Williams III" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Halloween H20: 20 Years Later", + "year": 1998, + "cast": [ + "Jamie Lee Curtis", + "Adam Arkin", + "Michelle Williams", + "Josh Hartnett", + "LL Cool J", + "Joseph Gordon-Levitt", + "Jodi Lyn O'Keefe" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Happiness", + "year": 1998, + "cast": [ + "Philip Seymour Hoffman", + "Dylan Baker", + "Ben Gazzara", + "Camryn Manheim", + "Jane Adams" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hard Rain", + "year": 1998, + "cast": [ + "Morgan Freeman", + "Christian Slater", + "Randy Quaid", + "Minnie Driver" + ], + "genres": [ + "Action" + ] + }, + { + "title": "He Got Game", + "year": 1998, + "cast": [ + "Denzel Washington", + "Ray Allen", + "Milla Jovovich", + "John Turturro" + ], + "genres": [ + "Sports", + "Drama" + ] + }, + { + "title": "Hell's Kitchen", + "year": 1998, + "cast": [ + "Angelina Jolie", + "Mekhi Phifer", + "Rosanna Arquette" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Hi-Lo Country", + "year": 1998, + "cast": [ + "Billy Crudup", + "Woody Harrelson", + "Patricia Arquette", + "Penélope Cruz", + "Sam Elliott" + ], + "genres": [ + "Western" + ] + }, + { + "title": "High Art", + "year": 1998, + "cast": [ + "Radha Mitchell", + "Ally Sheedy", + "Patricia Clarkson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Holy Man", + "year": 1998, + "cast": [ + "Eddie Murphy", + "Jeff Goldblum", + "Kelly Preston", + "Robert Loggia", + "Morgan Fairchild" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Home Fries", + "year": 1998, + "cast": [ + "Drew Barrymore", + "Luke Wilson", + "Catherine O'Hara", + "Jake Busey" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Homegrown", + "year": 1998, + "cast": [ + "John Lithgow", + "Billy Bob Thornton", + "Hank Azaria", + "Kelly Lynch" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hope Floats", + "year": 1998, + "cast": [ + "Sandra Bullock", + "Harry Connick, Jr.", + "Gena Rowlands" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Horse Whisperer", + "year": 1998, + "cast": [ + "Robert Redford", + "Kristin Scott Thomas", + "Sam Neill", + "Chris Cooper", + "Dianne Wiest", + "Scarlett Johansson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "How Stella Got Her Groove Back", + "year": 1998, + "cast": [ + "Angela Bassett", + "Taye Diggs", + "Whoopi Goldberg", + "Regina King" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "How to Make the Cruelest Month", + "year": 1998, + "cast": [ + "Clea DuVall", + "Gabriel Mann", + "J. D. Souther" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hurlyburly", + "year": 1998, + "cast": [ + "Sean Penn", + "Kevin Spacey", + "Chazz Palminteri", + "Garry Shandling", + "Meg Ryan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hush", + "year": 1998, + "cast": [ + "Gwyneth Paltrow", + "Jessica Lange", + "Johnathon Schaech" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "I Got the Hook Up", + "year": 1998, + "cast": [ + "Master P", + "Anthony Johnson", + "Tommy 'Tiny' Lister" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "I Still Know What You Did Last Summer", + "year": 1998, + "cast": [ + "Jennifer Love Hewitt", + "Brandy Norwood", + "Freddie Prinze, Jr.", + "Mekhi Phifer", + "Matthew Settle" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "I'll Be Home For Christmas", + "year": 1998, + "cast": [ + "Jonathan Taylor Thomas", + "Gary Cole", + "Jessica Biel" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Illuminata", + "year": 1998, + "cast": [ + "John Turturro", + "Katherine Borowitz", + "Christopher Walken", + "Susan Sarandon" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "The Impostors", + "year": 1998, + "cast": [ + "Oliver Platt", + "Stanley Tucci", + "Alfred Molina", + "Billy Connolly", + "Tony Shalhoub", + "Hope Davis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Jack Frost", + "year": 1998, + "cast": [ + "Michael Keaton", + "Kelly Preston", + "Joseph Cross", + "Mark Addy", + "Henry Rollins" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Jane Austen's Mafia!", + "year": 1998, + "cast": [ + "Jay Mohr", + "Christina Applegate", + "Olympia Dukakis", + "Lloyd Bridges" + ], + "genres": [ + "Satire" + ] + }, + { + "title": "Judas Kiss", + "year": 1998, + "cast": [ + "Alan Rickman", + "Emma Thompson", + "Roscoe Lee Browne", + "Carla Gugino" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Killer Flick", + "year": 1998, + "cast": [ + "Tod Thawley", + "Christian Leffler", + "Emmett Grennan", + "Creighton Howard", + "Fred Dennis", + "Kathleen Macdonald" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Kissing a Fool", + "year": 1998, + "cast": [ + "David Schwimmer", + "Jason Lee", + "Mili Avital" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Knock Off", + "year": 1998, + "cast": [ + "Jean-Claude Van Damme", + "Rob Schneider", + "Lela Rochon" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Krippendorf's Tribe", + "year": 1998, + "cast": [ + "Richard Dreyfuss", + "Jenna Elfman", + "Lily Tomlin", + "Natasha Lyonne" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Kurt & Courtney", + "year": 1998, + "cast": [ + "Footage of", + "Kurt Cobain", + "Courtney Love" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Last Days of Disco", + "year": 1998, + "cast": [ + "Chloë Sevigny", + "Kate Beckinsale", + "Chris Eigeman" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Last Days", + "year": 1998, + "cast": [ + "Interviews with", + "Holocaust", + "survivors" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Lenny Bruce: Swear to Tell the Truth", + "year": 1998, + "cast": [ + "Archive footage of", + "Lenny Bruce", + "narrated by", + "Robert De Niro" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Les Misérables", + "year": 1998, + "cast": [ + "Liam Neeson", + "Geoffrey Rush", + "Uma Thurman", + "Claire Danes" + ], + "genres": [ + "Historical", + "Drama" + ] + }, + { + "title": "Let's Talk About Sex", + "year": 1998, + "cast": [ + "Paget Brewster", + "James Hyde", + "Tina Nguyen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Lethal Weapon 4", + "year": 1998, + "cast": [ + "Mel Gibson", + "Danny Glover", + "Joe Pesci", + "Rene Russo", + "Chris Rock", + "Jet Li" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Life and Times of Hank Greenberg", + "year": 1998, + "cast": [ + "Walter Matthau", + "Carl Levin" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Lion King II: Simba's Pride", + "year": 1998, + "cast": [ + "Matthew Broderick", + "Neve Campbell", + "Jason Marsden", + "Nathan Lane" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Living Out Loud", + "year": 1998, + "cast": [ + "Holly Hunter", + "Queen Latifah", + "Danny DeVito" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Lost In Space", + "year": 1998, + "cast": [ + "William Hurt", + "Mimi Rogers", + "Gary Oldman", + "Heather Graham", + "Matt LeBlanc", + "Lacey Chabert" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Lulu on the Bridge", + "year": 1998, + "cast": [ + "Harvey Keitel", + "Mira Sorvino", + "Vanessa Redgrave" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Madeline", + "year": 1998, + "cast": [ + "Frances McDormand", + "Nigel Hawthorne", + "Hatty Jones" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Major League: Back to the Minors", + "year": 1998, + "cast": [ + "Corbin Bernsen", + "Dennis Haysbert", + "Scott Bakula", + "Bob Uecker" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Man in the Iron Mask", + "year": 1998, + "cast": [ + "Leonardo DiCaprio", + "John Malkovich", + "Gabriel Byrne", + "Gérard Depardieu", + "Jeremy Irons" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Mask of Zorro", + "year": 1998, + "cast": [ + "Antonio Banderas", + "Anthony Hopkins", + "Catherine Zeta-Jones" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Meet Joe Black", + "year": 1998, + "cast": [ + "Brad Pitt", + "Anthony Hopkins", + "Claire Forlani", + "Jake Weber", + "Jeffrey Tambor", + "Marcia Gay Harden" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Meet the Deedles", + "year": 1998, + "cast": [ + "Steve Van Wormer", + "Paul Walker", + "A. J. Langer" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Melting Pot", + "year": 1998, + "cast": [ + "Paul Rodriguez", + "CCH Pounder", + "Cliff Robertson" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Mercury Rising", + "year": 1998, + "cast": [ + "Bruce Willis", + "Alec Baldwin", + "Miko Hughes", + "Chi McBride", + "Kim Dickens" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Mighty Joe Young", + "year": 1998, + "cast": [ + "Bill Paxton", + "Charlize Theron", + "David Paymer" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Mighty", + "year": 1998, + "cast": [ + "Kieran Culkin", + "Sharon Stone", + "Elden Henson", + "Harry Dean Stanton", + "Gena Rowlands", + "Gillian Anderson", + "James Gandolfini" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Mighty Kong", + "year": 1998, + "cast": [ + "Dudley Moore", + "Jodi Benson", + "William Sage" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Montana", + "year": 1998, + "cast": [ + "Kyra Sedgwick", + "Stanley Tucci", + "Robin Tunney", + "Robbie Coltrane" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Monument Ave.", + "year": 1998, + "cast": [ + "Denis Leary", + "Colm Meaney", + "Famke Janssen", + "Martin Sheen" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Mulan", + "year": 1998, + "cast": [ + "Voices of", + "Ming-Na", + "Eddie Murphy", + "Lea Salonga", + "Miguel Ferrer" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Music from Another Room", + "year": 1998, + "cast": [ + "Jude Law", + "Jennifer Tilly", + "Gretchen Mol", + "Martha Plimpton" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "My Giant", + "year": 1998, + "cast": [ + "Billy Crystal", + "Gheorghe Mureșan", + "Kathleen Quinlan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Naked Man", + "year": 1998, + "cast": [ + "Michael Rapaport", + "Michael Jeter", + "Rachael Leigh Cook", + "Arija Bareikis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Negotiator", + "year": 1998, + "cast": [ + "Samuel L. Jackson", + "Kevin Spacey", + "John Spencer", + "David Morse" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "New Rose Hotel", + "year": 1998, + "cast": [ + "Christopher Walken", + "Willem Dafoe", + "Asia Argento", + "Annabella Sciorra" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Newton Boys", + "year": 1998, + "cast": [ + "Matthew McConaughey", + "Vincent D'Onofrio", + "Ethan Hawke", + "Skeet Ulrich" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Next Stop Wonderland", + "year": 1998, + "cast": [ + "Hope Davis", + "Philip Seymour Hoffman", + "Callie Thorne" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Night at the Roxbury", + "year": 1998, + "cast": [ + "Will Ferrell", + "Chris Kattan", + "Dan Hedaya", + "Loni Anderson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "No Looking Back", + "year": 1998, + "cast": [ + "Lauren Holly", + "Jon Bon Jovi", + "Edward Burns" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Object of My Affection", + "year": 1998, + "cast": [ + "Jennifer Aniston", + "Paul Rudd", + "Steve Zahn", + "Allison Janney", + "Alan Alda" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "October 22", + "year": 1998, + "cast": [ + "Amanda Plummer", + "Colm Meaney", + "Paul Perri", + "Michael Paré" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Odd Couple II", + "year": 1998, + "cast": [ + "Jack Lemmon", + "Walter Matthau", + "Christine Baranski", + "Jean Smart", + "Jonathan Silverman" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "One Tough Cop", + "year": 1998, + "cast": [ + "Stephen Baldwin", + "Chris Penn", + "Gina Gershon" + ], + "genres": [ + "Action" + ] + }, + { + "title": "One True Thing", + "year": 1998, + "cast": [ + "Meryl Streep", + "Renée Zellweger", + "William Hurt", + "Tom Everett Scott" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Opposite of Sex", + "year": 1998, + "cast": [ + "Christina Ricci", + "Martin Donovan", + "Lisa Kudrow", + "Lyle Lovett" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Out of Sight", + "year": 1998, + "cast": [ + "George Clooney", + "Jennifer Lopez", + "Don Cheadle", + "Ving Rhames", + "Dennis Farina", + "Albert Brooks", + "Steve Zahn", + "Isaiah Washington", + "Catherine Keener" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Outside Ozona", + "year": 1998, + "cast": [ + "Robert Forster", + "Kevin Pollak", + "Sherilyn Fenn", + "Penelope Ann Miller" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Overnight Delivery", + "year": 1998, + "cast": [ + "Reese Witherspoon", + "Sarah Silverman", + "Paul Rudd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Palmetto", + "year": 1998, + "cast": [ + "Woody Harrelson", + "Elisabeth Shue", + "Gina Gershon" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Parent Trap", + "year": 1998, + "cast": [ + "Lindsay Lohan", + "Dennis Quaid", + "Natasha Richardson", + "Elaine Hendrix" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Patch Adams", + "year": 1998, + "cast": [ + "Robin Williams", + "Monica Potter", + "Philip Seymour Hoffman" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Pauli", + "year": 1998, + "cast": [ + "Jay Mohr", + "Tony Shalhoub", + "Gena Rowlands" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Pecker", + "year": 1998, + "cast": [ + "Edward Furlong", + "Christina Ricci", + "Bess Armstrong", + "Mary Kay Place", + "Lili Taylor", + "Martha Plimpton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Pentagon Wars", + "year": 1998, + "cast": [ + "Kelsey Grammer", + "Cary Elwes", + "Richard Schiff", + "Viola Davis" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "A Perfect Murder", + "year": 1998, + "cast": [ + "Michael Douglas", + "Gwyneth Paltrow", + "Viggo Mortensen", + "David Suchet" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Permanent Midnight", + "year": 1998, + "cast": [ + "Ben Stiller", + "Maria Bello", + "Elizabeth Hurley" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Phantasm IV: Oblivion", + "year": 1998, + "cast": [ + "A. Michael Baldwin", + "Reggie Bannister", + "Bill Thornbury" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Phantoms", + "year": 1998, + "cast": [ + "Ben Affleck", + "Peter O'Toole", + "Liev Schreiber" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Phoenix", + "year": 1998, + "cast": [ + "Ray Liotta", + "Anjelica Huston", + "Anthony LaPaglia", + "Daniel Baldwin" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Pi", + "year": 1998, + "cast": [ + "Mark Margolis", + "Pamela Hart", + "Sean Gullette" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Players Club", + "year": 1998, + "cast": [ + "Bernie Mac", + "Ice Cube", + "LisaRaye" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Playing by Heart", + "year": 1998, + "cast": [ + "Angelina Jolie", + "Sean Connery", + "Gena Rowlands", + "Gillian Anderson", + "Dennis Quaid", + "Ryan Phillippe" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Pleasantville", + "year": 1998, + "cast": [ + "Tobey Maguire", + "Reese Witherspoon", + "Jeff Daniels", + "Joan Allen", + "William H. Macy", + "J. T. Walsh", + "Don Knotts" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Polish Wedding", + "year": 1998, + "cast": [ + "Gabriel Byrne", + "Claire Danes", + "Mili Avital" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Poodle Springs", + "year": 1998, + "cast": [ + "James Caan", + "David Keith", + "Dina Meyer", + "Joe Don Baker", + "Brian Cox" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Practical Magic", + "year": 1998, + "cast": [ + "Nicole Kidman", + "Sandra Bullock", + "Stockard Channing", + "Dianne Wiest", + "Aidan Quinn" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Price Above Rubies", + "year": 1998, + "cast": [ + "Renée Zellweger", + "Christopher Eccleston", + "Julianna Margulies" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Primary Colors", + "year": 1998, + "cast": [ + "John Travolta", + "Emma Thompson", + "Kathy Bates", + "Adrian Lester", + "Billy Bob Thornton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Prince of Egypt", + "year": 1998, + "cast": [ + "Voices of", + "Michelle Pfeiffer", + "Val Kilmer", + "Ralph Fiennes", + "Steve Martin", + "Sandra Bullock" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Psycho", + "year": 1998, + "cast": [ + "Vince Vaughn", + "Anne Heche", + "Viggo Mortensen", + "William H. Macy", + "Julianne Moore" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Quest for Camelot", + "year": 1998, + "cast": [ + "Voices of", + "Gary Oldman", + "Don Rickles", + "Pierce Brosnan", + "Eric Idle", + "Jane Seymour", + "Gabriel Byrne", + "Cary Elwes", + "Bronson Pinchot", + "John Gielgud" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "The Rat Pack", + "year": 1998, + "cast": [ + "Ray Liotta", + "Joe Mantegna", + "Don Cheadle", + "Angus Macfadyen", + "Dan O'Herlihy", + "William L. Petersen", + "Željko Ivanek", + "Deborah Kara Unger" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Reach the Rock", + "year": 1998, + "cast": [ + "William Sadler", + "Alessandro Nivola" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Regret to Inform", + "year": 1998, + "cast": [ + "Barbara Sonneborn", + "Xuan Ngoc Nguyen" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Replacement Killers", + "year": 1998, + "cast": [ + "Chow Yun-fat", + "Mira Sorvino", + "Michael Rooker" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Restaurant", + "year": 1998, + "cast": [ + "Adrien Brody", + "Elise Neal", + "Lauryn Hill" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Return to Paradise", + "year": 1998, + "cast": [ + "Vince Vaughn", + "Joaquin Phoenix", + "Vera Farmiga" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Riddler's Moon", + "year": 1998, + "cast": [ + "Corbin Bernsen", + "Kate Mulgrew", + "Daniel Newman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Ride", + "year": 1998, + "cast": [ + "Malik Yoba", + "Melissa De Sousa", + "John Witherspoon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Ringmaster", + "year": 1998, + "cast": [ + "Jerry Springer", + "William McNamara", + "Molly Hagan", + "Jaime Pressly" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Ronin", + "year": 1998, + "cast": [ + "Robert De Niro", + "Jean Reno", + "Natascha McElhone", + "Jonathan Pryce", + "Stellan Skarsgård", + "Sean Bean", + "Katarina Witt" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Rounders", + "year": 1998, + "cast": [ + "Matt Damon", + "Edward Norton", + "Gretchen Mol", + "John Turturro", + "Martin Landau", + "John Malkovich" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Rudolph the Red-Nosed Reindeer: The Movie", + "year": 1998, + "cast": [ + "John Goodman", + "Alan Arkin", + "Eric Idle", + "Whoopi Goldberg" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "The Rugrats Movie", + "year": 1998, + "cast": [ + "E. G. Daily", + "Christine Cavanaugh", + "Kath Soucie" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Rush Hour", + "year": 1998, + "cast": [ + "Jackie Chan", + "Chris Tucker", + "Tom Wilkinson" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Rushmore", + "year": 1998, + "cast": [ + "Jason Schwartzman", + "Bill Murray", + "Olivia Williams", + "Brian Cox" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Safe Men", + "year": 1998, + "cast": [ + "Sam Rockwell", + "Steve Zahn", + "Michael Lerner", + "Paul Giamatti" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Saving Private Ryan", + "year": 1998, + "cast": [ + "Tom Hanks", + "Edward Burns", + "Matt Damon", + "Tom Sizemore", + "Dennis Farina", + "Ted Danson", + "Paul Giamatti", + "Bryan Cranston", + "Harve Presnell", + "Vin Diesel" + ], + "genres": [ + "Drama", + "War" + ] + }, + { + "title": "Savior", + "year": 1998, + "cast": [ + "Dennis Quaid", + "Nastassja Kinski", + "Stellan Skarsgård" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Second Arrival", + "year": 1998, + "cast": [ + "Patrick Muldoon", + "Jane Sibbett", + "Michael Sarrazin" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Senseless", + "year": 1998, + "cast": [ + "Marlon Wayans", + "David Spade", + "Matthew Lillard", + "Brad Dourif" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Shadrach", + "year": 1998, + "cast": [ + "Harvey Keitel", + "Andie MacDowell", + "John Franklin Sawyer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Shakespeare in Love", + "year": 1998, + "cast": [ + "Gwyneth Paltrow", + "Joseph Fiennes", + "Geoffrey Rush", + "Colin Firth", + "Ben Affleck", + "Judi Dench" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Siege", + "year": 1998, + "cast": [ + "Denzel Washington", + "Annette Bening", + "Tony Shalhoub", + "Bruce Willis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Simon Birch", + "year": 1998, + "cast": [ + "Ian Michael Smith", + "Joseph Mazzello", + "Ashley Judd", + "Oliver Platt" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Simple Plan", + "year": 1998, + "cast": [ + "Billy Bob Thornton", + "Bridget Fonda", + "Bill Paxton", + "Gary Cole" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Since You've Been Gone", + "year": 1998, + "cast": [ + "David Schwimmer", + "Lara Flynn Boyle", + "Teri Hatcher" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Six Days Seven Nights", + "year": 1998, + "cast": [ + "Harrison Ford", + "Anne Heche", + "Allison Janney", + "David Schwimmer" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Six-String Samurai", + "year": 1998, + "cast": [ + "Jeffrey Falcon", + "Clifford Hugo", + "Lora Witty" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Slam", + "year": 1998, + "cast": [ + "Saul Williams", + "Bönz Malone", + "Sonja Sohn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Slappy and the Stinkers", + "year": 1998, + "cast": [ + "B. D. Wong", + "Bronson Pinchot", + "Jennifer Coolidge" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Slums of Beverly Hills", + "year": 1998, + "cast": [ + "Natasha Lyonne", + "Alan Arkin", + "Marisa Tomei" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Small Soldiers", + "year": 1998, + "cast": [ + "Gregory Smith", + "Kirsten Dunst", + "Frank Langella", + "Tommy Lee Jones" + ], + "genres": [ + "Science Fiction", + "Fantasy", + "Action" + ] + }, + { + "title": "Smoke Signals", + "year": 1998, + "cast": [ + "Adam Beach", + "Irene Bedard", + "Gary Farmer" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Snake Eyes", + "year": 1998, + "cast": [ + "Nicolas Cage", + "Gary Sinise", + "Carla Gugino", + "John Heard", + "Stan Shaw" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Soldier", + "year": 1998, + "cast": [ + "Kurt Russell", + "Jason Scott Lee", + "Connie Nielsen", + "Gary Busey" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Somewhere in the City", + "year": 1998, + "cast": [ + "Sandra Bernhard", + "Ornella Muti", + "Robert John Burke", + "Peter Stormare", + "Bai Ling" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Sour Grapes", + "year": 1998, + "cast": [ + "Steven Weber", + "Craig Bierko", + "Jennifer Leigh Warren" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Species II", + "year": 1998, + "cast": [ + "Natasha Henstridge", + "Michael Madsen", + "Marg Helgenberger", + "James Cromwell", + "Mykelti Williamson", + "George Dzundza" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Sphere", + "year": 1998, + "cast": [ + "Dustin Hoffman", + "Sharon Stone", + "Samuel L. Jackson", + "Liev Schreiber" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Spice World", + "year": 1998, + "cast": [ + "Spice Girls", + "Richard E. Grant", + "Alan Cumming", + "George Wendt", + "Roger Moore" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Star Trek: Insurrection", + "year": 1998, + "cast": [ + "Patrick Stewart", + "F. Murray Abraham", + "Donna Murphy" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Stepmom", + "year": 1998, + "cast": [ + "Julia Roberts", + "Susan Sarandon", + "Ed Harris" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Strangeland", + "year": 1998, + "cast": [ + "Kevin Gage", + "Robert Englund", + "Amy Smart" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Suicide Kings", + "year": 1998, + "cast": [ + "Christopher Walken", + "Denis Leary", + "Sean Patrick Flanery", + "Johnny Galecki", + "Jay Mohr", + "Jeremy Sisto", + "Henry Thomas", + "Cliff DeYoung", + "Laura San Giacomo" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Target Zero II", + "year": 1998, + "cast": [ + "Walter Cherry", + "Mark Lenard", + "Wesley Shane Winter", + "Walter Quiggins" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Tarzan and the Lost City", + "year": 1998, + "cast": [ + "Casper Van Dien", + "Jane March", + "Ian Roberts" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "There's Something About Mary", + "year": 1998, + "cast": [ + "Ben Stiller", + "Cameron Diaz", + "Matt Dillon", + "Keith David", + "Markie Post" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Thick as Thieves", + "year": 1998, + "cast": [ + "Alec Baldwin", + "Andre Braugher", + "Rebecca De Mornay" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Thin Red Line", + "year": 1998, + "cast": [ + "Sean Penn", + "Adrien Brody", + "Jim Caviezel", + "Ben Chaplin", + "George Clooney", + "John Cusack", + "Woody Harrelson", + "Elias Koteas", + "Jared Leto", + "Nick Nolte", + "John C. Reilly", + "John Travolta" + ], + "genres": [ + "Drama", + "War" + ] + }, + { + "title": "The Truman Show", + "year": 1998, + "cast": [ + "Jim Carrey", + "Ed Harris", + "Laura Linney", + "Noah Emmerich", + "Natascha McElhone" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Twilight", + "year": 1998, + "cast": [ + "Paul Newman", + "Gene Hackman", + "Susan Sarandon", + "James Garner", + "Reese Witherspoon", + "Stockard Channing", + "Liev Schreiber" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "U.S. Marshals", + "year": 1998, + "cast": [ + "Tommy Lee Jones", + "Wesley Snipes", + "Robert Downey, Jr.", + "Joe Pantoliano", + "Irène Jacob" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Urban Legend", + "year": 1998, + "cast": [ + "Jared Leto", + "Alicia Witt", + "Rebecca Gayheart", + "Joshua Jackson", + "Loretta Devine", + "Tara Reid", + "Robert Englund" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Vampires", + "year": 1998, + "cast": [ + "James Woods", + "Daniel Baldwin", + "Sheryl Lee" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Very Bad Things", + "year": 1998, + "cast": [ + "Christian Slater", + "Cameron Diaz", + "Jon Favreau", + "Daniel Stern", + "Jeremy Piven", + "Jeanne Tripplehorn" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Waterboy", + "year": 1998, + "cast": [ + "Adam Sandler", + "Henry Winkler", + "Kathy Bates", + "Fairuza Balk" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Wedding Singer", + "year": 1998, + "cast": [ + "Adam Sandler", + "Drew Barrymore", + "Christine Taylor", + "Steve Buscemi", + "Alexis Arquette" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "What Dreams May Come", + "year": 1998, + "cast": [ + "Robin Williams", + "Cuba Gooding, Jr.", + "Annabella Sciorra" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Why Do Fools Fall in Love", + "year": 1998, + "cast": [ + "Halle Berry", + "Vivica A. Fox", + "Lela Rochon" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Wide Awake", + "year": 1998, + "cast": [ + "Joseph Cross", + "Timothy Reifsnyder", + "Dana Delany", + "Denis Leary" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Wild Things", + "year": 1998, + "cast": [ + "Kevin Bacon", + "Matt Dillon", + "Neve Campbell", + "Denise Richards", + "Bill Murray" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Without Limits", + "year": 1998, + "cast": [ + "Billy Crudup", + "Donald Sutherland", + "Monica Potter" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Woo", + "year": 1998, + "cast": [ + "Jada Pinkett", + "Tommy Davidson", + "LL Cool J" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Wrongfully Accused", + "year": 1998, + "cast": [ + "Leslie Nielsen", + "Richard Crenna", + "Melinda McGraw", + "Kelly Le Brock" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The X-Files", + "year": 1998, + "cast": [ + "Gillian Anderson", + "David Duchovny", + "Martin Landau" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Your Friends & Neighbors", + "year": 1998, + "cast": [ + "Amy Brenneman", + "Aaron Eckhart", + "Nastassja Kinski", + "Jason Patric", + "Catherine Keener", + "Ben Stiller" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "You've Got Mail", + "year": 1998, + "cast": [ + "Tom Hanks", + "Meg Ryan", + "Parker Posey", + "Jean Stapleton" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Zero Effect", + "year": 1998, + "cast": [ + "Bill Pullman", + "Ryan O'Neal", + "Ben Stiller" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "10 Things I Hate About You", + "year": 1999, + "cast": [ + "Julia Stiles", + "Heath Ledger", + "Larisa Oleynik", + "Joseph Gordon-Levitt", + "David Krumholtz", + "Andrew Keegan", + "Gabrielle Union" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "The 13th Warrior", + "year": 1999, + "cast": [ + "Antonio Banderas", + "Diane Venora", + "Vladimir Kulich", + "Dennis Storhøi", + "Omar Sharif", + "Clive Russell", + "Richard Bremmer" + ], + "genres": [ + "Action" + ] + }, + { + "title": "200 Cigarettes", + "year": 1999, + "cast": [ + "Ben Affleck", + "Casey Affleck", + "Dave Chappelle", + "Guillermo Diaz", + "Angela Featherstone", + "Janeane Garofalo", + "Gaby Hoffmann", + "Kate Hudson", + "Courtney Love", + "Jay Mohr", + "Martha Plimpton", + "Christina Ricci", + "Paul Rudd" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The 4th Floor", + "year": 1999, + "cast": [ + "Juliette Lewis", + "William Hurt", + "Shelley Duvall" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "8mm", + "year": 1999, + "cast": [ + "Nicolas Cage", + "Joaquin Phoenix", + "James Gandolfini", + "Peter Stormare", + "Catherine Keener", + "Anthony Heald" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Adventures of Elmo in Grouchland", + "year": 1999, + "cast": [ + "Kevin Clash", + "Mandy Patinkin", + "Vanessa L. Williams" + ], + "genres": [ + "Family" + ] + }, + { + "title": "American Beauty", + "year": 1999, + "cast": [ + "Kevin Spacey", + "Annette Bening", + "Chris Cooper", + "Wes Bentley", + "Thora Birch", + "Mena Suvari", + "Allison Janney", + "Peter Gallagher" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "American Movie", + "year": 1999, + "cast": [ + "Mark Borchardt", + "Tom Schimmels" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "American Pie", + "year": 1999, + "cast": [ + "Jason Biggs", + "Seann William Scott", + "Tara Reid", + "Shannon Elizabeth", + "Chris Klein", + "Alyson Hannigan", + "Thomas Ian Nicholas", + "Mena Suvari", + "Natasha Lyonne", + "Eddie Kaye Thomas", + "Eugene Levy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Analyze This", + "year": 1999, + "cast": [ + "Robert De Niro", + "Billy Crystal", + "Lisa Kudrow" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Angel's Dance", + "year": 1999, + "cast": [ + "James Belushi", + "Sheryl Lee", + "Kyle Chandler" + ], + "genres": [ + "Action", + "Comedy" + ] + }, + { + "title": "Animal Farm", + "year": 1999, + "cast": [ + "(voices of)", + "Kelsey Grammer", + "Ian Holm", + "Paul Scofield", + "Patrick Stewart", + "Julia Ormond", + "Peter Ustinov" + ], + "genres": [ + "Family", + "Animated" + ] + }, + { + "title": "Anna and the King", + "year": 1999, + "cast": [ + "Jodie Foster", + "Chow Yun-fat" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Annie", + "year": 1999, + "cast": [ + "Alicia Morton", + "Victor Garber", + "Kathy Bates" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Any Given Sunday", + "year": 1999, + "cast": [ + "Al Pacino", + "Dennis Quaid", + "Cameron Diaz", + "Jamie Foxx", + "James Woods", + "LL Cool J", + "John C. McGinley", + "Ann-Margret" + ], + "genres": [ + "Drama", + "Sports" + ] + }, + { + "title": "Anywhere but Here", + "year": 1999, + "cast": [ + "Susan Sarandon", + "Natalie Portman", + "Shawn Hatosy", + "Hart Bochner" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Arlington Road", + "year": 1999, + "cast": [ + "Jeff Bridges", + "Tim Robbins", + "Joan Cusack", + "Hope Davis" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Astronaut's Wife", + "year": 1999, + "cast": [ + "Johnny Depp", + "Charlize Theron", + "Joe Morton" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "At First Sight", + "year": 1999, + "cast": [ + "Val Kilmer", + "Mira Sorvino", + "Kelly McGillis", + "Nathan Lane", + "Steven Weber" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Atomic Train", + "year": 1999, + "cast": [ + "Rob Lowe", + "Kristin Davis", + "Esai Morales", + "John Finn" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Austin Powers: The Spy Who Shagged Me", + "year": 1999, + "cast": [ + "Mike Myers", + "Heather Graham", + "Robert Wagner", + "Seth Green", + "Michael York", + "Verne Troyer", + "Will Ferrell" + ], + "genres": [ + "Action", + "Comedy" + ] + }, + { + "title": "Baby Geniuses", + "year": 1999, + "cast": [ + "Kathleen Turner", + "Christopher Lloyd", + "Peter MacNicol", + "Kim Cattrall", + "Ruby Dee", + "Dom DeLuise" + ], + "genres": [ + "Family" + ] + }, + { + "title": "The Bachelor", + "year": 1999, + "cast": [ + "Chris O'Donnell", + "Renée Zellweger", + "Edward Asner" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Bats", + "year": 1999, + "cast": [ + "Lou Diamond Phillips", + "Dina Meyer" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Being John Malkovich", + "year": 1999, + "cast": [ + "John Cusack", + "Cameron Diaz", + "Catherine Keener", + "John Malkovich" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Bellyfruit", + "year": 1999, + "cast": [ + "Michael Peña" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Beowulf", + "year": 1999, + "cast": [ + "Christopher Lambert", + "Rhona Mitra" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Best Laid Plans", + "year": 1999, + "cast": [ + "Reese Witherspoon", + "Alessandro Nivola", + "Josh Brolin" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Best Man", + "year": 1999, + "cast": [ + "Taye Diggs", + "Monica Calhoun", + "Morris Chestnut", + "Nia Long" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Beyond the Mat", + "year": 1999, + "cast": [ + "Mick Foley", + "Terry Funk", + "Jesse Ventura", + "The Rock" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Bicentennial Man", + "year": 1999, + "cast": [ + "Robin Williams", + "Sam Neill", + "Embeth Davidtz", + "Oliver Platt", + "Wendy Crewson", + "Hallie Kate Eisenberg" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Big Daddy", + "year": 1999, + "cast": [ + "Adam Sandler", + "Cole and Dylan Sprouse", + "Joey Lauren Adams", + "Jon Stewart", + "Rob Schneider" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Big Kahuna", + "year": 1999, + "cast": [ + "Kevin Spacey", + "Danny DeVito", + "Peter Facinelli" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Black and White", + "year": 1999, + "cast": [ + "Robert Downey Jr.", + "Gaby Hoffmann", + "Jared Leto" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Blair Witch Project", + "year": 1999, + "cast": [ + "Heather Donahue", + "Joshua Leonard", + "Michael C. Williams" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Blast from the Past", + "year": 1999, + "cast": [ + "Brendan Fraser", + "Alicia Silverstone", + "Christopher Walken", + "Sissy Spacek", + "Dave Foley" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Blue Streak", + "year": 1999, + "cast": [ + "Martin Lawrence", + "Luke Wilson", + "Peter Greene", + "Dave Chappelle" + ], + "genres": [ + "Comedy", + "Crime" + ] + }, + { + "title": "The Bone Collector", + "year": 1999, + "cast": [ + "Denzel Washington", + "Angelina Jolie" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Boondock Saints", + "year": 1999, + "cast": [ + "Willem Dafoe", + "Sean Patrick Flanery", + "Norman Reedus" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Bowfinger", + "year": 1999, + "cast": [ + "Steve Martin", + "Eddie Murphy", + "Heather Graham" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Boys Don't Cry", + "year": 1999, + "cast": [ + "Hilary Swank", + "Chloë Sevigny" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Breakfast of Champions", + "year": 1999, + "cast": [ + "Bruce Willis", + "Albert Finney", + "Nick Nolte", + "Barbara Hershey", + "Lukas Haas", + "Omar Epps", + "Glenne Headly" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Bringing Out the Dead", + "year": 1999, + "cast": [ + "Nicolas Cage", + "Patricia Arquette", + "John Goodman" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Brokedown Palace", + "year": 1999, + "cast": [ + "Claire Danes", + "Kate Beckinsale", + "Bill Pullman", + "Lou Diamond Phillips" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "But I'm a Cheerleader", + "year": 1999, + "cast": [ + "Natasha Lyonne", + "Cathy Moriarty", + "RuPaul", + "Clea DuVall" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Chill Factor", + "year": 1999, + "cast": [ + "Cuba Gooding Jr.", + "Skeet Ulrich" + ], + "genres": [ + "Action", + "Comedy" + ] + }, + { + "title": "Chutney Popcorn", + "year": 1999, + "cast": [ + "Nisha Ganatra", + "Jill Hennessy", + "Madhur Jaffrey" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Cider House Rules", + "year": 1999, + "cast": [ + "Tobey Maguire", + "Michael Caine", + "Charlize Theron", + "Paul Rudd", + "Delroy Lindo", + "Jane Alexander", + "Kathy Baker" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Coming Soon", + "year": 1999, + "cast": [ + "Bonnie Root", + "Gaby Hoffmann", + "Mia Farrow" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "The Corruptor", + "year": 1999, + "cast": [ + "Chow Yun-fat", + "Mark Wahlberg", + "Ric Young" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Cradle Will Rock", + "year": 1999, + "cast": [ + "Hank Azaria", + "Rubén Blades", + "Joan Cusack", + "John Cusack" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Crazy in Alabama", + "year": 1999, + "cast": [ + "Melanie Griffith", + "Lucas Black", + "David Morse", + "Meat Loaf Aday" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Crimson Code", + "year": 1999, + "cast": [ + "Patrick Muldoon", + "Cathy Moriarty", + "C. Thomas Howell", + "Fred Ward" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Cruel Intentions", + "year": 1999, + "cast": [ + "Sarah Michelle Gellar", + "Ryan Phillippe", + "Reese Witherspoon", + "Selma Blair", + "Joshua Jackson", + "Christine Baranski", + "Swoosie Kurtz" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Deep Blue Sea", + "year": 1999, + "cast": [ + "Saffron Burrows", + "Thomas Jane", + "LL Cool J", + "Jacqueline McKenzie", + "Michael Rapaport", + "Stellan Skarsgård", + "Aida Turturro", + "Samuel L. Jackson" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Deep End of the Ocean", + "year": 1999, + "cast": [ + "Michelle Pfeiffer", + "Treat Williams", + "Whoopi Goldberg" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Deterrence", + "year": 1999, + "cast": [ + "Kevin Pollak", + "Timothy Hutton", + "Sean Astin" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Detroit Rock City", + "year": 1999, + "cast": [ + "Giuseppe Andrews", + "James DeBello", + "Edward Furlong", + "Sam Huntington", + "Lin Shaye", + "Melanie Lynskey" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Deuce Bigalow: Male Gigolo", + "year": 1999, + "cast": [ + "Rob Schneider" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Dick", + "year": 1999, + "cast": [ + "Kirsten Dunst", + "Michelle Williams", + "Dan Hedaya" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Dill Scallion", + "year": 1999, + "cast": [ + "Billy Burke", + "Lauren Graham" + ], + "genres": [ + "Satire" + ] + }, + { + "title": "A Dog of Flanders", + "year": 1999, + "cast": [ + "Jack Warden", + "Jon Voight", + "Cheryl Ladd" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Dogma", + "year": 1999, + "cast": [ + "Ben Affleck", + "Matt Damon", + "Linda Fiorentino", + "Salma Hayek", + "Jason Lee", + "Alan Rickman", + "Chris Rock", + "Kevin Smith" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Double Jeopardy", + "year": 1999, + "cast": [ + "Tommy Lee Jones", + "Ashley Judd", + "Bruce Greenwood", + "Annabeth Gish" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Drop Dead Gorgeous", + "year": 1999, + "cast": [ + "Kirstie Alley", + "Ellen Barkin", + "Kirsten Dunst", + "Denise Richards" + ], + "genres": [ + "Satire" + ] + }, + { + "title": "Dudley Do-Right", + "year": 1999, + "cast": [ + "Brendan Fraser", + "Sarah Jessica Parker", + "Alfred Molina" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "EDtv", + "year": 1999, + "cast": [ + "Matthew McConaughey", + "Jenna Elfman", + "Woody Harrelson", + "Elizabeth Hurley", + "Ellen DeGeneres", + "Sally Kirkland", + "Rob Reiner", + "Dennis Hopper", + "Martin Landau" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Election", + "year": 1999, + "cast": [ + "Reese Witherspoon", + "Matthew Broderick", + "Chris Klein", + "Molly Hagan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "End of Days", + "year": 1999, + "cast": [ + "Arnold Schwarzenegger", + "Robin Tunney", + "Gabriel Byrne", + "Kevin Pollak", + "Udo Kier", + "C. C. H. Pounder", + "Miriam Margolyes", + "Rod Steiger" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Entrapment", + "year": 1999, + "cast": [ + "Sean Connery", + "Catherine Zeta-Jones", + "Ving Rhames" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Entropy", + "year": 1999, + "cast": [ + "Stephen Dorff", + "Judith Godrèche", + "Kelly Macdonald" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "eXistenZ", + "year": 1999, + "cast": [ + "Jennifer Jason Leigh", + "Jude Law", + "Ian Holm" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Eye of the Beholder", + "year": 1999, + "cast": [ + "Ewan McGregor", + "Ashley Judd" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Eyes Wide Shut", + "year": 1999, + "cast": [ + "Tom Cruise", + "Nicole Kidman", + "Sydney Pollack" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Fantasia 2000", + "year": 1999, + "cast": [ + "James Levine", + "Chicago Symphony Orchestra" + ], + "genres": [ + "Family", + "Animated" + ] + }, + { + "title": "Fight Club", + "year": 1999, + "cast": [ + "Brad Pitt", + "Edward Norton", + "Helena Bonham Carter" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Flawless", + "year": 1999, + "cast": [ + "Robert De Niro", + "Philip Seymour Hoffman", + "Chris Bauer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Florentine", + "year": 1999, + "cast": [ + "Jeremy Davies", + "Virginia Madsen", + "Luke Perry" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "For Love of the Game", + "year": 1999, + "cast": [ + "Kevin Costner", + "Kelly Preston", + "John C. Reilly", + "Jena Malone", + "Brian Cox" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Forces of Nature", + "year": 1999, + "cast": [ + "Ben Affleck", + "Sandra Bullock", + "Steve Zahn" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Friends & Lovers", + "year": 1999, + "cast": [ + "Stephen Baldwin", + "Claudia Schiffer", + "Robert Downey Jr." + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Galaxy Quest", + "year": 1999, + "cast": [ + "Tim Allen", + "Alan Rickman", + "Sigourney Weaver", + "Tony Shalhoub", + "Sam Rockwell", + "Daryl Mitchell" + ], + "genres": [ + "Science Fiction", + "Comedy" + ] + }, + { + "title": "The General's Daughter", + "year": 1999, + "cast": [ + "John Travolta", + "Madeleine Stowe", + "James Woods", + "Timothy Hutton", + "James Cromwell", + "Clarence Williams III" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Ghost Dog: The Way of the Samurai", + "year": 1999, + "cast": [ + "Forest Whitaker" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Girl, Interrupted", + "year": 1999, + "cast": [ + "Winona Ryder", + "Angelina Jolie", + "Clea DuVall", + "Brittany Murphy", + "Vanessa Redgrave", + "Whoopi Goldberg" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Gloria", + "year": 1999, + "cast": [ + "Sharon Stone", + "Jeremy Northam", + "Cathy Moriarty", + "George C. Scott" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Go", + "year": 1999, + "cast": [ + "Sarah Polley", + "Desmond Askew", + "Scott Wolf", + "Katie Holmes", + "Jay Mohr", + "Taye Diggs" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Green Mile", + "year": 1999, + "cast": [ + "Tom Hanks", + "David Morse", + "Bonnie Hunt", + "Michael Clarke Duncan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Guinevere", + "year": 1999, + "cast": [ + "Stephen Rea", + "Sarah Polley", + "Gina Gershon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Happy, Texas", + "year": 1999, + "cast": [ + "Steve Zahn", + "Jeremy Northam", + "Ally Walker", + "Illeana Douglas", + "William H. Macy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Haunting", + "year": 1999, + "cast": [ + "Liam Neeson", + "Catherine Zeta-Jones", + "Lili Taylor", + "Owen Wilson" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Heaven or Vegas", + "year": 1999, + "cast": [ + "Richard Grieco", + "Yasmine Bleeth", + "Andy Romano" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Held Up", + "year": 1999, + "cast": [ + "Jamie Foxx", + "Nia Long", + "Barry Corbin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Hi-Line", + "year": 1999, + "cast": [ + "Rachael Leigh Cook", + "Ryan Alosio" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "House on Haunted Hill", + "year": 1999, + "cast": [ + "Geoffrey Rush", + "Famke Janssen", + "Taye Diggs", + "Peter Gallagher", + "Chris Kattan", + "Ali Larter", + "Bridgette Wilson", + "Max Perlich" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Hurricane", + "year": 1999, + "cast": [ + "Denzel Washington" + ], + "genres": [ + "Drama", + "Biography" + ] + }, + { + "title": "An Ideal Husband", + "year": 1999, + "cast": [ + "Rupert Everett", + "Cate Blanchett", + "Minnie Driver", + "Julianne Moore", + "Jeremy Northam" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Idle Hands", + "year": 1999, + "cast": [ + "Devon Sawa", + "Seth Green", + "Jessica Alba", + "Vivica A. Fox", + "Elden Henson" + ], + "genres": [ + "Horror", + "Comedy" + ] + }, + { + "title": "In Dreams", + "year": 1999, + "cast": [ + "Annette Bening", + "Katie Sagona", + "Aidan Quinn", + "Robert Downey Jr.", + "Stephen Rea" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "In Too Deep", + "year": 1999, + "cast": [ + "Omar Epps", + "LL Cool J", + "Stanley Tucci", + "Pam Grier" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Insider", + "year": 1999, + "cast": [ + "Al Pacino", + "Russell Crowe", + "Christopher Plummer", + "Philip Baker Hall", + "Michael Gambon", + "Wings Hauser", + "Gina Gershon" + ], + "genres": [ + "Drama", + "Biography" + ] + }, + { + "title": "Inspector Gadget", + "year": 1999, + "cast": [ + "Matthew Broderick", + "Rupert Everett", + "Joely Fisher", + "Michelle Trachtenberg", + "Andy Dick" + ], + "genres": [ + "Action", + "Comedy", + "Family" + ] + }, + { + "title": "Instinct", + "year": 1999, + "cast": [ + "Anthony Hopkins", + "Cuba Gooding Jr.", + "Donald Sutherland", + "Maura Tierney" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Iron Giant", + "year": 1999, + "cast": [ + "Jennifer Aniston", + "Harry Connick Jr.", + "Vin Diesel" + ], + "genres": [ + "Animated", + "Science Fiction", + "Drama", + "Family" + ] + }, + { + "title": "Jakob the Liar", + "year": 1999, + "cast": [ + "Robin Williams", + "Alan Arkin", + "Liev Schreiber" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Jawbreaker", + "year": 1999, + "cast": [ + "Rose McGowan", + "Rebecca Gayheart", + "Julie Benz" + ], + "genres": [ + "Comedy", + "Horror" + ] + }, + { + "title": "Jesus' Son", + "year": 1999, + "cast": [ + "Billy Crudup", + "Samantha Morton", + "Denis Leary", + "Holly Hunter" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Joe the King", + "year": 1999, + "cast": [ + "Noah Fleiss", + "Val Kilmer", + "Karen Young", + "Ethan Hawke" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Just a Little Harmless Sex", + "year": 1999, + "cast": [ + "Alison Eastwood", + "Rachel Hunter", + "Lauren Hutton" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Just the Ticket", + "year": 1999, + "cast": [ + "Andy García", + "Andie MacDowell" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "K-911", + "year": 1999, + "cast": [ + "James Belushi", + "Christine Tucci", + "James Handy" + ], + "genres": [ + "Crime", + "Comedy" + ] + }, + { + "title": "The King and I", + "year": 1999, + "cast": [ + "Miranda Richardson", + "Martin Vidnovic", + "Ian Richardson" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Kiss the Sky", + "year": 1999, + "cast": [ + "William Petersen", + "Gary Cole", + "Sheryl Lee", + "Terence Stamp" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Kiss Toledo Goodbye", + "year": 1999, + "cast": [ + "Michael Rapaport", + "Christopher Walken", + "Christine Taylor" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Lake Placid", + "year": 1999, + "cast": [ + "Bill Pullman", + "Bridget Fonda", + "Oliver Platt", + "Brendan Gleeson", + "Betty White" + ], + "genres": [ + "Horror", + "Comedy" + ] + }, + { + "title": "Liberty Heights", + "year": 1999, + "cast": [ + "Adrien Brody", + "Ben Foster", + "Orlando Jones" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Life", + "year": 1999, + "cast": [ + "Eddie Murphy", + "Martin Lawrence", + "Bernie Mac" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Light It Up", + "year": 1999, + "cast": [ + "Usher Raymond", + "Forest Whitaker", + "Judd Nelson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Limey", + "year": 1999, + "cast": [ + "Terence Stamp", + "Lesley Ann Warren", + "Luis Guzmán", + "Peter Fonda" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Lost & Found", + "year": 1999, + "cast": [ + "David Spade", + "Sophie Marceau", + "Martin Sheen" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Love Stinks", + "year": 1999, + "cast": [ + "French Stewart", + "Bridgette Wilson", + "Bill Bellamy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Lovers Lane", + "year": 1999, + "cast": [ + "Erin J. Dean", + "Riley Smith", + "Sarah Lancaster" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Lycanthrope", + "year": 1999, + "cast": [ + "Robert Carradine", + "Michael Winslow", + "Rebecca Holden" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Magnolia", + "year": 1999, + "cast": [ + "Tom Cruise", + "Julianne Moore", + "Philip Seymour Hoffman", + "Philip Baker Hall", + "John C. Reilly", + "William H. Macy", + "Jason Robards", + "Jeremy Blackman", + "Melora Walters", + "Melinda Dillon", + "Henry Gibson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Man of the Century", + "year": 1999, + "cast": [ + "Gibson Frazier", + "Cara Buono", + "Susan Egan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Man on the Moon", + "year": 1999, + "cast": [ + "Jim Carrey", + "Danny DeVito", + "Courtney Love", + "Paul Giamatti" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "A Map of the World", + "year": 1999, + "cast": [ + "Sigourney Weaver", + "Julianne Moore", + "David Strathairn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Mating Habits of the Earthbound Human", + "year": 1999, + "cast": [ + "Carmen Electra", + "Mackenzie Astin", + "Lucy Liu" + ], + "genres": [ + "Satire" + ] + }, + { + "title": "The Matrix", + "year": 1999, + "cast": [ + "Keanu Reeves", + "Laurence Fishburne", + "Carrie-Anne Moss", + "Hugo Weaving", + "Joe Pantoliano" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Message in a Bottle", + "year": 1999, + "cast": [ + "Kevin Costner", + "Robin Wright Penn", + "Paul Newman" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "The Messenger: The Story of Joan of Arc", + "year": 1999, + "cast": [ + "Milla Jovovich", + "John Malkovich", + "Faye Dunaway", + "Dustin Hoffman" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Mickey Blue Eyes", + "year": 1999, + "cast": [ + "Hugh Grant", + "James Caan", + "Jeanne Tripplehorn" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Midsummer Night's Dream", + "year": 1999, + "cast": [ + "Kevin Kline", + "Michelle Pfeiffer", + "Rupert Everett", + "Stanley Tucci", + "Calista Flockhart", + "Anna Friel", + "Christian Bale" + ], + "genres": [] + }, + { + "title": "Miss Julie", + "year": 1999, + "cast": [ + "Saffron Burrows", + "Peter Mullan", + "Maria Doyle Kennedy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Mod Squad", + "year": 1999, + "cast": [ + "Claire Danes", + "Omar Epps", + "Giovanni Ribisi" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Mr. Death", + "year": 1999, + "cast": [ + "Fred A. Leuchter", + "David Irving", + "Ernst Zündel" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Mumford", + "year": 1999, + "cast": [ + "Loren Dean", + "Jason Lee", + "Hope Davis", + "Alfre Woodard", + "Mary McDonnell", + "Ted Danson", + "Martin Short", + "Zooey Deschanel", + "Pruitt Taylor Vince" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Mummy", + "year": 1999, + "cast": [ + "Brendan Fraser", + "Rachel Weisz", + "John Hannah", + "Oded Fehr", + "Arnold Vosloo" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Muppets from Space", + "year": 1999, + "cast": [ + "Dave Goelz", + "Steve Whitmire", + "Bill Barretta", + "Frank Oz" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Muse", + "year": 1999, + "cast": [ + "Albert Brooks", + "Sharon Stone", + "Andie MacDowell", + "Jeff Bridges" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Music of the Heart", + "year": 1999, + "cast": [ + "Meryl Streep", + "Angela Bassett", + "Aidan Quinn", + "Gloria Estefan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "My Favorite Martian", + "year": 1999, + "cast": [ + "Christopher Lloyd", + "Jeff Daniels", + "Elizabeth Hurley", + "Daryl Hannah", + "Wallace Shawn", + "Ray Walston" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "My Voyage to Italy", + "year": 1999, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "Mystery, Alaska", + "year": 1999, + "cast": [ + "Russell Crowe", + "Burt Reynolds", + "Colm Meaney" + ], + "genres": [ + "Comedy", + "Sports" + ] + }, + { + "title": "Mystery Men", + "year": 1999, + "cast": [ + "Ben Stiller", + "Hank Azaria", + "William H. Macy", + "Janeane Garofalo", + "Wes Studi", + "Paul Reubens", + "Kel Mitchell", + "Greg Kinnear", + "Geoffrey Rush", + "Lena Olin", + "Claire Forlani", + "Tom Waits" + ], + "genres": [ + "Superhero", + "Comedy" + ] + }, + { + "title": "Never Been Kissed", + "year": 1999, + "cast": [ + "Drew Barrymore", + "David Arquette", + "Molly Shannon", + "James Franco" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Ninth Gate", + "year": 1999, + "cast": [ + "Johnny Depp", + "Lena Olin", + "Frank Langella" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Ninth Street", + "year": 1999, + "cast": [ + "Don Washington" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Notting Hill", + "year": 1999, + "cast": [ + "Julia Roberts", + "Hugh Grant", + "Hugh Bonneville", + "Emma Chambers", + "James Dreyfus", + "Rhys Ifans", + "Tim McInnerny", + "Gina McKee" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "October Sky", + "year": 1999, + "cast": [ + "Jake Gyllenhaal", + "Chris Cooper", + "Laura Dern" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Office Space", + "year": 1999, + "cast": [ + "Ron Livingston", + "Jennifer Aniston", + "Stephen Root", + "Gary Cole" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Omega Code", + "year": 1999, + "cast": [ + "Casper Van Dien", + "Michael York" + ], + "genres": [ + "Action" + ] + }, + { + "title": "One Man's Hero", + "year": 1999, + "cast": [ + "Tom Berenger", + "Joaquim de Almeida", + "Daniela Romo" + ], + "genres": [ + "War" + ] + }, + { + "title": "The Other Sister", + "year": 1999, + "cast": [ + "Juliette Lewis", + "Diane Keaton", + "Tom Skerritt", + "Giovanni Ribisi" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Our Friend, Martin", + "year": 1999, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "P.U.N.K.S.", + "year": 1999, + "cast": [ + "Tim Redwine", + "Jessica Alba", + "Brandon Baker" + ], + "genres": [ + "Teen", + "Comedy" + ] + }, + { + "title": "The Passion of Ayn Rand", + "year": 1999, + "cast": [ + "Helen Mirren", + "Eric Stoltz", + "Peter Fonda" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Passport to Paris", + "year": 1999, + "cast": [ + "Mary-Kate Olsen", + "Ashley Olsen" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Payback", + "year": 1999, + "cast": [ + "Mel Gibson", + "Gregg Henry", + "Maria Bello", + "Lucy Liu" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Play It to the Bone", + "year": 1999, + "cast": [ + "Antonio Banderas", + "Woody Harrelson", + "Lolita Davidovich", + "Lucy Liu" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Pushing Tin", + "year": 1999, + "cast": [ + "John Cusack", + "Billy Bob Thornton", + "Cate Blanchett", + "Angelina Jolie" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Rage: Carrie 2", + "year": 1999, + "cast": [ + "Emily Bergl", + "Mena Suvari", + "Jason London", + "Amy Irving" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Random Hearts", + "year": 1999, + "cast": [ + "Harrison Ford", + "Kristin Scott Thomas", + "Charles S. Dutton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Ravenous", + "year": 1999, + "cast": [ + "Guy Pearce", + "Robert Carlyle", + "Jeremy Davies", + "Jeffrey Jones", + "John Spencer", + "Stephen Spinella", + "Neal McDonough", + "David Arquette" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Retro Puppet Master", + "year": 1999, + "cast": [ + "Greg Sestero", + "Brigitta Dau", + "Jack Donner" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Revelation aka Apocalypse", + "year": 1999, + "cast": [], + "genres": [ + "Thriller" + ] + }, + { + "title": "Rites of Passage", + "year": 1999, + "cast": [ + "Dean Stockwell", + "James Remar", + "Jason Behr" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Runaway Bride", + "year": 1999, + "cast": [ + "Richard Gere", + "Julia Roberts", + "Joan Cusack" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "The Runner", + "year": 1999, + "cast": [ + "Ron Eldard", + "Courteney Cox", + "John Goodman" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "She's All That", + "year": 1999, + "cast": [ + "Freddie Prinze Jr.", + "Rachael Leigh Cook", + "Matthew Lillard", + "Paul Walker", + "Jodi Lyn O'Keefe", + "Kieran Culkin", + "Anna Paquin" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Simon Sez", + "year": 1999, + "cast": [ + "Dennis Rodman", + "Dane Cook" + ], + "genres": [ + "Action", + "Comedy" + ] + }, + { + "title": "Simply Irresistible", + "year": 1999, + "cast": [ + "Sarah Michelle Gellar", + "Sean Patrick Flanery", + "Patricia Clarkson" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "The Sixth Sense", + "year": 1999, + "cast": [ + "Bruce Willis", + "Haley Joel Osment", + "Toni Collette", + "Donnie Wahlberg", + "Olivia Williams" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "Sleepy Hollow", + "year": 1999, + "cast": [ + "Johnny Depp", + "Christina Ricci", + "Miranda Richardson", + "Casper Van Dien" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "A Slipping-Down Life", + "year": 1999, + "cast": [ + "Lili Taylor", + "Guy Pearce" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Snow Falling on Cedars", + "year": 1999, + "cast": [ + "Ethan Hawke", + "Youki Kudoh", + "Reeve Carney" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "South Park: Bigger, Longer & Uncut", + "year": 1999, + "cast": [ + "Trey Parker", + "Matt Stone", + "Mary Kay Bergman", + "Isaac Hayes" + ], + "genres": [ + "Animated", + "Musical", + "Comedy" + ] + }, + { + "title": "Speedway Junky", + "year": 1999, + "cast": [ + "Jesse Bradford", + "Jordan Brower", + "Daryl Hannah" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Star Wars: Episode I – The Phantom Menace", + "year": 1999, + "cast": [ + "Liam Neeson", + "Ewan McGregor", + "Natalie Portman", + "Jake Lloyd" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Stigmata", + "year": 1999, + "cast": [ + "Patricia Arquette", + "Gabriel Byrne", + "Jonathan Pryce" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Stir of Echoes", + "year": 1999, + "cast": [ + "Kevin Bacon", + "Kathryn Erbe", + "Illeana Douglas" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Storm", + "year": 1999, + "cast": [ + "Christian McIntire", + "Luke Perry", + "Robert Knott", + "Alexandra Powers" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Story of Us", + "year": 1999, + "cast": [ + "Bruce Willis", + "Michelle Pfeiffer" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "The Straight Story", + "year": 1999, + "cast": [ + "Richard Farnsworth", + "Sissy Spacek", + "Harry Dean Stanton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Stuart Little", + "year": 1999, + "cast": [ + "Geena Davis", + "Hugh Laurie", + "Jonathan Lipnicki" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Summer of Sam", + "year": 1999, + "cast": [ + "John Leguizamo", + "Adrien Brody", + "Mira Sorvino", + "Jennifer Esposito" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Superstar", + "year": 1999, + "cast": [ + "Molly Shannon", + "Will Ferrell", + "Harland Williams" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Sweet and Lowdown", + "year": 1999, + "cast": [ + "Sean Penn", + "Samantha Morton", + "Anthony LaPaglia", + "Uma Thurman" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Talented Mr. Ripley", + "year": 1999, + "cast": [ + "Matt Damon", + "Gwyneth Paltrow", + "Jude Law", + "Cate Blanchett", + "Philip Seymour Hoffman", + "Philip Baker Hall", + "James Rebhorn" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Tarzan", + "year": 1999, + "cast": [ + "Tony Goldwyn", + "Minnie Driver", + "Glenn Close", + "Rosie O'Donnell", + "Brian Blessed", + "Nigel Hawthorne", + "Lance Henriksen", + "Wayne Knight" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Teaching Mrs. Tingle", + "year": 1999, + "cast": [ + "Helen Mirren", + "Katie Holmes", + "Barry Watson", + "Marisa Coughlan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "That Championship Season", + "year": 1999, + "cast": [ + "Gary Sinise", + "Vincent D'Onofrio", + "Tony Shalhoub", + "Terry Kinney", + "Paul Sorvino" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Thicker than Water", + "year": 1999, + "cast": [ + "Mack 10", + "Fat Joe", + "Ice Cube" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Thirteenth Floor", + "year": 1999, + "cast": [ + "Craig Bierko", + "Gretchen Mol", + "Vincent D'Onofrio" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Thirteenth Year", + "year": 1999, + "cast": [ + "Chez Starbuck", + "Courtnee Draper" + ], + "genres": [ + "Family" + ] + }, + { + "title": "The Thomas Crown Affair", + "year": 1999, + "cast": [ + "Pierce Brosnan", + "Rene Russo", + "Denis Leary" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Three Kings", + "year": 1999, + "cast": [ + "George Clooney", + "Mark Wahlberg", + "Ice Cube", + "Spike Jonze" + ], + "genres": [ + "War", + "Comedy" + ] + }, + { + "title": "Three to Tango", + "year": 1999, + "cast": [ + "Matthew Perry", + "Neve Campbell", + "Dylan McDermott" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Titus", + "year": 1999, + "cast": [ + "Anthony Hopkins", + "Jessica Lange", + "Alan Cumming" + ], + "genres": [] + }, + { + "title": "Toy Story 2", + "year": 1999, + "cast": [ + "voices of", + "Tom Hanks", + "Tim Allen", + "Annie Potts", + "Don Rickles" + ], + "genres": [ + "Animated", + "Comedy", + "Family" + ] + }, + { + "title": "Trippin'", + "year": 1999, + "cast": [ + "Deon Richmond", + "Countess Vaughn", + "Maia Campbell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "True Crime", + "year": 1999, + "cast": [ + "Clint Eastwood", + "Isaiah Washington", + "Denis Leary" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Tumbleweeds", + "year": 1999, + "cast": [ + "Janet McTeer", + "Kimberly J. Brown", + "Gavin O'Connor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Twin Falls Idaho", + "year": 1999, + "cast": [ + "Mark Polish", + "Michael Polish", + "Michele Hicks" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Universal Soldier: The Return", + "year": 1999, + "cast": [ + "Jean-Claude Van Damme", + "Michael Jai White" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Varsity Blues", + "year": 1999, + "cast": [ + "James Van Der Beek", + "Jon Voight", + "Paul Walker", + "Amy Smart", + "Scott Caan", + "Ron Lester", + "Ali Larter", + "Eliel Swinton" + ], + "genres": [ + "Comedy", + "Drama", + "Sports" + ] + }, + { + "title": "The Virgin Suicides", + "year": 1999, + "cast": [ + "James Woods", + "Kathleen Turner", + "Kirsten Dunst", + "Josh Hartnett", + "A. J. Cook" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Virus", + "year": 1999, + "cast": [ + "Jamie Lee Curtis", + "William Baldwin", + "Donald Sutherland" + ], + "genres": [ + "Science Fiction", + "Horror" + ] + }, + { + "title": "The Waiting Game", + "year": 1999, + "cast": [ + "Will Arnett", + "Dwight Ewell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Wakko's Wish", + "year": 1999, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "A Walk on the Moon", + "year": 1999, + "cast": [ + "Diane Lane", + "Viggo Mortensen", + "Liev Schreiber", + "Anna Paquin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Walking Across Egypt", + "year": 1999, + "cast": [ + "Ellen Burstyn", + "Jonathan Taylor Thomas", + "Mark Hamill" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "When the Day Breaks", + "year": 1999, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "Whiteboyz", + "year": 1999, + "cast": [], + "genres": [ + "Independent" + ] + }, + { + "title": "Wild Wild West", + "year": 1999, + "cast": [ + "Will Smith", + "Kevin Kline", + "Kenneth Branagh", + "Salma Hayek" + ], + "genres": [ + "Action", + "Comedy" + ] + }, + { + "title": "Wing Commander", + "year": 1999, + "cast": [ + "Freddie Prinze Jr.", + "Saffron Burrows", + "Matthew Lillard", + "Tchéky Karyo", + "Jürgen Prochnow", + "David Suchet" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Winnie the Pooh: Seasons of Giving", + "year": 1999, + "cast": [ + "Jim Cummings", + "John Fiedler", + "Brady Bluhm" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Wisconsin Death Trip", + "year": 1999, + "cast": [], + "genres": [] + }, + { + "title": "The Woman Chaser", + "year": 1999, + "cast": [ + "Patrick Warburton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Woman Scorned", + "year": 1999, + "cast": [ + "Marcia Johnson" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Wood", + "year": 1999, + "cast": [ + "Omar Epps", + "Richard T. Jones", + "Taye Diggs" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "102 Dalmatians", + "year": 2000, + "cast": [ + "Glenn Close", + "Gérard Depardieu", + "Alice Evans" + ], + "genres": [ + "Comedy", + "Family" + ] + }, + { + "title": "28 Days", + "year": 2000, + "cast": [ + "Sandra Bullock", + "Viggo Mortensen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "3 Strikes", + "year": 2000, + "cast": [ + "Brian Hooks", + "N'Bushe Wright" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The 6th Day", + "year": 2000, + "cast": [ + "Arnold Schwarzenegger", + "Robert Duvall" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Across the Line", + "year": 2000, + "cast": [ + "Brad Johnson", + "Adrienne Barbeau", + "Brian Bloom" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Adventures in Wild California", + "year": 2000, + "cast": [ + "Jimmy Smits", + "(Narrator)" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Adventures of Rocky and Bullwinkle", + "year": 2000, + "cast": [ + "Rene Russo", + "Jason Alexander", + "Robert De Niro", + "Piper Perabo", + "June Foray", + "Keith Scott" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "All the Pretty Horses", + "year": 2000, + "cast": [ + "Matt Damon", + "Penélope Cruz", + "Henry Thomas", + "Lucas Black", + "Rubén Blades", + "Míriam Colón", + "Bruce Dern" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Almost Famous", + "year": 2000, + "cast": [ + "Billy Crudup", + "Frances McDormand", + "Kate Hudson", + "Jason Lee", + "Patrick Fugit", + "Anna Paquin", + "Fairuza Balk" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "American Psycho", + "year": 2000, + "cast": [ + "Christian Bale", + "Chloë Sevigny", + "Willem Dafoe" + ], + "genres": [ + "Comedy", + "Thriller" + ] + }, + { + "title": "Animal Factory", + "year": 2000, + "cast": [ + "Willem Dafoe", + "Edward Furlong", + "Mickey Rourke" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Art of War", + "year": 2000, + "cast": [ + "Wesley Snipes", + "Donald Sutherland" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Autumn in New York", + "year": 2000, + "cast": [ + "Richard Gere", + "Winona Ryder" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Bait", + "year": 2000, + "cast": [ + "Jamie Foxx", + "David Morse", + "Kimberly Elise" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Ballad of Ramblin' Jack", + "year": 2000, + "cast": [ + "Ramblin' Jack Elliott" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Bamboozled", + "year": 2000, + "cast": [ + "Damon Wayans", + "Jada Pinkett Smith", + "Savion Glover", + "Michael Rapaport", + "Tommy Davidson" + ], + "genres": [ + "Satire" + ] + }, + { + "title": "Battlefield Earth", + "year": 2000, + "cast": [ + "John Travolta", + "Forest Whitaker", + "Barry Pepper" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Beach", + "year": 2000, + "cast": [ + "Leonardo DiCaprio", + "Virginie Ledoyen", + "Tilda Swinton" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Beat", + "year": 2000, + "cast": [ + "Courtney Love", + "Kiefer Sutherland" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Beautiful", + "year": 2000, + "cast": [ + "Minnie Driver", + "Hallie Kate Eisenberg", + "Kathleen Turner" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Beautiful Joe", + "year": 2000, + "cast": [ + "Sharon Stone", + "Billy Connolly" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Bedazzled", + "year": 2000, + "cast": [ + "Brendan Fraser", + "Elizabeth Hurley" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Before Night Falls", + "year": 2000, + "cast": [ + "Javier Bardem", + "Johnny Depp" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Best in Show", + "year": 2000, + "cast": [ + "Parker Posey", + "Michael McKean", + "Catherine O'Hara", + "Eugene Levy", + "Michael Hitchcock", + "Jennifer Coolidge" + ], + "genres": [ + "Satire" + ] + }, + { + "title": "Big Momma's House", + "year": 2000, + "cast": [ + "Martin Lawrence", + "Paul Giamatti" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Big Tease", + "year": 2000, + "cast": [ + "Craig Ferguson", + "Frances Fisher", + "Mary McCormack" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Bless the Child", + "year": 2000, + "cast": [ + "Kim Basinger", + "Jimmy Smits", + "Christina Ricci" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Boiler Room", + "year": 2000, + "cast": [ + "Giovanni Ribisi", + "Nia Long", + "Vin Diesel", + "Ben Affleck" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Book of Shadows: Blair Witch 2", + "year": 2000, + "cast": [ + "Kim Director", + "Jeffrey Donovan", + "Erica Leerhsen" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Bounce", + "year": 2000, + "cast": [ + "Ben Affleck", + "Gwyneth Paltrow" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Boy Named Sue", + "year": 2000, + "cast": [ + "sex reassignment surgery" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Boys and Girls", + "year": 2000, + "cast": [ + "Claire Forlani", + "Freddie Prinze, Jr.", + "Jason Biggs" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Bring It On", + "year": 2000, + "cast": [ + "Kirsten Dunst", + "Eliza Dushku", + "Gabrielle Union", + "Jesse Bradford" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Broken Hearts Club: A Romantic Comedy", + "year": 2000, + "cast": [ + "Ben Weber", + "Timothy Olyphant", + "Zach Braff" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Brother", + "year": 2000, + "cast": [ + "Takeshi Kitano", + "Omar Epps" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Cast Away", + "year": 2000, + "cast": [ + "Tom Hanks", + "Helen Hunt" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Cecil B. Demented", + "year": 2000, + "cast": [ + "Melanie Griffith", + "Stephen Dorff", + "Alicia Witt", + "Adrian Grenier", + "Maggie Gyllenhaal" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Cell", + "year": 2000, + "cast": [ + "Jennifer Lopez", + "Vince Vaughn", + "Vincent D'Onofrio" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Center Stage", + "year": 2000, + "cast": [ + "Amanda Schull", + "Peter Gallagher", + "Ethan Stiefel" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Charlie's Angels", + "year": 2000, + "cast": [ + "Drew Barrymore", + "Cameron Diaz", + "Lucy Liu", + "Bill Murray", + "Sam Rockwell", + "Tim Curry", + "Crispin Glover" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Cherry Falls", + "year": 2000, + "cast": [ + "Brittany Murphy", + "Michael Biehn", + "Jesse Bradford" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Chinese Coffee", + "year": 2000, + "cast": [ + "Al Pacino", + "Jerry Orbach" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Chocolat", + "year": 2000, + "cast": [ + "Juliette Binoche", + "Judi Dench", + "Alfred Molina", + "Lena Olin", + "Johnny Depp" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Chuck & Buck", + "year": 2000, + "cast": [ + "Chris Weitz", + "Mike White", + "Maya Rudolph" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Contender", + "year": 2000, + "cast": [ + "Joan Allen", + "Jeff Bridges", + "Gary Oldman", + "Christian Slater", + "Sam Elliott", + "Kathryn Morris", + "Mike Binder" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Coyote Ugly", + "year": 2000, + "cast": [ + "Piper Perabo", + "Adam Garcia", + "Tyra Banks", + "John Goodman" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Crew", + "year": 2000, + "cast": [ + "Richard Dreyfuss", + "Burt Reynolds", + "Dan Hedaya" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Crossing", + "year": 2000, + "cast": [ + "Jeff Daniels", + "Roger Rees", + "Sebastian Roché", + "Steven McCarthy" + ], + "genres": [ + "Historical", + "Drama" + ] + }, + { + "title": "Digimon: The Movie", + "year": 2000, + "cast": [ + "Lara Jill Miller", + "Joshua Seth", + "Bob Glouberman" + ], + "genres": [ + "Animated", + "Adventure" + ] + }, + { + "title": "Dinosaur", + "year": 2000, + "cast": [ + "D. B. Sweeney", + "Alfre Woodard", + "Ossie Davis" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Down to You", + "year": 2000, + "cast": [ + "Freddie Prinze, Jr.", + "Julia Stiles" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Dr. T & the Women", + "year": 2000, + "cast": [ + "Richard Gere", + "Helen Hunt", + "Farrah Fawcett", + "Laura Dern", + "Shelley Long", + "Tara Reid", + "Kate Hudson" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Dracula 2000", + "year": 2000, + "cast": [ + "Gerard Butler", + "Christopher Plummer", + "Jonny Lee Miller" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Drowning Mona", + "year": 2000, + "cast": [ + "Bette Midler", + "Jamie Lee Curtis", + "Danny DeVito", + "Neve Campbell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Dude, Where's My Car?", + "year": 2000, + "cast": [ + "Ashton Kutcher", + "Seann William Scott" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Duets", + "year": 2000, + "cast": [ + "Maria Bello", + "Andre Braugher", + "Paul Giamatti", + "Huey Lewis", + "Gwyneth Paltrow", + "Angie Dickinson" + ], + "genres": [ + "Drama", + "Musical" + ] + }, + { + "title": "Dungeons & Dragons", + "year": 2000, + "cast": [ + "Jeremy Irons", + "Thora Birch", + "Tom Baker", + "Marlon Wayans" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "The Emperor's New Groove", + "year": 2000, + "cast": [ + "David Spade", + "John Goodman", + "Eartha Kitt", + "Patrick Warburton" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Erin Brockovich", + "year": 2000, + "cast": [ + "Julia Roberts", + "Albert Finney", + "Aaron Eckhart" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "An Everlasting Piece", + "year": 2000, + "cast": [ + "Barry McEvoy", + "Brían F. O'Byrne", + "Anna Friel", + "Billy Connolly" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Eyes of Tammy Faye", + "year": 2000, + "cast": [ + "Tammy Faye Bakker", + "RuPaul" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Family Man", + "year": 2000, + "cast": [ + "Nicolas Cage", + "Téa Leoni", + "Don Cheadle" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Final Destination", + "year": 2000, + "cast": [ + "Devon Sawa", + "Ali Larter", + "Kerr Smith", + "Seann William Scott" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Finding Forrester", + "year": 2000, + "cast": [ + "Sean Connery", + "Rob Brown", + "Anna Paquin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Flintstones in Viva Rock Vegas", + "year": 2000, + "cast": [ + "Mark Addy", + "Stephen Baldwin", + "Kristen Johnston", + "Jane Krakowski", + "Alan Cumming", + "Joan Collins", + "Harvey Korman" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "For Love or Country: The Arturo Sandoval Story", + "year": 2000, + "cast": [ + "Andy García", + "Mía Maestro", + "Gloria Estefan" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Frequency", + "year": 2000, + "cast": [ + "Dennis Quaid", + "James Caviezel" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Get Carter", + "year": 2000, + "cast": [ + "Sylvester Stallone", + "Rhona Mitra", + "Michael Caine", + "Rachael Leigh Cook", + "Miranda Richardson", + "Mickey Rourke" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Gift", + "year": 2000, + "cast": [ + "Cate Blanchett", + "Giovanni Ribisi", + "Keanu Reeves", + "Katie Holmes", + "Greg Kinnear", + "Hilary Swank" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Girl", + "year": 2000, + "cast": [ + "Claire Keim", + "Agathe De La Boulaye" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Girlfight", + "year": 2000, + "cast": [ + "Michelle Rodriguez", + "Paul Calderón" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Gladiator", + "year": 2000, + "cast": [ + "Russell Crowe", + "Joaquin Phoenix", + "Connie Nielsen", + "Richard Harris", + "Djimon Hounsou", + "Oliver Reed" + ], + "genres": [ + "Action", + "Drama" + ] + }, + { + "title": "The Golden Bowl", + "year": 2000, + "cast": [ + "Kate Beckinsale", + "James Fox", + "Anjelica Huston", + "Nick Nolte" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Gone in 60 Seconds", + "year": 2000, + "cast": [ + "Nicolas Cage", + "Giovanni Ribisi", + "Angelina Jolie", + "Robert Duvall" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Gossip", + "year": 2000, + "cast": [ + "James Marsden", + "Lena Headey", + "Norman Reedus", + "Kate Hudson", + "Marisa Coughlan", + "Joshua Jackson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Gun Shy", + "year": 2000, + "cast": [ + "Liam Neeson", + "Oliver Platt", + "Andrew Lauer" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Hamlet", + "year": 2000, + "cast": [ + "Ethan Hawke", + "Diane Venora", + "Julia Stiles" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hanging Up", + "year": 2000, + "cast": [ + "Meg Ryan", + "Diane Keaton", + "Lisa Kudrow", + "Walter Matthau" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Held Up", + "year": 2000, + "cast": [ + "Jamie Foxx", + "Nia Long" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Here on Earth", + "year": 2000, + "cast": [ + "Chris Klein", + "Leelee Sobieski", + "Josh Hartnett" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "High Fidelity", + "year": 2000, + "cast": [ + "John Cusack", + "Jack Black", + "Lisa Bonet", + "Joan Cusack", + "Iben Hjejle", + "Lili Taylor" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Highlander: Endgame", + "year": 2000, + "cast": [ + "Adrian Paul", + "Christopher Lambert" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Hollow Man", + "year": 2000, + "cast": [ + "Elisabeth Shue", + "Kevin Bacon", + "Josh Brolin" + ], + "genres": [ + "Science Fiction", + "Horror" + ] + }, + { + "title": "The House of Mirth", + "year": 2000, + "cast": [ + "Gillian Anderson", + "Laura Linney", + "Dan Aykroyd" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "How the Grinch Stole Christmas", + "year": 2000, + "cast": [ + "Jim Carrey", + "Christine Baranski", + "Jeffrey Tambor", + "Molly Shannon", + "Taylor Momsen" + ], + "genres": [ + "Family", + "Fantasy" + ] + }, + { + "title": "How to Kill Your Neighbor's Dog", + "year": 2000, + "cast": [ + "Kenneth Branagh", + "Robin Wright Penn" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "I Dreamed of Africa", + "year": 2000, + "cast": [ + "Kim Basinger", + "Eva Marie Saint" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Icebreaker", + "year": 2000, + "cast": [ + "Sean Astin", + "Stacy Keach", + "Bruce Campbell" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The In Crowd", + "year": 2000, + "cast": [ + "Susan Ward", + "Lori Heuring", + "Matthew Settle" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Into the Arms of Strangers: Stories of the Kindertransport", + "year": 2000, + "cast": [ + "the", + "kindertransport" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Isn't She Great", + "year": 2000, + "cast": [ + "Bette Midler", + "Nathan Lane", + "John Cleese", + "Stockard Channing", + "David Hyde Pierce", + "Amanda Peet" + ], + "genres": [ + "Biography", + "Comedy" + ] + }, + { + "title": "Ivans Xtc", + "year": 2000, + "cast": [ + "Danny Huston", + "Peter Weller" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Joe Gould's Secret", + "year": 2000, + "cast": [ + "Ian Holm", + "Stanley Tucci", + "Hope Davis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Just One Night", + "year": 2000, + "cast": [ + "Timothy Hutton", + "Maria Grazia Cucinotta" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Keeping the Faith", + "year": 2000, + "cast": [ + "Ben Stiller", + "Jenna Elfman", + "Edward Norton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Kid", + "year": 2000, + "cast": [ + "Bruce Willis", + "Lily Tomlin", + "Jean Smart", + "Spencer Breslin" + ], + "genres": [ + "Family" + ] + }, + { + "title": "The Ladies Man", + "year": 2000, + "cast": [ + "Tim Meadows", + "Billy Dee Williams", + "Will Ferrell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Last Producer", + "year": 2000, + "cast": [ + "Burt Reynolds", + "Rod Steiger", + "Benjamin Bratt" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Legacy", + "year": 2000, + "cast": [ + "life in", + "Chicago", + "ghettos" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Legend of Bagger Vance", + "year": 2000, + "cast": [ + "Matt Damon", + "Will Smith", + "Charlize Theron", + "Jack Lemmon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Little Nicky", + "year": 2000, + "cast": [ + "Adam Sandler", + "Patricia Arquette", + "Harvey Keitel" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Little Vampire", + "year": 2000, + "cast": [ + "Jonathan Lipnicki", + "Richard E. Grant", + "Rollo Weeks" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Long Night's Journey into Day", + "year": 2000, + "cast": [ + "the", + "Truth and Reconciliation Commission", + "in post-", + "Apartheid", + "South Africa" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Loser", + "year": 2000, + "cast": [ + "Jason Biggs", + "Mena Suvari", + "Greg Kinnear" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Lost Souls", + "year": 2000, + "cast": [ + "Winona Ryder", + "Ben Chaplin" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Love & Basketball", + "year": 2000, + "cast": [ + "Omar Epps", + "Sanaa Lathan", + "Dennis Haysbert" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Lucky Numbers", + "year": 2000, + "cast": [ + "John Travolta", + "Lisa Kudrow", + "Tim Roth", + "Michael Moore" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Maryam", + "year": 2000, + "cast": [ + "Mariam Parris", + "Shaun Toub", + "Shohreh Aghdashloo" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Maze", + "year": 2000, + "cast": [ + "Rob Morrow", + "Laura Linney", + "Craig Sheffer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Me, Myself & Irene", + "year": 2000, + "cast": [ + "Jim Carrey", + "Renée Zellweger", + "Robert Forster", + "Chris Cooper" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Meet the Parents", + "year": 2000, + "cast": [ + "Ben Stiller", + "Robert De Niro", + "Blythe Danner", + "Teri Polo", + "Owen Wilson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Memento", + "year": 2000, + "cast": [ + "Guy Pearce", + "Carrie-Anne Moss", + "Joe Pantoliano" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Men of Honor", + "year": 2000, + "cast": [ + "Robert De Niro", + "Cuba Gooding, Jr.", + "Charlize Theron" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Mercy Streets", + "year": 2000, + "cast": [ + "Eric Roberts", + "Cynthia Watros", + "Stacy Keach" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Million Dollar Hotel", + "year": 2000, + "cast": [ + "Jeremy Davies", + "Milla Jovovich", + "Mel Gibson", + "Jimmy Smits" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Miss Congeniality", + "year": 2000, + "cast": [ + "Sandra Bullock", + "Benjamin Bratt", + "Michael Caine", + "William Shatner", + "Candice Bergen" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mission to Mars", + "year": 2000, + "cast": [ + "Gary Sinise", + "Tim Robbins", + "Don Cheadle", + "Connie Nielsen", + "Jerry O'Connell", + "Kim Delaney" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Mission: Impossible 2", + "year": 2000, + "cast": [ + "Tom Cruise", + "Dougray Scott", + "Thandie Newton", + "Ving Rhames", + "Richard Roxburgh", + "Brendan Gleeson" + ], + "genres": [ + "Action" + ] + }, + { + "title": "My Dog Skip", + "year": 2000, + "cast": [ + "Frankie Muniz", + "Diane Lane", + "Luke Wilson", + "Kevin Bacon" + ], + "genres": [ + "Family" + ] + }, + { + "title": "My 5 Wives", + "year": 2000, + "cast": [ + "Rodney Dangerfield", + "Jerry Stiller", + "Molly Shannon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Next Best Thing", + "year": 2000, + "cast": [ + "Rupert Everett", + "Madonna", + "Benjamin Bratt" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Next Friday", + "year": 2000, + "cast": [ + "Ice Cube", + "Mike Epps", + "Don Curry" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Nothin' 2 Lose", + "year": 2000, + "cast": [ + "Brian Hooks" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Nutty Professor II: The Klumps", + "year": 2000, + "cast": [ + "Eddie Murphy", + "Janet Jackson", + "Larry Miller", + "Wanda Sykes" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Nurse Betty", + "year": 2000, + "cast": [ + "Morgan Freeman", + "Renée Zellweger", + "Chris Rock", + "Greg Kinnear" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "O Brother, Where Art Thou?", + "year": 2000, + "cast": [ + "George Clooney", + "Tim Blake Nelson", + "John Turturro", + "Holly Hunter", + "John Goodman", + "Charles Durning" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Opportunists", + "year": 2000, + "cast": [ + "Christopher Walken", + "Vera Farmiga", + "Cyndi Lauper" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Original Kings of Comedy", + "year": 2000, + "cast": [ + "stand-up comedy", + "of", + "Steve Harvey", + "D. L. Hughley", + "Cedric the Entertainer", + "Bernie Mac" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Our Song", + "year": 2000, + "cast": [ + "Kerry Washington", + "Melissa Martinez" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Panic", + "year": 2000, + "cast": [ + "William H. Macy", + "Neve Campbell", + "Donald Sutherland" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Passion of Mind", + "year": 2000, + "cast": [ + "Demi Moore", + "Stellan Skarsgård" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Patriot", + "year": 2000, + "cast": [ + "Mel Gibson", + "Heath Ledger", + "Joely Richardson", + "Jason Isaacs", + "Chris Cooper", + "Tom Wilkinson" + ], + "genres": [ + "War" + ] + }, + { + "title": "Pay It Forward", + "year": 2000, + "cast": [ + "Haley Joel Osment", + "Helen Hunt", + "Kevin Spacey", + "James Caviezel", + "Angie Dickinson", + "Jon Bon Jovi" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Perfect Storm", + "year": 2000, + "cast": [ + "George Clooney", + "Mark Wahlberg", + "Diane Lane", + "Mary Elizabeth Mastrantonio", + "John C. Reilly", + "Karen Allen" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Picking Up the Pieces", + "year": 2000, + "cast": [ + "Woody Allen", + "Sharon Stone", + "David Schwimmer" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Pitch Black", + "year": 2000, + "cast": [ + "Vin Diesel", + "Keith David", + "Cole Hauser" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Pollock", + "year": 2000, + "cast": [ + "Ed Harris", + "Marcia Gay Harden", + "Jennifer Connelly" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Poor White Trash", + "year": 2000, + "cast": [ + "Sean Young", + "William Devane" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Price of Glory", + "year": 2000, + "cast": [ + "Jimmy Smits" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Prince of Central Park", + "year": 2000, + "cast": [ + "Kathleen Turner", + "Danny Aiello", + "Harvey Keitel" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Proof of Life", + "year": 2000, + "cast": [ + "Russell Crowe", + "Meg Ryan", + "David Morse" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Psycho Beach Party", + "year": 2000, + "cast": [ + "Thomas Gibson", + "Lauren Ambrose", + "Charles Busch" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Quills", + "year": 2000, + "cast": [ + "Geoffrey Rush", + "Kate Winslet", + "Joaquin Phoenix", + "Michael Caine" + ], + "genres": [ + "Drama", + "Biography" + ] + }, + { + "title": "Ready to Rumble", + "year": 2000, + "cast": [ + "David Arquette", + "Oliver Platt", + "Scott Caan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Reckless Indifference", + "year": 2000, + "cast": [ + "underage murder" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Red Planet", + "year": 2000, + "cast": [ + "Val Kilmer", + "Carrie-Anne Moss", + "Tom Sizemore" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Reindeer Games", + "year": 2000, + "cast": [ + "Ben Affleck", + "Gary Sinise", + "Charlize Theron" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Remember the Titans", + "year": 2000, + "cast": [ + "Denzel Washington", + "Will Patton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Replacements", + "year": 2000, + "cast": [ + "Keanu Reeves", + "Gene Hackman", + "Brooke Langton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Requiem for a Dream", + "year": 2000, + "cast": [ + "Ellen Burstyn", + "Jared Leto", + "Jennifer Connelly", + "Marlon Wayans" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Return to Me", + "year": 2000, + "cast": [ + "Minnie Driver", + "David Duchovny", + "Carroll O'Connor" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Road to El Dorado", + "year": 2000, + "cast": [ + "Kevin Kline", + "Kenneth Branagh", + "Rosie Perez" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Road Trip", + "year": 2000, + "cast": [ + "Breckin Meyer", + "Seann William Scott", + "Tom Green", + "DJ Qualls", + "Amy Smart" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Romeo Must Die", + "year": 2000, + "cast": [ + "Jet Li", + "Aaliyah", + "Delroy Lindo" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Rugrats in Paris: The Movie", + "year": 2000, + "cast": [ + "Elizabeth Daily", + "Tara Strong", + "Cheryl Chase" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Rules of Engagement", + "year": 2000, + "cast": [ + "Tommy Lee Jones", + "Samuel L. Jackson", + "Guy Pearce" + ], + "genres": [ + "War" + ] + }, + { + "title": "The Scarecrow", + "year": 2000, + "cast": [ + "Shawn Hoffman", + "Belinda Montgomery", + "Ray Porter", + "Corey Feldman" + ], + "genres": [ + "Animated", + "Fantasy" + ] + }, + { + "title": "Scary Movie", + "year": 2000, + "cast": [ + "Marlon Wayans", + "Anna Faris", + "Carmen Electra" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Scottsboro: An American Tragedy", + "year": 2000, + "cast": [ + "the", + "Scottsboro Boys", + "case" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Scream 3", + "year": 2000, + "cast": [ + "David Arquette", + "Neve Campbell", + "Courteney Cox", + "Patrick Dempsey", + "Scott Foley", + "Emily Mortimer" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Screwed", + "year": 2000, + "cast": [ + "Norm Macdonald", + "Dave Chappelle", + "Danny DeVito" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Seventeen Again", + "year": 2000, + "cast": [ + "Tamera Mowry", + "Tia Mowry", + "Maia Campbell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Sexy Beast", + "year": 2000, + "cast": [ + "Ray Winstone", + "Ben Kingsley", + "Ian McShane", + "Amanda Redman", + "James Fox" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Shadow of the Vampire", + "year": 2000, + "cast": [ + "John Malkovich", + "Willem Dafoe" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Shaft", + "year": 2000, + "cast": [ + "Samuel L. Jackson", + "Vanessa Williams", + "Jeffrey Wright", + "Richard Roundtree", + "Christian Bale" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Shanghai Noon", + "year": 2000, + "cast": [ + "Jackie Chan", + "Owen Wilson", + "Lucy Liu" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Shriek If You Know What I Did Last Friday the Thirteenth", + "year": 2000, + "cast": [ + "Tiffani-Amber Thiessen", + "Tom Arnold", + "Majandra Delfino" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Skulls", + "year": 2000, + "cast": [ + "Joshua Jackson", + "Paul Walker" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Small Time Crooks", + "year": 2000, + "cast": [ + "Woody Allen", + "Hugh Grant", + "Tracey Ullman" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Smokers", + "year": 2000, + "cast": [ + "Dominique Swain", + "Busy Philipps", + "Keri Lynn Pratt", + "Nicholas M. Loeb", + "Oliver Hudson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Snatch", + "year": 2000, + "cast": [ + "Benicio del Toro", + "Jason Statham", + "Brad Pitt", + "Stephen Graham", + "Dennis Farina" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Snow Day", + "year": 2000, + "cast": [ + "Chevy Chase", + "Chris Elliott", + "Mark Webber" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Songcatcher", + "year": 2000, + "cast": [ + "Janet McTeer", + "Aidan Quinn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sound and Fury", + "year": 2000, + "cast": [ + "conflict between", + "cochlear implants", + "deaf identity" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Space Cowboys", + "year": 2000, + "cast": [ + "Clint Eastwood", + "Tommy Lee Jones", + "Donald Sutherland", + "James Garner", + "Marcia Gay Harden", + "James Cromwell", + "Loren Dean", + "Courtney B. Vance", + "William Devane" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Specials", + "year": 2000, + "cast": [ + "Thomas Haden Church", + "Rob Lowe", + "Jamie Kennedy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Steal This Movie!", + "year": 2000, + "cast": [ + "Vincent D'Onofrio", + "Janeane Garofalo" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Supernova", + "year": 2000, + "cast": [ + "James Spader", + "Angela Bassett" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Tao of Steve", + "year": 2000, + "cast": [ + "Donal Logue" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Terror Tract", + "year": 2000, + "cast": [ + "John Ritter", + "David DeLuise", + "Allison Smith" + ], + "genres": [ + "Comedy", + "Horror" + ] + }, + { + "title": "Things You Can Tell Just by Looking at Her", + "year": 2000, + "cast": [ + "Glenn Close", + "Cameron Diaz", + "Calista Flockhart", + "Kathy Baker", + "Amy Brenneman" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Thirteen Days", + "year": 2000, + "cast": [ + "Kevin Costner", + "Bruce Greenwood", + "Dylan Baker", + "Steven Culp", + "Len Cariou", + "Kevin Conway" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Thomas & the Magic Railroad", + "year": 2000, + "cast": [ + "Alec Baldwin", + "Peter Fonda", + "Mara Wilson" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Tigerland", + "year": 2000, + "cast": [ + "Colin Farrell", + "Matthew Davis", + "Clifton Collins, Jr." + ], + "genres": [ + "War" + ] + }, + { + "title": "The Tigger Movie", + "year": 2000, + "cast": [ + "Jim Cummings", + "Nikita Hopkins", + "John Fiedler" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Timecode", + "year": 2000, + "cast": [ + "Salma Hayek", + "Stellan Skarsgård", + "Holly Hunter" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Titan A.E.", + "year": 2000, + "cast": [ + "Matt Damon", + "Nathan Lane" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Traffic", + "year": 2000, + "cast": [ + "Michael Douglas", + "Don Cheadle", + "Benicio del Toro", + "Dennis Quaid", + "Catherine Zeta-Jones" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Tripfall", + "year": 2000, + "cast": [ + "Eric Roberts", + "John Ritter", + "Rachel Hunter" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Turn It Up", + "year": 2000, + "cast": [ + "Pras", + "Ja Rule" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "U-571", + "year": 2000, + "cast": [ + "Matthew McConaughey", + "Harvey Keitel", + "Jon Bon Jovi" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Unbreakable", + "year": 2000, + "cast": [ + "Bruce Willis", + "Samuel L. Jackson", + "Robin Wright Penn" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Under Suspicion", + "year": 2000, + "cast": [ + "Gene Hackman", + "Morgan Freeman", + "Monica Bellucci" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Up at the Villa", + "year": 2000, + "cast": [ + "Kristin Scott Thomas", + "Sean Penn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Urban Legends: Final Cut", + "year": 2000, + "cast": [ + "Jennifer Morrison", + "Matthew Davis", + "Hart Bochner" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Vertical Limit", + "year": 2000, + "cast": [ + "Chris O'Donnell", + "Bill Paxton", + "Robin Tunney" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Visit", + "year": 2000, + "cast": [ + "Hill Harper", + "Billy Dee Williams", + "Rae Dawn Chong" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Waking the Dead", + "year": 2000, + "cast": [ + "Jennifer Connelly", + "Billy Crudup" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Watcher", + "year": 2000, + "cast": [ + "James Spader", + "Keanu Reeves", + "Marisa Tomei" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Way of the Gun", + "year": 2000, + "cast": [ + "Benicio del Toro", + "Ryan Phillippe" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "What Lies Beneath", + "year": 2000, + "cast": [ + "Harrison Ford", + "Michelle Pfeiffer", + "Joe Morton" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "What Planet Are You From?", + "year": 2000, + "cast": [ + "Garry Shandling", + "Annette Bening", + "John Goodman", + "Greg Kinnear", + "Linda Fiorentino" + ], + "genres": [ + "Comedy", + "Science Fiction" + ] + }, + { + "title": "What Women Want", + "year": 2000, + "cast": [ + "Mel Gibson", + "Helen Hunt", + "Marisa Tomei", + "Alan Alda" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Whatever It Takes", + "year": 2000, + "cast": [ + "Shane West", + "Marla Sokoloff", + "Jodi Lyn O'Keefe", + "James Franco" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Where the Heart Is", + "year": 2000, + "cast": [ + "Natalie Portman", + "Ashley Judd", + "Stockard Channing", + "Joan Cusack", + "Keith David", + "Sally Field" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Where the Money Is", + "year": 2000, + "cast": [ + "Paul Newman", + "Linda Fiorentino", + "Dermot Mulroney", + "Susan Barnes" + ], + "genres": [ + "Comedy", + "Crime" + ] + }, + { + "title": "Whipped", + "year": 2000, + "cast": [ + "Amanda Peet", + "Callie Thorne", + "Brian Van Holt" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Whole Nine Yards", + "year": 2000, + "cast": [ + "Bruce Willis", + "Matthew Perry", + "Rosanna Arquette", + "Natasha Henstridge", + "Michael Clarke Duncan", + "Amanda Peet", + "Kevin Pollak" + ], + "genres": [ + "Comedy", + "Crime" + ] + }, + { + "title": "Woman on Top", + "year": 2000, + "cast": [ + "Penélope Cruz" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Wonder Boys", + "year": 2000, + "cast": [ + "Michael Douglas", + "Tobey Maguire", + "Frances McDormand", + "Katie Holmes", + "Robert Downey, Jr." + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "X-Men", + "year": 2000, + "cast": [ + "Hugh Jackman", + "Patrick Stewart", + "Ian McKellen" + ], + "genres": [ + "Action", + "Science Fiction" + ] + }, + { + "title": "The Yards", + "year": 2000, + "cast": [ + "Mark Wahlberg", + "Charlize Theron", + "Joaquin Phoenix", + "James Caan", + "Ellen Burstyn", + "Faye Dunaway" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "You Can Count on Me", + "year": 2000, + "cast": [ + "Laura Linney", + "Mark Ruffalo", + "Matthew Broderick" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "15 Minutes", + "year": 2001, + "cast": [ + "Robert De Niro", + "Edward Burns", + "Kelsey Grammer" + ], + "genres": [ + "Action", + "Crime" + ] + }, + { + "title": "3 A.M.", + "year": 2001, + "cast": [ + "Danny Glover", + "Pam Grier", + "Sarita Choudhury" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "3000 Miles to Graceland", + "year": 2001, + "cast": [ + "Kurt Russell", + "Kevin Costner", + "Courteney Cox", + "Christian Slater", + "David Arquette", + "Kevin Pollak", + "Howie Long", + "Ice-T" + ], + "genres": [ + "Action", + "Crime" + ] + }, + { + "title": "A.I. Artificial Intelligence", + "year": 2001, + "cast": [ + "Jude Law", + "Haley Joel Osment", + "William Hurt", + "Frances O'Connor", + "Sam Robards" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Affair of the Necklace", + "year": 2001, + "cast": [ + "Hilary Swank", + "Jonathan Pryce", + "Adrien Brody" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Ali", + "year": 2001, + "cast": [ + "Will Smith", + "Jamie Foxx", + "Jon Voight", + "Mario Van Peebles", + "Jeffrey Wright", + "Ron Silver" + ], + "genres": [ + "Drama", + "Biography" + ] + }, + { + "title": "All Over the Guy", + "year": 2001, + "cast": [ + "Sasha Alexander", + "Dan Bucatinsky", + "Adam Goldberg" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Along Came a Spider", + "year": 2001, + "cast": [ + "Morgan Freeman", + "Monica Potter", + "Dylan Baker" + ], + "genres": [ + "Crime", + "Thriller" + ] + }, + { + "title": "The Amati Girls", + "year": 2001, + "cast": [ + "Cloris Leachman", + "Mercedes Ruehl", + "Sean Young" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "America's Sweethearts", + "year": 2001, + "cast": [ + "Julia Roberts", + "Catherine Zeta-Jones", + "John Cusack", + "Billy Crystal" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The American Astronaut", + "year": 2001, + "cast": [ + "Cory McAbee", + "Rocco Sisto" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "American Outlaws", + "year": 2001, + "cast": [ + "Colin Farrell", + "Scott Caan", + "Ali Larter" + ], + "genres": [ + "Western" + ] + }, + { + "title": "American Pie 2", + "year": 2001, + "cast": [ + "Jason Biggs", + "Shannon Elizabeth", + "Chris Klein", + "Alyson Hannigan", + "Seann William Scott", + "Tara Reid", + "Eugene Levy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "An American Rhapsody", + "year": 2001, + "cast": [ + "Scarlett Johansson", + "Nastassja Kinski", + "Tony Goldwyn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Amy's Orgasm", + "year": 2001, + "cast": [ + "Julie Davis", + "Nick Chinlund", + "Jeff Cesario" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Angel Eyes", + "year": 2001, + "cast": [ + "Jennifer Lopez", + "James Caviezel", + "Jeremy Sisto" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Animal", + "year": 2001, + "cast": [ + "Rob Schneider", + "Colleen Haskell", + "John C. McGinley", + "Edward Asner" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Anniversary Party", + "year": 2001, + "cast": [ + "Alan Cumming", + "Jennifer Jason Leigh", + "Kevin Kline" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Antitrust", + "year": 2001, + "cast": [ + "Ryan Phillippe", + "Rachael Leigh Cook", + "Claire Forlani", + "Tim Robbins" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Atlantis: The Lost Empire", + "year": 2001, + "cast": [ + "Michael J. Fox", + "Cree Summer", + "James Garner" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Baby Boy", + "year": 2001, + "cast": [ + "Tyrese Gibson", + "Snoop Dogg", + "Ving Rhames" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Bandits", + "year": 2001, + "cast": [ + "Bruce Willis", + "Cate Blanchett", + "Billy Bob Thornton" + ], + "genres": [ + "Crime", + "Comedy" + ] + }, + { + "title": "Bartleby", + "year": 2001, + "cast": [ + "David Paymer", + "Crispin Glover", + "Glenne Headly" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "A Beautiful Mind", + "year": 2001, + "cast": [ + "Russell Crowe", + "Jennifer Connelly", + "Ed Harris" + ], + "genres": [ + "Biography", + "Drama" + ] + }, + { + "title": "Behind Enemy Lines", + "year": 2001, + "cast": [ + "Gene Hackman", + "Owen Wilson", + "David Keith" + ], + "genres": [ + "War" + ] + }, + { + "title": "The Believer", + "year": 2001, + "cast": [ + "Ryan Gosling", + "Billy Zane", + "Theresa Russell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Big Bad Love", + "year": 2001, + "cast": [ + "Arliss Howard", + "Debra Winger", + "Paul Le Mat" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Black Hawk Down", + "year": 2001, + "cast": [ + "Josh Hartnett", + "Ewan McGregor", + "Tom Hardy" + ], + "genres": [ + "War" + ] + }, + { + "title": "Black Knight", + "year": 2001, + "cast": [ + "Martin Lawrence" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Blow", + "year": 2001, + "cast": [ + "Johnny Depp", + "Penélope Cruz" + ], + "genres": [ + "Biography", + "Drama" + ] + }, + { + "title": "Bones", + "year": 2001, + "cast": [ + "Snoop Dogg", + "Pam Grier", + "Michael T. Weiss" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Boom: The Sound of Eviction", + "year": 2001, + "cast": [ + "Willie Brown" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "A Boy Named Sue", + "year": 2001, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Brothers", + "year": 2001, + "cast": [ + "Morris Chestnut", + "D. L. Hughley", + "Bill Bellamy", + "Shemar Moore" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Bubble Boy", + "year": 2001, + "cast": [ + "Jake Gyllenhaal" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Buffalo Soldiers", + "year": 2001, + "cast": [ + "Joaquin Phoenix", + "Ed Harris", + "Anna Paquin" + ], + "genres": [ + "War", + "Comedy" + ] + }, + { + "title": "Bully", + "year": 2001, + "cast": [ + "Brad Renfro", + "Rachel Miner", + "Bijou Phillips" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Business of Strangers", + "year": 2001, + "cast": [ + "Julia Stiles", + "Stockard Channing", + "Marcus Giamatti" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Captain Corelli's Mandolin", + "year": 2001, + "cast": [ + "Nicolas Cage", + "Penélope Cruz" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Cat's Meow", + "year": 2001, + "cast": [ + "Kirsten Dunst", + "Edward Herrmann", + "Eddie Izzard", + "Cary Elwes", + "Joanna Lumley", + "Jennifer Tilly" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Cats & Dogs", + "year": 2001, + "cast": [ + "Jeff Goldblum", + "Elizabeth Perkins", + "Tobey Maguire", + "Sean Hayes", + "Alec Baldwin", + "Alexander Pollock" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Caveman's Valentine", + "year": 2001, + "cast": [ + "Samuel L. Jackson", + "Colm Feore", + "Ann Magnuson" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Center of the World", + "year": 2001, + "cast": [ + "Peter Sarsgaard", + "Molly Parker" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Corky Romano", + "year": 2001, + "cast": [ + "Chris Kattan", + "Peter Falk", + "Fred Ward" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "CQ", + "year": 2001, + "cast": [ + "Jeremy Davies", + "Angela Lindvall" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Crazy/Beautiful", + "year": 2001, + "cast": [ + "Kirsten Dunst", + "Jay Hernandez", + "Bruce Davison" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Crocodile Dundee in Los Angeles", + "year": 2001, + "cast": [ + "Paul Hogan", + "Linda Kozlowski", + "Jere Burns", + "Paul Rodriguez" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Cruel Intentions 2", + "year": 2001, + "cast": [ + "Robin Dunne", + "Sarah Thompson", + "Keri Lynn Pratt", + "Amy Adams" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Curse of the Jade Scorpion", + "year": 2001, + "cast": [ + "Woody Allen", + "Elizabeth Berkley", + "Helen Hunt", + "Dan Aykroyd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Deep End", + "year": 2001, + "cast": [ + "Tilda Swinton", + "Goran Višnjić", + "Jonathan Tucker" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Delivering Milo", + "year": 2001, + "cast": [ + "Anton Yelchin", + "Albert Finney", + "Bridget Fonda" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Den", + "year": 2001, + "cast": [ + "Greg Arce", + "Stephanie Rettig", + "Lee Schall", + "Dana J. Ryan" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Dogtown and Z-Boys", + "year": 2001, + "cast": [ + "the history of", + "skateboarding" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Domestic Disturbance", + "year": 2001, + "cast": [ + "John Travolta", + "Vince Vaughn", + "Teri Polo" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Don't Say a Word", + "year": 2001, + "cast": [ + "Michael Douglas", + "Sean Bean", + "Brittany Murphy" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Donnie Darko", + "year": 2001, + "cast": [ + "Jake Gyllenhaal", + "Jena Malone", + "Drew Barrymore", + "Mary McDonnell", + "Katharine Ross", + "Patrick Swayze", + "Noah Wyle" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Double Take", + "year": 2001, + "cast": [ + "Eddie Griffin", + "Orlando Jones" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Down to Earth", + "year": 2001, + "cast": [ + "Chris Rock" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Dr. Dolittle 2", + "year": 2001, + "cast": [ + "Eddie Murphy", + "Raven-Symoné", + "Kevin Pollak" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Driven", + "year": 2001, + "cast": [ + "Sylvester Stallone", + "Burt Reynolds", + "Kip Pardue", + "Til Schweiger", + "Gina Gershon", + "Estella Warren" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Dumb Luck", + "year": 2001, + "cast": [ + "Scott Baio", + "Tracy Nelson", + "Hal Linden" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Earth vs. the Spider", + "year": 2001, + "cast": [ + "Dan Aykroyd", + "Devon Gummersall", + "Amelia Heinle" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Elvira's Haunted Hills", + "year": 2001, + "cast": [ + "Cassandra Peterson", + "Richard O'Brien", + "Mary Scheer" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Enemy at the Gates", + "year": 2001, + "cast": [ + "Jude Law", + "Ed Harris", + "Rachel Weisz", + "Joseph Fiennes", + "Bob Hoskins" + ], + "genres": [ + "War" + ] + }, + { + "title": "Escape from Hell", + "year": 2001, + "cast": [ + "Daniel Kruse", + "Emilie Jo Tisdale", + "Terry Jernigan" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Evolution", + "year": 2001, + "cast": [ + "David Duchovny", + "Orlando Jones", + "Seann William Scott", + "Julianne Moore" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Exit Wounds", + "year": 2001, + "cast": [ + "Steven Seagal", + "DMX", + "Anthony Anderson" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Fast and the Furious", + "year": 2001, + "cast": [ + "Paul Walker", + "Vin Diesel", + "Michelle Rodriguez", + "Jordana Brewster" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Festival in Cannes", + "year": 2001, + "cast": [ + "Anouk Aimée", + "Greta Scacchi", + "Maximilian Schell", + "Ron Silver" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Final Fantasy: The Spirits Within", + "year": 2001, + "cast": [ + "Ming-Na", + "Alec Baldwin", + "James Woods", + "Donald Sutherland", + "Ving Rhames", + "Steve Buscemi", + "Peri Gilpin" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Finder's Fee", + "year": 2001, + "cast": [ + "Erik Palladino", + "James Earl Jones", + "Ryan Reynolds", + "Dash Mihok" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Fluffer", + "year": 2001, + "cast": [ + "Scott Gurney", + "Taylor Negron", + "Roxanne Day" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Forsaken", + "year": 2001, + "cast": [ + "Kerr Smith", + "Brendan Fehr", + "Izabella Miko" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Frailty", + "year": 2001, + "cast": [ + "Bill Paxton", + "Powers Boothe", + "Matthew McConaughey" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Freddy Got Fingered", + "year": 2001, + "cast": [ + "Tom Green", + "Rip Torn", + "Harland Williams", + "Marisa Coughlan", + "Eddie Kaye Thomas", + "Julie Hagerty" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "From Hell", + "year": 2001, + "cast": [ + "Johnny Depp", + "Heather Graham", + "Ian Holm" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Full Frontal", + "year": 2001, + "cast": [ + "Kyle Schickner", + "Christopher May", + "Chi Chi LaRue" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Get Over It", + "year": 2001, + "cast": [ + "Kirsten Dunst", + "Ben Foster", + "Sisqó", + "Shane West", + "Colin Hanks", + "Martin Short", + "Carmen Electra" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Ghost World", + "year": 2001, + "cast": [ + "Thora Birch", + "Scarlett Johansson", + "Brad Renfro", + "Illeana Douglas", + "Steve Buscemi" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Ghosts of Mars", + "year": 2001, + "cast": [ + "Ice Cube", + "Natasha Henstridge", + "Joanna Cassidy" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Glass House", + "year": 2001, + "cast": [ + "Leelee Sobieski", + "Diane Lane", + "Stellan Skarsgård" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Glitter", + "year": 2001, + "cast": [ + "Mariah Carey", + "Max Beesley", + "Terrence Howard", + "Ann Magnuson" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "God Didn't Give Me a Week's Notice", + "year": 2001, + "cast": [ + "Margaret Holloway" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Good Neighbor", + "year": 2001, + "cast": [ + "Billy Dee Williams", + "Danica McKellar", + "Tobin Bell" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Gosford Park", + "year": 2001, + "cast": [ + "Michael Gambon", + "Kristin Scott Thomas", + "Maggie Smith", + "Helen Mirren", + "Alan Bates", + "Bob Balaban", + "Clive Owen" + ], + "genres": [ + "Mystery", + "Comedy" + ] + }, + { + "title": "The Grey Zone", + "year": 2001, + "cast": [ + "Harvey Keitel", + "Natasha Lyonne", + "David Arquette" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hannibal", + "year": 2001, + "cast": [ + "Anthony Hopkins", + "Julianne Moore", + "Gary Oldman", + "Giancarlo Giannini", + "Ray Liotta" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Hardball", + "year": 2001, + "cast": [ + "Keanu Reeves", + "Diane Lane", + "John Hawkes" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Harry Potter and the Sorcerer's Stone", + "year": 2001, + "cast": [ + "Daniel Radcliffe", + "Rupert Grint", + "Emma Watson", + "Richard Harris", + "Maggie Smith", + "Robbie Coltrane" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Harvard Man", + "year": 2001, + "cast": [ + "Adrian Grenier", + "Sarah Michelle Gellar", + "Joey Lauren Adams" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Head Over Heels", + "year": 2001, + "cast": [ + "Monica Potter", + "Freddie Prinze Jr." + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Heartbreakers", + "year": 2001, + "cast": [ + "Sigourney Weaver", + "Jennifer Love Hewitt", + "Gene Hackman", + "Ray Liotta" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hearts in Atlantis", + "year": 2001, + "cast": [ + "Anthony Hopkins", + "Anton Yelchin", + "Hope Davis", + "David Morse" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hedwig and the Angry Inch", + "year": 2001, + "cast": [ + "John Cameron Mitchell", + "Miriam Shor", + "Stephen Trask", + "Theodore Liscinski", + "Rob Campbell" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Heist", + "year": 2001, + "cast": [ + "Gene Hackman", + "Danny DeVito", + "Delroy Lindo", + "Sam Rockwell", + "Rebecca Pidgeon", + "Ricky Jay" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Herman U.S.A.", + "year": 2001, + "cast": [ + "Michael O'Keefe", + "Kevin Chamberlin" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "How High", + "year": 2001, + "cast": [ + "Method Man", + "Redman" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "How to Make a Monster", + "year": 2001, + "cast": [ + "Clea DuVall", + "Steven Culp" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Human Nature", + "year": 2001, + "cast": [ + "Patricia Arquette", + "Rhys Ifans", + "Tim Robbins", + "Miranda Otto" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "I Am Sam", + "year": 2001, + "cast": [ + "Sean Penn", + "Michelle Pfeiffer", + "Dakota Fanning" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "In the Bedroom", + "year": 2001, + "cast": [ + "Tom Wilkinson", + "Sissy Spacek", + "Nick Stahl", + "Marisa Tomei" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Jay and Silent Bob Strike Back", + "year": 2001, + "cast": [ + "Jason Mewes", + "Kevin Smith" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Jeepers Creepers", + "year": 2001, + "cast": [ + "Gina Philips", + "Justin Long", + "Jonathan Breck" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Jimmy Neutron: Boy Genius", + "year": 2001, + "cast": [ + "Megan Cavanagh", + "Mark DeCarlo", + "Debi Derryberry" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "The Jimmy Show", + "year": 2001, + "cast": [ + "Frank Whaley", + "Carla Gugino", + "Ethan Hawke" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Joe Dirt", + "year": 2001, + "cast": [ + "David Spade", + "Brittany Daniel", + "Adam Beach" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Joe Somebody", + "year": 2001, + "cast": [ + "Tim Allen", + "James Belushi", + "Julie Bowen" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Josie and the Pussycats", + "year": 2001, + "cast": [ + "Rachael Leigh Cook", + "Tara Reid", + "Rosario Dawson" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Joy Ride", + "year": 2001, + "cast": [ + "Paul Walker", + "Steve Zahn", + "Leelee Sobieski" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Jurassic Park III", + "year": 2001, + "cast": [ + "Sam Neill", + "William H. Macy", + "Téa Leoni", + "Michael Jeter", + "Alessandro Nivola", + "Trevor Morgan" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Just Visiting", + "year": 2001, + "cast": [ + "Jean Reno", + "Christina Applegate", + "Christian Clavier" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "K-PAX", + "year": 2001, + "cast": [ + "Kevin Spacey", + "Jeff Bridges", + "Mary McCormack", + "Alfre Woodard" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Kate & Leopold", + "year": 2001, + "cast": [ + "Meg Ryan", + "Hugh Jackman", + "Liev Schreiber", + "Breckin Meyer" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Kill Me Later", + "year": 2001, + "cast": [ + "Selma Blair", + "Max Beesley", + "Brendan Fehr" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Kingdom Come", + "year": 2001, + "cast": [ + "LL Cool J", + "Jada Pinkett Smith", + "Vivica A. Fox", + "Toni Braxton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Kiss of the Dragon", + "year": 2001, + "cast": [ + "Jet Li", + "Bridget Fonda", + "Tchéky Karyo" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Kissing Jessica Stein", + "year": 2001, + "cast": [ + "Jennifer Westfeldt", + "Heather Juergensen", + "Scott Cohen", + "Jackie Hoffman" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "A Knight's Tale", + "year": 2001, + "cast": [ + "Heath Ledger", + "Rufus Sewell", + "Paul Bettany", + "Shannyn Sossamon", + "Mark Addy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Knockaround Guys", + "year": 2001, + "cast": [ + "Barry Pepper", + "Seth Green", + "Vin Diesel", + "John Malkovich", + "Dennis Hopper" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "L.I.E.", + "year": 2001, + "cast": [ + "Brian Cox", + "Paul Dano", + "Billy Kay" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Lara Croft: Tomb Raider", + "year": 2001, + "cast": [ + "Angelina Jolie", + "Jon Voight", + "Iain Glen" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Last Castle", + "year": 2001, + "cast": [ + "Robert Redford", + "James Gandolfini", + "Mark Ruffalo" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Laughter on the 23rd Floor", + "year": 2001, + "cast": [ + "Nathan Lane", + "Victor Garber", + "Peri Gilpin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Legally Blonde", + "year": 2001, + "cast": [ + "Reese Witherspoon", + "Luke Wilson", + "Selma Blair", + "Matthew Davis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Life as a House", + "year": 2001, + "cast": [ + "Kevin Kline", + "Kristin Scott Thomas", + "Hayden Christensen", + "Jena Malone", + "Mary Steenburgen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Lloyd", + "year": 2001, + "cast": [ + "Todd Bosley", + "Brendon Ryan Barret", + "Mary Mara" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Lord of the Rings: The Fellowship of the Ring", + "year": 2001, + "cast": [ + "Elijah Wood", + "Ian McKellen", + "Liv Tyler", + "Sean Astin", + "Viggo Mortensen", + "Orlando Bloom", + "Sean Bean", + "Hugo Weaving", + "Ian Holm" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "The Lost Skeleton of Cadavra", + "year": 2001, + "cast": [ + "Fay Masterson", + "Andrew Parks", + "Susan McConnell" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Lovely & Amazing", + "year": 2001, + "cast": [ + "Brenda Blethyn", + "Catherine Keener", + "Emily Mortimer" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Majestic", + "year": 2001, + "cast": [ + "Jim Carrey", + "Martin Landau", + "James Whitmore" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Man Who Wasn't There", + "year": 2001, + "cast": [ + "Billy Bob Thornton", + "Frances McDormand", + "James Gandolfini" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Max Keeble's Big Move", + "year": 2001, + "cast": [ + "Alex D. Linz", + "Josh Peck", + "Zena Grey" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Megiddo: The Omega Code 2", + "year": 2001, + "cast": [ + "Michael York", + "Michael Biehn", + "Diane Venora" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "The Mexican", + "year": 2001, + "cast": [ + "Brad Pitt", + "Julia Roberts", + "James Gandolfini" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mockingbird Don't Sing", + "year": 2001, + "cast": [ + "Tarra Steele", + "Melissa Errico", + "Sean Young", + "Kim Darby" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Monkeybone", + "year": 2001, + "cast": [ + "Brendan Fraser", + "Bridget Fonda", + "Chris Kattan" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Monsoon Wedding", + "year": 2001, + "cast": [ + "Naseeruddin Shah", + "Lillete Dubey", + "Shefali Shah" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Monster's Ball", + "year": 2001, + "cast": [ + "Billy Bob Thornton", + "Halle Berry", + "Heath Ledger", + "Peter Boyle" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Monsters, Inc.", + "year": 2001, + "cast": [ + "John Goodman", + "Billy Crystal", + "Steve Buscemi", + "James Coburn" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "A Month of Sundays", + "year": 2001, + "cast": [ + "Corina Marie", + "Rod Steiger", + "Michael Paré" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Moulin Rouge!", + "year": 2001, + "cast": [ + "Nicole Kidman", + "Ewan McGregor" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Mulholland Drive", + "year": 2001, + "cast": [ + "Naomi Watts", + "Laura Elena Harring", + "Justin Theroux" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Mummy Returns", + "year": 2001, + "cast": [ + "Brendan Fraser", + "Rachel Weisz", + "John Hannah", + "Oded Fehr", + "Dwayne Johnson" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Murder on a Sunday Morning", + "year": 2001, + "cast": [ + "the", + "Brenton Butler case" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Musketeer", + "year": 2001, + "cast": [ + "Tim Roth", + "Catherine Deneuve", + "Mena Suvari", + "Stephen Rea", + "Justin Chambers" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "My Big Break", + "year": 2001, + "cast": [ + "careers of", + "Wes Bentley", + "Tony Zierra", + "Brad Rowe", + "Chad Lindberg", + "Greg Fawcett" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "My Big Fat Greek Wedding", + "year": 2001, + "cast": [ + "Nia Vardalos", + "John Corbett", + "Michael Constantine" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "My First Mister", + "year": 2001, + "cast": [ + "Albert Brooks", + "Leelee Sobieski", + "John Goodman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Not Another Teen Movie", + "year": 2001, + "cast": [ + "Chris Evans", + "Jaime Pressly", + "Chyler Leigh" + ], + "genres": [ + "Satire" + ] + }, + { + "title": "Novocaine", + "year": 2001, + "cast": [ + "Steve Martin", + "Helena Bonham Carter", + "Laura Dern" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "O", + "year": 2001, + "cast": [ + "Mekhi Phifer", + "Josh Hartnett", + "Julia Stiles" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Ocean's Eleven", + "year": 2001, + "cast": [ + "George Clooney", + "Matt Damon", + "Brad Pitt", + "Andy García", + "Julia Roberts", + "Don Cheadle", + "Casey Affleck", + "Elliott Gould", + "Bernie Mac", + "Carl Reiner", + "Casey Affleck", + "Scott Caan" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "On the Line", + "year": 2001, + "cast": [ + "Lance Bass", + "Joey Fatone" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The One", + "year": 2001, + "cast": [ + "Jet Li", + "Delroy Lindo", + "Carla Gugino" + ], + "genres": [ + "Action" + ] + }, + { + "title": "One Night at McCool's", + "year": 2001, + "cast": [ + "Liv Tyler", + "Matt Dillon", + "Michael Douglas", + "Paul Reiser" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Original Sin", + "year": 2001, + "cast": [ + "Antonio Banderas", + "Angelina Jolie", + "Thomas Jane" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Osmosis Jones", + "year": 2001, + "cast": [ + "Bill Murray", + "Chris Rock", + "Laurence Fishburne" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "The Others", + "year": 2001, + "cast": [ + "Nicole Kidman", + "Alakina Mann", + "Christopher Eccleston" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Out Cold", + "year": 2001, + "cast": [ + "Jason London", + "Lee Majors", + "Zach Galifianakis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Out of the Black", + "year": 2001, + "cast": [ + "Tyler Christopher", + "Sally Kirkland", + "Jason Widener" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Pact", + "year": 2001, + "cast": [ + "Rider Strong", + "Adam Frost", + "Lisa Zane", + "John Heard" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Pearl Harbor", + "year": 2001, + "cast": [ + "Ben Affleck", + "Josh Hartnett", + "Kate Beckinsale", + "Tom Sizemore", + "Cuba Gooding Jr.", + "Alec Baldwin", + "Jon Voight" + ], + "genres": [ + "War" + ] + }, + { + "title": "Perfume", + "year": 2001, + "cast": [ + "Estella Warren", + "Jeff Goldblum", + "Mariel Hemingway" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Piñero", + "year": 2001, + "cast": [ + "Benjamin Bratt", + "Talisa Soto", + "Giancarlo Esposito" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Planet of the Apes", + "year": 2001, + "cast": [ + "Mark Wahlberg", + "Tim Roth", + "Helena Bonham Carter", + "Michael Clarke Duncan", + "Estella Warren", + "Kris Kristofferson" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Pledge", + "year": 2001, + "cast": [ + "Jack Nicholson", + "Patricia Clarkson", + "Benicio del Toro" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Pootie Tang", + "year": 2001, + "cast": [ + "Lance Crouther", + "Wanda Sykes", + "Chris Rock" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Princess Diaries", + "year": 2001, + "cast": [ + "Julie Andrews", + "Anne Hathaway", + "Heather Matarazzo", + "Héctor Elizondo", + "Caroline Goodall", + "Mandy Moore", + "Erik von Detten" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Rat Race", + "year": 2001, + "cast": [ + "John Cleese", + "Rowan Atkinson", + "Cuba Gooding Jr.", + "Seth Green", + "Breckin Meyer", + "Whoopi Goldberg", + "Amy Smart" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Recess: School's Out", + "year": 2001, + "cast": [ + "Rickey D'Shon Collins", + "Jason Davis", + "Paul Willson" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Revolution OS", + "year": 2001, + "cast": [ + "history of", + "GNU", + "Linux", + "open source", + "free software movement" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Riding in Cars with Boys", + "year": 2001, + "cast": [ + "Drew Barrymore", + "Steve Zahn", + "Brittany Murphy", + "James Woods" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Rock Star", + "year": 2001, + "cast": [ + "Mark Wahlberg", + "Jennifer Aniston" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Royal Tenenbaums", + "year": 2001, + "cast": [ + "Gene Hackman", + "Anjelica Huston", + "Gwyneth Paltrow", + "Ben Stiller", + "Luke Wilson", + "Owen Wilson", + "Danny Glover", + "Bill Murray" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Rush Hour 2", + "year": 2001, + "cast": [ + "Jackie Chan", + "Chris Tucker" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Safety of Objects", + "year": 2001, + "cast": [ + "Glenn Close", + "Dermot Mulroney", + "Patricia Clarkson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Save the Last Dance", + "year": 2001, + "cast": [ + "Julia Stiles", + "Sean Patrick Thomas", + "Kerry Washington" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Saving Silverman", + "year": 2001, + "cast": [ + "Jason Biggs", + "Steve Zahn", + "Jack Black", + "Amanda Peet" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Say It Isn't So", + "year": 2001, + "cast": [ + "Chris Klein", + "Heather Graham", + "Orlando Jones" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Scary Movie 2", + "year": 2001, + "cast": [ + "Anna Faris", + "Christopher Masterson", + "Regina Hall", + "Marlon Wayans", + "Shawn Wayans", + "Tori Spelling" + ], + "genres": [ + "Satire" + ] + }, + { + "title": "The Score", + "year": 2001, + "cast": [ + "Robert De Niro", + "Edward Norton", + "Marlon Brando", + "Angela Bassett" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Scotland, Pennsylvania", + "year": 2001, + "cast": [ + "Maura Tierney", + "James LeGros", + "Christopher Walken" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Scratch", + "year": 2001, + "cast": [ + "Hip hop music", + "and", + "disc jockeys" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "See Spot Run", + "year": 2001, + "cast": [ + "David Arquette", + "Michael Clarke Duncan", + "Leslie Bibb" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Serendipity", + "year": 2001, + "cast": [ + "John Cusack", + "Kate Beckinsale" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Session 9", + "year": 2001, + "cast": [ + "David Caruso", + "Peter Mullan", + "Brendan Sexton III", + "Stephen Gevedon", + "Josh Lucas" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Shallow Hal", + "year": 2001, + "cast": [ + "Jack Black", + "Gwyneth Paltrow", + "Jason Alexander", + "Joe Viterelli" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "She Creature", + "year": 2001, + "cast": [ + "Rufus Sewell", + "Carla Gugino", + "Rya Kihlstedt" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "The Shipping News", + "year": 2001, + "cast": [ + "Kevin Spacey", + "Julianne Moore", + "Judi Dench", + "Cate Blanchett" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Shrek", + "year": 2001, + "cast": [ + "Mike Myers", + "Eddie Murphy", + "Cameron Diaz", + "John Lithgow" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "The Shrink Is In", + "year": 2001, + "cast": [ + "Courteney Cox", + "David Arquette" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Sidewalks of New York", + "year": 2001, + "cast": [ + "Edward Burns", + "Rosario Dawson", + "Dennis Farina", + "Heather Graham", + "David Krumholtz", + "Brittany Murphy", + "Stanley Tucci" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Someone Like You", + "year": 2001, + "cast": [ + "Ashley Judd", + "Greg Kinnear", + "Hugh Jackman", + "Marisa Tomei" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Soul Survivors", + "year": 2001, + "cast": [ + "Melissa Sagemiller", + "Casey Affleck", + "Eliza Dushku" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Southern Comfort", + "year": 2001, + "cast": [ + "Robert Eads" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Southlander", + "year": 2001, + "cast": [ + "Rory Cochrane", + "Beck", + "Beth Orton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Spy Game", + "year": 2001, + "cast": [ + "Robert Redford", + "Brad Pitt" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Spy Kids", + "year": 2001, + "cast": [ + "Alexa Vega", + "Daryl Sabara", + "Antonio Banderas", + "Carla Gugino", + "Alan Cumming", + "Danny Trejo", + "Cheech Marin" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Storytelling", + "year": 2001, + "cast": [ + "Paul Giamatti", + "Selma Blair", + "John Goodman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sugar & Spice", + "year": 2001, + "cast": [ + "Marla Sokoloff", + "Marley Shelton", + "Mena Suvari" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Summer Catch", + "year": 2001, + "cast": [ + "Freddie Prinze Jr.", + "Jessica Biel", + "Matthew Lillard" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Super Troopers", + "year": 2001, + "cast": [ + "Brian Cox", + "Marisa Coughlan", + "Daniel von Bargen" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Sweet November", + "year": 2001, + "cast": [ + "Keanu Reeves", + "Charlize Theron" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Swordfish", + "year": 2001, + "cast": [ + "Hugh Jackman", + "John Travolta", + "Halle Berry", + "Don Cheadle" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Tailor of Panama", + "year": 2001, + "cast": [ + "Pierce Brosnan", + "Geoffrey Rush", + "Jamie Lee Curtis", + "Brendan Gleeson", + "Catherine McCormack", + "Daniel Radcliffe" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Tape", + "year": 2001, + "cast": [ + "Ethan Hawke", + "Robert Sean Leonard", + "Uma Thurman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Thirteen Conversations About One Thing", + "year": 2001, + "cast": [ + "Matthew McConaughey", + "Alan Arkin", + "Clea DuVall" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Thirteen Ghosts", + "year": 2001, + "cast": [ + "Tony Shalhoub", + "Embeth Davidtz", + "F. Murray Abraham", + "Shannon Elizabeth", + "Matthew Lillard" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "To End All Wars", + "year": 2001, + "cast": [ + "Robert Carlyle", + "Kiefer Sutherland", + "Ciarán McMenamin" + ], + "genres": [ + "War" + ] + }, + { + "title": "Tomcats", + "year": 2001, + "cast": [ + "Jerry O'Connell", + "Shannon Elizabeth", + "Jake Busey" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Tortilla Soup", + "year": 2001, + "cast": [ + "Jacqueline Obrados", + "Tamara Mello", + "Héctor Elizondo" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Town & Country", + "year": 2001, + "cast": [ + "Warren Beatty", + "Diane Keaton", + "Goldie Hawn", + "Andie MacDowell", + "Nastassja Kinski", + "Charlton Heston" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Training Day", + "year": 2001, + "cast": [ + "Denzel Washington", + "Ethan Hawke" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Two Can Play That Game", + "year": 2001, + "cast": [ + "Vivica A. Fox", + "Morris Chestnut" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Uprising", + "year": 2001, + "cast": [ + "Leelee Sobieski", + "Hank Azaria", + "David Schwimmer", + "Jon Voight" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "Valentine", + "year": 2001, + "cast": [ + "Denise Richards", + "David Boreanaz", + "Marley Shelton", + "Katherine Heigl" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Vanilla Sky", + "year": 2001, + "cast": [ + "Tom Cruise", + "Penélope Cruz", + "Cameron Diaz", + "Jason Lee", + "Kurt Russell", + "Noah Taylor" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Waking Life", + "year": 2001, + "cast": [ + "Ethan Hawke", + "Julie Delpy", + "Wiley Wiggins" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "The Wash", + "year": 2001, + "cast": [ + "Dr. Dre", + "Snoop Dogg" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Wedding Planner", + "year": 2001, + "cast": [ + "Jennifer Lopez", + "Matthew McConaughey", + "Bridgette Wilson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "West 47th Street", + "year": 2001, + "cast": [ + "living with a", + "mental disorder" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Wet Hot American Summer", + "year": 2001, + "cast": [ + "Janeane Garofalo", + "Paul Rudd", + "Molly Shannon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "What's the Worst That Could Happen?", + "year": 2001, + "cast": [ + "Martin Lawrence", + "Danny DeVito", + "Bernie Mac" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "When Strangers Appear", + "year": 2001, + "cast": [ + "Radha Mitchell", + "Barry Watson", + "Josh Lucas" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Zeros", + "year": 2001, + "cast": [ + "Rachel Wilson", + "Jennifer Morrison", + "Kyle Gass" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Zoolander", + "year": 2001, + "cast": [ + "Ben Stiller", + "Owen Wilson", + "Christine Taylor" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "13 Moons", + "year": 2002, + "cast": [ + "Jennifer Beals", + "Elizabeth Bracco", + "Steve Buscemi" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "25th Hour", + "year": 2002, + "cast": [ + "Edward Norton", + "Philip Seymour Hoffman", + "Barry Pepper", + "Rosario Dawson", + "Anna Paquin", + "Brian Cox" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "40 Days and 40 Nights", + "year": 2002, + "cast": [ + "Josh Hartnett", + "Shannyn Sossamon", + "Paulo Costanzo" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "8 Mile", + "year": 2002, + "cast": [ + "Eminem", + "Kim Basinger", + "Brittany Murphy", + "Mekhi Phifer", + "Eugene Byrd", + "Omar Benson Miller" + ], + "genres": [ + "Drama", + "Musical" + ] + }, + { + "title": "Abandon", + "year": 2002, + "cast": [ + "Katie Holmes", + "Benjamin Bratt", + "Zooey Deschanel" + ], + "genres": [ + "Drama", + "Thriller" + ] + }, + { + "title": "About a Boy", + "year": 2002, + "cast": [ + "Hugh Grant", + "Nicholas Hoult", + "Toni Collette" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "About Schmidt", + "year": 2002, + "cast": [ + "Jack Nicholson", + "Kathy Bates", + "Hope Davis", + "Len Cariou", + "Dermot Mulroney", + "June Squibb" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Adaptation.", + "year": 2002, + "cast": [ + "Nicolas Cage", + "Meryl Streep", + "Chris Cooper" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Adventures of Pluto Nash", + "year": 2002, + "cast": [ + "Eddie Murphy", + "Randy Quaid", + "Rosario Dawson", + "Joe Pantoliano", + "Peter Boyle", + "Pam Grier", + "James Rebhorn", + "Jay Mohr", + "Burt Young", + "John Cleese" + ], + "genres": [ + "Comedy", + "Science Fiction" + ] + }, + { + "title": "All About the Benjamins", + "year": 2002, + "cast": [ + "Ice Cube", + "Mike Epps", + "Eva Mendes" + ], + "genres": [ + "Action", + "Comedy" + ] + }, + { + "title": "Analyze That", + "year": 2002, + "cast": [ + "Robert De Niro", + "Billy Crystal", + "Lisa Kudrow" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Antwone Fisher", + "year": 2002, + "cast": [ + "Derek Luke", + "Joy Bryant", + "Denzel Washington", + "Malcolm David Kelley" + ], + "genres": [ + "Biography", + "Drama" + ] + }, + { + "title": "Austin Powers in Goldmember", + "year": 2002, + "cast": [ + "Mike Myers", + "Beyoncé Knowles", + "Michael Caine" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Auto Focus", + "year": 2002, + "cast": [ + "Greg Kinnear", + "Willem Dafoe", + "Maria Bello", + "Rita Wilson" + ], + "genres": [ + "Biography", + "Drama" + ] + }, + { + "title": "Avenging Angelo", + "year": 2002, + "cast": [ + "Sylvester Stallone", + "Madeleine Stowe", + "Anthony Quinn" + ], + "genres": [ + "Comedy", + "Crime" + ] + }, + { + "title": "Baby Beethoven", + "year": 2002, + "cast": [], + "genres": [ + "Short" + ] + }, + { + "title": "Baby Newton", + "year": 2002, + "cast": [], + "genres": [ + "Short" + ] + }, + { + "title": "Back by Midnight", + "year": 2002, + "cast": [ + "Rodney Dangerfield", + "Phil LaMarr", + "Randy Quaid" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Bad Company", + "year": 2002, + "cast": [ + "Anthony Hopkins", + "Chris Rock" + ], + "genres": [ + "Action", + "Comedy" + ] + }, + { + "title": "Ballistic: Ecks vs. Sever", + "year": 2002, + "cast": [ + "Antonio Banderas", + "Lucy Liu", + "Gregg Henry", + "Ray Park", + "Talisa Soto" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Banger Sisters", + "year": 2002, + "cast": [ + "Goldie Hawn", + "Susan Sarandon", + "Geoffrey Rush" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Barbershop", + "year": 2002, + "cast": [ + "Ice Cube", + "Cedric the Entertainer" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Below", + "year": 2002, + "cast": [ + "Bruce Greenwood", + "Olivia Williams", + "Matthew Davis" + ], + "genres": [ + "War", + "Horror" + ] + }, + { + "title": "Better Luck Tomorrow", + "year": 2002, + "cast": [ + "Parry Shen", + "Jason Tobin", + "Sung Kang" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Big Fat Liar", + "year": 2002, + "cast": [ + "Frankie Muniz", + "Paul Giamatti", + "Amanda Bynes" + ], + "genres": [ + "Comedy", + "Family" + ] + }, + { + "title": "Big Trouble", + "year": 2002, + "cast": [ + "Tim Allen", + "Rene Russo", + "Stanley Tucci", + "Dennis Farina", + "Jason Lee", + "Tom Sizemore", + "Omar Epps", + "Zooey Deschanel", + "Ben Foster", + "Sofía Vergara" + ], + "genres": [ + "Comedy", + "Crime" + ] + }, + { + "title": "Biggie & Tupac", + "year": 2002, + "cast": [ + "deaths of", + "Biggie Smalls", + "and", + "Tupac Shakur" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Birthday Girl", + "year": 2002, + "cast": [ + "Nicole Kidman", + "Ben Chaplin", + "Vincent Cassel" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Blade II", + "year": 2002, + "cast": [ + "Wesley Snipes", + "Kris Kristofferson", + "Ron Perlman" + ], + "genres": [ + "Action", + "Horror" + ] + }, + { + "title": "Blood Work", + "year": 2002, + "cast": [ + "Clint Eastwood", + "Jeff Daniels", + "Anjelica Huston", + "Wanda De Jesus" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Blue Crush", + "year": 2002, + "cast": [ + "Kate Bosworth", + "Michelle Rodriguez", + "Matthew Davis" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Book of Love", + "year": 2002, + "cast": [ + "Eric K. George", + "Treach", + "Richard T. Jones" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Bourne Identity", + "year": 2002, + "cast": [ + "Matt Damon", + "Franka Potente", + "Chris Cooper", + "Clive Owen", + "Brian Cox", + "Julia Stiles" + ], + "genres": [ + "Action", + "Thriller" + ] + }, + { + "title": "Bowling for Columbine", + "year": 2002, + "cast": [ + "the", + "Columbine High School massacre" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Brown Sugar", + "year": 2002, + "cast": [ + "Taye Diggs", + "Sanaa Lathan", + "Mos Def" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Bubba Ho-tep", + "year": 2002, + "cast": [ + "Bruce Campbell", + "Ossie Davis", + "Ella Joyce" + ], + "genres": [ + "Comedy", + "Horror" + ] + }, + { + "title": "The Burial Society", + "year": 2002, + "cast": [ + "Rob LaBelle", + "Jan Rubeš", + "Allan Rich" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Buying the Cow", + "year": 2002, + "cast": [ + "Jerry O'Connell", + "Bridgette Wilson", + "Alyssa Milano" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Cabin Fever", + "year": 2002, + "cast": [ + "Rider Strong", + "Jordan Ladd", + "James DeBello" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Carrie", + "year": 2002, + "cast": [ + "Angela Bettis", + "Patricia Clarkson", + "Rena Sofer" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Catch Me If You Can", + "year": 2002, + "cast": [ + "Leonardo DiCaprio", + "Tom Hanks", + "Christopher Walken", + "Amy Adams", + "Martin Sheen", + "Nathalie Baye", + "James Brolin" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Chance", + "year": 2002, + "cast": [ + "Amber Benson", + "James Marsters", + "Christine Estabrook", + "Andy Hallett" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Changing Lanes", + "year": 2002, + "cast": [ + "Ben Affleck", + "Samuel L. Jackson", + "Toni Collette" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Chat Room", + "year": 2002, + "cast": [ + "Brian Hooks", + "Christopher Richards" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Chelsea Walls", + "year": 2002, + "cast": [ + "Kris Kristofferson", + "Uma Thurman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Chicago", + "year": 2002, + "cast": [ + "Renée Zellweger", + "Catherine Zeta-Jones", + "Richard Gere", + "Queen Latifah", + "John C. Reilly", + "Taye Diggs" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Ciao America\nCinderella 2 Dreams Come True The Movie", + "year": 2002, + "cast": [ + "Eddie Malavarca", + "Maurizio Nichetti", + "Violante Placido", + "Giancarlo Giannini", + "Paul Sorvino" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "City by the Sea", + "year": 2002, + "cast": [ + "Robert De Niro", + "James Franco", + "Eliza Dushku", + "Frances McDormand" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "City of Ghosts", + "year": 2002, + "cast": [ + "Matt Dillon", + "James Caan", + "Natascha McElhone" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Civil Brand", + "year": 2002, + "cast": [ + "LisaRaye McCoy", + "Lark Voorhies", + "Mos Def" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Clockstoppers", + "year": 2002, + "cast": [ + "Jesse Bradford", + "Paula Garcés", + "French Stewart", + "Michael Biehn", + "Robin Thomas" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Cockettes", + "year": 2002, + "cast": [ + "the career of", + "The Cockettes" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Collateral Damage", + "year": 2002, + "cast": [ + "Arnold Schwarzenegger", + "Elias Koteas", + "Francesca Neri", + "Cliff Curtis", + "John Leguizamo", + "John Turturro" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Crocodile Hunter: Collision Course", + "year": 2002, + "cast": [ + "Steve Irwin", + "Terri Irwin", + "Neil Fanning" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Comedian", + "year": 2002, + "cast": [ + "the", + "stand-up comedy", + "of", + "Jerry Seinfeld" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Confessions of a Dangerous Mind", + "year": 2002, + "cast": [ + "Sam Rockwell", + "Drew Barrymore", + "George Clooney", + "Julia Roberts" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "The Count of Monte Cristo", + "year": 2002, + "cast": [ + "James Caviezel", + "Guy Pearce", + "Dagmara Domińczyk", + "Richard Harris" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Country Bears", + "year": 2002, + "cast": [ + "Don Henley", + "Haley Joel Osment", + "Diedrich Bader", + "Christopher Walken" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Crazy as Hell", + "year": 2002, + "cast": [ + "Eriq La Salle", + "Michael Beach", + "Ronny Cox", + "Tia Texada" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Crossroads", + "year": 2002, + "cast": [ + "Britney Spears", + "Anson Mount", + "Zoe Saldana", + "Taryn Manning", + "Kim Cattrall", + "Dan Aykroyd" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Cypher", + "year": 2002, + "cast": [ + "Jeremy Northam", + "Lucy Liu", + "Nigel Bennett" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Dancer Upstairs", + "year": 2002, + "cast": [ + "Javier Bardem", + "Juan Diego Botto", + "Laura Morante" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Dangerous Lives of Altar Boys", + "year": 2002, + "cast": [ + "Emile Hirsch", + "Kieran Culkin", + "Jena Malone" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Dark Blue", + "year": 2002, + "cast": [ + "Kurt Russell", + "Scott Speedman", + "Michael Michele" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Darkness", + "year": 2002, + "cast": [ + "Anna Paquin", + "Lena Olin", + "Iain Glen" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Daughter from Da Nang", + "year": 2002, + "cast": [ + "the life of a child from", + "Operation Babylift" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Death to Smoochy", + "year": 2002, + "cast": [ + "Robin Williams", + "Edward Norton", + "Danny DeVito", + "Catherine Keener", + "Jon Stewart" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Demon Island", + "year": 2002, + "cast": [ + "Nicholas Brendon", + "Jaime Pressly", + "Eugene Byrd" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Deuces Wild", + "year": 2002, + "cast": [ + "Stephen Dorff", + "Brad Renfro", + "Fairuza Balk" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Divine Secrets of the Ya-Ya Sisterhood", + "year": 2002, + "cast": [ + "Ellen Burstyn", + "Sandra Bullock", + "James Garner", + "Ashley Judd", + "Maggie Smith" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Dragonfly", + "year": 2002, + "cast": [ + "Kevin Costner", + "Joe Morton", + "Ron Rifkin", + "Linda Hunt", + "Kathy Bates" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Drumline", + "year": 2002, + "cast": [ + "Nick Cannon", + "Zoe Saldana", + "Orlando Jones" + ], + "genres": [ + "Drama", + "Musical" + ] + }, + { + "title": "Easy Listening", + "year": 2002, + "cast": [ + "David Ian", + "Traci Crouch", + "Timothy Crow" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Eight Crazy Nights", + "year": 2002, + "cast": [ + "Adam Sandler", + "Allen Covert", + "Jack Giarraputo" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Eight Legged Freaks", + "year": 2002, + "cast": [ + "David Arquette", + "Kari Wührer", + "Scarlett Johansson" + ], + "genres": [ + "Comedy", + "Horror" + ] + }, + { + "title": "The Emperor's Club", + "year": 2002, + "cast": [ + "Kevin Kline", + "Emile Hirsch", + "Embeth Davidtz", + "Rob Morrow", + "Harris Yulin", + "Jesse Eisenberg" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Empire", + "year": 2002, + "cast": [ + "John Leguizamo", + "Peter Sarsgaard", + "Denise Richards", + "Delilah Cotto" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Enough", + "year": 2002, + "cast": [ + "Jennifer Lopez", + "Billy Campbell", + "Juliette Lewis", + "Noah Wyle" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Equilibrium", + "year": 2002, + "cast": [ + "Christian Bale", + "Taye Diggs", + "Emily Watson", + "Angus Macfadyen", + "Sean Bean", + "William Fichtner" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Evelyn", + "year": 2002, + "cast": [ + "Sophie Vavasseur", + "Pierce Brosnan", + "Aidan Quinn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Far from Heaven", + "year": 2002, + "cast": [ + "Julianne Moore", + "Dennis Quaid", + "Dennis Haysbert" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "FeardotCom", + "year": 2002, + "cast": [ + "Stephen Dorff", + "Natascha McElhone", + "Stephen Rea" + ], + "genres": [ + "Crime", + "Horror" + ] + }, + { + "title": "The First $20 Million Is Always the Hardest", + "year": 2002, + "cast": [ + "Adam Garcia", + "Rosario Dawson", + "Jake Busey" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Frida", + "year": 2002, + "cast": [ + "Salma Hayek", + "Alfred Molina", + "Geoffrey Rush" + ], + "genres": [ + "Biography", + "Drama" + ] + }, + { + "title": "Friday After Next", + "year": 2002, + "cast": [ + "Ice Cube", + "Mike Epps", + "John Witherspoon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Four Feathers", + "year": 2002, + "cast": [ + "Heath Ledger", + "Wes Bentley", + "Kate Hudson" + ], + "genres": [ + "Drama", + "War" + ] + }, + { + "title": "Full Frontal", + "year": 2002, + "cast": [ + "David Duchovny", + "Nicky Katt", + "Catherine Keener", + "Julia Roberts", + "Blair Underwood" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Gangs of New York", + "year": 2002, + "cast": [ + "Leonardo DiCaprio", + "Daniel Day-Lewis", + "Cameron Diaz", + "Liam Neeson", + "Henry Thomas", + "Jim Broadbent", + "Brendan Gleeson" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Ghost Ship", + "year": 2002, + "cast": [ + "Gabriel Byrne", + "Julianna Margulies", + "Desmond Harrington", + "Isaiah Washington", + "Karl Urban", + "Emily Browning" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Good Girl", + "year": 2002, + "cast": [ + "Jennifer Aniston", + "Jake Gyllenhaal", + "John C. Reilly" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Groom Lake", + "year": 2002, + "cast": [ + "William Shatner", + "Dan Gauthier", + "Amy Acker" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Guru", + "year": 2002, + "cast": [ + "Jimi Mistry", + "Heather Graham", + "Marisa Tomei" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "The Guys", + "year": 2002, + "cast": [ + "Sigourney Weaver", + "Anthony LaPaglia", + "Jim Simpson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Half Past Dead", + "year": 2002, + "cast": [ + "Steven Seagal", + "Morris Chestnut", + "Ja Rule" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Halloween: Resurrection", + "year": 2002, + "cast": [ + "Busta Rhymes", + "Bianca Kajlich", + "Thomas Ian Nicholas", + "Tyra Banks", + "Sean Patrick Thomas" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Harry Potter and the Chamber of Secrets", + "year": 2002, + "cast": [ + "Daniel Radcliffe", + "Rupert Grint", + "Emma Watson", + "Robbie Coltrane", + "Alan Rickman", + "Maggie Smith", + "Richard Harris", + "Kenneth Branagh" + ], + "genres": [ + "Family", + "Fantasy" + ] + }, + { + "title": "Hart's War", + "year": 2002, + "cast": [ + "Bruce Willis", + "Colin Farrell", + "Terrence Howard" + ], + "genres": [ + "War" + ] + }, + { + "title": "Hey Arnold!: The Movie", + "year": 2002, + "cast": [ + "Spencer Klein", + "Francesca Smith", + "Jamil Walker Smith" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "High Crimes", + "year": 2002, + "cast": [ + "Ashley Judd", + "Morgan Freeman", + "James Caviezel" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Highway", + "year": 2002, + "cast": [ + "Jared Leto", + "Jake Gyllenhaal", + "Selma Blair" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hollywood Ending", + "year": 2002, + "cast": [ + "Woody Allen", + "George Hamilton", + "Téa Leoni", + "Debra Messing" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Home Room", + "year": 2002, + "cast": [ + "Erika Christensen", + "Busy Philipps", + "Victor Garber" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Hot Chick", + "year": 2002, + "cast": [ + "Rob Schneider", + "Rachel McAdams", + "Anna Faris" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Hours", + "year": 2002, + "cast": [ + "Nicole Kidman", + "Julianne Moore", + "Meryl Streep", + "Ed Harris" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hysterical Blindness", + "year": 2002, + "cast": [ + "Uma Thurman", + "Juliette Lewis", + "Gena Rowlands", + "Ben Gazzara" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "I Spy", + "year": 2002, + "cast": [ + "Owen Wilson", + "Eddie Murphy", + "Famke Janssen", + "Malcolm McDowell" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Ice Age", + "year": 2002, + "cast": [ + "Ray Romano", + "John Leguizamo", + "Denis Leary" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Igby Goes Down", + "year": 2002, + "cast": [ + "Kieran Culkin", + "Claire Danes", + "Jeff Goldblum", + "Susan Sarandon" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Impostor", + "year": 2002, + "cast": [ + "Gary Sinise", + "Madeleine Stowe", + "Mekhi Phifer", + "Vincent D'Onofrio" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Interstate 60", + "year": 2002, + "cast": [ + "James Marsden", + "Gary Oldman", + "Amy Smart" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Insomnia", + "year": 2002, + "cast": [ + "Al Pacino", + "Robin Williams", + "Hilary Swank" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Jackass: The Movie", + "year": 2002, + "cast": [ + "Johnny Knoxville", + "Bam Margera", + "Chris Pontius", + "Steve-O" + ], + "genres": [] + }, + { + "title": "Jason X", + "year": 2002, + "cast": [ + "Kane Hodder", + "Lexa Doig", + "Lisa Ryder" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "John Q", + "year": 2002, + "cast": [ + "Denzel Washington", + "Robert Duvall", + "James Woods", + "Anne Heche", + "Ray Liotta" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Jonah: A VeggieTales Movie", + "year": 2002, + "cast": [ + "Phil Vischer", + "Mike Nawrocki", + "Tim Hodge", + "Lisa Vischer" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Juwanna Mann", + "year": 2002, + "cast": [ + "Miguel A. Núñez Jr.", + "Vivica A. Fox", + "Harrison Finkea" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "K-19: The Widowmaker", + "year": 2002, + "cast": [ + "Harrison Ford", + "Liam Neeson" + ], + "genres": [ + "Historical", + "Drama" + ] + }, + { + "title": "K-9: P.I.", + "year": 2002, + "cast": [ + "James Belushi" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Kid Stays in the Picture", + "year": 2002, + "cast": [ + "the life of film producer", + "Robert Evans" + ], + "genres": [] + }, + { + "title": "Killing Me Softly", + "year": 2002, + "cast": [], + "genres": [ + "Drama", + "Mystery", + "Romance" + ] + }, + { + "title": "Kiss the Bride", + "year": 2002, + "cast": [ + "Amanda Detmer", + "Sean Patrick Flanery", + "Brooke Langton" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Kung Pow! Enter the Fist", + "year": 2002, + "cast": [ + "Steve Oedekerk", + "Jennifer Tung", + "Lung Fei" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Laramie Project", + "year": 2002, + "cast": [ + "Nestor Carbonell", + "Christina Ricci", + "Dylan Baker" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Last Call", + "year": 2002, + "cast": [ + "Jeremy Irons", + "Neve Campbell", + "Sissy Spacek" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Laurel Canyon", + "year": 2002, + "cast": [ + "Frances McDormand", + "Christian Bale", + "Kate Beckinsalee" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Life or Something Like It", + "year": 2002, + "cast": [ + "Angelina Jolie", + "Edward Burns", + "Tony Shalhoub", + "Stockard Channing" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Like Mike", + "year": 2002, + "cast": [ + "Bow Wow", + "Morris Chestnut", + "Jonathan Lipnicki" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Lilo & Stitch", + "year": 2002, + "cast": [ + "Daveigh Chase", + "Chris Sanders", + "Tia Carrere" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "The Lord of the Rings: The Two Towers", + "year": 2002, + "cast": [ + "Elijah Wood", + "Ian McKellen", + "Liv Tyler", + "Viggo Mortensen", + "Sean Astin", + "Orlando Bloom", + "Christopher Lee", + "Cate Blanchett" + ], + "genres": [ + "Adventure", + "Fantasy" + ] + }, + { + "title": "Maid in Manhattan", + "year": 2002, + "cast": [ + "Jennifer Lopez", + "Ralph Fiennes", + "Natasha Richardson" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Man from Elysian Fields", + "year": 2002, + "cast": [ + "Andy García", + "Mick Jagger", + "Olivia Williams", + "James Coburn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Master of Disguise", + "year": 2002, + "cast": [ + "Dana Carvey", + "Jennifer Esposito", + "Harold Gould" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Men in Black II", + "year": 2002, + "cast": [ + "Tommy Lee Jones", + "Will Smith", + "Rip Torn", + "Lara Flynn Boyle", + "Johnny Knoxville", + "Rosario Dawson" + ], + "genres": [ + "Comedy", + "Science Fiction" + ] + }, + { + "title": "Minority Report", + "year": 2002, + "cast": [ + "Tom Cruise", + "Colin Farrell", + "Samantha Morton", + "Max von Sydow" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Moonlight Mile", + "year": 2002, + "cast": [ + "Jake Gyllenhaal", + "Dustin Hoffman", + "Susan Sarandon" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Mothman Prophecies", + "year": 2002, + "cast": [ + "Richard Gere", + "Laura Linney", + "Debra Messing" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Mr. Deeds", + "year": 2002, + "cast": [ + "Adam Sandler", + "Winona Ryder", + "John Turturro", + "Peter Gallagher" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Murder by Numbers", + "year": 2002, + "cast": [ + "Sandra Bullock", + "Ben Chaplin", + "Ryan Gosling", + "Michael Pitt" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "My Big Fat Greek Wedding", + "year": 2002, + "cast": [ + "Nia Vardalos", + "John Corbett", + "Michael Constantine", + "Lainie Kazan", + "Joey Fatone" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Narc", + "year": 2002, + "cast": [ + "Jason Patric", + "Ray Liotta", + "Chi McBride" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "National Lampoon's Van Wilder", + "year": 2002, + "cast": [ + "Ryan Reynolds", + "Tara Reid", + "Kal Penn" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "New Best Friend", + "year": 2002, + "cast": [ + "Mia Kirshner", + "Meredith Monroe", + "Dominique Swain" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The New Guy", + "year": 2002, + "cast": [ + "DJ Qualls", + "Eliza Dushku", + "Zooey Deschanel" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Nicholas Nickleby", + "year": 2002, + "cast": [ + "Charlie Hunnam", + "Christopher Plummer", + "Jamie Bell", + "Anne Hathaway" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Night at the Golden Eagle", + "year": 2002, + "cast": [ + "Donnie Mantemarano", + "Vinny Argiro", + "Natasha Lyonne" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "On Line", + "year": 2002, + "cast": [ + "Josh Hamilton", + "Harold Perrineau", + "Vanessa Ferlito" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "One Hour Photo", + "year": 2002, + "cast": [ + "Robin Williams", + "Connie Nielsen", + "Michael Vartan" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Orange County", + "year": 2002, + "cast": [ + "Colin Hanks", + "Jack Black", + "Schuyler Fisk" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Paid in Full", + "year": 2002, + "cast": [ + "Wood Harris", + "Regina Hall", + "Kevin Carroll" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Panic Room", + "year": 2002, + "cast": [ + "Jodie Foster", + "Kristen Stewart", + "Forest Whitaker", + "Jared Leto", + "Dwight Yoakam" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Path to War", + "year": 2002, + "cast": [ + "Michael Gambon", + "Alec Baldwin", + "Donald Sutherland", + "Felicity Huffman", + "Tom Skerritt", + "Frederic Forrest", + "Diana Scarwid" + ], + "genres": [ + "Drama", + "Biography" + ] + }, + { + "title": "Personal Velocity: Three Portraits", + "year": 2002, + "cast": [ + "Kyra Sedgwick", + "Parker Posey", + "Fairuza Balk" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Pinocchio", + "year": 2002, + "cast": [ + "Roberto Benigni", + "Nicoletta Braschi", + "Kim Rossi Stuart" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Poolhall Junkies", + "year": 2002, + "cast": [ + "Mars Callahan", + "Alison Eastwood", + "Chazz Palminteri" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Possession", + "year": 2002, + "cast": [ + "Aaron Eckhart", + "Gwyneth Paltrow", + "Jeremy Northam", + "Jennifer Ehle" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Powerpuff Girls Movie", + "year": 2002, + "cast": [ + "Cathy Cavadini", + "Tara Strong", + "E.G. Daily" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Prisoner of Paradise", + "year": 2002, + "cast": [ + "the life of", + "Kurt Gerron" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Pumpkin", + "year": 2002, + "cast": [ + "Christina Ricci", + "Hank Harris", + "Brenda Blethyn" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Punch-Drunk Love", + "year": 2002, + "cast": [ + "Adam Sandler", + "Emily Watson", + "Philip Seymour Hoffman", + "Luis Guzmán" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Queen of the Damned", + "year": 2002, + "cast": [ + "Aaliyah", + "Stuart Townsend", + "Marguerite Moreau" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Quiet American", + "year": 2002, + "cast": [ + "Michael Caine", + "Brendan Fraser" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "R.S.V.P.", + "year": 2002, + "cast": [ + "Rick Otto", + "Lucas Babin", + "Glenn Quinn" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Real Women Have Curves", + "year": 2002, + "cast": [ + "America Ferrera", + "Lupe Ontiveros" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Red Dragon", + "year": 2002, + "cast": [ + "Edward Norton", + "Anthony Hopkins", + "Ralph Fiennes", + "Emily Watson", + "Harvey Keitel", + "Philip Seymour Hoffman", + "Mary-Louise Parker" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Reign of Fire", + "year": 2002, + "cast": [ + "Christian Bale", + "Matthew McConaughey", + "Izabella Scorupco", + "Gerard Butler" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Return to Never Land", + "year": 2002, + "cast": [ + "Harriet Owen", + "Blayne Weaver", + "Corey Burton", + "Jeff Bennett" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "The Ring", + "year": 2002, + "cast": [ + "Naomi Watts", + "Daveigh Chase", + "Martin Henderson" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Ripley's Game", + "year": 2002, + "cast": [ + "John Malkovich", + "Dougray Scott", + "Ray Winstone" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Road to Perdition", + "year": 2002, + "cast": [ + "Tom Hanks", + "Paul Newman", + "Jude Law", + "Daniel Craig", + "Jennifer Jason Leigh", + "Tyler Hoechlin", + "Dylan Baker", + "Stanley Tucci" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Roger Dodger", + "year": 2002, + "cast": [ + "Campbell Scott", + "Jesse Eisenberg", + "Isabella Rossellini" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Rollerball", + "year": 2002, + "cast": [ + "Chris Klein", + "Jean Reno", + "LL Cool J", + "Rebecca Romijn", + "Naveen Andrews" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Rookie", + "year": 2002, + "cast": [ + "Dennis Quaid", + "Rachel Griffiths", + "Jay Hernandez", + "Brian Cox" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "The Rules of Attraction", + "year": 2002, + "cast": [ + "James Van Der Beek", + "Shannyn Sossamon", + "Ian Somerhalder" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "S1m0ne", + "year": 2002, + "cast": [ + "Al Pacino", + "Catherine Keener", + "Rachel Roberts" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Salton Sea", + "year": 2002, + "cast": [ + "Val Kilmer", + "Vincent D'Onofrio", + "Peter Sarsgaard" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Santa Clause 2", + "year": 2002, + "cast": [ + "Tim Allen", + "Elizabeth Mitchell", + "David Krumholtz" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Scooby-Doo", + "year": 2002, + "cast": [ + "Sarah Michelle Gellar", + "Freddie Prinze Jr.", + "Matthew Lillard", + "Linda Cardellini" + ], + "genres": [ + "Family" + ] + }, + { + "title": "The Scorpion King", + "year": 2002, + "cast": [ + "Dwayne Johnson", + "Steven Brand", + "Kelly Hu", + "Michael Clarke Duncan", + "Peter Facinelli" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Secret Lives of Dentists", + "year": 2002, + "cast": [ + "Campbell Scott", + "Hope Davis", + "Denis Leary" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Secretary", + "year": 2002, + "cast": [ + "James Spader", + "Maggie Gyllenhaal" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Serving Sara", + "year": 2002, + "cast": [ + "Matthew Perry", + "Elizabeth Hurley", + "Bruce Campbell" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Showboy", + "year": 2002, + "cast": [ + "Christian Taylor", + "Lindy Heymann", + "Joe Daly" + ], + "genres": [ + "Satire" + ] + }, + { + "title": "Showtime", + "year": 2002, + "cast": [ + "Robert De Niro", + "Eddie Murphy", + "Rene Russo", + "William Shatner" + ], + "genres": [ + "Crime", + "Comedy" + ] + }, + { + "title": "The Singles Ward", + "year": 2002, + "cast": [ + "Will Swenson", + "Connie Young", + "Daryn Tufts" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Signs", + "year": 2002, + "cast": [ + "Mel Gibson", + "Joaquin Phoenix", + "Rory Culkin", + "Abigail Breslin" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Slackers", + "year": 2002, + "cast": [ + "Jason Schwartzman", + "Devon Sawa", + "Jason Segel" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Snow Dogs", + "year": 2002, + "cast": [ + "Cuba Gooding Jr.", + "James Coburn", + "Nichelle Nichols" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Solaris", + "year": 2002, + "cast": [ + "George Clooney", + "Natascha McElhone", + "Viola Davis" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Sorority Boys", + "year": 2002, + "cast": [ + "Barry Watson", + "Michael Rosenbaum", + "Harland Williams" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Spellbound", + "year": 2002, + "cast": [ + "the 1999", + "Scripps National Spelling Bee" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Spider-Man", + "year": 2002, + "cast": [ + "Tobey Maguire", + "Willem Dafoe", + "Kirsten Dunst", + "James Franco", + "Cliff Robertson", + "Rosemary Harris", + "J. K. Simmons" + ], + "genres": [ + "Superhero" + ] + }, + { + "title": "Spirit: Stallion of the Cimarron", + "year": 2002, + "cast": [ + "Matt Damon", + "James Cromwell", + "Daniel Studi" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Spun", + "year": 2002, + "cast": [ + "Jason Schwartzman", + "Brittany Murphy", + "Mickey Rourke" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Spy Kids 2: The Island of Lost Dreams", + "year": 2002, + "cast": [ + "Alexa Vega", + "Emily Osment", + "Daryl Sabara", + "Antonio Banderas" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Star Wars: Episode II – Attack of the Clones", + "year": 2002, + "cast": [ + "Ewan McGregor", + "Natalie Portman", + "Hayden Christensen" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Star Trek Nemesis", + "year": 2002, + "cast": [ + "Patrick Stewart", + "Jonathan Frakes", + "Brent Spiner", + "LeVar Burton", + "Michael Dorn", + "Gates McFadden", + "Marina Sirtis", + "Tom Hardy" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "State Property", + "year": 2002, + "cast": [ + "Beanie Sigel", + "Jay-Z", + "Damon Dash" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Stealing Harvard", + "year": 2002, + "cast": [ + "Jason Lee", + "Tom Green", + "Leslie Mann", + "Megan Mullally", + "Tammy Blanchard" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Stevie", + "year": 2002, + "cast": [ + "the long-term relationships of", + "Big Brothers Big Sisters of America" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Stolen Summer", + "year": 2002, + "cast": [ + "Adiel Stein", + "Aidan Quinn", + "Bonnie Hunt" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Stuart Little 2", + "year": 2002, + "cast": [ + "Geena Davis", + "Hugh Laurie", + "Jonathan Lipnicki", + "Michael J. Fox", + "Melanie Griffith", + "Nathan Lane", + "James Woods", + "Steve Zahn" + ], + "genres": [ + "Family" + ] + }, + { + "title": "The Sum of All Fears", + "year": 2002, + "cast": [ + "Ben Affleck", + "Morgan Freeman", + "James Cromwell" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Sunshine State", + "year": 2002, + "cast": [ + "Angela Bassett", + "Edie Falco" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Sweetest Thing", + "year": 2002, + "cast": [ + "Cameron Diaz", + "Christina Applegate", + "Selma Blair" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Sweet Home Alabama", + "year": 2002, + "cast": [ + "Reese Witherspoon", + "Josh Lucas", + "Patrick Dempsey", + "Candice Bergen" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Swept Away", + "year": 2002, + "cast": [ + "Madonna", + "Adriano Giannini", + "Bruce Greenwood", + "Jeanne Tripplehorn" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Swimfan", + "year": 2002, + "cast": [ + "Jesse Bradford", + "Erika Christensen", + "Shiri Appleby" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Tadpole", + "year": 2002, + "cast": [ + "Aaron Stanford", + "Bebe Neuwirth", + "Sigourney Weaver", + "John Ritter" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "They", + "year": 2002, + "cast": [ + "Laura Regan", + "Marc Blucas", + "Ethan Embry" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Time Changer", + "year": 2002, + "cast": [ + "D. David Morin", + "Gavin MacLeod" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Time Machine", + "year": 2002, + "cast": [ + "Guy Pearce", + "Samantha Mumba", + "Jeremy Irons", + "Mark Addy" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Timequest", + "year": 2002, + "cast": [ + "Victor Slezak", + "Caprice Benedetti", + "Bruce Campbell" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Transporter", + "year": 2002, + "cast": [ + "Jason Statham", + "Shu Qi", + "Matt Schulze" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Trapped", + "year": 2002, + "cast": [ + "Charlize Theron", + "Courtney Love", + "Stuart Townsend", + "Kevin Bacon", + "Dakota Fanning" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Treasure Planet", + "year": 2002, + "cast": [ + "Joseph Gordon-Levitt", + "Brian Murray", + "David Hyde Pierce" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "The Trials of Henry Kissinger", + "year": 2002, + "cast": [ + "the alleged war crimes of", + "Henry Kissinger" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Truth About Charlie", + "year": 2002, + "cast": [ + "Mark Wahlberg", + "Thandie Newton", + "Tim Robbins" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Tuck Everlasting", + "year": 2002, + "cast": [ + "Alexis Bledel", + "Jonathan Jackson", + "William Hurt", + "Sissy Spacek" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Tuxedo", + "year": 2002, + "cast": [ + "Jackie Chan", + "Jennifer Love Hewitt", + "Jason Isaacs" + ], + "genres": [ + "Action", + "Comedy" + ] + }, + { + "title": "Two Weeks Notice", + "year": 2002, + "cast": [ + "Sandra Bullock", + "Hugh Grant" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Undercover Brother", + "year": 2002, + "cast": [ + "Eddie Griffin", + "Chris Kattan", + "Dave Chappelle" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Undisputed", + "year": 2002, + "cast": [ + "Wesley Snipes", + "Ving Rhames", + "Peter Falk" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Unfaithful", + "year": 2002, + "cast": [ + "Diane Lane", + "Richard Gere", + "Olivier Martinez" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Waking Up in Reno", + "year": 2002, + "cast": [ + "Natasha Richardson", + "Billy Bob Thornton", + "Charlize Theron", + "Patrick Swayze" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Walk to Remember", + "year": 2002, + "cast": [ + "Shane West", + "Mandy Moore", + "Peter Coyote", + "Daryl Hannah" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "We Were Soldiers", + "year": 2002, + "cast": [ + "Mel Gibson", + "Sam Elliott", + "Madeleine Stowe" + ], + "genres": [ + "War" + ] + }, + { + "title": "Welcome to Collinwood", + "year": 2002, + "cast": [ + "William H. Macy", + "Isaiah Washington", + "Michael Jeter" + ], + "genres": [ + "Crime", + "Comedy" + ] + }, + { + "title": "White Oleander", + "year": 2002, + "cast": [ + "Alison Lohman", + "Michelle Pfeiffer", + "Robin Wright", + "Renée Zellweger" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Wild Thornberrys Movie", + "year": 2002, + "cast": [ + "Lacey Chabert", + "Tom Kane", + "Tim Curry", + "Ice-T" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Windtalkers", + "year": 2002, + "cast": [ + "Nicolas Cage", + "Christian Slater", + "Adam Beach" + ], + "genres": [ + "War" + ] + }, + { + "title": "xXx", + "year": 2002, + "cast": [ + "Vin Diesel", + "Asia Argento", + "Marton Csokas" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Zig Zag", + "year": 2002, + "cast": [ + "John Leguizamo", + "Wesley Snipes", + "Oliver Platt" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "11:14", + "year": 2003, + "cast": [ + "Henry Thomas", + "Blake Heron", + "Barbara Hershey", + "Clark Gregg" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "101 Dalmatians II: Patch's London Adventure", + "year": 2003, + "cast": [ + "Barry Bostwick", + "Jason Alexander", + "Martin Short" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "2 Fast 2 Furious", + "year": 2003, + "cast": [ + "Paul Walker", + "Tyrese Gibson", + "Eva Mendes", + "Ludacris", + "Cole Hauser", + "James Remar", + "Devon Aoki" + ], + "genres": [ + "Action", + "Crime" + ] + }, + { + "title": "21 Grams", + "year": 2003, + "cast": [ + "Sean Penn", + "Naomi Watts", + "Benicio del Toro" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "44 Minutes: The North Hollywood Shoot-Out", + "year": 2003, + "cast": [ + "Michael Madsen", + "Ron Livingston" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Abby Singer", + "year": 2003, + "cast": [ + "Clint J. Palmer", + "Ryan Williams", + "Wendy Buss" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Afro-Punk", + "year": 2003, + "cast": [ + "race identity within", + "punk subculture" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Agent Cody Banks", + "year": 2003, + "cast": [ + "Frankie Muniz", + "Hilary Duff" + ], + "genres": [ + "Action", + "Family" + ] + }, + { + "title": "Aileen: Life and Death of a Serial Killer", + "year": 2003, + "cast": [ + "the life of", + "Aileen Wuornos" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Alex & Emma", + "year": 2003, + "cast": [ + "Kate Hudson", + "Luke Wilson", + "Sophie Marceau" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Alien Hunter", + "year": 2003, + "cast": [ + "James Spader" + ], + "genres": [ + "Action", + "Science Fiction" + ] + }, + { + "title": "All the Real Girls", + "year": 2003, + "cast": [ + "Paul Schneider", + "Zooey Deschanel", + "Shea Whigham" + ], + "genres": [ + "Drama", + "Romance" + ] + }, + { + "title": "Amandla!: A Revolution in Four-Part Harmony", + "year": 2003, + "cast": [ + "the use of music against", + "South Africa under apartheid" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "American Splendor", + "year": 2003, + "cast": [ + "Paul Giamatti", + "Hope Davis" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "American Wedding", + "year": 2003, + "cast": [ + "Jason Biggs", + "Seann William Scott", + "Alyson Hannigan", + "Eugene Levy", + "Fred Willard", + "January Jones" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Anger Management", + "year": 2003, + "cast": [ + "Adam Sandler", + "Jack Nicholson", + "Marisa Tomei", + "Luis Guzmán", + "Woody Harrelson", + "John Turturro" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Anne B. Real", + "year": 2003, + "cast": [ + "David Zayas", + "Carlos Leon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Anything Else", + "year": 2003, + "cast": [ + "Jason Biggs", + "Christina Ricci", + "Stockard Channing", + "Danny DeVito", + "Jimmy Fallon", + "Woody Allen" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "BAADASSSSS!", + "year": 2003, + "cast": [ + "Mario Van Peebles", + "Adam West" + ], + "genres": [ + "Biography", + "Drama" + ] + }, + { + "title": "Bad Boys II", + "year": 2003, + "cast": [ + "Martin Lawrence", + "Will Smith" + ], + "genres": [ + "Action", + "Comedy" + ] + }, + { + "title": "Bad Santa", + "year": 2003, + "cast": [ + "Billy Bob Thornton", + "Bernie Mac", + "Lauren Graham" + ], + "genres": [ + "Comedy", + "Crime" + ] + }, + { + "title": "Basic", + "year": 2003, + "cast": [ + "John Travolta", + "Connie Nielsen", + "Samuel L. Jackson" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Battle of Shaker Heights", + "year": 2003, + "cast": [ + "Shia La Beouf", + "Elden Henson", + "Amy Smart" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Bells of Innocence", + "year": 2003, + "cast": [ + "Mike Norris", + "Marshall R. Teague", + "Chuck Norris" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Best Two Years", + "year": 2003, + "cast": [ + "K.C. Clyde", + "Kirby Heyborne", + "David Nibley" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Beyond Borders", + "year": 2003, + "cast": [ + "Angelina Jolie", + "Clive Owen" + ], + "genres": [ + "Romance", + "War" + ] + }, + { + "title": "Big Fish", + "year": 2003, + "cast": [ + "Ewan McGregor", + "Albert Finney", + "Billy Crudup", + "Danny DeVito", + "Alison Lohman", + "Jessica Lange" + ], + "genres": [ + "Comedy", + "Drama", + "Fantasy" + ] + }, + { + "title": "Biker Boyz", + "year": 2003, + "cast": [ + "Laurence Fishburne", + "Djimon Hounsou", + "Derek Luke" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Black Cadillac", + "year": 2003, + "cast": [ + "Randy Quaid", + "Shane Johnson", + "Josh Hammond" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Blind Horizon", + "year": 2003, + "cast": [ + "Val Kilmer", + "Neve Campbell", + "Sam Shepard" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Blizzard", + "year": 2003, + "cast": [ + "Brenda Blethyn", + "Christopher Plummer", + "Kevin Pollak" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Boat Trip", + "year": 2003, + "cast": [ + "Cuba Gooding, Jr.", + "Horatio Sanz", + "Vivica A. Fox", + "Roselyn Sánchez", + "Victoria Silvstedt", + "Roger Moore" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Bringing Down the House", + "year": 2003, + "cast": [ + "Steve Martin", + "Queen Latifah", + "Eugene Levy" + ], + "genres": [ + "Crime", + "Comedy" + ] + }, + { + "title": "Bringing Rain", + "year": 2003, + "cast": [ + "Adrian Grenier", + "Niesha Butler" + ], + "genres": [ + "Drama", + "Romance" + ] + }, + { + "title": "Brother Bear", + "year": 2003, + "cast": [ + "Joaquin Phoenix", + "Jeremy Suarez", + "Rick Moranis" + ], + "genres": [ + "Animated", + "Family" + ] + }, + { + "title": "The Brown Bunny", + "year": 2003, + "cast": [ + "Vincent Gallo", + "Chloë Sevigny" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Bruce Almighty", + "year": 2003, + "cast": [ + "Jim Carrey", + "Morgan Freeman", + "Jennifer Aniston", + "Steve Carell" + ], + "genres": [ + "Comedy", + "Fantasy" + ] + }, + { + "title": "Bulletproof Monk", + "year": 2003, + "cast": [ + "Chow Yun-fat", + "Seann William Scott", + "Jaime King" + ], + "genres": [ + "Action", + "Comedy" + ] + }, + { + "title": "Camp", + "year": 2003, + "cast": [ + "Daniel Letterle", + "Joanna Chilcoat", + "Robin de Jesus" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "Carolina", + "year": 2003, + "cast": [ + "Julia Stiles", + "Shirley MacLaine", + "Alessandro Nivola" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Casa de los Babys", + "year": 2003, + "cast": [ + "Marcia Gay Harden", + "Maggie Gyllenhaal", + "Daryl Hannah" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Cat in the Hat", + "year": 2003, + "cast": [ + "Mike Myers", + "Alec Baldwin", + "Dakota Fanning", + "Spencer Breslin", + "Kelly Preston", + "Sean Hayes" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Charlie's Angels: Full Throttle", + "year": 2003, + "cast": [ + "Cameron Diaz", + "Drew Barrymore", + "Lucy Liu", + "Bernie Mac", + "Demi Moore" + ], + "genres": [ + "Action", + "Comedy" + ] + }, + { + "title": "Chasing Papi", + "year": 2003, + "cast": [ + "Roselyn Sánchez", + "Sofía Vergara", + "Jaci Velasquez", + "Eduardo Verástegui" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Cheaper by the Dozen", + "year": 2003, + "cast": [ + "Steve Martin", + "Bonnie Hunt", + "Hilary Duff", + "Tom Welling", + "Piper Perabo", + "Ashton Kutcher" + ], + "genres": [ + "Comedy", + "Family" + ] + }, + { + "title": "Christmas Child", + "year": 2003, + "cast": [ + "William R. Moses", + "Steven Curtis Chapman", + "Megan Follows" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Coffee and Cigarettes", + "year": 2003, + "cast": [ + "Roberto Benigni", + "Steven Wright", + "Joie Lee" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Cold Creek Manor", + "year": 2003, + "cast": [ + "Dennis Quaid", + "Sharon Stone", + "Stephen Dorff", + "Juliette Lewis" + ], + "genres": [ + "Drama", + "Thriller" + ] + }, + { + "title": "Cold Mountain", + "year": 2003, + "cast": [ + "Jude Law", + "Nicole Kidman", + "Renée Zellweger" + ], + "genres": [ + "Romance", + "War" + ] + }, + { + "title": "Comandante", + "year": 2003, + "cast": [ + "the politics of", + "Fidel Castro" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Company", + "year": 2003, + "cast": [ + "Neve Campbell", + "Malcolm McDowell", + "James Franco" + ], + "genres": [ + "Drama", + "Musical" + ] + }, + { + "title": "Confidence", + "year": 2003, + "cast": [ + "Edward Burns", + "Rachel Weisz", + "Dustin Hoffman", + "Andy García", + "Paul Giamatti", + "Robert Forster" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Cooler", + "year": 2003, + "cast": [ + "William H. Macy", + "Maria Bello", + "Alec Baldwin" + ], + "genres": [ + "Drama", + "Romance" + ] + }, + { + "title": "The Core", + "year": 2003, + "cast": [ + "Aaron Eckhart", + "Hilary Swank", + "Delroy Lindo", + "Stanley Tucci", + "Tchéky Karyo", + "Bruce Greenwood", + "DJ Qualls", + "Richard Jenkins", + "Alfre Woodard" + ], + "genres": [ + "Action", + "Science Fiction" + ] + }, + { + "title": "Cosmopolitan", + "year": 2003, + "cast": [ + "Roshan Seth", + "Carol Kane", + "Madhur Jaffrey", + "Purva Bedi" + ], + "genres": [ + "Comedy", + "Drama", + "Romance" + ] + }, + { + "title": "Cradle 2 the Grave", + "year": 2003, + "cast": [ + "Jet Li", + "DMX", + "Kelly Hu", + "Anthony Anderson", + "Tom Arnold", + "Mark Dacascos", + "Gabrielle Union" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Crime Spree", + "year": 2003, + "cast": [ + "Gérard Depardieu", + "Harvey Keitel", + "Johnny Hallyday" + ], + "genres": [ + "Comedy", + "Crime" + ] + }, + { + "title": "Daddy Day Care", + "year": 2003, + "cast": [ + "Eddie Murphy", + "Jeff Garlin", + "Steve Zahn", + "Regina King", + "Anjelica Huston" + ], + "genres": [ + "Comedy", + "Family" + ] + }, + { + "title": "Daredevil", + "year": 2003, + "cast": [ + "Ben Affleck", + "Jennifer Garner", + "Michael Clarke Duncan", + "Colin Farrell", + "Jon Favreau", + "Joe Pantoliano", + "David Keith" + ], + "genres": [ + "Superhero" + ] + }, + { + "title": "Dark Blue", + "year": 2003, + "cast": [ + "Kurt Russell", + "Scott Speedman", + "Michael Michele", + "Brendan Gleeson", + "Ving Rhames", + "Kurupt" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Darkness Falls", + "year": 2003, + "cast": [ + "Chaney Kley", + "Emma Caulfield", + "Lee Cormie" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Deliver Us from Eva", + "year": 2003, + "cast": [ + "LL Cool J", + "Gabrielle Union" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Devil's Pond", + "year": 2003, + "cast": [ + "Tara Reid", + "Kip Pardue" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dickie Roberts: Former Child Star", + "year": 2003, + "cast": [ + "David Spade", + "Mary McCormack" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Le Divorce", + "year": 2003, + "cast": [ + "Kate Hudson", + "Naomi Watts" + ], + "genres": [ + "Drama", + "Romance" + ] + }, + { + "title": "Down with Love", + "year": 2003, + "cast": [ + "Ewan McGregor", + "Renée Zellweger", + "David Hyde Pierce" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Dreamcatcher", + "year": 2003, + "cast": [ + "Morgan Freeman", + "Thomas Jane", + "Jason Lee", + "Damian Lewis", + "Timothy Olyphant", + "Tom Sizemore", + "Donnie Wahlberg" + ], + "genres": [ + "Horror", + "Science Fiction" + ] + }, + { + "title": "Dumb and Dumberer: When Harry Met Lloyd", + "year": 2003, + "cast": [ + "Derek Richardson", + "Eric Christian Olsen", + "Eugene Levy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Duplex", + "year": 2003, + "cast": [ + "Ben Stiller", + "Drew Barrymore", + "Eileen Essell", + "Harvey Fierstein" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Dysfunktional Family", + "year": 2003, + "cast": [ + "Eddie Griffin" + ], + "genres": [ + "Performance" + ] + }, + { + "title": "Elephant", + "year": 2003, + "cast": [ + "Alex Frost", + "Eric Deulen", + "John Robinson" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Elf", + "year": 2003, + "cast": [ + "Will Ferrell", + "James Caan", + "Zooey Deschanel", + "Mary Steenburgen", + "Bob Newhart", + "Ed Asner" + ], + "genres": [ + "Comedy", + "Family" + ] + }, + { + "title": "Evil Alien Conquerors", + "year": 2003, + "cast": [ + "Diedrich Bader", + "Chris Parnell" + ], + "genres": [ + "Science Fiction", + "Comedy" + ] + }, + { + "title": "Faster", + "year": 2003, + "cast": [ + "the", + "motorcycle racing", + "world championship", + "MotoGP" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Festival Express", + "year": 2003, + "cast": [ + "the Trans Continental Pop Festival" + ], + "genres": [ + "Musical", + "Documentary" + ] + }, + { + "title": "The Fighting Temptations", + "year": 2003, + "cast": [ + "Cuba Gooding, Jr.", + "Beyoncé Knowles" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Final Destination 2", + "year": 2003, + "cast": [ + "Ali Larter", + "A. J. Cook", + "Michael Landes", + "Tony Todd" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Finding Nemo", + "year": 2003, + "cast": [ + "Albert Brooks", + "Ellen DeGeneres", + "Alexander Gould" + ], + "genres": [ + "Animated", + "Family" + ] + }, + { + "title": "Flywheel", + "year": 2003, + "cast": [ + "Lisa Arnold", + "Alex Kendrick", + "Tracy Goode" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Fog of War", + "year": 2003, + "cast": [ + "life and times of", + "Robert McNamara" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Freaky Friday", + "year": 2003, + "cast": [ + "Lindsay Lohan", + "Jamie Lee Curtis", + "Chad Michael Murray", + "Mark Harmon" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Freddy vs. Jason", + "year": 2003, + "cast": [ + "Robert Englund", + "Ken Kirzinger", + "Monica Keena", + "Jason Ritter" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "From Justin to Kelly", + "year": 2003, + "cast": [ + "Justin Guarini", + "Kelly Clarkson" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "Gang of Roses", + "year": 2003, + "cast": [ + "Lil' Kim", + "LisaRaye McCoy", + "Marie Matiko" + ], + "genres": [ + "Drama", + "Western" + ] + }, + { + "title": "Gigli", + "year": 2003, + "cast": [ + "Ben Affleck", + "Jennifer Lopez", + "Al Pacino", + "Justin Bartha", + "Christopher Walken", + "Lainie Kazan", + "Lenny Venito", + "Missy Crider" + ], + "genres": [ + "Crime", + "Comedy" + ] + }, + { + "title": "Gods and Generals", + "year": 2003, + "cast": [ + "Jeff Daniels", + "Stephen Lang", + "Robert Duvall" + ], + "genres": [ + "Drama", + "War" + ] + }, + { + "title": "Good Boy!", + "year": 2003, + "cast": [ + "Liam Aiken", + "Molly Shannon", + "Kevin Nealon", + "Matthew Broderick" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Gothika", + "year": 2003, + "cast": [ + "Halle Berry", + "Robert Downey, Jr.", + "Penélope Cruz", + "Charles S. Dutton" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Grand Theft Parsons", + "year": 2003, + "cast": [ + "Johnny Knoxville", + "Michael Shannon", + "Christina Applegate" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Grind", + "year": 2003, + "cast": [ + "Mike Vogel", + "Adam Brody", + "Vince Vieluf", + "Joey Kern" + ], + "genres": [ + "Comedy", + "Sports" + ] + }, + { + "title": "A Guy Thing", + "year": 2003, + "cast": [ + "Jason Lee", + "Julia Stiles", + "Selma Blair" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "The Haunted Mansion", + "year": 2003, + "cast": [ + "Eddie Murphy" + ], + "genres": [ + "Family", + "Fantasy" + ] + }, + { + "title": "Head of State", + "year": 2003, + "cast": [ + "Chris Rock", + "Bernie Mac", + "Tracy Morgan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hey DJ", + "year": 2003, + "cast": [ + "Charlotte Lewis", + "Tina Wiseman", + "Terry Camilleri", + "Jon Jacobs" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Holes", + "year": 2003, + "cast": [ + "Shia LaBeouf", + "Jon Voight", + "Sigourney Weaver", + "Tim Blake Nelson", + "Patricia Arquette", + "Henry Winkler" + ], + "genres": [ + "Comedy", + "Family" + ] + }, + { + "title": "Hollywood Homicide", + "year": 2003, + "cast": [ + "Harrison Ford", + "Josh Hartnett", + "Lena Olin", + "Bruce Greenwood", + "Lolita Davidovich", + "Dwight Yoakam", + "Master P", + "Martin Landau" + ], + "genres": [ + "Crime", + "Comedy" + ] + }, + { + "title": "Honey", + "year": 2003, + "cast": [ + "Jessica Alba", + "Mekhi Phifer", + "Lil' Romeo" + ], + "genres": [ + "Musical", + "Romance" + ] + }, + { + "title": "Hope Springs", + "year": 2003, + "cast": [ + "Colin Firth", + "Heather Graham", + "Minnie Driver" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "House of 1000 Corpses", + "year": 2003, + "cast": [ + "Sid Haig", + "Bill Moseley", + "Erin Daniels" + ], + "genres": [ + "Comedy", + "Horror" + ] + }, + { + "title": "House of Sand and Fog", + "year": 2003, + "cast": [ + "Jennifer Connelly", + "Ben Kingsley", + "Shohreh Agdashloo" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "House of the Dead", + "year": 2003, + "cast": [ + "Jonathan Cherry", + "Ona Grauer", + "Tyron Leitso", + "Jürgen Prochnow", + "Ellie Cornell", + "Clint Howard", + "Enuka Okuma", + "Will Sanderson", + "Kira Clavell", + "Michael Eklund" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "How to Deal", + "year": 2003, + "cast": [ + "Mandy Moore", + "Allison Janney", + "Trent Ford" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "How to Lose a Guy in 10 Days", + "year": 2003, + "cast": [ + "Kate Hudson", + "Matthew McConaughey" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Hulk", + "year": 2003, + "cast": [ + "Eric Bana", + "Jennifer Connelly", + "Nick Nolte", + "Sam Elliott", + "Josh Lucas" + ], + "genres": [ + "Superhero", + "Action" + ] + }, + { + "title": "The Human Stain", + "year": 2003, + "cast": [ + "Anthony Hopkins", + "Nicole Kidman" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Hunted", + "year": 2003, + "cast": [ + "Tommy Lee Jones", + "Benicio del Toro", + "Connie Nielsen" + ], + "genres": [ + "Action", + "Drama" + ] + }, + { + "title": "I Am David", + "year": 2003, + "cast": [ + "Jim Caviezel", + "Ben Tibber", + "Joan Plowright" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Identity", + "year": 2003, + "cast": [ + "John Cusack", + "Ray Liotta", + "Amanda Peet", + "Clea DuVall", + "Rebecca De Mornay" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Imagining Argentina", + "year": 2003, + "cast": [ + "Antonio Banderas", + "Emma Thompson" + ], + "genres": [ + "Drama", + "Romance" + ] + }, + { + "title": "In the Cut", + "year": 2003, + "cast": [ + "Meg Ryan", + "Mark Ruffalo", + "Jennifer Jason Leigh" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The In-Laws", + "year": 2003, + "cast": [ + "Michael Douglas", + "Albert Brooks", + "David Suchet", + "Candice Bergen", + "Ryan Reynolds", + "Robin Tunney" + ], + "genres": [ + "Action", + "Comedy" + ] + }, + { + "title": "Indigo", + "year": 2003, + "cast": [ + "Neale Donald Walsch", + "Dane Bowman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Intolerable Cruelty", + "year": 2003, + "cast": [ + "George Clooney", + "Catherine Zeta-Jones" + ], + "genres": [ + "Crime", + "Comedy" + ] + }, + { + "title": "It Runs in the Family", + "year": 2003, + "cast": [ + "Michael Douglas", + "Kirk Douglas" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Italian Job", + "year": 2003, + "cast": [ + "Mark Wahlberg", + "Charlize Theron", + "Edward Norton", + "Donald Sutherland", + "Seth Green", + "Jason Statham", + "Mos Def", + "Franky G" + ], + "genres": [ + "Action", + "Crime" + ] + }, + { + "title": "Jeepers Creepers II", + "year": 2003, + "cast": [ + "Ray Wise", + "Jonathan Breck", + "Nicki Lynn Aycox" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Jungle Book 2", + "year": 2003, + "cast": [ + "John Goodman", + "Haley Joel Osment", + "Mae Whitman" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Just Married", + "year": 2003, + "cast": [ + "Ashton Kutcher", + "Brittany Murphy" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Kangaroo Jack", + "year": 2003, + "cast": [ + "Jerry O'Connell", + "Anthony Anderson", + "Estella Warren", + "Christopher Walken" + ], + "genres": [ + "Crime", + "Comedy" + ] + }, + { + "title": "Kill Bill Volume 1", + "year": 2003, + "cast": [ + "Uma Thurman", + "Lucy Liu", + "Vivica A. Fox", + "David Carradine", + "Daryl Hannah", + "Michael Madsen" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Lara Croft Tomb Raider: The Cradle of Life", + "year": 2003, + "cast": [ + "Angelina Jolie", + "Gerard Butler" + ], + "genres": [ + "Action", + "Fantasy" + ] + }, + { + "title": "The Last Samurai", + "year": 2003, + "cast": [ + "Tom Cruise", + "Ken Watanabe", + "Timothy Spall", + "Billy Connolly" + ], + "genres": [ + "Action", + "Drama" + ] + }, + { + "title": "The League of Extraordinary Gentlemen", + "year": 2003, + "cast": [ + "Sean Connery", + "Naseeruddin Shah", + "Peta Wilson", + "Tony Curran", + "Stuart Townsend", + "Shane West", + "Jason Flemyng", + "Richard Roxburgh" + ], + "genres": [ + "Superhero" + ] + }, + { + "title": "Legally Blonde 2: Red, White & Blonde", + "year": 2003, + "cast": [ + "Reese Witherspoon", + "Sally Field", + "Luke Wilson", + "Bob Newhart" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Life of David Gale", + "year": 2003, + "cast": [ + "Kevin Spacey", + "Kate Winslet", + "Laura Linney" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Lizzie McGuire Movie", + "year": 2003, + "cast": [ + "Hilary Duff" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Looney Tunes: Back in Action", + "year": 2003, + "cast": [ + "Brendan Fraser", + "Jenna Elfman", + "Steve Martin", + "Heather Locklear" + ], + "genres": [ + "Live Action", + "Animated" + ] + }, + { + "title": "The Lord of the Rings: The Return of the King", + "year": 2003, + "cast": [ + "Elijah Wood", + "Ian McKellen", + "Liv Tyler", + "Sean Astin", + "Andy Serkis", + "Hugo Weaving", + "Viggo Mortensen", + "Cate Blanchett", + "Orlando Bloom", + "Karl Urban", + "Miranda Otto" + ], + "genres": [ + "Adventure", + "Fantasy" + ] + }, + { + "title": "Lost in Translation", + "year": 2003, + "cast": [ + "Bill Murray", + "Scarlett Johansson" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Love Don't Cost a Thing", + "year": 2003, + "cast": [ + "Nick Cannon", + "Christina Milian" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Malibu's Most Wanted", + "year": 2003, + "cast": [ + "Jamie Kennedy" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "A Man Apart", + "year": 2003, + "cast": [ + "Vin Diesel", + "Larenz Tate", + "Timothy Olyphant" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Manhood", + "year": 2003, + "cast": [ + "Nestor Carbonell", + "John Ritter", + "Janeane Garofalo" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Marci X", + "year": 2003, + "cast": [ + "Lisa Kudrow", + "Damon Wayans" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Masked and Anonymous", + "year": 2003, + "cast": [ + "Jeff Bridges", + "John Goodman", + "Bob Dylan" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Master and Commander: The Far Side of the World", + "year": 2003, + "cast": [ + "Russell Crowe", + "Paul Bettany" + ], + "genres": [ + "Drama", + "War" + ] + }, + { + "title": "Matchstick Men", + "year": 2003, + "cast": [ + "Nicolas Cage", + "Sam Rockwell", + "Alison Lohman" + ], + "genres": [ + "Crime", + "Comedy" + ] + }, + { + "title": "The Matrix Reloaded", + "year": 2003, + "cast": [ + "Keanu Reeves", + "Laurence Fishburne", + "Carrie-Anne Moss", + "Hugo Weaving" + ], + "genres": [ + "Action", + "Science Fiction" + ] + }, + { + "title": "The Matrix Revolutions", + "year": 2003, + "cast": [ + "Keanu Reeves", + "Laurence Fishburne", + "Carrie-Anne Moss", + "Hugo Weaving" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "May", + "year": 2003, + "cast": [ + "Angela Bettis", + "Jeremy Sisto", + "Anna Faris" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Medallion", + "year": 2003, + "cast": [ + "Jackie Chan", + "Lee Evans", + "Claire Forlani" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "A Mighty Wind", + "year": 2003, + "cast": [ + "Catherine O'Hara", + "Eugene Levy", + "Michael McKean", + "Harry Shearer", + "Bob Balaban", + "Parker Posey" + ], + "genres": [ + "Satire" + ] + }, + { + "title": "Milwaukee, Minnesota", + "year": 2003, + "cast": [ + "Troy Garity" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Missing", + "year": 2003, + "cast": [ + "Tommy Lee Jones", + "Cate Blanchett", + "Evan Rachel Wood" + ], + "genres": [ + "Western", + "Drama" + ] + }, + { + "title": "Mona Lisa Smile", + "year": 2003, + "cast": [ + "Julia Roberts", + "Kirsten Dunst", + "Julia Stiles", + "Maggie Gyllenhaal", + "Ginnifer Goodwin" + ], + "genres": [ + "Drama", + "Romance" + ] + }, + { + "title": "Monster", + "year": 2003, + "cast": [ + "Charlize Theron", + "Christina Ricci" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Monster Man", + "year": 2003, + "cast": [ + "Eric Jungmann", + "Justin Urich", + "Aimee Brooks", + "Michael Bailey Smith" + ], + "genres": [ + "Horror", + "Comedy" + ] + }, + { + "title": "My Boss's Daughter", + "year": 2003, + "cast": [ + "Ashton Kutcher", + "Tara Reid", + "Terence Stamp" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "My Flesh and Blood", + "year": 2003, + "cast": [ + "Susam Tom and 11 children with disabilities" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Mystic River", + "year": 2003, + "cast": [ + "Sean Penn", + "Tim Robbins", + "Kevin Bacon", + "Laura Linney", + "Laurence Fishburne", + "Marcia Gay Harden" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "National Lampoon Presents Dorm Daze", + "year": 2003, + "cast": [ + "Tatyana Ali", + "Boti Bliss", + "Marieh Delfino" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "National Lampoon's Gold Diggers", + "year": 2003, + "cast": [ + "Will Friedle", + "Chris Owen", + "Louise Lasser", + "Renée Taylor" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "National Security", + "year": 2003, + "cast": [ + "Martin Lawrence", + "Steve Zahn" + ], + "genres": [ + "Action", + "Comedy" + ] + }, + { + "title": "The Night We Called it a Day", + "year": 2003, + "cast": [ + "Dennis Hopper", + "Joel Edgerton", + "Melanie Griffith" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Old School", + "year": 2003, + "cast": [ + "Luke Wilson", + "Will Ferrell", + "Vince Vaughn" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Once Upon a Time in Mexico", + "year": 2003, + "cast": [ + "Antonio Banderas", + "Salma Hayek", + "Johnny Depp" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Open Range", + "year": 2003, + "cast": [ + "Robert Duvall", + "Kevin Costner", + "Annette Bening", + "Michael Gambon", + "Diego Luna", + "James Russo" + ], + "genres": [ + "Western", + "Drama" + ] + }, + { + "title": "Open Water", + "year": 2003, + "cast": [ + "Blanchard Ryan", + "Daniel Travis" + ], + "genres": [ + "Drama", + "Thriller" + ] + }, + { + "title": "The Order", + "year": 2003, + "cast": [ + "Heath Ledger", + "Shannyn Sossamon", + "Benno Fürmann" + ], + "genres": [ + "Action", + "Thriller" + ] + }, + { + "title": "Out of Time", + "year": 2003, + "cast": [ + "Denzel Washington", + "Eva Mendes" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Party Monster", + "year": 2003, + "cast": [ + "Seth Green", + "Macaulay Culkin", + "Diana Scarwid" + ], + "genres": [ + "Biography", + "Crime" + ] + }, + { + "title": "Paper Soldiers", + "year": 2003, + "cast": [ + "Beanie Sigel", + "Kevin Hart" + ], + "genres": [ + "Crime", + "Comedy" + ] + }, + { + "title": "Pauly Shore Is Dead", + "year": 2003, + "cast": [ + "Pauly Shore" + ], + "genres": [ + "Satire" + ] + }, + { + "title": "Paycheck", + "year": 2003, + "cast": [ + "Ben Affleck", + "Aaron Eckhart", + "Uma Thurman", + "Paul Giamatti", + "Joe Morton" + ], + "genres": [ + "Action", + "Science Fiction" + ] + }, + { + "title": "Peter Pan", + "year": 2003, + "cast": [ + "Jeremy Sumpter", + "Rachel Hurd-Wood", + "Jason Isaacs", + "Ludivine Sagnier" + ], + "genres": [ + "Family", + "Fantasy" + ] + }, + { + "title": "Phone Booth", + "year": 2003, + "cast": [ + "Colin Farrell", + "Kiefer Sutherland", + "Forest Whitaker", + "Katie Holmes" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Pieces of April", + "year": 2003, + "cast": [ + "Katie Holmes", + "Derek Luke", + "Oliver Platt", + "Patricia Clarkson" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Piglet's Big Movie", + "year": 2003, + "cast": [ + "Peter Cullen", + "Jim Cummings", + "John Fiedler" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Pirates of the Caribbean: The Curse of the Black Pearl", + "year": 2003, + "cast": [ + "Orlando Bloom", + "Johnny Depp", + "Keira Knightley", + "Geoffrey Rush" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Poolhall Junkies", + "year": 2003, + "cast": [ + "Mars Callahan", + "Chazz Palminteri", + "Rod Steiger", + "Michael Rosenbaum" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Prey for Rock & Roll", + "year": 2003, + "cast": [ + "Gina Gershon", + "Drea de Matteo", + "Lori Petty", + "Shelly Cole" + ], + "genres": [ + "Musical", + "Drama" + ] + }, + { + "title": "Puppet Master: The Legacy", + "year": 2003, + "cast": [ + "Jacob Witkin", + "Kate Orsini" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Quicksand", + "year": 2003, + "cast": [ + "Michael Keaton", + "Michael Caine" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Radio", + "year": 2003, + "cast": [ + "Ed Harris", + "Cuba Gooding, Jr.", + "Debra Winger" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "The Real Cancun", + "year": 2003, + "cast": [ + "Benjamin \"Fletch\" Fletcher", + "Nicole Frilot", + "Roxanne Frilot" + ], + "genres": [] + }, + { + "title": "The Recruit", + "year": 2003, + "cast": [ + "Al Pacino", + "Colin Farrell", + "Bridget Moynahan" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Room", + "year": 2003, + "cast": [ + "Tommy Wiseau", + "Juliette Danielle" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Rugrats Go Wild", + "year": 2003, + "cast": [ + "Elizabeth Daily", + "Nancy Cartwright", + "Dionne Quan" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Runaway Jury", + "year": 2003, + "cast": [ + "John Cusack", + "Gene Hackman", + "Dustin Hoffman", + "Rachel Weisz" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Rundown", + "year": 2003, + "cast": [ + "The Rock", + "Seann William Scott", + "Christopher Walken", + "Rosario Dawson" + ], + "genres": [ + "Action", + "Comedy" + ] + }, + { + "title": "S.W.A.T.", + "year": 2003, + "cast": [ + "Samuel L. Jackson", + "Colin Farrell", + "Michelle Rodriguez", + "LL Cool J" + ], + "genres": [ + "Action", + "Crime" + ] + }, + { + "title": "Scary Movie 3", + "year": 2003, + "cast": [ + "Anna Faris", + "Charlie Sheen", + "Anthony Anderson", + "Leslie Nielsen", + "Simon Rex" + ], + "genres": [ + "Comedy", + "Satire" + ] + }, + { + "title": "School of Rock", + "year": 2003, + "cast": [ + "Jack Black", + "Joan Cusack", + "Mike White", + "Sarah Silverman" + ], + "genres": [ + "Comedy", + "Family" + ] + }, + { + "title": "Seabiscuit", + "year": 2003, + "cast": [ + "Tobey Maguire", + "Jeff Bridges", + "Chris Cooper", + "Elizabeth Banks", + "William H. Macy", + "Gary Stevens" + ], + "genres": [ + "Drama", + "Biography" + ] + }, + { + "title": "Secondhand Lions", + "year": 2003, + "cast": [ + "Michael Caine", + "Robert Duvall", + "Haley Joel Osment" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Shanghai Knights", + "year": 2003, + "cast": [ + "Jackie Chan", + "Owen Wilson" + ], + "genres": [ + "Action", + "Comedy" + ] + }, + { + "title": "Shattered Glass", + "year": 2003, + "cast": [ + "Hayden Christensen", + "Peter Sarsgaard", + "Chloë Sevigny", + "Hank Azaria", + "Steve Zahn", + "Rosario Dawson" + ], + "genres": [ + "Drama", + "Biography" + ] + }, + { + "title": "Sinbad: Legend of the Seven Seas", + "year": 2003, + "cast": [ + "Brad Pitt", + "Catherine Zeta-Jones", + "Michelle Pfeiffer", + "Joseph Fiennes" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "The Singing Detective", + "year": 2003, + "cast": [ + "Robert Downey, Jr.", + "Robin Wright Penn", + "Mel Gibson" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Sky Blue", + "year": 2003, + "cast": [ + "Marc Worden", + "Cathy Cavadini" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Something's Gotta Give", + "year": 2003, + "cast": [ + "Jack Nicholson", + "Diane Keaton", + "Keanu Reeves", + "Amanda Peet", + "Frances McDormand", + "Jon Favreau" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Spy Kids 3-D: Game Over", + "year": 2003, + "cast": [ + "Alexa Vega", + "Daryl Sabara", + "Antonio Banderas", + "Carla Gugino", + "Sylvester Stallone" + ], + "genres": [ + "Adventure", + "Family" + ] + }, + { + "title": "The Station Agent", + "year": 2003, + "cast": [ + "Peter Dinklage", + "Patricia Clarkson", + "Bobby Cannavale", + "Michelle Williams" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Stuck on You", + "year": 2003, + "cast": [ + "Matt Damon", + "Greg Kinnear", + "Eva Mendes", + "Cher" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Tarnationthe", + "year": 2003, + "cast": [ + "the life of Jonathan Caouette" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Tears of the Sun", + "year": 2003, + "cast": [ + "Bruce Willis", + "Monica Bellucci", + "Cole Hauser" + ], + "genres": [ + "War" + ] + }, + { + "title": "Terminator 3: Rise of the Machines", + "year": 2003, + "cast": [ + "Arnold Schwarzenegger", + "Nick Stahl", + "Claire Danes", + "Kristanna Loken" + ], + "genres": [ + "Action", + "Science Fiction" + ] + }, + { + "title": "Testosterone", + "year": 2003, + "cast": [ + "David Sutcliffe", + "Antonio Sabàto, Jr." + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Texas Chainsaw Massacre", + "year": 2003, + "cast": [ + "Jessica Biel", + "Jonathan Tucker", + "Eric Balfour", + "Mike Vogel", + "Erica Leershen", + "R. Lee Ermey" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Thirteen", + "year": 2003, + "cast": [ + "Evan Rachel Wood", + "Holly Hunter", + "Nikki Reed" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "This Girl's Life", + "year": 2003, + "cast": [ + "Juliette Marquis", + "James Woods", + "Kip Pardue" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "This Thing of Ours", + "year": 2003, + "cast": [ + "Danny Provenzano", + "Frank Vincent" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Timeline", + "year": 2003, + "cast": [ + "Paul Walker", + "Frances O'Connor", + "Gerard Butler" + ], + "genres": [ + "Action", + "Science Fiction" + ] + }, + { + "title": "Tupac: Resurrection", + "year": 2003, + "cast": [ + "the life and death of", + "Tupac Shakur" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Two Days", + "year": 2003, + "cast": [ + "Paul Rudd", + "Donal Logue", + "Mackenzie Astin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Uncle Nino", + "year": 2003, + "cast": [ + "Joe Mantegna", + "Pierrino Mascarino", + "Anne Archer" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Under the Tuscan Sun", + "year": 2003, + "cast": [ + "Diane Lane", + "Sandra Oh", + "Lindsay Duncan" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Underworld", + "year": 2003, + "cast": [ + "Kate Beckinsale", + "Scott Speedman", + "Michael Sheen", + "Shane Broller", + "Erwin Leder", + "Bill Nighy" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Uptown Girls", + "year": 2003, + "cast": [ + "Brittany Murphy", + "Dakota Fanning", + "Heather Locklear" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "V-Day: Until the Violence Stops", + "year": 2003, + "cast": [ + "V-Day" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Veronica Guerin", + "year": 2003, + "cast": [ + "Cate Blanchett", + "Gerard McSorley", + "Ciarán Hinds" + ], + "genres": [ + "Biography", + "Crime" + ] + }, + { + "title": "View from the Top", + "year": 2003, + "cast": [ + "Gwyneth Paltrow", + "Christina Applegate", + "Mark Ruffalo", + "Kelly Preston", + "Rob Lowe", + "Candice Bergen", + "Mike Myers" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "What a Girl Wants", + "year": 2003, + "cast": [ + "Amanda Bynes" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "When Eagles Strike", + "year": 2003, + "cast": [ + "Christian Boeving", + "Stacy Keach" + ], + "genres": [ + "Action", + "War" + ] + }, + { + "title": "Willard", + "year": 2003, + "cast": [ + "Crispin Glover" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Wonderland", + "year": 2003, + "cast": [ + "Val Kilmer", + "Kate Bosworth", + "Dylan McDermott" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Wrong Turn", + "year": 2003, + "cast": [ + "Desmond Harrington", + "Eliza Dushku", + "Jeremy Sisto", + "Emmanuelle Chriqui" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "X2: X-Men United", + "year": 2003, + "cast": [ + "Hugh Jackman", + "Patrick Stewart", + "Ian McKellen", + "Famke Janssen", + "Halle Berry", + "Anna Paquin" + ], + "genres": [ + "Superhero" + ] + }, + { + "title": "The Yes Men", + "year": 2003, + "cast": [ + "the", + "culture jamming", + "exploits of", + "The Yes Men" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Young Black Stallion", + "year": 2003, + "cast": [ + "Biana Tamimi", + "Patrick Elyas", + "Eric Grucza" + ], + "genres": [ + "Drama", + "Family" + ] + }, + { + "title": "Zero Day", + "year": 2003, + "cast": [ + "Andre Keuck", + "Cal Robertson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "13 Going on 30", + "year": 2004, + "cast": [ + "Jennifer Garner", + "Mark Ruffalo" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "50 First Dates", + "year": 2004, + "cast": [ + "Adam Sandler", + "Drew Barrymore" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "After the Sunset", + "year": 2004, + "cast": [ + "Pierce Brosnan", + "Salma Hayek", + "Woody Harrelson", + "Don Cheadle" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Against the Ropes", + "year": 2004, + "cast": [ + "Meg Ryan", + "Omar Epps" + ], + "genres": [ + "Drama", + "Sports" + ] + }, + { + "title": "Agent Cody Banks 2: Destination London", + "year": 2004, + "cast": [ + "Frankie Muniz", + "Anthony Anderson" + ], + "genres": [ + "Family" + ] + }, + { + "title": "The Alamo", + "year": 2004, + "cast": [ + "Dennis Quaid", + "Billy Bob Thornton", + "Jason Patric", + "Patrick Wilson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Alexander", + "year": 2004, + "cast": [ + "Colin Farrell", + "Angelina Jolie", + "Val Kilmer", + "Rosario Dawson", + "Jared Leto", + "Raz Degan", + "Christopher Plummer", + "Anthony Hopkins" + ], + "genres": [ + "Action", + "Historical" + ] + }, + { + "title": "Alfie", + "year": 2004, + "cast": [ + "Jude Law", + "Susan Sarandon", + "Marisa Tomei", + "Nia Long", + "Sienna Miller", + "Jane Krakowski", + "Omar Epps" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Alien vs. Predator", + "year": 2004, + "cast": [ + "Sanaa Lathan", + "Lance Henriksen", + "Raoul Bova", + "Ewen Bremner" + ], + "genres": [ + "Horror", + "Science Fiction" + ] + }, + { + "title": "Along Came Polly", + "year": 2004, + "cast": [ + "Ben Stiller", + "Jennifer Aniston", + "Debra Messing", + "Philip Seymour Hoffman", + "Alec Baldwin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "America's Heart and Soul", + "year": 2004, + "cast": [ + "George Woodard" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Anacondas: The Hunt for the Blood Orchid", + "year": 2004, + "cast": [ + "Johnny Messner", + "Matthew Marsden", + "Morris Chestnut", + "Salli Richardson" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Anchorman: The Legend of Ron Burgundy", + "year": 2004, + "cast": [ + "Will Ferrell", + "Christina Applegate", + "Paul Rudd", + "Steve Carell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Around the Bend", + "year": 2004, + "cast": [ + "Christopher Walken", + "Josh Lucas", + "Michael Caine" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Around the World in 80 Days", + "year": 2004, + "cast": [ + "Jackie Chan", + "Steve Coogan", + "Cécile de France" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Assassination of Richard Nixon", + "year": 2004, + "cast": [ + "Sean Penn" + ], + "genres": [ + "Biography", + "Crime" + ] + }, + { + "title": "The Aviator", + "year": 2004, + "cast": [ + "Leonardo DiCaprio", + "Cate Blanchett", + "Alec Baldwin", + "John C. Reilly", + "Alan Alda", + "Jude Law", + "Kate Beckinsale", + "Danny Huston", + "Ian Holm" + ], + "genres": [ + "Biography", + "Drama" + ] + }, + { + "title": "Barbershop 2: Back in Business", + "year": 2004, + "cast": [ + "Ice Cube", + "Cedric the Entertainer", + "Queen Latifah" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Before Sunset", + "year": 2004, + "cast": [ + "Ethan Hawke", + "Julie Delpy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Being Julia", + "year": 2004, + "cast": [ + "Annette Bening", + "Jeremy Irons" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Benji: Off the Leash!", + "year": 2004, + "cast": [ + "Nick Whitaker" + ], + "genres": [ + "Family" + ] + }, + { + "title": "The Best Thief in the World", + "year": 2004, + "cast": [ + "Mary-Louise Parker" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Beyond the Sea", + "year": 2004, + "cast": [ + "Kevin Spacey", + "Kate Bosworth", + "Bob Hoskins", + "John Goodman" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "The Big Bounce", + "year": 2004, + "cast": [ + "Owen Wilson", + "Morgan Freeman", + "Gary Sinise", + "Sara Foster", + "Bebe Neuwirth", + "Charlie Sheen" + ], + "genres": [ + "Comedy", + "Crime" + ] + }, + { + "title": "Birth", + "year": 2004, + "cast": [ + "Nicole Kidman", + "Cameron Bright", + "Danny Huston", + "Lauren Bacall" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Blade: Trinity", + "year": 2004, + "cast": [ + "Wesley Snipes", + "Jessica Biel", + "Ryan Reynolds", + "Kris Kristofferson", + "Dominic Purcell", + "Parker Posey", + "Triple H" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Black Cloud", + "year": 2004, + "cast": [ + "Rick Schroder", + "Eddie Spears", + "Russell Means", + "Julia Jones", + "Tim McGraw" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Blue Butterfly", + "year": 2004, + "cast": [ + "William Hurt", + "Pascale Bussières", + "Marc Donato" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Bobby Jones: Stroke of Genius", + "year": 2004, + "cast": [ + "James Caviezel", + "Claire Forlani", + "Jeremy Northam" + ], + "genres": [ + "Biography", + "Sports" + ] + }, + { + "title": "Book of Love", + "year": 2004, + "cast": [ + "Frances O'Connor", + "Simon Baker", + "Gregory Smith" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Born into Brothels", + "year": 2004, + "cast": [ + "the children of", + "prostitutes in India" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Bourne Supremacy", + "year": 2004, + "cast": [ + "Matt Damon", + "Joan Allen", + "Brian Cox", + "Julia Stiles" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Breakin' All the Rules", + "year": 2004, + "cast": [ + "Jamie Foxx", + "Morris Chestnut", + "Gabrielle Union" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Bridget Jones: The Edge of Reason", + "year": 2004, + "cast": [ + "Renée Zellweger", + "Colin Firth", + "Hugh Grant" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Brother to Brother", + "year": 2004, + "cast": [ + "Anthony Mackie", + "Roger Robinson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Butterfly Effect", + "year": 2004, + "cast": [ + "Ashton Kutcher", + "Amy Smart", + "Elden Henson", + "William Lee Scott", + "Melora Walters", + "Eric Stoltz", + "Ethan Suplee", + "Logan Lerman" + ], + "genres": [ + "Science Fiction", + "Thriller" + ] + }, + { + "title": "Catch That Kid", + "year": 2004, + "cast": [ + "Kristen Stewart", + "Corbin Bleu", + "Max Thieriot" + ], + "genres": [ + "Crime", + "Family" + ] + }, + { + "title": "Catwoman", + "year": 2004, + "cast": [ + "Halle Berry", + "Benjamin Bratt", + "Sharon Stone", + "Lambert Wilson", + "Frances Conroy", + "Alex Borstein" + ], + "genres": [ + "Superhero" + ] + }, + { + "title": "Cellular", + "year": 2004, + "cast": [ + "Kim Basinger", + "Chris Evans", + "Jason Statham", + "William H. Macy" + ], + "genres": [ + "Crime", + "Thriller" + ] + }, + { + "title": "Celsius 41.11", + "year": 2004, + "cast": [ + "Rebuttal of", + "Fahrenheit 9", + "11" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Chasing Liberty", + "year": 2004, + "cast": [ + "Mandy Moore", + "Matthew Goode", + "Mark Harmon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Christmas with the Kranks", + "year": 2004, + "cast": [ + "Tim Allen", + "Jamie Lee Curtis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Chronicles of Riddick", + "year": 2004, + "cast": [ + "Vin Diesel", + "Karl Urban", + "Thandie Newton", + "Colm Feore", + "Judi Dench" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "A Cinderella Story", + "year": 2004, + "cast": [ + "Hilary Duff", + "Chad Michael Murray", + "Jennifer Coolidge" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Clearing", + "year": 2004, + "cast": [ + "Robert Redford", + "Helen Mirren", + "Willem Dafoe" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Clifford's Really Big Movie", + "year": 2004, + "cast": [ + "John Ritter" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Closer", + "year": 2004, + "cast": [ + "Julia Roberts", + "Jude Law", + "Natalie Portman", + "Clive Owen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Cloud Cuckoo Land", + "year": 2004, + "cast": [ + "Derek Jacobi" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Club Dread", + "year": 2004, + "cast": [ + "Bill Paxton", + "Kevin Heffernan", + "Brittany Daniel", + "Steve Lemme" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Collateral", + "year": 2004, + "cast": [ + "Tom Cruise", + "Jamie Foxx", + "Jada Pinkett Smith" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Communication Breakdown", + "year": 2004, + "cast": [ + "Dan Lashley", + "William V. Repoley" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Confessions of a Teenage Drama Queen", + "year": 2004, + "cast": [ + "Lindsay Lohan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Connie and Carla", + "year": 2004, + "cast": [ + "Nia Vardalos", + "Toni Collette" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Control Room", + "year": 2004, + "cast": [ + "Al Jazeera", + "and its relations with the", + "United States Central Command" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Cookout", + "year": 2004, + "cast": [ + "Tim Meadows", + "Ja Rule", + "Eve" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Crash", + "year": 2004, + "cast": [ + "Sandra Bullock", + "Don Cheadle", + "Matt Dillon", + "Jennifer Esposito", + "Brendan Fraser", + "Terrence Howard", + "Chris \"Ludacris\" Bridges", + "Thandie Newton", + "Ryan Phillippe" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Criminal", + "year": 2004, + "cast": [ + "John C. Reilly", + "Diego Luna", + "Maggie Gyllenhaal" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "D.E.B.S.", + "year": 2004, + "cast": [ + "Sara Foster", + "Jordana Brewster", + "Meagan Good", + "Devon Aoki" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Dawn of the Dead", + "year": 2004, + "cast": [ + "Sarah Polley", + "Ving Rhames", + "Jake Weber", + "Michael Kelly" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Day After Tomorrow", + "year": 2004, + "cast": [ + "Dennis Quaid", + "Jake Gyllenhaal", + "Emmy Rossum", + "Ian Holm", + "Sela Ward" + ], + "genres": [ + "Disaster", + "Science Fiction" + ] + }, + { + "title": "A Day Without a Mexican", + "year": 2004, + "cast": [ + "Yareli Arizmendi", + "John Getz", + "Maureen Flannigan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "De-Lovely", + "year": 2004, + "cast": [ + "Kevin Kline", + "Ashley Judd" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Dead & Breakfast", + "year": 2004, + "cast": [ + "Ever Carradine", + "Brent David Fraser", + "Portia de Rossi" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Dead Birds", + "year": 2004, + "cast": [ + "Henry Thomas", + "Nicki Aycox", + "Isaiah Washington" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Dig!", + "year": 2004, + "cast": [ + "The bands", + "The Dandy Warhols", + "and", + "The Brian Jonestown Massacre", + "." + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Dirty Dancing: Havana Nights", + "year": 2004, + "cast": [ + "Diego Luna", + "Romola Garai", + "Sela Ward" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "A Dirty Shame", + "year": 2004, + "cast": [ + "Tracey Ullman", + "Johnny Knoxville", + "Selma Blair", + "Chris Isaak" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "DodgeBall: A True Underdog Story", + "year": 2004, + "cast": [ + "Vince Vaughn", + "Ben Stiller", + "Christine Taylor", + "Rip Torn" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Door in the Floor", + "year": 2004, + "cast": [ + "Jeff Bridges", + "Kim Basinger", + "Jon Foster" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Drum", + "year": 2004, + "cast": [ + "Taye Diggs", + "Gabriel Mann", + "Jason Flemyng" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Ella Enchanted", + "year": 2004, + "cast": [ + "Anne Hathaway" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Envy", + "year": 2004, + "cast": [ + "Ben Stiller", + "Jack Black", + "Rachel Weisz", + "Amy Poehler", + "Christopher Walken" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Eternal Sunshine of the Spotless Mind", + "year": 2004, + "cast": [ + "Jim Carrey", + "Kate Winslet", + "Kirsten Dunst", + "Mark Ruffalo", + "Elijah Wood", + "Tom Wilkinson" + ], + "genres": [ + "Drama", + "Science Fiction" + ] + }, + { + "title": "Exorcist: The Beginning", + "year": 2004, + "cast": [ + "Stellan Skarsgård", + "Izabella Scorupco", + "James D'Arcy", + "Ralph Brown" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "EuroTrip", + "year": 2004, + "cast": [ + "Scott Mechlowicz", + "Jacob Pitts", + "Matt Damon", + "Michelle Trachtenberg" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Fade to Black", + "year": 2004, + "cast": [ + "The career of", + "Jay-Z" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Fahrenheit 9/11", + "year": 2004, + "cast": [ + "On", + "George W. Bush", + "War on Terrorism", + "American media" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Fat Albert", + "year": 2004, + "cast": [ + "Kenan Thompson", + "Kyla Pratt" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Finding Neverland", + "year": 2004, + "cast": [ + "Johnny Depp", + "Kate Winslet", + "Julie Christie", + "Dustin Hoffman" + ], + "genres": [ + "Drama", + "Family" + ] + }, + { + "title": "The Final Cut", + "year": 2004, + "cast": [ + "Robin Williams", + "Mira Sorvino", + "Jim Caviezel" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "First Daughter", + "year": 2004, + "cast": [ + "Katie Holmes" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Flight of the Phoenix", + "year": 2004, + "cast": [ + "Dennis Quaid", + "Giovanni Ribisi", + "Tyrese Gibson", + "Hugh Laurie", + "Miranda Otto" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Forgotten", + "year": 2004, + "cast": [ + "Julianne Moore", + "Dominic West", + "Anthony Edwards", + "Lee Tergesen", + "Alfre Woodard", + "Gary Sinise" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Forty Shades of Blue", + "year": 2004, + "cast": [ + "Rip Torn", + "Dina Korzun" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Friday Night Lights", + "year": 2004, + "cast": [ + "Billy Bob Thornton" + ], + "genres": [ + "Drama", + "Sports" + ] + }, + { + "title": "Gamebox 1.0", + "year": 2004, + "cast": [ + "Nate Richert", + "Danielle Fishel" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Garden State", + "year": 2004, + "cast": [ + "Zach Braff", + "Natalie Portman", + "Peter Sarsgaard", + "Ian Holm", + "Method Man" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "Garfield: The Movie", + "year": 2004, + "cast": [ + "Bill Murray", + "Breckin Meyer", + "Jennifer Love Hewitt" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Girl Next Door", + "year": 2004, + "cast": [ + "Elisha Cuthbert", + "Emile Hirsch", + "Timothy Olyphant" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Godsend", + "year": 2004, + "cast": [ + "Greg Kinnear", + "Rebecca Romijn", + "Robert De Niro", + "Cameron Bright" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Godzilla: Final Wars", + "year": 2004, + "cast": [ + "Tsutomu Kitagawa", + "Masahiro Matsuoka", + "Rei Kikukawa" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Grudge", + "year": 2004, + "cast": [ + "Sarah Michelle Gellar" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Hair Show", + "year": 2004, + "cast": [ + "Kellita Smith", + "Mo'Nique", + "David Ramsey", + "Gina Torres" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Harold & Kumar Go to White Castle", + "year": 2004, + "cast": [ + "John Cho", + "Kal Penn", + "Neil Patrick Harris" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Harry Potter and the Prisoner of Azkaban", + "year": 2004, + "cast": [ + "Daniel Radcliffe", + "Rupert Grint", + "Emma Watson", + "Robbie Coltrane", + "Michael Gambon", + "Richard Griffiths", + "Gary Oldman", + "Alan Rickman", + "Fiona Shaw", + "Maggie Smith", + "Timothy Spall", + "David Thewlis", + "Maggie Smith", + "Julie Walters", + "Dawn French" + ], + "genres": [ + "Family", + "Fantasy" + ] + }, + { + "title": "Heights", + "year": 2004, + "cast": [ + "Glenn Close", + "Elizabeth Banks", + "James Marsden", + "Jesse Bradford" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hellboy", + "year": 2004, + "cast": [ + "Ron Perlman", + "Doug Jones", + "Selma Blair", + "John Hurt", + "Rupert Evans" + ], + "genres": [ + "Superhero" + ] + }, + { + "title": "Her Summer", + "year": 2004, + "cast": [ + "Justin Marxen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hidalgo", + "year": 2004, + "cast": [ + "Viggo Mortensen", + "Zuleikha Robinson", + "Omar Sharif" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Highwaymen", + "year": 2004, + "cast": [ + "Jim Caviezel", + "Rhona Mitra", + "Colm Feore" + ], + "genres": [ + "Action" + ] + }, + { + "title": "A Home at the End of the World", + "year": 2004, + "cast": [ + "Colin Farrell", + "Robin Wright Penn", + "Dallas Roberts", + "Sissy Spacek" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Home on the Range", + "year": 2004, + "cast": [ + "Roseanne Barr", + "Judi Dench", + "Jennifer Tilly", + "Cuba Gooding, Jr.", + "Randy Quaid" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Hotel Rwanda", + "year": 2004, + "cast": [ + "Don Cheadle", + "Sophie Okonedo", + "Nick Nolte", + "Joaquin Phoenix" + ], + "genres": [ + "Drama", + "War" + ] + }, + { + "title": "The Hunting of the President", + "year": 2004, + "cast": [ + "The presidency of", + "Bill Clinton" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "I Heart Huckabees", + "year": 2004, + "cast": [ + "Mark Wahlberg", + "Dustin Hoffman", + "Isabelle Huppert", + "Jude Law", + "Jason Schwartzman", + "Lily Tomlin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "I, Robot", + "year": 2004, + "cast": [ + "Will Smith", + "Bridget Moynahan", + "Bruce Greenwood", + "James Cromwell", + "Chi McBride", + "Alan Tudyk", + "Shia LaBeouf" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Imaginary Heroes", + "year": 2004, + "cast": [ + "Sigourney Weaver", + "Emile Hirsch", + "Jeff Daniels" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Incredibles", + "year": 2004, + "cast": [ + "voices of", + "Craig T. Nelson", + "Holly Hunter", + "Jason Lee", + "Samuel L. Jackson", + "Sarah Vowell" + ], + "genres": [ + "Animated", + "Family" + ] + }, + { + "title": "In Good Company", + "year": 2004, + "cast": [ + "Dennis Quaid", + "Scarlett Johansson", + "Topher Grace" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Jailbait", + "year": 2004, + "cast": [ + "Michael Pitt", + "Stephen Adly Guirgis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Jandek on Corwood", + "year": 2004, + "cast": [ + "The music and career of", + "Jandek" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Jersey Girl", + "year": 2004, + "cast": [ + "Ben Affleck", + "Liv Tyler", + "George Carlin", + "Stephen Root", + "Mike Starr", + "Raquel Castro", + "Jason Biggs", + "Jennifer Lopez" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Johnson Family Vacation", + "year": 2004, + "cast": [ + "Cedric the Entertainer", + "Vanessa L. Williams", + "Bow Wow", + "Solange Knowles", + "Shannon Elizabeth", + "Steve Harvey" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Keane", + "year": 2004, + "cast": [ + "Damian Lewis", + "Abigail Breslin", + "Amy Ryan" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Kill Bill Volume 2", + "year": 2004, + "cast": [ + "Uma Thurman", + "David Carradine", + "Daryl Hannah", + "Michael Madsen", + "Michael Parks" + ], + "genres": [ + "Action", + "Thriller" + ] + }, + { + "title": "King Arthur", + "year": 2004, + "cast": [ + "Clive Owen", + "Keira Knightley", + "Stellan Skarsgård", + "Stephen Dillane", + "Ray Winstone", + "Hugh Dancy", + "Til Schweiger", + "Ioan Gruffudd" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Kinsey", + "year": 2004, + "cast": [ + "Liam Neeson", + "Laura Linney", + "Peter Sarsgaard", + "Timothy Hutton", + "Chris O'Donnell", + "Oliver Platt" + ], + "genres": [ + "Biography", + "Drama" + ] + }, + { + "title": "Knots", + "year": 2004, + "cast": [ + "Scott Cohen", + "Annabeth Gish", + "Paulina Porizkova" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Ladder 49", + "year": 2004, + "cast": [ + "Joaquin Phoenix", + "John Travolta", + "Jay Hernandez", + "Morris Chestnut", + "Robert Patrick" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Ladykillers", + "year": 2004, + "cast": [ + "Tom Hanks" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Land Has Eyes", + "year": 2004, + "cast": [ + "Sapeta Taito", + "Rena Owen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Last Shot", + "year": 2004, + "cast": [ + "Matthew Broderick", + "Alec Baldwin", + "Toni Collette", + "Calista Flockhart" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Lemony Snicket's A Series of Unfortunate Events", + "year": 2004, + "cast": [ + "Jim Carrey", + "Jude Law", + "Liam Aiken", + "Emily Browning", + "Meryl Streep" + ], + "genres": [ + "Comedy", + "Family" + ] + }, + { + "title": "The Life and Death of Peter Sellers", + "year": 2004, + "cast": [ + "Geoffrey Rush", + "Charlize Theron", + "Emily Watson" + ], + "genres": [ + "Biography", + "Drama" + ] + }, + { + "title": "The Life Aquatic with Steve Zissou", + "year": 2004, + "cast": [ + "Bill Murray", + "Owen Wilson", + "Cate Blanchett", + "Anjelica Huston", + "Jeff Goldblum", + "Willem Dafoe", + "Michael Gambon", + "Bud Cort" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Little Black Book", + "year": 2004, + "cast": [ + "Brittany Murphy", + "Holly Hunter", + "Kathy Bates", + "Ron Livingston" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "A Love Song for Bobby Long", + "year": 2004, + "cast": [ + "John Travolta", + "Scarlett Johansson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Man on Fire", + "year": 2004, + "cast": [ + "Denzel Washington", + "Dakota Fanning", + "Christopher Walken", + "Giancarlo Giannini", + "Radha Mitchell", + "Marc Anthony", + "Rachel Ticotin", + "Mickey Rourke" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Manchurian Candidate", + "year": 2004, + "cast": [ + "Denzel Washington", + "Meryl Streep", + "Liev Schreiber", + "Jon Voight", + "Kimberly Elise", + "Vera Farmiga", + "Jeffrey Wright" + ], + "genres": [ + "Drama", + "Thriller" + ] + }, + { + "title": "Maria Full of Grace", + "year": 2004, + "cast": [ + "Catalina Sandino Moreno" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Mean Creek", + "year": 2004, + "cast": [ + "Rory Culkin", + "Trevor Morgan", + "Scott Mechlowicz", + "Carly Schroeder", + "Josh Peck" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Mean Girls", + "year": 2004, + "cast": [ + "Lindsay Lohan", + "Rachel McAdams", + "Lacey Chabert", + "Amanda Seyfried", + "Tina Fey" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Meet the Fockers", + "year": 2004, + "cast": [ + "Ben Stiller", + "Robert De Niro", + "Teri Polo", + "Blythe Danner", + "Dustin Hoffman", + "Barbra Streisand" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Merchant of Venice", + "year": 2004, + "cast": [ + "Al Pacino", + "Jeremy Irons", + "Joseph Fiennes", + "Lynn Collins" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Melinda and Melinda", + "year": 2004, + "cast": [ + "Chiwetel Ejiofor", + "Will Ferrell", + "Jonny Lee Miller", + "Radha Mitchell", + "Amanda Peet", + "Chloë Sevigny", + "Wallace Shawn" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Million Dollar Baby", + "year": 2004, + "cast": [ + "Clint Eastwood", + "Hilary Swank", + "Morgan Freeman", + "Jay Baruchel", + "Anthony Mackie" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Mindbenders", + "year": 2004, + "cast": [ + "Tomiko Martinez", + "Jennifer Goodrich", + "Nicole Turner" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Mindhunters", + "year": 2004, + "cast": [ + "LL Cool J", + "Jonny Lee Miller", + "Kathryn Morris", + "Patricia Velasquez", + "Clifton Collins, Jr.", + "Eion Bailey", + "Will Kemp", + "Val Kilmer", + "Christian Slater" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Miracle", + "year": 2004, + "cast": [ + "Kurt Russell" + ], + "genres": [ + "Drama", + "Family" + ] + }, + { + "title": "The Misbehavers", + "year": 2004, + "cast": [ + "the meeting of", + "guerrilla warfare", + "filmmakers" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Modigliani", + "year": 2004, + "cast": [ + "Andy García" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Mojados: Through the Night", + "year": 2004, + "cast": [ + "Illegal immigration to the United States" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Mondovino", + "year": 2004, + "cast": [ + "the impact of the", + "globalization of wine" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Motorcycle Diaries", + "year": 2004, + "cast": [ + "Gael García Bernal", + "Rodrigo de la Serna" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Mr. 3000", + "year": 2004, + "cast": [ + "Bernie Mac", + "Angela Bassett", + "Paul Sorvino", + "Chris Noth" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "My Baby's Daddy", + "year": 2004, + "cast": [ + "Eddie Griffin", + "Anthony Anderson", + "Michael Imperioli", + "Method Man" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mysterious Skin", + "year": 2004, + "cast": [ + "Joseph Gordon-Levitt", + "Brady Corbet", + "Michelle Trachtenberg" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Napoleon Dynamite", + "year": 2004, + "cast": [ + "Jon Heder" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "National Treasure", + "year": 2004, + "cast": [ + "Nicolas Cage", + "Diane Kruger", + "Justin Bartha", + "Jon Voight", + "Harvey Keitel", + "Sean Bean", + "Christopher Plummer" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Never Die Alone", + "year": 2004, + "cast": [ + "DMX", + "David Arquette" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "New York Minute", + "year": 2004, + "cast": [ + "Mary-Kate and Ashley Olsen", + "Eugene Levy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Noel", + "year": 2004, + "cast": [ + "Susan Sarandon", + "Alan Arkin", + "Penélope Cruz" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Notebook", + "year": 2004, + "cast": [ + "Ryan Gosling", + "Rachel McAdams", + "James Marsden", + "James Garner", + "Gena Rowlands" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "November", + "year": 2004, + "cast": [ + "Courteney Cox" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Ocean's Twelve", + "year": 2004, + "cast": [ + "George Clooney", + "Brad Pitt", + "Matt Damon", + "Catherine Zeta-Jones", + "Andy García", + "Don Cheadle", + "Bernie Mac", + "Julia Roberts" + ], + "genres": [ + "Comedy", + "Crime" + ] + }, + { + "title": "Otaku Unite!", + "year": 2004, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "P.S.", + "year": 2004, + "cast": [ + "Laura Linney", + "Topher Grace", + "Gabriel Byrne" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Palindromes", + "year": 2004, + "cast": [ + "Ellen Barkin", + "Matthew Faber", + "Rachel Corr" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Paparazzi", + "year": 2004, + "cast": [ + "Cole Hauser", + "Robin Tunney", + "Tom Sizemore", + "Daniel Baldwin" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Passion of the Christ", + "year": 2004, + "cast": [ + "Jim Caviezel", + "Monica Bellucci" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Perfect Score", + "year": 2004, + "cast": [ + "Scarlett Johansson", + "Erika Christensen", + "Chris Evans", + "Darius Miles" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Phantom of the Opera", + "year": 2004, + "cast": [ + "Gerard Butler", + "Emmy Rossum", + "Patrick Wilson" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Polar Express", + "year": 2004, + "cast": [ + "Tom Hanks", + "Daryl Sabara" + ], + "genres": [ + "Animated", + "Family" + ] + }, + { + "title": "Primer", + "year": 2004, + "cast": [ + "Shane Carruth", + "David Sullivan" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Prince and Me", + "year": 2004, + "cast": [ + "Julia Stiles", + "Luke Mably", + "Ben Miller" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Princess Diaries 2: Royal Engagement", + "year": 2004, + "cast": [ + "Anne Hathaway", + "Julie Andrews", + "Héctor Elizondo", + "Raven-Symoné", + "Chris Pine", + "Heather Matarazzo" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Proud", + "year": 2004, + "cast": [ + "Reggie Austin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Punisher", + "year": 2004, + "cast": [ + "Thomas Jane", + "John Travolta", + "Rebecca Romijn" + ], + "genres": [ + "Superhero" + ] + }, + { + "title": "Raise Your Voice", + "year": 2004, + "cast": [ + "Hilary Duff" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Raising Helen", + "year": 2004, + "cast": [ + "Kate Hudson", + "John Corbett", + "Joan Cusack", + "Hayden Panettiere", + "Spencer Breslin", + "Helen Mirren", + "Abigail Breslin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Ray", + "year": 2004, + "cast": [ + "Jamie Foxx" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Riding Giants", + "year": 2004, + "cast": [ + "The art of", + "big wave surfing" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Riding the Bullet", + "year": 2004, + "cast": [ + "Jonathan Jackson", + "David Arquette", + "Cliff Robertson" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Ripley's Game", + "year": 2004, + "cast": [ + "John Malkovich", + "Dougray Scott", + "Ray Winstone", + "Chiara Caselli", + "Lena Headey" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Saved!", + "year": 2004, + "cast": [ + "Jena Malone", + "Mandy Moore", + "Macaulay Culkin", + "Patrick Fugit", + "Heather Matarazzo", + "Eva Amurri", + "Martin Donovan", + "Mary-Louise Parker" + ], + "genres": [ + "Comedy", + "Teen" + ] + }, + { + "title": "Saw", + "year": 2004, + "cast": [ + "Cary Elwes", + "Leigh Whannell", + "Danny Glover", + "Monica Potter" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Scooby-Doo 2: Monsters Unleashed", + "year": 2004, + "cast": [ + "Freddie Prinze, Jr.", + "Sarah Michelle Gellar", + "Matthew Lillard", + "Linda Cardellini" + ], + "genres": [ + "Comedy", + "Family" + ] + }, + { + "title": "Secret Window", + "year": 2004, + "cast": [ + "Johnny Depp", + "John Turturro", + "Timothy Hutton" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Seed of Chucky", + "year": 2004, + "cast": [ + "Jennifer Tilly", + "Redman", + "Hannah Spearritt", + "John Waters" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Shall We Dance?", + "year": 2004, + "cast": [ + "Richard Gere", + "Jennifer Lopez", + "Susan Sarandon" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Shark Tale", + "year": 2004, + "cast": [ + "Will Smith", + "Jack Black", + "Renée Zellweger", + "Angelina Jolie", + "Robert De Niro", + "Martin Scorsese" + ], + "genres": [ + "Animated", + "Family" + ] + }, + { + "title": "She Hate Me", + "year": 2004, + "cast": [ + "Anthony Mackie", + "Kerry Washington", + "Ellen Barkin", + "Monica Bellucci", + "Jim Brown", + "Brian Dennehy", + "Woody Harrelson", + "Bai Ling", + "Q-Tip", + "Dania Ramirez", + "John Turturro" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Shrek 2", + "year": 2004, + "cast": [ + "Mike Myers", + "Cameron Diaz", + "Eddie Murphy", + "Antonio Banderas" + ], + "genres": [ + "Animated", + "Family" + ] + }, + { + "title": "Sideways", + "year": 2004, + "cast": [ + "Paul Giamatti", + "Thomas Haden Church", + "Virginia Madsen", + "Sandra Oh" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Six: The Mark Unleashed", + "year": 2004, + "cast": [ + "Stephen Baldwin", + "Eric Roberts", + "Kevin Downes" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Silver City", + "year": 2004, + "cast": [ + "Danny Huston", + "Chris Cooper", + "Richard Dreyfuss", + "Maria Bello" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Sky Captain and the World of Tomorrow", + "year": 2004, + "cast": [ + "Jude Law", + "Gwyneth Paltrow", + "Angelina Jolie" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Sleepover", + "year": 2004, + "cast": [ + "Alexa Vega", + "Sara Paxton", + "Mika Boorem", + "Sam Huntington" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Some Kind of Monster", + "year": 2004, + "cast": [ + "the band", + "Metallica" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Soul Plane", + "year": 2004, + "cast": [ + "Snoop Dogg", + "Tom Arnold", + "Kevin Hart" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Spanglish", + "year": 2004, + "cast": [ + "Adam Sandler", + "Téa Leoni", + "Paz Vega", + "Cloris Leachman" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Spartan", + "year": 2004, + "cast": [ + "Val Kilmer", + "Derek Luke", + "William H. Macy" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Speak", + "year": 2004, + "cast": [ + "Kristen Stewart", + "Steve Zahn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Spider-Man 2", + "year": 2004, + "cast": [ + "Tobey Maguire", + "Kirsten Dunst", + "James Franco", + "Alfred Molina", + "Rosemary Harris" + ], + "genres": [ + "Superhero" + ] + }, + { + "title": "The SpongeBob SquarePants Movie", + "year": 2004, + "cast": [ + "Tom Kenny", + "Clancy Brown", + "Rodger Bumpass", + "Bill Fagerbakke" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Stage Beauty", + "year": 2004, + "cast": [ + "Billy Crudup", + "Claire Danes", + "Rupert Everett" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Starsky & Hutch", + "year": 2004, + "cast": [ + "Ben Stiller", + "Owen Wilson", + "Vince Vaughn", + "Snoop Dogg", + "Juliette Lewis", + "Amy Smart", + "Carmen Electra" + ], + "genres": [ + "Crime", + "Comedy" + ] + }, + { + "title": "Stateside", + "year": 2004, + "cast": [ + "Rachael Leigh Cook", + "Jonathan Tucker", + "Agnes Bruckner" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Stepford Wives", + "year": 2004, + "cast": [ + "Nicole Kidman", + "Matthew Broderick", + "Glenn Close", + "Bette Midler", + "Christopher Walken", + "Faith Hill" + ], + "genres": [ + "Comedy", + "Science Fiction" + ] + }, + { + "title": "Straight-Jacket", + "year": 2004, + "cast": [ + "Matt Letscher", + "Carrie Preston" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Super Size Me", + "year": 2004, + "cast": [ + "30-day period of eating food only from", + "McDonald's" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "SuperBabies: Baby Geniuses 2", + "year": 2004, + "cast": [ + "Jon Voight", + "Scott Baio", + "Vanessa Angel" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Surviving Christmas", + "year": 2004, + "cast": [ + "Ben Affleck", + "James Gandolfini", + "Christina Applegate", + "Catherine O'Hara" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Suspect Zero", + "year": 2004, + "cast": [ + "Aaron Eckhart", + "Ben Kingsley", + "Carrie-Anne Moss" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Taking Lives", + "year": 2004, + "cast": [ + "Angelina Jolie", + "Ethan Hawke", + "Kiefer Sutherland", + "Olivier Martinez", + "Gena Rowlands" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Taxi", + "year": 2004, + "cast": [ + "Queen Latifah", + "Jimmy Fallon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Teacher's Pet", + "year": 2004, + "cast": [ + "Nathan Lane", + "Kelsey Grammer", + "Shaun Fleming" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Team America: World Police", + "year": 2004, + "cast": [ + "Trey Parker", + "Matt Stone", + "Kristen Miller" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "The Terminal", + "year": 2004, + "cast": [ + "Tom Hanks", + "Catherine Zeta-Jones" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Torque", + "year": 2004, + "cast": [ + "Martin Henderson", + "Ice Cube", + "Monet Mazur", + "Jay Hernandez", + "Jaime Pressly" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Troy", + "year": 2004, + "cast": [ + "Brad Pitt", + "Eric Bana", + "Orlando Bloom", + "Brian Cox", + "Brendan Gleeson", + "Peter O'Toole", + "Diane Kruger", + "Rose Byrne", + "Saffron Burrows", + "Julie Christie" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Twisted", + "year": 2004, + "cast": [ + "Ashley Judd", + "Samuel L. Jackson", + "Andy García" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Tying the Knot", + "year": 2004, + "cast": [ + "same-sex marriage in the United States" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Undertow", + "year": 2004, + "cast": [ + "Jamie Bell", + "Dermot Mulroney", + "Josh Lucas", + "Devon Alan" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "University Heights", + "year": 2004, + "cast": [ + "Jim Siokos", + "Shane Simmons", + "Travis Shepherd" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Van Helsing", + "year": 2004, + "cast": [ + "Hugh Jackman", + "Kate Beckinsale", + "Richard Roxburgh", + "David Wenham", + "Will Kemp", + "Kevin J. O'Connor", + "Shuler Hensley" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Vanity Fair", + "year": 2004, + "cast": [ + "Reese Witherspoon", + "Jonathan Rhys Meyers", + "James Purefoy" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "A Very Long Engagement", + "year": 2004, + "cast": [ + "Audrey Tautou", + "Gaspard Ulliel", + "Jodie Foster" + ], + "genres": [ + "War" + ] + }, + { + "title": "The Village", + "year": 2004, + "cast": [ + "Bryce Dallas Howard", + "Joaquin Phoenix", + "Adrien Brody", + "William Hurt", + "Sigourney Weaver" + ], + "genres": [ + "Suspense" + ] + }, + { + "title": "Voces inocentes", + "year": 2004, + "cast": [ + "Carlos Padilla", + "Leonor Varela", + "Xuna Primus" + ], + "genres": [ + "War" + ] + }, + { + "title": "Voices of Iraq", + "year": 2004, + "cast": [ + "Iraq" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Walking Tall", + "year": 2004, + "cast": [ + "Dwayne Johnson" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Wake of Death", + "year": 2004, + "cast": [ + "Jean-Claude Van Damme" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Watermarks", + "year": 2004, + "cast": [ + "women from", + "Viennese Hakoah", + "swim team" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "We Don't Live Here Anymore", + "year": 2004, + "cast": [ + "Mark Ruffalo", + "Laura Dern", + "Naomi Watts", + "Peter Krause" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Welcome to Mooseport", + "year": 2004, + "cast": [ + "Ray Romano", + "Gene Hackman", + "Marcia Gay Harden" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "When Will I Be Loved", + "year": 2004, + "cast": [ + "Neve Campbell", + "Fred Weller", + "Alex Feldman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "White Chicks", + "year": 2004, + "cast": [ + "Shawn Wayans", + "Marlon Wayans" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Whole Ten Yards", + "year": 2004, + "cast": [ + "Matthew Perry", + "Bruce Willis", + "Amanda Peet", + "Natasha Henstridge", + "Kevin Pollak" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Wicker Park", + "year": 2004, + "cast": [ + "Josh Hartnett", + "Rose Byrne", + "Diane Kruger", + "Matthew Lillard" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Win a Date with Tad Hamilton!", + "year": 2004, + "cast": [ + "Kate Bosworth", + "Topher Grace", + "Josh Duhamel" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Winter Solstice", + "year": 2004, + "cast": [ + "Anthony LaPaglia", + "Aaron Stanford" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "With All Deliberate Speed", + "year": 2004, + "cast": [ + "Brown v. Board of Education" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Without a Paddle", + "year": 2004, + "cast": [ + "Matthew Lillard", + "Seth Green", + "Dax Shepard" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Woman Thou Art Loosed", + "year": 2004, + "cast": [ + "Kimberly Elise", + "Loretta Devine", + "Debbi Morgan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Woodsman", + "year": 2004, + "cast": [ + "Kevin Bacon", + "Kyra Sedgwick", + "Eve", + "Mos Def" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Work and the Glory", + "year": 2004, + "cast": [ + "Sam Hennings", + "Brenda Strong", + "Eric Johnson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Year of the Yao", + "year": 2004, + "cast": [ + "The first of year of", + "Yao Ming", + "'s American career" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "You Got Served", + "year": 2004, + "cast": [ + "Marques Houston", + "Omarion Grandberry", + "Jennifer Freeman" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The 40-Year-Old Virgin", + "year": 2005, + "cast": [ + "Steve Carell", + "Catherine Keener", + "Paul Rudd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "51 Birch Street", + "year": 2005, + "cast": [ + "love", + "marriage", + "fidelity and a", + "suburban", + "family" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Adventures of Sharkboy and Lavagirl in 3-D", + "year": 2005, + "cast": [ + "Taylor Lautner", + "Taylor Dooley", + "Cayden Boyd", + "George Lopez" + ], + "genres": [ + "Family", + "Superhero" + ] + }, + { + "title": "Æon Flux", + "year": 2005, + "cast": [ + "Charlize Theron" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Aliens of the Deep", + "year": 2005, + "cast": [ + "the", + "Mid-Ocean Ridge" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Alone in the Dark", + "year": 2005, + "cast": [ + "Christian Slater", + "Tara Reid", + "Stephen Dorff" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Amityville Horror", + "year": 2005, + "cast": [ + "Ryan Reynolds", + "Melissa George", + "Jesse James", + "Jimmy Bennett" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Are We There Yet?", + "year": 2005, + "cast": [ + "Ice Cube" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Aristocrats", + "year": 2005, + "cast": [ + "the obscure", + "dirty joke", + "\"", + "The Aristocrats", + "\"" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Assault on Precinct 13", + "year": 2005, + "cast": [ + "Ethan Hawke", + "Laurence Fishburne", + "Gabriel Byrne" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Bad News Bears", + "year": 2005, + "cast": [ + "Billy Bob Thornton", + "Greg Kinnear" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Ballad of Jack and Rose", + "year": 2005, + "cast": [ + "Daniel Day-Lewis", + "Camilla Belle" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Batman Begins", + "year": 2005, + "cast": [ + "Christian Bale", + "Michael Caine", + "Liam Neeson", + "Katie Holmes", + "Gary Oldman", + "Morgan Freeman" + ], + "genres": [ + "Superhero" + ] + }, + { + "title": "The Baxter", + "year": 2005, + "cast": [ + "Michael Showalter", + "Elizabeth Banks", + "Michelle Williams" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Be Cool", + "year": 2005, + "cast": [ + "John Travolta", + "Uma Thurman", + "Cedric the Entertainer", + "André Benjamin", + "Steven Tyler", + "Vince Vaughn" + ], + "genres": [ + "Crime", + "Comedy" + ] + }, + { + "title": "Beauty Shop", + "year": 2005, + "cast": [ + "Queen Latifah" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Because of Winn-Dixie", + "year": 2005, + "cast": [ + "AnnaSophia Robb", + "Jeff Daniels", + "Cicely Tyson" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Bee Season", + "year": 2005, + "cast": [ + "Richard Gere", + "Juliette Binoche", + "Flora Cross", + "Max Minghella" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Bewitched", + "year": 2005, + "cast": [ + "Nicole Kidman", + "Will Ferrell", + "Michael Caine", + "Jason Schwartzman", + "Shirley MacLaine" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Bigger Than the Sky", + "year": 2005, + "cast": [ + "Marcus Thomas", + "John Corbett", + "Amy Smart" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Boogeyman", + "year": 2005, + "cast": [ + "Barry Watson", + "Emily Deschanel", + "Lucy Lawless" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Brick", + "year": 2005, + "cast": [ + "Joseph Gordon-Levitt", + "Emilie de Ravin", + "Nora Zehetner" + ], + "genres": [ + "Noir" + ] + }, + { + "title": "Brokeback Mountain", + "year": 2005, + "cast": [ + "Heath Ledger", + "Jake Gyllenhaal", + "Anne Hathaway", + "Michelle Williams", + "Randy Quaid" + ], + "genres": [ + "Western", + "Romance", + "Drama" + ] + }, + { + "title": "Broken Flowers", + "year": 2005, + "cast": [ + "Bill Murray", + "Jeffrey Wright", + "Sharon Stone", + "Frances Conroy", + "Jessica Lange", + "Tilda Swinton" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Brothers Grimm", + "year": 2005, + "cast": [ + "Matt Damon", + "Heath Ledger", + "Jonathan Pryce" + ], + "genres": [ + "Adventure", + "Fantasy" + ] + }, + { + "title": "Capote", + "year": 2005, + "cast": [ + "Philip Seymour Hoffman", + "Catherine Keener", + "Clifton Collins, Jr.", + "Chris Cooper", + "Amy Ryan" + ], + "genres": [ + "Biography", + "Crime" + ] + }, + { + "title": "Casanova", + "year": 2005, + "cast": [ + "Heath Ledger", + "Jeremy Irons", + "Sienna Miller" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Cave", + "year": 2005, + "cast": [ + "Cole Hauser", + "Eddie Cibrian", + "Morris Chestnut", + "Lena Headey" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Charlie and the Chocolate Factory", + "year": 2005, + "cast": [ + "Johnny Depp", + "Freddie Highmore", + "David Kelly", + "Helena Bonham Carter", + "Christopher Lee", + "Missi Pyle", + "James Fox" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Cheaper by the Dozen 2", + "year": 2005, + "cast": [ + "Steve Martin", + "Bonnie Hunt", + "Hilary Duff", + "Tom Welling", + "Piper Perabo", + "Eugene Levy", + "Carmen Electra" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Chicken Little", + "year": 2005, + "cast": [ + "Zach Braff", + "Joan Cusack", + "Steve Zahn" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "The Chronicles of Narnia: The Lion, the Witch and the Wardrobe", + "year": 2005, + "cast": [ + "William Mosely", + "Anna Popplewell", + "Skandar Keynes", + "Georgie Henley" + ], + "genres": [ + "Adventure", + "Fantasy" + ] + }, + { + "title": "The Chumscrubber", + "year": 2005, + "cast": [ + "Glenn Close", + "Ralph Fiennes", + "Caroline Goodall" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Cinderella Man", + "year": 2005, + "cast": [ + "Russell Crowe", + "Renée Zellweger", + "Paul Giamatti", + "Bruce McGill", + "Craig Bierko" + ], + "genres": [ + "Biography", + "Drama" + ] + }, + { + "title": "Coach Carter", + "year": 2005, + "cast": [ + "Samuel L. Jackson", + "Rob Brown", + "Ashanti", + "Channing Tatum" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Constantine", + "year": 2005, + "cast": [ + "Keanu Reeves", + "Rachel Weisz", + "Shia LaBeouf" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Corpse Bride", + "year": 2005, + "cast": [ + "Johnny Depp", + "Helena Bonham Carter" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "The Crow: Wicked Prayer", + "year": 2005, + "cast": [ + "Edward Furlong", + "David Boreanaz", + "Tara Reid", + "Emmanuelle Chriqui" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Cruel World", + "year": 2005, + "cast": [ + "Edward Furlong", + "Susan Ward", + "Daniel Franzese", + "Andrew Keegan" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Cry_Wolf", + "year": 2005, + "cast": [ + "Julian Morris", + "Lindy Booth", + "Jon Bon Jovi", + "Kristy Wu" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Cursed", + "year": 2005, + "cast": [ + "Christina Ricci", + "Jesse Eisenberg", + "Joshua Jackson", + "Judy Greer" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Daltry Calhoun", + "year": 2005, + "cast": [ + "Johnny Knoxville" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Dark Water", + "year": 2005, + "cast": [ + "Jennifer Connelly" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Deepwater", + "year": 2005, + "cast": [ + "Lucas Black", + "Peter Coyote", + "Mia Maestro" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Derailed", + "year": 2005, + "cast": [ + "Clive Owen", + "Jennifer Aniston", + "Vincent Cassel" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Derby Stallion", + "year": 2005, + "cast": [ + "Zac Efron", + "Bill Cobbs", + "Crystal Hunt", + "Rob Pinkston" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Deuce Bigalow: European Gigolo", + "year": 2005, + "cast": [ + "Rob Schneider", + "Eddie Griffin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Devil's Rejects", + "year": 2005, + "cast": [ + "Sid Haig", + "Bill Moseley", + "Sherri Moon", + "William Forsythe" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Diary of a Mad Black Woman", + "year": 2005, + "cast": [ + "Kimberly Elise", + "Steve Harris", + "Shemar Moore", + "Cicely Tyson", + "Tyler Perry" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Dirty Love", + "year": 2005, + "cast": [ + "Jenny McCarthy", + "Eddie Kaye Thomas", + "Carmen Electra", + "Victor Webster", + "Kam Heskin", + "Kathy Griffin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Dominion: Prequel to the Exorcist", + "year": 2005, + "cast": [ + "Stellan Skarsgård", + "Gabriel Mann", + "Billy Crawford", + "Ralph Brown" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Domino", + "year": 2005, + "cast": [ + "Keira Knightley", + "Mickey Rourke", + "Edgar Ramirez", + "Lucy Liu", + "Jacqueline Bisset", + "Delroy Lindo" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Don't Come Knocking", + "year": 2005, + "cast": [ + "Sam Shepard", + "Jessica Lange", + "Tim Roth" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Doom", + "year": 2005, + "cast": [ + "Karl Urban", + "Dwayne Johnson", + "Ben Daniels" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Dreamer", + "year": 2005, + "cast": [ + "Dakota Fanning", + "Kurt Russell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Duck", + "year": 2005, + "cast": [ + "Philip Baker Hall", + "Bill Cobbs", + "Bill Brochtrup", + "Amy Hill" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Dukes of Hazzard", + "year": 2005, + "cast": [ + "Johnny Knoxville", + "Seann William Scott", + "Jessica Simpson", + "Burt Reynolds", + "Willie Nelson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Duma", + "year": 2005, + "cast": [ + "Alexander Michaletos", + "Eamonn Walker", + "Campbell Scott", + "Hope Davis" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Dying Gaul", + "year": 2005, + "cast": [ + "Patricia Clarkson", + "Peter Sarsgaard" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Elektra", + "year": 2005, + "cast": [ + "Jennifer Garner", + "Terence Stamp", + "Kirsten Prout" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Elizabethtown", + "year": 2005, + "cast": [ + "Orlando Bloom", + "Kirsten Dunst", + "Susan Sarandon", + "Alec Baldwin", + "Jessica Biel" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Enron: The Smartest Guys in the Room", + "year": 2005, + "cast": [ + "the", + "Enron scandal" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Everything Is Illuminated", + "year": 2005, + "cast": [ + "Elijah Wood" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Exorcism of Emily Rose", + "year": 2005, + "cast": [ + "Laura Linney", + "Tom Wilkinson", + "Jennifer Carpenter", + "Campbell Scott" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Family Stone", + "year": 2005, + "cast": [ + "Claire Danes", + "Diane Keaton", + "Rachel McAdams", + "Craig T. Nelson", + "Sarah Jessica Parker" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Fantastic Four", + "year": 2005, + "cast": [ + "Ioan Gruffudd", + "Jessica Alba", + "Michael Chiklis", + "Chris Evans", + "Julian McMahon", + "Kerry Washington" + ], + "genres": [ + "Superhero" + ] + }, + { + "title": "Favela Rising", + "year": 2005, + "cast": [ + "the life in a", + "favela" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Fever Pitch", + "year": 2005, + "cast": [ + "Drew Barrymore", + "Jimmy Fallon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "First Descent", + "year": 2005, + "cast": [ + "snowboarding", + "in the 1980s" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Flightplan", + "year": 2005, + "cast": [ + "Jodie Foster", + "Peter Sarsgaard", + "Sean Bean" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Fog", + "year": 2005, + "cast": [ + "Tom Welling", + "Maggie Grace", + "Selma Blair" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Forty Shades of Blue", + "year": 2005, + "cast": [ + "Rip Torn", + "Dina Korzun", + "Darren E. Burrows" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Four Brothers", + "year": 2005, + "cast": [ + "Mark Wahlberg", + "Tyrese Gibson", + "Andre Benjamin", + "Garrett Hedlund", + "Terrence Howard" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Frankenstein vs. the Creature from Blood Cove", + "year": 2005, + "cast": [ + "G. Larry Butler", + "William Winckler", + "Dezzirae Ascalon" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Fun with Dick and Jane", + "year": 2005, + "cast": [ + "Jim Carrey", + "Téa Leoni", + "Alec Baldwin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Game of Their Lives", + "year": 2005, + "cast": [ + "Gerard Butler", + "Wes Bentley", + "Zachery Ty Bryan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Get Rich or Die Tryin'", + "year": 2005, + "cast": [ + "50 Cent", + "Terrence Howard" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Getting Played", + "year": 2005, + "cast": [ + "Vivica A. Fox", + "Bill Bellamy", + "Carmen Electra", + "Stacey Dash" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Goal!", + "year": 2005, + "cast": [ + "Kuno Becker", + "Alessandro Nivola", + "Marcel Iures", + "Stephen Dillane" + ], + "genres": [ + "Drama", + "Sports" + ] + }, + { + "title": "The Gospel", + "year": 2005, + "cast": [ + "Boris Kodjoe", + "Idris Elba", + "Clifton Powell" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Good Night, and Good Luck", + "year": 2005, + "cast": [ + "David Strathairn", + "Patricia Clarkson", + "George Clooney", + "Jeff Daniels", + "Robert Downey, Jr." + ], + "genres": [ + "Biography" + ] + }, + { + "title": "The Great Raid", + "year": 2005, + "cast": [ + "Benjamin Bratt", + "Joseph Fiennes", + "James Franco" + ], + "genres": [ + "War" + ] + }, + { + "title": "The Greatest Game Ever Played", + "year": 2005, + "cast": [ + "Shia LaBeouf" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Green Street", + "year": 2005, + "cast": [ + "Elijah Wood", + "Charlie Hunnam", + "Claire Forlani" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Grizzly Man", + "year": 2005, + "cast": [ + "the life and death of", + "Timothy Treadwell" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Guess Who", + "year": 2005, + "cast": [ + "Bernie Mac", + "Ashton Kutcher", + "Zoe Saldana", + "Hal Williams" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Happy Endings", + "year": 2005, + "cast": [ + "Lisa Kudrow", + "Tom Arnold", + "Steve Coogan", + "Maggie Gyllenhaal" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Harry Potter and the Goblet of Fire", + "year": 2005, + "cast": [ + "Daniel Radcliffe", + "Rupert Grint", + "Emma Watson", + "Michael Gambon", + "Maggie Smith", + "Alan Rickman", + "Gary Oldman", + "Robbie Coltrane", + "Robert Pattinson", + "Ralph Fiennes" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Her Minor Thing", + "year": 2005, + "cast": [ + "Estella Warren", + "Christian Kane", + "Michael Weatherly" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Herbie: Fully Loaded", + "year": 2005, + "cast": [ + "Lindsay Lohan", + "Michael Keaton", + "Matt Dillon", + "Cheryl Hines" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hide and Seek", + "year": 2005, + "cast": [ + "Robert De Niro", + "Dakota Fanning" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "A History of Violence", + "year": 2005, + "cast": [ + "Viggo Mortensen", + "Maria Bello", + "Ed Harris" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Hitch", + "year": 2005, + "cast": [ + "Will Smith", + "Kevin James", + "Eva Mendes" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Hitchhiker's Guide to the Galaxy", + "year": 2005, + "cast": [ + "Martin Freeman", + "Mos Def", + "Zooey Deschanel", + "Sam Rockwell", + "Bill Nighy", + "Anna Chancellor", + "John Malkovich", + "Warwick Davis" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Honeymooners", + "year": 2005, + "cast": [ + "Cedric the Entertainer", + "Mike Epps", + "Gabrielle Union", + "Regina Hall" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hoodwinked!", + "year": 2005, + "cast": [ + "Anne Hathaway", + "Glenn Close", + "James Belushi" + ], + "genres": [ + "Animated", + "Comedy" + ] + }, + { + "title": "Hostage", + "year": 2005, + "cast": [ + "Bruce Willis", + "Kevin Pollak" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Hostel", + "year": 2005, + "cast": [ + "Jay Hernandez", + "Derek Richardson", + "Eythor Gudjonsson" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "House of D", + "year": 2005, + "cast": [ + "David Duchovny", + "Anton Yelchin", + "Robin Williams" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "House of Wax", + "year": 2005, + "cast": [ + "Elisha Cuthbert", + "Chad Michael Murray", + "Paris Hilton", + "Brian Van Holt", + "Jared Padalecki", + "Jon Abrahams", + "Robert Ri'chard" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Hustle & Flow", + "year": 2005, + "cast": [ + "Terrence Howard", + "Anthony Anderson", + "Taryn Manning" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Ice Harvest", + "year": 2005, + "cast": [ + "John Cusack", + "Billy Bob Thornton", + "Connie Nielsen", + "Randy Quaid" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Ice Princess", + "year": 2005, + "cast": [ + "Michelle Trachtenberg", + "Hayden Panettiere", + "Kim Cattrall", + "Joan Cusack" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "In Her Shoes", + "year": 2005, + "cast": [ + "Cameron Diaz", + "Toni Collette", + "Shirley MacLaine" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "In the Mix", + "year": 2005, + "cast": [ + "Usher", + "Emmanuelle Chriqui", + "Chazz Palminteri" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Inside Deep Throat", + "year": 2005, + "cast": [ + "Deep Throat", + "and its impact" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Intermedio", + "year": 2005, + "cast": [ + "Edward Furlong", + "Cerina Vincent", + "Amber Benson" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Interpreter", + "year": 2005, + "cast": [ + "Nicole Kidman", + "Sean Penn" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Into the Blue", + "year": 2005, + "cast": [ + "Jessica Alba", + "Paul Walker" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Island", + "year": 2005, + "cast": [ + "Ewan McGregor", + "Scarlett Johansson" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Jacket", + "year": 2005, + "cast": [ + "Adrien Brody", + "Keira Knightley" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Jarhead", + "year": 2005, + "cast": [ + "Jake Gyllenhaal", + "Jamie Foxx", + "Peter Sarsgaard", + "Lucas Black" + ], + "genres": [ + "War" + ] + }, + { + "title": "Junebug", + "year": 2005, + "cast": [ + "Embeth Davidtz", + "Alessandro Nivola", + "Scott Wilson", + "Celia Weston", + "Amy Adams" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Just Friends", + "year": 2005, + "cast": [ + "Ryan Reynolds", + "Amy Smart", + "Anna Faris", + "Chris Klein" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Just Like Heaven", + "year": 2005, + "cast": [ + "Reese Witherspoon", + "Mark Ruffalo", + "Donal Logue" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Kicking & Screaming", + "year": 2005, + "cast": [ + "Will Ferrell", + "Robert Duvall" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Kids in America", + "year": 2005, + "cast": [ + "Gregory Smith", + "Chris Morris" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "King Kong", + "year": 2005, + "cast": [ + "Naomi Watts", + "Jack Black", + "Adrien Brody", + "Kyle Chandler", + "Thomas Kretschmann" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "King's Ransom", + "year": 2005, + "cast": [ + "Anthony Anderson" + ], + "genres": [ + "Crime", + "Comedy" + ] + }, + { + "title": "Kingdom of Heaven", + "year": 2005, + "cast": [ + "Orlando Bloom", + "Eva Green", + "Jeremy Irons" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Kiss Kiss Bang Bang", + "year": 2005, + "cast": [ + "Robert Downey, Jr.", + "Val Kilmer" + ], + "genres": [ + "Crime", + "Comedy" + ] + }, + { + "title": "The L.A. Riot Spectacular", + "year": 2005, + "cast": [ + "Snoop Dogg", + "Emilio Estevez", + "T. K. Carter" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Land of the Dead", + "year": 2005, + "cast": [ + "Simon Baker", + "John Leguizamo", + "Dennis Hopper", + "Asia Argento" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Lassie", + "year": 2005, + "cast": [ + "Jonathan Mason", + "Peter O'Toole", + "Samantha Morton" + ], + "genres": [ + "Drama", + "Family" + ] + }, + { + "title": "Last Days", + "year": 2005, + "cast": [ + "Michael Pitt", + "Lukas Haas", + "Asia Argento", + "Scott Patrick Green" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The League of Gentlemen's Apocalypse", + "year": 2005, + "cast": [ + "Jeremy Dyson", + "Mark Gatiss", + "Steve Pemberton", + "Reece Shearsmith" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Legend of Zorro", + "year": 2005, + "cast": [ + "Antonio Banderas", + "Catherine Zeta-Jones" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Lonesome Jim", + "year": 2005, + "cast": [], + "genres": [] + }, + { + "title": "Long Distance", + "year": 2005, + "cast": [ + "Monica Keena" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Longest Yard", + "year": 2005, + "cast": [ + "Adam Sandler", + "Burt Reynolds", + "Chris Rock" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Lord of War", + "year": 2005, + "cast": [ + "Nicolas Cage", + "Bridget Moynahan", + "Ethan Hawke" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Lords of Dogtown", + "year": 2005, + "cast": [ + "Heath Ledger", + "Emile Hirsch", + "John Robinson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Lost City", + "year": 2005, + "cast": [ + "Andy García", + "Dustin Hoffman", + "Bill Murray" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Lot Like Love", + "year": 2005, + "cast": [ + "Amanda Peet", + "Ashton Kutcher" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mad Hot Ballroom", + "year": 2005, + "cast": [ + "ballroom dance", + "in New York school system" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Madagascar", + "year": 2005, + "cast": [ + "Ben Stiller", + "Chris Rock", + "David Schwimmer", + "Jada Pinkett Smith" + ], + "genres": [ + "Animated", + "Comedy" + ] + }, + { + "title": "The Man", + "year": 2005, + "cast": [ + "Samuel L. Jackson", + "Eugene Levy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Man of the House", + "year": 2005, + "cast": [ + "Tommy Lee Jones" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Marilyn Hotchkiss' Ballroom Dancing and Charm School", + "year": 2005, + "cast": [ + "Robert Carlyle", + "John Goodman", + "Sean Astin", + "Mary Steenburgen" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Matador", + "year": 2005, + "cast": [ + "Pierce Brosnan", + "Greg Kinnear", + "Hope Davis", + "Philip Baker Hall" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Match Point", + "year": 2005, + "cast": [ + "Jonathan Rhys Meyers", + "Scarlett Johansson", + "Emily Mortimer" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Me and You and Everyone We Know", + "year": 2005, + "cast": [ + "Miranda July", + "John Hawkes", + "Miles Thompson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Memoirs of a Geisha", + "year": 2005, + "cast": [ + "Zhang Ziyi", + "Ken Watanabe", + "Gong Li", + "Michelle Yeoh" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "MirrorMask", + "year": 2005, + "cast": [ + "Stephanie Leonidas", + "Jason Barry", + "Rob Brydon" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Miss Congeniality 2: Armed and Fabulous", + "year": 2005, + "cast": [ + "Sandra Bullock", + "Regina King" + ], + "genres": [ + "Comedy", + "Crime" + ] + }, + { + "title": "Monster-in-Law", + "year": 2005, + "cast": [ + "Jennifer Lopez", + "Jane Fonda", + "Michael Vartan", + "Wanda Sykes" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Mostly Unfabulous Social Life of Ethan Green", + "year": 2005, + "cast": [ + "Daniel Letterle", + "Meredith Baxter", + "David Monahan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mr. & Mrs. Smith", + "year": 2005, + "cast": [ + "Brad Pitt", + "Angelina Jolie" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Mrs. Palfrey at the Claremont", + "year": 2005, + "cast": [ + "Joan Plowright", + "Rupert Friend", + "Anna Massey" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Munich", + "year": 2005, + "cast": [ + "Eric Bana", + "Daniel Craig", + "Ciarán Hinds", + "Mathieu Kassovitz" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Murderball", + "year": 2005, + "cast": [ + "wheelchair rugby" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Must Love Dogs", + "year": 2005, + "cast": [ + "Diane Lane", + "John Cusack" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Nanny McPhee", + "year": 2005, + "cast": [ + "Emma Thompson", + "Colin Firth" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Never Been Thawed", + "year": 2005, + "cast": [ + "Sean Anders", + "Allen Zwolle", + "Shelly Frasier" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The New World", + "year": 2005, + "cast": [ + "Colin Farrell", + "Q'Orianka Kilcher", + "Christopher Plummer", + "Christian Bale" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Neverwas", + "year": 2005, + "cast": [ + "Aaron Eckhart", + "Brittany Murphy", + "Ian McKellen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "New York Doll", + "year": 2005, + "cast": [ + "the life of", + "Arthur Kane" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Nine Lives", + "year": 2005, + "cast": [ + "Holly Hunter", + "Glenn Close", + "Sissy Spacek" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "No Direction Home", + "year": 2005, + "cast": [ + "the life of", + "Bob Dylan" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "North Country", + "year": 2005, + "cast": [ + "Charlize Theron", + "Frances McDormand", + "Sissy Spacek", + "Sean Bean" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Our Very Own", + "year": 2005, + "cast": [ + "Allison Janney", + "Cheryl Hines", + "Jason Ritter", + "Hilarie Burton", + "Keith Carradine" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Pacifier", + "year": 2005, + "cast": [ + "Vin Diesel", + "Lauren Graham", + "Faith Ford" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Perfect Man", + "year": 2005, + "cast": [ + "Hilary Duff", + "Heather Locklear", + "Chris Noth" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Pooh's Heffalump Movie", + "year": 2005, + "cast": [ + "Jim Cummings", + "John Fiedler", + "Kath Soucie" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Popstar", + "year": 2005, + "cast": [ + "Aaron Carter" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Pretty Persuasion", + "year": 2005, + "cast": [ + "Evan Rachel Wood", + "James Woods", + "Ron Livingston", + "Jane Krakowski" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Prime", + "year": 2005, + "cast": [ + "Uma Thurman", + "Meryl Streep", + "Bryan Greenberg" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Prize Winner of Defiance, Ohio", + "year": 2005, + "cast": [ + "Julianne Moore", + "Woody Harrelson", + "Laura Dern" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "The Producers", + "year": 2005, + "cast": [ + "Nathan Lane", + "Matthew Broderick", + "Uma Thurman", + "Will Ferrell" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Proof", + "year": 2005, + "cast": [ + "Gwyneth Paltrow", + "Anthony Hopkins", + "Jake Gyllenhaal", + "Hope Davis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Racing Stripes", + "year": 2005, + "cast": [ + "Frankie Muniz", + "Hayden Panettiere" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Rebound", + "year": 2005, + "cast": [ + "Martin Lawrence" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Red Eye", + "year": 2005, + "cast": [ + "Rachel McAdams", + "Cillian Murphy" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Rent", + "year": 2005, + "cast": [ + "Anthony Rapp", + "Adam Pascal", + "Rosario Dawson" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "The Ring Two", + "year": 2005, + "cast": [ + "Naomi Watts", + "David Dorfman", + "Simon Baker" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Ringer", + "year": 2005, + "cast": [ + "Johnny Knoxville" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Rize", + "year": 2005, + "cast": [ + "clowning and krumping" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Robots", + "year": 2005, + "cast": [ + "Ewan McGregor", + "Robin Williams", + "Greg Kinnear", + "Halle Berry", + "Amanda Bynes", + "Mel Brooks" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Roll Bounce", + "year": 2005, + "cast": [ + "Bow Wow", + "Meagan Good", + "Wesley Jonathan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Rumor Has It...", + "year": 2005, + "cast": [ + "Jennifer Aniston", + "Kevin Costner", + "Shirley MacLaine", + "Mark Ruffalo" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Sahara", + "year": 2005, + "cast": [ + "Matthew McConaughey", + "Steve Zahn", + "Penélope Cruz" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Sarah Silverman: Jesus Is Magic", + "year": 2005, + "cast": [ + "Sarah Silverman" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Saw II", + "year": 2005, + "cast": [ + "Tobin Bell", + "Donnie Wahlberg", + "Erik Knudsen", + "Shawnee Smith" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Serenity", + "year": 2005, + "cast": [ + "Nathan Fillion", + "Gina Torres", + "Alan Tudyk", + "Morena Baccarin" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Shadowboxer", + "year": 2005, + "cast": [ + "Helen Mirren", + "Cuba Gooding, Jr.", + "Mo'Nique" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Shopgirl", + "year": 2005, + "cast": [ + "Steve Martin", + "Claire Danes", + "Jason Schwartzman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sin City", + "year": 2005, + "cast": [ + "Jessica Alba", + "Bruce Willis", + "Benicio del Toro", + "Brittany Murphy", + "Clive Owen", + "Mickey Rourke", + "Rosario Dawson", + "Josh Hartnett", + "Carla Gugino", + "Elijah Wood", + "Nick Stahl" + ], + "genres": [ + "Action", + "Science Fiction" + ] + }, + { + "title": "The Sisterhood of the Traveling Pants", + "year": 2005, + "cast": [ + "Amber Tamblyn", + "America Ferrera", + "Blake Lively", + "Alexis Bledel" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Sisters", + "year": 2005, + "cast": [ + "Maria Bello", + "Mary Stuart Masterson", + "Erika Christensen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Skeleton Key", + "year": 2005, + "cast": [ + "Kate Hudson" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Sky High", + "year": 2005, + "cast": [ + "Michael Angarano", + "Kurt Russell", + "Kelly Preston", + "Danielle Panabaker", + "Mary Elizabeth Winstead" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Smile", + "year": 2005, + "cast": [ + "Sean Astin", + "Mika Boorem", + "Yi Ding", + "Beau Bridges" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Son of the Mask", + "year": 2005, + "cast": [ + "Jamie Kennedy", + "Alan Cumming", + "Traylor Howard", + "Bob Hoskins" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Sound of Thunder", + "year": 2005, + "cast": [ + "Edward Burns", + "Ben Kingsley", + "Catherine McCormack" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Squid and the Whale", + "year": 2005, + "cast": [ + "Laura Linney", + "Jeff Daniels", + "Jesse Eisenberg", + "Owen Kline" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Star Wars: Episode III – Revenge of the Sith", + "year": 2005, + "cast": [ + "Ewan McGregor", + "Hayden Christensen", + "Natalie Portman", + "Ian McDiarmid", + "Samuel L. Jackson", + "Jimmy Smits" + ], + "genres": [ + "Science Fiction", + "Action" + ] + }, + { + "title": "Stay", + "year": 2005, + "cast": [ + "Ewan McGregor", + "Naomi Watts", + "Ryan Gosling", + "Bob Hoskins" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Stealth", + "year": 2005, + "cast": [ + "Josh Lucas", + "Jessica Biel", + "Jamie Foxx" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Street Fight", + "year": 2005, + "cast": [ + "the 2002", + "Cory Booker", + "campaign against", + "Sharpe James", + "for mayor of", + "Newark", + "New Jersey" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Supercross", + "year": 2005, + "cast": [ + "Steve Howey", + "Mike Vogel", + "Cameron Richardson", + "Sophia Bush" + ], + "genres": [ + "Drama", + "Sports" + ] + }, + { + "title": "Syriana", + "year": 2005, + "cast": [ + "George Clooney", + "Matt Damon", + "Jeffrey Wright" + ], + "genres": [ + "Political", + "Thriller" + ] + }, + { + "title": "The Thing About My Folks", + "year": 2005, + "cast": [ + "Peter Falk", + "Paul Reiser", + "Olympia Dukakis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Three Burials of Melquiades Estrada", + "year": 2005, + "cast": [ + "Tommy Lee Jones", + "Barry Pepper", + "Julio Cedillo", + "January Jones", + "Melissa Leo" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Thru the Moebius Strip", + "year": 2005, + "cast": [ + "Andrea Miller", + "Michelle Ruff", + "Mark Hamill" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Thumbsucker", + "year": 2005, + "cast": [ + "Lou Taylor Pucci", + "Keanu Reeves", + "Tilda Swinton", + "Vincent D'Onofrio" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Traci Townsend", + "year": 2005, + "cast": [ + "Jazsmin Lewis", + "Mari Morrow" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Transamerica", + "year": 2005, + "cast": [ + "Felicity Huffman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Transporter 2", + "year": 2005, + "cast": [ + "Jason Statham" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Two for the Money", + "year": 2005, + "cast": [ + "Al Pacino", + "Matthew McConaughey", + "Rene Russo" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Underclassman", + "year": 2005, + "cast": [ + "Nick Cannon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Undiscovered", + "year": 2005, + "cast": [ + "Pell James", + "Steven Strait", + "Ashlee Simpson", + "Kip Pardue" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "An Unfinished Life", + "year": 2005, + "cast": [ + "Robert Redford", + "Jennifer Lopez", + "Morgan Freeman", + "Josh Lucas" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Upside of Anger", + "year": 2005, + "cast": [ + "Joan Allen", + "Kevin Costner", + "Erika Christensen", + "Evan Rachel Wood", + "Keri Russell", + "Alicia Witt" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Venom", + "year": 2005, + "cast": [ + "Agnes Bruckner", + "Jonathan Jackson", + "Laura Ramsey", + "D.J. Cotrona" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Waiting...", + "year": 2005, + "cast": [ + "Ryan Reynolds", + "Anna Faris", + "Justin Long" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Walk the Line", + "year": 2005, + "cast": [ + "Joaquin Phoenix", + "Reese Witherspoon" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "War of the Worlds", + "year": 2005, + "cast": [ + "Tom Cruise", + "Dakota Fanning", + "Justin Chatwin" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The War Within", + "year": 2005, + "cast": [ + "Ayad Aktar", + "Firdous Bamji", + "Nandana Sen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Weather Man", + "year": 2005, + "cast": [ + "Nicolas Cage", + "Michael Caine" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Wedding Crashers", + "year": 2005, + "cast": [ + "Owen Wilson", + "Vince Vaughn", + "Christopher Walken", + "Rachel McAdams", + "Jane Seymour", + "Bradley Cooper" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Wedding Date", + "year": 2005, + "cast": [ + "Debra Messing", + "Dermot Mulroney" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Where the Truth Lies", + "year": 2005, + "cast": [ + "Colin Firth", + "Kevin Bacon", + "Alison Lohman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "White Noise", + "year": 2005, + "cast": [ + "Michael Keaton", + "Deborah Kara Unger", + "Chandra West" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Why We Fight", + "year": 2005, + "cast": [ + "the", + "military-industrial complex" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The World's Fastest Indian", + "year": 2005, + "cast": [ + "Anthony Hopkins", + "Diane Ladd", + "Jessica Cauffiel" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "xXx: State of the Union", + "year": 2005, + "cast": [ + "Ice Cube" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Yours, Mine and Ours", + "year": 2005, + "cast": [ + "Dennis Quaid", + "Rene Russo" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Zathura", + "year": 2005, + "cast": [ + "Jonah Bobo", + "Josh Hutcherson", + "Dax Shepard", + "Kristen Stewart", + "Tim Robbins" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": ".45", + "year": 2006, + "cast": [ + "Milla Jovovich", + "Angus Macfadyen", + "Aisha Tyler", + "Stephen Dorff" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "10 Items or Less", + "year": 2006, + "cast": [ + "Morgan Freeman", + "Paz Vega" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "10th & Wolf", + "year": 2006, + "cast": [ + "James Marsden", + "Giovanni Ribisi" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "16 Blocks", + "year": 2006, + "cast": [ + "Bruce Willis", + "Mos Def" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "29 Reasons to Run", + "year": 2006, + "cast": [ + "Gary Weeks" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The 8th Plague", + "year": 2006, + "cast": [ + "DJ Perry" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "9/Tenths", + "year": 2006, + "cast": [ + "Gabrielle Anwar", + "Henry Ian Cusick" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "a/k/a Tommy Chong", + "year": 2006, + "cast": [ + "jailing of", + "Tommy Chong" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Abominable", + "year": 2006, + "cast": [ + "Matt McCoy", + "Jeffrey Combs" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Accepted", + "year": 2006, + "cast": [ + "Justin Long", + "Jonah Hill" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "After...", + "year": 2006, + "cast": [ + "Daniel Caltagirone" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Air Guitar Nation", + "year": 2006, + "cast": [ + "U.S.", + "air guitar", + "championships" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Akeelah and the Bee", + "year": 2006, + "cast": [ + "Keke Palmer", + "Laurence Fishburne", + "Angela Bassett" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Al Franken: God Spoke", + "year": 2006, + "cast": [ + "emergence of", + "Al Franken", + "as political commentator" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Alibi", + "year": 2006, + "cast": [ + "Steve Coogan", + "Rebecca Romijn", + "James Marsden" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "All the King's Men", + "year": 2006, + "cast": [ + "Sean Penn", + "Jude Law", + "Kate Winslet", + "Anthony Hopkins", + "Mark Ruffalo", + "James Gandolfini" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Alone with Her", + "year": 2006, + "cast": [ + "Ana Claudia Talancón", + "Colin Hanks", + "Jordana Spiro" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Amazing Grace", + "year": 2006, + "cast": [ + "Ioan Gruffudd" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "America: Freedom to Fascism", + "year": 2006, + "cast": [ + "the legality of income tax" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "American Blackout", + "year": 2006, + "cast": [ + "2002 defeat", + "2004 reelection of", + "Cynthia McKinney" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "American Dreamz", + "year": 2006, + "cast": [ + "Hugh Grant", + "Dennis Quaid", + "Mandy Moore", + "Marcia Gay Harden" + ], + "genres": [ + "Comedy", + "Satire" + ] + }, + { + "title": "American Hardcore", + "year": 2006, + "cast": [ + "early pioneers of the", + "hardcore punk", + "music scene" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Analog Days", + "year": 2006, + "cast": [ + "Chad Cunningham" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Andy Warhol: A Documentary Film", + "year": 2006, + "cast": [ + "life and art of", + "Andy Warhol" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Annapolis", + "year": 2006, + "cast": [ + "James Franco", + "Tyrese Gibson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Another Gay Movie", + "year": 2006, + "cast": [ + "Michael Carbonaro", + "Jonah Blechman", + "Jonathan Chase", + "Mitch Morris" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Ant Bully", + "year": 2006, + "cast": [ + "Julia Roberts", + "Nicolas Cage", + "Meryl Streep", + "Paul Giamatti" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Apocalypto", + "year": 2006, + "cast": [ + "Rudy Youngblood", + "Raoul Trujillo", + "Mayra Sérbulo", + "Dalia Hernández" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Aquamarine", + "year": 2006, + "cast": [ + "Emma Roberts", + "Sara Paxton", + "JoJo" + ], + "genres": [ + "Fantasy", + "Teen" + ] + }, + { + "title": "The Architect", + "year": 2006, + "cast": [ + "Anthony LaPaglia", + "Viola Davis", + "Isabella Rossellini" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Art School Confidential", + "year": 2006, + "cast": [ + "Max Minghella", + "Sophia Myles", + "John Malkovich" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Artie Lange's Beer League", + "year": 2006, + "cast": [ + "Artie Lange", + "Ralph Macchio" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "As You Like It", + "year": 2006, + "cast": [ + "Kevin Kline", + "Bryce Dallas Howard", + "Alfred Molina" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Asian Stories", + "year": 2006, + "cast": [ + "James Kyson Lee", + "Kirt Kishita" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Ask the Dust", + "year": 2006, + "cast": [ + "Colin Farrell", + "Salma Hayek" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Astronaut Farmer", + "year": 2006, + "cast": [ + "Billy Bob Thornton", + "Virginia Madsen", + "Bruce Dern", + "Bruce Willis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "ATL", + "year": 2006, + "cast": [ + "T.I.", + "Lauren London", + "Evan Ross", + "Big Boi" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Automaton Transfusion", + "year": 2006, + "cast": [ + "Garrett Jones" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Automatons", + "year": 2006, + "cast": [ + "Angus Scrimm" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Awesome; I Fuckin' Shot That!", + "year": 2006, + "cast": [ + "Beastie Boys" + ], + "genres": [ + "Performance" + ] + }, + { + "title": "Babel", + "year": 2006, + "cast": [ + "Brad Pitt", + "Cate Blanchett", + "Gael García Bernal", + "Kōji Yakusho" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Bambi II", + "year": 2006, + "cast": [ + "Alexander Gould", + "Patrick Stewart", + "Brendon Baerg" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Barnyard", + "year": 2006, + "cast": [ + "Kevin James", + "Courteney Cox", + "Sam Elliott", + "Danny Glover" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Basic Instinct 2", + "year": 2006, + "cast": [ + "Sharon Stone", + "David Morrissey", + "David Thewlis", + "Charlotte Rampling" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Beach Party at the Threshold of Hell", + "year": 2006, + "cast": [ + "Kevin Wheatley", + "Bill English" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Beerfest", + "year": 2006, + "cast": [ + "Paul Soter", + "Erik Stolhanske" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Behind the Mask: The Rise of Leslie Vernon", + "year": 2006, + "cast": [ + "Nathan Baesel", + "Robert Englund", + "Angela Goethals" + ], + "genres": [ + "Satire" + ] + }, + { + "title": "Bella", + "year": 2006, + "cast": [ + "Eduardo Verástegui", + "Tammy Blanchard", + "Manny Pérez" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Benchwarmers", + "year": 2006, + "cast": [ + "Rob Schneider", + "David Spade", + "Jon Heder" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Beyond Conviction", + "year": 2006, + "cast": [ + "the healing and resolution of three crime victims" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Bickford Shmeckler's Cool Ideas", + "year": 2006, + "cast": [ + "Patrick Fugit", + "Olivia Wilde", + "Fran Kranz", + "John Cho" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Big Bad Swim", + "year": 2006, + "cast": [ + "Paget Brewster", + "Jeff Branson", + "Jess Weixler" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Big Bad Wolf", + "year": 2006, + "cast": [ + "Kimberly J. Brown", + "Trevor Duke", + "Sarah Christine Smith" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Big Dreams Little Tokyo", + "year": 2006, + "cast": [ + "David Boyd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Big Momma's House 2", + "year": 2006, + "cast": [ + "Martin Lawrence" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Black Christmas", + "year": 2006, + "cast": [ + "Katie Cassidy", + "Michelle Trachtenberg", + "Kristen Cloke", + "Crystal Lowe" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Black Dahlia", + "year": 2006, + "cast": [ + "Josh Hartnett", + "Scarlett Johansson", + "Aaron Eckhart", + "Hilary Swank" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Black Gold", + "year": 2006, + "cast": [ + "international", + "coffee", + "trade" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Blind Dating", + "year": 2006, + "cast": [ + "Chris Pine", + "Eddie Kaye Thomas", + "Anjali Jay" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Blood Diamond", + "year": 2006, + "cast": [ + "Leonardo DiCaprio", + "Jennifer Connelly", + "Djimon Hounsou" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Blood Tea and Red String", + "year": 2006, + "cast": [], + "genres": [ + "Animated" + ] + }, + { + "title": "Bloody Mary", + "year": 2006, + "cast": [ + "Jaason Simmons", + "Kim Tyler", + "Matt Borlenghi" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Bobby", + "year": 2006, + "cast": [ + "Harry Belafonte", + "Joy Bryant", + "Nick Cannon", + "Laurence Fishburne", + "Anthony Hopkins", + "Helen Hunt", + "Ashton Kutcher", + "Shia LaBeouf", + "Lindsay Lohan", + "Demi Moore", + "Christian Slater", + "Martin Sheen", + "Sharon Stone" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Borat! Cultural Learnings of America for Make Benefit Glorious Nation of Kazakhstan", + "year": 2006, + "cast": [ + "Sacha Baron Cohen", + "Ken Davitian", + "Luenell" + ], + "genres": [ + "Satire" + ] + }, + { + "title": "Bordertown", + "year": 2006, + "cast": [ + "Jennifer Lopez", + "Antonio Banderas" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Brand Upon the Brain!", + "year": 2006, + "cast": [ + "Sullivan Brown", + "Gretchen Krich", + "Maya Lawson", + "Erik Steffen Maahs" + ], + "genres": [ + "Drama", + "Silent" + ] + }, + { + "title": "Breaking and Entering", + "year": 2006, + "cast": [ + "Jude Law", + "Juliette Binoche", + "Robni Wright Penn" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Break-Up", + "year": 2006, + "cast": [ + "Vince Vaughn", + "Jennifer Aniston" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Breed", + "year": 2006, + "cast": [ + "Michelle Rodriguez", + "Eric Lively", + "Oliver Hudson" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Bridge", + "year": 2006, + "cast": [ + "suicide", + "at", + "Golden Gate Bridge" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Broken Bridges", + "year": 2006, + "cast": [ + "Toby Keith", + "Kelly Preston", + "Willie Nelson", + "Lindsey Haun" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Busgirl", + "year": 2006, + "cast": [ + "Leah Miller" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Caffeine", + "year": 2006, + "cast": [ + "Mena Suvari", + "Marsha Thomason", + "Katherine Heigl" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Cars", + "year": 2006, + "cast": [ + "Paul Newman", + "Owen Wilson", + "Larry the Cable Guy", + "Tony Shalhoub", + "Bonnie Hunt" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Casino Royale", + "year": 2006, + "cast": [ + "Daniel Craig", + "Eva Green", + "Mads Mikkelsen", + "Judi Dench", + "Giancarlo Giannini", + "Jeffrey Wright" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Catch a Fire", + "year": 2006, + "cast": [ + "Tim Robbins", + "Derek Luke" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Cats of Mirikitani", + "year": 2006, + "cast": [ + "the life of", + "Japanese American", + "painter Jimmy Mirikitani" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Chalk", + "year": 2006, + "cast": [ + "Chris Mass" + ], + "genres": [ + "Satire" + ] + }, + { + "title": "Charlotte's Web", + "year": 2006, + "cast": [ + "Dakota Fanning", + "Dominic Scott Kay", + "Julia Roberts", + "Steve Buscemi" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Chasing the Horizon", + "year": 2006, + "cast": [ + "the", + "Baja 1000", + "off-road race" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Children of Men", + "year": 2006, + "cast": [ + "Clive Owen", + "Julianne Moore" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Christmas at Maxwell's", + "year": 2006, + "cast": [ + "Andrew May", + "Jack Hourigan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Church Ball", + "year": 2006, + "cast": [ + "Fred Willard", + "Andrew Wilson", + "Clint Howard" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Civic Duty", + "year": 2006, + "cast": [ + "Peter Krause", + "Khaled Abol Naga", + "Richard Schiff" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Clear Cut: The Story of Philomath, Oregon", + "year": 2006, + "cast": [ + "timber industry", + "in", + "Philomath", + "Oregon" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Clerks II", + "year": 2006, + "cast": [ + "Brian O'Halloran", + "Jeff Anderson", + "Rosario Dawson", + "Jason Mewes", + "Kevin Smith", + "Trevor Fehrman" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Click", + "year": 2006, + "cast": [ + "Adam Sandler", + "Kate Beckinsale", + "Christopher Walken", + "David Hasselhoff" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Cocaine Cowboys", + "year": 2006, + "cast": [ + "cocaine", + "in Miami during 1970s and 1980s" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Coffee Date", + "year": 2006, + "cast": [ + "Jonathan Bray", + "Wilson Cruz" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Color of the Cross", + "year": 2006, + "cast": [ + "Jean-Claude La Marre", + "Debbi Morgan", + "Elya Baskin" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Come Early Morning", + "year": 2006, + "cast": [ + "Ashley Judd", + "Jeffrey Donovan", + "Ray McKinnon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Contract", + "year": 2006, + "cast": [ + "Morgan Freeman", + "John Cusack" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Copying Beethoven", + "year": 2006, + "cast": [ + "Ed Harris", + "Diane Kruger" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Covenant", + "year": 2006, + "cast": [ + "Steven Strait", + "Sebastian Stan", + "Laura Ramsey", + "Taylor Kitsch" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Crank", + "year": 2006, + "cast": [ + "Jason Statham", + "Amy Smart" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Crossover", + "year": 2006, + "cast": [ + "Anthony Mackie", + "Wesley Jonathan", + "Wayne Brady", + "Lil' JJ" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Crude Impact", + "year": 2006, + "cast": [ + "the effect of", + "fossil fuels" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Curious George", + "year": 2006, + "cast": [ + "Will Ferrell", + "Drew Barrymore", + "David Cross", + "Eugene Levy" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "The Curiosity of Chance", + "year": 2006, + "cast": [ + "Tad Hilgenbrink", + "Brett Chukerman" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Da Vinci Code", + "year": 2006, + "cast": [ + "Tom Hanks", + "Audrey Tautou", + "Ian McKellen", + "Alfred Molina", + "Paul Bettany", + "Jean Reno", + "Jürgen Prochnow" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Daft Punk's Electroma", + "year": 2006, + "cast": [ + "Peter Hurteau", + "Michael Reich" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Dance Party USA", + "year": 2006, + "cast": [ + "Cole Pensinger", + "Anna Kavan", + "Ryan White" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Danika", + "year": 2006, + "cast": [ + "Marisa Tomei", + "Regina Hall", + "Craig Bierko" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Danny Roane: First Time Director", + "year": 2006, + "cast": [ + "Andy Dick", + "Frankie Muniz", + "Jack Black" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Dark Corners", + "year": 2006, + "cast": [ + "Thora Birch", + "Toby Stephens", + "Christien Anholt" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Dark Ride", + "year": 2006, + "cast": [ + "Jamie-Lynn Sigler", + "Patrick Renna", + "Jennifer Tisdale" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Darwin Awards", + "year": 2006, + "cast": [ + "Joseph Fiennes", + "Winona Ryder", + "David Arquette" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Date Movie", + "year": 2006, + "cast": [ + "Alyson Hannigan", + "Adam Campbell", + "Jennifer Coolidge", + "Tony Cox" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Dave Chappelle's Block Party", + "year": 2006, + "cast": [ + "a", + "block party", + "held in", + "Clinton Hill", + "Brooklyn", + "by", + "Dave Chappelle" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Day Night Day Night", + "year": 2006, + "cast": [ + "Luisa Williams" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Day on Fire", + "year": 2006, + "cast": [ + "Olympia Dukakis", + "Carmen Chaplin", + "Martin Donovan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Dead Girl", + "year": 2006, + "cast": [ + "Toni Collette", + "Brittany Murphy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Death of Poe", + "year": 2006, + "cast": [ + "Mark Redfield", + "Kevin G. Shinnick" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Déjà Vu", + "year": 2006, + "cast": [ + "Denzel Washington", + "Val Kilmer" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Deck the Halls", + "year": 2006, + "cast": [ + "Danny DeVito", + "Matthew Broderick", + "Kristin Davis", + "Kristin Chenoweth" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Deliver Us from Evil", + "year": 2006, + "cast": [ + "the life of", + "Oliver O'Grady" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Departed", + "year": 2006, + "cast": [ + "Leonardo DiCaprio", + "Matt Damon", + "Jack Nicholson", + "Mark Wahlberg", + "Alec Baldwin", + "Martin Sheen", + "Vera Farmiga", + "Anthony Anderson", + "Ray Winstone" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Devil and Daniel Johnston", + "year": 2006, + "cast": [ + "life and music of", + "Daniel Johnston" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Devil Wears Prada", + "year": 2006, + "cast": [ + "Meryl Streep", + "Anne Hathaway", + "Emily Blunt", + "Stanley Tucci", + "Adrian Grenier", + "Simon Baker" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Diggers", + "year": 2006, + "cast": [ + "Paul Rudd", + "Lauren Ambrose", + "Ron Eldard" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Disappearances", + "year": 2006, + "cast": [ + "Kris Kristofferson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dixie Chicks: Shut Up and Sing", + "year": 2006, + "cast": [ + "the career of the", + "Dixie Chicks" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "DOA: Dead or Alive", + "year": 2006, + "cast": [ + "Jaime Pressly", + "Holly Valance", + "Sarah Carter", + "Natassia Malthe", + "Devon Aoki", + "Eric Roberts" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Dog Problem", + "year": 2006, + "cast": [ + "Giovanni Ribisi", + "Lynn Collins", + "Kevin Corrigan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Dreamgirls", + "year": 2006, + "cast": [ + "Jamie Foxx", + "Beyoncé Knowles", + "Eddie Murphy", + "Jennifer Hudson", + "Anika Noni Rose" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Dreamland", + "year": 2006, + "cast": [ + "Agnes Bruckner", + "Kelli Garner", + "Justin Long" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Driftwood", + "year": 2006, + "cast": [ + "Raviv Ullman", + "Diamond Dallas Page", + "Talan Torriero" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Disaster Zone: Volcano in New York", + "year": 2006, + "cast": [ + "Costas Mandylor", + "Alexandra Paul", + "Michael Ironside" + ], + "genres": [ + "Disaster" + ] + }, + { + "title": "East Side Story", + "year": 2006, + "cast": [ + "René Alvarado", + "Steve Callahan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Employee of the Month", + "year": 2006, + "cast": [ + "Dane Cook", + "Jessica Simpson", + "Dax Shepard" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Encounter Point", + "year": 2006, + "cast": [ + "violence in", + "Israel", + "between", + "Israelis", + "and", + "Palestinians" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "End Game", + "year": 2006, + "cast": [ + "Cuba Gooding, Jr.", + "James Woods", + "Angie Harmon" + ], + "genres": [ + "Action" + ] + }, + { + "title": "End of the Spear", + "year": 2006, + "cast": [ + "Louie Leonardo", + "Chad Allen", + "Jack Guzman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Eight Below", + "year": 2006, + "cast": [ + "Paul Walker", + "Bruce Greenwood" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Eragon", + "year": 2006, + "cast": [ + "Ed Speleers", + "Jeremy Irons", + "Sienna Guillory", + "Robert Carlyle", + "John Malkovich" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Everyone's Hero", + "year": 2006, + "cast": [ + "Jake T. Austin", + "Rob Reiner", + "William H. Macy" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Evil Bong", + "year": 2006, + "cast": [ + "David Weidoff" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Expiration Date", + "year": 2006, + "cast": [ + "Rober Guthrie" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Facing the Giants", + "year": 2006, + "cast": [ + "Alex Kendrick", + "Shannen Fields", + "Tracy Goode" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Factory Girl", + "year": 2006, + "cast": [ + "Sienna Miller", + "Hayden Christensen", + "Jimmy Fallon" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Failure to Launch", + "year": 2006, + "cast": [ + "Matthew McConaughey", + "Sarah Jessica Parker", + "Terry Bradshaw", + "Kathy Bates" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "The Fall", + "year": 2006, + "cast": [ + "Lee Pace", + "Catinca Untaru", + "Justine Waddell" + ], + "genres": [ + "Fantasy", + "Adventure" + ] + }, + { + "title": "The Fast and the Furious: Tokyo Drift", + "year": 2006, + "cast": [ + "Lucas Black", + "Bow Wow" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Fast Food Nation", + "year": 2006, + "cast": [ + "Greg Kinnear", + "Wilmer Valderrama", + "Avril Lavigne" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Fatwa", + "year": 2006, + "cast": [ + "Lauren Holly", + "Lacey Chabert", + "John Doman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Fay Grim", + "year": 2006, + "cast": [ + "Parker Posey", + "James Urbaniak", + "Liam Aiken" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Fifty Pills", + "year": 2006, + "cast": [ + "Lou Taylor Pucci", + "Kristen Bell", + "John Hensley" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Final Destination 3", + "year": 2006, + "cast": [ + "Mary Elizabeth Winstead", + "Ryan Merriman", + "Kris Lemche", + "Texas Battle" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Find Me Guilty", + "year": 2006, + "cast": [ + "Vin Diesel", + "Linus Roache", + "Ron Silver", + "Alex Rocco", + "Peter Dinklage", + "Annabella Sciorra" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Firewall", + "year": 2006, + "cast": [ + "Harrison Ford", + "Paul Bettany", + "Virginia Madsen", + "Mary Lynn Rajskub" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "First Snow", + "year": 2006, + "cast": [ + "Guy Pearce", + "Piper Perabo", + "J.K. Simmons" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Flags of Our Fathers", + "year": 2006, + "cast": [ + "Ryan Phillippe", + "Jesse Bradford", + "Adam Beach" + ], + "genres": [ + "War" + ] + }, + { + "title": "Flicka", + "year": 2006, + "cast": [ + "Alison Lohman", + "Tim McGraw", + "Maria Bello" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Flock of Dodos", + "year": 2006, + "cast": [ + "the debate between", + "intelligent design", + "and", + "evolution" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Flourish", + "year": 2006, + "cast": [ + "Jennifer Morrison", + "Jesse Spencer", + "Leighton Meester" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Flushed Away", + "year": 2006, + "cast": [ + "Kate Winslet", + "Hugh Jackman", + "Ian McKellen", + "Andy Serkis" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Flyboys", + "year": 2006, + "cast": [ + "James Franco", + "Martin Henderson", + "Jean Reno" + ], + "genres": [ + "War" + ] + }, + { + "title": "For Your Consideration", + "year": 2006, + "cast": [ + "Catherine O'Hara", + "Parker Posey", + "Harry Shearer", + "Eugene Levy", + "Fred Willard", + "Jane Lynch" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Forget About It", + "year": 2006, + "cast": [ + "Burt Reynolds", + "Robert Loggia", + "Charles Durning" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Fountain", + "year": 2006, + "cast": [ + "Hugh Jackman", + "Rachel Weisz", + "Ellen Burstyn" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Freedomland", + "year": 2006, + "cast": [ + "Samuel L. Jackson", + "Julianne Moore" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Free Jimmy", + "year": 2006, + "cast": [ + "Jeremy Price", + "Woody Harrelson", + "Simon Pegg", + "Phil Daniels" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Friends with Money", + "year": 2006, + "cast": [ + "Jennifer Aniston", + "Joan Cusack", + "Catherine Keener", + "Frances McDormand" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Full Grown Men", + "year": 2006, + "cast": [ + "Matt McGrath", + "Judah Friedlander", + "Alan Cumming" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Fur", + "year": 2006, + "cast": [ + "Nicole Kidman", + "Robert Downey, Jr." + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Game 6", + "year": 2006, + "cast": [ + "Michael Keaton", + "Griffin Dunne", + "Robert Downey, Jr." + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Garfield: A Tail of Two Kitties", + "year": 2006, + "cast": [ + "Breckin Meyer", + "Jennifer Love Hewitt", + "Billy Connolly", + "Bill Murray" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Genius Club", + "year": 2006, + "cast": [ + "Stephen Baldwin", + "Tom Sizemore", + "Jack Scalia" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "GI Jesus", + "year": 2006, + "cast": [ + "Joe Arquette" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Glastonbury", + "year": 2006, + "cast": [ + "history of", + "Glastonbury Festival" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Glory Road", + "year": 2006, + "cast": [ + "Josh Lucas", + "Derek Luke", + "Jon Voight" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "God Grew Tired of Us", + "year": 2006, + "cast": [ + "the", + "Lost Boys of Sudan" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Good German", + "year": 2006, + "cast": [ + "George Clooney", + "Cate Blanchett", + "Tobey Maguire" + ], + "genres": [ + "Drama", + "War" + ] + }, + { + "title": "The Good Shepherd", + "year": 2006, + "cast": [ + "Matt Damon", + "Angelina Jolie", + "Robert De Niro", + "Alec Baldwin", + "William Hurt", + "Michael Gambon", + "Timothy Hutton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Good Year", + "year": 2006, + "cast": [ + "Russell Crowe" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Goya's Ghosts", + "year": 2006, + "cast": [ + "Natalie Portman", + "Javier Bardem", + "Stellan Skarsgård" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Grandma's Boy", + "year": 2006, + "cast": [ + "Linda Cardellini", + "Allen Covert", + "Peter Dante", + "Doris Roberts", + "Shirley Jones" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Great Warming", + "year": 2006, + "cast": [ + "climate change" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Gridiron Gang", + "year": 2006, + "cast": [ + "Dwayne Johnson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Groomsmen", + "year": 2006, + "cast": [ + "Edward Burns", + "John Leguizamo", + "Matthew Lillard", + "Donal Logue" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Grudge 2", + "year": 2006, + "cast": [ + "Sarah Michelle Gellar", + "Amber Tamblyn" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Guardian", + "year": 2006, + "cast": [ + "Kevin Costner", + "Ashton Kutcher" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Guatemalan Handshake", + "year": 2006, + "cast": [ + "Katy Haywood" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "A Guide to Recognizing Your Saints", + "year": 2006, + "cast": [ + "Robert Downey, Jr.", + "Shia LaBeouf", + "Chazz Palminteri", + "Dianne Wiest" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Half Nelson", + "year": 2006, + "cast": [ + "Ryan Gosling", + "Shareeka Epps" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Hamiltons", + "year": 2006, + "cast": [ + "Cory Knauf", + "Samuel Child", + "Joseph McKelheer" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Happy Feet", + "year": 2006, + "cast": [ + "Elijah Wood", + "Robin Williams", + "Brittany Murphy", + "Hugh Jackman" + ], + "genres": [ + "Animated", + "Musical" + ] + }, + { + "title": "The Hard Corps", + "year": 2006, + "cast": [ + "Jean-Claude Van Damme", + "Vivica A. Fox", + "Razaaq Adoti" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Harsh Times", + "year": 2006, + "cast": [ + "Christian Bale", + "Freddy Rodríguez", + "Eva Longoria" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Hawk Is Dying", + "year": 2006, + "cast": [ + "Paul Giamatti", + "Michelle Williams" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Header", + "year": 2006, + "cast": [ + "Jake Suffian" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Heart of Steel", + "year": 2006, + "cast": [ + "aftermath of", + "September 11 attacks" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Heart of the Game", + "year": 2006, + "cast": [ + "the", + "Roosevelt Roughriders", + "girls basketball team" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Hills Have Eyes", + "year": 2006, + "cast": [ + "Aaron Stanford", + "Emilie de Ravin", + "Ted Levine", + "Dan Byrd" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Hip-Hop: Beyond Beats and Rhymes", + "year": 2006, + "cast": [ + "violence", + "homophobia", + "and", + "sexism", + "in", + "hip hop" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Holiday", + "year": 2006, + "cast": [ + "Cameron Diaz", + "Kate Winslet", + "Jude Law", + "Jack Black" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Hollywoodland", + "year": 2006, + "cast": [ + "Adrien Brody", + "Diane Lane", + "Ben Affleck" + ], + "genres": [ + "Biography", + "Crime" + ] + }, + { + "title": "Hollow Man 2", + "year": 2006, + "cast": [ + "Christian Slater", + "Peter Facinelli", + "Laura Regan" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Home of the Brave", + "year": 2006, + "cast": [ + "Samuel L. Jackson", + "Jessica Biel", + "Brian Presley", + "50 Cent" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hood of Horror", + "year": 2006, + "cast": [ + "Snoop Dogg", + "Ernie Hudson", + "Danny Trejo" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Hoot", + "year": 2006, + "cast": [ + "Luke Wilson", + "Brie Larson", + "Logan Lerman", + "Cody Linley" + ], + "genres": [ + "Family" + ] + }, + { + "title": "The Hottest State", + "year": 2006, + "cast": [ + "Mark Webber", + "Catalina Sandino Moreno", + "Michelle Williams" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "How to Eat Fried Worms", + "year": 2006, + "cast": [ + "Luke Benward", + "Adam Hicks" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hurricane on the Bayou", + "year": 2006, + "cast": [ + "wetlands of Louisiana", + "and", + "Hurricane Katrina" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "I Want Someone to Eat Cheese With", + "year": 2006, + "cast": [ + "Jeff Garlin", + "Sarah Silverman", + "Bonnie Hunt" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Ice Age: The Meltdown", + "year": 2006, + "cast": [ + "Ray Romano", + "John Leguizamo", + "Denis Leary", + "Queen Latifah" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Idiocracy", + "year": 2006, + "cast": [ + "Luke Wilson", + "Maya Rudolph" + ], + "genres": [ + "Comedy", + "Science Fiction" + ] + }, + { + "title": "Idlewild", + "year": 2006, + "cast": [ + "André Benjamin", + "Big Boi" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Illusionist", + "year": 2006, + "cast": [ + "Edward Norton", + "Paul Giamatti", + "Jessica Biel" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "An Inconvenient Truth", + "year": 2006, + "cast": [ + "global warming" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Infamous", + "year": 2006, + "cast": [ + "Toby Jones", + "Sandra Bullock", + "Daniel Craig", + "Lee Pace", + "Jeff Daniels", + "Hope Davis", + "Sigourney Weaver" + ], + "genres": [ + "Biography", + "Crime" + ] + }, + { + "title": "Inland Empire", + "year": 2006, + "cast": [ + "Laura Dern", + "Jeremy Irons", + "Justin Theroux", + "Harry Dean Stanton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Inside Man", + "year": 2006, + "cast": [ + "Denzel Washington", + "Clive Owen", + "Jodie Foster" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Insurgents", + "year": 2006, + "cast": [ + "John Shea", + "Mary Stuart Masterson", + "Juliette Marquis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Invincible", + "year": 2006, + "cast": [ + "Mark Wahlberg", + "Elizabeth Banks" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Interkosmos", + "year": 2006, + "cast": [ + "Dean DeMatteis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Iraq for Sale: The War Profiteers", + "year": 2006, + "cast": [ + "Iraq War", + "companies with", + "no-bid contracts" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Iraq in Fragments", + "year": 2006, + "cast": [ + "the effects of the", + "Iraq War", + "on", + "Iraq" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Irish Jam", + "year": 2006, + "cast": [ + "Eddie Griffin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Jackass Number Two", + "year": 2006, + "cast": [ + "Johnny Knoxville", + "Steve-O", + "Bam Margera", + "Chris Pontius" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Jack Smith and the Destruction of Atlantis", + "year": 2006, + "cast": [ + "Jack Smith" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Jesus Camp", + "year": 2006, + "cast": [ + "a", + "Pentecostal", + "–", + "Charismatic Christian", + "summer camp" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Jewish American Princess", + "year": 2006, + "cast": [ + "search for perfect Jewish man" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Jimmy and Judy", + "year": 2006, + "cast": [ + "Edward Furlong", + "Rachael Bella" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "John Tucker Must Die", + "year": 2006, + "cast": [ + "Jesse Metcalfe", + "Brittany Snow", + "Ashanti", + "Sophia Bush", + "Arielle Kebbel", + "Jenny McCarthy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Jonestown: The Life and Death of Peoples Temple", + "year": 2006, + "cast": [ + "mass suicide", + "of", + "Peoples Temple", + "and leader", + "Jim Jones" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Just My Luck", + "year": 2006, + "cast": [ + "Lindsay Lohan", + "Chris Pine" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Kalamazoo?", + "year": 2006, + "cast": [ + "Josie Davis", + "Mayim Bialik" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Karla", + "year": 2006, + "cast": [ + "Laura Prepon", + "Misha Collins" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Keeping Up with the Steins", + "year": 2006, + "cast": [ + "Daryl Sabara", + "Jami Gertz", + "Jeremy Piven" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Kill Your Darlings", + "year": 2006, + "cast": [ + "Lolita Davidovich", + "Andreas Wilson", + "Fares Fares" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Kurt Cobain About a Son", + "year": 2006, + "cast": [ + "life and music of", + "Kurt Cobain" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Lady in the Water", + "year": 2006, + "cast": [ + "Paul Giamatti", + "Bryce Dallas Howard" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Lake House", + "year": 2006, + "cast": [ + "Keanu Reeves", + "Sandra Bullock" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Land of the Blind", + "year": 2006, + "cast": [ + "Donald Sutherland", + "Ralph Fiennes" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Larry the Cable Guy: Health Inspector", + "year": 2006, + "cast": [ + "Larry the Cable Guy", + "Iris Bahr", + "Bruce Bruce" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Last Kiss", + "year": 2006, + "cast": [ + "Zach Braff", + "Jacinda Barrett", + "Rachel Bilson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Last Holiday", + "year": 2006, + "cast": [ + "Queen Latifah", + "LL Cool J", + "Timothy Hutton", + "Gérard Depardieu" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Last Winter", + "year": 2006, + "cast": [ + "Ron Perlman", + "James LeGros", + "Connie Britton" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Legend of Simon Conjurer", + "year": 2006, + "cast": [ + "Jon Voight" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Let's Go to Prison", + "year": 2006, + "cast": [ + "Will Arnett", + "Dax Shepard", + "Chi McBride" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Letters from Iwo Jima", + "year": 2006, + "cast": [ + "Ken Watanabe", + "Kazunari Ninomiya", + "Tsuyoshi Ihara", + "Ryō Kase" + ], + "genres": [ + "War" + ] + }, + { + "title": "Lime Salted Love", + "year": 2006, + "cast": [ + "Kristanna Loken" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Little Chenier", + "year": 2006, + "cast": [ + "Johnathon Schaech", + "Frederick Koehler", + "Tamara Braun" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Little Children", + "year": 2006, + "cast": [ + "Kate Winslet", + "Patrick Wilson", + "Jennifer Connelly", + "Jackie Earle Haley" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Little Man", + "year": 2006, + "cast": [ + "Marlon Wayans", + "Shawn Wayans", + "Kerry Washington" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Little Miss Sunshine", + "year": 2006, + "cast": [ + "Greg Kinnear", + "Steve Carell", + "Toni Collette", + "Paul Dano", + "Abigail Breslin", + "Alan Arkin" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Live Freaky! Die Freaky!", + "year": 2006, + "cast": [ + "Jason Schmidt", + "Tim Armstrong" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Live Free or Die", + "year": 2006, + "cast": [ + "Aaron Stanford", + "Paul Schneider", + "Michael Rapaport" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Local Color", + "year": 2006, + "cast": [ + "Armin Mueller-Stahl", + "Trevor Morgan", + "Ray Liotta" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "LOL", + "year": 2006, + "cast": [ + "Kevin Bewersdorf", + "Joe Swanberg" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Lonely Hearts", + "year": 2006, + "cast": [ + "John Travolta", + "Salma Hayek", + "Jared Leto", + "James Gandolfini" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Long Weekend", + "year": 2006, + "cast": [ + "Chris Klein", + "Brendan Fehr" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Loren Cass", + "year": 2006, + "cast": [ + "Kayla Tabish", + "Travis Maynard", + "Lewis Brogan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Loving Annabelle", + "year": 2006, + "cast": [ + "Diane Gaidry", + "Erin Kelly" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Lucky Number Slevin", + "year": 2006, + "cast": [ + "Josh Hartnett", + "Morgan Freeman", + "Ben Kingsley", + "Lucy Liu", + "Stanley Tucci", + "Bruce Willis" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Mad Cowgirl", + "year": 2006, + "cast": [ + "Sarah Lassez", + "James Duval", + "Walter Koenig" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Madea's Family Reunion", + "year": 2006, + "cast": [ + "Tyler Perry", + "Blair Underwood", + "Lynn Whitfield", + "Boris Kodjoe" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Man About Town", + "year": 2006, + "cast": [ + "Ben Affleck", + "Rebecca Romijn", + "John Cleese", + "Jerry O'Connell", + "Gina Gershon", + "Bai Ling" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Man of the Year", + "year": 2006, + "cast": [ + "Robin Williams", + "Laura Linney" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Marie Antoinette", + "year": 2006, + "cast": [ + "Kirsten Dunst", + "Jason Schwartzman", + "Judy Davis" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "The Marine", + "year": 2006, + "cast": [ + "John Cena", + "Kelly Carlson", + "Robert Patrick" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Mark of the Damned", + "year": 2006, + "cast": [], + "genres": [ + "Horror" + ] + }, + { + "title": "Material Girls", + "year": 2006, + "cast": [ + "Hilary Duff", + "Haylie Duff", + "Anjelica Huston" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Matthew Barney: No Restraint", + "year": 2006, + "cast": [ + "filmmaking process of", + "Matthew Barney", + "Björk" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Maxed Out", + "year": 2006, + "cast": [ + "the", + "credit card", + "industry" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Miami Vice", + "year": 2006, + "cast": [ + "Jamie Foxx", + "Colin Farrell", + "Gong Li" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Mini's First Time", + "year": 2006, + "cast": [ + "Alec Baldwin", + "Nikki Reed", + "Luke Wilson" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Minotaur", + "year": 2006, + "cast": [ + "Tom Hardy", + "Tony Todd", + "Rutger Hauer" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Miss Potter", + "year": 2006, + "cast": [ + "Renée Zellweger", + "Ewan McGregor", + "Emily Watson" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Modern Man", + "year": 2006, + "cast": [ + "Eric Becker" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Monster House", + "year": 2006, + "cast": [ + "Mitchel Musso", + "Sam Lerner", + "Spencer Locke", + "Steve Buscemi" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "The Monster of Phantom Lake", + "year": 2006, + "cast": [ + "Josh Craig" + ], + "genres": [ + "Horror", + "Comedy" + ] + }, + { + "title": "Moonshine", + "year": 2006, + "cast": [ + "Brian Greer" + ], + "genres": [ + "Horror", + "Comedy" + ] + }, + { + "title": "Mustang Sally", + "year": 2006, + "cast": [ + "Elizabeth Daily", + "Mark Anthony Parrish" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "My Country, My Country", + "year": 2006, + "cast": [ + "the life of Iraqis under American occupation" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Mission: Impossible III", + "year": 2006, + "cast": [ + "Tom Cruise", + "Jonathan Rhys Meyers", + "Philip Seymour Hoffman", + "Ving Rhames" + ], + "genres": [ + "Action", + "Spy" + ] + }, + { + "title": "My Super Ex-Girlfriend", + "year": 2006, + "cast": [ + "Uma Thurman", + "Luke Wilson", + "Anna Faris" + ], + "genres": [ + "Superhero" + ] + }, + { + "title": "Nacho Libre", + "year": 2006, + "cast": [ + "Jack Black" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "National Lampoon's Van Wilder: The Rise of Taj", + "year": 2006, + "cast": [ + "Kal Penn", + "Glen Barry", + "Lauren Cohan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Nativity Story", + "year": 2006, + "cast": [ + "Keisha Castle-Hughes", + "Shohreh Aghdashloo" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Neil Young: Heart of Gold", + "year": 2006, + "cast": [ + "Neil Young" + ], + "genres": [ + "Performance" + ] + }, + { + "title": "Night at the Museum", + "year": 2006, + "cast": [ + "Ben Stiller", + "Robin Williams", + "Owen Wilson", + "Dick Van Dyke", + "Mickey Rooney", + "Carla Gugino", + "Jake Cherry" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "The Night Listener", + "year": 2006, + "cast": [ + "Robin Williams", + "Toni Collette", + "Bobby Cannavale", + "Sandra Oh" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Night of the Living Dead 3D", + "year": 2006, + "cast": [ + "Brianna Brown" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Night of the White Pants", + "year": 2006, + "cast": [ + "Tom Wilkinson", + "Selma Blair", + "Nick Stahl" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Nightmare Man", + "year": 2006, + "cast": [ + "Gwen Davis" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "No Limit", + "year": 2006, + "cast": [ + "the professional", + "poker", + "tournament circuit" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "O Jerusalem", + "year": 2006, + "cast": [ + "JJ Feild", + "Saïd Taghmaoui" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Occupation 101", + "year": 2006, + "cast": [ + "the", + "Israeli–Palestinian conflict" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Oh in Ohio", + "year": 2006, + "cast": [ + "Parker Posey", + "Paul Rudd", + "Danny DeVito", + "Mischa Barton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Old Joy", + "year": 2006, + "cast": [ + "Will Oldham", + "Daniel London" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Omen", + "year": 2006, + "cast": [ + "Liev Schreiber", + "Julia Stiles", + "Seamus Davey-Fitzpatrick", + "David Thewlis", + "Mia Farrow" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Once in a Lifetime: The Extraordinary Story of the New York Cosmos", + "year": 2006, + "cast": [ + "Matt Dillon", + "(narrator)", + "Pelé", + "Giorgio Chinaglia" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "One Night with the King", + "year": 2006, + "cast": [ + "Tiffany Dupont" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The One Percent", + "year": 2006, + "cast": [ + "America's growing wealth gap" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Open Season", + "year": 2006, + "cast": [ + "Martin Lawrence", + "Ashton Kutcher", + "Debra Messing", + "Gary Sinise" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Over the Hedge", + "year": 2006, + "cast": [ + "Bruce Willis", + "Garry Shandling", + "Steve Carell", + "Wanda Sykes", + "Nick Nolte" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "The Painted Veil", + "year": 2006, + "cast": [ + "Naomi Watts", + "Edward Norton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Pan's Labyrinth", + "year": 2006, + "cast": [ + "Ivana Baquero", + "Doug Jones", + "Sergi López" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Paper Dolls", + "year": 2006, + "cast": [ + "transgender", + "migrant workers", + "from", + "Philippines" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Park", + "year": 2006, + "cast": [ + "William Baldwin", + "Ricki Lake", + "Cheri Oteri" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Peaceful Warrior", + "year": 2006, + "cast": [ + "Scott Mechlowicz", + "Nick Nolte", + "Amy Smart" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Penelope", + "year": 2006, + "cast": [ + "Christina Ricci", + "James McAvoy", + "Catherine O'Hara", + "Reese Witherspoon" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Perfume: The Story of a Murderer", + "year": 2006, + "cast": [ + "Ben Whishaw", + "Dustin Hoffman", + "Alan Rickman" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Phat Girlz", + "year": 2006, + "cast": [ + "Mo'Nique" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Phobic", + "year": 2006, + "cast": [ + "Courtney Gains", + "Juliette Marquis", + "Eric Millegan" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Pink Panther", + "year": 2006, + "cast": [ + "Steve Martin", + "Beyoncé Knowles", + "Kevin Kline", + "Kristin Chenoweth" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Pirates of the Caribbean: Dead Man's Chest", + "year": 2006, + "cast": [ + "Johnny Depp", + "Orlando Bloom", + "Keira Knightley", + "Geoffrey Rush" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Poseidon", + "year": 2006, + "cast": [ + "Josh Lucas", + "Kurt Russell", + "Richard Dreyfuss", + "Kevin Dillon", + "Freddy Rodríguez", + "Emmy Rossum", + "Mike Vogel", + "Jacinda Barrett", + "Andre Braugher" + ], + "genres": [ + "Disaster" + ] + }, + { + "title": "Poultrygeist: Night of the Chicken Dead", + "year": 2006, + "cast": [ + "Jason Yachanin" + ], + "genres": [ + "Horror", + "Comedy" + ] + }, + { + "title": "The Power of Community: How Cuba Survived Peak Oil", + "year": 2006, + "cast": [ + "the economic collapse and recovery of", + "Cuba", + "following the", + "fall of the Soviet Union", + "in 1991" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Premium", + "year": 2006, + "cast": [ + "Dorian Missick", + "Zoe Saldana", + "Hill Harper" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Prisoner or: How I Planned to Kill Tony Blair", + "year": 2006, + "cast": [ + "the detainment and accusation of", + "Yunis Khatayer Abbas" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "A Prairie Home Companion", + "year": 2006, + "cast": [ + "Garrison Keillor", + "Woody Harrelson", + "Tommy Lee Jones", + "Kevin Kline", + "Lindsay Lohan", + "Meryl Streep" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "The Prestige", + "year": 2006, + "cast": [ + "Hugh Jackman", + "Christian Bale", + "Scarlett Johansson", + "Michael Caine", + "Rebecca Hall", + "David Bowie" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Puff, Puff, Pass", + "year": 2006, + "cast": [ + "Danny Masterson", + "Ronnie Warner", + "Mekhi Phifer" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Pulse", + "year": 2006, + "cast": [ + "Kristen Bell", + "Ian Somerhalder", + "Christina Milian", + "Rick Gonzalez" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Pursuit of Happyness", + "year": 2006, + "cast": [ + "Will Smith", + "Jaden Smith" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "The Quick and the Undead", + "year": 2006, + "cast": [ + "Clint Glenn" + ], + "genres": [ + "Horror", + "Western" + ] + }, + { + "title": "Quick Pick", + "year": 2006, + "cast": [ + "John Bryant" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Quinceañera", + "year": 2006, + "cast": [ + "Emily Rios", + "Jesse Garcia", + "David W. Ross" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Rape of the Sabine Women", + "year": 2006, + "cast": [ + "Nina Adamopoulou" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Relative Strangers", + "year": 2006, + "cast": [ + "Ron Livingston", + "Danny DeVito", + "Neve Campbell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Return", + "year": 2006, + "cast": [ + "Sarah Michelle Gellar", + "Peter O'Brien", + "Adam Scott" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Right at Your Door", + "year": 2006, + "cast": [ + "Mary McCormack", + "Rory Cochrane" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Robotech: The Shadow Chronicles", + "year": 2006, + "cast": [ + "Richard Epcar", + "Eddie Frierson", + "Mark Hamill" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Rocky Balboa", + "year": 2006, + "cast": [ + "Sylvester Stallone", + "Burt Young", + "Geraldine Hughes", + "Milo Ventimiglia", + "Antonio Tarver", + "Tony Burton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Roman", + "year": 2006, + "cast": [ + "Lucky McKee", + "Kristen Bell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Romeo & Juliet: Sealed with a Kiss", + "year": 2006, + "cast": [ + "Daniel Trippett", + "Patricia Trippett" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Room 6", + "year": 2006, + "cast": [ + "Christine Taylor", + "Jerry O'Connell", + "Shane Brolly" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Rune", + "year": 2006, + "cast": [ + "Anna Bäumer", + "Bill Wise" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Running Scared", + "year": 2006, + "cast": [ + "Paul Walker" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Running with Scissors", + "year": 2006, + "cast": [ + "Annette Bening", + "Brian Cox", + "Joseph Fiennes" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "RV", + "year": 2006, + "cast": [ + "Robin Williams", + "Jeff Daniels", + "Cheryl Hines", + "Kristin Chenoweth", + "JoJo", + "Josh Hutcherson" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "...So Goes the Nation", + "year": 2006, + "cast": [ + "the", + "2004 Presidential Election of the United States" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Sacco and Vanzetti", + "year": 2006, + "cast": [ + "trial of", + "Nicola Sacco and Bartolomeo Vanzetti" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Santa Clause 3: The Escape Clause", + "year": 2006, + "cast": [ + "Tim Allen", + "Martin Short" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "The Sasquatch Gang", + "year": 2006, + "cast": [ + "Jeremy Sumpter", + "Justin Long", + "Joey Kern" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Saving Shiloh", + "year": 2006, + "cast": [ + "Scott Wilson", + "Gerald McRaney" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Saw III", + "year": 2006, + "cast": [ + "Tobin Bell", + "Shawnee Smith", + "Angus Macfadyen", + "Bahar Soomekh" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "A Scanner Darkly", + "year": 2006, + "cast": [ + "Keanu Reeves", + "Robert Downey, Jr.", + "Woody Harrelson", + "Winona Ryder" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Scary Movie 4", + "year": 2006, + "cast": [ + "Anna Faris", + "Regina Hall", + "Craig Bierko", + "Bill Pullman" + ], + "genres": [ + "Comedy", + "Satire" + ] + }, + { + "title": "School for Scoundrels", + "year": 2006, + "cast": [ + "Billy Bob Thornton", + "Jon Heder" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Scoop", + "year": 2006, + "cast": [ + "Scarlett Johansson", + "Hugh Jackman", + "Woody Allen", + "Ian McShane" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Scott Walker: 30 Century Man", + "year": 2006, + "cast": [ + "the career of", + "Scott Walker" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Second Chance", + "year": 2006, + "cast": [ + "Michael W. Smith", + "Jeff Obafemi Carr" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Secret of the Cave", + "year": 2006, + "cast": [ + "Patrick Bergin", + "Joseph Kelly" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "See No Evil", + "year": 2006, + "cast": [ + "Glenn Jacobs", + "Christina Vidal", + "Samantha Noble" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Sentinel", + "year": 2006, + "cast": [ + "Michael Douglas", + "Kiefer Sutherland", + "Eva Longoria", + "Kim Basinger" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Shaggy Dog", + "year": 2006, + "cast": [ + "Tim Allen", + "Kristin Davis", + "Spencer Breslin", + "Danny Glover", + "Robert Downey, Jr." + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Shark Bait", + "year": 2006, + "cast": [ + "Freddie Prinze, Jr." + ], + "genres": [ + "Animated" + ] + }, + { + "title": "She's the Man", + "year": 2006, + "cast": [ + "Amanda Bynes", + "Channing Tatum" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Sherrybaby", + "year": 2006, + "cast": [ + "Maggie Gyllenhaal", + "Brad William Henke", + "Sam Bottoms" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Shortbus", + "year": 2006, + "cast": [ + "Sook-Yin Lee" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Shottas", + "year": 2006, + "cast": [ + "Ky-Mani Marley", + "Spragga Benz" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Silent Hill", + "year": 2006, + "cast": [ + "Radha Mitchell", + "Sean Bean", + "Laurie Holden", + "Jodelle Ferland" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Simon Says", + "year": 2006, + "cast": [ + "Crispin Glover", + "Margo Harshman" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Sleeping Dogs Lie", + "year": 2006, + "cast": [ + "Melinda Page Hamilton", + "Bryce Johnson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Slither", + "year": 2006, + "cast": [ + "Nathan Fillion", + "Elizabeth Banks", + "Michael Rooker" + ], + "genres": [ + "Horror", + "Comedy" + ] + }, + { + "title": "Small Town Gay Bar", + "year": 2006, + "cast": [ + "gay bars in rural", + "Southeast United States" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Snakes on a Plane", + "year": 2006, + "cast": [ + "Samuel L. Jackson", + "Julianna Margulies", + "Taylor Kitsch", + "Kenan Thompson" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Snow Blind", + "year": 2006, + "cast": [ + "history", + "lifestyle of", + "snowboarding" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "So Much So Fast", + "year": 2006, + "cast": [ + "the life of", + "Stephen Heywood" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Something New", + "year": 2006, + "cast": [ + "Sanaa Lathan", + "Simon Baker", + "Mike Epps", + "Donald Faison" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sonhos de Peixe", + "year": 2006, + "cast": [ + "José Maria Alves", + "Phellipe Haagensen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Special", + "year": 2006, + "cast": [ + "Michael Rapaport" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Stalking Santa", + "year": 2006, + "cast": [ + "Daryn Tufts", + "William Shatner" + ], + "genres": [ + "Satire" + ] + }, + { + "title": "Starter for 10", + "year": 2006, + "cast": [ + "James McAvoy", + "Alice Eve", + "Rebecca Hall" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Stay Alive", + "year": 2006, + "cast": [ + "Jon Foster", + "Samaire Armstrong", + "Frankie Muniz", + "Sophia Bush", + "Jimmie Simpson" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Step Up", + "year": 2006, + "cast": [ + "Channing Tatum", + "Jenna Dewan" + ], + "genres": [ + "Dance" + ] + }, + { + "title": "Stephanie Daley", + "year": 2006, + "cast": [ + "Amber Tamblyn", + "Tilda Swinton", + "Timothy Hutton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Stick It", + "year": 2006, + "cast": [ + "Jeff Bridges", + "Missy Peregrym" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Stranger Than Fiction", + "year": 2006, + "cast": [ + "Will Ferrell", + "Emma Thompson" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Stormbreaker", + "year": 2006, + "cast": [ + "Alex Pettyfer", + "Ewan McGregor" + ], + "genres": [ + "Spy" + ] + }, + { + "title": "Strawberry Shortcake: The Sweet Dreams Movie", + "year": 2006, + "cast": [ + "Sarah Heinke" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Subject Two", + "year": 2006, + "cast": [ + "Christian Oliver", + "Dean Stapleton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Suicide Killers", + "year": 2006, + "cast": [ + "the motivations of a", + "suicide bomber" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Superman Returns", + "year": 2006, + "cast": [ + "Brandon Routh", + "Kate Bosworth", + "Kevin Spacey", + "Frank Langella", + "James Marsden", + "Eva Marie Saint" + ], + "genres": [ + "Superhero" + ] + }, + { + "title": "Swarm of the Snakehead", + "year": 2006, + "cast": [ + "Gunnar Hansen", + "Frank A. Lama", + "Jamie O'Brien" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Sweet Insanity", + "year": 2006, + "cast": [ + "Rebekah Isaacs", + "Mackenzie Firgens" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Take the Lead", + "year": 2006, + "cast": [ + "Antonio Banderas" + ], + "genres": [ + "Drama", + "Dance" + ] + }, + { + "title": "Talladega Nights: The Ballad of Ricky Bobby", + "year": 2006, + "cast": [ + "Will Ferrell", + "John C. Reilly", + "Sacha Baron Cohen" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Teddy Bear Master", + "year": 2006, + "cast": [ + "Isaac Imel" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Tenacious D in The Pick of Destiny", + "year": 2006, + "cast": [ + "Jack Black", + "Kyle Gass" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Texas Chainsaw Massacre: The Beginning", + "year": 2006, + "cast": [ + "Jordana Brewster", + "Taylor Handley" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Thank You for Smoking", + "year": 2006, + "cast": [ + "Aaron Eckhart", + "Cameron Bright", + "Maria Bello", + "David Koechner" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "This Film Is Not Yet Rated", + "year": 2006, + "cast": [ + "Motion Picture Association of America", + "rating system" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Threat", + "year": 2006, + "cast": [ + "Carlos Puga", + "Katie Nisa" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Tomorrow Is Today", + "year": 2006, + "cast": [ + "Scout Taylor-Compton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Trantasia", + "year": 2006, + "cast": [ + "first \"World's Most Beautiful Transsexual Pageant\"" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Tristan & Isolde", + "year": 2006, + "cast": [ + "James Franco", + "Sophia Myles", + "Rufus Sewell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Trust the Man", + "year": 2006, + "cast": [ + "Billy Crudup", + "David Duchovny", + "Maggie Gyllenhaal" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Turistas", + "year": 2006, + "cast": [ + "Josh Duhamel", + "Melissa George", + "Olivia Wilde" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Two Weeks", + "year": 2006, + "cast": [ + "Sally Field", + "Ben Chaplin" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The U.S. vs. John Lennon", + "year": 2006, + "cast": [ + "the transformation of", + "John Lennon", + "from a member of", + "The Beatles", + "to an", + "anti-war", + "activist" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Ultraviolet", + "year": 2006, + "cast": [ + "Milla Jovovich", + "Cameron Bright", + "Nick Chinlund", + "William Fichtner" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Unaccompanied Minors", + "year": 2006, + "cast": [ + "Lewis Black", + "Wilmer Valderrama", + "Tyler James Williams" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Underworld: Evolution", + "year": 2006, + "cast": [ + "Kate Beckinsale", + "Scott Speedman", + "Tony Curran" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Undoing", + "year": 2006, + "cast": [ + "Sung Kang", + "Tom Bower", + "Russell Wong" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Unidentified", + "year": 2006, + "cast": [ + "Jonathan Aube" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "United 93", + "year": 2006, + "cast": [ + "see Cast" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Unrest", + "year": 2006, + "cast": [ + "Corri English" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "V for Vendetta", + "year": 2006, + "cast": [ + "Natalie Portman", + "Hugo Weaving", + "Stephen Rea", + "John Hurt" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Vacationland", + "year": 2006, + "cast": [ + "Brad Hallowell", + "Gregory J. Lucas" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Vanaja", + "year": 2006, + "cast": [ + "Mamatha Bhukya" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Waist Deep", + "year": 2006, + "cast": [ + "Tyrese Gibson", + "Meagan Good", + "Larenz Tate", + "The Game" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The War Tapes", + "year": 2006, + "cast": [ + "the", + "2003 invasion of Iraq", + "in the prospective of the soldiers" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "We Are Marshall", + "year": 2006, + "cast": [ + "Matthew McConaughey", + "Matthew Fox", + "Anthony Mackie" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "When a Stranger Calls", + "year": 2006, + "cast": [ + "Camilla Belle" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "When I Came Home", + "year": 2006, + "cast": [ + "the", + "homeless veterans in the United States" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Who Killed the Electric Car?", + "year": 2006, + "cast": [ + "the creation", + "commercialization", + "and destruction of the", + "battery electric vehicle" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Wicked Little Things", + "year": 2006, + "cast": [ + "Lori Heuring", + "Scout Taylor-Compton", + "Chloë Grace Moretz" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Wicker Man", + "year": 2006, + "cast": [ + "Nicolas Cage", + "Ellen Burstyn", + "Kate Beahan", + "Frances Conroy", + "Leelee Sobieski", + "Molly Parker", + "Diane Delano" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Wild", + "year": 2006, + "cast": [ + "Kiefer Sutherland", + "James Belushi" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "The Woods", + "year": 2006, + "cast": [ + "Agnes Bruckner", + "Patricia Clarkson" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Wordplay", + "year": 2006, + "cast": [ + "Will Shortz", + "Bill Clinton", + "Jon Stewart" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "World Trade Center", + "year": 2006, + "cast": [ + "Nicolas Cage", + "Michael Peña", + "Maggie Gyllenhaal", + "Maria Bello" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Wristcutters: A Love Story", + "year": 2006, + "cast": [ + "Patrick Fugit", + "Shannyn Sossamon", + "Tom Waits" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "X-Men: The Last Stand", + "year": 2006, + "cast": [ + "Hugh Jackman", + "Halle Berry", + "Patrick Stewart", + "Ian McKellen", + "Famke Janssen", + "James Marsden", + "Anna Paquin", + "Kelsey Grammer" + ], + "genres": [ + "Superhero" + ] + }, + { + "title": "Yellow", + "year": 2006, + "cast": [ + "Roselyn Sánchez", + "Bill Duke", + "D. B. Sweeney" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Yeti: A Love Story", + "year": 2006, + "cast": [ + "Adam Malamut", + "Eric Gosselin", + "Laura Glascott", + "Loren Mash", + "Dave Paige" + ], + "genres": [ + "Romance", + "Horror" + ] + }, + { + "title": "You, Me and Dupree", + "year": 2006, + "cast": [ + "Owen Wilson", + "Kate Hudson", + "Matt Dillon", + "Michael Douglas" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Zoom", + "year": 2006, + "cast": [ + "Tim Allen", + "Courteney Cox" + ], + "genres": [ + "Superhero" + ] + }, + { + "title": "Zyzzyx Road", + "year": 2006, + "cast": [ + "Leo Grillo", + "Katherine Heigl", + "Tom Sizemore" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "10 MPH", + "year": 2007, + "cast": [ + "Josh Caldwell's trip across the United States on his", + "Segway HT" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The 11th Hour", + "year": 2007, + "cast": [ + "The state of the", + "natural environment", + ". Narrated by", + "Leonardo DiCaprio", + "." + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "1408", + "year": 2007, + "cast": [ + "John Cusack", + "Samuel L. Jackson" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "3:10 to Yuma", + "year": 2007, + "cast": [ + "Russell Crowe", + "Christian Bale" + ], + "genres": [ + "Western" + ] + }, + { + "title": "30 Days of Night", + "year": 2007, + "cast": [ + "Josh Hartnett", + "Ben Foster", + "Melissa George" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "300", + "year": 2007, + "cast": [ + "Gerard Butler", + "Lena Headey", + "David Wenham" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Across the Universe", + "year": 2007, + "cast": [ + "Jim Sturgess", + "Evan Rachel Wood", + "Joe Anderson" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Adrift in Manhattan", + "year": 2007, + "cast": [ + "Heather Graham", + "Victor Rasuk", + "Dominic Chianese", + "William Baldwin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Adventures of Johnny Tao", + "year": 2007, + "cast": [ + "Matthew Twining", + "Chris Yen", + "Matt Mullins", + "Kelly Perine", + "James Hong", + "Jason London" + ], + "genres": [ + "Martial Arts", + "Horror", + "Comedy" + ] + }, + { + "title": "Afghan Knights", + "year": 2007, + "cast": [ + "Steve Bacic", + "Michael Madsen", + "Colin Lawrence", + "Steven Cree Molison", + "Chris Kramer", + "Pete Antico" + ], + "genres": [ + "War", + "Horror" + ] + }, + { + "title": "After Sex", + "year": 2007, + "cast": [ + "Jane Seymour", + "Natalie Marston", + "Zoe Saldana", + "Mila Kunis", + "John Witherspoon" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Alibi", + "year": 2007, + "cast": [ + "Lisa Crosato", + "Marie Zielcke", + "Joe Estevez", + "Tim Colceri", + "Peter Franzén", + "Gem Silver" + ], + "genres": [ + "Crime", + "Drama", + "Mystery", + "Romance", + "Thriller" + ] + }, + { + "title": "Alice Upside Down", + "year": 2007, + "cast": [ + "Alyson Stoner", + "Lucas Grabeel", + "Luke Perry", + "Penny Marshall", + "Ashley Drane", + "Parker McKenna Posey" + ], + "genres": [ + "Adventure", + "Comedy", + "Drama", + "Family" + ] + }, + { + "title": "Aliens vs. Predator: Requiem", + "year": 2007, + "cast": [ + "Steven Pasquale", + "Reiko Aylesworth", + "John Ortiz", + "Johnny Lewis", + "Ariel Gade" + ], + "genres": [ + "Action", + "Horror" + ] + }, + { + "title": "All the Days Before Tomorrow", + "year": 2007, + "cast": [ + "Joey Kern", + "Alexandra Holden", + "Richard Roundtree", + "Yutaka Takeuchi", + "Luis Chávez" + ], + "genres": [ + "Comedy", + "Drama", + "Romance" + ] + }, + { + "title": "Alvin and the Chipmunks", + "year": 2007, + "cast": [ + "Jason Lee", + "Ross Bagdasarian Jr.", + "Janice Karman", + "David Cross", + "Justin Long", + "Matthew Gray Gubler", + "Jesse McCartney" + ], + "genres": [ + "Family", + "Musical" + ] + }, + { + "title": "An American Crime", + "year": 2007, + "cast": [ + "Ellen Page", + "Catherine Keener" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "American Gangster", + "year": 2007, + "cast": [ + "Denzel Washington", + "Russell Crowe" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "American Pastime", + "year": 2007, + "cast": [ + "Gary Cole", + "Aaron Yoo" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Americanizing Shelley", + "year": 2007, + "cast": [ + "Beau Bridges", + "Namrata Singh Gujral" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Anamorph", + "year": 2007, + "cast": [ + "Willem Dafoe", + "Scott Speedman" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Aqua Teen Hunger Force Colon Movie Film for Theaters", + "year": 2007, + "cast": [ + "Dana Snyder", + "Carey Means" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Arctic Tale", + "year": 2007, + "cast": [ + "The life cycle of a", + "walrus", + "and a", + "polar bear", + ". Narrated by", + "Queen Latifah", + "." + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Are We Done Yet?", + "year": 2007, + "cast": [ + "Ice Cube", + "Nia Long", + "John C. McGinley", + "Aleisha Allen" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Assassination of Jesse James by the Coward Robert Ford", + "year": 2007, + "cast": [ + "Brad Pitt", + "Casey Affleck", + "Sam Rockwell", + "Sam Shepard", + "Mary-Louise Parker", + "Zooey Deschanel", + "Paul Schneider", + "Jeremy Renner" + ], + "genres": [ + "Biography", + "Western" + ] + }, + { + "title": "August Rush", + "year": 2007, + "cast": [ + "Freddie Highmore", + "Jonathan Rhys Meyers", + "Keri Russell", + "Terrence Howard", + "Robin Williams" + ], + "genres": [ + "Family", + "Musical" + ] + }, + { + "title": "Autism: The Musical", + "year": 2007, + "cast": [ + "Six months in the lives of five children with", + "autism", + "in Los Angeles" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Awake", + "year": 2007, + "cast": [ + "Hayden Christensen", + "Jessica Alba", + "Lena Olin", + "Arliss Howard", + "Terrence Howard" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Balls of Fury", + "year": 2007, + "cast": [ + "Dan Fogler", + "Christopher Walken", + "George Lopez", + "Maggie Q", + "Thomas Lennon", + "Robert Patrick", + "Terry Crews" + ], + "genres": [ + "Comedy", + "Sports" + ] + }, + { + "title": "Because I Said So", + "year": 2007, + "cast": [ + "Diane Keaton", + "Mandy Moore", + "Lauren Graham", + "Piper Perabo" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Bee Movie", + "year": 2007, + "cast": [ + "Jerry Seinfeld", + "Renée Zellweger", + "Matthew Broderick" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Before the Devil Knows You're Dead", + "year": 2007, + "cast": [ + "Philip Seymour Hoffman", + "Ethan Hawke", + "Albert Finney", + "Marisa Tomei" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Believe", + "year": 2007, + "cast": [ + "Larry Bagby" + ], + "genres": [ + "Satire" + ] + }, + { + "title": "Beowulf", + "year": 2007, + "cast": [ + "Ray Winstone", + "Anthony Hopkins", + "John Malkovich", + "Robin Wright Penn", + "Angelina Jolie" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Beyond Belief", + "year": 2007, + "cast": [ + "the humanitarian programs begun by", + "Susan Retik", + "and", + "Patti Quigley" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Big Stan", + "year": 2007, + "cast": [ + "Rob Schneider", + "David Carradine", + "M. Emmet Walsh" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Blades of Glory", + "year": 2007, + "cast": [ + "Will Ferrell", + "Jon Heder" + ], + "genres": [ + "Comedy", + "Sports" + ] + }, + { + "title": "Blonde Ambition", + "year": 2007, + "cast": [ + "Jessica Simpson", + "Luke Wilson" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "The Blue Hour", + "year": 2007, + "cast": [ + "Alyssa Milano" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Blue State", + "year": 2007, + "cast": [ + "Anna Paquin", + "Breckin Meyer" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "The Bourne Ultimatum", + "year": 2007, + "cast": [ + "Matt Damon", + "Julia Stiles", + "David Strathairn", + "Scott Glenn", + "Joan Allen" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Bratz: The Movie", + "year": 2007, + "cast": [ + "Nathalia Ramos", + "Skyler Shaye", + "Logan Browning", + "Janel Parrish", + "Chelsea Staub", + "Lainie Kazan", + "Jon Voight" + ], + "genres": [ + "Comedy", + "Family" + ] + }, + { + "title": "The Brave One", + "year": 2007, + "cast": [ + "Jodie Foster", + "Naveen Andrews", + "Terrence Howard", + "Mary Steenburgen" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Breach", + "year": 2007, + "cast": [ + "Chris Cooper", + "Ryan Phillippe", + "Laura Linney" + ], + "genres": [ + "Political", + "Thriller" + ] + }, + { + "title": "Bridge to Terabithia", + "year": 2007, + "cast": [ + "Josh Hutcherson", + "AnnaSophia Robb", + "Zooey Deschanel", + "Robert Patrick" + ], + "genres": [ + "Family", + "Fantasy" + ] + }, + { + "title": "Broken English", + "year": 2007, + "cast": [ + "Parker Posey", + "Melvil Poupaud", + "Drea de Matteo" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Brooklyn Rules", + "year": 2007, + "cast": [ + "Alec Baldwin", + "Scott Caan", + "Freddie Prinze Jr." + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Brotherhood of Blood", + "year": 2007, + "cast": [ + "Victoria Pratt" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Brothers Solomon", + "year": 2007, + "cast": [ + "Will Arnett", + "Will Forte", + "Chi McBride", + "Kristen Wiig", + "Malin Åkerman" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Bucket List", + "year": 2007, + "cast": [ + "Jack Nicholson", + "Morgan Freeman" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "Cake: A Wedding Story", + "year": 2007, + "cast": [ + "G. W. Bailey" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Captivity", + "year": 2007, + "cast": [ + "Elisha Cuthbert", + "Daniel Gillies" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Care Bears: Oopsy Does It!", + "year": 2007, + "cast": [ + "Scott McNeil", + "Ashleigh Ball", + "Tabitha St. Germain" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Cassandra's Dream", + "year": 2007, + "cast": [ + "Hayley Atwell", + "Colin Farrell", + "Sally Hawkins", + "Ewan McGregor", + "Tom Wilkinson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Catacombs", + "year": 2007, + "cast": [ + "Shannyn Sossamon", + "Pink" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Chapter 27", + "year": 2007, + "cast": [ + "Jared Leto" + ], + "genres": [ + "Documentary", + "Drama" + ] + }, + { + "title": "Charlie Wilson's War", + "year": 2007, + "cast": [ + "Tom Hanks", + "Julia Roberts", + "Philip Seymour Hoffman" + ], + "genres": [ + "Biography", + "Drama" + ] + }, + { + "title": "Chicago 10", + "year": 2007, + "cast": [ + "the", + "Chicago Seven" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Code Name: The Cleaner", + "year": 2007, + "cast": [ + "Cedric the Entertainer", + "Lucy Liu", + "Nicollette Sheridan" + ], + "genres": [ + "Action", + "Comedy" + ] + }, + { + "title": "The Comebacks", + "year": 2007, + "cast": [ + "David Koechner" + ], + "genres": [ + "Satire", + "Sports" + ] + }, + { + "title": "The Condemned", + "year": 2007, + "cast": [ + "Stone Cold Steve Austin", + "Vinnie Jones" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Control", + "year": 2007, + "cast": [ + "Sam Riley", + "Samantha Morton", + "Alexandra Maria Lara" + ], + "genres": [ + "Biography", + "Drama" + ] + }, + { + "title": "Crazy Love", + "year": 2007, + "cast": [ + "Burt Pugach", + "Linda Riss" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Cthulhu", + "year": 2007, + "cast": [ + "Tori Spelling", + "Cara Buono" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Daddy Day Camp", + "year": 2007, + "cast": [ + "Cuba Gooding Jr." + ], + "genres": [ + "Comedy", + "Family" + ] + }, + { + "title": "Daddy's Little Girls", + "year": 2007, + "cast": [ + "Gabrielle Union", + "Idris Elba" + ], + "genres": [ + "Drama", + "Romance" + ] + }, + { + "title": "Dalai Lama Renaissance", + "year": 2007, + "cast": [ + "the", + "14th Dalai Lama", + "'s meeting with the \"Synthesis\" group" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Dan in Real Life", + "year": 2007, + "cast": [ + "Steve Carell", + "Juliette Binoche", + "Dane Cook", + "John Mahoney", + "Emily Blunt", + "Dianne Wiest" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Darfur Now", + "year": 2007, + "cast": [ + "The", + "War in Darfur" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Dark Matter", + "year": 2007, + "cast": [ + "Liu Ye", + "Aidan Quinn", + "Meryl Streep" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Day Zero", + "year": 2007, + "cast": [ + "Elijah Wood" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dead Silence", + "year": 2007, + "cast": [ + "Ryan Kwanten", + "Donnie Wahlberg", + "Judith Roberts" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Death Sentence", + "year": 2007, + "cast": [ + "Kevin Bacon", + "Garrett Hedlund", + "Kelly Preston", + "John Goodman" + ], + "genres": [ + "Action", + "Crime" + ] + }, + { + "title": "Delta Farce", + "year": 2007, + "cast": [ + "Bill Engvall", + "Larry the Cable Guy" + ], + "genres": [ + "Action", + "Comedy" + ] + }, + { + "title": "Devil Girl", + "year": 2007, + "cast": [ + "Jessica Graham", + "Joe Wanjai Ross" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Dirty Country", + "year": 2007, + "cast": [ + "Life of", + "Larry Pierce" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Disturbia", + "year": 2007, + "cast": [ + "Shia LaBeouf", + "Sarah Roemer", + "David Morse", + "Carrie-Anne Moss" + ], + "genres": [ + "Crime", + "Thriller" + ] + }, + { + "title": "The Diving Bell and the Butterfly", + "year": 2007, + "cast": [ + "Mathieu Amalric", + "Emmanuelle Seigner", + "Marie-Josée Croze", + "Max von Sydow" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Eastern Promises", + "year": 2007, + "cast": [ + "Viggo Mortensen", + "Naomi Watts", + "Vincent Cassel" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Ed Gein: The Butcher of Plainfield", + "year": 2007, + "cast": [ + "Adrienne Frantz", + "Kane Hodder" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Elvis and Anabelle", + "year": 2007, + "cast": [ + "Max Minghella", + "Blake Lively" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Enchanted", + "year": 2007, + "cast": [ + "Amy Adams", + "Patrick Dempsey", + "James Marsden", + "Susan Sarandon" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Epic Movie", + "year": 2007, + "cast": [ + "Kal Penn", + "Adam Campbell", + "Jennifer Coolidge", + "Fred Willard" + ], + "genres": [ + "Satire" + ] + }, + { + "title": "Evan Almighty", + "year": 2007, + "cast": [ + "Steve Carell", + "Morgan Freeman", + "Lauren Graham", + "John Goodman", + "Wanda Sykes" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Evening", + "year": 2007, + "cast": [ + "Claire Danes", + "Toni Collette", + "Vanessa Redgrave", + "Patrick Wilson", + "Hugh Dancy", + "Natasha Richardson", + "Mamie Gummer", + "Eileen Atkins", + "Meryl Streep", + "Glenn Close" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Ex", + "year": 2007, + "cast": [ + "Zach Braff", + "Amanda Peet", + "Jason Bateman", + "Charles Grodin", + "Mia Farrow", + "Donal Logue", + "Amy Poehler", + "Amy Adams", + "Fred Armisen" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Extreme Movie", + "year": 2007, + "cast": [ + "Ryan Pinkston" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Fantastic Four: Rise of the Silver Surfer", + "year": 2007, + "cast": [ + "Ioan Gruffudd", + "Jessica Alba", + "Chris Evans", + "Michael Chiklis" + ], + "genres": [ + "Superhero" + ] + }, + { + "title": "Feel the Noise", + "year": 2007, + "cast": [ + "Omarion Grandberry", + "Giancarlo Esposito", + "Victor Rasuk", + "Melonie Diaz" + ], + "genres": [ + "Dance", + "Drama" + ] + }, + { + "title": "Finishing the Game", + "year": 2007, + "cast": [ + "James Franco", + "Roger Fan", + "Sung Kang" + ], + "genres": [ + "Satire" + ] + }, + { + "title": "Firehouse Dog", + "year": 2007, + "cast": [ + "Josh Hutcherson", + "Bruce Greenwood", + "Dash Mihok" + ], + "genres": [ + "Family" + ] + }, + { + "title": "The Flock", + "year": 2007, + "cast": [ + "Richard Gere", + "Claire Danes" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "For the Bible Tells Me So", + "year": 2007, + "cast": [ + "perceived conflict between", + "religion", + "and", + "homosexuality" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Fracture", + "year": 2007, + "cast": [ + "Anthony Hopkins", + "Ryan Gosling" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Freakshow", + "year": 2007, + "cast": [ + "Rebekah Kochan" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Fred Claus", + "year": 2007, + "cast": [ + "Vince Vaughn", + "Paul Giamatti" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Freedom Writers", + "year": 2007, + "cast": [ + "Hilary Swank", + "Scott Glenn", + "Imelda Staunton", + "Patrick Dempsey", + "Mario" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Full of It", + "year": 2007, + "cast": [ + "Ryan Pinkston", + "Teri Polo", + "Kate Mara" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Game Plan", + "year": 2007, + "cast": [ + "Dwayne Johnson", + "Madison Pettis", + "Kyra Sedgwick", + "Morris Chestnut" + ], + "genres": [ + "Family", + "Sports" + ] + }, + { + "title": "The Gene Generation", + "year": 2007, + "cast": [ + "Bai Ling", + "Parry Shen", + "Alec Newman", + "Robert David Hall" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Georgia Rule", + "year": 2007, + "cast": [ + "Lindsay Lohan", + "Jane Fonda", + "Felicity Huffman", + "Dermot Mulroney", + "Garrett Hedlund" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Ghost Rider", + "year": 2007, + "cast": [ + "Nicolas Cage", + "Eva Mendes", + "Wes Bentley", + "Sam Elliott", + "Peter Fonda" + ], + "genres": [ + "Superhero" + ] + }, + { + "title": "Ghosts of Abu Ghraib", + "year": 2007, + "cast": [ + "The 2004", + "Abu Ghraib torture and prisoner abuse", + "scandal" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Girl in the Park", + "year": 2007, + "cast": [ + "Sigourney Weaver", + "Kate Bosworth", + "Kurt Russell", + "Keri Russell", + "Spencer Grammer", + "Elisabeth Waterson", + "Kristen Ruhlin", + "David Rasche" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Glass Lips", + "year": 2007, + "cast": [ + "Patryk Czajka", + "Joanna Litwin", + "Grzegorz Przybyl" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Go-Getter", + "year": 2007, + "cast": [ + "Lou Taylor Pucci", + "Zooey Deschanel", + "Jena Malone" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "God's Ears", + "year": 2007, + "cast": [ + "Michael Worth" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Golden Compass", + "year": 2007, + "cast": [ + "Dakota Blue Richards", + "Nicole Kidman", + "Daniel Craig", + "Eva Green", + "Ian McKellen" + ], + "genres": [ + "Family", + "Fantasy" + ] + }, + { + "title": "Gone Baby Gone", + "year": 2007, + "cast": [ + "Casey Affleck", + "Michelle Monaghan", + "Morgan Freeman", + "Ed Harris", + "Amy Ryan", + "John Ashton", + "Amy Madigan" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Good Luck Chuck", + "year": 2007, + "cast": [ + "Dane Cook", + "Jessica Alba" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "The Good Night", + "year": 2007, + "cast": [ + "Penélope Cruz", + "Gwyneth Paltrow", + "Danny DeVito" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Grace Is Gone", + "year": 2007, + "cast": [ + "John Cusack" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Gracie", + "year": 2007, + "cast": [ + "Elisabeth Shue", + "Carly Schroeder", + "Dermot Mulroney" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Great Debaters", + "year": 2007, + "cast": [ + "Denzel Washington", + "Forest Whitaker", + "Nate Parker", + "Jurnee Smollet", + "Denzel Whitaker", + "John Heard", + "Kimberly Elise" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Grindhouse", + "year": 2007, + "cast": [ + "Freddy Rodríguez", + "Kurt Russell", + "Rose McGowan", + "Rosario Dawson", + "Tracie Thoms", + "Zoë Bell", + "Josh Brolin", + "Bruce Willis" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Hairspray", + "year": 2007, + "cast": [ + "John Travolta", + "Michelle Pfeiffer", + "Christopher Walken", + "Amanda Bynes", + "James Marsden", + "Queen Latifah", + "Brittany Snow", + "Zac Efron", + "Elijah Kelley", + "Allison Janney", + "Nikki Blonsky" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Halloween", + "year": 2007, + "cast": [ + "Malcolm McDowell", + "Tyler Mane", + "Sheri Moon Zombie", + "Scout Taylor-Compton", + "Brad Dourif", + "Danielle Harris", + "William Forsythe", + "Danny Trejo" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Hammer", + "year": 2007, + "cast": [ + "Adam Carolla", + "Heather Juergensen" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Happily N'Ever After", + "year": 2007, + "cast": [ + "Sarah Michelle Gellar", + "Freddie Prinze Jr.", + "Andy Dick", + "Wallace Shawn" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Harry Potter and the Order of the Phoenix", + "year": 2007, + "cast": [ + "Daniel Radcliffe", + "Rupert Grint", + "Emma Watson", + "Michael Gambon", + "Imelda Staunton", + "Helena Bonham Carter", + "Gary Oldman", + "Ralph Fiennes" + ], + "genres": [ + "Family", + "Fantasy" + ] + }, + { + "title": "Hear and Now", + "year": 2007, + "cast": [ + "On", + "cochlear implant", + "surgery" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Heartbreak Kid", + "year": 2007, + "cast": [ + "Ben Stiller", + "Michelle Monaghan", + "Jerry Stiller", + "Malin Åkerman" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Highlander: The Source", + "year": 2007, + "cast": [ + "Adrian Paul" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Hills Have Eyes 2", + "year": 2007, + "cast": [ + "Michael McMillian", + "Jessica Stroup", + "Daniella Alonso", + "Jacob Vargas" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Hitcher", + "year": 2007, + "cast": [ + "Sophia Bush", + "Sean Bean", + "Zachary Knighton", + "Neal McDonough" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Hitman", + "year": 2007, + "cast": [ + "Timothy Olyphant", + "Dougray Scott", + "Olga Kurylenko", + "Robert Knepper" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Hoax", + "year": 2007, + "cast": [ + "Richard Gere", + "Alfred Molina", + "Marcia Gay Harden", + "Stanley Tucci", + "Hope Davis" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Honeydripper", + "year": 2007, + "cast": [ + "Danny Glover", + "Charles S. Dutton", + "Lisa Gay Hamilton" + ], + "genres": [ + "Drama", + "Musical" + ] + }, + { + "title": "Hostel: Part II", + "year": 2007, + "cast": [ + "Lauren German", + "Roger Bart", + "Bijou Phillips", + "Heather Matarazzo", + "Richard Burgi", + "Jay Hernandez" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Hot Rod", + "year": 2007, + "cast": [ + "Andy Samberg", + "Isla Fisher", + "Jorma Taccone", + "Bill Hader", + "Danny McBride", + "Sissy Spacek", + "Ian McShane" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Hunting Party", + "year": 2007, + "cast": [ + "Terrence Howard", + "Richard Gere" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "I Am an American Soldier", + "year": 2007, + "cast": [ + "The", + "Iraq War" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "I Am Legend", + "year": 2007, + "cast": [ + "Will Smith" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "I Could Never Be Your Woman", + "year": 2007, + "cast": [ + "Michelle Pfeiffer", + "Paul Rudd" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "I Know Who Killed Me", + "year": 2007, + "cast": [ + "Lindsay Lohan", + "Julia Ormond", + "Neal McDonough" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "I Now Pronounce You Chuck and Larry", + "year": 2007, + "cast": [ + "Adam Sandler", + "Kevin James", + "Jessica Biel" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "I Think I Love My Wife", + "year": 2007, + "cast": [ + "Chris Rock", + "Kerry Washington", + "Gina Torres" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "I'm Not There", + "year": 2007, + "cast": [ + "Christian Bale", + "Cate Blanchett", + "Marcus Carl Franklin", + "Richard Gere", + "Heath Ledger", + "Ben Whishaw" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "In the Land of Women", + "year": 2007, + "cast": [ + "Adam Brody", + "Kristen Stewart", + "Meg Ryan", + "Olympia Dukakis", + "Makenzie Vega" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "In the Valley of Elah", + "year": 2007, + "cast": [ + "Tommy Lee Jones", + "Charlize Theron", + "Susan Sarandon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Interview", + "year": 2007, + "cast": [ + "Steve Buscemi", + "Sienna Miller" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Into the Wild", + "year": 2007, + "cast": [ + "Emile Hirsch", + "Marcia Gay Harden", + "William Hurt", + "Jena Malone", + "Brian Dieker", + "Vince Vaughn", + "Zach Galifianakis", + "Kristen Stewart", + "Hal Holbrook" + ], + "genres": [ + "Adventure", + "Drama" + ] + }, + { + "title": "The Invasion", + "year": 2007, + "cast": [ + "Nicole Kidman", + "Daniel Craig" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Invisible", + "year": 2007, + "cast": [ + "Justin Chatwin", + "Margarita Levieva", + "Chris Marquette", + "Marcia Gay Harden" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Itty Bitty Titty Committee", + "year": 2007, + "cast": [ + "Melonie Diaz" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Joshua", + "year": 2007, + "cast": [ + "Sam Rockwell", + "Vera Farmiga" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Juno", + "year": 2007, + "cast": [ + "Ellen Page", + "Michael Cera", + "Jennifer Garner", + "Jason Bateman", + "Allison Janney", + "J. K. Simmons", + "Olivia Thirlby" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Kickin' It Old Skool", + "year": 2007, + "cast": [ + "Jamie Kennedy", + "Miguel A. Núñez, Jr.", + "Maria Menounos" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Killing Zelda Sparks", + "year": 2007, + "cast": [ + "Colm Feore" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The King of Kong: A Fistful of Quarters", + "year": 2007, + "cast": [ + "Steve Wiebe", + "'s attempts to break the world high score for", + "Donkey Kong" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "King of Punk", + "year": 2007, + "cast": [ + "The", + "punk subculture", + "between 1976 and 1982" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Kingdom", + "year": 2007, + "cast": [ + "Jamie Foxx", + "Chris Cooper", + "Jennifer Garner", + "Jason Bateman", + "Jeremy Piven", + "Danny Huston", + "Richard Jenkins" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Kite Runner", + "year": 2007, + "cast": [ + "Khalid Abdalla", + "Homayoun Ershadi", + "Shaun Toub" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Knock Knock", + "year": 2007, + "cast": [ + "Nicole Abisinio" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Knocked Up", + "year": 2007, + "cast": [ + "Seth Rogen", + "Katherine Heigl", + "Paul Rudd", + "Leslie Mann" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Lady Magdalene's", + "year": 2007, + "cast": [ + "Nichelle Nichols", + "Susan Smythe" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Lake of Fire", + "year": 2007, + "cast": [ + "abortion in the United States" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Lars and the Real Girl", + "year": 2007, + "cast": [ + "Ryan Gosling", + "Emily Mortimer", + "Paul Schneider" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Last Mimzy", + "year": 2007, + "cast": [ + "Rhiannon Leigh Wryn", + "Chris O'Neil", + "Rainn Wilson", + "Joely Richardson" + ], + "genres": [ + "Family", + "Science Fiction" + ] + }, + { + "title": "The Last Sin Eater", + "year": 2007, + "cast": [ + "Liana Liberato", + "Louise Fletcher", + "Henry Thomas" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "License to Wed", + "year": 2007, + "cast": [ + "Robin Williams", + "Mandy Moore", + "John Krasinski" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "The Life Before Her Eyes", + "year": 2007, + "cast": [ + "Uma Thurman", + "Evan Rachel Wood" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Lions for Lambs", + "year": 2007, + "cast": [ + "Robert Redford", + "Meryl Streep", + "Tom Cruise" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The List", + "year": 2007, + "cast": [ + "Malcolm McDowell", + "Chuck Carrington", + "Hilarie Burton" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Live Free or Die Hard", + "year": 2007, + "cast": [ + "Bruce Willis", + "Justin Long" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Lookout", + "year": 2007, + "cast": [ + "Joseph Gordon-Levitt", + "Jeff Daniels", + "Matthew Goode", + "Isla Fisher" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Love in the Time of Cholera", + "year": 2007, + "cast": [ + "Giovanna Mezzogiorno", + "John Leguizamo" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Lucky You", + "year": 2007, + "cast": [ + "Eric Bana", + "Drew Barrymore", + "Robert Duvall" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Lust, Caution", + "year": 2007, + "cast": [ + "Tony Leung Chiu-Wai", + "Tang Wei", + "Joan Chen", + "Leehom Wang" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Manda Bala (Send a Bullet)", + "year": 2007, + "cast": [ + "political corruption", + "and", + "kidnapping", + "in Brazil" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Margot at the Wedding", + "year": 2007, + "cast": [ + "Nicole Kidman", + "Jennifer Jason Leigh", + "Jack Black", + "John Turturro" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Marigold", + "year": 2007, + "cast": [ + "Salman Khan", + "Ali Larter" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Married Life", + "year": 2007, + "cast": [ + "Chris Cooper", + "Patricia Clarkson", + "Pierce Brosnan", + "Rachel McAdams" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Martian Child", + "year": 2007, + "cast": [ + "John Cusack", + "Bobby Coleman", + "Amanda Peet", + "Joan Cusack" + ], + "genres": [ + "Comedy", + "Drama", + "Family" + ] + }, + { + "title": "Meet the Robinsons", + "year": 2007, + "cast": [ + "Jordan Fry", + "Harland Williams", + "Tom Kenny" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "The Messengers", + "year": 2007, + "cast": [ + "Kristen Stewart", + "Dylan McDermott", + "Penelope Ann Miller" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Michael Clayton", + "year": 2007, + "cast": [ + "George Clooney", + "Tom Wilkinson", + "Tilda Swinton", + "Sydney Pollack", + "Michael O'Keefe", + "Merritt Weaver", + "Ken Howard" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "A Mighty Heart", + "year": 2007, + "cast": [ + "Angelina Jolie" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Mist", + "year": 2007, + "cast": [ + "Thomas Jane", + "Marcia Gay Harden", + "Andre Braugher", + "Toby Jones" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Mister Lonely", + "year": 2007, + "cast": [ + "Diego Luna", + "Samantha Morton" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "A Modern Twain Story: The Prince and the Pauper", + "year": 2007, + "cast": [ + "Dylan and Cole Sprouse", + "Kay Panabaker" + ], + "genres": [] + }, + { + "title": "Monster Camp", + "year": 2007, + "cast": [ + "live action role-playing game" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Mother of Tears", + "year": 2007, + "cast": [ + "Asia Argento", + "Daria Nicolodi", + "Moran Atias" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Moving McAllister", + "year": 2007, + "cast": [ + "Ben Gourley", + "Mila Kunis", + "Jon Heder", + "Rutger Hauer" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mr. Brooks", + "year": 2007, + "cast": [ + "Kevin Costner", + "Demi Moore", + "Dane Cook", + "William Hurt" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Mr. Magorium's Wonder Emporium", + "year": 2007, + "cast": [ + "Dustin Hoffman", + "Natalie Portman", + "Jason Bateman", + "Zach Mills" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Mr. Schneider Goes to Washington", + "year": 2007, + "cast": [ + "Campaign financing in Washington" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Mr. Woodcock", + "year": 2007, + "cast": [ + "Billy Bob Thornton", + "Seann William Scott", + "Susan Sarandon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mr. Untouchable", + "year": 2007, + "cast": [ + "the rise and fall of", + "Leroy Barnes" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Music and Lyrics", + "year": 2007, + "cast": [ + "Hugh Grant", + "Drew Barrymore" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "My Bollywood Bride", + "year": 2007, + "cast": [ + "Jason Lewis", + "Kashmira Shah" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "My Sexiest Year", + "year": 2007, + "cast": [ + "Frankie Muniz", + "Harvey Keitel", + "Haylie Duff" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Nancy Drew", + "year": 2007, + "cast": [ + "Emma Roberts" + ], + "genres": [ + "Crime", + "Family" + ] + }, + { + "title": "Nanking", + "year": 2007, + "cast": [ + "the 1937", + "Nanking Massacre" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Nanny Diaries", + "year": 2007, + "cast": [ + "Scarlett Johansson", + "Chris Evans" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "National Treasure: Book of Secrets", + "year": 2007, + "cast": [ + "Nicolas Cage", + "Diane Kruger", + "Jon Voight", + "Justin Bartha", + "Helen Mirren" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Netherbeast Incorporated", + "year": 2007, + "cast": [ + "Darrell Hammond", + "Judd Nelson" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Next", + "year": 2007, + "cast": [ + "Nicolas Cage", + "Julianne Moore", + "Jessica Biel" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "No Country for Old Men", + "year": 2007, + "cast": [ + "Josh Brolin", + "Tommy Lee Jones", + "Javier Bardem", + "Woody Harrelson", + "Kelly Macdonald", + "Tess Harper", + "Barry Corbin" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "No End in Sight", + "year": 2007, + "cast": [ + "the", + "American occupation of Iraq" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "No Reservations", + "year": 2007, + "cast": [ + "Catherine Zeta-Jones", + "Aaron Eckhart", + "Abigail Breslin" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Nobel Son", + "year": 2007, + "cast": [ + "Alan Rickman", + "Bryan Greenberg", + "Eliza Dushku", + "Danny DeVito" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Norbit", + "year": 2007, + "cast": [ + "Eddie Murphy", + "Thandie Newton", + "Cuba Gooding, Jr." + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Normal Adolescent Behavior", + "year": 2007, + "cast": [ + "Amber Tamblyn", + "Ashton Holmes" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Numb", + "year": 2007, + "cast": [ + "Matthew Perry" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Number 23", + "year": 2007, + "cast": [ + "Jim Carrey", + "Virginia Madsen" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Ocean's Thirteen", + "year": 2007, + "cast": [ + "George Clooney", + "Brad Pitt", + "Matt Damon", + "Andy García", + "Don Cheadle", + "Bernie Mac", + "Ellen Barkin", + "Al Pacino", + "Blake Lively" + ], + "genres": [ + "Comedy", + "Crime" + ] + }, + { + "title": "Oh, Saigon", + "year": 2007, + "cast": [ + "The", + "Fall of Saigon" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Only for You", + "year": 2007, + "cast": [ + "Shea Curry" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Operation Homecoming: Writing the Wartime Experience", + "year": 2007, + "cast": [ + "The lives and experiences of American combat soldiers in the", + "Iraq War", + "and", + "War in Afghanistan" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "P.S. I Love You", + "year": 2007, + "cast": [ + "Hilary Swank", + "Gerard Butler" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "P2", + "year": 2007, + "cast": [ + "Rachek Nichols", + "Wes Bentley" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Padre Nuestro", + "year": 2007, + "cast": [ + "Jesús Ochoa" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Paranoid Park", + "year": 2007, + "cast": [ + "Gabe Nevins", + "Jake Miller", + "Taylor Momsen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Passage to Zarahemla", + "year": 2007, + "cast": [ + "Summer Naomi Smart" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Pathfinder", + "year": 2007, + "cast": [ + "Karl Urban", + "Moon Bloodgood", + "Russell Means" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Perfect Holiday", + "year": 2007, + "cast": [ + "Morris Chestnut", + "Gabrielle Union", + "Charlie Murphy", + "Katt Williams", + "Faizon Love", + "Terrence Howard", + "Queen Latifah" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Perfect Stranger", + "year": 2007, + "cast": [ + "Halle Berry", + "Bruce Willis", + "Giovanni Ribisi" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Persepolis", + "year": 2007, + "cast": [ + "Chiara Mastroianni", + "Catherine Deneuve", + "Danielle Darrieux" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Pirates of the Caribbean: At World's End", + "year": 2007, + "cast": [ + "Johnny Depp", + "Orlando Bloom", + "Keira Knightley", + "Bill Nighy", + "Geoffrey Rush", + "Chow Yun-fat" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Poughkeepsie Tapes", + "year": 2007, + "cast": [ + "Samantha Robson", + "Ivar Brogger" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Premonition", + "year": 2007, + "cast": [ + "Sandra Bullock", + "Julian McMahon", + "Nia Long" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Press Start", + "year": 2007, + "cast": [ + "Joshua Stafford", + "Daniel Pesina" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Pride", + "year": 2007, + "cast": [ + "Bernie Mac" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Primeval", + "year": 2007, + "cast": [ + "Dominic Purcell", + "Orlando Jones" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Ratatouille", + "year": 2007, + "cast": [ + "Patton Oswalt", + "Lou Romano", + "Peter Sohn", + "Brad Garrett" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "The Reaping", + "year": 2007, + "cast": [ + "Hilary Swank", + "AnnaSophia Robb", + "David Morrissey", + "Stephen Rea" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Redline", + "year": 2007, + "cast": [ + "Tim Matheson", + "Nathan Phillips", + "Nadia Bjorlin", + "Eddie Griffin" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Redrum", + "year": 2007, + "cast": [ + "Kenny Young", + "Jill Marie Jones" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Reign Over Me", + "year": 2007, + "cast": [ + "Adam Sandler", + "Don Cheadle", + "Liv Tyler" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Remember the Daze", + "year": 2007, + "cast": [ + "Chris Marquette", + "Sean Marquette", + "Amber Heard", + "Lyndsy Fonseca" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Rendition", + "year": 2007, + "cast": [ + "Jake Gyllenhaal", + "Reese Witherspoon", + "Peter Sarsgaard", + "Alan Arkin", + "Meryl Streep" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Reno 911!: Miami", + "year": 2007, + "cast": [ + "Carlos Alazraqui", + "Mary Birdsong", + "Wendi McLendon-Covey" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Reservation Road", + "year": 2007, + "cast": [ + "Joaquin Phoenix", + "Mark Ruffalo", + "Jennifer Connelly", + "Mira Sorvino" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Resident Evil: Extinction", + "year": 2007, + "cast": [ + "Milla Jovovich", + "Ali Larter" + ], + "genres": [ + "Action", + "Horror" + ] + }, + { + "title": "Resurrecting the Champ", + "year": 2007, + "cast": [ + "Samuel L. Jackson", + "Josh Hartnett" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Rocket Science", + "year": 2007, + "cast": [ + "Reece Thompson", + "Anna Kendrick", + "Nicholas D'Agosto" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Rolling", + "year": 2007, + "cast": [ + "Sanoe Lake" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Rush Hour 3", + "year": 2007, + "cast": [ + "Jackie Chan", + "Chris Tucker" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Savage Grace", + "year": 2007, + "cast": [ + "Julianne Moore", + "Stephen Dillane", + "Eddie Redmayne", + "Hugh Dancy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Savages", + "year": 2007, + "cast": [ + "Laura Linney", + "Philip Seymour Hoffman" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Saw IV", + "year": 2007, + "cast": [ + "Tobin Bell", + "Lyriq Bent", + "Costas Mandylor", + "Betsy Russell" + ], + "genres": [ + "Horror", + "Thriller" + ] + }, + { + "title": "The Seeker", + "year": 2007, + "cast": [ + "Ian McShane" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Seraphim Falls", + "year": 2007, + "cast": [ + "Pierce Brosnan", + "Liam Neeson" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Shadow Puppets", + "year": 2007, + "cast": [ + "Jolene Blalock", + "Tony Todd", + "James Marsters" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Shoot 'Em Up", + "year": 2007, + "cast": [ + "Clive Owen", + "Paul Giamatti", + "Monica Bellucci" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Shooter", + "year": 2007, + "cast": [ + "Mark Wahlberg", + "Danny Glover", + "Michael Peña", + "Ned Beatty" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "ShowBusiness: The Road to Broadway", + "year": 2007, + "cast": [ + "The 2003–04", + "Broadway season", + "of", + "Wicked", + "Taboo", + "Caroline", + "or Change", + "and", + "Avenue Q" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Shrek the Third", + "year": 2007, + "cast": [ + "Mike Myers", + "Eddie Murphy", + "Cameron Diaz" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Sicko", + "year": 2007, + "cast": [ + "American health care", + "and", + "pharmaceutical industry" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Simpsons Movie", + "year": 2007, + "cast": [ + "Dan Castellaneta", + "Julie Kavner", + "Nancy Cartwright", + "Yeardley Smith" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Sinner", + "year": 2007, + "cast": [ + "Nick Chinlund", + "Georgina Cates", + "Michael E. Rodgers" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sinners", + "year": 2007, + "cast": [ + "Ben Kurland" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Sleuth", + "year": 2007, + "cast": [ + "Michael Caine", + "Jude Law" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Slipstream", + "year": 2007, + "cast": [ + "Anthony Hopkins" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Smiley Face", + "year": 2007, + "cast": [ + "Anna Faris", + "John Krasinski" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Smokin' Aces", + "year": 2007, + "cast": [ + "Ryan Reynolds", + "Ray Liotta", + "Alicia Keys", + "Jeremy Piven", + "Ben Affleck" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Socket", + "year": 2007, + "cast": [ + "Derek Long", + "Alexandra Billings" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Spider-Man 3", + "year": 2007, + "cast": [ + "Tobey Maguire", + "Kirsten Dunst", + "James Franco", + "Thomas Haden Church", + "Topher Grace" + ], + "genres": [ + "Superhero" + ] + }, + { + "title": "Spiral", + "year": 2007, + "cast": [ + "Amber Tamblyn", + "Joel David Moore", + "Zachary Levi" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Stardust", + "year": 2007, + "cast": [ + "Claire Danes", + "Michelle Pfeiffer", + "Robert De Niro" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "The Star of Bethlehem", + "year": 2007, + "cast": [ + "Frederick Larson's", + "search for the Star of Bethlehem" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Starting Out in the Evening", + "year": 2007, + "cast": [ + "Frank Langella", + "Lauren Ambrose", + "Lili Taylor" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "A State of Vine", + "year": 2007, + "cast": [ + "Wine", + "industry" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Still Green", + "year": 2007, + "cast": [ + "Sarah Jones", + "Ryan Kelley", + "Douglas Spain" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Stomp the Yard", + "year": 2007, + "cast": [ + "Columbus Short", + "Chris Brown", + "Ne-Yo" + ], + "genres": [ + "Dance", + "Drama" + ] + }, + { + "title": "Strange Culture", + "year": 2007, + "cast": [ + "the case of", + "Steve Kurtz" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Stuck", + "year": 2007, + "cast": [ + "Mena Suvari", + "Stephen Rea" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Suburban Girl", + "year": 2007, + "cast": [ + "Sarah Michelle Gellar", + "Alec Baldwin", + "Maggie Grace", + "Chris Carmack" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Suffering Man's Charity", + "year": 2007, + "cast": [ + "Alan Cumming", + "David Boreanaz" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Sunshine", + "year": 2007, + "cast": [ + "Cillian Murphy", + "Rose Byrne", + "Cliff Curtis" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Superbad", + "year": 2007, + "cast": [ + "Jonah Hill", + "Michael Cera", + "Christopher Mintz-Plasse", + "Seth Rogen" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Surf's Up", + "year": 2007, + "cast": [ + "Shia LaBeouf", + "Jeff Bridges", + "Zooey Deschanel" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Sweeney Todd: The Demon Barber of Fleet Street", + "year": 2007, + "cast": [ + "Johnny Depp", + "Helena Bonham Carter", + "Alan Rickman", + "Laura Michelle Kelly" + ], + "genres": [ + "Musical", + "Thriller" + ] + }, + { + "title": "Talk to Me", + "year": 2007, + "cast": [ + "Don Cheadle", + "Chiwetel Ejiofor", + "Taraji P. Henson", + "Cedric the Entertainer", + "Mike Epps", + "Martin Sheen" + ], + "genres": [ + "Biography", + "Drama" + ] + }, + { + "title": "Taxi to the Dark Side", + "year": 2007, + "cast": [ + "the murder of", + "Dilawar" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Ten", + "year": 2007, + "cast": [ + "Jessica Alba", + "Winona Ryder", + "Paul Rudd" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "There Will Be Blood", + "year": 2007, + "cast": [ + "Daniel Day-Lewis", + "Paul Dano", + "Dillon Freasier", + "Kevin J. O'Connor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Things We Lost in the Fire", + "year": 2007, + "cast": [ + "Halle Berry", + "Benicio del Toro" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "TMNT", + "year": 2007, + "cast": [ + "James Arnold Taylor", + "Mitchell Whitfield", + "Mikey Kelley", + "Nolan North" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Transformers", + "year": 2007, + "cast": [ + "Shia LaBeouf", + "Megan Fox", + "Josh Duhamel", + "Tyrese Gibson" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Underdog", + "year": 2007, + "cast": [ + "Alex Neuberger", + "Amy Adams", + "Jason Lee" + ], + "genres": [ + "Superhero" + ] + }, + { + "title": "Vacancy", + "year": 2007, + "cast": [ + "Luke Wilson", + "Kate Beckinsale" + ], + "genres": [ + "Horror", + "Thriller" + ] + }, + { + "title": "Waitress", + "year": 2007, + "cast": [ + "Keri Russell", + "Nathan Fillion", + "Cheryl Hines", + "Jeremy Sisto" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Walk Hard: The Dewey Cox Story", + "year": 2007, + "cast": [ + "John C. Reilly", + "Jenna Fischer" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "War", + "year": 2007, + "cast": [ + "Jet Li", + "Jason Statham" + ], + "genres": [ + "Action" + ] + }, + { + "title": "War/Dance", + "year": 2007, + "cast": [ + "Acholi", + "ethnic group in", + "Uganda", + "refugee camp" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Water Horse: Legend of the Deep", + "year": 2007, + "cast": [ + "Emily Watson" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "We Are the Strange", + "year": 2007, + "cast": [ + "Chaylon Blancett" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Welcome to Nollywood", + "year": 2007, + "cast": [ + "The", + "cinema of Nigeria" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "We Own the Night", + "year": 2007, + "cast": [ + "Mark Wahlberg", + "Joaquin Phoenix", + "Eva Mendes", + "Robert Duvall" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "What Love Is", + "year": 2007, + "cast": [ + "Cuba Gooding Jr." + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "What We Do Is Secret", + "year": 2007, + "cast": [ + "Shane West", + "Bijou Phillips", + "Rick Gonzalez" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Whisper", + "year": 2007, + "cast": [ + "Josh Holloway", + "Blake Woodruff" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "White Noise: The Light", + "year": 2007, + "cast": [ + "Nathan Fillion", + "Katee Sackhoff" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Who's Your Caddy?", + "year": 2007, + "cast": [ + "Lil Wayne", + "Andy Milonakis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Why Did I Get Married?", + "year": 2007, + "cast": [ + "Denise Boutte", + "Richard T. Jones", + "Sharon Leal", + "Lamman Rucker", + "Jill Scott", + "Tasha Smith", + "Michael Jai White", + "Malik Yoba", + "Janet Jackson" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "Wild Hogs", + "year": 2007, + "cast": [ + "John Travolta", + "Tim Allen", + "Martin Lawrence", + "William H. Macy", + "Marisa Tomei" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Wind Chill", + "year": 2007, + "cast": [ + "Emily Blunt", + "Ashton Holmes" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Year of the Dog", + "year": 2007, + "cast": [ + "Molly Shannon", + "Laura Dern" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Year of the Fish", + "year": 2007, + "cast": [ + "Tsai Chin", + "Ken Leung" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "You Kill Me", + "year": 2007, + "cast": [ + "Ben Kingsley", + "Téa Leoni", + "Luke Wilson", + "Dennis Farina" + ], + "genres": [ + "Crime", + "Comedy" + ] + }, + { + "title": "Youth Without Youth", + "year": 2007, + "cast": [ + "Tim Roth", + "Bruno Ganz" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Zodiac", + "year": 2007, + "cast": [ + "Jake Gyllenhaal", + "Robert Downey Jr.", + "Mark Ruffalo", + "Anthony Edwards", + "Chloë Sevigny", + "John Carroll Lynch", + "Brian Cox" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "10,000 BC", + "year": 2008, + "cast": [ + "Steven Strait", + "Camilla Belle", + "Cliff Curtis" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "21", + "year": 2008, + "cast": [ + "Jim Sturgess", + "Kevin Spacey", + "Kate Bosworth", + "Laurence Fishburne" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "27 Dresses", + "year": 2008, + "cast": [ + "Katherine Heigl", + "James Marsden", + "Malin Åkerman", + "Edward Burns", + "Judy Greer" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "88 Minutes", + "year": 2008, + "cast": [ + "Al Pacino", + "Alicia Witt", + "Leelee Sobieski", + "Amy Brenneman", + "Deborah Kara Unger", + "Benjamin McKenzie", + "William Forsythe", + "Neal McDonough" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Accidental Husband", + "year": 2008, + "cast": [ + "Uma Thurman", + "Jeffrey Dean Morgan", + "Colin Firth" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "An American Carol", + "year": 2008, + "cast": [ + "Kevin Farley", + "Kelsey Grammer", + "Jon Voight" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "American Teen", + "year": 2008, + "cast": [ + "The", + "stereotypes", + "of", + "High school" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Appaloosa", + "year": 2008, + "cast": [ + "Ed Harris", + "Viggo Mortensen", + "Renée Zellweger", + "Jeremy Irons" + ], + "genres": [ + "Western" + ] + }, + { + "title": "August", + "year": 2008, + "cast": [ + "Naomie Harris", + "Josh Hartnett", + "Rip Torn", + "Adam Scott" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Baby Mama", + "year": 2008, + "cast": [ + "Tina Fey", + "Amy Poehler", + "Greg Kinnear", + "Dax Shepard", + "Romany Malco" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Babylon A.D.", + "year": 2008, + "cast": [ + "Vin Diesel", + "Michelle Yeoh", + "Melanie Thierry", + "Lambert Wilson", + "Mark Strong", + "Charlotte Rampling", + "Gérard Depardieu" + ], + "genres": [ + "Science Fiction", + "Thriller" + ] + }, + { + "title": "Ballast", + "year": 2008, + "cast": [ + "Michael J. Smith", + "Sr." + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Bangkok Dangerous", + "year": 2008, + "cast": [ + "Nicolas Cage" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Be Kind Rewind", + "year": 2008, + "cast": [ + "Jack Black", + "Mos Def", + "Danny Glover" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Bedtime Stories", + "year": 2008, + "cast": [ + "Adam Sandler", + "Keri Russell", + "Guy Pearce", + "Teresa Palmer" + ], + "genres": [ + "Family", + "Fantasy" + ] + }, + { + "title": "Beer for My Horses", + "year": 2008, + "cast": [ + "Toby Keith", + "Rodney Carrington", + "Willie Nelson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Betrayal - Nerakhoon", + "year": 2008, + "cast": [ + "an immigrant from", + "Laos", + "living in", + "New York City" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Beverly Hills Chihuahua", + "year": 2008, + "cast": [ + "Jamie Lee Curtis", + "George Lopez", + "Drew Barrymore", + "Andy García" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Body of Lies", + "year": 2008, + "cast": [ + "Leonardo DiCaprio", + "Russell Crowe" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Bolt", + "year": 2008, + "cast": [ + "John Travolta", + "Miley Cyrus" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "The Boy in the Striped Pyjamas", + "year": 2008, + "cast": [ + "Vera Farmiga", + "Jack Scanlon", + "David Thewlis", + "Asa Butterfield" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Brothers Bloom", + "year": 2008, + "cast": [ + "Rachel Weisz", + "Adrien Brody", + "Mark Ruffalo" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Burn After Reading", + "year": 2008, + "cast": [ + "George Clooney", + "Frances McDormand", + "John Malkovich", + "Tilda Swinton", + "Brad Pitt", + "Richard Jenkins" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Cadillac Records", + "year": 2008, + "cast": [ + "Adrien Brody", + "Jeffrey Wright", + "Beyoncé Knowles" + ], + "genres": [ + "Biography", + "Musical" + ] + }, + { + "title": "Changeling", + "year": 2008, + "cast": [ + "Angelina Jolie" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Che", + "year": 2008, + "cast": [ + "Benicio del Toro", + "Franka Potente", + "Catalina Sandino Moreno" + ], + "genres": [ + "Biography", + "War" + ] + }, + { + "title": "Choke", + "year": 2008, + "cast": [ + "Sam Rockwell", + "Anjelica Huston", + "Kelly Macdonald" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Chronicles of Narnia: Prince Caspian", + "year": 2008, + "cast": [ + "Ben Barnes", + "William Moseley", + "Anna Popplewell", + "Skandar Keynes" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "City of Ember", + "year": 2008, + "cast": [ + "Bill Murray", + "Tim Robbins", + "Saoirse Ronan" + ], + "genres": [ + "Fantasy", + "Science Fiction" + ] + }, + { + "title": "Cloverfield", + "year": 2008, + "cast": [ + "Michael Stahl-David", + "Mike Vogel", + "Odette Yustman", + "Lizzy Caplan" + ], + "genres": [ + "Science Fiction", + "Thriller" + ] + }, + { + "title": "College", + "year": 2008, + "cast": [ + "Drake Bell", + "Kevin Covais", + "Andrew Caldwell", + "Haley Bennett" + ], + "genres": [ + "Comedy", + "Teen" + ] + }, + { + "title": "College Road Trip", + "year": 2008, + "cast": [ + "Raven-Symoné", + "Martin Lawrence" + ], + "genres": [ + "Family" + ] + }, + { + "title": "The Curious Case of Benjamin Button", + "year": 2008, + "cast": [ + "Brad Pitt", + "Cate Blanchett", + "Tilda Swinton", + "Taraji P. Henson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Dark Knight", + "year": 2008, + "cast": [ + "Christian Bale", + "Michael Caine", + "Heath Ledger", + "Gary Oldman", + "Aaron Eckhart", + "Maggie Gyllenhaal", + "Morgan Freeman", + "Anthony Michael Hall", + "Eric Roberts" + ], + "genres": [ + "Superhero" + ] + }, + { + "title": "The Day the Earth Stood Still", + "year": 2008, + "cast": [ + "Keanu Reeves", + "Jennifer Connelly", + "Jaden Smith", + "Kathy Bates" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Deal", + "year": 2008, + "cast": [ + "Bret Harrison", + "Burt Reynolds", + "Shannon Elizabeth" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Deal", + "year": 2008, + "cast": [ + "Meg Ryan", + "Jason Ritter", + "LL Cool J" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Death Race", + "year": 2008, + "cast": [ + "Jason Statham", + "Tyrese Gibson", + "Joan Allen", + "Ian McShane" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Deception", + "year": 2008, + "cast": [ + "Ewan McGregor", + "Hugh Jackman", + "Michelle Williams", + "Maggie Q" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Defiance", + "year": 2008, + "cast": [ + "Daniel Craig", + "Liev Schreiber", + "Jamie Bell" + ], + "genres": [ + "Drama", + "War" + ] + }, + { + "title": "Definitely, Maybe", + "year": 2008, + "cast": [ + "Ryan Reynolds", + "Isla Fisher", + "Derek Luke", + "Abigail Breslin", + "Elizabeth Banks", + "Rachel Weisz" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Delgo", + "year": 2008, + "cast": [ + "Freddie Prinze, Jr.", + "Jennifer Love Hewitt", + "Anne Bancroft" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Disaster Movie", + "year": 2008, + "cast": [ + "Kim Kardashian", + "Carmen Electra", + "Vanessa Minnillo", + "Matt Lanter" + ], + "genres": [ + "Comedy", + "Satire" + ] + }, + { + "title": "Doomsday", + "year": 2008, + "cast": [ + "Rhona Mitra", + "Bob Hoskins", + "Malcolm McDowell", + "Alexander Siddig" + ], + "genres": [ + "Action", + "Science Fiction" + ] + }, + { + "title": "Doubt", + "year": 2008, + "cast": [ + "Meryl Streep", + "Philip Seymour Hoffman", + "Amy Adams", + "Viola Davis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Drillbit Taylor", + "year": 2008, + "cast": [ + "Owen Wilson", + "Troy Gentile", + "Nate Hartley", + "David Dorfman" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Eagle Eye", + "year": 2008, + "cast": [ + "Shia LaBeouf", + "Michelle Monaghan", + "Billy Bob Thornton", + "Rosario Dawson" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Elegy", + "year": 2008, + "cast": [ + "Penélope Cruz", + "Ben Kingsley", + "Peter Sarsgaard" + ], + "genres": [ + "Drama", + "Romance" + ] + }, + { + "title": "Expelled: No Intelligence Allowed", + "year": 2008, + "cast": [ + "The conflicts between", + "intelligent design", + "and", + "evolution" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Express", + "year": 2008, + "cast": [ + "Dennis Quaid", + "Rob Brown", + "Omar Benson Miller" + ], + "genres": [ + "Biography", + "Sports" + ] + }, + { + "title": "The Eye", + "year": 2008, + "cast": [ + "Jessica Alba" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Family That Preys", + "year": 2008, + "cast": [ + "Tyler Perry", + "Alfre Woodard", + "Sanaa Lathan", + "Rockmond Dunbar" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Felon", + "year": 2008, + "cast": [ + "Stephen Dorff", + "Val Kilmer" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Fireflies in the Garden", + "year": 2008, + "cast": [ + "Julia Roberts", + "Ryan Reynolds", + "Willem Dafoe", + "Emily Watson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Fireproof", + "year": 2008, + "cast": [ + "Kirk Cameron", + "Erin Bethea" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "First Sunday", + "year": 2008, + "cast": [ + "Ice Cube", + "Katt Williams", + "Tracy Morgan" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Flash of Genius", + "year": 2008, + "cast": [ + "Greg Kinnear" + ], + "genres": [ + "Biography", + "Drama" + ] + }, + { + "title": "Fool's Gold", + "year": 2008, + "cast": [ + "Matthew McConaughey", + "Kate Hudson" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Forbidden Kingdom", + "year": 2008, + "cast": [ + "Jackie Chan", + "Jet Li", + "Michael Angarano", + "Liu Yifei" + ], + "genres": [ + "Martial Arts" + ] + }, + { + "title": "Forever Strong", + "year": 2008, + "cast": [ + "Sean Astin", + "Penn Badgley", + "Sean Faris" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Forgetting Sarah Marshall", + "year": 2008, + "cast": [ + "Jason Segel", + "Kristen Bell", + "Mila Kunis", + "Russell Brand" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Four Christmases", + "year": 2008, + "cast": [ + "Vince Vaughn", + "Reese Witherspoon", + "Robert Duvall", + "Sissy Spacek", + "Jon Voight", + "Mary Steenburgen" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Frost/Nixon", + "year": 2008, + "cast": [ + "Frank Langella", + "Michael Sheen", + "Kevin Bacon", + "Sam Rockwell", + "Toby Jones", + "Oliver Platt", + "Rebecca Hall" + ], + "genres": [ + "Drama", + "Biography" + ] + }, + { + "title": "Frozen River", + "year": 2008, + "cast": [ + "Melissa Leo", + "Misty Upham", + "Michael O'Keefe", + "Mark Boone, Jr." + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Funny Games", + "year": 2008, + "cast": [ + "Naomi Watts", + "Tim Roth", + "Michael Pitt", + "Brady Corbet" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Garden", + "year": 2008, + "cast": [ + "history of the", + "South Central Farm" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Garden Party", + "year": 2008, + "cast": [ + "Vinessa Shaw", + "Willa Holland" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Get Smart", + "year": 2008, + "cast": [ + "Steve Carell", + "Anne Hathaway", + "Dwayne Johnson", + "Alan Arkin", + "Terry Crews", + "James Caan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Ghost Town", + "year": 2008, + "cast": [ + "Ricky Gervais", + "Téa Leoni", + "Greg Kinnear" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Gran Torino", + "year": 2008, + "cast": [ + "Clint Eastwood" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hamlet 2", + "year": 2008, + "cast": [ + "Steve Coogan", + "Catherine Keener", + "David Arquette" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hancock", + "year": 2008, + "cast": [ + "Will Smith", + "Charlize Theron", + "Jason Bateman" + ], + "genres": [ + "Superhero" + ] + }, + { + "title": "Hannah Montana & Miley Cyrus: Best of Both Worlds Concert", + "year": 2008, + "cast": [ + "Miley Cyrus", + "Jonas Brothers", + "Kenny Ortega", + "Billy Ray Cyrus" + ], + "genres": [ + "Performance" + ] + }, + { + "title": "The Happening", + "year": 2008, + "cast": [ + "Mark Wahlberg", + "Zooey Deschanel", + "John Leguizamo", + "Betty Buckley" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Harold", + "year": 2008, + "cast": [ + "Spencer Breslin", + "Cuba Gooding, Jr.", + "Nikki Blonsky", + "Ally Sheedy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Harold & Kumar Escape from Guantanamo Bay", + "year": 2008, + "cast": [ + "John Cho", + "Kal Penn" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Haunting of Molly Hartley", + "year": 2008, + "cast": [ + "Haley Bennett", + "Chace Crawford", + "AnnaLynne McCord", + "Shannon Marie Woodward" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Hellboy II: The Golden Army", + "year": 2008, + "cast": [ + "Ron Perlman", + "Selma Blair", + "Doug Jones", + "Luke Goss" + ], + "genres": [ + "Action", + "Superhero" + ] + }, + { + "title": "Henry Poole Is Here", + "year": 2008, + "cast": [ + "Luke Wilson", + "Radha Mitchell", + "George Lopez" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Hero Wanted", + "year": 2008, + "cast": [ + "Cuba Gooding, Jr.", + "Ray Liotta" + ], + "genres": [ + "Action" + ] + }, + { + "title": "High School Musical 3: Senior Year", + "year": 2008, + "cast": [ + "Zac Efron", + "Vanessa Hudgens", + "Ashley Tisdale", + "Corbin Bleu" + ], + "genres": [ + "Musical", + "Family" + ] + }, + { + "title": "Horton Hears a Who!", + "year": 2008, + "cast": [ + "Jim Carrey", + "Steve Carell", + "Carol Burnett", + "Dan Fogler" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "The Hottie and the Nottie", + "year": 2008, + "cast": [ + "Paris Hilton", + "Joel David Moore", + "Christine Lakin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The House Bunny", + "year": 2008, + "cast": [ + "Anna Faris", + "Emma Stone", + "Colin Hanks", + "Katharine McPhee" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Igor", + "year": 2008, + "cast": [ + "John Cusack", + "Steve Buscemi", + "John Cleese", + "Jennifer Coolidge" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "In Bruges", + "year": 2008, + "cast": [ + "Colin Farrell", + "Brendan Gleeson", + "Ralph Fiennes" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Incredible Hulk", + "year": 2008, + "cast": [ + "Edward Norton", + "Liv Tyler", + "Tim Roth", + "William Hurt" + ], + "genres": [ + "Superhero" + ] + }, + { + "title": "Indiana Jones and the Kingdom of the Crystal Skull", + "year": 2008, + "cast": [ + "Harrison Ford", + "Karen Allen", + "Shia LaBeouf", + "Cate Blanchett", + "Jim Broadbent", + "Ray Winstone" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Inkheart", + "year": 2008, + "cast": [ + "Brendan Fraser", + "Eliza Bennett", + "Sienna Guillory", + "Paul Bettany", + "Helen Mirren", + "Andy Serkis" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Iron Man", + "year": 2008, + "cast": [ + "Robert Downey, Jr.", + "Terrence Howard", + "Gwyneth Paltrow", + "Jeff Bridges" + ], + "genres": [ + "Superhero" + ] + }, + { + "title": "Journey to the Center of the Earth", + "year": 2008, + "cast": [ + "Brendan Fraser", + "Josh Hutcherson", + "Anita Briem" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Jumper", + "year": 2008, + "cast": [ + "Hayden Christensen", + "Samuel L. Jackson", + "Rachel Bilson", + "Jamie Bell", + "Diane Lane", + "Michael Rooker" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Kit Kittredge: An American Girl", + "year": 2008, + "cast": [ + "Abigail Breslin", + "Chris O'Donnell", + "Julia Ormond", + "Stanley Tucci" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Kung Fu Panda", + "year": 2008, + "cast": [ + "Jack Black", + "Jackie Chan", + "Dustin Hoffman", + "Angelina Jolie", + "Lucy Liu", + "Seth Rogen" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Lakeview Terrace", + "year": 2008, + "cast": [ + "Samuel L. Jackson", + "Kerry Washington", + "Patrick Wilson" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Last Chance Harvey", + "year": 2008, + "cast": [ + "Dustin Hoffman", + "Emma Thompson", + "Eileen Atkins", + "Kathy Baker", + "James Brolin" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Leatherheads", + "year": 2008, + "cast": [ + "George Clooney", + "Renée Zellweger", + "John Krasinski" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Love Guru", + "year": 2008, + "cast": [ + "Mike Myers", + "Jessica Alba", + "Romany Malco", + "Justin Timberlake" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Longshots", + "year": 2008, + "cast": [ + "Ice Cube", + "Keke Palmer", + "Dash Mihok", + "Tasha Smith" + ], + "genres": [ + "Family" + ] + }, + { + "title": "The Lucky Ones", + "year": 2008, + "cast": [ + "Rachel McAdams", + "Tim Robbins", + "Michael Peña" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Mad Money", + "year": 2008, + "cast": [ + "Diane Keaton", + "Queen Latifah", + "Katie Holmes" + ], + "genres": [ + "Comedy", + "Crime" + ] + }, + { + "title": "Madagascar: Escape 2 Africa", + "year": 2008, + "cast": [ + "Ben Stiller", + "Chris Rock", + "Jada Pinkett Smith", + "David Schwimmer" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Made of Honor", + "year": 2008, + "cast": [ + "Patrick Dempsey", + "Michelle Monaghan", + "Kevin McKidd", + "Kathleen Quinlan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mamma Mia!", + "year": 2008, + "cast": [ + "Meryl Streep", + "Amanda Seyfried", + "Pierce Brosnan", + "Colin Firth", + "Stellan Skarsgård", + "Christine Baranski" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Man on Wire", + "year": 2008, + "cast": [ + "Philippe Petit", + "'s 1974 high-wire walk between", + "the Twin Towers" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Marley & Me", + "year": 2008, + "cast": [ + "Owen Wilson", + "Jennifer Aniston" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Max Payne", + "year": 2008, + "cast": [ + "Mark Wahlberg", + "Mila Kunis", + "Beau Bridges", + "Ludacris", + "Chris O'Donnell", + "Donal Logue", + "Olga Kurylenko" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Meet Dave", + "year": 2008, + "cast": [ + "Eddie Murphy", + "Gabrielle Union", + "Elizabeth Banks", + "Ed Helms" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Meet the Browns", + "year": 2008, + "cast": [ + "Tyler Perry", + "Angela Bassett", + "Jenifer Lewis", + "Rick Fox" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Meet the Spartans", + "year": 2008, + "cast": [ + "Sean Maguire", + "Ken Davitian", + "Carmen Electra", + "Diedrich Bader", + "Kevin Sorbo", + "Travis Van Winkle" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Midnight Meat Train", + "year": 2008, + "cast": [ + "Bradley Cooper", + "Leslie Bibb", + "Tony Curran" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Milk", + "year": 2008, + "cast": [ + "Sean Penn", + "Josh Brolin", + "Emile Hirsch", + "James Franco", + "Diego Luna" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Miracle at St. Anna", + "year": 2008, + "cast": [ + "Derek Luke", + "Michael Ealy", + "Laz Alonso", + "Omar Benson Miller", + "Pierfrancesco Favino", + "Valentina Cervi" + ], + "genres": [ + "War" + ] + }, + { + "title": "Mirrors", + "year": 2008, + "cast": [ + "Kiefer Sutherland", + "Paula Patton", + "Amy Smart" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Mummy: Tomb of the Dragon Emperor", + "year": 2008, + "cast": [ + "Brendan Fraser", + "Jet Li", + "Maria Bello", + "John Hannah" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "My Best Friend's Girl", + "year": 2008, + "cast": [ + "Dane Cook", + "Kate Hudson", + "Jason Biggs", + "Alec Baldwin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "My Sassy Girl", + "year": 2008, + "cast": [ + "Elisha Cuthbert", + "Jesse Bradford", + "Chris Sarandon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Never Back Down", + "year": 2008, + "cast": [ + "Djimon Hounsou", + "Amber Heard", + "Sean Faris", + "Cam Gigandet" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Nick and Norah's Infinite Playlist", + "year": 2008, + "cast": [ + "Michael Cera", + "Kat Dennings", + "Alexis Dziena", + "Ari Graynor", + "Aaron Yoo", + "Jay Baruchel" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Nights in Rodanthe", + "year": 2008, + "cast": [ + "Richard Gere", + "Diane Lane" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Nim's Island", + "year": 2008, + "cast": [ + "Abigail Breslin", + "Jodie Foster", + "Gerard Butler" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Nothing But the Truth", + "year": 2008, + "cast": [ + "Kate Beckinsale", + "Matt Dillon", + "Angela Bassett", + "Alan Alda", + "Vera Farmiga", + "David Schwimmer", + "Noah Wyle" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Nothing Like the Holidays", + "year": 2008, + "cast": [ + "Luis Guzmán", + "John Leguizamo", + "Debra Messing", + "Alfred Molina" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "One Missed Call", + "year": 2008, + "cast": [ + "Edward Burns", + "Shannyn Sossamon", + "Ana Claudia Talancón", + "Azura Skye" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Other Boleyn Girl", + "year": 2008, + "cast": [ + "Natalie Portman", + "Scarlett Johansson", + "Eric Bana" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Over Her Dead Body", + "year": 2008, + "cast": [ + "Eva Longoria", + "Paul Rudd", + "Lake Bell", + "Jason Biggs" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Passengers", + "year": 2008, + "cast": [ + "Anne Hathaway", + "Patrick Wilson", + "David Morse", + "Andre Braugher" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Pathology", + "year": 2008, + "cast": [ + "Milo Ventimiglia", + "Michael Weston", + "Alyssa Milano", + "Lauren Lee Smith" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Patti Smith: Dream of Life", + "year": 2008, + "cast": [ + "the career of", + "Patti Smith" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Pineapple Express", + "year": 2008, + "cast": [ + "Seth Rogen", + "James Franco" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Pirates Who Don't Do Anything: A VeggieTales Movie", + "year": 2008, + "cast": [ + "Mike Nawrocki", + "Phil Vischer", + "Tim Hodge" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Pray the Devil Back to Hell", + "year": 2008, + "cast": [ + "women in", + "Liberia" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Pride and Glory", + "year": 2008, + "cast": [ + "Edward Norton", + "Colin Farrell" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Prom Night", + "year": 2008, + "cast": [ + "Brittany Snow", + "Scott Porter", + "Johnathon Schaech", + "Idris Elba" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Promotion", + "year": 2008, + "cast": [ + "Seann William Scott", + "John C. Reilly" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Proud American", + "year": 2008, + "cast": [ + "the American spirit" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Punisher: War Zone", + "year": 2008, + "cast": [ + "Ray Stevenson", + "Dominic West", + "Doug Hutchison", + "Wayne Knight" + ], + "genres": [ + "Superhero" + ] + }, + { + "title": "Quantum of Solace", + "year": 2008, + "cast": [ + "Daniel Craig", + "Olga Kurylenko", + "Mathieu Amalric" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Quarantine", + "year": 2008, + "cast": [ + "Jennifer Carpenter", + "Steve Harris", + "Jay Hernandez", + "Columbus Short" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Rachel Getting Married", + "year": 2008, + "cast": [ + "Anne Hathaway", + "Debra Winger", + "Rosemarie DeWitt" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Rambo", + "year": 2008, + "cast": [ + "Sylvester Stallone", + "Julie Benz" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Reader", + "year": 2008, + "cast": [ + "Kate Winslet", + "Ralph Fiennes", + "David Kross", + "Lena Olin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Redbelt", + "year": 2008, + "cast": [ + "Chiwetel Ejiofor", + "Tim Allen", + "Alice Braga", + "Randy Couture", + "Ricky Jay", + "Joe Mantegna", + "Emily Mortimer", + "David Paymer", + "Rebecca Pidgeon", + "Rodrigo Santoro" + ], + "genres": [ + "Drama", + "Martial Arts" + ] + }, + { + "title": "Religulous", + "year": 2008, + "cast": [ + "organized religion and", + "religious belief" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Rent: Filmed Live on Broadway", + "year": 2008, + "cast": [ + "Rent" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Repo! The Genetic Opera", + "year": 2008, + "cast": [ + "Alexa Vega", + "Anthony Stewart Head", + "Sarah Brightman", + "Paris Hilton" + ], + "genres": [ + "Horror", + "Musical" + ] + }, + { + "title": "Revolutionary Road", + "year": 2008, + "cast": [ + "Leonardo DiCaprio", + "Kate Winslet", + "Michael Shannon", + "Kathryn Hahn", + "Kathy Bates" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Righteous Kill", + "year": 2008, + "cast": [ + "Robert De Niro", + "Al Pacino", + "Carla Gugino", + "Curtis Jackson", + "Donnie Wahlberg" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Rocker", + "year": 2008, + "cast": [ + "Rainn Wilson", + "Christina Applegate", + "Jeff Garlin", + "Josh Gad", + "Teddy Geiger", + "Emma Stone" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Role Models", + "year": 2008, + "cast": [ + "Seann William Scott", + "Paul Rudd", + "Christopher Mintz-Plasse", + "Bobb'e J. Thompson", + "Jane Lynch", + "Elizabeth Banks" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Ruins", + "year": 2008, + "cast": [ + "Jonathan Tucker", + "Jena Malone", + "Shawn Ashmore", + "Laura Ramsey", + "Joe Anderson" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Saw V", + "year": 2008, + "cast": [ + "Tobin Bell", + "Julie Benz", + "Meagan Good", + "Costas Mandylor" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Secret Life of Bees", + "year": 2008, + "cast": [ + "Queen Latifah", + "Dakota Fanning", + "Jennifer Hudson", + "Alicia Keys", + "Sophie Okenedo", + "Paul Bettany", + "Tristan Wilds" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Semi-Pro", + "year": 2008, + "cast": [ + "Will Ferrell", + "Woody Harrelson", + "André Benjamin" + ], + "genres": [ + "Comedy", + "Sports" + ] + }, + { + "title": "Seven Pounds", + "year": 2008, + "cast": [ + "Will Smith", + "Rosario Dawson", + "Woody Harrelson", + "Barry Pepper" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sex and the City", + "year": 2008, + "cast": [ + "Sarah Jessica Parker", + "Kim Cattrall", + "Kristin Davis", + "Cynthia Nixon", + "Chris Noth" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Sex Drive", + "year": 2008, + "cast": [ + "Josh Zuckerman", + "Amanda Crew", + "Clark Duke", + "Seth Green", + "James Marsden" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Shutter", + "year": 2008, + "cast": [ + "Joshua Jackson", + "Rachael Taylor", + "James Kyson Lee", + "David Denman" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Sisterhood of the Traveling Pants 2", + "year": 2008, + "cast": [ + "Amber Tamblyn", + "America Ferrera", + "Blake Lively", + "Alexis Bledel" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Sleepwalking", + "year": 2008, + "cast": [ + "Nick Stahl", + "AnnaSophia Robb", + "Charlize Theron", + "Woody Harrelson", + "Dennis Hopper" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Smart People", + "year": 2008, + "cast": [ + "Dennis Quaid", + "Sarah Jessica Parker", + "Ellen Page", + "Thomas Haden Church", + "Ashton Holmes" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Soul Men", + "year": 2008, + "cast": [ + "Samuel L. Jackson", + "Bernie Mac" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "Space Chimps", + "year": 2008, + "cast": [ + "Cheryl Hines", + "Stanley Tucci", + "Kenan Thompson", + "Andy Samberg" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Speed Racer", + "year": 2008, + "cast": [ + "Emile Hirsch", + "Christina Ricci", + "John Goodman", + "Susan Sarandon", + "Matthew Fox" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Spiderwick Chronicles", + "year": 2008, + "cast": [ + "Freddie Highmore", + "Sarah Bolger", + "Mary-Louise Parker", + "David Strathairn" + ], + "genres": [ + "Family", + "Fantasy" + ] + }, + { + "title": "Spike", + "year": 2008, + "cast": [ + "Edward Gusts", + "Sarah Livingston Evans", + "Anna-Marie Wayne" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Spirit", + "year": 2008, + "cast": [ + "Gabriel Macht", + "Samuel L. Jackson", + "Scarlett Johansson", + "Eva Mendes", + "Paz Vega", + "Dan Lauria" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Spy School", + "year": 2008, + "cast": [ + "Forrest Landis", + "AnnaSophia Robb", + "Rider Strong", + "Roger Bart" + ], + "genres": [ + "Family", + "Spy" + ] + }, + { + "title": "Star Wars: The Clone Wars", + "year": 2008, + "cast": [ + "James Arnold Taylor", + "Matt Lanter", + "Ashley Eckstein", + "Tom Kane" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Step Brothers", + "year": 2008, + "cast": [ + "Will Ferrell", + "John C. Reilly", + "Richard Jenkins", + "Mary Steenburgen", + "Adam Scott", + "Kathryn Hahn" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Step Up 2: The Streets", + "year": 2008, + "cast": [ + "Briana Evigan", + "Robert Hoffman", + "Will Kemp", + "Adam G. Sevani" + ], + "genres": [ + "Dance" + ] + }, + { + "title": "Stop-Loss", + "year": 2008, + "cast": [ + "Ryan Phillippe", + "Abbie Cornish", + "Channing Tatum", + "Joseph Gordon-Levitt", + "Rob Brown" + ], + "genres": [ + "War" + ] + }, + { + "title": "Strange Wilderness", + "year": 2008, + "cast": [ + "Steve Zahn", + "Allen Covert", + "Jonah Hill" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Strangers", + "year": 2008, + "cast": [ + "Liv Tyler", + "Scott Speedman" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Street Kings", + "year": 2008, + "cast": [ + "Keanu Reeves", + "Forest Whitaker", + "Hugh Laurie", + "Chris Evans", + "Common", + "The Game" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Superhero Movie", + "year": 2008, + "cast": [ + "Drake Bell", + "Sara Paxton", + "Leslie Nielsen", + "Christopher McDonald" + ], + "genres": [ + "Comedy", + "Satire" + ] + }, + { + "title": "Swing Vote", + "year": 2008, + "cast": [ + "Kevin Costner", + "Paula Patton", + "Kelsey Grammer", + "Dennis Hopper" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Taken", + "year": 2008, + "cast": [ + "Liam Neeson", + "Famke Janssen", + "Maggie Grace" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Tale of Despereaux", + "year": 2008, + "cast": [ + "Matthew Broderick", + "Emma Watson", + "Dustin Hoffman", + "Robbie Coltrane" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Traitor", + "year": 2008, + "cast": [ + "Don Cheadle", + "Guy Pearce", + "Jeff Daniels" + ], + "genres": [ + "Spy" + ] + }, + { + "title": "Tropic Thunder", + "year": 2008, + "cast": [ + "Ben Stiller", + "Jack Black", + "Robert Downey, Jr.", + "Steve Coogan", + "Nick Nolte", + "Tom Cruise" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Trouble the Water", + "year": 2008, + "cast": [ + "two survivors of", + "Hurricane Katrina" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Twilight", + "year": 2008, + "cast": [ + "Kristen Stewart", + "Robert Pattinson", + "Ashley Greene", + "Peter Facinelli", + "Billy Burke", + "Anna Kendrick" + ], + "genres": [ + "Fantasy", + "Romance" + ] + }, + { + "title": "U2 3D", + "year": 2008, + "cast": [ + "Bono", + "The Edge", + "Adam Clayton", + "Larry Mullen, Jr." + ], + "genres": [ + "Performance" + ] + }, + { + "title": "Untraceable", + "year": 2008, + "cast": [ + "Diane Lane", + "Colin Hanks", + "Billy Burke", + "Joseph Michael Cross" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Valkyrie", + "year": 2008, + "cast": [ + "Tom Cruise", + "Kenneth Branagh", + "Eddie Izzard", + "Bill Nighy" + ], + "genres": [ + "War" + ] + }, + { + "title": "Vantage Point", + "year": 2008, + "cast": [ + "Dennis Quaid", + "Matthew Fox", + "Forest Whitaker", + "Sigourney Weaver", + "William Hurt" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Vicky Cristina Barcelona", + "year": 2008, + "cast": [ + "Javier Bardem", + "Penélope Cruz", + "Scarlett Johansson", + "Rebecca Hall", + "Patricia Clarkson" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Visioneers", + "year": 2008, + "cast": [ + "Zach Galifianakis", + "Judy Greer", + "James LeGros" + ], + "genres": [ + "Satire" + ] + }, + { + "title": "W.", + "year": 2008, + "cast": [ + "Josh Brolin", + "James Cromwell", + "Ellen Burstyn", + "Elizabeth Banks", + "Thandie Newton", + "Richard Dreyfuss", + "Toby Jones", + "Jeffrey Wright", + "Scott Glenn" + ], + "genres": [ + "Biography", + "Drama" + ] + }, + { + "title": "The Wackness", + "year": 2008, + "cast": [ + "Ben Kingsley", + "Josh Peck", + "Famke Janssen", + "Olivia Thirlby", + "Mary-Kate Olsen", + "Method Man" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "WALL-E", + "year": 2008, + "cast": [ + "Ben Burtt", + "Elissa Knight", + "Jeff Garlin", + "Fred Willard" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Waltz with Bashir", + "year": 2008, + "cast": [ + "Ari Folman" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Wanted", + "year": 2008, + "cast": [ + "James McAvoy", + "Morgan Freeman", + "Terence Stamp", + "Angelina Jolie" + ], + "genres": [ + "Action" + ] + }, + { + "title": "War, Inc.", + "year": 2008, + "cast": [ + "John Cusack", + "Hilary Duff", + "Marisa Tomei", + "Joan Cusack" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Welcome Home Roscoe Jenkins", + "year": 2008, + "cast": [ + "Martin Lawrence", + "Margaret Avery", + "Joy Bryant", + "Louis C.K." + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "What Doesn't Kill You", + "year": 2008, + "cast": [ + "Mark Ruffalo", + "Ethan Hawke", + "Amanda Peet", + "Donnie Wahlberg" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "What Happens in Vegas", + "year": 2008, + "cast": [ + "Cameron Diaz", + "Ashton Kutcher", + "Dennis Farina" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "What Just Happened", + "year": 2008, + "cast": [ + "Robert De Niro", + "Sean Penn", + "Catherine Keener", + "John Turturro", + "Kristen Stewart", + "Stanley Tucci", + "Bruce Willis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Witless Protection", + "year": 2008, + "cast": [ + "Larry the Cable Guy", + "Jenny McCarthy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Women", + "year": 2008, + "cast": [ + "Meg Ryan", + "Annette Bening", + "Eva Mendes", + "Debra Messing", + "Jada Pinkett Smith" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Wrestler", + "year": 2008, + "cast": [ + "Mickey Rourke", + "Marisa Tomei", + "Evan Rachel Wood" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The X-Files: I Want to Believe", + "year": 2008, + "cast": [ + "David Duchovny", + "Gillian Anderson", + "Amanda Peet" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Yes Man", + "year": 2008, + "cast": [ + "Jim Carrey" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "You Don't Mess with the Zohan", + "year": 2008, + "cast": [ + "Adam Sandler", + "John Turturro", + "Emmanuelle Chriqui", + "Nick Swardson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Zack and Miri Make a Porno", + "year": 2008, + "cast": [ + "Seth Rogen", + "Elizabeth Banks" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "(500) Days of Summer", + "year": 2009, + "cast": [ + "Joseph Gordon-Levitt", + "Zooey Deschanel" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "12 Rounds", + "year": 2009, + "cast": [ + "John Cena", + "Ashley Scott", + "Steve Harris", + "Aidan Gillen", + "Brian J. White", + "Taylor Cole" + ], + "genres": [ + "Action" + ] + }, + { + "title": "17 Again", + "year": 2009, + "cast": [ + "Zac Efron", + "Leslie Mann", + "Thomas Lennon", + "Matthew Perry", + "Melora Hardin", + "Michelle Trachtenberg", + "Sterling Knight" + ], + "genres": [ + "Comedy", + "Teen" + ] + }, + { + "title": "2012", + "year": 2009, + "cast": [ + "John Cusack", + "Amanda Peet", + "Danny Glover", + "Thandie Newton", + "Oliver Platt", + "Chiwetel Ejiofor", + "Woody Harrelson" + ], + "genres": [ + "Disaster" + ] + }, + { + "title": "9", + "year": 2009, + "cast": [ + "Elijah Wood", + "John C. Reilly", + "Jennifer Connelly", + "Christopher Plummer", + "Crispin Glover", + "Martin Landau" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Adam", + "year": 2009, + "cast": [ + "Hugh Dancy", + "Rose Byrne", + "Peter Gallagher", + "Amy Irving", + "Frankie Faison", + "Mark Linn-Baker", + "Karina Arroyave" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Adventureland", + "year": 2009, + "cast": [ + "Jesse Eisenberg", + "Kristen Stewart", + "Martin Starr", + "Bill Hader", + "Kristen Wiig", + "Margarita Levieva", + "Ryan Reynolds" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "After.Life", + "year": 2009, + "cast": [ + "Christina Ricci", + "Liam Neeson", + "Justin Long", + "Celia Weston" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Alien Trespass", + "year": 2009, + "cast": [ + "Eric McCormack", + "Jenni Baird", + "Dan Lauria", + "Robert Patrick" + ], + "genres": [ + "Comedy", + "Science Fiction" + ] + }, + { + "title": "Aliens in the Attic", + "year": 2009, + "cast": [ + "Robert Hoffman", + "Ashley Tisdale", + "Carter Jenkins", + "Austin Butler", + "Kevin Nealon", + "Doris Roberts" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "All About Steve", + "year": 2009, + "cast": [ + "Sandra Bullock", + "Bradley Cooper", + "Thomas Haden Church" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Alvin and the Chipmunks: The Squeakquel", + "year": 2009, + "cast": [ + "Jason Lee", + "David Cross", + "Zachary Levi", + "Justin Long", + "Matthew Gray Gubler", + "Jesse McCartney", + "Anna Faris", + "Christina Applegate", + "Amy Poehler" + ], + "genres": [ + "Family", + "Musical" + ] + }, + { + "title": "Amelia", + "year": 2009, + "cast": [ + "Hilary Swank", + "Richard Gere", + "Ewan McGregor" + ], + "genres": [ + "Biography", + "Drama" + ] + }, + { + "title": "American Violet", + "year": 2009, + "cast": [ + "Nicole Beharie", + "Tim Blake Nelson", + "Will Patton", + "Michael O'Keefe", + "Xzibit", + "Charles S. Dutton", + "Alfre Woodard" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Angels & Demons", + "year": 2009, + "cast": [ + "Tom Hanks", + "Ayelet Zurer", + "Ewan McGregor", + "Stellan Skarsgård", + "Armin Mueller-Stahl", + "Pierfrancesco Favino", + "Nikolaj Lie Kaas" + ], + "genres": [ + "Adventure", + "Mystery" + ] + }, + { + "title": "The Answer Man", + "year": 2009, + "cast": [ + "Jeff Daniels", + "Lauren Graham", + "Lou Taylor Pucci", + "Kat Dennings", + "Olivia Thirlby" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Arcadia Lost", + "year": 2009, + "cast": [ + "Nick Nolte", + "Haley Bennett", + "Carter Jenkins", + "Dato Bakhtadze", + "Lachlan Buchanan", + "James Ivory" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Armored", + "year": 2009, + "cast": [ + "Matt Dillon", + "Jean Reno", + "Laurence Fishburne", + "Milo Ventimiglia", + "Skeet Ulrich", + "Columbus Short", + "Amaury Nolasco", + "Fred Ward" + ], + "genres": [ + "Action", + "Crime", + "Drama" + ] + }, + { + "title": "Assassination of a High School President", + "year": 2009, + "cast": [ + "Bruce Willis", + "Reece Thompson", + "Mischa Barton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Astro Boy", + "year": 2009, + "cast": [ + "Freddie Highmore", + "Nicolas Cage", + "Donald Sutherland", + "Nathan Lane", + "Bill Nighy", + "Eugene Levy", + "Kristen Bell" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Avatar", + "year": 2009, + "cast": [ + "Sam Worthington", + "Zoe Saldana", + "Sigourney Weaver", + "Michelle Rodriguez", + "Stephen Lang", + "Laz Alonso", + "Giovanni Ribisi", + "Joel Moore", + "Wes Studi" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Away We Go", + "year": 2009, + "cast": [ + "John Krasinski", + "Maya Rudolph", + "Jeff Daniels", + "Maggie Gyllenhaal", + "Allison Janney", + "Chris Messina", + "Catherine O'Hara", + "Paul Schneider", + "Jim Gaffigan", + "Melanie Lynskey", + "Josh Hamilton" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Bad Lieutenant: Port of Call New Orleans", + "year": 2009, + "cast": [ + "Nicolas Cage", + "Eva Mendes", + "Val Kilmer", + "Xzibit" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Bandslam", + "year": 2009, + "cast": [ + "Aly Michalka", + "Vanessa Hudgens", + "Gaelan Connell", + "Scott Porter", + "Lisa Kudrow" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Battle for Terra", + "year": 2009, + "cast": [ + "Evan Rachel Wood", + "Brian Cox", + "James Garner", + "Chris Evans", + "Danny Glover", + "Amanda Peet", + "David Cross", + "Justin Long", + "Dennis Quaid", + "Luke Wilson" + ], + "genres": [ + "Science Fiction", + "Animated" + ] + }, + { + "title": "Berdella[2]", + "year": 2009, + "cast": [ + "Vito Spino", + "Seth Correa", + "Marc Saleme", + "Steve Williams" + ], + "genres": [ + "Biography", + "Horror" + ] + }, + { + "title": "Beyond a Reasonable Doubt", + "year": 2009, + "cast": [ + "Michael Douglas", + "Jesse Metcalfe", + "Amber Tamblyn", + "Orlando Jones" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Big Fan", + "year": 2009, + "cast": [ + "Patton Oswalt", + "Kevin Corrigan", + "Michael Rapaport", + "Marcia Jean Kurtz" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Blind Side", + "year": 2009, + "cast": [ + "Sandra Bullock", + "Kathy Bates", + "Tim McGraw", + "Ray McKinnon", + "Quinton Aaron" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Boogie Town", + "year": 2009, + "cast": [ + "Marques Houston", + "Brenda Song" + ], + "genres": [ + "Dance" + ] + }, + { + "title": "The Boondock Saints II: All Saints Day", + "year": 2009, + "cast": [ + "Sean Patrick Flanery", + "Norman Reedus", + "Clifton Collins, Jr.", + "Julie Benz", + "Judd Nelson", + "Bob Marley", + "Brian Mahoney", + "David Ferry", + "David Della Rocco", + "Peter Fonda", + "Billy Connolly" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Box", + "year": 2009, + "cast": [ + "Cameron Diaz", + "James Marsden", + "Frank Langella", + "James Rebhorn", + "Holmes Osborne", + "Gillian Jacobs" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Bride Wars", + "year": 2009, + "cast": [ + "Kate Hudson", + "Anne Hathaway", + "Candice Bergen" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Brothers", + "year": 2009, + "cast": [ + "Tobey Maguire", + "Jake Gyllenhaal", + "Natalie Portman", + "Sam Shepard" + ], + "genres": [ + "War" + ] + }, + { + "title": "The Brothers Bloom", + "year": 2009, + "cast": [ + "Adrien Brody", + "Mark Ruffalo", + "Rachel Weisz", + "Rinko Kikuchi", + "Robbie Coltrane", + "Maximilian Schell" + ], + "genres": [ + "Comedy", + "Crime" + ] + }, + { + "title": "Brother's War", + "year": 2009, + "cast": [ + "Tino Struckmann", + "Michael Berryman" + ], + "genres": [ + "War" + ] + }, + { + "title": "Brothers at War", + "year": 2009, + "cast": [ + "Soldiers in the", + "Iraq War" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Brüno", + "year": 2009, + "cast": [ + "Sacha Baron Cohen" + ], + "genres": [ + "Satire" + ] + }, + { + "title": "C Me Dance", + "year": 2009, + "cast": [ + "Greg Robbins", + "Christina DeMarco", + "Laura Romeo", + "Peter Kent" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Capitalism: A Love Story", + "year": 2009, + "cast": [ + "The", + "financial crisis of 2007–2010" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Carriers", + "year": 2009, + "cast": [ + "Lou Taylor Pucci", + "Chris Pine", + "Piper Perabo", + "Emily VanCamp", + "Christopher Meloni" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Chaos Experiment", + "year": 2009, + "cast": [ + "Val Kilmer", + "Armand Assante", + "Eric Roberts" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Christmas Carol", + "year": 2009, + "cast": [ + "Jim Carrey", + "Gary Oldman", + "Cary Elwes", + "Colin Firth" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Cirque du Freak: The Vampire's Assistant", + "year": 2009, + "cast": [ + "John C. Reilly", + "Ken Watanabe", + "Josh Hutcherson", + "Chris Massoglia", + "Michael Cerveris", + "Ray Stevenson", + "Patrick Fugit", + "Willem Dafoe", + "Salma Hayek" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Cloudy with a Chance of Meatballs", + "year": 2009, + "cast": [ + "Bill Hader", + "Anna Faris", + "James Caan", + "Andy Samberg", + "Bruce Campbell", + "Mr. T", + "Bobb'e J. Thompson", + "Benjamin Bratt", + "Neil Patrick Harris", + "Al Roker", + "Lauren Graham", + "Will Forte" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Cold Souls", + "year": 2009, + "cast": [ + "Paul Giamatti", + "Emily Watson", + "David Strathairn", + "Dina Korzun" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Collector", + "year": 2009, + "cast": [ + "Josh Stewart", + "Michael Reilly Burke", + "Andrea Roth", + "Juan Fernández" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Confessions of a Shopaholic", + "year": 2009, + "cast": [ + "Isla Fisher", + "Hugh Dancy", + "Joan Cusack", + "John Goodman", + "John Lithgow", + "Kristin Scott Thomas", + "Leslie Bibb" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Coraline", + "year": 2009, + "cast": [ + "Dakota Fanning", + "Teri Hatcher", + "Ian McShane", + "Jennifer Saunders", + "Dawn French" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Couples Retreat", + "year": 2009, + "cast": [ + "Vince Vaughn", + "Jon Favreau", + "Jason Bateman", + "Faizon Love", + "Kristin Davis", + "Malin Åkerman", + "Kristen Bell", + "Kali Hawk", + "Jean Reno" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Cove", + "year": 2009, + "cast": [ + "The annual killing of", + "dolphins", + "at", + "Taiji", + "Wakayama" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Crank: High Voltage", + "year": 2009, + "cast": [ + "Jason Statham", + "Amy Smart", + "Clifton Collins, Jr.", + "Efren Ramirez", + "Dwight Yoakam", + "Reno Wilson", + "Bai Ling", + "David Carradine" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Crazy Heart", + "year": 2009, + "cast": [ + "Jeff Bridges", + "Maggie Gyllenhaal", + "Robert Duvall", + "Colin Farrell" + ], + "genres": [ + "Drama", + "Musical" + ] + }, + { + "title": "The Cross", + "year": 2009, + "cast": [ + "Arthur Blessitt" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Crossing Over", + "year": 2009, + "cast": [ + "Harrison Ford", + "Sean Penn", + "Jim Sturgess", + "Ashley Judd", + "Alice Eve", + "Alice Braga", + "Cliff Curtis", + "Summer Bishil", + "Ray Liotta" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dance Flick", + "year": 2009, + "cast": [ + "Shoshana Bush", + "Damon Wayans, Jr." + ], + "genres": [ + "Dance", + "Satire" + ] + }, + { + "title": "Did You Hear About the Morgans?", + "year": 2009, + "cast": [ + "Hugh Grant", + "Sarah Jessica Parker", + "Sam Elliott", + "Mary Steenburgen", + "Elisabeth Moss", + "Wilford Brimley", + "Michael Kelly" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "District 9", + "year": 2009, + "cast": [ + "Sharlto Copley", + "Jason Cope", + "David James" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Drag Me to Hell", + "year": 2009, + "cast": [ + "Alison Lohman", + "Justin Long", + "Lorna Raver", + "Dileep Rao", + "David Paymer", + "Adriana Barraza" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Dragonball Evolution", + "year": 2009, + "cast": [ + "Justin Chatwin", + "Emmy Rossum", + "Joon Park", + "Chow Yun-fat", + "James Marsters", + "Eriko Tamura", + "Jamie Chung", + "Randall Duk Kim" + ], + "genres": [ + "Action", + "Fantasy" + ] + }, + { + "title": "Duplicity", + "year": 2009, + "cast": [ + "Julia Roberts", + "Clive Owen", + "Tom Wilkinson", + "Paul Giamatti" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Echelon Conspiracy", + "year": 2009, + "cast": [ + "Shane West", + "Edward Burns", + "Ving Rhames", + "Jonathan Pryce", + "Tamara Feldman" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Every Little Step", + "year": 2009, + "cast": [ + "The casting of the 2006", + "Broadway", + "revival", + "of", + "A Chorus Line" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Everybody's Fine", + "year": 2009, + "cast": [ + "Robert De Niro", + "Drew Barrymore", + "Kate Beckinsale", + "Sam Rockwell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Extract", + "year": 2009, + "cast": [ + "Jason Bateman", + "Mila Kunis", + "Kristen Wiig", + "J. K. Simmons", + "Ben Affleck" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Fame", + "year": 2009, + "cast": [ + "Debbie Allen", + "Charles S. Dutton", + "Kelsey Grammer", + "Megan Mullally", + "Bebe Neuwirth", + "Asher Book", + "Kristy Flores", + "Paul Iacono", + "Paul McGill", + "Naturi Naughton", + "Kay Panabaker", + "Kherington Payne", + "Collins Pennie", + "Walter Perez", + "Anna Maria Perez de Taglé" + ], + "genres": [ + "Drama", + "Musical" + ] + }, + { + "title": "Fantastic Mr. Fox", + "year": 2009, + "cast": [ + "George Clooney", + "Meryl Streep", + "Cate Blanchett", + "Anjelica Huston" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Fast & Furious", + "year": 2009, + "cast": [ + "Vin Diesel", + "Paul Walker", + "Michelle Rodriguez", + "Jordana Brewster" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Fighting", + "year": 2009, + "cast": [ + "Channing Tatum", + "Terrence Howard" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Final Destination", + "year": 2009, + "cast": [ + "Bobby Campo", + "Shantel VanSanten", + "Haley Webb", + "Nick Zano", + "Mykelti Williamson" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Fired Up!", + "year": 2009, + "cast": [ + "Nick D'Agosto", + "Eric Christian Olsen", + "Sarah Roemer", + "AnnaLynne McCord", + "Molly Sims", + "John Michael Higgins" + ], + "genres": [ + "Comedy", + "Teen" + ] + }, + { + "title": "Food, Inc.", + "year": 2009, + "cast": [ + "Agricultural food production in United States" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Fragments", + "year": 2009, + "cast": [ + "Kate Beckinsale", + "Dakota Fanning", + "Guy Pearce", + "Josh Hutcherson", + "Forest Whitaker", + "Jennifer Hudson", + "Jackie Earle Haley", + "Jeanne Tripplehorn", + "Embeth Davidtz" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Friday the 13th", + "year": 2009, + "cast": [ + "Jared Padalecki", + "Danielle Panabaker", + "Aaron Yoo", + "Amanda Righetti" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Funny People", + "year": 2009, + "cast": [ + "Adam Sandler", + "Seth Rogen", + "Leslie Mann", + "Eric Bana", + "Jonah Hill", + "RZA", + "Jason Schwartzman" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "G-Force", + "year": 2009, + "cast": [ + "Bill Nighy", + "Will Arnett", + "Zach Galifianakis", + "Nicolas Cage", + "Sam Rockwell", + "Jon Favreau", + "Penélope Cruz", + "Steve Buscemi", + "Tracy Morgan" + ], + "genres": [ + "Family", + "Live Action", + "Animated" + ] + }, + { + "title": "G.I. Joe: The Rise of Cobra", + "year": 2009, + "cast": [ + "Dennis Quaid", + "Channing Tatum", + "Marlon Wayans", + "Saïd Taghmaoui", + "Jonathan Pryce", + "Rachel Nichols", + "Sienna Miller", + "Lee Byung-hun", + "Joseph Gordon-Levitt", + "Christopher Eccleston", + "Adewale Akinnuoye-Agbaje" + ], + "genres": [ + "Action", + "Adventure" + ] + }, + { + "title": "Gallowwalker", + "year": 2009, + "cast": [ + "Wesley Snipes", + "Riley Smith", + "Patrick Bergin" + ], + "genres": [ + "Horror", + "Western" + ] + }, + { + "title": "Gamer", + "year": 2009, + "cast": [ + "Gerard Butler", + "Michael C. Hall", + "Chris \"Ludacris\" Bridges", + "Kyra Sedgwick", + "Amber Valletta", + "Logan Lerman", + "Terry Crews" + ], + "genres": [ + "Action", + "Science Fiction" + ] + }, + { + "title": "Gentlemen Broncos", + "year": 2009, + "cast": [ + "Michael Angarano", + "Jemaine Clement", + "Sam Rockwell", + "Jennifer Coolidge" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Ghosts of Girlfriends Past", + "year": 2009, + "cast": [ + "Matthew McConaughey", + "Jennifer Garner", + "Michael Douglas", + "Breckin Meyer", + "Lacey Chabert", + "Emma Stone", + "Anne Archer", + "Robert Forster", + "Amanda Walsh", + "Noureen DeWulf" + ], + "genres": [ + "Fantasy", + "Romance", + "Comedy" + ] + }, + { + "title": "Gigantic", + "year": 2009, + "cast": [ + "Paul Dano", + "Zooey Deschanel", + "Ed Asner", + "Jane Alexander", + "John Goodman" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Girlfriend Experience", + "year": 2009, + "cast": [ + "Sasha Grey" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Goods: Live Hard, Sell Hard", + "year": 2009, + "cast": [ + "Jeremy Piven", + "Ving Rhames", + "James Brolin", + "David Koechner", + "Kathryn Hahn", + "Ed Helms", + "Jordana Spiro", + "Craig Robinson", + "Ken Jeong", + "Rob Riggle", + "Noureen DeWulf", + "Tony Hale", + "Joey Kern", + "Alan Thicke", + "Will Ferrell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Great Buck Howard", + "year": 2009, + "cast": [ + "John Malkovich", + "Colin Hanks", + "Emily Blunt", + "Steve Zahn", + "Tom Hanks" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Grudge 3", + "year": 2009, + "cast": [ + "Johanna Braddy", + "Gil McKinney", + "Shawnee Smith", + "Emi Ikehata", + "Jadie Hobson", + "Beau Mirchoff", + "Marina Sirtis", + "Matthew Knight" + ], + "genres": [ + "Horror", + "Thriller" + ] + }, + { + "title": "Halloween II", + "year": 2009, + "cast": [ + "Malcolm McDowell", + "Sheri Moon Zombie", + "Scout Taylor-Compton", + "Tyler Mane", + "Brad Dourif", + "Danielle Harris" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Hangover", + "year": 2009, + "cast": [ + "Bradley Cooper", + "Ed Helms", + "Zach Galifianakis", + "Heather Graham", + "Justin Bartha" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hannah Montana: The Movie", + "year": 2009, + "cast": [ + "Miley Cyrus", + "Emily Osment", + "Jason Earles", + "Mitchel Musso", + "Moisés Arias", + "Melora Hardin", + "Vanessa Williams", + "Billy Ray Cyrus", + "Lucas Till" + ], + "genres": [ + "Family", + "Musical" + ] + }, + { + "title": "Harry Potter and the Half-Blood Prince", + "year": 2009, + "cast": [ + "Daniel Radcliffe", + "Rupert Grint", + "Emma Watson", + "Jim Broadbent", + "Helena Bonham Carter", + "Robbie Coltrane", + "Warwick Davis", + "Michael Gambon", + "Alan Rickman", + "Maggie Smith", + "Timothy Spall", + "David Thewlis", + "Julie Walters" + ], + "genres": [ + "Family", + "Fantasy" + ] + }, + { + "title": "The Haunting in Connecticut", + "year": 2009, + "cast": [ + "Virginia Madsen", + "Kyle Gallner", + "Martin Donovan", + "Elias Koteas", + "Amanda Crew" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "He's Just Not That Into You", + "year": 2009, + "cast": [ + "Ben Affleck", + "Jennifer Aniston", + "Drew Barrymore", + "Jennifer Connelly", + "Kevin Connelly", + "Bradley Cooper", + "Ginnifer Goodwin", + "Scarlett Johansson", + "Justin Long" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "The Hole", + "year": 2009, + "cast": [ + "Teri Polo", + "Chris Massoglia", + "Haley Bennett" + ], + "genres": [ + "Fantasy", + "Thriller" + ] + }, + { + "title": "Homecoming", + "year": 2009, + "cast": [ + "Mischa Barton", + "Matt Long", + "Jessica Stroup" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Horrorween", + "year": 2009, + "cast": [ + "Chuck Lamb", + "Ed Meyer", + "Tila Tequila" + ], + "genres": [ + "Comedy", + "Horror" + ] + }, + { + "title": "Horsemen", + "year": 2009, + "cast": [ + "Dennis Quaid", + "Zhang Ziyi", + "Clifton Collins, Jr.", + "Patrick Fugit", + "Peter Stormare" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Hotel for Dogs", + "year": 2009, + "cast": [ + "Emma Roberts", + "Jake T. Austin", + "Kyla Pratt", + "Don Cheadle", + "Lisa Kudrow", + "Kevin Dillon" + ], + "genres": [ + "Comedy", + "Family" + ] + }, + { + "title": "Humpday", + "year": 2009, + "cast": [ + "Mark Duplass", + "Joshua Leonard", + "Alycia Delmore" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "I Can Do Bad All By Myself", + "year": 2009, + "cast": [ + "Tyler Perry", + "Taraji P. Henson", + "Mary J. Blige", + "Adam Rodríguez", + "Brian White", + "Gladys Knight", + "Pastor Marvin Winans" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "I Hate Valentine's Day", + "year": 2009, + "cast": [ + "Nia Vardalos", + "John Corbett" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "I Hope They Serve Beer in Hell", + "year": 2009, + "cast": [ + "Matt Czuchry", + "Jesse Bradford", + "Geoff Stults" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Hurt Locker", + "year": 2009, + "cast": [ + "Jeremy Renner", + "Anthony Mackie", + "Brian Geraghty", + "Evangeline Lilly", + "Ralph Fiennes", + "David Morse", + "Guy Pearce" + ], + "genres": [ + "War" + ] + }, + { + "title": "I Love You, Beth Cooper", + "year": 2009, + "cast": [ + "Hayden Panettiere", + "Paul Rust", + "Jack Carpenter", + "Lauren London", + "Lauren Storm", + "Alan Ruck", + "Cynthia Stevenson" + ], + "genres": [ + "Comedy", + "Teen" + ] + }, + { + "title": "I Love You, Man", + "year": 2009, + "cast": [ + "Paul Rudd", + "Jason Segel" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Ice Age: Dawn of the Dinosaurs", + "year": 2009, + "cast": [ + "Ray Romano", + "John Leguizamo", + "Denis Leary", + "Queen Latifah", + "Josh Peck", + "Simon Pegg" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Imagine That", + "year": 2009, + "cast": [ + "Eddie Murphy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Imaginarium of Doctor Parnassus", + "year": 2009, + "cast": [ + "Heath Ledger", + "Christopher Plummer", + "Lily Cole", + "Verne Troyer", + "Andrew Garfield", + "Tom Waits", + "Johnny Depp", + "Jude Law", + "Colin Farrell" + ], + "genres": [ + "Adventure", + "Comedy" + ] + }, + { + "title": "The Informant!", + "year": 2009, + "cast": [ + "Matt Damon", + "Scott Bakula", + "Joel McHale", + "Melanie Lynskey" + ], + "genres": [ + "Comedy", + "Biography" + ] + }, + { + "title": "The Informers", + "year": 2009, + "cast": [ + "Billy Bob Thornton", + "Kim Basinger", + "Winona Ryder", + "Mickey Rourke", + "Jon Foster", + "Amber Heard", + "Rhys Ifans", + "Chris Isaak", + "Austin Nichols", + "Lou Taylor Pucci", + "Mel Raido", + "Brad Renfro" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Inglourious Basterds", + "year": 2009, + "cast": [ + "Brad Pitt", + "Mélanie Laurent", + "Christoph Waltz", + "Daniel Brühl", + "Diane Kruger", + "Michael Fassbender", + "Eli Roth", + "Til Schweiger" + ], + "genres": [ + "War", + "Science Fiction" + ] + }, + { + "title": "Ink", + "year": 2009, + "cast": [ + "Christopher Soren Kelly", + "Quinn Hunchar", + "Jessica Duffy" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "The International", + "year": 2009, + "cast": [ + "Clive Owen", + "Naomi Watts" + ], + "genres": [ + "Action", + "Thriller" + ] + }, + { + "title": "Invictus", + "year": 2009, + "cast": [ + "Morgan Freeman", + "Matt Damon" + ], + "genres": [ + "Biography", + "Drama" + ] + }, + { + "title": "An Invisible Sign", + "year": 2009, + "cast": [ + "Jessica Alba", + "J. K. Simmons", + "Chris Messina" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Invention of Lying", + "year": 2009, + "cast": [ + "Ricky Gervais", + "Jennifer Garner", + "Jonah Hill", + "Louis C.K.", + "Rob Lowe", + "Tina Fey", + "Christopher Guest" + ], + "genres": [ + "Comedy", + "Science Fiction" + ] + }, + { + "title": "It Might Get Loud", + "year": 2009, + "cast": [ + "The careers and styles of", + "Jimmy Page", + "The Edge", + "and", + "Jack White" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "It's Complicated", + "year": 2009, + "cast": [ + "Robert Adamson", + "Blanchard Ryan", + "Meryl Streep", + "Steve Martin", + "Alec Baldwin" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Janky Promoters", + "year": 2009, + "cast": [ + "Ice Cube", + "Mike Epps", + "Young Jeezy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Jennifer's Body", + "year": 2009, + "cast": [ + "Megan Fox", + "Amanda Seyfried", + "Johnny Simmons", + "J. K. Simmons", + "Amy Sedaris", + "Adam Brody" + ], + "genres": [ + "Comedy", + "Horror", + "Teen" + ] + }, + { + "title": "Jonas Brothers: The 3D Concert Experience", + "year": 2009, + "cast": [ + "Jonas Brothers", + "Demi Lovato", + "Taylor Swift", + "Christa B. Allen" + ], + "genres": [ + "Performance" + ] + }, + { + "title": "Julie & Julia", + "year": 2009, + "cast": [ + "Meryl Streep", + "Amy Adams", + "Stanley Tucci", + "Chris Messina", + "Linda Emond" + ], + "genres": [ + "Biography", + "Romance", + "Comedy" + ] + }, + { + "title": "Knowing", + "year": 2009, + "cast": [ + "Nicolas Cage" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Labor Pains", + "year": 2009, + "cast": [ + "Lindsay Lohan", + "Luke Kirby", + "Cheryl Hines", + "Chris Parnell", + "Bridgit Mendler", + "Kevin Covais" + ], + "genres": [ + "Romance", + "Comedy", + "Romance" + ] + }, + { + "title": "Laid to Rest", + "year": 2009, + "cast": [ + "Bobbi Sue Luther", + "Kevin Gage", + "Sean Whalen", + "Johnathon Schaech", + "Thomas Dekker", + "Nick Principe", + "Richard Lynch", + "Lena Headey" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Land of the Lost", + "year": 2009, + "cast": [ + "Will Ferrell", + "Danny McBride", + "Anna Friel", + "Jorma Taccone" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Last House on the Left", + "year": 2009, + "cast": [ + "Garret Dillahunt", + "Rhys Coiro", + "Martha MacIsaac", + "Riki Lindhome", + "Tony Goldwyn", + "Monica Potter", + "Spencer Treat Clark", + "Sara Paxton" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Law Abiding Citizen", + "year": 2009, + "cast": [ + "Gerard Butler", + "Jamie Foxx", + "Colm Meaney", + "Bruce McGill", + "Regina Hall", + "Viola Davis" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Life During Wartime", + "year": 2009, + "cast": [ + "Ally Sheedy", + "Gaby Hoffmann" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Lightkeepers", + "year": 2009, + "cast": [ + "Richard Dreyfuss", + "Blythe Danner", + "Mamie Gummer" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Limits of Control", + "year": 2009, + "cast": [ + "Isaach de Bankolé", + "Bill Murray", + "Tilda Swinton", + "Gael García Bernal" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Love Happens", + "year": 2009, + "cast": [ + "Aaron Eckhart", + "Jennifer Aniston" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Love N' Dancing", + "year": 2009, + "cast": [ + "Amy Smart", + "Tom Malloy", + "Billy Zane" + ], + "genres": [ + "Dance", + "Romance" + ] + }, + { + "title": "The Lovely Bones", + "year": 2009, + "cast": [ + "Saoirse Ronan", + "Rachel Weisz", + "Mark Wahlberg", + "Stanley Tucci" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Lymelife", + "year": 2009, + "cast": [ + "Alec Baldwin", + "Emma Roberts", + "Rory Culkin", + "Kieran Culkin", + "Jill Hennessy", + "Timothy Hutton", + "Cynthia Nixon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Madea Goes to Jail", + "year": 2009, + "cast": [ + "Tyler Perry", + "Sofía Vergara", + "Vanessa Ferlito", + "Derek Luke", + "Keshia Knight Pulliam", + "David Mann", + "Ion Overman", + "RonReaco Lee", + "Viola Davis" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Maiden Heist", + "year": 2009, + "cast": [ + "Christopher Walken", + "Morgan Freeman", + "William H. Macy" + ], + "genres": [ + "Comedy", + "Crime" + ] + }, + { + "title": "Management", + "year": 2009, + "cast": [ + "Steve Zahn", + "Jennifer Aniston", + "Woody Harrelson", + "Fred Ward" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Me and Orson Welles", + "year": 2009, + "cast": [ + "Ben Chaplin", + "Claire Danes", + "Zac Efron", + "Zoe Kazan", + "Eddie Marsan", + "Christian McKay", + "Kelly Reilly", + "James Tupper" + ], + "genres": [ + "Biography", + "Drama" + ] + }, + { + "title": "The Men Who Stare at Goats", + "year": 2009, + "cast": [ + "Ewan McGregor", + "George Clooney", + "Kevin Spacey", + "Jeff Bridges" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Merry Gentleman", + "year": 2009, + "cast": [ + "Michael Keaton", + "Kelly Macdonald" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "The Messenger", + "year": 2009, + "cast": [ + "Ben Foster", + "Woody Harrelson", + "Samantha Morton", + "Jena Malone", + "Steve Buscemi" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Michael Jackson's This Is It", + "year": 2009, + "cast": [ + "Michael Jackson", + "'s final concert", + "canceled after his death" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Miss March", + "year": 2009, + "cast": [ + "Zach Cregger", + "Trevor Moore", + "Raquel Alessi", + "Molly Stanton", + "Craig Robinson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Monsters vs. Aliens", + "year": 2009, + "cast": [ + "Reese Witherspoon", + "Seth Rogen", + "Hugh Laurie", + "Rainn Wilson", + "Kiefer Sutherland", + "Will Arnett", + "Stephen Colbert", + "Paul Rudd" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Motherhood", + "year": 2009, + "cast": [ + "Uma Thurman", + "Minnie Driver", + "Anthony Edwards" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "My Bloody Valentine 3D", + "year": 2009, + "cast": [ + "Jensen Ackles", + "Jaime King", + "Kerr Smith" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "My Life in Ruins", + "year": 2009, + "cast": [ + "Nia Vardalos", + "Richard Dreyfuss" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "My Sister's Keeper", + "year": 2009, + "cast": [ + "Cameron Diaz", + "Alec Baldwin", + "Abigail Breslin", + "Sofia Vassilieva", + "Joan Cusack", + "Thomas Dekker", + "Jason Patric" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "My One and Only", + "year": 2009, + "cast": [ + "Renée Zellweger", + "Chris Noth", + "Kevin Bacon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "New in Town", + "year": 2009, + "cast": [ + "Renée Zellweger", + "Harry Connick, Jr." + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "New Moon", + "year": 2009, + "cast": [ + "Kristen Stewart", + "Robert Pattinson", + "Taylor Lautner" + ], + "genres": [ + "Fantasy", + "Romance" + ] + }, + { + "title": "New York, I Love You", + "year": 2009, + "cast": [ + "Bradley Cooper", + "Chris Cooper", + "Shia LaBeouf", + "Orlando Bloom", + "Andy García", + "Natalie Portman", + "Rachel Bilson", + "Julie Christie", + "James Caan" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Next Day Air", + "year": 2009, + "cast": [ + "Donald Faison", + "Mike Epps", + "Wood Harris", + "Omari Hardwick", + "Darius McCrary", + "Yasmin Deliz", + "Mos Def" + ], + "genres": [ + "Comedy", + "Crime" + ] + }, + { + "title": "Night at the Museum: Battle of the Smithsonian", + "year": 2009, + "cast": [ + "Ben Stiller", + "Dick Van Dyke", + "Robin Williams", + "Amy Adams", + "Hank Azaria", + "Owen Wilson", + "Steve Coogan", + "Jonah Hill", + "Ricky Gervais" + ], + "genres": [ + "Adventure", + "Family" + ] + }, + { + "title": "Nine", + "year": 2009, + "cast": [ + "Daniel Day-Lewis", + "Marion Cotillard", + "Nicole Kidman", + "Penélope Cruz", + "Kate Hudson", + "Judi Dench", + "Fergie", + "Sophia Loren" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Ninja Assassin", + "year": 2009, + "cast": [ + "Rain", + "Naomie Harris", + "Rick Yune", + "Ben Miles", + "Sho Kosugi", + "Sung Kang" + ], + "genres": [ + "Action", + "Martial Arts" + ] + }, + { + "title": "Not Easily Broken", + "year": 2009, + "cast": [ + "Morris Chestnut", + "Taraji P. Henson", + "Kevin Hart", + "Eddie Cibrian", + "Jenifer Lewis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Not Forgotten", + "year": 2009, + "cast": [ + "Simon Baker", + "Paz Vega" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Notorious", + "year": 2009, + "cast": [ + "Jamal Woolard", + "Derek Luke", + "Angela Bassett", + "Anthony Mackie", + "Naturi Naughton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Observe and Report", + "year": 2009, + "cast": [ + "Seth Rogen", + "Anna Faris", + "Michael Peña", + "Ray Liotta" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Obsessed", + "year": 2009, + "cast": [ + "Idris Elba", + "Beyoncé Knowles", + "Ali Larter" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Old Dogs", + "year": 2009, + "cast": [ + "John Travolta", + "Robin Williams", + "Kelly Preston", + "Seth Green", + "Ella Bleu Travolta", + "Conner Rayburn", + "Matt Dillon", + "Rita Wilson", + "Dax Shepard", + "Bernie Mac", + "Luis Guzmán", + "Justin Long" + ], + "genres": [ + "Comedy", + "Family" + ] + }, + { + "title": "Opie Gets Laid", + "year": 2009, + "cast": [ + "April Wade", + "Ute Werner", + "Jesselynn Desmond", + "James Ricardo", + "Gina DeVettori" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Orphan", + "year": 2009, + "cast": [ + "Vera Farmiga", + "Peter Sarsgaard", + "Isabelle Fuhrman", + "CCH Pounder", + "Jimmy Bennett" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Pandorum", + "year": 2009, + "cast": [ + "Dennis Quaid", + "Ben Foster" + ], + "genres": [ + "Horror", + "Science Fiction" + ] + }, + { + "title": "Paper Heart", + "year": 2009, + "cast": [ + "Charlyne Yi", + "Michael Cera" + ], + "genres": [ + "Satire" + ] + }, + { + "title": "Paul Blart: Mall Cop", + "year": 2009, + "cast": [ + "Kevin James", + "Jayma Mays", + "Keir O'Donnell", + "Bobby Cannavale", + "Stephen Rannazzisi", + "Shirley Knight" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Perfect Getaway", + "year": 2009, + "cast": [ + "Timothy Olyphant", + "Milla Jovovich", + "Kiele Sanchez", + "Steve Zahn", + "Marley Shelton", + "Chris Hemsworth" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Phoebe in Wonderland", + "year": 2009, + "cast": [ + "Felicity Huffman", + "Patricia Clarkson", + "Elle Fanning", + "Campbell Scott", + "Bill Pullman" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "The Pink Panther 2", + "year": 2009, + "cast": [ + "Steve Martin", + "Jean Reno", + "Alfred Molina", + "Emily Mortimer", + "Aishwarya Rai" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Planet 51", + "year": 2009, + "cast": [ + "Dwayne Johnson", + "Jessica Biel", + "Justin Long", + "Gary Oldman", + "Seann William Scott", + "John Cleese" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Post Grad", + "year": 2009, + "cast": [ + "Alexis Bledel", + "Zach Gilford", + "Rodrigo Santoro", + "Jane Lynch", + "Carol Burnett", + "Michael Keaton" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Powder Blue", + "year": 2009, + "cast": [ + "Jessica Biel", + "Ray Liotta", + "Eddie Redmayne", + "Forest Whitaker", + "Kris Kristofferson", + "Lisa Kudrow", + "Patrick Swayze" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Precious", + "year": 2009, + "cast": [ + "Mo'Nique", + "Paula Patton", + "Mariah Carey", + "Lenny Kravitz", + "Sherri Shepherd", + "Gabourey Sidibe" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Princess and the Frog", + "year": 2009, + "cast": [ + "Anika Noni Rose", + "Oprah Winfrey", + "Bruno Campos", + "Keith David", + "Michael-Leon Wooley", + "Jennifer Cody", + "Jim Cummings", + "John Goodman" + ], + "genres": [ + "Animated", + "Family" + ] + }, + { + "title": "The Private Lives of Pippa Lee", + "year": 2009, + "cast": [ + "Robin Wright Penn", + "Alan Arkin", + "Maria Bello", + "Monica Bellucci", + "Blake Lively", + "Julianne Moore", + "Keanu Reeves", + "Winona Ryder" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Proposal", + "year": 2009, + "cast": [ + "Sandra Bullock", + "Ryan Reynolds", + "Mary Steenburgen", + "Craig T. Nelson", + "Betty White" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Public Enemies", + "year": 2009, + "cast": [ + "Johnny Depp", + "Christian Bale", + "Marion Cotillard", + "Channing Tatum", + "David Wenham", + "Stephen Graham", + "Giovanni Ribisi", + "Stephen Dorff", + "Billy Crudup" + ], + "genres": [ + "Crime", + "Drama", + "Biography" + ] + }, + { + "title": "Push", + "year": 2009, + "cast": [ + "Chris Evans", + "Dakota Fanning", + "Camilla Belle", + "Djimon Hounsou" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Quantum Quest: A Cassini Space Odyssey", + "year": 2009, + "cast": [ + "Chris Pine", + "Amanda Peet", + "Samuel L. Jackson" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Race to Witch Mountain", + "year": 2009, + "cast": [ + "Dwayne Johnson", + "AnnaSophia Robb", + "Carla Gugino", + "Garry Marshall", + "Ciarán Hinds", + "Alexander Ludwig", + "Tom Everett Scott", + "Christopher Marquette" + ], + "genres": [ + "Family", + "Science Fiction" + ] + }, + { + "title": "The Road", + "year": 2009, + "cast": [ + "Charlize Theron", + "Viggo Mortensen", + "Kodi Smit-McPhee", + "Robert Duvall" + ], + "genres": [ + "Drama", + "Science Fiction" + ] + }, + { + "title": "Saw VI", + "year": 2009, + "cast": [ + "Tobin Bell", + "Costas Mandylor", + "Shawnee Smith", + "Tanedra Howard", + "Betsy Russell", + "Mark Rolston", + "Peter Outerbridge" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "A Serious Man", + "year": 2009, + "cast": [ + "Michael Stuhlbarg", + "Richard Kind" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Sherlock Holmes", + "year": 2009, + "cast": [ + "Robert Downey, Jr.", + "Jude Law", + "Rachel McAdams", + "Mark Strong" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Shrink", + "year": 2009, + "cast": [ + "Kevin Spacey" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Shorts", + "year": 2009, + "cast": [ + "Jon Cryer", + "William H. Macy", + "Leslie Mann", + "James Spader", + "Jimmy Bennett", + "Kat Dennings" + ], + "genres": [ + "Comedy", + "Family" + ] + }, + { + "title": "A Single Man", + "year": 2009, + "cast": [ + "Colin Firth", + "Julianne Moore", + "Matthew Goode", + "Nicholas Hoult" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Slammin' Salmon", + "year": 2009, + "cast": [ + "Michael Clarke Duncan", + "Jay Chandrasekhar", + "Kevin Heffernan", + "Steve Lemme", + "Paul Soter", + "Erik Stolhanske", + "April Bowlby", + "Sendhil Ramamurthy", + "Lance Henriksen", + "Olivia Munn", + "Vivica A. Fox", + "Morgan Fairchild" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Soloist", + "year": 2009, + "cast": [ + "Jamie Foxx", + "Robert Downey, Jr." + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sorority Row", + "year": 2009, + "cast": [ + "Briana Evigan", + "Jamie Chung", + "Rumer Willis", + "Leah Pipes", + "Audrina Patridge", + "Matt O'Leary", + "Julian Morris", + "Margo Harshman", + "Matt Lanter", + "Carrie Fisher" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Spread", + "year": 2009, + "cast": [ + "Ashton Kutcher", + "Anne Heche", + "Margarita Levieva", + "Sebastian Stan", + "Rachel Blanchard", + "María Conchita Alonso" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Star of Bethlehem", + "year": 2009, + "cast": [ + "Frederick Larson's", + "search for the Star of Bethlehem" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Star Trek", + "year": 2009, + "cast": [ + "Chris Pine", + "Zachary Quinto", + "Karl Urban", + "Simon Pegg", + "Zoe Saldana", + "John Cho", + "Ben Cross", + "Anton Yelchin", + "Winona Ryder", + "Eric Bana", + "Leonard Nimoy" + ], + "genres": [ + "Action", + "Science Fiction" + ] + }, + { + "title": "State of Play", + "year": 2009, + "cast": [ + "Russell Crowe", + "Ben Affleck", + "Rachel McAdams", + "Helen Mirren" + ], + "genres": [ + "Political", + "Thriller" + ] + }, + { + "title": "The Stepfather", + "year": 2009, + "cast": [ + "Penn Badgley", + "Dylan Walsh", + "Amber Heard", + "Sela Ward", + "Jon Tenney" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Street Fighter: The Legend of Chun-Li", + "year": 2009, + "cast": [ + "Kristin Kreuk", + "Chris Klein", + "Neal McDonough", + "Robin Shou", + "Moon Bloodgood", + "Josie Ho", + "Taboo", + "Michael Clarke Duncan" + ], + "genres": [ + "Action", + "Crime" + ] + }, + { + "title": "Surrogates", + "year": 2009, + "cast": [ + "Bruce Willis", + "Radha Mitchell", + "Rosamund Pike", + "Boris Kodjoe", + "James Cromwell", + "Ving Rhames" + ], + "genres": [ + "Action", + "Science Fiction" + ] + }, + { + "title": "The Taking of Pelham 123", + "year": 2009, + "cast": [ + "Denzel Washington", + "John Travolta", + "John Turturro", + "James Gandolfini" + ], + "genres": [ + "Action", + "Crime" + ] + }, + { + "title": "Taking Woodstock", + "year": 2009, + "cast": [ + "Demetri Martin", + "Dan Fogler", + "Henry Goodman", + "Jonathan Groff", + "Eugene Levy", + "Jeffrey Dean Morgan", + "Imelda Staunton", + "Emile Hirsch", + "Liev Schreiber" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "Tekken", + "year": 2009, + "cast": [ + "Jon Foo", + "Kelly Overton", + "Cary-Hiroyuki Tagawa" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Tennessee", + "year": 2009, + "cast": [ + "Ethan Peck", + "Adam Rothenberg", + "Mariah Carey", + "Lance Reddick", + "Bill Sage" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Terminator Salvation", + "year": 2009, + "cast": [ + "Christian Bale", + "Sam Worthington", + "Anton Yelchin", + "Moon Bloodgood", + "Bryce Dallas Howard", + "Common", + "Jadagrace Berry", + "Helena Bonham Carter", + "Jane Alexander" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Tetro", + "year": 2009, + "cast": [ + "Vincent Gallo" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Time Traveler's Wife", + "year": 2009, + "cast": [ + "Eric Bana", + "Rachel McAdams" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "Transformers: Revenge of the Fallen", + "year": 2009, + "cast": [ + "Shia LaBeouf", + "Megan Fox", + "Josh Duhamel", + "Tyrese Gibson", + "John Turturro", + "Matthew Marsden" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Trick 'r Treat", + "year": 2009, + "cast": [ + "Rochelle Aytes", + "Dylan Baker", + "Leslie Bibb", + "Jean-Luc Bilodeau", + "Brian Cox", + "Alberto Ghisi", + "Brett Kelly", + "Quinn Lord", + "Britt McKillip", + "Anna Paquin", + "Tahmoh Penikett", + "Lauren Lee Smith" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "True Adolescents", + "year": 2009, + "cast": [ + "Mark Duplass", + "Bret Loehr", + "Melissa Leo" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Tyson", + "year": 2009, + "cast": [ + "The life and career of", + "Mike Tyson" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Ugly Truth", + "year": 2009, + "cast": [ + "Katherine Heigl", + "Gerard Butler" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "The Unborn", + "year": 2009, + "cast": [ + "Odette Yustman", + "Gary Oldman", + "Meagan Good", + "Cam Gigandet", + "James Remar", + "Jane Alexander", + "Idris Elba", + "Carla Gugino" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Underworld: Rise of the Lycans", + "year": 2009, + "cast": [ + "Rhona Mitra", + "Michael Sheen", + "Bill Nighy", + "Kevin Grevioux", + "Shane Brolly", + "Steven Mackintosh" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Uninvited", + "year": 2009, + "cast": [ + "Emily Browning", + "Elizabeth Banks", + "Arielle Kebbel", + "David Strathairn" + ], + "genres": [ + "Drama", + "Horror" + ] + }, + { + "title": "Up", + "year": 2009, + "cast": [ + "Edward Asner", + "Jordan Nagai", + "Paul Eiding", + "Christopher Plummer", + "Bob Peterson" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Up in the Air", + "year": 2009, + "cast": [ + "George Clooney", + "Vera Farmiga", + "Anna Kendrick", + "Danny McBride", + "Jason Bateman" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Wah Do Dem", + "year": 2009, + "cast": [ + "Carl Bradshaw", + "Sean Bones", + "Kevin Bewersdorf", + "Norah Jones" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Watchmen", + "year": 2009, + "cast": [ + "Jeffrey Dean Morgan", + "Matthew Goode", + "Patrick Wilson", + "Malin Åkerman", + "Billy Crudup", + "Jackie Earl Haley", + "Carla Gugino" + ], + "genres": [ + "Superhero" + ] + }, + { + "title": "We Live in Public", + "year": 2009, + "cast": [ + "The career of", + "Josh Harris" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "What Goes Up", + "year": 2009, + "cast": [ + "Steve Coogan", + "Hilary Duff", + "Josh Peck", + "Olivia Thirlby", + "Molly Shannon" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Whatever Works", + "year": 2009, + "cast": [ + "Larry David", + "Evan Rachel Wood", + "Patricia Clarkson", + "Ed Begley, Jr.", + "Conleth Hill", + "Michael McKean" + ], + "genres": [ + "Comedy", + "Romance" + ] + }, + { + "title": "Where the Wild Things Are", + "year": 2009, + "cast": [ + "Max Records", + "Catherine Keener", + "Mark Ruffalo", + "Lauren Ambrose", + "Chris Cooper", + "James Gandolfini", + "Catherine O'Hara", + "Forest Whitaker", + "Paul Dano" + ], + "genres": [ + "Family", + "Fantasy" + ] + }, + { + "title": "Whiteout", + "year": 2009, + "cast": [ + "Kate Beckinsale", + "Gabriel Macht", + "Alex O'Loughlin", + "Columbus Short", + "Tom Skerritt" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Whip It", + "year": 2009, + "cast": [ + "Ellen Page", + "Marcia Gay Harden", + "Kristen Wiig", + "Drew Barrymore", + "Juliette Lewis", + "Jimmy Fallon", + "Daniel Stern" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "World's Greatest Dad", + "year": 2009, + "cast": [ + "Robin Williams", + "Alexie Gilmore", + "Daryl Sabara", + "Henry Simmons" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "X Games 3D: The Movie", + "year": 2009, + "cast": [ + "Bob Burnquist", + "Ricky Carmichael", + "Kyle Loza", + "Travis Pastrana", + "Danny Way", + "Shaun White", + "Emile Hirsch", + "(narrator)" + ], + "genres": [ + "Documentary", + "Sports" + ] + }, + { + "title": "X-Men Origins: Wolverine", + "year": 2009, + "cast": [ + "Hugh Jackman", + "Liev Schreiber", + "Danny Huston", + "will.i.am", + "Lynn Collins", + "Taylor Kitsch", + "Ryan Reynolds", + "Dominic Monaghan" + ], + "genres": [ + "Action", + "Adventure", + "Superhero" + ] + }, + { + "title": "Year One", + "year": 2009, + "cast": [ + "Jack Black", + "Michael Cera", + "Oliver Platt", + "Hank Azaria", + "David Cross", + "Olivia Wilde", + "June Raphael", + "Juno Temple", + "Christopher Mintz-Plasse" + ], + "genres": [ + "Adventure", + "Comedy" + ] + }, + { + "title": "The Young Victoria", + "year": 2009, + "cast": [ + "Emily Blunt", + "Miranda Richardson", + "Jim Broadbent" + ], + "genres": [ + "Drama", + "Romance" + ] + }, + { + "title": "Zombieland", + "year": 2009, + "cast": [ + "Woody Harrelson", + "Jesse Eisenberg", + "Emma Stone", + "Abigail Breslin" + ], + "genres": [ + "Comedy", + "Horror" + ] + }, + { + "title": "127 Hours", + "year": 2010, + "cast": [ + "James Franco", + "Amber Tamblyn", + "Kate Mara", + "Clémence Poésy", + "Lizzy Caplan" + ], + "genres": [ + "Biography", + "Drama" + ] + }, + { + "title": "8: The Mormon Proposition", + "year": 2010, + "cast": [ + "The Church of Jesus Christ of Latter-day Saints", + "' involvement in the 2008", + "California Proposition 8", + ". Narrated by", + "Dustin Lance Black", + "." + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The A-Team", + "year": 2010, + "cast": [ + "Liam Neeson", + "Bradley Cooper", + "Quinton \"Rampage\" Jackson", + "Sharlto Copley", + "Jessica Biel", + "Patrick Wilson", + "Brian Bloom" + ], + "genres": [ + "Action", + "Adventure" + ] + }, + { + "title": "A Little Help", + "year": 2010, + "cast": [ + "Jenna Fischer", + "Chris O'Donnell", + "Rob Benedict", + "Arden Myrin", + "Daniel Yelsky" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Adventures of Power", + "year": 2010, + "cast": [ + "Ari Gold", + "Michael McKean", + "Jane Lynch", + "Shoshannah Stern", + "Chiu Chi Ling", + "Adrian Grenier" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Alice in Wonderland", + "year": 2010, + "cast": [ + "Johnny Depp", + "Anne Hathaway", + "Helena Bonham Carter", + "Mia Wasikowska", + "Alan Rickman", + "Crispin Glover", + "Stephen Fry", + "Michael Sheen", + "Christopher Lee" + ], + "genres": [ + "Family", + "Fantasy" + ] + }, + { + "title": "All Good Things", + "year": 2010, + "cast": [ + "Ryan Gosling", + "Kirsten Dunst", + "Frank Langella", + "Kristen Wiig", + "Philip Baker Hall" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "All My Friends Are Funeral Singers", + "year": 2010, + "cast": [ + "Angela Bettis", + "Emily Candini", + "Reid Coker" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Alpha and Omega", + "year": 2010, + "cast": [ + "Justin Long", + "Hayden Panettiere", + "Dennis Hopper", + "Danny Glover", + "Christina Ricci" + ], + "genres": [ + "Animated", + "Comedy", + "Drama", + "Family" + ] + }, + { + "title": "The American", + "year": 2010, + "cast": [ + "George Clooney", + "Violante Placido", + "Thekla Reuten", + "Paolo Bonacelli" + ], + "genres": [ + "Drama", + "Thriller" + ] + }, + { + "title": "The Back-up Plan", + "year": 2010, + "cast": [ + "Jennifer Lopez", + "Alex O'Loughlin", + "Eric Christian Olsen", + "Anthony Anderson", + "Linda Lavin" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Barry Munday", + "year": 2010, + "cast": [ + "Patrick Wilson", + "Judy Greer", + "Chloë Sevigny", + "Jean Smart", + "Cybill Shepherd", + "Shea Whigham", + "Missi Pyle", + "Christopher McDonald", + "Billy Dee Williams", + "Malcolm McDowell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "BearCity", + "year": 2010, + "cast": [ + "Gerald McCullouch", + "Joe Conti", + "Stephen Guarino", + "Ashlie Atkinson" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Big Money Rustlas", + "year": 2010, + "cast": [ + "Insane Clown Posse", + "(", + "Violent J", + "Shaggy 2 Dope", + ")", + "Twiztid", + "(", + "Jamie Madrox", + "Monoxide", + ")", + "Jason Mewes", + "Mark Jury" + ], + "genres": [ + "Comedy", + "Western" + ] + }, + { + "title": "Black Swan", + "year": 2010, + "cast": [ + "Natalie Portman", + "Vincent Cassel", + "Mila Kunis", + "Barbara Hershey", + "Winona Ryder" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Blue Valentine", + "year": 2010, + "cast": [ + "Ryan Gosling", + "Michelle Williams" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "The Book of Eli", + "year": 2010, + "cast": [ + "Denzel Washington", + "Gary Oldman", + "Mila Kunis", + "Ray Stevenson", + "Jennifer Beals", + "Frances de la Tour", + "Michael Gambon" + ], + "genres": [ + "Action", + "Thriller" + ] + }, + { + "title": "Bouncing Cats", + "year": 2010, + "cast": [ + "Crazy Legs", + "Abraham \"Abramz\" Tekya", + "Common", + "Mos Def", + "will.i.am", + "K'naan" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Bounty Hunter", + "year": 2010, + "cast": [ + "Jennifer Aniston", + "Gerard Butler" + ], + "genres": [ + "Action", + "Comedy" + ] + }, + { + "title": "Brooklyn's Finest", + "year": 2010, + "cast": [ + "Richard Gere", + "Don Cheadle", + "Ethan Hawke", + "Wesley Snipes" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Brutal Beauty: Tales of the Rose City Rollers", + "year": 2010, + "cast": [ + "Grace Lightning", + "Marollin’ Monroe", + "Madame Bumpsalot" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Buried", + "year": 2010, + "cast": [ + "Ryan Reynolds" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Burlesque", + "year": 2010, + "cast": [ + "Cher", + "Christina Aguilera", + "Stanley Tucci", + "Eric Dane", + "Kristen Bell", + "Cam Gigandet", + "Alan Cumming", + "Julianne Hough", + "Peter Gallagher" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Case 39", + "year": 2010, + "cast": [ + "Renée Zellweger", + "Jodelle Ferland", + "Ian McShane", + "Bradley Cooper" + ], + "genres": [ + "Horror", + "Mystery" + ] + }, + { + "title": "Casino Jack", + "year": 2010, + "cast": [ + "Kevin Spacey", + "Barry Pepper", + "Kelly Preston", + "Jon Lovitz", + "Rachelle Lefevre", + "Daniel Kash", + "Graham Greene", + "Maury Chaykin" + ], + "genres": [ + "Political", + "Drama", + "Thriller" + ] + }, + { + "title": "Casino Jack and the United States of Money", + "year": 2010, + "cast": [ + "Washington D. C. lobbyist", + "Jack Abramoff", + "'s", + "corruption scandal", + "." + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Cats & Dogs: The Revenge of Kitty Galore", + "year": 2010, + "cast": [ + "Christina Applegate", + "Michael Clarke Duncan", + "Neil Patrick Harris", + "Sean Hayes", + "James Marsden", + "Bette Midler", + "Nick Nolte", + "Joe Pantoliano", + "Katt Williams", + "Chris O'Donnell", + "Jack McBrayer", + "Fred Armisen", + "Paul Rodriguez", + "Alec Baldwin", + "Roger Moore" + ], + "genres": [ + "Family", + "Live Action", + "Animated" + ] + }, + { + "title": "Charlie St. Cloud", + "year": 2010, + "cast": [ + "Zac Efron", + "Amanda Crew", + "Donal Logue", + "Charlie Tahan", + "Ray Liotta", + "Kim Basinger", + "Chris Massoglia" + ], + "genres": [ + "Romance", + "Fantasy" + ] + }, + { + "title": "The Chronicles of Narnia: The Voyage of the Dawn Treader", + "year": 2010, + "cast": [ + "Georgie Henley", + "Skandar Keynes", + "Ben Barnes", + "Liam Neeson", + "Will Poulter", + "Simon Pegg" + ], + "genres": [ + "Family", + "Fantasy" + ] + }, + { + "title": "City Island", + "year": 2010, + "cast": [ + "Andy García", + "Julianna Margulies", + "Steven Strait", + "Alan Arkin", + "Emily Mortimer" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Clash of the Titans", + "year": 2010, + "cast": [ + "Sam Worthington", + "Gemma Arterton", + "Mads Mikkelsen", + "Alexa Davalos", + "Jason Flemyng", + "Nicholas Hoult", + "Danny Huston", + "Izabella Miko", + "Pete Postlethwaite", + "Polly Walker", + "Ralph Fiennes", + "Liam Neeson" + ], + "genres": [ + "Action", + "Adventure", + "Fantasy" + ] + }, + { + "title": "Client 9: The Rise and Fall of Eliot Spitzer", + "year": 2010, + "cast": [ + "The life and career of former New York Governor", + "Eliot Spitzer" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Company Men", + "year": 2010, + "cast": [ + "Ben Affleck", + "Chris Cooper", + "Kevin Costner", + "Tommy Lee Jones", + "Maria Bello", + "Rosemarie DeWitt", + "Craig T. Nelson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Conviction", + "year": 2010, + "cast": [ + "Hilary Swank", + "Sam Rockwell", + "Minnie Driver", + "Melissa Leo", + "Peter Gallagher", + "Juliette Lewis" + ], + "genres": [ + "Biography", + "Drama" + ] + }, + { + "title": "Cop Out", + "year": 2010, + "cast": [ + "Bruce Willis", + "Tracy Morgan", + "Adam Brody", + "Kevin Pollak", + "Guillermo Diaz", + "Seann William Scott" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Countdown to Zero", + "year": 2010, + "cast": [ + "The discussion on the escalating", + "nuclear arms race", + ". Narrated by", + "Gary Oldman" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Country Strong", + "year": 2010, + "cast": [ + "Gwyneth Paltrow", + "Tim McGraw", + "Garrett Hedlund", + "Leighton Meester" + ], + "genres": [ + "Drama", + "Comedy", + "Musical" + ] + }, + { + "title": "The Crazies", + "year": 2010, + "cast": [ + "Timothy Olyphant", + "Radha Mitchell", + "Joe Anderson", + "Danielle Panabaker" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Crazy on the Outside", + "year": 2010, + "cast": [ + "Tim Allen", + "Sigourney Weaver", + "Jeanne Tripplehorn", + "J. K. Simmons", + "Julie Bowen", + "Kelsey Grammer", + "Ray Liotta" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Cyrus", + "year": 2010, + "cast": [ + "John C. Reilly", + "Jonah Hill", + "Marisa Tomei", + "Catherine Keener" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Date Night", + "year": 2010, + "cast": [ + "Steve Carell", + "Tina Fey" + ], + "genres": [ + "Action", + "Comedy" + ] + }, + { + "title": "Darkening Sky", + "year": 2010, + "cast": [ + "Rider Strong", + "Danica Stewart" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Daybreakers", + "year": 2010, + "cast": [ + "Ethan Hawke", + "Willem Dafoe", + "Isabel Lucas", + "Sam Neill" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Dead Awake", + "year": 2010, + "cast": [ + "Nick Stahl", + "Rose McGowan", + "Amy Smart" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Dear John", + "year": 2010, + "cast": [ + "Channing Tatum", + "Amanda Seyfried", + "Henry Thomas", + "Scott Porter", + "Richard Jenkins" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "Death at a Funeral", + "year": 2010, + "cast": [ + "Loretta Devine", + "Peter Dinklage", + "Danny Glover", + "Regina Hall", + "Martin Lawrence", + "James Marsden", + "Tracy Morgan", + "Chris Rock", + "Zoe Saldana", + "Columbus Short", + "Luke Wilson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Despicable Me", + "year": 2010, + "cast": [ + "Steve Carell", + "Miranda Cosgrove", + "Jason Segel", + "Russell Brand", + "Kristen Wiig", + "Will Arnett", + "Ken Jeong", + "Danny McBride", + "Julie Andrews" + ], + "genres": [ + "Animated", + "Family" + ] + }, + { + "title": "Devil", + "year": 2010, + "cast": [ + "Chris Messina", + "Logan Marshall-Green", + "Geoffrey Arend", + "Caroline Dhavernas", + "Jacob Vargas", + "Jenny O'Hara", + "Bojana Novakovic", + "Joshua Peace", + "Bokeem Woodbine" + ], + "genres": [ + "Horror", + "Thriller" + ] + }, + { + "title": "Diary of a Wimpy Kid", + "year": 2010, + "cast": [ + "Zachary Gordon", + "Robert Capron", + "Rachel Harris", + "Steve Zahn", + "Devon Bostick", + "Chloë Grace Moretz" + ], + "genres": [ + "Comedy", + "Family" + ] + }, + { + "title": "Dinner for Schmucks", + "year": 2010, + "cast": [ + "Steve Carell", + "Paul Rudd", + "Jemaine Clement", + "Jeff Dunham", + "Zach Galifianakis", + "Bruce Greenwood", + "Ron Livingston", + "Rick Overton", + "Lucy Punch", + "Andrea Savage", + "David Walliams" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Dirty Girl", + "year": 2010, + "cast": [ + "Juno Temple", + "Milla Jovovich", + "Mary Steenburgen", + "Tim McGraw" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Due Date", + "year": 2010, + "cast": [ + "Robert Downey Jr.", + "Zach Galifianakis", + "Michelle Monaghan", + "Juliette Lewis", + "Jamie Foxx", + "RZA", + "Alan Arkin", + "Matt Walsh", + "Danny McBride" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Easy A", + "year": 2010, + "cast": [ + "Emma Stone", + "Penn Badgley", + "Amanda Bynes", + "Thomas Haden Church", + "Patricia Clarkson", + "Cam Gigandet", + "Lisa Kudrow", + "Malcolm McDowell", + "Aly Michalka" + ], + "genres": [ + "Comedy", + "Teen" + ] + }, + { + "title": "Eat Pray Love", + "year": 2010, + "cast": [ + "Julia Roberts", + "James Franco", + "Richard Jenkins", + "Viola Davis", + "Billy Crudup", + "Javier Bardem" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Twilight Saga: Eclipse", + "year": 2010, + "cast": [ + "Kristen Stewart", + "Robert Pattinson", + "Taylor Lautner", + "Ashley Greene", + "Peter Facinelli", + "Elizabeth Reaser", + "Kellan Lutz", + "Nikki Reed", + "Catalina Sandino Moreno", + "Jackson Rathbone", + "Bryce Dallas Howard", + "Billy Burke", + "Jodelle Ferland", + "Dakota Fanning", + "Xavier Samuel", + "Julia Jones", + "Jack Huston" + ], + "genres": [ + "Fantasy", + "Romance" + ] + }, + { + "title": "Edge of Darkness", + "year": 2010, + "cast": [ + "Mel Gibson", + "Ray Winstone", + "Danny Huston", + "Bojana Novakovic", + "Shawn Roberts", + "Gbenga Akinnagbe" + ], + "genres": [ + "Action", + "Drama" + ] + }, + { + "title": "The Expendables", + "year": 2010, + "cast": [ + "Sylvester Stallone", + "Jason Statham", + "Jet Li", + "Dolph Lundgren", + "Eric Roberts", + "Randy Couture", + "Steve Austin", + "David Zayas", + "Giselle Itié", + "Charisma Carpenter", + "Gary Daniels", + "Terry Crews", + "Mickey Rourke", + "Bruce Willis", + "Arnold Schwarzenegger" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Extra Man", + "year": 2010, + "cast": [ + "Kevin Kline", + "Paul Dano", + "Katie Holmes", + "John C. Reilly" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Extraordinary Measures", + "year": 2010, + "cast": [ + "Brendan Fraser", + "Harrison Ford", + "Keri Russell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Fair Game", + "year": 2010, + "cast": [ + "Naomi Watts", + "Sean Penn" + ], + "genres": [ + "Biography", + "Spy", + "Thriller" + ] + }, + { + "title": "Faster", + "year": 2010, + "cast": [ + "Dwayne Johnson", + "Billy Bob Thornton", + "Carla Gugino", + "Maggie Grace", + "Oliver Jackson-Cohen", + "Moon Bloodgood" + ], + "genres": [ + "Action", + "Drama" + ] + }, + { + "title": "The Fighter", + "year": 2010, + "cast": [ + "Mark Wahlberg", + "Christian Bale", + "Amy Adams", + "Melissa Leo" + ], + "genres": [ + "Drama", + "Sports" + ] + }, + { + "title": "Flipped", + "year": 2010, + "cast": [ + "Madeline Carroll", + "Rebecca De Mornay", + "Anthony Edwards", + "John Mahoney", + "Callan McAuliffe", + "Penelope Ann Miller", + "Aidan Quinn", + "Kevin Weisman" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "For Colored Girls", + "year": 2010, + "cast": [ + "Janet Jackson", + "Thandie Newton", + "Whoopi Goldberg", + "Phylicia Rashad", + "Anika Noni Rose", + "Loretta Devine", + "Kimberly Elise", + "Kerry Washington" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Freakonomics", + "year": 2010, + "cast": [ + "A group of rogue filmmakers explore the hidden side of everything." + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "From Paris with Love", + "year": 2010, + "cast": [ + "John Travolta", + "Jonathan Rhys Meyers" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Frozen", + "year": 2010, + "cast": [ + "Kevin Zegers", + "Shawn Ashmore", + "Emma Bell" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Furry Vengeance", + "year": 2010, + "cast": [ + "Brendan Fraser", + "Brooke Shields", + "Dick Van Dyke", + "Ken Jeong", + "Rob Riggle", + "Angela Kinsey", + "Matt Prokop" + ], + "genres": [ + "Comedy", + "Family" + ] + }, + { + "title": "Game of Death", + "year": 2010, + "cast": [ + "Wesley Snipes", + "Zoë Bell", + "Gary Daniels", + "Robert Davi", + "Ernie Hudson", + "Jaime Moyer", + "Frank Zieger" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Get Him to the Greek", + "year": 2010, + "cast": [ + "Jonah Hill", + "Russell Brand", + "Elisabeth Moss", + "Rose Byrne", + "Colm Meaney", + "Sean Combs" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Get Low", + "year": 2010, + "cast": [ + "Robert Duvall", + "Bill Murray", + "Sissy Spacek", + "Lucas Black" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Going the Distance", + "year": 2010, + "cast": [ + "Drew Barrymore", + "Charlie Day", + "Jason Sudeikis", + "Ron Livingston", + "Rob Riggle", + "Christina Applegate", + "Kelli Garner", + "Natalie Morales", + "June Diane Raphael", + "Kristen Schaal", + "Jim Gaffigan", + "Sarah Burns" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "The Good Guy", + "year": 2010, + "cast": [ + "Scott Porter", + "Alexis Bledel", + "Bryan Greenberg", + "Aaron Yoo", + "Anna Chlumsky", + "Kate Nauta", + "Andrew McCarthy" + ], + "genres": [ + "Drama", + "Romance", + "Comedy" + ] + }, + { + "title": "The Greatest", + "year": 2010, + "cast": [ + "Pierce Brosnan", + "Susan Sarandon", + "Carey Mulligan", + "Johnny Simmons", + "Aaron Johnson", + "Zoë Kravitz", + "Michael Shannon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Green Zone", + "year": 2010, + "cast": [ + "Matt Damon", + "Greg Kinnear", + "Brendan Gleeson", + "Amy Ryan", + "Khalid Abdalla", + "Jason Isaacs" + ], + "genres": [ + "Action", + "Spy" + ] + }, + { + "title": "Greenberg", + "year": 2010, + "cast": [ + "Ben Stiller", + "Greta Gerwig", + "Rhys Ifans", + "Jennifer Jason Leigh", + "Mark Duplass", + "Chris Messina", + "Brie Larson", + "Juno Temple" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Grown Ups", + "year": 2010, + "cast": [ + "Adam Sandler", + "Kevin James", + "Chris Rock", + "Rob Schneider", + "David Spade" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Gulliver's Travels", + "year": 2010, + "cast": [ + "Jack Black", + "Emily Blunt", + "Jason Segel", + "Catherine Tate", + "James Corden", + "Amanda Peet", + "Chris O'Dowd", + "Billy Connolly", + "Hugh Jackman" + ], + "genres": [ + "Comedy", + "Family" + ] + }, + { + "title": "Happy Tears", + "year": 2010, + "cast": [ + "Parker Posey", + "Demi Moore", + "Rip Torn", + "Ellen Barkin" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "Hachiko: A Dog's Story", + "year": 2010, + "cast": [ + "Richard Gere" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Harry Potter and the Deathly Hallows: Part 1", + "year": 2010, + "cast": [ + "Daniel Radcliffe", + "Rupert Grint", + "Emma Watson", + "Helena Bonham Carter", + "Robbie Coltrane", + "Warwick Davis", + "Ralph Fiennes", + "Michael Gambon", + "Brendan Gleeson", + "Richard Griffiths", + "John Hurt", + "Jason Isaacs", + "Alan Rickman", + "Fiona Shaw", + "Timothy Spall", + "Imelda Staunton", + "David Thewlis", + "Julie Walters" + ], + "genres": [ + "Action", + "Adventure", + "Fantasy" + ] + }, + { + "title": "Hereafter", + "year": 2010, + "cast": [ + "Matt Damon", + "Cécile de France", + "Bryce Dallas Howard", + "Lyndsey Marshal", + "Jay Mohr", + "Thierry Neuvic", + "Jenifer Lewis" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Holy Rollers", + "year": 2010, + "cast": [ + "Jesse Eisenberg", + "Justin Bartha", + "Ari Graynor", + "Danny A. Abeckaser", + "Q-Tip", + "Jason Fuchs" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hot Tub Time Machine", + "year": 2010, + "cast": [ + "John Cusack", + "Rob Corddry", + "Craig Robinson", + "Clark Duke", + "Crispin Glover", + "Lizzy Caplan", + "Chevy Chase" + ], + "genres": [ + "Comedy", + "Science Fiction" + ] + }, + { + "title": "How Do You Know", + "year": 2010, + "cast": [ + "Reese Witherspoon", + "Owen Wilson", + "Paul Rudd", + "Jack Nicholson" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "How to Train Your Dragon", + "year": 2010, + "cast": [ + "Jay Baruchel", + "Gerard Butler", + "Craig Ferguson", + "America Ferrera", + "Jonah Hill", + "Christopher Mintz-Plasse", + "T. J. Miller", + "Kristen Wiig" + ], + "genres": [ + "Family", + "Fantasy" + ] + }, + { + "title": "Hubble 3D", + "year": 2010, + "cast": [ + "The", + "Hubble Space Telescope", + "repair mission", + ". Narrated by", + "Leonardo DiCaprio", + "." + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Hurricane Season", + "year": 2010, + "cast": [ + "Forest Whitaker", + "Lil Wayne", + "Bow Wow", + "Isaiah Washington", + "Taraji P. Henson", + "Michael Gaston", + "Jackie Long", + "Khleo Thomas" + ], + "genres": [ + "Drama", + "Sports" + ] + }, + { + "title": "Hyenas", + "year": 2010, + "cast": [ + "Christa Campbell", + "Costas Mandylor", + "Joshua Alba", + "Rudolf Martin" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "I Love You Phillip Morris", + "year": 2010, + "cast": [ + "Jim Carrey", + "Ewan McGregor", + "Leslie Mann", + "Rodrigo Santoro" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "I'm Still Here", + "year": 2010, + "cast": [ + "Tumultuous year in the life of actor", + "Joaquin Phoenix", + "as he attempts to reinvent himself as a hip-hop artist." + ], + "genres": [ + "Satire" + ] + }, + { + "title": "Inception", + "year": 2010, + "cast": [ + "Leonardo DiCaprio", + "Ken Watanabe", + "Joseph Gordon-Levitt", + "Marion Cotillard", + "Ellen Page", + "Tom Hardy", + "Cillian Murphy", + "Tom Berenger", + "Michael Caine" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Iron Man 2", + "year": 2010, + "cast": [ + "Robert Downey Jr.", + "Don Cheadle", + "Mickey Rourke", + "Gwyneth Paltrow", + "Sam Rockwell", + "Scarlett Johansson", + "Samuel L. Jackson" + ], + "genres": [ + "Superhero" + ] + }, + { + "title": "It's Kind of a Funny Story", + "year": 2010, + "cast": [ + "Keir Gilchrist", + "Zach Galifianakis", + "Emma Roberts", + "Viola Davis", + "Zoë Kravitz", + "Aasif Mandvi", + "Lauren Graham", + "Jim Gaffigan" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Jack Goes Boating", + "year": 2010, + "cast": [ + "Philip Seymour Hoffman", + "Amy Ryan", + "John Ortiz", + "Daphne Rubin-Vega" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Jackass 3-D", + "year": 2010, + "cast": [ + "Johnny Knoxville", + "Bam Margera", + "Chris Pontius", + "Steve-O", + "Ryan Dunn", + "Dave England", + "Jason \"Wee Man\" Acuña", + "Ehren McGhehey", + "Preston Lacy", + "The Dudesons" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Jonah Hex", + "year": 2010, + "cast": [ + "Josh Brolin", + "John Malkovich", + "Megan Fox", + "Michael Fassbender", + "Will Arnett", + "Michael Shannon" + ], + "genres": [ + "Superhero", + "Western" + ] + }, + { + "title": "The Joneses", + "year": 2010, + "cast": [ + "David Duchovny", + "Demi Moore", + "Amber Heard", + "Ben Hollingsworth", + "Gary Cole", + "Glenne Headly", + "Lauren Hutton" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "Just Wright", + "year": 2010, + "cast": [ + "Queen Latifah", + "Common", + "Paula Patton" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Kaboom", + "year": 2010, + "cast": [ + "Roxane Mesquida", + "Thomas Dekker", + "Juno Temple", + "Haley Bennett", + "James Duval" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Karate Kid", + "year": 2010, + "cast": [ + "Jaden Smith", + "Jackie Chan", + "Taraji P. Henson" + ], + "genres": [ + "Martial Arts" + ] + }, + { + "title": "Kick-Ass", + "year": 2010, + "cast": [ + "Aaron Johnson", + "Christopher Mintz-Plasse", + "Chloë Grace Moretz", + "Mark Strong", + "Nicolas Cage" + ], + "genres": [ + "Superhero" + ] + }, + { + "title": "The Kids Are All Right", + "year": 2010, + "cast": [ + "Annette Bening", + "Julianne Moore", + "Mark Ruffalo", + "Mia Wasikowska", + "Josh Hutcherson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Killer Inside Me", + "year": 2010, + "cast": [ + "Casey Affleck", + "Kate Hudson", + "Jessica Alba", + "Ned Beatty", + "Elias Koteas", + "Tom Bower", + "Simon Baker", + "Bill Pullman" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Killers", + "year": 2010, + "cast": [ + "Katherine Heigl", + "Ashton Kutcher" + ], + "genres": [ + "Action", + "Comedy" + ] + }, + { + "title": "Knight and Day", + "year": 2010, + "cast": [ + "Tom Cruise", + "Cameron Diaz", + "Maggie Grace", + "Peter Sarsgaard", + "Paul Dano", + "Viola Davis" + ], + "genres": [ + "Action", + "Comedy" + ] + }, + { + "title": "Knucklehead", + "year": 2010, + "cast": [ + "Mark Feuerstein", + "Melora Hardin", + "Big Show", + "Dennis Farina", + "Wendie Malick", + "Rebecca Creskoff", + "Bobb'e J. Thompson", + "Will Patton", + "Saul Rubinek" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Last Airbender", + "year": 2010, + "cast": [ + "Noah Ringer", + "Nicola Peltz", + "Jackson Rathbone", + "Dev Patel", + "Shaun Toub", + "Aasif Mandvi", + "Cliff Curtis", + "Jessica Andres", + "Katharine Houghton", + "Seychelle Gabriel" + ], + "genres": [ + "Action", + "Adventure", + "Fantasy", + "Family" + ] + }, + { + "title": "The Last Exorcism", + "year": 2010, + "cast": [ + "Patrick Fabian", + "Iris Bahr", + "Louis Herthum", + "Ashley Bell", + "Jamie Alyson Caulde", + "Tony Bentley", + "Shanna Forrestall", + "Allen Boudreaux", + "Caleb Landry Jones" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Last Song", + "year": 2010, + "cast": [ + "Miley Cyrus", + "Liam Hemsworth", + "Bobby Coleman", + "Kelly Preston", + "Greg Kinnear" + ], + "genres": [ + "Drama", + "Comedy", + "Romance" + ] + }, + { + "title": "Leap Year", + "year": 2010, + "cast": [ + "Amy Adams", + "Matthew Goode", + "Adam Scott", + "John Lithgow" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Legend of the Guardians: The Owls of Ga'Hoole", + "year": 2010, + "cast": [ + "Jim Sturgess", + "Geoffrey Rush", + "Emily Barclay", + "Anthony LaPaglia", + "David Wenham", + "Hugo Weaving", + "Ryan Kwanten", + "Helen Mirren", + "Sam Neill", + "Joel Edgerton", + "Miriam Margolyes", + "Richard Roxburgh", + "Deborra-Lee Furness", + "Abbie Cornish", + "Leigh Whannell", + "Angus Sampson", + "Bill Hunter", + "Sacha Horler", + "Essie Davis", + "Barry Otto" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Legendary", + "year": 2010, + "cast": [ + "Patricia Clarkson", + "John Cena", + "Devon Graye", + "Madeleine Martin", + "Tyler Posey", + "Danny Glover" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Legion", + "year": 2010, + "cast": [ + "Paul Bettany", + "Lucas Black", + "Tyrese Gibson", + "Charles S. Dutton", + "Adrianne Palicki", + "Kevin Durand", + "Doug Jones", + "Willa Holland", + "Kate Walsh", + "Dennis Quaid" + ], + "genres": [ + "Action", + "Thriller", + "Fantasy" + ] + }, + { + "title": "Let Me In", + "year": 2010, + "cast": [ + "Kodi Smit-McPhee", + "Chloë Grace Moretz", + "Elias Koteas", + "Richard Jenkins" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Letters to God", + "year": 2010, + "cast": [ + "Robyn Lively", + "Jeffrey Johnson", + "Tanner Maguire", + "Bailee Madison", + "Ralph Waite" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Letters to Juliet", + "year": 2010, + "cast": [ + "Amanda Seyfried", + "Chris Egan", + "Vanessa Redgrave", + "Gael García Bernal", + "Franco Nero" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "Life as We Know It", + "year": 2010, + "cast": [ + "Katherine Heigl", + "Josh Duhamel" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Like Dandelion Dust", + "year": 2010, + "cast": [ + "Mira Sorvino", + "Barry Pepper", + "Cole Hauser", + "Kate Levering", + "Maxwell Perry Cotton", + "L. Scott Caldwell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Little Fockers", + "year": 2010, + "cast": [ + "Robert De Niro", + "Ben Stiller", + "Owen Wilson", + "Blythe Danner", + "Teri Polo", + "Jessica Alba", + "Laura Dern", + "Harvey Keitel", + "Dustin Hoffman", + "Barbra Streisand" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Losers", + "year": 2010, + "cast": [ + "Jeffrey Dean Morgan", + "Zoe Saldana", + "Chris Evans", + "Idris Elba", + "Columbus Short", + "Oscar Janaeda", + "Jason Patric" + ], + "genres": [ + "Action", + "Comedy", + "Superhero" + ] + }, + { + "title": "Lottery Ticket", + "year": 2010, + "cast": [ + "Bow Wow", + "Brandon T. Jackson", + "Naturi Naughton", + "Keith David", + "Charlie Murphy", + "Gbenga Akinnagbe", + "Terry Crews", + "Bill Bellamy", + "Mike Epps", + "T-Pain", + "Loretta Devine", + "Ice Cube" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Love Ranch", + "year": 2010, + "cast": [ + "Helen Mirren", + "Joe Pesci", + "Sergio Peris-Mencheta", + "Gina Gershon", + "Bryan Cranston" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Love & Other Drugs", + "year": 2010, + "cast": [ + "Jake Gyllenhaal", + "Anne Hathaway", + "Oliver Platt", + "Hank Azaria", + "Josh Gad", + "Gabriel Macht", + "Judy Greer", + "Jill Clayburgh" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "MacGruber", + "year": 2010, + "cast": [ + "Will Forte", + "Kristen Wiig", + "Ryan Phillippe", + "Powers Boothe", + "Maya Rudolph", + "Derek Mears", + "Val Kilmer", + "Mark Henry", + "Chris Jericho", + "Glenn Jacobs", + "Paul Wight", + "Montel Vontavious Porter", + "The Great Khali" + ], + "genres": [ + "Action", + "Comedy", + "Satire" + ] + }, + { + "title": "Machete", + "year": 2010, + "cast": [ + "Danny Trejo", + "Michelle Rodriguez", + "Cheech Marin", + "Jeff Fahey", + "Lindsay Lohan", + "Don Johnson", + "Jessica Alba", + "Steven Seagal", + "Robert De Niro", + "Daryl Sabara", + "Tom Savini" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Marmaduke", + "year": 2010, + "cast": [ + "Owen Wilson", + "George Lopez", + "Lee Pace", + "Judy Greer", + "David Walliams", + "William H. Macy", + "Steve Coogan", + "Sam Elliott", + "Fergie", + "Jeremy Piven", + "Christopher Mintz-Plasse", + "Emma Stone", + "Kiefer Sutherland", + "Damon Wayans Jr.", + "Marlon Wayans" + ], + "genres": [ + "Family", + "Live Action" + ] + }, + { + "title": "Marwencol", + "year": 2010, + "cast": [ + "After a vicious attack leaves him brain-damaged and broke", + "Mark Hogancamp", + "seeks recovery in \"Marwencol\" a 1", + "6th scale World War II-era town he creates in his backyard." + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Megamind", + "year": 2010, + "cast": [ + "Will Ferrell", + "Tina Fey", + "Jonah Hill", + "David Cross", + "Brad Pitt" + ], + "genres": [ + "Comedy", + "Superhero" + ] + }, + { + "title": "Middle Men", + "year": 2010, + "cast": [ + "Luke Wilson", + "Giovanni Ribisi", + "Gabriel Macht", + "James Caan", + "Jacinda Barrett", + "Laura Ramsey", + "Terry Crews", + "Rade Šerbedžija", + "Kelsey Grammer", + "Kevin Pollak", + "Robert Forster" + ], + "genres": [ + "Comedy", + "Drama", + "Crime" + ] + }, + { + "title": "Mirrors 2", + "year": 2010, + "cast": [ + "Nick Stahl", + "Emmanuelle Vaugier", + "Evan Jones", + "Christy Carlson Romano", + "William Katt", + "Lawrence Turner", + "Stephanie Honoré", + "Jon Michael Davis", + "Jennifer Sipes", + "Ann Mckenzie" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Morning Glory", + "year": 2010, + "cast": [ + "Rachel McAdams", + "Harrison Ford", + "Diane Keaton", + "Patrick Wilson", + "Jeff Goldblum" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mother and Child", + "year": 2010, + "cast": [ + "Naomi Watts", + "Annette Bening", + "Kerry Washington", + "Jimmy Smits", + "Samuel L. Jackson", + "S. Epatha Merkerson", + "Cherry Jones", + "Elpidia Carrillo", + "Shareeka Epps" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "My Soul to Take", + "year": 2010, + "cast": [ + "Max Thieriot", + "Denzel Whitaker", + "Raúl Esparza", + "Shareeka Epps", + "Zena Grey", + "Trevor St. John" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Nanny McPhee Returns", + "year": 2010, + "cast": [ + "Emma Thompson", + "Maggie Gyllenhaal", + "Rhys Ifans", + "Maggie Smith", + "Ralph Fiennes", + "Ewan McGregor" + ], + "genres": [ + "Family", + "Fantasy" + ] + }, + { + "title": "Never Let Me Go", + "year": 2010, + "cast": [ + "Carey Mulligan", + "Andrew Garfield", + "Keira Knightley" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Next Three Days", + "year": 2010, + "cast": [ + "Russell Crowe", + "Elizabeth Banks", + "Brian Dennehy", + "Olivia Wilde", + "Liam Neeson" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Night Catches Us", + "year": 2010, + "cast": [ + "Anthony Mackie", + "Kerry Washington" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Nightmare on Elm Street", + "year": 2010, + "cast": [ + "Jackie Earle Haley", + "Rooney Mara", + "Thomas Dekker", + "Kellan Lutz", + "Katie Cassidy", + "Connie Britton", + "Clancy Brown" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Other Guys", + "year": 2010, + "cast": [ + "Samuel L. Jackson", + "Mark Wahlberg", + "Will Ferrell", + "Dwayne Johnson", + "Eva Mendes", + "Anne Heche", + "Michael Keaton", + "Steve Coogan", + "Ray Stevenson" + ], + "genres": [ + "Action", + "Comedy" + ] + }, + { + "title": "Our Family Wedding", + "year": 2010, + "cast": [ + "Forest Whitaker", + "America Ferrera", + "Carlos Mencia", + "Regina King", + "Lance Gross" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Paper Man", + "year": 2010, + "cast": [ + "Jeff Daniels", + "Emma Stone", + "Ryan Reynolds", + "Lisa Kudrow" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Paranormal Activity 2", + "year": 2010, + "cast": [ + "Katie Featherston", + "Micah Sloat", + "Sprague Grayden", + "Molly Ephraim" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Passion Play", + "year": 2010, + "cast": [ + "Mickey Rourke", + "Megan Fox", + "Bill Murray", + "Kelly Lynch" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Percy Jackson & the Olympians: The Lightning Thief", + "year": 2010, + "cast": [ + "Logan Lerman", + "Brandon T. Jackson", + "Alexandra Daddario", + "Jake Abel", + "Rosario Dawson", + "Steve Coogan", + "Uma Thurman", + "Pierce Brosnan", + "Sean Bean" + ], + "genres": [ + "Adventure", + "Family" + ] + }, + { + "title": "The Perfect Game", + "year": 2010, + "cast": [ + "Clifton Collins Jr.", + "Cheech Marin", + "Emilie de Ravin", + "Moisés Arias", + "Jake T. Austin", + "Jansen Panettiere", + "Lou Gossett Jr.", + "Bruce McGill" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Piranha 3-D", + "year": 2010, + "cast": [ + "Elisabeth Shue", + "Adam Scott", + "Jerry O'Connell", + "Ving Rhames", + "Jessica Szohr", + "Steven R. McQueen", + "Christopher Lloyd", + "Richard Dreyfuss", + "Kelly Brook", + "Riley Steele", + "Ricardo Chavira", + "Paul Scheer" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Please Give", + "year": 2010, + "cast": [ + "Catherine Keener", + "Amanda Peet", + "Oliver Platt", + "Rebecca Hall", + "Ann Guilbert", + "Kevin Corrigan", + "Sarah Steele" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Preacher's Kid", + "year": 2010, + "cast": [ + "LeToya Luckett", + "Rae'Ven Larrymore Kelly", + "Kierra Sheard", + "Clifton Powell", + "Gregory Alan Williams" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Predators", + "year": 2010, + "cast": [ + "Adrien Brody", + "Topher Grace", + "Alice Braga", + "Walton Goggins", + "Oleg Taktarov", + "Louis Ozawa Changchien", + "Mahershalalhashbaz Ali", + "Laurence Fishburne", + "Danny Trejo" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Prince of Persia: The Sands of Time", + "year": 2010, + "cast": [ + "Jake Gyllenhaal", + "Ben Kingsley", + "Gemma Arterton", + "Alfred Molina" + ], + "genres": [ + "Action", + "Adventure", + "Fantasy" + ] + }, + { + "title": "Rabbit Hole", + "year": 2010, + "cast": [ + "Nicole Kidman", + "Aaron Eckhart", + "Dianne Wiest", + "Tammy Blanchard", + "Miles Teller", + "Giancarlo Esposito", + "Jon Tenney", + "Sandra Oh" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Ramona and Beezus", + "year": 2010, + "cast": [ + "Joey King", + "Selena Gomez", + "John Corbett", + "Bridget Moynahan", + "Ginnifer Goodwin", + "Josh Duhamel", + "Sandra Oh" + ], + "genres": [ + "Comedy", + "Family" + ] + }, + { + "title": "The Rebound", + "year": 2010, + "cast": [ + "Catherine Zeta-Jones", + "Justin Bartha", + "Jordan Carlos", + "Kelly Gould", + "Art Garfunkel" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Red", + "year": 2010, + "cast": [ + "Bruce Willis", + "Morgan Freeman", + "John Malkovich", + "Helen Mirren", + "Karl Urban", + "Mary-Louise Parker", + "Brian Cox", + "Julian McMahon", + "Richard Dreyfuss" + ], + "genres": [ + "Action", + "Comedy" + ] + }, + { + "title": "Remember Me", + "year": 2010, + "cast": [ + "Robert Pattinson", + "Emilie de Ravin", + "Chris Cooper", + "Lena Olin", + "Pierce Brosnan" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "Repo Men", + "year": 2010, + "cast": [ + "Jude Law", + "Forest Whitaker", + "Liev Schreiber", + "Alice Braga", + "Carice van Houten", + "Chandler Canterbury" + ], + "genres": [ + "Action", + "Thriller", + "Science Fiction" + ] + }, + { + "title": "Resident Evil: Afterlife", + "year": 2010, + "cast": [ + "Milla Jovovich", + "Ali Larter", + "Kim Coates", + "Shawn Roberts", + "Sergio Peris-Mencheta", + "Spencer Locke", + "Boris Kodjoe", + "Wentworth Miller" + ], + "genres": [ + "Action", + "Horror", + "Science Fiction" + ] + }, + { + "title": "Robin Hood", + "year": 2010, + "cast": [ + "Russell Crowe", + "Cate Blanchett", + "William Hurt", + "Mark Strong", + "Mark Addy", + "Oscar Isaac", + "Danny Huston", + "Eileen Atkins", + "Max von Sydow" + ], + "genres": [ + "Action", + "Adventure" + ] + }, + { + "title": "The Romantics", + "year": 2010, + "cast": [ + "Katie Holmes", + "Josh Duhamel", + "Anna Paquin", + "Malin Åkerman", + "Adam Brody", + "Dianna Agron", + "Jeremy Strong", + "Rebecca Lawrence", + "Candice Bergen", + "Elijah Wood" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "The Runaways", + "year": 2010, + "cast": [ + "Kristen Stewart", + "Dakota Fanning", + "Michael Shannon", + "Scout Taylor-Compton", + "Alia Shawkat" + ], + "genres": [ + "Biography", + "Drama" + ] + }, + { + "title": "Saint John of Las Vegas", + "year": 2010, + "cast": [ + "Steve Buscemi", + "Romany Malco", + "Peter Dinklage", + "Emmanuelle Chriqui", + "Tim Blake Nelson", + "Sarah Silverman" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Salt", + "year": 2010, + "cast": [ + "Angelina Jolie", + "Liev Schreiber", + "Chiwetel Ejiofor" + ], + "genres": [ + "Action", + "Thriller" + ] + }, + { + "title": "Saw VII", + "year": 2010, + "cast": [ + "Tobin Bell", + "Costas Mandylor", + "Cary Elwes", + "Betsy Russell", + "Sean Patrick Flanery" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Scott Pilgrim vs. the World", + "year": 2010, + "cast": [ + "Michael Cera", + "Mary Elizabeth Winstead", + "Kieran Culkin", + "Chris Evans", + "Anna Kendrick", + "Alison Pill", + "Mark Webber", + "Johnny Simmons", + "Brandon Routh", + "Jason Schwartzman", + "Mae Whitman", + "Brie Larson", + "Aubrey Plaza", + "Tennessee Thomas" + ], + "genres": [ + "Action", + "Romance", + "Comedy" + ] + }, + { + "title": "Secretariat", + "year": 2010, + "cast": [ + "Diane Lane", + "John Malkovich", + "Dylan Walsh", + "James Cromwell", + "Kevin Connelly", + "Scott Glenn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sex and the City 2", + "year": 2010, + "cast": [ + "Sarah Jessica Parker", + "Kim Cattrall", + "Kristin Davis", + "Cynthia Nixon", + "John Corbett", + "Chris Noth", + "David Eigenberg", + "Evan Handler", + "Jason Lewis", + "Lynn Cohen" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "She's Out of My League", + "year": 2010, + "cast": [ + "Jay Baruchel", + "Alice Eve", + "T. J. Miller", + "Mike Vogel", + "Nate Torrence", + "Krysten Ritter", + "Geoff Stults", + "Lindsay Sloane" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Shrek Forever After", + "year": 2010, + "cast": [ + "Mike Myers", + "Eddie Murphy", + "Cameron Diaz", + "Antonio Banderas", + "Walt Dohrn", + "Julie Andrews", + "John Cleese" + ], + "genres": [ + "Family", + "Fantasy" + ] + }, + { + "title": "Shutter Island", + "year": 2010, + "cast": [ + "Leonardo DiCaprio", + "Mark Ruffalo", + "Ben Kingsley", + "Michelle Williams", + "Patricia Clarkson", + "Emily Mortimer", + "Ted Levine", + "John Carroll Lynch", + "Elias Koteas", + "Jackie Earle Haley", + "Max von Sydow" + ], + "genres": [ + "Crime", + "Thriller", + "Drama" + ] + }, + { + "title": "Skyline", + "year": 2010, + "cast": [ + "Eric Balfour", + "Scottie Thompson", + "Donald Faison", + "David Zayas", + "Brittany Daniel", + "Neil Hopkins" + ], + "genres": [ + "Science Fiction", + "Thriller" + ] + }, + { + "title": "Small Town Saturday Night", + "year": 2010, + "cast": [ + "Chris Pine", + "Shawn Christian", + "John Hawkes", + "Bre Blair", + "Muse Watson", + "Robert Pine", + "Brent Briscoe", + "Lin Shaye" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Social Network", + "year": 2010, + "cast": [ + "Jesse Eisenberg", + "Andrew Garfield", + "Justin Timberlake", + "Armie Hammer", + "Max Minghella", + "Brenda Song", + "Rooney Mara", + "Dustin Fitzsimons", + "Joseph Mazzello", + "Rashida Jones" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Solitary Man", + "year": 2010, + "cast": [ + "Michael Douglas", + "Mary-Louise Parker", + "Jenna Fischer", + "Jesse Eisenberg", + "Imogen Poots", + "Susan Sarandon", + "Danny DeVito" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "Somewhere", + "year": 2010, + "cast": [ + "Stephen Dorff", + "Elle Fanning", + "Benicio del Toro", + "Michelle Monaghan", + "Chris Pontius", + "Simona Ventura" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Sorcerer's Apprentice", + "year": 2010, + "cast": [ + "Nicolas Cage", + "Jay Baruchel", + "Alfred Molina", + "Teresa Palmer", + "Monica Bellucci" + ], + "genres": [ + "Adventure", + "Comedy", + "Fantasy" + ] + }, + { + "title": "Splice", + "year": 2010, + "cast": [ + "Adrien Brody", + "Sarah Polley" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Spy Next Door", + "year": 2010, + "cast": [ + "Jackie Chan", + "Amber Valletta", + "Madeline Carroll", + "Will Shadley", + "Magnús Scheving", + "Billy Ray Cyrus", + "George Lopez" + ], + "genres": [ + "Action", + "Comedy", + "Family" + ] + }, + { + "title": "Step Up 3D", + "year": 2010, + "cast": [ + "Rick Malambri", + "Adam G. Sevani", + "Sharni Vinson", + "Alyson Stoner" + ], + "genres": [ + "Dance", + "Drama", + "Romance" + ] + }, + { + "title": "Stone", + "year": 2010, + "cast": [ + "Robert De Niro", + "Edward Norton", + "Milla Jovovich" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Sundowner", + "year": 2010, + "cast": [ + "Jon Bendz", + "Tim Tomchak" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Switch", + "year": 2010, + "cast": [ + "Jennifer Aniston", + "Jason Bateman", + "Patrick Wilson", + "Jeff Goldblum", + "Juliette Lewis" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Takers", + "year": 2010, + "cast": [ + "Matt Dillon", + "Paul Walker", + "Idris Elba", + "Jay Hernandez", + "Michael Ealy", + "Tip \"T.I.\" Harris", + "Chris Brown", + "Hayden Christensen", + "Zoe Saldana" + ], + "genres": [ + "Action", + "Crime", + "Drama" + ] + }, + { + "title": "Tangled", + "year": 2010, + "cast": [ + "Mandy Moore", + "Zachary Levi", + "Donna Murphy", + "Brad Garrett", + "Ron Perlman", + "M. C. Gainey", + "Jeffrey Tambor", + "Peter Sallis", + "Paul F. Tompkins" + ], + "genres": [ + "Animated", + "Family" + ] + }, + { + "title": "The Tempest", + "year": 2010, + "cast": [ + "Helen Mirren", + "David Strathairn", + "Djimon Hounsou", + "Russell Brand", + "Reeve Carney", + "Tom Conti", + "Chris Cooper", + "Alan Cumming", + "Felicity Jones", + "Alfred Molina", + "Ben Whishaw" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Tooth Fairy", + "year": 2010, + "cast": [ + "Dwayne Johnson", + "Ashley Judd", + "Billy Crystal", + "Julie Andrews", + "Stephen Merchant", + "Ryan Sheckler" + ], + "genres": [ + "Family", + "Fantasy" + ] + }, + { + "title": "The Town", + "year": 2010, + "cast": [ + "Ben Affleck", + "Rebecca Hall", + "Jon Hamm", + "Blake Lively", + "Jeremy Renner", + "Titus Welliver", + "Pete Postlethwaite", + "Chris Cooper", + "Slaine" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Tourist", + "year": 2010, + "cast": [ + "Johnny Depp", + "Angelina Jolie", + "Paul Bettany", + "Rufus Sewell", + "Timothy Dalton", + "Steven Berkoff" + ], + "genres": [ + "Drama", + "Comedy", + "Thriller" + ] + }, + { + "title": "Toy Story 3", + "year": 2010, + "cast": [ + "Tom Hanks", + "Tim Allen", + "Joan Cusack", + "Ned Beatty", + "Don Rickles", + "Michael Keaton", + "Wallace Shawn", + "John Ratzenberger", + "Estelle Harris", + "John Morris", + "Jodi Benson", + "Laurie Metcalf", + "Blake Clark", + "Teddy Newton", + "Bud Luckey", + "Timothy Dalton", + "Lori Alan", + "Kristen Schaal", + "Jeff Garlin", + "Bonnie Hunt", + "John Cygan", + "Jeff Pidgeon", + "Whoopi Goldberg", + "Jack Angel", + "R. Lee Ermey", + "Jan Rabson", + "Richard Kind" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Tron: Legacy", + "year": 2010, + "cast": [ + "Jeff Bridges", + "Garrett Hedlund", + "Bruce Boxleitner", + "Michael Sheen", + "Olivia Wilde", + "Beau Garrett", + "John Hurt" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "True Grit", + "year": 2010, + "cast": [ + "Jeff Bridges", + "Matt Damon", + "Josh Brolin", + "Barry Pepper", + "Hailee Steinfeld" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Twelve", + "year": 2010, + "cast": [ + "Chace Crawford", + "Rory Culkin", + "Esti Ginzburg", + "Curtis \"50 Cent\" Jackson", + "Zoë Kravitz", + "Emily Meade", + "Ethan Peck", + "Emma Roberts", + "Charlie Saxton", + "Kiefer Sutherland", + "(narrator)", + "Ellen Barkin", + "Jermaine Crawford", + "Billy Magnussen", + "Nico Tortorella", + "Isiah Whitlock Jr." + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Unstoppable", + "year": 2010, + "cast": [ + "Denzel Washington", + "Chris Pine", + "Rosario Dawson" + ], + "genres": [ + "Action", + "Thriller" + ] + }, + { + "title": "Valentine's Day", + "year": 2010, + "cast": [ + "Jessica Alba", + "Kathy Bates", + "Jessica Biel", + "Bradley Cooper", + "Eric Dane", + "Patrick Dempsey", + "Héctor Elizondo", + "Jamie Foxx", + "Jennifer Garner", + "Topher Grace", + "Anne Hathaway", + "Ashton Kutcher", + "Queen Latifah", + "Taylor Lautner", + "George Lopez", + "Shirley MacLaine", + "Emma Roberts", + "Julia Roberts", + "Taylor Swift" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Vampires Suck", + "year": 2010, + "cast": [ + "Matt Lanter", + "Chris Riggi", + "Jenn Proske", + "Anneliese van der Pol", + "Ken Jeong" + ], + "genres": [ + "Satire" + ] + }, + { + "title": "Waiting for Superman", + "year": 2010, + "cast": [ + "The analyzation of the failing", + "American public education system", + "." + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Wall Street: Money Never Sleeps", + "year": 2010, + "cast": [ + "Michael Douglas", + "Shia LaBeouf", + "Josh Brolin", + "Carey Mulligan", + "Eli Wallach", + "Susan Sarandon", + "Frank Langella", + "Vanessa Ferlito", + "Charlie Sheen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Welcome to the Rileys", + "year": 2010, + "cast": [ + "James Gandolfini", + "Kristen Stewart", + "Melissa Leo", + "Ally Sheedy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "What If...", + "year": 2010, + "cast": [ + "Kevin Sorbo", + "Kristy Swanson", + "Debby Ryan", + "John Ratzenberger" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "What's Wrong with Virginia", + "year": 2010, + "cast": [ + "Jennifer Connelly", + "Ed Harris", + "Emma Roberts", + "Carrie Preston", + "Toby Jones" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "When in Rome", + "year": 2010, + "cast": [ + "Kristen Bell", + "Josh Duhamel", + "Will Arnett", + "Jon Heder", + "Dax Shepard", + "Danny DeVito", + "Anjelica Huston" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Why Did I Get Married Too?", + "year": 2010, + "cast": [ + "Tyler Perry", + "Janet Jackson", + "Jill Scott", + "Malik Yoba", + "Richard T. Jones", + "Michael Jai White", + "Lamman Rucker", + "Sharon Leal", + "Tasha Smith", + "Denise Boutte", + "Keyshia Cole", + "Cicely Tyson", + "Louis Gossett, Jr." + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Winnebago Man", + "year": 2010, + "cast": [ + "The Jack Rebney-", + "Winnebago", + "outtakes internet phenomenon and its impact on people and the person itself." + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Winter's Bone", + "year": 2010, + "cast": [ + "Jennifer Lawrence", + "John Hawkes", + "Kevin Breznahan", + "Dale Dickey", + "Garret Dillahunt", + "Sheryl Lee", + "Shelley Waggener", + "Laura Sweetser" + ], + "genres": [ + "Drama", + "Suspense", + "Thriller" + ] + }, + { + "title": "The Wolfman", + "year": 2010, + "cast": [ + "Benicio del Toro", + "Anthony Hopkins", + "Emily Blunt", + "Hugo Weaving" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Wonderful World", + "year": 2010, + "cast": [ + "Matthew Broderick", + "Sanaa Lathan", + "Michael Kenneth Williams", + "Jodelle Ferland", + "Jesse Tyler Ferguson", + "Ally Walker", + "Philip Baker Hall" + ], + "genres": [ + "Comedy", + "Drama", + "Romance" + ] + }, + { + "title": "Yogi Bear", + "year": 2010, + "cast": [ + "Dan Aykroyd", + "Justin Timberlake", + "Anna Faris", + "Tom Cavanagh", + "T. J. Miller" + ], + "genres": [ + "Family", + "Live Action" + ] + }, + { + "title": "You Again", + "year": 2010, + "cast": [ + "Kristen Bell", + "Jamie Lee Curtis", + "Sigourney Weaver", + "Odette Yustman", + "Kristin Chenoweth", + "Victor Garber", + "Betty White", + "Kyle Bornheimer", + "Christine Lakin", + "Cloris Leachman" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "You Will Meet a Tall Dark Stranger", + "year": 2010, + "cast": [ + "Antonio Banderas", + "Josh Brolin", + "Anthony Hopkins", + "Gemma Jones", + "Freida Pinto", + "Lucy Punch", + "Naomi Watts" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "Youth in Revolt", + "year": 2010, + "cast": [ + "Michael Cera", + "Portia Doubleday", + "Jean Smart", + "Mary Kay Place", + "Justin Long", + "Ray Liotta", + "Steve Buscemi", + "Zach Galifianakis", + "Ari Graynor", + "Fred Willard" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "11-11-11", + "year": 2011, + "cast": [ + "Timothy Gibbs", + "Michael Landes", + "Wendy Glenn", + "Benjamin Cook", + "Lolo Herrero", + "Salome Jimenez", + "Brendan Price", + "Denis Rafter", + "Angela Rosal", + "Lluis Soler" + ], + "genres": [ + "Horror", + "Thriller" + ] + }, + { + "title": "30 Minutes or Less", + "year": 2011, + "cast": [ + "Jesse Eisenberg", + "Danny McBride", + "Aziz Ansari", + "Nick Swardson", + "Michael Peña", + "Fred Ward" + ], + "genres": [ + "Adventure", + "Comedy" + ] + }, + { + "title": "35 and Ticking", + "year": 2011, + "cast": [ + "Tamala Jones", + "Nicole Ari Parker", + "Keith Robinson", + "Darius McCrary", + "Dondre Whitfield", + "Jill Marie Jones", + "Wendy Raquel Robinson", + "Kevin Hart", + "Meagan Good" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "50/50", + "year": 2011, + "cast": [ + "Joseph Gordon-Levitt", + "Seth Rogen", + "Anna Kendrick", + "Bryce Dallas Howard", + "Anjelica Huston" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Abduction", + "year": 2011, + "cast": [ + "Taylor Lautner", + "Lily Collins", + "Alfred Molina", + "Jason Isaacs", + "Maria Bello", + "Sigourney Weaver" + ], + "genres": [ + "Action", + "Thriller" + ] + }, + { + "title": "The Adjustment Bureau", + "year": 2011, + "cast": [ + "Matt Damon", + "Emily Blunt", + "Anthony Mackie", + "Shoreh Aghdashloo", + "John Slattery", + "Michael Kelly", + "Anthony Ruivivar", + "Terence Stamp" + ], + "genres": [ + "Romance", + "Science Fiction", + "Thriller" + ] + }, + { + "title": "The Adventures of Tintin: The Secret of the Unicorn", + "year": 2011, + "cast": [ + "Jamie Bell", + "Andy Serkis", + "Daniel Craig", + "Simon Pegg", + "Nick Frost", + "Tony Curran", + "Toby Jones", + "Gad Elmaleh", + "Mackenzie Crook", + "Daniel Mays", + "Kim Stengel", + "Sebastian Roché", + "Cary Elwes", + "Phillip Rhys", + "Ron Bottitta" + ], + "genres": [ + "Action", + "Adventure", + "Fantasy" + ] + }, + { + "title": "African Cats", + "year": 2011, + "cast": [ + "Centers around two families of lions and cheetahs who teach their cubs the ways of the wild in surviving the African savannah. Narrated by", + "Samuel L. Jackson" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Alvin and the Chipmunks: Chipwrecked", + "year": 2011, + "cast": [ + "Jason Lee", + "David Cross", + "Jenny Slate", + "Justin Long", + "(voice)", + "Matthew Gray Gubler", + "(voice)", + "Jesse McCartney", + "(voice)", + "Christina Applegate", + "(voice)", + "Anna Faris", + "(voice)", + "Amy Poehler", + "(voice)", + "Alan Tudyk", + "(voice)" + ], + "genres": [ + "Family", + "Live Action" + ] + }, + { + "title": "Another Earth", + "year": 2011, + "cast": [ + "William Mapother", + "Brit Marling" + ], + "genres": [ + "Fantasy", + "Drama" + ] + }, + { + "title": "Apollo 18", + "year": 2011, + "cast": [ + "Lloyd Owen", + "Warren Christie" + ], + "genres": [ + "Horror", + "Science Fiction" + ] + }, + { + "title": "The Art of Getting By", + "year": 2011, + "cast": [ + "Freddie Highmore", + "Emma Roberts", + "Michael Angarano", + "Elizabeth Reaser", + "Sam Robards", + "Alicia Silverstone", + "Rita Wilson", + "Blair Underwood" + ], + "genres": [ + "Romance", + "Comedy", + "Teen" + ] + }, + { + "title": "Arthur", + "year": 2011, + "cast": [ + "Russell Brand", + "Helen Mirren", + "Greta Gerwig", + "Jennifer Garner", + "Nick Nolte", + "Luis Guzmán" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Arthur Christmas", + "year": 2011, + "cast": [ + "James McAvoy", + "Hugh Laurie", + "Bill Nighy", + "Jim Broadbent", + "Imelda Staunton", + "Ashley Jensen", + "Will Sasso", + "Ramona Marquez", + "Iain McKee", + "Joan Cusack", + "Robbie Coltrane", + "Michael Palin", + "Dominic West", + "Andy Serkis" + ], + "genres": [ + "Animated", + "Family", + "Fantasy" + ] + }, + { + "title": "Atlas Shrugged: Part I", + "year": 2011, + "cast": [ + "Taylor Schilling", + "Grant Bowler", + "Matthew Marsden", + "Edi Gathegi", + "Graham Beckel", + "Jsu Garcia", + "Jon Polito", + "Michael Lerner" + ], + "genres": [ + "Drama", + "Political", + "Thriller" + ] + }, + { + "title": "Bad Teacher", + "year": 2011, + "cast": [ + "Cameron Diaz", + "Jason Segel", + "Justin Timberlake", + "Lucy Punch", + "John Michael Higgins" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Battle: Los Angeles", + "year": 2011, + "cast": [ + "Aaron Eckhart", + "Michelle Rodriguez", + "Ramón Rodríguez", + "Bridget Moynahan", + "Ne-Yo", + "and", + "Michael Peña", + "Lucas Till", + "Joey King", + "Will Rothhaar", + "Nzinga Blake", + "Jim Parrack", + "Aisha Tyler", + "Tisha Campbell-Martin", + "Noel Fisher", + "Taylor Handley", + "Cory Hardrict" + ], + "genres": [ + "Action", + "Science Fiction" + ] + }, + { + "title": "Beastly", + "year": 2011, + "cast": [ + "Vanessa Hudgens", + "Alex Pettyfer", + "Mary-Kate Olsen", + "Peter Krause", + "Lisa Gay Hamilton", + "Neil Patrick Harris" + ], + "genres": [ + "Fantasy", + "Romance" + ] + }, + { + "title": "Beats, Rhymes & Life: The Travels of a Tribe Called Quest", + "year": 2011, + "cast": [ + "The life and legacy of", + "A Tribe Called Quest", + "one of the most influential and groundbreaking musical groups in hip-hop history." + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Beaver", + "year": 2011, + "cast": [ + "Mel Gibson", + "Jodie Foster", + "Anton Yelchin", + "Jennifer Lawrence" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Beginners", + "year": 2011, + "cast": [ + "Ewan McGregor", + "Christopher Plummer", + "Mélanie Laurent", + "Goran Višnjić", + "Kai Lennox", + "Mary Page Keller", + "Keegan Boos" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Better Life", + "year": 2011, + "cast": [ + "Demián Bichir", + "José Julián" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Big Mommas: Like Father, Like Son", + "year": 2011, + "cast": [ + "Martin Lawrence", + "Brandon T. Jackson", + "Jessica Lucas", + "Tony Curran", + "Faizon Love", + "Sherri Shepherd", + "Portia Doubleday" + ], + "genres": [ + "Comedy", + "Crime" + ] + }, + { + "title": "The Big Year", + "year": 2011, + "cast": [ + "Steve Martin", + "Jack Black", + "Owen Wilson", + "Rashida Jones", + "Anjelica Huston", + "Jim Parsons", + "Rosamund Pike", + "JoBeth Williams", + "Brian Dennehy", + "Dianne Wiest", + "Anthony Anderson", + "Tim Blake Nelson", + "Kevin Pollak", + "Joel McHale" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Born to Be Wild 3D", + "year": 2011, + "cast": [ + "A team of animal activists raise and rescue endangered orangutans and elephants to bring them back into the wild. Narrated by", + "Morgan Freeman" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Twilight Saga: Breaking Dawn - Part 1", + "year": 2011, + "cast": [ + "Kristen Stewart", + "Robert Pattinson", + "Taylor Lautner", + "Nikki Reed", + "Peter Facinelli", + "Elizabeth Reaser", + "Ashley Greene", + "Kellan Lutz", + "Jackson Rathbone", + "Julia Jones", + "Booboo Stewart", + "Billy Burke", + "Sarah Clarke", + "MyAnna Buring", + "Maggie Grace", + "Casey LaBow", + "Michael Sheen", + "Jamie Campbell Bower", + "Christopher Heyerdahl", + "Chaske Spencer", + "Christian Camargo", + "Mía Maestro" + ], + "genres": [ + "Fantasy", + "Romance" + ] + }, + { + "title": "Bridesmaids", + "year": 2011, + "cast": [ + "Kristen Wiig", + "Maya Rudolph", + "Rose Byrne", + "Wendi McLendon-Covey", + "Ellie Kemper", + "Melissa McCarthy", + "Chris O'Dowd", + "Jon Hamm", + "Matt Lucas" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Buck", + "year": 2011, + "cast": [ + "The life", + "career", + "and philosophy of the real-life \"horse whisperer\"", + "Buck Brannaman", + "." + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Bucky Larson: Born to Be a Star", + "year": 2011, + "cast": [ + "Nick Swardson", + "Christina Ricci", + "Don Johnson", + "Stephen Dorff" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Captain America: The First Avenger", + "year": 2011, + "cast": [ + "Chris Evans", + "Tommy Lee Jones", + "Hugo Weaving", + "Dominic Cooper", + "Neal McDonough", + "Derek Luke", + "Stanley Tucci", + "Hayley Atwell", + "Sebastian Stan", + "Kenneth Choi", + "Toby Jones", + "Richard Armitage", + "J. J. Feild", + "Samuel L. Jackson" + ], + "genres": [ + "Superhero" + ] + }, + { + "title": "Carnage", + "year": 2011, + "cast": [ + "Jodie Foster", + "Kate Winslet", + "Christoph Waltz", + "John C. Reilly" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Cars 2", + "year": 2011, + "cast": [ + "Owen Wilson", + "Larry the Cable Guy", + "Michael Caine", + "Emily Mortimer", + "Eddie Izzard", + "Jason Isaacs", + "Thomas Kretschmann", + "Joe Mantegna", + "Peter Jacobson", + "Tony Shalhoub", + "Guido Quaroni", + "Paul Dooley", + "John Ratzenberger", + "John Turturro", + "Jeff Gordon", + "Lewis Hamilton", + "Darrell Waltrip", + "Brent Musburger", + "David Hobbs", + "Bruce Campbell", + "John Lasseter", + "Franco Nero", + "Vanessa Redgrave", + "Michel Michelis", + "Bonnie Hunt", + "Cheech Marin", + "Jenifer Lewis", + "Michael Wallis", + "Lloyd Sherr", + "Sig Hansen", + "Jeff Garlin", + "Katherine Helmond" + ], + "genres": [ + "Animated", + "Family", + "Spy" + ] + }, + { + "title": "Cedar Rapids", + "year": 2011, + "cast": [ + "Ed Helms", + "John C. Reilly", + "Anne Heche", + "Isiah Whitlock, Jr.", + "Kurtwood Smith", + "Stephen Root", + "Mike O'Malley", + "and", + "Sigourney Weaver", + "Alia Shawkat", + "Rob Corddry", + "Thomas Lennon", + "Welker White", + "Steve Blackwood" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Change-Up", + "year": 2011, + "cast": [ + "Ryan Reynolds", + "Jason Bateman", + "Leslie Mann", + "Olivia Wilde", + "Alan Arkin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Chaperone", + "year": 2011, + "cast": [ + "Paul \"Triple H\" Levesque", + "Ariel Winter", + "Kevin Corrigan", + "José Zúñiga", + "Yeardley Smith", + "Kevin Rankin", + "Enrico Colantoni" + ], + "genres": [ + "Comedy", + "Family" + ] + }, + { + "title": "Colombiana", + "year": 2011, + "cast": [ + "Zoe Saldana", + "Jordi Mollà", + "Lennie James", + "Michael Vartan", + "Cliff Curtis" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Conan the Barbarian", + "year": 2011, + "cast": [ + "Jason Momoa", + "Rachel Nichols", + "Stephen Lang", + "Rose McGowan", + "Saïd Taghmaoui", + "Leo Howard", + "Bob Sapp", + "Ron Perlman", + "Steven O'Donnell", + "Nonso Anozie" + ], + "genres": [ + "Action", + "Adventure", + "Fantasy" + ] + }, + { + "title": "The Conspirator", + "year": 2011, + "cast": [ + "James McAvoy", + "Robin Wright", + "Kevin Kline", + "Evan Rachel Wood", + "Danny Huston", + "Justin Long", + "Colm Meaney", + "Tom Wilkinson" + ], + "genres": [ + "Historical", + "Drama" + ] + }, + { + "title": "Contagion", + "year": 2011, + "cast": [ + "Marion Cotillard", + "Matt Damon", + "Laurence Fishburne", + "Jude Law", + "Gwyneth Paltrow", + "Kate Winslet", + "Bryan Cranston", + "Jennifer Ehle", + "Sanaa Lathan", + "Amr Waked", + "John Hawkes", + "Demetri Martin" + ], + "genres": [ + "Action", + "Thriller" + ] + }, + { + "title": "Courageous", + "year": 2011, + "cast": [ + "Alex Kendrick", + "Ken Bevel", + "Kevin Downes", + "Ben Davies", + "Renee Jewell", + "Elanor Brown", + "Robert Amaya", + "Angelita Nelson", + "David Howze", + "Tony \"T.C.\" Stallings" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Cowboys & Aliens", + "year": 2011, + "cast": [ + "Daniel Craig", + "Harrison Ford", + "Olivia Wilde", + "Ana de la Reguera", + "Sam Rockwell", + "Adam Beach", + "Paul Dano", + "Noah Ringer" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Crazy, Stupid, Love.", + "year": 2011, + "cast": [ + "Steve Carell", + "Ryan Gosling", + "Julianne Moore", + "Emma Stone", + "John Carroll Lynch", + "Marisa Tomei", + "Kevin Bacon", + "Analeigh Tipton", + "Liza Lapira", + "Joey King", + "Mekia Cox" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Darkest Hour", + "year": 2011, + "cast": [ + "Emile Hirsch", + "Olivia Thirlby", + "Max Minghella", + "Rachael Taylor", + "Joel Kinnaman" + ], + "genres": [ + "Action", + "Thriller", + "Horror" + ] + }, + { + "title": "Dead Stop", + "year": 2011, + "cast": [ + "Lauren Brady", + "Mike Hardy", + "Trevor Snarr" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Debt", + "year": 2011, + "cast": [ + "Helen Mirren", + "Sam Worthington", + "Jessica Chastain", + "Jesper Christensen", + "Marton Csokas", + "Ciarán Hinds", + "Tom Wilkinson" + ], + "genres": [ + "Drama", + "Spy", + "Thriller" + ] + }, + { + "title": "The Descendants", + "year": 2011, + "cast": [ + "George Clooney", + "Shailene Woodley", + "Beau Bridges", + "Judy Greer", + "Matthew Lillard" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Devil's Double", + "year": 2011, + "cast": [ + "Dominic Cooper", + "Philip Quast", + "Ludivine Sagnier", + "Mimoun Oaïssa", + "Mehmet Ferda" + ], + "genres": [ + "Action", + "Drama" + ] + }, + { + "title": "Diary of a Wimpy Kid: Rodrick Rules", + "year": 2011, + "cast": [ + "Zachary Gordon", + "Devon Bostick", + "Rachael Harris", + "Robert Capron", + "Steve Zahn" + ], + "genres": [ + "Comedy", + "Family" + ] + }, + { + "title": "The Dilemma", + "year": 2011, + "cast": [ + "Vince Vaughn", + "Kevin James", + "Jennifer Connelly", + "Winona Ryder", + "Channing Tatum", + "Queen Latifah" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "Dirty Girl", + "year": 2011, + "cast": [ + "Juno Temple", + "Milla Jovovich", + "William H. Macy", + "Mary Steenburgen", + "Dwight Yoakam", + "and introducing Jeremy Dozier" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Dolphin Tale", + "year": 2011, + "cast": [ + "Harry Connick, Jr.", + "Ashley Judd", + "Nathan Gamble", + "Kris Kristofferson", + "Cozi Zuehldorff", + "Morgan Freeman" + ], + "genres": [ + "Drama", + "Family" + ] + }, + { + "title": "Don't Be Afraid of the Dark", + "year": 2011, + "cast": [ + "Katie Holmes", + "Guy Pearce", + "Bailee Madison", + "Jack Thompson" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Double", + "year": 2011, + "cast": [ + "Richard Gere", + "Topher Grace", + "Stephen Moyer", + "Odette Yustman", + "Stana Katic", + "Chris Marquette", + "Tamer Hassan", + "and", + "Michael Sheen" + ], + "genres": [ + "Spy" + ] + }, + { + "title": "Dream House", + "year": 2011, + "cast": [ + "Daniel Craig", + "Naomi Watts", + "Rachel Weisz", + "Marton Csokas", + "Elias Koteas", + "Jane Alexander", + "Taylor Geare", + "Rachel G. Fox", + "Mark Wilson", + "Jonathan Potts", + "Lynne Griffin", + "Gregory Smith", + "Chris Owens", + "Sarah Gadon" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Drive", + "year": 2011, + "cast": [ + "Ryan Gosling", + "Carey Mulligan", + "Bryan Cranston", + "Christina Hendricks", + "Ron Perlman", + "Oscar Isaac", + "Albert Brooks" + ], + "genres": [ + "Action", + "Drama" + ] + }, + { + "title": "Drive Angry", + "year": 2011, + "cast": [ + "Nicolas Cage", + "Amber Heard", + "William Fichtner", + "Billy Burke", + "Charlotte Ross", + "Christa Campbell", + "Tom Atkins", + "Katy Mixon", + "Todd Farmer", + "David Morse" + ], + "genres": [ + "Action", + "Thriller" + ] + }, + { + "title": "Dylan Dog: Dead of Night", + "year": 2011, + "cast": [ + "Brandon Routh", + "Sam Huntington", + "Anita Briem", + "Peter Stormare", + "Taye Diggs" + ], + "genres": [ + "Action", + "Horror", + "Comedy" + ] + }, + { + "title": "The Eagle", + "year": 2011, + "cast": [ + "Channing Tatum", + "Jamie Bell", + "Donald Sutherland", + "Mark Strong" + ], + "genres": [ + "Adventure", + "Historical", + "Drama" + ] + }, + { + "title": "Everything Must Go", + "year": 2011, + "cast": [ + "Will Ferrell", + "Rebecca Hall", + "Michael Peña", + "Christopher C. J. Wallace", + "Glenn Howerton", + "Stephen Root", + "Laura Dern" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Extremely Loud and Incredibly Close", + "year": 2011, + "cast": [ + "Tom Hanks", + "Sandra Bullock", + "Thomas Horn", + "Max von Sydow", + "Viola Davis", + "John Goodman", + "Jeffrey Wright", + "James Gandolfini" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Fast Five", + "year": 2011, + "cast": [ + "Vin Diesel", + "Paul Walker", + "Jordana Brewster", + "Tyrese Gibson", + "Chris \"Ludacris\" Bridges", + "Matt Schulze", + "Sung Kang", + "Dwayne Johnson" + ], + "genres": [ + "Action", + "Thriller" + ] + }, + { + "title": "Father of Invention", + "year": 2011, + "cast": [ + "Kevin Spacey", + "Camilla Belle", + "Heather Graham", + "Johnny Knoxville", + "with", + "Craig Robinson", + "and", + "Virginia Madsen", + "Michael Rosenbaum", + "John Stamos", + "Rhoda Griffis", + "Jack McGee", + "Danny Comden" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Fear of a Black Republican", + "year": 2011, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "Final Destination 5", + "year": 2011, + "cast": [ + "Nicholas D'Agosto", + "Emma Bell", + "Miles Fisher", + "Arlen Escarpeta", + "with", + "David Koechner", + "and", + "Tony Todd", + "P. J. Byrne", + "Courtney B. Vance", + "Jacqueline MacInnes Wood" + ], + "genres": [ + "Supernatural", + "Horror", + "Thriller" + ] + }, + { + "title": "Footloose", + "year": 2011, + "cast": [ + "Kenny Wormald", + "Julianne Hough", + "Andie MacDowell", + "Dennis Quaid" + ], + "genres": [ + "Dance", + "Drama", + "Comedy", + "Romance" + ] + }, + { + "title": "Friends with Benefits", + "year": 2011, + "cast": [ + "Justin Timberlake", + "Mila Kunis", + "Patricia Clarkson", + "Jenna Elfman", + "Bryan Greenberg", + "Richard Jenkins", + "Woody Harrelson", + "Emma Stone", + "Nolan Gould", + "Jason Segel", + "Rashida Jones", + "Andy Samberg", + "Shaun White" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Fright Night", + "year": 2011, + "cast": [ + "Anton Yelchin", + "Colin Farrell", + "David Tennant", + "Christopher Mintz-Plasse", + "Toni Collette", + "Imogen Poots", + "Lisa Loeb", + "Dave Franco", + "Sandra Vergara" + ], + "genres": [ + "Horror", + "Comedy" + ] + }, + { + "title": "From Prada to Nada", + "year": 2011, + "cast": [ + "Camilla Belle", + "Alexa Vega", + "Wilmer Valderrama", + "Nicholas D'Agosto", + "April Bowlby", + "Kuno Becker", + "Adriana Barraza" + ], + "genres": [ + "Drama", + "Romance", + "Comedy" + ] + }, + { + "title": "The Future", + "year": 2011, + "cast": [ + "Hamish Linklater", + "Miranda July", + "David Warshofsky", + "Isabella Acres", + "Joe Putterlik" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Girl with the Dragon Tattoo", + "year": 2011, + "cast": [ + "Daniel Craig", + "Rooney Mara", + "Christopher Plummer", + "Stellan Skarsgård", + "Steven Berkoff", + "Robin Wright", + "Yorick van Wageningen", + "Joely Richardson" + ], + "genres": [ + "Drama", + "Thriller" + ] + }, + { + "title": "Glee: The 3D Concert Movie", + "year": 2011, + "cast": [ + "Dianna Agron", + "Chris Colfer", + "Darren Criss", + "Ashley Fink", + "Kevin McHale", + "Lea Michele", + "Cory Monteith", + "Heather Morris", + "Chord Overstreet", + "Amber Riley", + "Naya Rivera", + "Mark Salling", + "Harry Shum, Jr.", + "Jenna Ushkowitz", + "Gwyneth Paltrow" + ], + "genres": [ + "Performance" + ] + }, + { + "title": "Gnomeo and Juliet", + "year": 2011, + "cast": [ + "James McAvoy", + "Emily Blunt", + "Michael Caine", + "Maggie Smith", + "Jason Statham", + "Patrick Stewart", + "Ashley Jensen", + "Stephen Merchant", + "Matt Lucas", + "Jim Cummings", + "Julie Walters", + "Richard Wilson", + "Ozzy Osbourne", + "Dolly Parton", + "Hulk Hogan" + ], + "genres": [ + "Animated", + "Family" + ] + }, + { + "title": "A Good Old Fashioned Orgy", + "year": 2011, + "cast": [ + "Jason Sudeikis", + "Leslie Bibb", + "Lake Bell", + "Michelle Borth", + "Nick Kroll", + "Tyler Labine", + "Angela Sarafyan", + "Lindsay Sloane", + "Martin Starr", + "Lucy Punch", + "and", + "Will Forte" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Good Doctor", + "year": 2011, + "cast": [ + "Orlando Bloom", + "Riley Keough", + "Taraji P. Henson", + "Rob Morrow", + "Michael Peña" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Greatest Movie Ever Sold", + "year": 2011, + "cast": [ + "A documentary about branding", + "advertising and product placement that is financed and made possible by brands", + "advertising and product placement." + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Green Hornet", + "year": 2011, + "cast": [ + "Seth Rogen", + "Jay Chou", + "Christoph Waltz", + "Cameron Diaz", + "Edward James Olmos", + "David Harbour", + "Tom Wilkinson", + "Edward Furlong" + ], + "genres": [ + "Comedy", + "Superhero" + ] + }, + { + "title": "Green Lantern", + "year": 2011, + "cast": [ + "Ryan Reynolds", + "Blake Lively", + "Peter Sarsgaard", + "Mark Strong", + "Angela Bassett", + "and", + "Tim Robbins", + "Temuera Morrison", + "Taika Waititi", + "Geoffrey Rush", + "Michael Clarke Duncan" + ], + "genres": [ + "Superhero" + ] + }, + { + "title": "Hall Pass", + "year": 2011, + "cast": [ + "Owen Wilson", + "Jason Sudeikis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Hangover: Part II", + "year": 2011, + "cast": [ + "Bradley Cooper", + "Ed Helms", + "Zach Galifianakis", + "Ken Jeong", + "Jeffrey Tambor", + "with", + "Justin Bartha", + "and", + "Paul Giamatti" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hanna", + "year": 2011, + "cast": [ + "Saoirse Ronan", + "Eric Bana", + "Tom Hollander", + "Olivia Williams", + "Jason Flemyng", + "and", + "Cate Blanchett" + ], + "genres": [ + "Action", + "Thriller" + ] + }, + { + "title": "Happy Feet Two", + "year": 2011, + "cast": [ + "Elijah Wood", + "Robin Williams", + "Hank Azaria", + "Alecia Moore (Pink)", + "Brad Pitt", + "Matt Damon", + "Sofía Vergara", + "Hugo Weaving", + "Richard Carter", + "Common", + "Magda Szubanski", + "Anthony LaPaglia" + ], + "genres": [ + "Animated", + "Family" + ] + }, + { + "title": "Happythankyoumoreplease", + "year": 2011, + "cast": [ + "Josh Radnor", + "Malin Åkerman", + "Kate Mara", + "Zoe Kazan", + "Pablo Schreiber", + "Tony Hale" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Harry Potter and the Deathly Hallows: Part 2", + "year": 2011, + "cast": [ + "Daniel Radcliffe", + "Rupert Grint", + "Emma Watson", + "Helena Bonham Carter", + "Robbie Coltrane", + "Warwick Davis", + "Ralph Fiennes", + "Michael Gambon", + "Brendan Gleeson", + "Richard Griffiths", + "John Hurt", + "Jason Isaacs", + "Alan Rickman", + "Fiona Shaw", + "Timothy Spall", + "Imelda Staunton", + "David Thewlis", + "Julie Walters" + ], + "genres": [ + "Action", + "Adventure", + "Fantasy" + ] + }, + { + "title": "The Heart Specialist", + "year": 2011, + "cast": [ + "Wood Harris", + "Zoe Saldana", + "Brian White", + "Mýa", + "Method Man", + "Jasmine Guy", + "Leon", + "Ed Asner", + "Jenifer Lewis", + "Terrence J", + "Marla Gibbs", + "Nephew Tommy" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "The Help", + "year": 2011, + "cast": [ + "Jessica Chastain", + "Viola Davis", + "Bryce Dallas Howard", + "Allison Janney", + "Octavia Spencer", + "Emma Stone", + "Anna Camp", + "Dana Ivey", + "Leslie Jordan", + "Brian Kerwin", + "Chris Lowell", + "David Oyelowo", + "Sissy Spacek", + "Cicely Tyson", + "Mike Vogel" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Hesher", + "year": 2011, + "cast": [ + "Joseph Gordon-Levitt", + "Devin Brochu", + "Rainn Wilson", + "and", + "Natalie Portman", + "Piper Laurie" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Higher Ground", + "year": 2011, + "cast": [ + "Vera Farmiga", + "Joshua Leonard", + "Norbert Leo Butz", + "Dagmara Dominczyk", + "John Hawkes", + "Bill Irwin", + "Ebon Moss-Bachrach", + "Donna Murphy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hoodwinked Too! Hood vs. Evil", + "year": 2011, + "cast": [ + "Hayden Panettiere", + "Glenn Close", + "Patrick Warburton", + "Joan Cusack", + "Bill Hader", + "Amy Poehler", + "Andy Dick", + "David Ogden Stiers", + "Cory Edwards", + "Martin Short", + "Debra Wilson", + "Brad Garrett", + "Wayne Newton", + "David Alan Grier", + "Cheech Marin", + "Tommy Chong", + "Rob Paulsen", + "Heidi Klum" + ], + "genres": [ + "Animated", + "Family" + ] + }, + { + "title": "Hop", + "year": 2011, + "cast": [ + "James Marsden", + "Russell Brand", + "(voice)", + "Kaley Cuoco", + "Hank Azaria", + "(voice)", + "Gary Cole", + "Elizabeth Perkins", + "David Hasselhoff", + "Chelsea Handler", + "Hugh Laurie", + "(voice)" + ], + "genres": [ + "Family", + "Live Action" + ] + }, + { + "title": "Horrible Bosses", + "year": 2011, + "cast": [ + "Jason Bateman", + "Charlie Day", + "Jason Sudeikis", + "with", + "Jennifer Aniston", + "Colin Farrell", + "Kevin Spacey", + "Donald Sutherland", + "and", + "Jamie Foxx" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hugo", + "year": 2011, + "cast": [ + "Ben Kingsley", + "Sacha Baron Cohen", + "Asa Butterfield", + "Chloë Grace Moretz", + "Ray Winstone", + "Emily Mortimer", + "and", + "Jude Law", + "Christopher Lee", + "Helen McCrory", + "Michael Stuhlbarg", + "Marco Aponte", + "Frances de la Tour", + "Richard Griffiths", + "Johnny Depp" + ], + "genres": [ + "Adventure", + "Drama" + ] + }, + { + "title": "I Am Number Four", + "year": 2011, + "cast": [ + "Alex Pettyfer", + "Timothy Olyphant", + "Teresa Palmer", + "Dianna Agron", + "Callan McAuliffe", + "Kevin Durand" + ], + "genres": [ + "Science Fiction", + "Teen" + ] + }, + { + "title": "I Don't Know How She Does It", + "year": 2011, + "cast": [ + "Sarah Jessica Parker", + "Pierce Brosnan", + "Greg Kinnear", + "Christina Hendricks", + "Kelsey Grammer", + "Seth Meyers", + "Olivia Munn" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "I Melt with You", + "year": 2011, + "cast": [ + "Thomas Jane", + "Jeremy Piven", + "Rob Lowe", + "Christian McKay", + "Carla Gugino", + "Tom Bower", + "Arielle Kebbel", + "Sasha Grey" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Ides of March", + "year": 2011, + "cast": [ + "Ryan Gosling", + "George Clooney", + "Philip Seymour Hoffman", + "Paul Giamatti", + "Marisa Tomei", + "Jeffrey Wright", + "and", + "Evan Rachel Wood" + ], + "genres": [ + "Political", + "Drama", + "Political", + "Thriller" + ] + }, + { + "title": "Immortals", + "year": 2011, + "cast": [ + "Henry Cavill", + "Stephen Dorff", + "Luke Evans", + "Isabel Lucas", + "Kellan Lutz", + "Freida Pinto", + "Mickey Rourke" + ], + "genres": [ + "Action", + "Drama", + "Fantasy" + ] + }, + { + "title": "In Time", + "year": 2011, + "cast": [ + "Amanda Seyfried", + "Justin Timberlake", + "Alex Pettyfer", + "Cillian Murphy", + "Olivia Wilde", + "Matt Bomer", + "Johnny Galecki", + "Vincent Kartheiser", + "Elena Satine" + ], + "genres": [ + "Science Fiction", + "Thriller" + ] + }, + { + "title": "Inside Out", + "year": 2011, + "cast": [ + "Paul \"Triple H\" Levesque", + "Michael Rapaport", + "Parker Posey", + "Julie White", + "Michael Cudlitz", + "and", + "Bruce Dern" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Insidious", + "year": 2011, + "cast": [ + "Patrick Wilson", + "Rose Byrne", + "and", + "Barbara Hershey" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "J. Edgar", + "year": 2011, + "cast": [ + "Leonardo DiCaprio", + "Naomi Watts", + "Armie Hammer", + "Josh Lucas", + "and", + "Judi Dench", + "Damon Herriman", + "Ed Westwick", + "Jeffrey Donovan", + "Ken Howard", + "Stephen Root", + "Denis O'Hare", + "Geoff Pierson", + "Lea Thompson", + "Gunner Wright" + ], + "genres": [ + "Biography", + "Drama" + ] + }, + { + "title": "Jack and Jill", + "year": 2011, + "cast": [ + "Adam Sandler", + "Katie Holmes", + "and", + "Al Pacino" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Janie Jones", + "year": 2011, + "cast": [ + "Abigail Breslin", + "Alessandro Nivola", + "and", + "Elisabeth Shue", + "Brittany Snow", + "Peter Stormare", + "Joel Moore", + "Frances Fisher", + "Frank Whaley", + "Rodney Eastman" + ], + "genres": [ + "Drama", + "Musical" + ] + }, + { + "title": "Judy Moody and the Not Bummer Summer", + "year": 2011, + "cast": [ + "Heather Graham", + "Parris Mosteller", + "Preston Bailey", + "Garrett Ryan", + "Taylar Hender", + "Jaleel White", + "Jordana Betty" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Jumping the Broom", + "year": 2011, + "cast": [ + "Angela Bassett", + "Paula Patton", + "Laz Alonso", + "Loretta Devine", + "Mike Epps", + "Meagan Good", + "Tasha Smith", + "Julie Bowen", + "Romeo Miller", + "DeRay Davis", + "Valarie Pettiford" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "Just Go with It", + "year": 2011, + "cast": [ + "Adam Sandler", + "Jennifer Aniston", + "Brooklyn Decker", + "Nick Swardson", + "Nicole Kidman", + "Dave Matthews", + "Bailee Madison" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Justin Bieber: Never Say Never", + "year": 2011, + "cast": [ + "Chronicles the life of teen sensation", + "Justin Bieber", + "and his career. Shows concert footage of his 2010", + "My World Tour", + "." + ], + "genres": [ + "Performance", + "Documentary" + ] + }, + { + "title": "Kill the Irishman", + "year": 2011, + "cast": [ + "Ray Stevenson", + "Vincent D'Onofrio", + "Val Kilmer", + "Christopher Walken", + "Linda Cardellini", + "Fionnula Flanagan", + "Jason Butler Harner", + "Vinnie Jones", + "Paul Sorvino", + "Marcus Thomas" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Killer Elite", + "year": 2011, + "cast": [ + "Jason Statham", + "Clive Owen", + "and", + "Robert De Niro", + "Dominic Purcell", + "Aden Young", + "Yvonne Strahovski", + "Ben Mendelsohn", + "Adewale Akinnuoye-Agbaje", + "Grant Bowler", + "Matthew Nable" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Kung Fu Panda 2", + "year": 2011, + "cast": [ + "Jack Black", + "Dustin Hoffman", + "Angelina Jolie", + "Ian McShane", + "Seth Rogen", + "Lucy Liu", + "David Cross", + "James Hong", + "Jackie Chan", + "Victor Garber", + "Michelle Yeoh", + "Dennis Haysbert", + "Gary Oldman", + "Danny McBride", + "James Woods", + "Jean-Claude Van Damme" + ], + "genres": [ + "Animated", + "Family" + ] + }, + { + "title": "Larry Crowne", + "year": 2011, + "cast": [ + "Tom Hanks", + "Julia Roberts", + "Bryan Cranston", + "Cedric the Entertainer", + "Taraji P. Henson", + "Gugu Mbatha-Raw", + "Wilmer Valderrama", + "Pam Grier", + "Rita Wilson", + "George Takei", + "Rob Riggle" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Life in a Day", + "year": 2011, + "cast": [ + "Shot by filmmakers all over the world through YouTube", + "it serves as a time capsule to show future generations what it was like to be alive on the 24th of July 2010." + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Like Crazy", + "year": 2011, + "cast": [ + "Anton Yelchin", + "Felicity Jones", + "Jennifer Lawrence", + "Charlie Bewley", + "Alex Kingston", + "Oliver Muirhead", + "Finola Hughes", + "Chris Messina", + "Ben York Jones", + "Jamie Thomas King" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Limitless", + "year": 2011, + "cast": [ + "Bradley Cooper", + "Abbie Cornish", + "Robert De Niro", + "Andrew Howard", + "Anna Friel" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Lincoln Lawyer", + "year": 2011, + "cast": [ + "Matthew McConaughey", + "Marisa Tomei", + "Ryan Phillippe", + "Josh Lucas", + "John Leguizamo", + "Michael Peña", + "Frances Fisher", + "Bob Gunton", + "Bryan Cranston", + "William H. Macy" + ], + "genres": [ + "Mystery", + "Suspense", + "Thriller" + ] + }, + { + "title": "Lucky", + "year": 2011, + "cast": [ + "Colin Hanks", + "Ari Graynor", + "Ann-Margret", + "Mimi Rogers", + "Jeffrey Tambor" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Machine Gun Preacher", + "year": 2011, + "cast": [ + "Gerard Butler", + "Michael Shannon", + "Michelle Monaghan", + "Souléymane Sy Savané", + "Madeline Carroll", + "Kathy Baker" + ], + "genres": [ + "Action", + "Biography" + ] + }, + { + "title": "Madea's Big Happy Family", + "year": 2011, + "cast": [ + "Loretta Devine", + "Shad \"Bow Wow\" Moss", + "David Mann", + "Cassi Davis", + "Tamela Mann", + "Lauren London", + "Isaiah Mustafa", + "Rodney Perry", + "Shannon Kane", + "and Tyler Perry" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "Margaret", + "year": 2011, + "cast": [ + "Anna Paquin", + "J. Smith-Cameron", + "Jean Reno", + "Jeannie Berlin", + "Allison Janney", + "Matthew Broderick", + "Mark Ruffalo", + "Matt Damon", + "Kieran Culkin", + "Olivia Thirlby", + "John Gallagher, Jr.", + "Rosemarie DeWitt", + "Matt Bush" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Margin Call", + "year": 2011, + "cast": [ + "Kevin Spacey", + "Paul Bettany", + "Jeremy Irons", + "Zachary Quinto", + "Penn Badgley", + "Simon Baker", + "Mary McDonnell", + "Demi Moore", + "Stanley Tucci" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Mars Needs Moms", + "year": 2011, + "cast": [ + "Seth Green", + "(Seth Dusky (voice))", + "Dan Fogler", + "Elisabeth Harnois", + "Mindy Sterling", + "Joan Cusack" + ], + "genres": [ + "Animated", + "Comedy" + ] + }, + { + "title": "Martha Marcy May Marlene", + "year": 2011, + "cast": [ + "Elizabeth Olsen", + "Brady Corbet", + "Hugh Dancy", + "John Hawkes", + "Louisa Krause", + "Sarah Paulson" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Mechanic", + "year": 2011, + "cast": [ + "Jason Statham", + "Ben Foster", + "Donald Sutherland" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Midnight in Paris", + "year": 2011, + "cast": [ + "Kathy Bates", + "Adrien Brody", + "Carla Bruni", + "Marion Cotillard", + "Rachel McAdams", + "Michael Sheen", + "Owen Wilson" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Mission: Impossible – Ghost Protocol", + "year": 2011, + "cast": [ + "Tom Cruise", + "Jeremy Renner", + "Simon Pegg", + "Paula Patton", + "Michael Nyqvist", + "Vladimir Mashkov", + "Samuli Edelmann", + "Anil Kapoor", + "Josh Holloway", + "Léa Seydoux", + "Tom Wilkinson" + ], + "genres": [ + "Action", + "Spy" + ] + }, + { + "title": "Moneyball", + "year": 2011, + "cast": [ + "Brad Pitt", + "Jonah Hill", + "Philip Seymour Hoffman", + "Robin Wright", + "Chris Pratt", + "Casey Bond", + "Stephen Bishop", + "Royce Clayton", + "David Hutchinson", + "Kathryn Morris" + ], + "genres": [ + "Drama", + "Sports" + ] + }, + { + "title": "Money Matters", + "year": 2011, + "cast": [ + "Aunjanue Ellis", + "Terri Abney", + "James Whalen", + "Victoria Wallace", + "Jaben Early", + "London K. Powell", + "Michael S. Wright", + "Antonio Lamberti" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Monte Carlo", + "year": 2011, + "cast": [ + "Selena Gomez", + "Leighton Meester", + "Katie Cassidy", + "Cory Monteith", + "Andie MacDowell", + "Brett Cullen", + "Catherine Tate", + "Luke Bracey", + "Pierre Boulanger" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Mr. Popper's Penguins", + "year": 2011, + "cast": [ + "Jim Carrey", + "Carla Gugino", + "Philip Baker Hall", + "Angela Lansbury", + "Clark Gregg", + "Madeline Carroll", + "Maxwell Perry Cotton", + "Ophelia Lovibond", + "Dominic Chianese" + ], + "genres": [ + "Family" + ] + }, + { + "title": "The Muppets", + "year": 2011, + "cast": [ + "Jason Segel", + "Amy Adams", + "Chris Cooper", + "Rashida Jones" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "The Music Never Stopped", + "year": 2011, + "cast": [ + "J. K. Simmons", + "Lou Taylor Pucci", + "Cara Seymour", + "Julia Ormond", + "Tammy Blanchard", + "Mía Maestro", + "Scott Adsit", + "James Urbaniak" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "New Year's Eve", + "year": 2011, + "cast": [ + "Halle Berry", + "Jessica Biel", + "Jon Bon Jovi", + "Abigail Breslin", + "Chris \"Ludacris\" Bridges", + "Robert De Niro", + "Josh Duhamel", + "Zac Efron", + "Héctor Elizondo", + "Katherine Heigl", + "Ashton Kutcher", + "Seth Meyers", + "Lea Michele", + "Sarah Jessica Parker", + "Michelle Pfeiffer", + "Til Schweiger", + "Hilary Swank", + "Sofía Vergara" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "No Strings Attached", + "year": 2011, + "cast": [ + "Natalie Portman", + "Ashton Kutcher", + "Cary Elwes", + "Kevin Kline", + "Greta Gerwig", + "Lake Bell", + "Chris \"Ludacris\" Bridges" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "One Day", + "year": 2011, + "cast": [ + "Anne Hathaway", + "Jim Sturgess", + "Romola Garai", + "Rafe Spall", + "Ken Stott", + "Patricia Clarkson", + "Jodie Whittaker", + "Jamie Sives", + "Georgia King" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "Our Idiot Brother", + "year": 2011, + "cast": [ + "Paul Rudd", + "Elizabeth Banks", + "Zooey Deschanel", + "Emily Mortimer", + "Steve Coogan", + "Hugh Dancy", + "Kathryn Hahn", + "Rashida Jones", + "Shirley Knight", + "T. J. Miller", + "Adam Scott" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "Page One: A Year Inside the New York Times", + "year": 2011, + "cast": [ + "Unprecedented access to the New York Times newsroom yields a complex view of the transformation of a media landscape fraught with both peril and opportunity." + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Paranormal Activity 3", + "year": 2011, + "cast": [ + "Katie Featherston", + "Sprague Grayden", + "Brian Boland", + "Lauren Bittner", + "Christopher Nicholas Smith", + "Mark Fredrichs", + "Chloe Cserngey", + "Jessica Tyler Brown" + ], + "genres": [ + "Supernatural", + "Horror" + ] + }, + { + "title": "Paul", + "year": 2011, + "cast": [ + "Simon Pegg", + "Nick Frost", + "Jason Bateman", + "Kristen Wiig", + "Sigourney Weaver", + "Seth Rogen", + "(voice)", + "Bill Hader", + "Jane Lynch", + "Jeffrey Tambor" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Pearl Jam Twenty", + "year": 2011, + "cast": [ + "A rockumentary based on influential rock band Pearl Jam that marks their 20th anniversary in the year 2011." + ], + "genres": [ + "Musical", + "Documentary" + ] + }, + { + "title": "Peep World", + "year": 2011, + "cast": [ + "Judy Greer", + "Michael C. Hall", + "Taraji P. Henson", + "Kate Mara", + "Ron Rifkin", + "Ben Schwartz", + "Sarah Silverman", + "Lesley Ann Warren", + "Rainn Wilson" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Perfect Host", + "year": 2011, + "cast": [ + "David Hyde Pierce", + "Clayne Crawford", + "Nathaniel Parker", + "Megahn Perry", + "and", + "Helen Reddy" + ], + "genres": [ + "Comedy", + "Thriller" + ] + }, + { + "title": "Pirates of the Caribbean: On Stranger Tides", + "year": 2011, + "cast": [ + "Johnny Depp", + "Penélope Cruz", + "Ian McShane", + "Kevin McNally", + "and", + "Geoffrey Rush" + ], + "genres": [ + "Action", + "Adventure", + "Family" + ] + }, + { + "title": "Priest", + "year": 2011, + "cast": [ + "Paul Bettany", + "Karl Urban", + "Cam Gigandet", + "Maggie Q", + "Lily Collins", + "Stephen Moyer", + "Christopher Plummer" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Prom", + "year": 2011, + "cast": [ + "Aimee Teegarden", + "Nicholas Braun", + "Dean Norris", + "Danielle Campbell", + "Cameron Monaghan", + "Christine Elise McCarthy", + "Raini Rodriguez", + "Jere Burns", + "Aimee-Lynn Chadwick", + "Yin Chang", + "Allie Trimm", + "Jared Kusnitz", + "Thomas McDonell" + ], + "genres": [ + "Romance", + "Comedy", + "Teen" + ] + }, + { + "title": "Puncture", + "year": 2011, + "cast": [ + "Chris Evans", + "Mark Kassen", + "Brett Cullen", + "Marshall Bell", + "Michael Biehn", + "Jesse L. Martin", + "Roxanna Hope", + "Tess Parker", + "Kate Burton", + "Vinessa Shaw" + ], + "genres": [ + "Legal", + "Drama" + ] + }, + { + "title": "Puss in Boots", + "year": 2011, + "cast": [ + "Antonio Banderas", + "Salma Hayek", + "Zach Galifianakis", + "Billy Bob Thornton", + "Amy Sedaris", + "Walt Dohrn", + "(narrator)", + "Zeus Mendoza", + "Constance Marie" + ], + "genres": [ + "Adventure", + "Animated" + ] + }, + { + "title": "Rango", + "year": 2011, + "cast": [ + "Johnny Depp", + "Isla Fisher", + "Abigail Breslin", + "Alfred Molina", + "Bill Nighy", + "Harry Dean Stanton", + "Ray Winstone", + "Timothy Olyphant" + ], + "genres": [ + "Animated", + "Family", + "Western" + ] + }, + { + "title": "Real Steel", + "year": 2011, + "cast": [ + "Hugh Jackman", + "Dakota Goyo", + "Evangeline Lilly", + "Kevin Durand", + "Anthony Mackie", + "James Rebhorn", + "Rima Fakih", + "Rick Yune" + ], + "genres": [ + "Action", + "Drama" + ] + }, + { + "title": "Red Riding Hood", + "year": 2011, + "cast": [ + "Amanda Seyfried", + "Gary Oldman", + "Billy Burke", + "Shiloh Fernandez", + "Max Irons", + "Virginia Madsen", + "Lukas Haas", + "Julie Christie" + ], + "genres": [ + "Fantasy", + "Romance", + "Horror" + ] + }, + { + "title": "Red State", + "year": 2011, + "cast": [ + "Michael Angarano", + "Kerry Bishé", + "Nicholas Braun", + "Kyle Gallner", + "Ralph Garman", + "John Goodman", + "Matt L. Jones", + "Melissa Leo", + "James Parks", + "Michael Parks", + "Kevin Pollak", + "Haley Ramm", + "Stephen Root" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Restless", + "year": 2011, + "cast": [ + "Henry Hopper", + "Mia Wasikowska", + "Schuyler Fisk", + "Jane Adams", + "Chin Han", + "Ryō Kase", + "Lusia Strus" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Reunion", + "year": 2011, + "cast": [ + "John Cena", + "Ethan Embry", + "Michael Rispoli", + "Boyd Holbrook", + "Gregg Henry", + "Lela Loren", + "Jack Conley", + "Amy Smart" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Rio", + "year": 2011, + "cast": [ + "Jesse Eisenberg", + "Anne Hathaway", + "George Lopez", + "Jemaine Clement", + "Jake T. Austin", + "Leslie Mann", + "Tracy Morgan", + "will.i.am", + "Jamie Foxx" + ], + "genres": [ + "Animated", + "Family" + ] + }, + { + "title": "Rise of the Planet of the Apes", + "year": 2011, + "cast": [ + "James Franco", + "Freida Pinto", + "Andy Serkis", + "Tom Felton", + "David Hewlett", + "Chelah Horsdal", + "Brian Cox", + "Jamie Harris", + "Tyler Labine", + "David Oyelowo", + "John Lithgow" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Rite", + "year": 2011, + "cast": [ + "Anthony Hopkins", + "Colin O'Donoghue", + "Maria Grazia Cucinotta", + "Alice Braga", + "Ciarán Hinds", + "Toby Jones", + "Chris Marquette", + "Rutger Hauer", + "Franco Nero" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Roommate", + "year": 2011, + "cast": [ + "Leighton Meester", + "Minka Kelly", + "Cam Gigandet", + "Aly Michalka", + "Danneel Harris", + "Frances Fisher", + "Billy Zane" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Rum Diary", + "year": 2011, + "cast": [ + "Johnny Depp", + "Aaron Eckhart", + "Michael Rispoli", + "Amber Heard", + "Richard Jenkins", + "and", + "Giovanni Ribisi", + "Amaury Nolasco", + "Marshall Bell", + "Bill Smitrovich", + "Julian Holloway", + "Karen Austin", + "Jason Smith" + ], + "genres": [ + "Drama", + "Comedy", + "Thriller" + ] + }, + { + "title": "Sanctum", + "year": 2011, + "cast": [ + "Richard Roxburgh", + "Rhys Wakefield", + "Alice Parkinson", + "Dan Wyllie", + "Ioan Gruffudd" + ], + "genres": [ + "Adventure", + "Disaster" + ] + }, + { + "title": "Scream 4", + "year": 2011, + "cast": [ + "Neve Campbell", + "Courteney Cox", + "David Arquette", + "Emma Roberts", + "Hayden Panettiere", + "Anthony Anderson", + "Alison Brie", + "Adam Brody", + "Rory Culkin", + "Marielle Jaffe", + "Erik Knudsen", + "Mary McDonnell", + "Brittany Robertson", + "Marley Shelton", + "Aimee Teegarden", + "Nico Tortorella", + "Anna Paquin", + "Kristen Bell", + "Shenae Grimes", + "Lucy Hale" + ], + "genres": [ + "Horror", + "Thriller" + ] + }, + { + "title": "Seance: The Summoning", + "year": 2011, + "cast": [ + "Bobby Campo", + "Chris Olivero", + "Cortney Palm" + ], + "genres": [ + "Horror", + "Thriller" + ] + }, + { + "title": "Season of the Witch", + "year": 2011, + "cast": [ + "Nicolas Cage", + "Ron Perlman", + "Stephen Campbell Moore", + "Claire Foy", + "Stephen Graham", + "Ulrich Thomsen", + "Robert Sheehan", + "Christopher Lee" + ], + "genres": [ + "Action", + "Fantasy" + ] + }, + { + "title": "Seven Days in Utopia", + "year": 2011, + "cast": [ + "Robert Duvall", + "Lucas Black", + "Melissa Leo", + "Deborah Ann Woll", + "Brian Geraghty", + "Joseph Lyle Taylor", + "Jerry Ferrara", + "K. J. Choi", + "Kathy Baker" + ], + "genres": [ + "Drama", + "Sports" + ] + }, + { + "title": "Shark Night 3D", + "year": 2011, + "cast": [ + "Sara Paxton", + "Dustin Milligan", + "Katharine McPhee", + "Alyssa Diaz", + "Joel David Moore", + "Joshua Leonard", + "Chris Zylka", + "Chris Carmack", + "Donal Logue" + ], + "genres": [ + "Horror", + "Thriller" + ] + }, + { + "title": "Sherlock Holmes: A Game of Shadows", + "year": 2011, + "cast": [ + "Robert Downey, Jr.", + "Jude Law", + "Noomi Rapace", + "Jared Harris", + "Eddie Marsan", + "Rachel McAdams", + "Stephen Fry", + "Geraldine James", + "Kelly Reilly" + ], + "genres": [ + "Action", + "Mystery" + ] + }, + { + "title": "The Sitter", + "year": 2011, + "cast": [ + "Jonah Hill", + "Max Records", + "Ari Graynor", + "J. B. Smoove", + "Sam Rockwell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Skateland", + "year": 2011, + "cast": [ + "Shiloh Fernandez", + "Ashley Greene", + "Heath Freeman", + "Brett Cullen", + "James LeGros", + "Melinda McGraw", + "Taylor Handley", + "Haley Ramm" + ], + "genres": [ + "Drama", + "Teen" + ] + }, + { + "title": "The Smurfs", + "year": 2011, + "cast": [ + "Neil Patrick Harris", + "Jayma Mays", + "George Lopez", + "(voice)", + "Katy Perry", + "(voice)", + "Hank Azaria", + "Sofía Vergara", + "Alan Cumming", + "(voice)", + "Jonathan Winters", + "(voice)", + "Anton Yelchin", + "(voice)", + "Paul Reubens", + "(voice)", + "John Oliver", + "(voice)", + "Kenan Thompson", + "(voice)", + "Fred Armisen", + "(voice)", + "B. J. Novak", + "(voice)", + "Jeff Foxworthy", + "(voice)", + "Tim Gunn", + "Wolfgang Puck", + "(voice)" + ], + "genres": [ + "Family", + "Live Action" + ] + }, + { + "title": "Snow Flower and the Secret Fan", + "year": 2011, + "cast": [ + "Gianna Jun", + "Li Bingbing", + "Vivian Wu", + "Jiang Wu", + "Russell Wong", + "Coco Chiang", + "Jingyu Hu", + "Archie Kao", + "Jennifer Lim (voice)", + "Christina Y. Jun (voice)", + "Hugh Jackman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Something Borrowed", + "year": 2011, + "cast": [ + "Kate Hudson", + "Ginnifer Goodwin", + "John Krasinski", + "Colin Egglesfield", + "Steve Howey" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "The Son of No One", + "year": 2011, + "cast": [ + "Channing Tatum", + "Tracy Morgan", + "Katie Holmes", + "Ray Liotta", + "Juliette Binoche", + "Al Pacino" + ], + "genres": [ + "Action", + "Crime", + "Drama" + ] + }, + { + "title": "Soul Surfer", + "year": 2011, + "cast": [ + "AnnaSophia Robb", + "Helen Hunt", + "Lorraine Nicholson", + "Dennis Quaid", + "Carrie Underwood" + ], + "genres": [ + "Biography", + "Drama" + ] + }, + { + "title": "Source Code", + "year": 2011, + "cast": [ + "Jake Gyllenhaal", + "Michelle Monaghan", + "Vera Farmiga", + "Jeffrey Wright" + ], + "genres": [ + "Science Fiction", + "Thriller" + ] + }, + { + "title": "Spy Kids: All the Time in the World", + "year": 2011, + "cast": [ + "Jessica Alba", + "Joel McHale", + "Alexa Vega", + "Daryl Sabara", + "Rowan Blanchard", + "Mason Cook", + "Ricky Gervais", + "(voice)", + "Jeremy Piven", + "Danny Trejo" + ], + "genres": [ + "Family", + "Spy" + ] + }, + { + "title": "Straw Dogs", + "year": 2011, + "cast": [ + "James Marsden", + "Kate Bosworth", + "Alexander Skarsgård", + "Dominic Purcell", + "Laz Alonso", + "Willa Holland", + "and", + "James Woods", + "Anson Mount", + "Walton Goggins", + "Rhys Coiro", + "Drew Powell" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Sucker Punch", + "year": 2011, + "cast": [ + "Emily Browning", + "Abbie Cornish", + "Jena Malone", + "Vanessa Hudgens", + "Jamie Chung", + "Oscar Isaac", + "Carla Gugino", + "Jon Hamm", + "Scott Glenn" + ], + "genres": [ + "Action", + "Fantasy" + ] + }, + { + "title": "Super", + "year": 2011, + "cast": [ + "Rainn Wilson", + "Ellen Page", + "Liv Tyler", + "Kevin Bacon", + "Nathan Fillion", + "Gregg Henry", + "Michael Rooker", + "Andre Royo", + "Sean Gunn", + "Stephen Blackehart", + "Linda Cardellini" + ], + "genres": [ + "Comedy", + "Superhero" + ] + }, + { + "title": "Super 8", + "year": 2011, + "cast": [ + "Joel Courtney", + "Elle Fanning", + "Kyle Chandler", + "Ron Eldard", + "Noah Emmerich", + "Gabriel Basso", + "Riley Griffiths", + "Ryan Lee", + "Zach Mills", + "Amanda Michalka" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Take Me Home Tonight", + "year": 2011, + "cast": [ + "Topher Grace", + "Anna Faris", + "Teresa Palmer", + "Dan Fogler", + "Michelle Trachtenberg", + "Chris Pratt", + "Robert Hoffman", + "Lucy Punch", + "Michael Ian Black", + "Lauren Conrad", + "Audrina Patridge", + "Heidi Montag", + "Demetri Martin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Take Shelter", + "year": 2011, + "cast": [ + "Michael Shannon", + "Jessica Chastain", + "Shea Whigham", + "Katy Mixon", + "Kathy Baker", + "Ray McKinnon", + "Lisa Gay Hamilton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Texas Killing Fields", + "year": 2011, + "cast": [ + "Sam Worthington", + "Jeffrey Dean Morgan", + "Jessica Chastain", + "Chloë Grace Moretz", + "Jason Clarke", + "Annabeth Gish", + "Sheryl Lee", + "Stephen Graham" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "That's What I Am", + "year": 2011, + "cast": [ + "Ed Harris", + "Chase Ellison", + "Molly Parker", + "Daniel Roebuck", + "Randy Orton", + "Daniel Yelsky", + "Alexander Walters", + "Mia Rose Frampton", + "Amy Madigan" + ], + "genres": [ + "Drama", + "Comedy", + "Family" + ] + }, + { + "title": "The Thing", + "year": 2011, + "cast": [ + "Mary Elizabeth Winstead", + "Joel Edgerton", + "Ulrich Thomsen", + "Adewale Akinnuoye-Agbaje", + "Eric Christian Olsen", + "Kim Bubbs", + "Jørgen Langhelle", + "Jonathan Lloyd Walker", + "Trond Espen Seim", + "Stig Henrik Hoff", + "Carsten Bjørnlund", + "Jan Gunnar Røise", + "Paul Braunstein" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Thor", + "year": 2011, + "cast": [ + "Chris Hemsworth", + "Natalie Portman", + "Tom Hiddleston", + "Stellan Skarsgård", + "Colm Feore", + "Ray Stevenson", + "Idris Elba", + "Kat Dennings", + "Rene Russo", + "Anthony Hopkins" + ], + "genres": [ + "Superhero" + ] + }, + { + "title": "The Three Musketeers", + "year": 2011, + "cast": [ + "Logan Lerman", + "Milla Jovovich", + "Matthew Macfadyen", + "Ray Stevenson", + "Luke Evans", + "Mads Mikkelsen", + "Gabriella Wilde", + "James Corden", + "Juno Temple", + "Freddie Fox", + "Til Schweiger", + "Orlando Bloom", + "Christoph Waltz" + ], + "genres": [ + "Action", + "Adventure" + ] + }, + { + "title": "Tower Heist", + "year": 2011, + "cast": [ + "Ben Stiller", + "Eddie Murphy", + "Casey Affleck", + "Alan Alda", + "Matthew Broderick", + "Téa Leoni", + "Michael Peña", + "Gabourey Sidibe", + "Judd Hirsch" + ], + "genres": [ + "Comedy", + "Crime" + ] + }, + { + "title": "Transformers: Dark of the Moon", + "year": 2011, + "cast": [ + "Shia LaBeouf", + "Josh Duhamel", + "John Turturro", + "Tyrese Gibson", + "Rosie Huntington-Whiteley", + "Patrick Dempsey", + "Kevin Dunn", + "Julie White", + "John Malkovich", + "Frances McDormand" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Tree of Life", + "year": 2011, + "cast": [ + "Brad Pitt", + "Sean Penn", + "Jessica Chastain" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Trespass", + "year": 2011, + "cast": [ + "Nicolas Cage", + "Nicole Kidman", + "Ben Mendelsohn", + "Cam Gigandet", + "Liana Liberato", + "Jordana Spiro", + "Dash Mihok", + "Emily Meade", + "Nico Tortorella" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Unknown", + "year": 2011, + "cast": [ + "Liam Neeson", + "Diane Kruger", + "January Jones", + "Frank Langella", + "Aidan Quinn", + "Bruno Ganz" + ], + "genres": [ + "Action", + "Thriller" + ] + }, + { + "title": "A Very Harold & Kumar 3D Christmas", + "year": 2011, + "cast": [ + "John Cho", + "Kal Penn", + "and", + "Neil Patrick Harris" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Waiting for Forever", + "year": 2011, + "cast": [ + "Rachel Bilson", + "Tom Sturridge", + "Scott Mechlowicz", + "Richard Jenkins", + "Nikki Blonsky", + "Matthew Davis", + "Jaime King", + "Blythe Danner" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Warrior", + "year": 2011, + "cast": [ + "Joel Edgerton", + "Tom Hardy", + "Jennifer Morrison", + "Frank Grillo", + "Nick Nolte", + "Kurt Angle", + "Noah Emmerich", + "Kevin Dunn", + "Denzel Whitaker", + "Erik Apple", + "Vanessa Martinez", + "Nate Marquardt", + "Anthony Johnson" + ], + "genres": [ + "Action", + "Drama" + ] + }, + { + "title": "Water for Elephants", + "year": 2011, + "cast": [ + "Robert Pattinson", + "Reese Witherspoon", + "Christoph Waltz", + "Hal Holbrook" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Way", + "year": 2011, + "cast": [ + "Martin Sheen", + "Deborah Kara Unger", + "Yorick van Wageningen", + "James Nesbitt", + "Tchéky Karyo", + "Emilio Estevez" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "We Bought a Zoo", + "year": 2011, + "cast": [ + "Matt Damon", + "Scarlett Johansson", + "Thomas Haden Church", + "Patrick Fugit", + "Elle Fanning", + "John Michael Higgins", + "Colin Ford", + "Stephanie Szostak", + "Angus Macfadyen", + "Carla Gallo", + "Peter Riegert", + "J. B. Smoove" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "What's Your Number?", + "year": 2011, + "cast": [ + "Anna Faris", + "Chris Evans", + "Ari Graynor", + "Blythe Danner", + "Ed Begley, Jr.", + "Joel McHale", + "Oliver Jackson-Cohen", + "Zachary Quinto", + "Chris Pratt", + "Andy Samberg", + "Thomas Lennon", + "Mike Vogel", + "Martin Freeman", + "Anthony Mackie", + "Dave Annable" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Win Win", + "year": 2011, + "cast": [ + "Paul Giamatti", + "Amy Ryan", + "Bobby Cannavale", + "Jeffrey Tambor", + "Burt Young", + "Melanie Lynskey" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Winnie the Pooh", + "year": 2011, + "cast": [ + "Jim Cummings", + "Tom Kenny", + "Craig Ferguson", + "Travis Oates", + "Bud Luckey", + "Jack Boulter", + "Kristen Anderson-Lopez", + "Wyatt Dean Hall", + "John Cleese", + "(narrator)" + ], + "genres": [ + "Animated", + "Family" + ] + }, + { + "title": "X-Men: First Class", + "year": 2011, + "cast": [ + "James McAvoy", + "Michael Fassbender", + "Kevin Bacon", + "January Jones", + "Rose Byrne", + "Nicholas Hoult", + "Jennifer Lawrence", + "Oliver Platt", + "Ray Wise", + "Zoë Kravitz", + "Caleb Landry Jones", + "Lucas Till", + "Edi Gathegi", + "Jason Flemyng" + ], + "genres": [ + "Superhero" + ] + }, + { + "title": "Young Adult", + "year": 2011, + "cast": [ + "Charlize Theron", + "Patton Oswalt", + "Patrick Wilson", + "Elizabeth Reaser", + "J. K. Simmons", + "Collette Wolfe", + "Hettienne Park" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Your Highness", + "year": 2011, + "cast": [ + "Danny McBride", + "James Franco", + "Natalie Portman", + "Zooey Deschanel", + "Justin Theroux", + "Toby Jones", + "Damian Lewis", + "Michael Clarke Duncan" + ], + "genres": [ + "Comedy", + "Fantasy" + ] + }, + { + "title": "Zookeeper", + "year": 2011, + "cast": [ + "Kevin James", + "Rosario Dawson", + "Leslie Bibb", + "Ken Jeong", + "Donnie Wahlberg", + "Joe Rogan", + "Thomas Gottschalk", + "Adam Sandler", + "(voice)", + "Sylvester Stallone", + "(voice)", + "Nick Nolte", + "(voice)", + "Don Rickles", + "(voice)", + "Judd Apatow", + "(voice)", + "Jon Favreau", + "(voice)", + "Faizon Love", + "(voice)", + "Cher", + "(voice)", + "Maya Rudolph", + "(voice)" + ], + "genres": [ + "Comedy", + "Family" + ] + }, + { + "title": "12/12/12", + "year": 2012, + "cast": [ + "Sara Malakul Lane", + "Jesus Guevara", + "Steve Hanks", + "Carl Donelson", + "Laura Ramos" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "2-Headed Shark Attack", + "year": 2012, + "cast": [ + "Carmen Electra", + "Charlie O'Connell", + "Brooke Hogan", + "Christina Bach", + "David Gallegos" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "21 Jump Street", + "year": 2012, + "cast": [ + "Jonah Hill", + "Channing Tatum", + "Brie Larson", + "Ice Cube", + "Ellie Kemper", + "Dave Franco", + "Rob Riggle", + "Johnny Depp" + ], + "genres": [ + "Action", + "Comedy" + ] + }, + { + "title": "28 Hotel Rooms", + "year": 2012, + "cast": [ + "Marin Ireland", + "Chris Messina", + "Robert Deamer", + "Brett Collier" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "3,2,1... Frankie Go Boom", + "year": 2012, + "cast": [ + "Charlie Hunnam", + "Chris O'Dowd", + "Lizzy Caplan", + "Nora Dunn", + "Whitney Cummings", + "Ron Perlman", + "Chris Noth" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "40 Days and Nights", + "year": 2012, + "cast": [ + "Monica Keena", + "Christianna Carmine", + "Emily Sandifer", + "Alex Carter" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "40 Point Plan", + "year": 2012, + "cast": [ + "Dave Nemeth", + "Tisha Rivera", + "Joe Comino", + "Nathan Kotzur", + "Christianne Christiensen" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The ABCs of Death", + "year": 2012, + "cast": [ + "See Segments" + ], + "genres": [ + "Horror", + "Comedy" + ] + }, + { + "title": "About Cherry", + "year": 2012, + "cast": [ + "Ashley Hinshaw", + "James Franco", + "Dev Patel", + "Heather Graham", + "Lili Taylor", + "Diane Farr" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Abraham Lincoln vs. Zombies", + "year": 2012, + "cast": [ + "Bill Oberst Jr.", + "Jason Hughley", + "Jason Vail", + "Don McGraw", + "Christopher Marrone" + ], + "genres": [ + "Satire", + "Horror" + ] + }, + { + "title": "Abraham Lincoln: Vampire Hunter", + "year": 2012, + "cast": [ + "Benjamin Walker", + "Dominic Cooper", + "Anthony Mackie", + "Mary Elizabeth Winstead", + "Rufus Sewell", + "Marton Csokas" + ], + "genres": [ + "Horror", + "Thriller" + ] + }, + { + "title": "Act of Valor", + "year": 2012, + "cast": [ + "Active Duty U.S. Navy SEALs", + "Roselyn Sánchez", + "Jason Cottle", + "Alex Veadov", + "Nestor Serrano", + "Emilio Rivera" + ], + "genres": [ + "Action" + ] + }, + { + "title": "After", + "year": 2012, + "cast": [ + "Steven Strait", + "Karolina Wydra", + "Sandra Lafferty", + "Madison Lintz" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Aggression Scale", + "year": 2012, + "cast": [ + "Ray Wise", + "Dana Ashbrook", + "Derek Mears", + "Fabianne Therese", + "Ryan Hartwig" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Air Collision", + "year": 2012, + "cast": [ + "Reginald VelJohnson", + "Jordan Ladd", + "Gerald Webb" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Alex Cross", + "year": 2012, + "cast": [ + "Tyler Perry", + "Matthew Fox", + "Rachel Nichols", + "Jean Reno", + "Giancarlo Esposito", + "Edward Burns", + "John C. McGinley", + "Cicely Tyson", + "Chad Lindberg", + "Carmen Ejogo", + "Stephanie Jacobsen", + "Yara Shahidi" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Alien Origin", + "year": 2012, + "cast": [ + "Chelsea Vincent", + "Peter Pedrero", + "Philip Coc", + "Trey McCurley" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Allegiance", + "year": 2012, + "cast": [ + "Bow Wow" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "Alter Egos", + "year": 2012, + "cast": [ + "Sean Lennon", + "Danny Masterson", + "Geneva Carr", + "Kris Lemche", + "John Ventimiglia", + "Christine Evangelista" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Amazing Adventures of the Living Corpse", + "year": 2012, + "cast": [ + "Michael Villar", + "Marshall Hilton", + "Ryan McGivern" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Amazing Spider-Man", + "year": 2012, + "cast": [ + "Andrew Garfield", + "Emma Stone", + "Rhys Ifans", + "Denis Leary", + "Campbell Scott", + "Irrfan Khan", + "Martin Sheen", + "Sally Field", + "Chris Zylka" + ], + "genres": [ + "Superhero" + ] + }, + { + "title": "American Reunion", + "year": 2012, + "cast": [ + "Jason Biggs", + "Alyson Hannigan", + "Thomas Ian Nicholas", + "Chris Klein", + "Seann William Scott", + "Eddie Kaye Thomas", + "Tara Reid", + "Shannon Elizabeth", + "Natasha Lyonne", + "Mena Suvari", + "Chris Owen", + "Eugene Levy", + "Jennifer Coolidge", + "John Cho", + "Katrina Bowden", + "Jay Harrington" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Any Day Now", + "year": 2012, + "cast": [ + "Alan Cumming", + "Garret Dillahunt", + "Gregg Henry", + "Jamie Anne Allman", + "Chris Mulkey" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Apostle Peter and the Last Supper", + "year": 2012, + "cast": [ + "Robert Loggia", + "Bruce Marchiano", + "Sarah Prikryl" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Apparition", + "year": 2012, + "cast": [ + "Ashley Greene", + "Sebastian Stan", + "Tom Felton", + "Julianna Guill", + "Luke Pasqualino", + "Suzanne Ford" + ], + "genres": [ + "Supernatural", + "Thriller" + ] + }, + { + "title": "Arbitrage", + "year": 2012, + "cast": [ + "Richard Gere", + "Susan Sarandon", + "Tim Roth", + "Brit Marling", + "Laetitia Casta", + "Nate Parker" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Arcadia", + "year": 2012, + "cast": [ + "John Hawkes", + "Ryan Simpkins", + "Ty Simpkins", + "Kendall Toole" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Argo", + "year": 2012, + "cast": [ + "Ben Affleck", + "Bryan Cranston", + "Alan Arkin", + "John Goodman", + "Kyle Chandler", + "Victor Garber", + "Tate Donovan", + "Clea DuVall", + "Michael Parks", + "Tom Lenk", + "Christopher Stanley", + "Taylor Schilling", + "Ashley Wood", + "Chris Messina", + "Richard Kind", + "Titus Welliver", + "Rory Cochrane", + "Devansh Mehta", + "Omid Abtahi", + "Scoot McNairy", + "Kerry Bishé", + "Christopher Denham", + "Bob Gunton", + "Philip Baker Hall", + "Adrienne Barbeau", + "Fouad Hajji" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Art Machine", + "year": 2012, + "cast": [ + "Joseph Cross", + "Jessica Szohr", + "Joey Lauren Adams", + "Meredith Hagner", + "Lynn Cohen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Atlas Shrugged: Part II", + "year": 2012, + "cast": [ + "Samantha Mathis", + "Jason Beghe", + "Esai Morales", + "Patrick Fabian", + "Kim Rhodes", + "Richard T. Jones", + "D. B. Sweeney", + "Paul McCrane", + "John Rubinstein", + "Robert Picardo", + "Ray Wise", + "Diedrich Bader", + "Bug Hall", + "Arye Gross", + "Rex Linn", + "Larisa Oleynik", + "Thomas F. Wilson", + "Teller", + "Sean Hannity", + "Juan Williams", + "Bob Beckel", + "Tamara Holder" + ], + "genres": [ + "Drama", + "Mystery" + ] + }, + { + "title": "ATM", + "year": 2012, + "cast": [ + "Brian Geraghty", + "Alice Eve", + "Josh Peck", + "Mike O'Brian" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Atom the Amazing Zombie Killer", + "year": 2012, + "cast": [ + "Mark Shonsey", + "Lindy Starr", + "Zachary Byron Helm", + "Lloyd Kaufman" + ], + "genres": [ + "Comedy", + "Horror" + ] + }, + { + "title": "The Avengers", + "year": 2012, + "cast": [ + "Robert Downey, Jr.", + "Chris Evans", + "Mark Ruffalo", + "Chris Hemsworth", + "Scarlett Johansson", + "Jeremy Renner", + "Tom Hiddleston", + "Clark Gregg", + "Cobie Smulders", + "Stellan Skarsgård", + "Samuel L. Jackson" + ], + "genres": [ + "Superhero" + ] + }, + { + "title": "The Babymakers", + "year": 2012, + "cast": [ + "Paul Schneider", + "Olivia Munn", + "Kevin Heffernan", + "Nat Faxon", + "Constance Zimmer" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Bachelorette", + "year": 2012, + "cast": [ + "Kirsten Dunst", + "Isla Fisher", + "Lizzy Caplan", + "James Marsden", + "Kyle Bornheimer", + "Rebel Wilson", + "Adam Scott" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Bad Ass", + "year": 2012, + "cast": [ + "Danny Trejo", + "Charles S. Dutton", + "Ron Perlman", + "Shalim Ortiz", + "Jillian Murray", + "Winter Ave Zoli", + "Richard Riehle" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Bad Kids Go to Hell", + "year": 2012, + "cast": [ + "Cameron Deane Stewart", + "Augie Duke", + "Ali Faulkner", + "Roger Edwards", + "Amanda Alch", + "Marc Donato" + ], + "genres": [ + "Comedy", + "Thriller" + ] + }, + { + "title": "Barbie in A Mermaid Tale 2", + "year": 2012, + "cast": [ + "Kelly Sheridan", + "Nicole Oliver", + "Kathleen Barr", + "Tabitha St. Germain", + "Nakia Burrise" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Barbie: The Princess and the Popstar", + "year": 2012, + "cast": [ + "Kelly Sheridan", + "Ellie King", + "Jonathan Holmes", + "Allison Warnyca" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "The Barrens", + "year": 2012, + "cast": [ + "Stephen Moyer", + "Mia Kirshner", + "Allie MacDonald" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Barricade", + "year": 2012, + "cast": [ + "Eric McCormack", + "Jody Thompson", + "Donnelly Rhodes", + "Conner Dwelly", + "Ryan Grantham" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Batman Revealed", + "year": 2012, + "cast": [ + "David Stewart III", + "Chris Clark", + "Derek Mindler", + "Timothy Nugent", + "Jeff Trently", + "Jack Pinto", + "Tom Scholl" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Batman: The Dark Knight Returns", + "year": 2012, + "cast": [ + "Peter Weller", + "Ariel Winter", + "David Selby", + "Wade Williams" + ], + "genres": [ + "Superhero" + ] + }, + { + "title": "The Battery", + "year": 2012, + "cast": [ + "Jeremy Gardner", + "Adam Cronheim", + "Niels Bolle", + "Alana O'Brien" + ], + "genres": [ + "Drama", + "Horror" + ] + }, + { + "title": "Battlefield America", + "year": 2012, + "cast": [ + "Marques Houston", + "Mekia Cox", + "Lynn Whitfield", + "Christopher Michael Jones", + "JoJo Wright", + "Tristen Carter", + "Valarie Pettiford", + "Gary Anthony Sturgis", + "Kida Burns", + "Zach Balandres", + "Carmen Bicondova", + "Edward Mandell", + "Kyle Brooks" + ], + "genres": [ + "Dance", + "Drama" + ] + }, + { + "title": "Battleship", + "year": 2012, + "cast": [ + "Taylor Kitsch", + "Liam Neeson", + "Alexander Skarsgård", + "Rihanna", + "Brooklyn Decker", + "Tadanobu Asano", + "Hamish Linklater", + "Jesse Plemons", + "John Tui", + "Gregory D. Gadson", + "Adam Godley", + "Peter MacNicol" + ], + "genres": [ + "Action", + "Science Fiction" + ] + }, + { + "title": "The Bay", + "year": 2012, + "cast": [ + "Kether Donohue", + "Kristen Connolly", + "Anthony Reynolds", + "Michael Beasley" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "BearCity 2: The Proposal", + "year": 2012, + "cast": [ + "Gerald McCullouch", + "Joe Conti", + "Stephen Guarino", + "Kathy Najimy" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Beasts of the Southern Wild", + "year": 2012, + "cast": [ + "Quvenzhané Wallis", + "Dwight Henry", + "Jonshel Alexander", + "Marilyn Barbarin", + "Kaliana Brower", + "Nicholas Clark", + "Henry D. Coleman", + "Levy Easterly", + "Philip B. Lawrence" + ], + "genres": [ + "Drama", + "Fantasy" + ] + }, + { + "title": "Beauty and the Beast 3D", + "year": 2012, + "cast": [ + "Paige O'Hara", + "Robby Benson", + "Richard White", + "Jerry Orbach", + "David Ogden Stiers", + "Angela Lansbury", + "Bradley Pierce", + "Rex Everhart", + "Jesse Corti", + "Hal Smith", + "Jo Anne Worley" + ], + "genres": [ + "Family", + "Animated", + "Fantasy" + ] + }, + { + "title": "The Beauty Inside", + "year": 2012, + "cast": [ + "Mary Elizabeth Winstead", + "Topher Grace", + "Matthew Gray Gubler", + "Caitriona Balfe", + "Oliver Muirhead" + ], + "genres": [] + }, + { + "title": "Being Flynn", + "year": 2012, + "cast": [ + "Robert De Niro", + "Paul Dano", + "Olivia Thirlby", + "Lili Taylor", + "Julianne Moore" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Ben Banks", + "year": 2012, + "cast": [ + "Mischa Barton", + "Melora Hardin", + "Katharine Towne", + "Kim Huffman" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Bending the Rules", + "year": 2012, + "cast": [ + "Adam \"Edge\" Copeland", + "Jamie Kennedy", + "Jennifer Esposito", + "Alicia Witt", + "Kevin Weisman", + "Philip Baker Hall", + "Jessica Walter" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Bernie", + "year": 2012, + "cast": [ + "Jack Black", + "Shirley MacLaine", + "Matthew McConaughey" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Best Man Down", + "year": 2012, + "cast": [ + "Justin Long", + "Jess Weixler", + "Tyler Labine", + "Addison Timlin", + "Shelley Long", + "Frances O'Connor", + "Evan Jones" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Beverly Hills Chihuahua 3: Viva la Fiesta!", + "year": 2012, + "cast": [ + "Marcus Coloma", + "Erin Cahill", + "Cedric Yarbrough", + "Frances Fisher", + "Briana Lane", + "Sebastian Roche", + "Kyle Gass", + "Jason Brooks", + "Amanda Fuller" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Beyond", + "year": 2012, + "cast": [ + "Jon Voight", + "Teri Polo", + "Dermot Mulroney", + "Ben Crowley", + "Chloe Lesslie" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Big Miracle", + "year": 2012, + "cast": [ + "Drew Barrymore", + "John Krasinski", + "Kristen Bell", + "Dermot Mulroney", + "Tim Blake Nelson", + "Vinessa Shaw", + "Ted Danson", + "Stephen Root", + "Rob Riggle", + "Michael Gaston", + "Megan Angela Smith" + ], + "genres": [ + "Family", + "Romance", + "Drama" + ] + }, + { + "title": "Big Top Scooby-Doo!", + "year": 2012, + "cast": [ + "Frank Welker", + "Matthew Lillard", + "Grey DeLisle", + "Mindy Cohn", + "Craig Ferguson" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Bill W", + "year": 2012, + "cast": [ + "About the founder of", + "Alcoholics Anonymous" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Bindlestiffs", + "year": 2012, + "cast": [ + "Andrew Edison", + "Luke Loftin", + "John Karna", + "Will Fordyce" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Black Rock", + "year": 2012, + "cast": [ + "Katie Aselton", + "Lake Bell", + "Kate Bosworth", + "Will Bouvier", + "Jay Paulson" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Blood for Irina", + "year": 2012, + "cast": [ + "Shauna Henry", + "Carrie Gemmell", + "David Goodfellow", + "Andre Becker", + "Mark Goodfellow" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Border Run", + "year": 2012, + "cast": [ + "Sharon Stone", + "Billy Zane", + "Manolo Cardona", + "Rosemberg Salgado" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Bourne Legacy", + "year": 2012, + "cast": [ + "Jeremy Renner", + "Rachel Weisz", + "Edward Norton", + "Joan Allen", + "Albert Finney", + "Scott Glenn", + "Stacy Keach", + "Oscar Isaac", + "David Strathairn" + ], + "genres": [ + "Action", + "Spy" + ] + }, + { + "title": "Brake", + "year": 2012, + "cast": [ + "Stephen Dorff", + "Chyler Leigh", + "JR Bourne", + "Tom Berenger", + "Pruitt Taylor Vince" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Branded", + "year": 2012, + "cast": [ + "Ed Stoppard", + "Leelee Sobieski", + "Jeffrey Tambor", + "Ingeborga Dapkūnaitė", + "Max von Sydow" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Brave", + "year": 2012, + "cast": [ + "Kelly Macdonald", + "Julie Walters", + "Billy Connolly", + "Emma Thompson", + "Kevin McKidd", + "Craig Ferguson", + "Robbie Coltrane" + ], + "genres": [ + "Adventure", + "Animated", + "Fantasy" + ] + }, + { + "title": "Breaking Wind", + "year": 2012, + "cast": [ + "Heather Ann Davis", + "Eric Callero", + "Frank Pacheco" + ], + "genres": [ + "Satire" + ] + }, + { + "title": "Broken Roads", + "year": 2012, + "cast": [ + "Sally Kirkland", + "Aidan Bristow", + "Shoshana Bush", + "Rolonda Watts" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Bully", + "year": 2012, + "cast": [ + "Bullying in", + "U.S. schools", + "." + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Butter", + "year": 2012, + "cast": [ + "Jennifer Garner", + "Ty Burrell", + "Olivia Wilde", + "Rob Corddry", + "Ashley Greene", + "Alicia Silverstone", + "Yara Shahidi", + "Hugh Jackman" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Cabin in the Woods", + "year": 2012, + "cast": [ + "Kristen Connolly", + "Chris Hemsworth", + "Anna Hutchison", + "Fran Kranz", + "Jesse Williams", + "Richard Jenkins", + "Bradley Whitford", + "Brian J. White", + "Amy Acker", + "Tom Lenk" + ], + "genres": [ + "Horror", + "Thriller" + ] + }, + { + "title": "Caesar and Otto's Deadly Christmas", + "year": 2012, + "cast": [ + "Dave Campfield", + "Paul Chomicki", + "Felissa Rose", + "Linnea Quigley", + "Lloyd Kaufman" + ], + "genres": [ + "Horror", + "Comedy" + ] + }, + { + "title": "California Solo", + "year": 2012, + "cast": [ + "Robert Carlyle", + "Kathleen Wilhoite", + "Michael Des Barres", + "Danny Masterson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "California Winter", + "year": 2012, + "cast": [ + "Michael Ironside", + "Rutina Wesley", + "Erick Avari", + "Elizabeth Dominguez", + "Laura Cerón", + "Sean Patrick Murphy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Call Me Kuchu", + "year": 2012, + "cast": [ + "Exploring the struggles of the", + "LGBT", + "community in", + "Uganda", + "focusing in part on the 2011 murder of LGBT activist", + "David Kato", + "." + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Campaign", + "year": 2012, + "cast": [ + "Will Ferrell", + "Zach Galifianakis", + "Jason Sudeikis", + "Katherine LaNasa", + "Dylan McDermott", + "John Lithgow", + "Dan Aykroyd", + "Brian Cox" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Caroline and Jackie", + "year": 2012, + "cast": [ + "Marguerite Moreau", + "Bitsie Tulloch", + "David Giuntoli", + "Jason Gray-Stanford" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Casa de Mi Padre", + "year": 2012, + "cast": [ + "Will Ferrell", + "Gael García Bernal", + "Diego Luna", + "introducing", + "Génesis Rodríguez", + "with", + "Pedro Armendáriz", + "and", + "Nick Offerman", + "Efren Ramirez", + "Adrian Martinez", + "Héctor Jiménez" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Celeste and Jesse Forever", + "year": 2012, + "cast": [ + "Rashida Jones", + "Andy Samberg", + "Chris Messina", + "Ari Graynor", + "Eric Christian Olsen", + "Will McCormack", + "with", + "Elijah Wood", + "and", + "Emma Roberts", + "Rich Sommer", + "Rafi Gavron", + "Matthew Del Negro" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "The Central Park Five", + "year": 2012, + "cast": [ + "About the", + "Central Park jogger case" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Changing the Game", + "year": 2012, + "cast": [ + "Tony Todd", + "Sean Riggs", + "Irma P. Hall", + "Sticky Fingaz", + "Brandon Ruckdashel", + "Dennis L.A. White" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Chasing Ice", + "year": 2012, + "cast": [ + "Publicizing the effects of climate change" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Chasing Mavericks", + "year": 2012, + "cast": [ + "Gerard Butler", + "Jonny Weston", + "Elisabeth Shue", + "Abigail Spencer", + "Leven Rambin", + "Taylor Handley", + "Scott Eastwood", + "Greg Long", + "Peter Mel", + "Zach Wormhoudt" + ], + "genres": [ + "Biography", + "Drama" + ] + }, + { + "title": "Chernobyl Diaries", + "year": 2012, + "cast": [ + "Jesse McCartney", + "Jonathan Sadowski", + "Devin Kelley", + "Olivia Taylor Dudley", + "Nathan Phillips", + "Ingrid Bolsø Berdal", + "Dimitri Diatchenko" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Chimpanzee", + "year": 2012, + "cast": [ + "A young", + "chimpanzee", + "named Oscar finds himself alone in the African forests until he is adopted by another chimpanzee. Narrated by", + "Tim Allen", + "." + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "A Christmas Story 2", + "year": 2012, + "cast": [ + "Braeden Lemasters", + "Daniel Stern", + "Stacey Travis", + "Valin Shinyei", + "David W. Thompson" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Christmas with the Dead", + "year": 2012, + "cast": [ + "Damian Maffei", + "Brad Maule", + "Kasey Lansdale" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Chronicle", + "year": 2012, + "cast": [ + "Dane DeHaan", + "Michael B. Jordan", + "Alex Russell", + "Michael Kelly", + "Ashley Hinshaw", + "Anna Wood", + "Joe Vaz" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Citizen", + "year": 2012, + "cast": [ + "Khaled El Nabawy", + "Agnes Bruckner", + "Rizwan Manji" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Clash of the Empires", + "year": 2012, + "cast": [ + "Christopher Judge", + "Bai Ling", + "Sun Korng", + "Kyle Morris" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Cloud Atlas", + "year": 2012, + "cast": [ + "Tom Hanks", + "Halle Berry", + "Jim Broadbent", + "Hugo Weaving", + "Jim Sturgess", + "Bae Doona", + "Ben Whishaw", + "James D'Arcy", + "Zhou Xun", + "Keith David", + "David Gyasi", + "Susan Sarandon", + "Hugh Grant" + ], + "genres": [ + "Adventure", + "Drama" + ] + }, + { + "title": "The Cold Light of Day", + "year": 2012, + "cast": [ + "Henry Cavill", + "Sigourney Weaver", + "and", + "Bruce Willis", + "Verónica Echegui", + "Roschdy Zem", + "Oscar Jaenada", + "Joseph Mawle", + "Caroline Goodall", + "Rafi Gavron", + "Emma Hamilton", + "Michael Budd", + "Jim Piddock", + "Paloma Bloyd", + "Colm Meaney" + ], + "genres": [ + "Action", + "Thriller" + ] + }, + { + "title": "The Collection", + "year": 2012, + "cast": [ + "Josh Stewart", + "Courtney Lauren Cumming", + "Christopher McDonald", + "Lee Tergesen", + "Randall Archer", + "Shannon Kane" + ], + "genres": [ + "Horror", + "Thriller" + ] + }, + { + "title": "Come Morning", + "year": 2012, + "cast": [ + "Michael Ray Davis", + "Thor Wahlestedt", + "Elise Rovinsky", + "Thomas Moore", + "Blake Logan" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Comedy", + "year": 2012, + "cast": [ + "Tim Heidecker", + "Eric Wareheim", + "Kate Lyn Sheil", + "Alexia Rasmussen", + "Gregg Turkington", + "James Murphy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Compliance", + "year": 2012, + "cast": [ + "Ann Dowd", + "Dreama Walker", + "Pat Healy", + "Bill Camp", + "Ashlie Atkinson", + "Phillip Ettinger", + "James McCaffrey" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Contraband", + "year": 2012, + "cast": [ + "Mark Wahlberg", + "Kate Beckinsale", + "Ben Foster", + "Giovanni Ribisi", + "Caleb Landry Jones", + "Lukas Haas", + "Diego Luna", + "J. K. Simmons" + ], + "genres": [ + "Action", + "Thriller" + ] + }, + { + "title": "Cowgirls 'n Angels", + "year": 2012, + "cast": [ + "Bailee Madison", + "James Cromwell", + "Jackson Rathbone", + "Alicia Witt", + "Kathleen Rose Perkins", + "Frankie Faison" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Crave", + "year": 2012, + "cast": [ + "Josh Lawson", + "Emma Lung", + "Ron Perlman", + "Edward Furlong", + "Christopher Stapleton", + "William Gines" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Crazy Eyes", + "year": 2012, + "cast": [ + "Lukas Haas", + "Madeline Zima", + "Jake Busey", + "Tania Raymonde", + "Ray Wise" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Crooked Arrows", + "year": 2012, + "cast": [ + "Brandon Routh", + "Crystal Allen", + "Chelsea Ricketts", + "Dennis Ambriz", + "Michael Hudson", + "Gil Birmingham", + "Tyler Hill" + ], + "genres": [ + "Drama", + "Sports" + ] + }, + { + "title": "Damsels in Distress", + "year": 2012, + "cast": [ + "Greta Gerwig", + "Adam Brody", + "Analeigh Tipton", + "Megalyn Echikunwoke", + "Carrie MacLemore", + "Hugo Becker", + "Billy Magnussen", + "Ryan Metcalf", + "Caitlin Fitzgerald", + "Jermaine Crawford", + "Aubrey Plaza", + "Zach Woods", + "Taylor Nichols", + "Carolyn Farina" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "The Dark Knight Rises", + "year": 2012, + "cast": [ + "Christian Bale", + "Michael Caine", + "Gary Oldman", + "Tom Hardy", + "Anne Hathaway", + "Marion Cotillard", + "Joseph Gordon-Levitt", + "Morgan Freeman" + ], + "genres": [ + "Crime", + "Drama", + "Superhero" + ] + }, + { + "title": "Dark Shadows", + "year": 2012, + "cast": [ + "Johnny Depp", + "Michelle Pfeiffer", + "Helena Bonham Carter", + "Eva Green", + "Jackie Earle Haley", + "Bella Heathcote", + "Chloë Grace Moretz", + "Jonny Lee Miller", + "Gulliver McGrath" + ], + "genres": [ + "Horror", + "Comedy" + ] + }, + { + "title": "Dark Tide", + "year": 2012, + "cast": [ + "Halle Berry", + "Olivier Martinez", + "Ralph Brown", + "Luke Tyler", + "Mark Elderkin" + ], + "genres": [ + "Action" + ] + }, + { + "title": "A Dark Truth", + "year": 2012, + "cast": [ + "Andy Garcia", + "Kim Coates", + "Deborah Kara Unger", + "Eva Longoria", + "Forest Whitaker" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Darling Companion", + "year": 2012, + "cast": [ + "Mark Duplass", + "Richard Jenkins", + "Diane Keaton", + "Kevin Kline", + "Elisabeth Moss", + "Sam Shepard", + "Dianne Wiest", + "Ayelet Zurer" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Day One", + "year": 2012, + "cast": [ + "Kat Dennings", + "Chad Michael Murray", + "Rupert Friend", + "Corbin Bleu", + "Juliana Harkavy", + "Brian Patrick Clarke" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dead Before Dawn", + "year": 2012, + "cast": [ + "Devon Bostick", + "Christopher Lloyd", + "Martha MacIsaac", + "Brandon Jay McLaren" + ], + "genres": [ + "Horror", + "Comedy" + ] + }, + { + "title": "Dead Man's Burden", + "year": 2012, + "cast": [ + "Barlow Jacobs", + "Clare Bowen", + "David Call", + "Richard Riehle", + "Joseph Lyle Taylor" + ], + "genres": [ + "Western" + ] + }, + { + "title": "Deadfall", + "year": 2012, + "cast": [ + "Eric Bana", + "Olivia Wilde", + "Jason Cavalier", + "Charlie Hunnam", + "Kris Kristofferson", + "Alain Goulem" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Deadline", + "year": 2012, + "cast": [ + "Eric Roberts", + "Steve Talley", + "J.D. Souther", + "David Dwyer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Death Race 3: Inferno", + "year": 2012, + "cast": [ + "Luke Goss", + "Danny Trejo", + "Ving Rhames", + "Robin Shou", + "Eugene Khumbanyiwa" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Deep Dark Canyon", + "year": 2012, + "cast": [ + "Ted Levine", + "Spencer Treat Clark", + "Nick Eversman", + "Martin Starr", + "Matthew Lillard" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Detachment", + "year": 2012, + "cast": [ + "Adrien Brody", + "Marcia Gay Harden", + "Christina Hendricks", + "William Petersen", + "Bryan Cranston", + "Tim Blake Nelson", + "Betty Kaye", + "Sami Gayle", + "Lucy Liu", + "Blythe Danner", + "James Caan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Detention of the Dead", + "year": 2012, + "cast": [ + "Jacob Zachar", + "Alexa Nikolas", + "Christa B. Allen", + "Jayson Blair" + ], + "genres": [ + "Horror", + "Comedy" + ] + }, + { + "title": "The Devil Inside", + "year": 2012, + "cast": [ + "Fernanda Andrade", + "Simon Quarterman", + "Evan Helmuth", + "Ionut Grama", + "Suzan Crowley", + "Bonnie Morgan", + "Brian Johnson", + "Preston James Hillier", + "D. T. Carney" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Diary of a Wimpy Kid: Dog Days", + "year": 2012, + "cast": [ + "Zachary Gordon", + "Steve Zahn", + "Robert Capron", + "Devon Bostick", + "Rachael Harris", + "Connor Fielding", + "Owen Fielding", + "Peyton List", + "Karan Brar", + "Melissa Roxburgh", + "Grayson Russell", + "Laine MacNeil", + "Sachin Tyler Sadachcharan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Dictator", + "year": 2012, + "cast": [ + "Sacha Baron Cohen", + "Anna Faris", + "Ben Kingsley", + "Jason Mantzoukas", + "John C. Reilly", + "Megan Fox", + "B. J. Novak", + "Bobby Lee", + "Kevin Corrigan", + "J. B. Smoove", + "Adeel Akhtar", + "Fred Melamed" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Divorce Invitation", + "year": 2012, + "cast": [ + "Jamie-Lynn Sigler", + "Jonathan Bennett", + "Paul Sorvino", + "Lainie Kazan", + "Elliott Gould" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Django Unchained", + "year": 2012, + "cast": [ + "Jamie Foxx", + "Christoph Waltz", + "Leonardo DiCaprio", + "Kerry Washington", + "Samuel L. Jackson", + "Walton Goggins", + "Dennis Christopher", + "James Remar", + "Michael Parks", + "Don Johnson", + "Laura Cayouette", + "James Russo", + "Tom Wopat", + "Misty Upham", + "Rex Linn", + "Cooper Huckabee", + "Doc Duhame", + "M. C. Gainey", + "Bruce Dern", + "Ned Bellamy", + "Franco Nero", + "Jonah Hill", + "Robert Carradine", + "James Parks", + "Tom Savini", + "Quentin Tarantino" + ], + "genres": [ + "Western" + ] + }, + { + "title": "The Do-Deca-Pentathlon", + "year": 2012, + "cast": [ + "Mark Kelly", + "Steve Zissis", + "Jennifer Lafleur", + "Julie Vorus" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Don't Change the Subject", + "year": 2012, + "cast": [ + "Focuses on suicide and using the concept of changing topic" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Dracula Reborn", + "year": 2012, + "cast": [ + "Corey Landis", + "Victoria Summer", + "Krash Miller", + "Stuart Rigby", + "Ian Pfister" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Dragon Eyes", + "year": 2012, + "cast": [ + "Cung Le", + "Peter Weller", + "Jean-Claude Van Damme", + "Crystal Mantecon", + "Kristopher Van Varenberg" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Dysfunctional Friends", + "year": 2012, + "cast": [ + "Stacey Dash", + "Reagan Gomez-Preston", + "Wesley Jonathan", + "Stacy Keibler", + "Terrell Owens" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Eating Out 5: The Open Weekend", + "year": 2012, + "cast": [ + "Chris Salvatore", + "Harmony Santana", + "Aaron Milo", + "Chris Puckett", + "Daniel Skelton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Eden", + "year": 2012, + "cast": [ + "Jamie Chung", + "Matt O'Leary", + "Beau Bridges", + "Scott Mechlowicz" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Elevator", + "year": 2012, + "cast": [ + "Christopher Backus", + "Anita Briem", + "John Getz", + "The Pace Twins", + "Devin Ratray" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Elf-Man", + "year": 2012, + "cast": [ + "Wee Man", + "Jeffrey Combs", + "Mackenzie Astin", + "Carly Robell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The End of Love", + "year": 2012, + "cast": [ + "Mark Webber", + "Shannyn Sossamon", + "Amanda Seyfried", + "Aubrey Plaza" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "End of Watch", + "year": 2012, + "cast": [ + "Jake Gyllenhaal", + "Michael Peña", + "Anna Kendrick", + "Natalie Martinez", + "America Ferrera", + "Frank Grillo", + "David Harbour" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Evidence", + "year": 2012, + "cast": [ + "Ryan McCoy", + "Brett Rosenberg", + "Abigail Richie", + "Ashley Bracken", + "Zack Fahey", + "Blaine Gray" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Evil Head", + "year": 2012, + "cast": [ + "Joanna Angel", + "Tommy Pistol", + "Veruca James", + "Danny Wylde" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Excision", + "year": 2012, + "cast": [ + "AnnaLynne McCord", + "Traci Lords", + "Ariel Winter", + "Roger Bart", + "Jeremy Sumpter", + "Malcolm McDowell" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Exit Strategy", + "year": 2012, + "cast": [ + "Jameel Saleem", + "Noelle Balfour", + "Kimelia Weathers", + "Fuzzy Fantabulous", + "Liz Hernandez" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "The Expendables 2", + "year": 2012, + "cast": [ + "Sylvester Stallone", + "Jason Statham", + "Jet Li", + "Dolph Lundgren", + "Chuck Norris", + "Terry Crews", + "Randy Couture", + "Liam Hemsworth", + "Jean-Claude Van Damme", + "Bruce Willis", + "Arnold Schwarzenegger", + "Scott Adkins", + "Yu Nan", + "Amanda Ooms", + "Novak Djokovic" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Extracted", + "year": 2012, + "cast": [ + "Sasha Roiz", + "Rodney Eastman", + "Dominic Bogart", + "Jenny Molin", + "Nick Jamison", + "Brad Culver" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Filly Brown", + "year": 2012, + "cast": [ + "Jenni Rivera", + "Lou Diamond Phillips", + "Edward James Olmos", + "Emilio Rivera" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Finding Nemo 3D", + "year": 2012, + "cast": [ + "Albert Brooks", + "Ellen DeGeneres", + "Alexander Gould", + "Willem Dafoe", + "Barry Humphries", + "Eric Bana", + "Bruce Spence", + "Allison Janney", + "Elizabeth Perkins", + "Geoffrey Rush", + "Brad Garrett", + "Austin Pendleton", + "Stephen Root", + "Vicki Lewis" + ], + "genres": [ + "Adventure", + "Animated" + ] + }, + { + "title": "Fire with Fire", + "year": 2012, + "cast": [ + "Josh Duhamel", + "50 Cent", + "Bruce Willis", + "Vincent D'Onofrio", + "Richard Schiff" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The First Time", + "year": 2012, + "cast": [ + "Dylan O'Brien", + "Britt Robertson", + "Craig Roberts", + "Joshua Malina", + "James Frecheville" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Fitzgerald Family Christmas", + "year": 2012, + "cast": [ + "Edward Burns", + "Connie Britton", + "Heather Burns", + "Kerry Bishé", + "Marsha Dietlein" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Five-Year Engagement", + "year": 2012, + "cast": [ + "Jason Segel", + "Emily Blunt", + "Alison Brie", + "Rhys Ifans", + "Chris Pratt", + "Kevin Hart", + "Mindy Kaling", + "Chris Parnell", + "Dakota Johnson", + "David Paymer", + "Mimi Kennedy", + "Brian Posehn", + "Jacki Weaver" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Flicka: Country Pride", + "year": 2012, + "cast": [ + "Clint Black", + "Lisa Hartman-Black", + "Kacey Rohl", + "Siobhan Williams", + "Lily Pearl Black" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Flight", + "year": 2012, + "cast": [ + "Denzel Washington", + "Don Cheadle", + "Kelly Reilly", + "John Goodman", + "Bruce Greenwood", + "and", + "Melissa Leo", + "Tamara Tunie", + "Nadine Velazquez" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "For a Good Time, Call...", + "year": 2012, + "cast": [ + "Ari Graynor", + "Lauren Miller", + "Mark Webber", + "and", + "Justin Long", + "Seth Rogen", + "Mimi Rogers", + "Nia Vardalos", + "James Wolk" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "For Ellen", + "year": 2012, + "cast": [ + "Paul Dano", + "Jon Heder", + "Jena Malone", + "Margarita Levieva", + "Shaylena Mandigo" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "For the Love of Money", + "year": 2012, + "cast": [ + "Yehuda Levi", + "Delphine Chanéac", + "Cody Longo", + "Jeffrey Tambor", + "Jonathan Lipnicki" + ], + "genres": [ + "Action", + "Drama" + ] + }, + { + "title": "The Forger", + "year": 2012, + "cast": [ + "Josh Hutcherson", + "Hayden Panettiere", + "Lauren Bacall", + "Alfred Molina", + "Dina Eastwood" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Forgetting the Girl", + "year": 2012, + "cast": [ + "Christopher Denham", + "Anna Camp", + "Elizabeth Rice", + "Paul Sparks", + "Joel de la Fuente" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Fortress", + "year": 2012, + "cast": [ + "Bug Hall", + "Donnie Jeffcoat", + "Sean McGowan", + "Manu Intiraymi", + "Howard Gibson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Frankenweenie", + "year": 2012, + "cast": [ + "Catherine O'Hara", + "Martin Short", + "Martin Landau", + "Charlie Tahan", + "Atticus Shaffer", + "Winona Ryder", + "Robert Capron", + "Conchata Ferrell" + ], + "genres": [ + "Animated", + "Horror", + "Comedy" + ] + }, + { + "title": "Friends with Kids", + "year": 2012, + "cast": [ + "Adam Scott", + "Jennifer Westfeldt", + "Jon Hamm", + "Kristen Wiig", + "Maya Rudolph", + "Chris O'Dowd", + "Megan Fox", + "Edward Burns" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Fun Size", + "year": 2012, + "cast": [ + "Victoria Justice", + "Thomas Mann", + "Jane Levy", + "Chelsea Handler", + "Thomas McDonell", + "Osric Chau", + "Jackson Nicoll", + "Josh Pence", + "Johnny Knoxville", + "(uncredited)", + "Thomas Middleditch", + "Ana Gasteyer", + "Holmes Osborne", + "James Pumphrey", + "Willam Belli", + "Peter Navy Tuiasosopo" + ], + "genres": [ + "Comedy", + "Teen" + ] + }, + { + "title": "Gambit", + "year": 2012, + "cast": [ + "Colin Firth", + "Cameron Diaz", + "Alan Rickman", + "Tom Courtenay", + "Stanley Tucci" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Gayby", + "year": 2012, + "cast": [ + "Jenn Harris", + "Matthew Wilkas" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Ghost Rider: Spirit of Vengeance", + "year": 2012, + "cast": [ + "Nicolas Cage", + "Ciarán Hinds", + "Violante Placido", + "Johnny Whitworth", + "Christopher Lambert", + "Idris Elba" + ], + "genres": [ + "Superhero" + ] + }, + { + "title": "Girl in Progress", + "year": 2012, + "cast": [ + "Eva Mendes", + "Matthew Modine", + "Cierra Ramirez", + "Patricia Arquette", + "Eugenio Derbez" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "God Bless America", + "year": 2012, + "cast": [ + "Joel Murray", + "Tara Lynne Barr", + "Mackenzie Brooke Smith", + "Melinda Page Hamilton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Gone", + "year": 2012, + "cast": [ + "Amanda Seyfried", + "Daniel Sunjata", + "Jennifer Carpenter", + "Sebastian Stan", + "Wes Bentley" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Good Deeds", + "year": 2012, + "cast": [ + "Tyler Perry", + "Thandie Newton", + "Brian J. White", + "Eddie Cibrian", + "Rebecca Romijn", + "Jamie Kennedy", + "Phylicia Rashād", + "Gabrielle Union" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "The Grey", + "year": 2012, + "cast": [ + "Liam Neeson", + "Frank Grillo", + "Dermot Mulroney", + "Dallas Roberts", + "Joe Anderson", + "Nonso Anozie", + "James Badge Dale" + ], + "genres": [ + "Action", + "Thriller", + "Adventure", + "Drama" + ] + }, + { + "title": "The Guilt Trip", + "year": 2012, + "cast": [ + "Barbra Streisand", + "Seth Rogen" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Haywire", + "year": 2012, + "cast": [ + "Gina Carano", + "Michael Fassbender", + "Ewan McGregor", + "Bill Paxton", + "Channing Tatum", + "Mathieu Kassovitz", + "Michael Angarano", + "with", + "Antonio Banderas", + "and", + "Michael Douglas" + ], + "genres": [ + "Action", + "Thriller" + ] + }, + { + "title": "Hello I Must Be Going", + "year": 2012, + "cast": [ + "Melanie Lynskey", + "Blythe Danner", + "Christopher Abbott", + "John Rubinstein", + "Dan Futterman", + "Julie White" + ], + "genres": [ + "Drama", + "Comedy", + "Romance" + ] + }, + { + "title": "Here Comes the Boom", + "year": 2012, + "cast": [ + "Kevin James", + "Salma Hayek", + "Henry Winkler", + "Charice Pempengco", + "Bas Rutten", + "Reggie Lee", + "Joe Rogan", + "Mike Goldberg", + "Greg Germann", + "Jason Miller", + "Melissa Peterman", + "Bruce Buffer", + "Krzysztof Soszynski" + ], + "genres": [ + "Comedy", + "Sports" + ] + }, + { + "title": "Hick", + "year": 2012, + "cast": [ + "Chloë Grace Moretz", + "Eddie Redmayne", + "Ray McKinnon", + "Rory Culkin", + "Juliette Lewis", + "Blake Lively", + "Alec Baldwin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "High School", + "year": 2012, + "cast": [ + "Adrien Brody", + "Sean Marquette", + "Matt Bush", + "Colin Hanks", + "Adhir Kalyan", + "and", + "Michael Chiklis", + "Robert Bailey, Jr.", + "Mykelti Williamson", + "Andrew Wilson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hit and Run", + "year": 2012, + "cast": [ + "Dax Shepard", + "Kristen Bell", + "Bradley Cooper", + "Tom Arnold", + "Kristin Chenoweth", + "Michael Rosenbaum", + "Joy Bryant", + "Ryan Hansen", + "Beau Bridges" + ], + "genres": [ + "Action", + "Comedy" + ] + }, + { + "title": "Hope Springs", + "year": 2012, + "cast": [ + "Meryl Streep", + "Tommy Lee Jones", + "Steve Carell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hotel Transylvania", + "year": 2012, + "cast": [ + "Adam Sandler", + "Andy Samberg", + "Selena Gomez", + "Kevin James", + "Fran Drescher", + "Steve Buscemi", + "Molly Shannon", + "David Spade", + "Cee Lo Green" + ], + "genres": [ + "Animated", + "Comedy" + ] + }, + { + "title": "House at the End of the Street", + "year": 2012, + "cast": [ + "Jennifer Lawrence", + "Max Thieriot", + "Gil Bellows", + "and", + "Elisabeth Shue", + "Nolan Gerard Funk", + "James Thomas", + "Allie MacDonald", + "Jonathan Malen", + "Jon McLaren", + "Eva Link" + ], + "genres": [ + "Horror", + "Thriller" + ] + }, + { + "title": "The Hunger Games", + "year": 2012, + "cast": [ + "Jennifer Lawrence", + "Josh Hutcherson", + "Liam Hemsworth", + "Woody Harrelson", + "Elizabeth Banks", + "Lenny Kravitz", + "with", + "Stanley Tucci", + "and", + "Donald Sutherland", + "Willow Shields", + "Paula Malcomson", + "Amandla Stenberg", + "Alexander Ludwig", + "Dayo Okeniyi", + "Isabelle Fuhrman", + "Jacqueline Emerson", + "Leven Rambin", + "Jack Quaid", + "Toby Jones", + "Wes Bentley", + "Latarsha Rose" + ], + "genres": [ + "Action", + "Drama", + "Science Fiction" + ] + }, + { + "title": "I Do", + "year": 2012, + "cast": [ + "David W. Ross", + "Jamie-Lynn Sigler", + "Grant Bowler", + "Alicia Witt" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Ice Age: Continental Drift", + "year": 2012, + "cast": [ + "Ray Romano", + "John Leguizamo", + "Denis Leary", + "Queen Latifah", + "Seann William Scott", + "Josh Peck", + "Chris Wedge", + "Jennifer Lopez", + "Keke Palmer", + "Aziz Ansari", + "Drake", + "Jeremy Renner", + "Wanda Sykes", + "Matt Bennett", + "Nicki Minaj", + "Ester Dean", + "Rebel Wilson", + "Joy Behar", + "Nick Frost", + "J. B. Smoove", + "Heather Morris", + "Josh Gad", + "Alan Tudyk", + "Kunal Nayyar", + "Alain Chabat" + ], + "genres": [ + "Animated", + "Family" + ] + }, + { + "title": "Jack Reacher", + "year": 2012, + "cast": [ + "Tom Cruise", + "Rosamund Pike", + "Richard Jenkins", + "Werner Herzog", + "David Oyelowo", + "Robert Duvall" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Jeff, Who Lives at Home", + "year": 2012, + "cast": [ + "Jason Segel", + "Ed Helms", + "Susan Sarandon", + "Judy Greer", + "Rae Dawn Chong" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "John Carter", + "year": 2012, + "cast": [ + "Taylor Kitsch", + "Lynn Collins", + "Samantha Morton", + "Mark Strong", + "Ciarán Hinds", + "Dominic West", + "James Purefoy", + "Willem Dafoe", + "Bryan Cranston", + "Polly Walker", + "Daryl Sabara" + ], + "genres": [ + "Action", + "Science Fiction" + ] + }, + { + "title": "Journey 2: The Mysterious Island", + "year": 2012, + "cast": [ + "Dwayne Johnson", + "Michael Caine", + "Josh Hutcherson", + "Vanessa Hudgens", + "Luis Guzmán", + "Kristin Davis" + ], + "genres": [ + "Action", + "Adventure", + "Family" + ] + }, + { + "title": "Joyful Noise", + "year": 2012, + "cast": [ + "Queen Latifah", + "Dolly Parton", + "Keke Palmer", + "Jeremy Jordan", + "Courtney B. Vance", + "Kris Kristofferson" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "Katy Perry: Part of Me 3D", + "year": 2012, + "cast": [ + "Chronicling the life and career of singer", + "Katy Perry", + ". Scenes are taken from the", + "2011 California Dreams Tour", + "at", + "Staples Center", + "Los Angeles" + ], + "genres": [ + "Performance", + "Documentary" + ] + }, + { + "title": "Keep the Lights On", + "year": 2012, + "cast": [ + "Thure Lindhardt", + "Zachary Booth", + "David Anzuelo", + "Maria Dizzia", + "Julianne Nicholson", + "Souléymane Sy Savané", + "Paprika Steen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Killer Joe", + "year": 2012, + "cast": [ + "Matthew McConaughey", + "Emile Hirsch", + "Juno Temple", + "Gina Gershon", + "Thomas Haden Church", + "Marc Macaulay" + ], + "genres": [ + "Crime", + "Thriller", + "Comedy" + ] + }, + { + "title": "A Late Quartet", + "year": 2012, + "cast": [ + "Philip Seymour Hoffman", + "Mark Ivanir", + "Catherine Keener", + "Christopher Walken", + "Imogen Poots", + "Liraz Charhi", + "Wallace Shawn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Lawless", + "year": 2012, + "cast": [ + "Shia LaBeouf", + "Tom Hardy", + "Gary Oldman", + "Mia Wasikowska", + "Jessica Chastain", + "Dane DeHaan", + "Jason Clarke", + "Guy Pearce" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Liberal Arts", + "year": 2012, + "cast": [ + "Josh Radnor", + "Elizabeth Olsen", + "Richard Jenkins", + "Allison Janney", + "John Magaro", + "Elizabeth Reaser", + "Zac Efron" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Life of Pi", + "year": 2012, + "cast": [ + "Suraj Sharma", + "Irrfan Khan", + "Tabu", + "Rafe Spall", + "Gérard Depardieu" + ], + "genres": [ + "Action", + "Adventure", + "Drama" + ] + }, + { + "title": "Lincoln", + "year": 2012, + "cast": [ + "Daniel Day-Lewis", + "Sally Field", + "David Strathairn", + "Joseph Gordon-Levitt", + "James Spader", + "Hal Holbrook", + "Tommy Lee Jones" + ], + "genres": [ + "Biography", + "Political", + "Drama" + ] + }, + { + "title": "A Little Bit of Heaven", + "year": 2012, + "cast": [ + "Kate Hudson", + "Gael García Bernal", + "Lucy Punch", + "Romany Malco", + "Treat Williams", + "Whoopi Goldberg", + "Kathy Bates" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Lockout", + "year": 2012, + "cast": [ + "Guy Pearce", + "Maggie Grace", + "Vincent Regan", + "Joseph Gilgun", + "Lennie James", + "Peter Stormare" + ], + "genres": [ + "Action", + "Science Fiction" + ] + }, + { + "title": "Lola Versus", + "year": 2012, + "cast": [ + "Greta Gerwig", + "Joel Kinnaman", + "Zoe Lister-Jones", + "Bill Pullman", + "Debra Winger", + "Hamish Linklater", + "Cheyenne Jackson" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Loneliest Planet", + "year": 2012, + "cast": [ + "Gael García Bernal", + "Hani Furstenberg", + "Bidzina Gujabidze" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Looper", + "year": 2012, + "cast": [ + "Bruce Willis", + "Joseph Gordon-Levitt", + "Emily Blunt", + "Paul Dano", + "Qing Xu", + "Noah Segan", + "Jeff Daniels", + "Piper Perabo", + "Garret Dillahunt" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Dr. Seuss' The Lorax", + "year": 2012, + "cast": [ + "Danny DeVito", + "Zac Efron", + "Taylor Swift", + "Ed Helms", + "Rob Riggle", + "Betty White", + "Jenny Slate" + ], + "genres": [ + "Animated", + "Family" + ] + }, + { + "title": "The Lucky One", + "year": 2012, + "cast": [ + "Zac Efron", + "Taylor Schilling", + "Jay R. Ferguson", + "Blythe Danner" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "Madagascar 3: Europe's Most Wanted", + "year": 2012, + "cast": [ + "Ben Stiller", + "Chris Rock", + "David Schwimmer", + "Jada Pinkett Smith", + "Frances McDormand", + "Sacha Baron Cohen", + "Cedric the Entertainer", + "Andy Richter", + "Bryan Cranston", + "Jessica Chastain", + "Martin Short", + "Paz Vega", + "Tom McGrath", + "Chris Miller", + "Christopher Knights", + "John DiMaggio", + "Conrad Vernon" + ], + "genres": [ + "Animated", + "Family" + ] + }, + { + "title": "Madea's Witness Protection", + "year": 2012, + "cast": [ + "Tyler Perry", + "Eugene Levy", + "Denise Richards", + "Doris Roberts", + "Romeo Miller", + "Tom Arnold", + "John Amos", + "Marla Gibbs", + "Danielle Campbell", + "Devan Leos", + "Jeff Joslin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Magic Mike", + "year": 2012, + "cast": [ + "Channing Tatum", + "Alex Pettyfer", + "and", + "Matthew McConaughey", + "Cody Horn", + "Olivia Munn", + "Matt Bomer", + "Riley Keough", + "Joe Manganiello", + "Kevin Nash", + "Adam Rodríguez", + "Gabriel Iglesias" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Magic of Belle Isle", + "year": 2012, + "cast": [ + "Morgan Freeman", + "Virginia Madsen", + "Kenan Thompson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Maladies (2012 film)", + "year": 2012, + "cast": [ + "James Franco", + "Catherine Keener", + "Fallon Goodson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Man on a Ledge", + "year": 2012, + "cast": [ + "Sam Worthington", + "Elizabeth Banks", + "Jamie Bell", + "Anthony Mackie", + "Ed Burns", + "Titus Welliver", + "Génesis Rodríguez", + "Kyra Sedgwick", + "Ed Harris" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Man with the Iron Fists", + "year": 2012, + "cast": [ + "Russell Crowe", + "Cung Le", + "Lucy Liu", + "Byron Mann", + "RZA", + "Rick Yune", + "David Bautista", + "Jamie Chung" + ], + "genres": [ + "Martial Arts" + ] + }, + { + "title": "Marley", + "year": 2012, + "cast": [ + "The life of", + "reggae", + "singer", + "Bob Marley", + "." + ], + "genres": [ + "Biography", + "Documentary" + ] + }, + { + "title": "The Master", + "year": 2012, + "cast": [ + "Joaquin Phoenix", + "Philip Seymour Hoffman", + "Amy Adams", + "Laura Dern" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Men in Black 3", + "year": 2012, + "cast": [ + "Will Smith", + "Tommy Lee Jones", + "Josh Brolin", + "Rip Torn", + "Emma Thompson", + "Alice Eve", + "Nicole Scherzinger", + "Jemaine Clement", + "Bill Hader", + "Keone Young", + "Yuri Lowenthal", + "(voice)" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Mirror Mirror", + "year": 2012, + "cast": [ + "Julia Roberts", + "Lily Collins", + "Armie Hammer", + "Nathan Lane", + "Sean Bean", + "Mare Winningham", + "Michael Lerner", + "Robert Emms", + "Mark Povinelli", + "Danny Woodburn", + "Jordan Prentice", + "Ronald Lee Clark", + "Sebastian Saraceno", + "Martin Klebba", + "Joe Gnoffo", + "Bonnie Bentley", + "Nadia Verrucci" + ], + "genres": [ + "Comedy", + "Fantasy" + ] + }, + { + "title": "Monsters, Inc. 3D", + "year": 2012, + "cast": [ + "John Goodman", + "Billy Crystal", + "Mary Gibbs", + "Steve Buscemi", + "James Coburn", + "Jennifer Tilly", + "Frank Oz" + ], + "genres": [ + "Family", + "Animated" + ] + }, + { + "title": "Moonrise Kingdom", + "year": 2012, + "cast": [ + "Bruce Willis", + "Edward Norton", + "Bill Murray", + "Frances McDormand", + "Tilda Swinton", + "Jason Schwartzman", + "Bob Balaban", + "Harvey Keitel", + "Marc Rizzo", + "Jared Gilman", + "Kara Hayward" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Nobody Walks", + "year": 2012, + "cast": [ + "John Krasinski", + "Olivia Thirlby", + "Rosemarie DeWitt", + "India Ennenga", + "Justin Kirk" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Odd Life of Timothy Green", + "year": 2012, + "cast": [ + "Jennifer Garner", + "Joel Edgerton", + "CJ Adams", + "Ron Livingston", + "Dianne Wiest", + "Odeya Rush", + "Rosemarie DeWitt", + "Lin-Manuel Miranda", + "M. Emmet Walsh", + "Michael Arden", + "Lois Smith", + "David Morse", + "Common", + "Rhoda Griffis", + "Sharon Morris", + "Jason Davis", + "Cullen Moss" + ], + "genres": [ + "Drama", + "Comedy", + "Fantasy" + ] + }, + { + "title": "One for the Money", + "year": 2012, + "cast": [ + "Katherine Heigl", + "Jason O'Mara", + "Daniel Sunjata", + "John Leguizamo", + "Sherri Shepherd", + "Debbie Reynolds" + ], + "genres": [ + "Action", + "Comedy" + ] + }, + { + "title": "The Oogieloves in the Big Balloon Adventure", + "year": 2012, + "cast": [ + "Toni Braxton", + "Cloris Leachman", + "Christopher Lloyd", + "Chazz Palminteri", + "Cary Elwes", + "and", + "Jaime Pressly", + "Maya Stange" + ], + "genres": [ + "Family", + "Musical" + ] + }, + { + "title": "The Oranges", + "year": 2012, + "cast": [ + "Hugh Laurie", + "Catherine Keener", + "Oliver Platt", + "Allison Janney", + "Alia Shawkat", + "Adam Brody", + "Leighton Meester" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "The Paperboy", + "year": 2012, + "cast": [ + "Matthew McConaughey", + "Zac Efron", + "John Cusack", + "Nicole Kidman", + "David Oyelowo", + "Macy Gray", + "(narrator)", + "Scott Glenn", + "Nikolette Noel", + "Ned Bellamy" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Paranormal Activity 4", + "year": 2012, + "cast": [ + "Katie Featherston", + "Kathryn Newton", + "Matt Shively", + "Brady Allen", + "Aiden Lovekamp", + "Stephen Dunham", + "Alexondra Lee" + ], + "genres": [ + "Supernatural", + "Horror" + ] + }, + { + "title": "ParaNorman", + "year": 2012, + "cast": [ + "Kodi Smit-McPhee", + "Casey Affleck", + "Tempestt Bledsoe", + "John Goodman", + "Jeff Garlin", + "Bernard Hill", + "Anna Kendrick", + "Leslie Mann", + "Christopher Mintz-Plasse", + "Elaine Stritch", + "Tucker Albrizzi", + "Alex Borstein", + "Jodelle Ferland" + ], + "genres": [ + "Animated", + "Horror", + "Comedy", + "Thriller" + ] + }, + { + "title": "Parental Guidance", + "year": 2012, + "cast": [ + "Billy Crystal", + "Bette Midler", + "Marisa Tomei", + "Tom Everett Scott", + "Bailee Madison", + "Joshua Rush" + ], + "genres": [ + "Comedy", + "Family" + ] + }, + { + "title": "Peace, Love, & Misunderstanding", + "year": 2012, + "cast": [ + "Jane Fonda", + "Catherine Keener", + "Jeffrey Dean Morgan", + "Chace Crawford", + "Elizabeth Olsen", + "Nat Wolff", + "Rosanna Arquette", + "Kyle MacLachlan" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "People Like Us", + "year": 2012, + "cast": [ + "Chris Pine", + "Elizabeth Banks", + "Olivia Wilde", + "Michael Hall D'Addario", + "Mark Duplass", + "Philip Baker Hall", + "Jon Favreau", + "Michelle Pfeiffer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Perks of Being a Wallflower", + "year": 2012, + "cast": [ + "Logan Lerman", + "Emma Watson", + "Ezra Miller", + "Mae Whitman", + "Kate Walsh", + "Dylan McDermott", + "Joan Cusack", + "Paul Rudd" + ], + "genres": [ + "Drama", + "Comedy", + "Teen" + ] + }, + { + "title": "Piranha 3DD", + "year": 2012, + "cast": [ + "Danielle Panabaker", + "Matt Bush", + "David Koechner", + "Chris Zylka", + "Katrina Bowden", + "Gary Busey", + "Christopher Lloyd", + "David Hasselhoff", + "Ving Rhames", + "Paul Scheer", + "Meagan Tandy", + "Jean-Luc Bilodeau", + "Clu Gulager", + "Paul James Jordan", + "Adrian Martinez", + "Shanica Knowles" + ], + "genres": [ + "Horror", + "Comedy" + ] + }, + { + "title": "Pitch Perfect", + "year": 2012, + "cast": [ + "Anna Kendrick", + "Brittany Snow", + "Anna Camp", + "Rebel Wilson", + "Christopher Mintz-Plasse", + "Skylar Astin", + "Freddie Stroma", + "Alexis Knapp", + "Adam DeVine", + "Ester Dean", + "Brock Kelly", + "Elizabeth Banks", + "John Michael Higgins" + ], + "genres": [ + "Comedy", + "Musical" + ] + }, + { + "title": "The Possession", + "year": 2012, + "cast": [ + "Natasha Callis", + "Jeffrey Dean Morgan", + "Kyra Sedgwick", + "Madison Davenport", + "Grant Show", + "Matisyahu" + ], + "genres": [ + "Supernatural", + "Horror" + ] + }, + { + "title": "Premium Rush", + "year": 2012, + "cast": [ + "Joseph Gordon-Levitt", + "Michael Shannon", + "Dania Ramirez", + "Jamie Chung" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Price Check", + "year": 2012, + "cast": [ + "Parker Posey", + "Eric Mabius", + "Annie Parisse", + "Josh Pais", + "Edward Herrmann", + "Remy Auberjonois", + "Jayce Bartók", + "Samrat Chakrabarti", + "Cheyenne Jackson", + "Stephen Kunken", + "Amy Schumer", + "Matt Servitto", + "Mackenzie Smith", + "Melinda Page Hamilton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Project X", + "year": 2012, + "cast": [ + "Thomas Mann", + "Oliver Cooper", + "Jonathan Daniel Brown", + "Alexis Knapp", + "Nichole Bloom", + "Dax Flame", + "Miles Teller", + "Kirby Bliss Blanton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Prometheus", + "year": 2012, + "cast": [ + "Noomi Rapace", + "Michael Fassbender", + "Guy Pearce", + "Idris Elba", + "Logan Marshall-Green", + "Charlize Theron" + ], + "genres": [ + "Action", + "Horror", + "Science Fiction" + ] + }, + { + "title": "Puppet Master X: Axis Rising", + "year": 2012, + "cast": [ + "Kip Canyon", + "Jean Louise O'Sullivan", + "Oto Brezina", + "Scott Anthony King", + "Stephanie Sanditz", + "Brad Potts", + "Ian Roberts" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Queen of Versailles", + "year": 2012, + "cast": [ + "The \"riches to rags\" trajectory of high-living former model Jackie Siegel and her attempt to build a", + "Florida", + "version of France's", + "Palace of Versailles", + "." + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Rampart", + "year": 2012, + "cast": [ + "Woody Harrelson", + "Ned Beatty", + "Ben Foster", + "Anne Heche", + "Ice Cube", + "Cynthia Nixon", + "Sigourney Weaver", + "Robert Wisdom", + "Robin Wright", + "Steve Buscemi" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "The Raven", + "year": 2012, + "cast": [ + "John Cusack", + "Alice Eve", + "Oliver Jackson-Cohen", + "Luke Evans", + "Brendan Gleeson", + "Kevin McNally", + "Pam Ferris", + "Sergej Trifunović", + "Ian Virgo", + "Sam Hazeldine", + "Brendan Coyle", + "M. Emmet Walsh" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Red Dawn", + "year": 2012, + "cast": [ + "Chris Hemsworth", + "Josh Peck", + "Josh Hutcherson", + "Adrianne Palicki", + "Isabel Lucas", + "Connor Cruise", + "Jeffrey Dean Morgan" + ], + "genres": [ + "Action", + "War" + ] + }, + { + "title": "Red Hook Summer", + "year": 2012, + "cast": [ + "Clarke Peters", + "Nate Parker", + "Thomas Jefferson Byrd", + "introducing Toni Lysaith and Jules Brown", + "Heather Simms", + "James Ransone", + "De'Adre Aziza", + "Isiah Whitlock, Jr.", + "Spike Lee" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "Red Lights", + "year": 2012, + "cast": [ + "Cillian Murphy", + "Sigourney Weaver", + "Toby Jones", + "Joely Richardson", + "Elizabeth Olsen", + "and", + "Robert De Niro", + "Leonardo Sbaraglia", + "Burn Gorman", + "Karen David", + "Craig Roberts" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Red Tails", + "year": 2012, + "cast": [ + "Cuba Gooding, Jr.", + "Terrence Howard", + "Daniela Ruah", + "Bryan Cranston", + "Nate Parker", + "David Oyelowo", + "Ryan Early", + "Method Man", + "Elijah Kelley", + "Ne-Yo", + "Tristan Wilds", + "Kevin Phillips", + "Robert Kazinsky", + "Lee Tergesen", + "Andre Royo", + "Marcus T. Paulk", + "Michael B. Jordan" + ], + "genres": [ + "Action", + "Drama", + "War" + ] + }, + { + "title": "The Reluctant Fundamentalist", + "year": 2012, + "cast": [ + "Riz Ahmed", + "Kate Hudson", + "Liev Schreiber", + "Kiefer Sutherland", + "Om Puri", + "Shabana Azmi" + ], + "genres": [ + "Political", + "Thriller" + ] + }, + { + "title": "Resident Evil: Retribution", + "year": 2012, + "cast": [ + "Milla Jovovich", + "Michelle Rodriguez", + "Kevin Durand", + "Sienna Guillory", + "Shawn Roberts", + "Aryana Engineer", + "Colin Salmon", + "Johann Urb", + "Boris Kodjoe", + "Li Bingbing", + "Oded Fehr", + "Mika Nakashima" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Rise of the Guardians", + "year": 2012, + "cast": [ + "Chris Pine", + "Isla Fisher", + "Hugh Jackman", + "Alec Baldwin", + "Jude Law", + "Dakota Goyo" + ], + "genres": [ + "Action", + "Adventure", + "Animated", + "Family" + ] + }, + { + "title": "Robot & Frank", + "year": 2012, + "cast": [ + "Frank Langella", + "James Marsden", + "Liv Tyler", + "Jeremy Strong", + "Jeremy Sisto", + "Peter Sarsgaard", + "(voice)", + "Susan Sarandon" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "Rock of Ages", + "year": 2012, + "cast": [ + "Julianne Hough", + "Diego Boneta", + "Russell Brand", + "Paul Giamatti", + "Catherine Zeta-Jones", + "Malin Åkerman", + "Mary J. Blige", + "Alec Baldwin", + "Tom Cruise" + ], + "genres": [ + "Musical", + "Romance", + "Comedy" + ] + }, + { + "title": "Ruby Sparks", + "year": 2012, + "cast": [ + "Paul Dano", + "Zoe Kazan", + "Antonio Banderas", + "Annette Bening", + "Steve Coogan", + "Elliott Gould", + "Chris Messina", + "Alia Shawkat", + "Deborah Ann Woll" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Safe", + "year": 2012, + "cast": [ + "Jason Statham", + "Catherine Chan", + "Chris Sarandon", + "Anson Mount", + "Robert John Burke", + "James Hong", + "Reggie Lee", + "Danny Hoch", + "Danni Lang", + "Igor Jijikine", + "David Kim" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Safe House", + "year": 2012, + "cast": [ + "Denzel Washington", + "Ryan Reynolds", + "Vera Farmiga", + "Brendan Gleeson", + "Sam Shepard", + "Rubén Blades", + "Nora Arnezeder", + "Robert Patrick" + ], + "genres": [ + "Action", + "Thriller" + ] + }, + { + "title": "Safety Not Guaranteed", + "year": 2012, + "cast": [ + "Aubrey Plaza", + "Mark Duplass", + "Jake Johnson", + "Karan Soni", + "Jenica Bergere", + "Kristen Bell", + "Jeff Garlin", + "Mary Lynn Rajskub" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Samsara", + "year": 2012, + "cast": [ + "Exploring the wonders of the world from the mundane to the miraculous." + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Savages", + "year": 2012, + "cast": [ + "Taylor Kitsch", + "Aaron Johnson", + "Blake Lively", + "Uma Thurman", + "Salma Hayek", + "Benicio del Toro", + "Emile Hirsch", + "John Travolta", + "Joel David Moore", + "Demián Bichir", + "Mía Maestro", + "Trevor Donovan", + "Sandra Echeverría", + "Gillian Zinser" + ], + "genres": [ + "Crime", + "Thriller" + ] + }, + { + "title": "Seeking a Friend for the End of the World", + "year": 2012, + "cast": [ + "Steve Carell", + "Keira Knightley", + "Adam Brody", + "Derek Luke", + "William Petersen", + "Connie Britton", + "Patton Oswalt", + "Melanie Lynskey", + "Rob Corddry", + "Melinda Dillon", + "Rob Huebel", + "Gillian Jacobs", + "T. J. Miller", + "Amy Schumer", + "Jim O'Heir" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Sessions", + "year": 2012, + "cast": [ + "John Hawkes", + "Helen Hunt", + "Moon Bloodgood", + "Annika Marks", + "Rhea Perlman", + "Adam Arkin", + "William H. Macy", + "W. Earl Brown", + "Blake Lindsley", + "Robin Weigert", + "Rusty Schwimmer", + "Jenni Baird" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Silent Hill: Revelation 3D", + "year": 2012, + "cast": [ + "Adelaide Clemens", + "Kit Harington", + "Deborah Kara Unger", + "Martin Donovan", + "Malcolm McDowell", + "Carrie-Anne Moss", + "Sean Bean", + "Radha Mitchell", + "Heather Marks" + ], + "genres": [ + "Horror", + "Thriller" + ] + }, + { + "title": "Silent House", + "year": 2012, + "cast": [ + "Elizabeth Olsen", + "Adam Trese", + "Eric Sheffer Stevens", + "Julia Taylor Ross", + "Haley Murphy" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Silver Linings Playbook", + "year": 2012, + "cast": [ + "Bradley Cooper", + "Jennifer Lawrence", + "Robert De Niro", + "Jacki Weaver", + "Anupam Kher", + "Julia Stiles", + "Chris Tucker" + ], + "genres": [ + "Comedy", + "Drama", + "Romance" + ] + }, + { + "title": "Sinister", + "year": 2012, + "cast": [ + "Ethan Hawke", + "Juliet Rylance", + "Fred Thompson", + "James Ransone", + "Clare Foley", + "Michael Hall D'Addario", + "Vincent D'Onofrio" + ], + "genres": [ + "Supernatural", + "Horror" + ] + }, + { + "title": "Sleepwalk with Me", + "year": 2012, + "cast": [ + "Mike Birbiglia", + "Lauren Ambrose", + "Cristin Milioti", + "James Rebhorn", + "Carol Kane", + "Marylouise Burke", + "Loudon Wainwright III", + "Aya Cash", + "David Wain", + "Marc Maron", + "Sondra James", + "Kristen Schaal", + "Jessi Klein", + "Wyatt Cenac" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Smashed", + "year": 2012, + "cast": [ + "Mary Elizabeth Winstead", + "Aaron Paul", + "Nick Offerman", + "Megan Mullally", + "Kyle Gallner", + "Mary Kay Place", + "Octavia Spencer", + "Bree Turner", + "Mackenzie Davis", + "Patti Allison", + "Richmond Arquette", + "Natalie Dreyfuss" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "Snow White & the Huntsman", + "year": 2012, + "cast": [ + "Kristen Stewart", + "Charlize Theron", + "Chris Hemsworth", + "Sam Claflin", + "Ian McShane", + "Bob Hoskins", + "Ray Winstone", + "Nick Frost", + "Toby Jones", + "Johnny Harris", + "Eddie Marsan", + "Brian Gleeson", + "Lily Cole", + "Sam Spruell", + "Vincent Regan", + "Noah Huntley" + ], + "genres": [ + "Action", + "Fantasy" + ] + }, + { + "title": "Sound of My Voice", + "year": 2012, + "cast": [ + "Christopher Denham", + "Nicole Vicius", + "Brit Marling", + "Avery Pohl" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Sparkle", + "year": 2012, + "cast": [ + "Jordin Sparks", + "Whitney Houston", + "Derek Luke", + "Mike Epps", + "Carmen Ejogo", + "Tika Sumpter", + "Omari Hardwick", + "Cee Lo Green" + ], + "genres": [ + "Drama", + "Musical" + ] + }, + { + "title": "Star Wars: Episode I – The Phantom Menace 3D", + "year": 2012, + "cast": [ + "Liam Neeson", + "Ewan McGregor", + "Jake Lloyd", + "Ahmed Best", + "Pernilla August", + "Ian McDiarmid", + "Anthony Daniels", + "Kenny Baker", + "Frank Oz", + "Ray Park", + "Silas Carson", + "Sofia Coppola", + "Keira Knightley", + "Samuel L. Jackson" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Step Up Revolution", + "year": 2012, + "cast": [ + "Ryan Guzman", + "Kathryn McCormick", + "Misha Gabriel", + "Cleopatra Coleman", + "Stephen \"tWitch\" Boss", + "Adam G. Sevani", + "Tommy Dewey and", + "Peter Gallagher" + ], + "genres": [ + "Dance", + "Drama", + "Romance" + ] + }, + { + "title": "Stolen", + "year": 2012, + "cast": [ + "Nicolas Cage", + "Danny Huston", + "Malin Åkerman", + "Sami Gayle", + "Mark Valley", + "and", + "Josh Lucas" + ], + "genres": [ + "Action", + "Thriller" + ] + }, + { + "title": "The Swan Princess Christmas", + "year": 2012, + "cast": [ + "Yuri Lowenthal", + "Elle Deets", + "David Lodge", + "G. K. Bowes", + "Doug Stone", + "Brian Nissen", + "Clayton James Mackay", + "James Arrington", + "Joey Lotsko" + ], + "genres": [ + "Animated", + "Family" + ] + }, + { + "title": "Taken 2", + "year": 2012, + "cast": [ + "Liam Neeson", + "Maggie Grace", + "Famke Janssen", + "and", + "Rade Šerbedžija", + "Leland Orser", + "Jon Gries", + "D. B. Sweeney", + "Luke Grimes", + "Aclan Bates", + "Kevork Malikyan" + ], + "genres": [ + "Action", + "Thriller" + ] + }, + { + "title": "The Tall Man", + "year": 2012, + "cast": [ + "Jessica Biel", + "Jodelle Ferland", + "William B. Davis", + "Samantha Ferris", + "Colleen Wheeler", + "Garwin Sanford", + "Janet Wright", + "Eve Harlow", + "John Mann", + "Teach Grant", + "Ferne Downey", + "introducing", + "Jakob Davies", + "and", + "Stephen McHattie" + ], + "genres": [ + "Horror", + "Mystery" + ] + }, + { + "title": "Ted", + "year": 2012, + "cast": [ + "Mark Wahlberg", + "Mila Kunis", + "Seth MacFarlane", + "Giovanni Ribisi", + "Joel McHale", + "Patrick Warburton", + "Jessica Stroup", + "Laura Vandervoort", + "Ralph Garman" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "That's My Boy", + "year": 2012, + "cast": [ + "Adam Sandler", + "Andy Samberg", + "Leighton Meester", + "Eva Amurri", + "Susan Sarandon", + "James Caan", + "Milo Ventimiglia", + "Will Forte", + "Colin Quinn", + "Todd Bridges", + "Vanilla Ice", + "Ian Ziering", + "Rex Ryan", + "Luenell", + "Ciara", + "Peggy Stewart", + "Tony Orlando", + "Alan Thicke", + "Dan Patrick", + "Blake Clark", + "Nick Swardson", + "Ana Gasteyer", + "Baron Davis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Think Like a Man", + "year": 2012, + "cast": [ + "Michael Ealy", + "Jerry Ferrara", + "Meagan Good", + "Regina Hall", + "Kevin Hart", + "Taraji P. Henson", + "Terrence J", + "Romany Malco", + "Gabrielle Union", + "Steve Harvey", + "Gary Owen", + "Chris Brown", + "Wendy Williams", + "Tony Rock", + "La La Anthony", + "Sherri Shepherd", + "Tika Sumpter", + "Keri Hilson", + "Kelly Rowland", + "Jenifer Lewis" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "This Is 40", + "year": 2012, + "cast": [ + "Leslie Mann", + "Paul Rudd", + "John Lithgow", + "Megan Fox", + "and", + "Albert Brooks", + "Iris Apatow", + "Maude Apatow", + "Melissa McCarthy", + "Robert Smigel", + "Charlyne Yi" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "This Means War", + "year": 2012, + "cast": [ + "Tom Hardy", + "Chris Pine", + "Reese Witherspoon", + "Chelsea Handler", + "Abigail Spencer", + "Til Schweiger", + "Laura Vandervoort", + "Leela Savasta", + "Angela Bassett" + ], + "genres": [ + "Comedy", + "Spy" + ] + }, + { + "title": "A Thousand Words", + "year": 2012, + "cast": [ + "Eddie Murphy", + "Kerry Washington", + "Cliff Curtis", + "Clark Duke", + "Allison Janney", + "Ariel Winter", + "Steve Little", + "John Witherspoon", + "Jack McBrayer" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Three Stooges", + "year": 2012, + "cast": [ + "Chris Diamantopoulos", + "Will Sasso", + "Sean Hayes", + "Jane Lynch", + "Larry David", + "Brian Doyle-Murray", + "Sofía Vergara", + "Jennifer Hudson", + "Lin Shaye", + "Stephen Collins", + "Carly Craig", + "Craig Bierko", + "Kirby Heyborne", + "Isaiah Mustafa", + "Dwight Howard", + "Kate Upton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Thunderstruck", + "year": 2012, + "cast": [ + "Kevin Durant", + "Taylor Gray", + "Brandon T. Jackson", + "Doc Shaw", + "Jim Belushi" + ], + "genres": [ + "Family", + "Sports", + "Comedy" + ] + }, + { + "title": "Titanic 3D", + "year": 2012, + "cast": [ + "Leonardo DiCaprio", + "Kate Winslet", + "Billy Zane", + "Kathy Bates", + "Francis Fisher", + "Gloria Stuart", + "Bill Paxton", + "Bernard Hill", + "David Warner", + "Victor Garber", + "Jonathan Hyde", + "Eric Braeden", + "Bernard Fox", + "Suzy Amis", + "Danny Nucci", + "Lewis Abernathy", + "Nicholas Cascone" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Tomorrow You're Gone", + "year": 2012, + "cast": [ + "Michelle Monaghan", + "Willem Dafoe", + "Stephen Dorff" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Total Recall", + "year": 2012, + "cast": [ + "Colin Farrell", + "Kate Beckinsale", + "Jessica Biel", + "Bryan Cranston", + "John Cho", + "and", + "Bill Nighy", + "Bokeem Woodbine" + ], + "genres": [ + "Action", + "Thriller", + "Science Fiction" + ] + }, + { + "title": "Touchback", + "year": 2012, + "cast": [ + "Brian Presley", + "Melanie Lynskey", + "Marc Blucas", + "with", + "Kurt Russell", + "and", + "Christine Lahti", + "Sarah Wright", + "Sianoa Smit-McPhee", + "Drew Powell", + "Kevin Covais", + "Steve Turner", + "James Duval" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Trouble with the Curve", + "year": 2012, + "cast": [ + "Clint Eastwood", + "Amy Adams", + "Justin Timberlake", + "and", + "John Goodman", + "Matthew Lillard", + "Scott Eastwood" + ], + "genres": [ + "Drama", + "Sports" + ] + }, + { + "title": "The Twilight Saga: Breaking Dawn - Part 2", + "year": 2012, + "cast": [ + "Kristen Stewart", + "Robert Pattinson", + "Taylor Lautner", + "Nikki Reed", + "Peter Facinelli", + "Elizabeth Reaser", + "Ashley Greene", + "Kellan Lutz", + "Jackson Rathbone", + "Julia Jones", + "Booboo Stewart", + "Billy Burke", + "Sarah Clarke", + "MyAnna Buring", + "Maggie Grace", + "Casey LaBow", + "Michael Sheen", + "Jamie Campbell Bower", + "Christopher Heyerdahl", + "Chaske Spencer", + "Christian Camargo", + "Mía Maestro", + "Mackenzie Foy", + "Dakota Fanning", + "Cameron Bright", + "Charlie Bewley", + "Daniel Cudmore", + "Noel Fisher", + "Guri Weinberg", + "Lee Pace", + "Joe Anderson", + "Judi Shekoni", + "Tracey Huggins", + "J. D. Pardo", + "Rami Malek" + ], + "genres": [ + "Fantasy", + "Romance" + ] + }, + { + "title": "Underworld: Awakening", + "year": 2012, + "cast": [ + "Kate Beckinsale", + "Stephen Rea", + "Michael Ealy", + "Theo James", + "India Eisley", + "and", + "Charles Dance" + ], + "genres": [ + "Action", + "Horror" + ] + }, + { + "title": "The Unspeakable Act", + "year": 2012, + "cast": [ + "Tallie Medel", + "Sky Hirschkron", + "Aundrea Fares", + "Kati Schwartz", + "Caroline Luft", + "Eleanore Pienta", + "Collin Summers", + "Caitlin Mehner", + "Mike Faist", + "Liz Toonkel", + "Jessica Pinfield", + "Sunita Mani", + "Kate Lyn Sheil", + "Gonzalo Cordova", + "Zelda Knapp" + ], + "genres": [ + "Drama", + "Teen" + ] + }, + { + "title": "V/H/S", + "year": 2012, + "cast": [ + "A series of", + "found-footage", + "shorts." + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Virginia", + "year": 2012, + "cast": [ + "Jennifer Connelly", + "Ed Harris", + "Emma Roberts", + "Harrison Gilbertson", + "Amy Madigan", + "Carrie Preston", + "and", + "Toby Jones" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "The Vow", + "year": 2012, + "cast": [ + "Channing Tatum", + "Rachel McAdams", + "Sam Neill", + "Scott Speedman", + "and", + "Jessica Lange" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "Wanderlust", + "year": 2012, + "cast": [ + "Paul Rudd", + "Jennifer Aniston", + "Justin Theroux", + "Malin Åkerman", + "Kathryn Hahn", + "Lauren Ambrose", + "and", + "Alan Alda" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Watch", + "year": 2012, + "cast": [ + "Ben Stiller", + "Vince Vaughn", + "Jonah Hill", + "Richard Ayoade", + "Rosemarie DeWitt", + "Nicholas Braun", + "Will Forte", + "Erin Moriarty", + "Billy Crudup", + "Doug Jones" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "What to Expect When You're Expecting", + "year": 2012, + "cast": [ + "Cameron Diaz", + "Jennifer Lopez", + "Elizabeth Banks", + "Chace Crawford", + "Brooklyn Decker", + "Anna Kendrick", + "Matthew Morrison", + "Dennis Quaid", + "Chris Rock", + "Rodrigo Santoro" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Won't Back Down", + "year": 2012, + "cast": [ + "Maggie Gyllenhaal", + "Viola Davis", + "Oscar Isaac", + "Rosie Perez", + "Ving Rhames", + "Marianne Jean-Baptiste", + "and", + "Holly Hunter" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Words", + "year": 2012, + "cast": [ + "Bradley Cooper", + "Jeremy Irons", + "Dennis Quaid", + "Olivia Wilde", + "and", + "Zoe Saldana", + "Ben Barnes", + "Nora Arnezeder" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Wrath of the Titans", + "year": 2012, + "cast": [ + "Sam Worthington", + "Rosamund Pike", + "Bill Nighy", + "Édgar Ramírez", + "Toby Kebbell", + "Danny Huston", + "with", + "Ralph Fiennes", + "and", + "Liam Neeson" + ], + "genres": [ + "Action", + "Adventure", + "Fantasy" + ] + }, + { + "title": "Wreck-It Ralph", + "year": 2012, + "cast": [ + "John C. Reilly", + "Sarah Silverman", + "Jack McBrayer", + "Jane Lynch", + "Alan Tudyk", + "Mindy Kaling", + "Joe Lo Truglio", + "Ed O'Neill", + "Dennis Haysbert", + "Adam Carolla", + "Horatio Sanz", + "and", + "Rich Moore" + ], + "genres": [ + "Animated", + "Comedy", + "Family" + ] + }, + { + "title": "Goodbye Promise", + "year": 2012, + "cast": [ + "Gregor Collins", + "Sarah Prikryl", + "Brian Ronalds" + ], + "genres": [ + "Drama", + "Independent" + ] + }, + { + "title": "Zero Dark Thirty", + "year": 2012, + "cast": [ + "Jessica Chastain", + "Jason Clarke", + "Joel Edgerton", + "Mark Strong", + "Chris Pratt", + "Kyle Chandler", + "Taylor Kinney", + "Mark Duplass", + "Frank Grillo", + "Stephen Dillane", + "Édgar Ramírez", + "Harold Perrineau", + "Reda Kateb", + "Jennifer Ehle", + "James Gandolfini", + "Scott Adkins", + "Mark Valley", + "Ricky Sekhon", + "John Barrowman" + ], + "genres": [ + "Action", + "Thriller" + ] + }, + { + "title": "2 Guns", + "year": 2013, + "cast": [ + "Denzel Washington", + "Mark Wahlberg", + "Paula Patton", + "Bill Paxton", + "Fred Ward", + "James Marsden", + "Edward James Olmos" + ], + "genres": [ + "Action", + "Comedy" + ] + }, + { + "title": "12 Rounds 2: Reloaded", + "year": 2013, + "cast": [ + "Randy Orton", + "Brian Markinson", + "Venus Terzo" + ], + "genres": [ + "Action" + ] + }, + { + "title": "12 Years a Slave", + "year": 2013, + "cast": [ + "Chiwetel Ejiofor", + "Michael Fassbender", + "Benedict Cumberbatch", + "Paul Dano", + "Paul Giamatti", + "Lupita Nyong'o", + "Sarah Paulson", + "Brad Pitt", + "Alfre Woodard" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "20 Feet from Stardom", + "year": 2013, + "cast": [ + "A look at the lives of background singers." + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "21 and Over", + "year": 2013, + "cast": [ + "Miles Teller", + "Skylar Astin", + "Justin Chon", + "Sarah Wright" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "3 Geezers!", + "year": 2013, + "cast": [ + "J. K. Simmons", + "Basil Hoffman", + "Tim Allen", + "Scott Caan", + "Breckin Meyer" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "30 Nights of Paranormal Activity with the Devil Inside the Girl with the Dragon Tattoo", + "year": 2013, + "cast": [ + "Kathryn Fiore", + "Ben Morrison", + "French Stewart" + ], + "genres": [ + "Comedy", + "Satire" + ] + }, + { + "title": "42", + "year": 2013, + "cast": [ + "Chadwick Boseman", + "Harrison Ford", + "Christopher Meloni", + "John C. McGinley", + "Lucas Black", + "Alan Tudyk", + "Nicole Beharie", + "C. J. Nitkowski", + "Brett Cullen", + "Kelley Jakle", + "Ryan Merriman", + "T. R. Knight", + "Hamish Linklater" + ], + "genres": [ + "Sports" + ] + }, + { + "title": "47 Ronin", + "year": 2013, + "cast": [ + "Keanu Reeves", + "Tadanobu Asano", + "Hiroyuki Sanada", + "Rinko Kikuchi", + "Kou Shibasaki", + "Jin Akanishi", + "Min Tanaka", + "Cary-Hiroyuki Tagawa" + ], + "genres": [ + "Action", + "Fantasy" + ] + }, + { + "title": "9 Full Moons", + "year": 2013, + "cast": [ + "Amy Seimetz", + "Bret Roberts", + "Donal Logue" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The ABCs of Death", + "year": 2013, + "cast": [ + "A collection of 26 individual chapters", + "each aligned with a letter of the alphabet." + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Abandoned Mine", + "year": 2013, + "cast": [ + "Alex Vega", + "Reiley McClendon", + "Saige Thompson" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "A.C.O.D.", + "year": 2013, + "cast": [ + "Adam Scott", + "Amy Poehler", + "Jessica Alba", + "Jane Lynch", + "Richard Jenkins" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Admission", + "year": 2013, + "cast": [ + "Paul Rudd", + "Tina Fey", + "Michael Sheen", + "Wallace Shawn", + "Lily Tomlin" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "After Earth", + "year": 2013, + "cast": [ + "Jaden Smith", + "Will Smith" + ], + "genres": [ + "Action", + "Science Fiction" + ] + }, + { + "title": "Aftershock", + "year": 2013, + "cast": [ + "Eli Roth", + "Andrea Osvárt", + "Ariel Levy", + "Natasha Yarovenko", + "Nicolás Martínez", + "Lorenza Izzo" + ], + "genres": [ + "Horror", + "Thriller" + ] + }, + { + "title": "Ain't Them Bodies Saints", + "year": 2013, + "cast": [ + "Casey Affleck", + "Rooney Mara", + "Ben Foster", + "Rami Malek", + "Keith Carradine", + "Charles Baker", + "Nate Parker" + ], + "genres": [ + "Western" + ] + }, + { + "title": "All Is Lost", + "year": 2013, + "cast": [ + "Robert Redford" + ], + "genres": [] + }, + { + "title": "Alone yet Not Alone", + "year": 2013, + "cast": [ + "Kelly Greyson", + "Natalie Racoosin", + "Jenn Gotzon", + "Clay Walker" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "American Hustle", + "year": 2013, + "cast": [ + "Christian Bale", + "Bradley Cooper", + "Amy Adams", + "Jeremy Renner", + "Jennifer Lawrence" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Anchorman 2: The Legend Continues", + "year": 2013, + "cast": [ + "Will Ferrell", + "Christina Applegate", + "Paul Rudd", + "David Koechner", + "Steve Carell", + "Kristen Wiig", + "James Marsden", + "Dylan Baker", + "Meagan Good", + "Harrison Ford", + "Greg Kinnear", + "Josh Lawson", + "Vince Vaughn", + "Luke Wilson", + "Nicole Kidman", + "Fred Willard", + "Chris Parnell", + "Fred Armisen", + "Jim Carrey", + "Sacha Baron Cohen", + "Drake", + "Kirsten Dunst", + "Tina Fey", + "Will Smith", + "Liam Neeson", + "Amy Poehler", + "John C. Reilly", + "Kanye West", + "Billie Joe Armstrong", + "Mike Dirnt", + "Tré Cool", + "Jason White", + "Lewis Hamilton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Angels Sing", + "year": 2013, + "cast": [ + "Harry Connick, Jr.", + "Connie Britton", + "Chandler Canterbury", + "Fionnula Flanagan", + "Lyle Lovett", + "Willie Nelson", + "Kris Kristofferson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Apartment 1303 3D", + "year": 2013, + "cast": [ + "Mischa Barton", + "Rebecca De Mornay", + "Julianne Michelle" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Apocalypse Earth", + "year": 2013, + "cast": [ + "Adrian Paul", + "Richard Grieco", + "Bali Rodríguez" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "At Any Price", + "year": 2013, + "cast": [ + "Dennis Quaid", + "Zac Efron", + "Kim Dickens", + "Heather Graham", + "Clancy Brown" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Arthur Newman", + "year": 2013, + "cast": [ + "Colin Firth", + "Emily Blunt", + "Anne Heche", + "Sterling Beaumon", + "Nicole LaLiberte" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Artifact", + "year": 2013, + "cast": [ + "The making of", + "Thirty Seconds to Mars", + "' album", + "This Is War" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Ass Backwards", + "year": 2013, + "cast": [ + "June Diane Raphael", + "Casey Wilson", + "Alicia Silverstone", + "Jon Cryer", + "Vincent D'Onofrio", + "Brian Geraghty", + "Bob Odenkirk", + "Paul Scheer" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Assault on Wall Street", + "year": 2013, + "cast": [ + "Dominic Purcell", + "Erin Karpluk", + "Edward Furlong", + "John Heard", + "Keith David", + "Michael Paré" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "August: Osage County", + "year": 2013, + "cast": [ + "Meryl Streep", + "Julia Roberts", + "Ewan McGregor", + "Chris Cooper", + "Abigail Breslin", + "Benedict Cumberbatch", + "Juliette Lewis", + "Margo Martindale", + "Dermot Mulroney", + "Julianne Nicholson", + "Sam Shepard", + "Misty Upham" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Baggage Claim", + "year": 2013, + "cast": [ + "Paula Patton", + "Derek Luke", + "Taye Diggs", + "Jill Scott", + "Boris Kodjoe", + "Trey Songz", + "Adam Brody", + "Tia Mowry", + "La La Anthony", + "Djimon Hounsou" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Battle of the Year", + "year": 2013, + "cast": [ + "Josh Holloway", + "Laz Alonso", + "Josh Peck", + "Caity Lotz", + "Chris Brown" + ], + "genres": [ + "Dance", + "Drama" + ] + }, + { + "title": "The Baytown Outlaws", + "year": 2013, + "cast": [ + "Andre Braugher", + "Eva Longoria", + "Clayne Crawford", + "Daniel Cudmore", + "Travis Fimmel", + "Billy Bob Thornton" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Beautiful Creatures", + "year": 2013, + "cast": [ + "Alden Ehrenreich", + "Alice Englert", + "Jeremy Irons", + "Viola Davis", + "Emmy Rossum", + "Thomas Mann", + "Emma Thompson" + ], + "genres": [ + "Fantasy", + "Romance" + ] + }, + { + "title": "Before Midnight", + "year": 2013, + "cast": [ + "Ethan Hawke", + "Julie Delpy" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "Behind the Candelabra", + "year": 2013, + "cast": [ + "Michael Douglas", + "Matt Damon", + "Dan Aykroyd", + "Scott Bakula", + "Rob Lowe" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Beneath", + "year": 2013, + "cast": [ + "Daniel Zovatto", + "Bonnie Dennison", + "Mackenzie Rosman" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Beside Still Waters", + "year": 2013, + "cast": [ + "Ryan Eggold", + "Britt Lower", + "Brett Dalton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Best Kept Secret", + "year": 2013, + "cast": [ + "A special education teacher finds a place in the real world for her students as they prepare to leave the public school system." + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Best Man Down", + "year": 2013, + "cast": [ + "Justin Long", + "Tyler Labine", + "Jess Weixler", + "Addison Timlin", + "Frances O'Connor", + "Shelley Long" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Best Man Holiday", + "year": 2013, + "cast": [ + "Morris Chestnut", + "Taye Diggs", + "Regina Hall", + "Terrence Howard", + "Sanaa Lathan", + "Nia Long", + "Harold Perrineau", + "Monica Calhoun", + "Melissa De Sousa" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Beyond the Farthest Star", + "year": 2013, + "cast": [ + "Renée O'Connor", + "Todd Terry", + "Cherami Leigh", + "Andrew Prine" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Big Ass Spider!", + "year": 2013, + "cast": [ + "Greg Grunberg", + "Lin Shaye", + "Patrick Bauchau" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Big Sur", + "year": 2013, + "cast": [ + "Josh Lucas", + "Jean-Marc Barr", + "Radha Mitchell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Big Wedding", + "year": 2013, + "cast": [ + "Robert De Niro", + "Katherine Heigl", + "Diane Keaton", + "Amanda Seyfried", + "Topher Grace", + "Ben Barnes", + "Susan Sarandon", + "Robin Williams" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Black Nativity", + "year": 2013, + "cast": [ + "Forest Whitaker", + "Angela Bassett", + "Tyrese Gibson", + "Jacob Latimore", + "Mary J. Blige", + "Nasir Jones", + "Jennifer Hudson" + ], + "genres": [ + "Musical", + "Drama" + ] + }, + { + "title": "Blackfish", + "year": 2013, + "cast": [ + "Focuses on an", + "orca", + "held at", + "SeaWorld", + "and the dangers of it being kept in captivity." + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Black Rock", + "year": 2013, + "cast": [ + "Katie Aselton", + "Lake Bell", + "Kate Bosworth", + "Will Bouvier", + "Jay Paulson", + "Anslem Richardson" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Bless Me, Ultima", + "year": 2013, + "cast": [ + "Luke Ganalon", + "Míriam Colón", + "Benito Martinez", + "Dolores Heredia" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Bling Ring", + "year": 2013, + "cast": [ + "Israel Broussard", + "Katie Chang", + "Taissa Farmiga", + "Claire Julien", + "Georgia Rock", + "Emma Watson", + "Leslie Mann" + ], + "genres": [ + "Comedy", + "Crime" + ] + }, + { + "title": "Blue Caprice", + "year": 2013, + "cast": [ + "Isaiah Washington", + "Tequan Richmond", + "Joey Lauren Adams", + "Tim Blake Nelson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Blue Jasmine", + "year": 2013, + "cast": [ + "Alec Baldwin", + "Cate Blanchett", + "Louis C.K.", + "Bobby Cannavale", + "Andrew Dice Clay", + "Sally Hawkins", + "Peter Sarsgaard", + "Michael Stuhlbarg" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Blue Ruin", + "year": 2013, + "cast": [ + "Macon Blair", + "Devin Ratray", + "Eve Plumb" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Book of Esther", + "year": 2013, + "cast": [ + "Jen Lilley", + "Joel Smallbone", + "Thaao Penghlis", + "Robert Miano" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Book Thief", + "year": 2013, + "cast": [ + "Sophie Nélisse", + "Geoffrey Rush", + "Emily Watson", + "Ben Schnetzer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Bounty Killer", + "year": 2013, + "cast": [ + "Matthew Marsden", + "Kristanna Loken", + "Beverly D'Angelo" + ], + "genres": [ + "Action", + "Comedy" + ] + }, + { + "title": "The Brass Teapot", + "year": 2013, + "cast": [ + "Juno Temple", + "Michael Angarano", + "Alexis Bledel", + "Alia Shawkat", + "Bobby Moynihan", + "Ben Rappaport", + "Billy Magnussen" + ], + "genres": [ + "Fantasy", + "Comedy" + ] + }, + { + "title": "Breathe In", + "year": 2013, + "cast": [ + "Guy Pearce", + "Felicity Jones", + "Amy Ryan", + "Kyle MacLachlan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Bridegroom", + "year": 2013, + "cast": [ + "The relationship between two young gay men." + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Broken City", + "year": 2013, + "cast": [ + "Mark Wahlberg", + "Russell Crowe", + "Catherine Zeta-Jones", + "Barry Pepper", + "Kyle Chandler", + "Natalie Martinez", + "Jeffrey Wright" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Bullet to the Head", + "year": 2013, + "cast": [ + "Sylvester Stallone", + "Sung Kang", + "Sarah Shahi", + "Adewale Akinnuoye-Agbaje", + "Christian Slater", + "Jason Momoa" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Butler", + "year": 2013, + "cast": [ + "Forest Whitaker", + "Oprah Winfrey", + "John Cusack", + "Jane Fonda", + "Cuba Gooding, Jr.", + "Terrence Howard", + "Lenny Kravitz", + "James Marsden", + "David Oyelowo", + "Vanessa Redgrave", + "Alan Rickman", + "Liev Schreiber", + "Robin Williams", + "Clarence Williams III" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "C.O.G.", + "year": 2013, + "cast": [ + "Jonathan Groff", + "Denis O'Hare", + "Casey Wilson", + "Dean Stockwell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Call", + "year": 2013, + "cast": [ + "Halle Berry", + "Abigail Breslin", + "Morris Chestnut", + "Michael Eklund", + "Michael Imperioli" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Can a Song Save Your Life?", + "year": 2013, + "cast": [ + "Keira Knightley", + "Mark Ruffalo", + "Adam Levine", + "Hailee Steinfeld", + "CeeLo Green" + ], + "genres": [ + "Musical", + "Drama" + ] + }, + { + "title": "The Canyons", + "year": 2013, + "cast": [ + "Lindsay Lohan", + "James Deen", + "Nolan Gerard Funk", + "Amanda Brooks", + "Tenille Houston", + "Gus Van Sant" + ], + "genres": [ + "Erotic", + "Thriller" + ] + }, + { + "title": "Captain Phillips", + "year": 2013, + "cast": [ + "Tom Hanks", + "Barkhad Abdi", + "Catherine Keener", + "Max Martini", + "Yul Vazquez", + "Michael Chernus", + "Chris Mulkey", + "Corey Johnson", + "David Warshofsky", + "John Magaro", + "Angus MacInnes" + ], + "genres": [ + "Action", + "Drama", + "Thriller" + ] + }, + { + "title": "Carrie", + "year": 2013, + "cast": [ + "Chloë Grace Moretz", + "Judy Greer", + "Portia Doubleday", + "Julianne Moore" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "CBGB", + "year": 2013, + "cast": [ + "Alan Rickman", + "Malin Åkerman", + "Freddy Rodriguez", + "Stana Katic", + "Howard Deklerk", + "Rupert Grint", + "Justin Bartha", + "Joel David Moore", + "Johnny Galecki", + "Donal Logue", + "Ashley Greene", + "Taylor Hawkins", + "Mickey Sumner" + ], + "genres": [ + "Historical", + "Musical" + ] + }, + { + "title": "Charlie Countryman", + "year": 2013, + "cast": [ + "Shia LaBeouf", + "Evan Rachel Wood", + "Mads Mikkelsen", + "Rupert Grint", + "Vincent D'Onofrio", + "Melissa Leo" + ], + "genres": [ + "Action", + "Romance", + "Comedy" + ] + }, + { + "title": "Cheech & Chong's Animated Movie", + "year": 2013, + "cast": [ + "Cheech Marin", + "Tommy Chong" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Chilling Visions: 5 Senses of Fear", + "year": 2013, + "cast": [ + "Nicholas Tucci", + "Caleb Barwick", + "Hilary Greer", + "Danae Nason", + "Ace Marrero" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Clark: A Gonzomentary", + "year": 2013, + "cast": [ + "William Clark", + "James Curcio", + "David Proch" + ], + "genres": [ + "Satire" + ] + }, + { + "title": "The Cloth", + "year": 2013, + "cast": [ + "Danny Trejo", + "Eric Roberts", + "Rachele Brooke Smith", + "Justin Price" + ], + "genres": [ + "Horror", + "Thriller" + ] + }, + { + "title": "Cloudy with a Chance of Meatballs 2", + "year": 2013, + "cast": [ + "Anna Faris", + "Bill Hader", + "Andy Samberg", + "Kristen Schaal", + "James Caan", + "Neil Patrick Harris", + "Benjamin Bratt", + "Terry Crews", + "Will Forte" + ], + "genres": [ + "Animated", + "Comedy", + "Family" + ] + }, + { + "title": "Coffin Baby", + "year": 2013, + "cast": [ + "Bruce Dern", + "Brian Krause", + "Clifton Powell", + "Ethan Phillips" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Company of Heroes", + "year": 2013, + "cast": [ + "Tom Sizemore", + "Chad Michael Collins", + "Vinnie Jones", + "Dimitri Diatchenko", + "Neal McDonough", + "Jürgen Prochnow" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Company You Keep", + "year": 2013, + "cast": [ + "Robert Redford", + "Shia LaBeouf", + "Julie Christie", + "Sam Elliott", + "Jackie Evancho", + "Brendan Gleeson", + "Terrence Howard", + "Richard Jenkins", + "Anna Kendrick", + "Brit Marling", + "Stanley Tucci", + "Nick Nolte", + "Chris Cooper", + "Susan Sarandon" + ], + "genres": [ + "Political", + "Thriller" + ] + }, + { + "title": "Computer Chess", + "year": 2013, + "cast": [ + "Patrick Riester", + "Wiley Wiggins", + "Myles Paige", + "Robin Schwartz" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Concussion", + "year": 2013, + "cast": [ + "Robin Weigert", + "Maggie Siff", + "Ben Shenkman", + "Janel Moloney" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Conjuring", + "year": 2013, + "cast": [ + "Vera Farmiga", + "Patrick Wilson", + "Ron Livingston", + "and", + "Lili Taylor", + "Shannon Kook", + "Mackenzie Foy", + "Joey King", + "Shanley Caswell", + "Hayley McFarland", + "Steve Coulter", + "John Brotherton" + ], + "genres": [ + "Supernatural", + "Horror" + ] + }, + { + "title": "Contest", + "year": 2013, + "cast": [ + "Kenton Duty", + "Daniel Flaherty", + "Katherine McNamara", + "Mary Beth Peil" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Continental", + "year": 2013, + "cast": [ + "Involves the history of a", + "gay bathhouse", + "in New York." + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Contracted", + "year": 2013, + "cast": [ + "Najarra Townsend", + "Alice Macdonald", + "Katie Stegeman", + "Caroline Williams" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Contractor", + "year": 2013, + "cast": [ + "Danny Trejo", + "Brad Rowe", + "Christina Cox" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Counselor", + "year": 2013, + "cast": [ + "Michael Fassbender", + "Penélope Cruz", + "Cameron Diaz", + "Javier Bardem", + "Brad Pitt" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "The Croods", + "year": 2013, + "cast": [ + "Nicolas Cage", + "Ryan Reynolds", + "Emma Stone", + "Catherine Keener", + "Clark Duke", + "Cloris Leachman" + ], + "genres": [ + "Adventure", + "Animated", + "Comedy" + ] + }, + { + "title": "Cutie and the Boxer", + "year": 2013, + "cast": [ + "Noriko Shinohara", + "Ushio Shinohara" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Dallas Buyers Club", + "year": 2013, + "cast": [ + "Matthew McConaughey", + "Jennifer Garner", + "Jared Leto" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dark Skies", + "year": 2013, + "cast": [ + "Keri Russell", + "Josh Hamilton", + "Dakota Goyo", + "J. K. Simmons" + ], + "genres": [ + "Horror", + "Science Fiction" + ] + }, + { + "title": "A Dark Truth", + "year": 2013, + "cast": [ + "Andy García", + "Kim Coates", + "Deborah Kara Unger", + "Kevin Durand", + "Lara Daans", + "Devon Bostick", + "Steven Bauer", + "Al Sapienza", + "Julio Mechoso", + "Eva Longoria", + "Forest Whitaker" + ], + "genres": [ + "Action", + "Thriller" + ] + }, + { + "title": "Dead Man Down", + "year": 2013, + "cast": [ + "Colin Farrell", + "Noomi Rapace", + "Dominic Cooper", + "Terrence Howard", + "Isabelle Huppert" + ], + "genres": [ + "Crime", + "Thriller", + "Noir" + ] + }, + { + "title": "Despicable Me 2", + "year": 2013, + "cast": [ + "Steve Carell", + "Kristen Wiig", + "Miranda Cosgrove", + "Russell Brand", + "Pierre Coffin", + "Benjamin Bratt", + "Steve Coogan", + "Ken Jeong", + "Kristen Schaal", + "Moisés Arias", + "Javier Bardem" + ], + "genres": [ + "Animated", + "Family" + ] + }, + { + "title": "Disconnect", + "year": 2013, + "cast": [ + "Jason Bateman", + "Hope Davis", + "Frank Grillo", + "Michael Nyqvist", + "Paula Patton", + "Andrea Riseborough", + "Alexander Skarsgård", + "Max Thieriot", + "Colin Ford", + "Jonah Bobo" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Dirty Wars", + "year": 2013, + "cast": [ + "N", + "A" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Don Jon", + "year": 2013, + "cast": [ + "Joseph Gordon-Levitt", + "Scarlett Johansson", + "Julianne Moore", + "Rob Brown", + "Glenne Headly", + "Brie Larson", + "Tony Danza" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Don't Stop Believin': Everyman's Journey", + "year": 2013, + "cast": [ + "A look at American rock band", + "Journey", + "and its new lead vocalist", + "Arnel Pineda", + ". Shows scenes from their", + "Revelation Tour", + "in the United States and Pineda's homecoming in the Philippines." + ], + "genres": [ + "Performance", + "Documentary" + ] + }, + { + "title": "Dracula: The Dark Prince", + "year": 2013, + "cast": [ + "Luke Roberts", + "Jon Voight", + "Kelly Wenham" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Drinking Buddies", + "year": 2013, + "cast": [ + "Olivia Wilde", + "Jake Johnson", + "Anna Kendrick", + "Ron Livingston", + "Ti West", + "Jason Sudeikis" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Elysium", + "year": 2013, + "cast": [ + "Matt Damon", + "Jodie Foster", + "Sharlto Copley", + "Alice Braga", + "Diego Luna", + "Wagner Moura", + "William Fichtner" + ], + "genres": [ + "Action", + "Science Fiction" + ] + }, + { + "title": "Emperor", + "year": 2013, + "cast": [ + "Matthew Fox", + "Tommy Lee Jones", + "Eriko Hatsune", + "Masayoshi Haneda", + "Toshiyuki Nishida" + ], + "genres": [ + "War" + ] + }, + { + "title": "Empire State", + "year": 2013, + "cast": [ + "Liam Hemsworth", + "Dwayne Johnson", + "Emma Roberts" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Ender's Game", + "year": 2013, + "cast": [ + "Asa Butterfield", + "Hailee Steinfeld", + "Ben Kingsley", + "Viola Davis", + "Abigail Breslin", + "Harrison Ford" + ], + "genres": [ + "Action", + "Science Fiction" + ] + }, + { + "title": "The English Teacher", + "year": 2013, + "cast": [ + "Julianne Moore", + "Michael Angarano", + "Greg Kinnear", + "Lily Collins", + "Nathan Lane" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Enough Said", + "year": 2013, + "cast": [ + "Julia Louis-Dreyfus", + "James Gandolfini", + "Catherine Keener", + "Toni Collette", + "Ben Falcone" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Epic", + "year": 2013, + "cast": [ + "Beyoncé Knowles", + "Colin Farrell", + "Josh Hutcherson", + "Amanda Seyfried", + "Christoph Waltz", + "Aziz Ansari", + "Pitbull", + "Jason Sudeikis", + "Chris O'Dowd", + "Steven Tyler", + "Blake Anderson", + "Judah Friedlander" + ], + "genres": [ + "Adventure", + "Animated", + "Family", + "Fantasy", + "Comedy" + ] + }, + { + "title": "Erased", + "year": 2013, + "cast": [ + "Aaron Eckhart", + "Olga Kurylenko", + "Liana Liberato", + "Alexander Fehling", + "Garrick Hagon" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Escape from Planet Earth", + "year": 2013, + "cast": [ + "Rob Corddry", + "Brendan Fraser", + "Sarah Jessica Parker", + "William Shatner", + "Jessica Alba", + "Craig Robinson", + "George Lopez", + "James Corden", + "Jane Lynch", + "Sofía Vergara" + ], + "genres": [ + "Animated", + "Science Fiction" + ] + }, + { + "title": "Escape Plan", + "year": 2013, + "cast": [ + "Sylvester Stallone", + "Arnold Schwarzenegger", + "Jim Caviezel", + "Curtis \"50 Cent\" Jackson", + "Vinnie Jones", + "Vincent D'Onofrio", + "Amy Ryan" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Europa Report", + "year": 2013, + "cast": [ + "Christian Camargo", + "Anamaria Marinca", + "Michael Nyqvist", + "Daniel Wu" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Evil Dead", + "year": 2013, + "cast": [ + "Jane Levy", + "Shiloh Fernandez", + "Lou Taylor Pucci", + "Jessica Lucas", + "Elizabeth Blackmore" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Face of Love", + "year": 2013, + "cast": [ + "Robin Williams", + "Annette Bening", + "Ed Harris", + "Amy Brenneman", + "Jess Weixler", + "Linda Park" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Family Weekend", + "year": 2013, + "cast": [ + "Olesya Ruin", + "Kristin Chenoweth", + "Matthew Modine", + "Joey King", + "Shirley Jones" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Far Marfa", + "year": 2013, + "cast": [ + "Johnny Sneed", + "Jesse Bernstein", + "Julie Mintz", + "Ty Mitchell", + "Jolyn Janis", + "Will Nelson" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Fast & Furious 6", + "year": 2013, + "cast": [ + "Vin Diesel", + "Paul Walker", + "Dwayne Johnson", + "Michelle Rodriguez", + "Jordana Brewster", + "Tyrese Gibson", + "Chris Bridges", + "Sung Kang", + "Luke Evans", + "Gina Carano", + "John Ortiz", + "Gal Gadot", + "Joe Taslim", + "Clara Paget", + "Elsa Pataky", + "Kim Kold", + "Rita Ora", + "Shea Whigham" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Fifth Estate", + "year": 2013, + "cast": [ + "Benedict Cumberbatch", + "Daniel Brühl", + "Anthony Mackie", + "David Thewlis", + "Alicia Vikander", + "Stanley Tucci", + "Laura Linney" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Five Dances", + "year": 2013, + "cast": [ + "Ryan Steele", + "Reed Luplau", + "Catherine Miller", + "Kimye Corwin" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "Foodfight!", + "year": 2013, + "cast": [ + "Charlie Sheen", + "Wayne Brady", + "Hilary Duff", + "Robert Costanzo", + "Chris Kattan", + "Eva Longoria", + "Christopher Lloyd", + "Ed Asner", + "Jerry Stiller", + "Christine Baranski" + ], + "genres": [ + "Animated", + "Family" + ] + }, + { + "title": "Frances Ha", + "year": 2013, + "cast": [ + "Greta Gerwig", + "Mickey Summer", + "Adam Driver" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Frankenstein Theory", + "year": 2013, + "cast": [ + "Kris Lemche", + "Joe Egender", + "Timothy V. Murphy", + "Heather Stephens" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Free Birds", + "year": 2013, + "cast": [ + "Owen Wilson", + "Woody Harrelson", + "Amy Poehler", + "Dan Fogler", + "Lesley Nicol", + "George Takei", + "Colm Meaney", + "Keith David", + "Carlos Alazraqui", + "Josh Lawson", + "Danny Carey", + "Dwight Howard" + ], + "genres": [ + "Animated", + "Comedy" + ] + }, + { + "title": "Fright Night 2: New Blood", + "year": 2013, + "cast": [ + "Will Payne", + "Jaime Murray", + "Sean Power", + "Sacha Parkinson" + ], + "genres": [ + "Horror", + "Comedy" + ] + }, + { + "title": "Frozen", + "year": 2013, + "cast": [ + "Kristen Bell", + "Idina Menzel", + "Jonathan Groff" + ], + "genres": [ + "Animated", + "Fantasy", + "Musical" + ] + }, + { + "title": "The Frozen Ground", + "year": 2013, + "cast": [ + "Nicolas Cage", + "John Cusack", + "Vanessa Hudgens", + "50 Cent", + "Radha Mitchell" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Fruitvale Station", + "year": 2013, + "cast": [ + "Michael B. Jordan", + "Melonie Diaz", + "Kevin Durand", + "Chad Michael Murray", + "Ahna O'Reilly", + "Octavia Spencer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "G.B.F.", + "year": 2013, + "cast": [ + "Sasha Pieterse", + "Andrea Bowen", + "Xosha Roquemore", + "JoJo", + "Molly Tarlov" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "G.I. Joe: Retaliation", + "year": 2013, + "cast": [ + "D. J. Cotrona", + "Lee Byung-hun", + "Adrianne Palicki", + "Ray Park", + "Jonathan Pryce", + "Ray Stevenson", + "Channing Tatum", + "Bruce Willis", + "Dwayne Johnson" + ], + "genres": [ + "Action", + "Adventure" + ] + }, + { + "title": "Gangster Squad", + "year": 2013, + "cast": [ + "Josh Brolin", + "Ryan Gosling", + "Nick Nolte", + "Emma Stone", + "Anthony Mackie", + "Giovanni Ribisi", + "Michael Peña", + "Robert Patrick", + "Sean Penn" + ], + "genres": [ + "Action", + "Crime", + "Drama" + ] + }, + { + "title": "Generation Iron", + "year": 2013, + "cast": [ + "Follows bodybuilders as they train and compete for", + "Mr. Olympia", + "." + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Geography Club", + "year": 2013, + "cast": [ + "Nikki Blonsky", + "Cameron Deane Shute", + "Justin Deeley", + "Alex Newell", + "Ana Gasteyer", + "Meaghan Martin", + "Scott Bakula", + "Allie Gonino" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Getaway", + "year": 2013, + "cast": [ + "Ethan Hawke", + "Selena Gomez", + "Jon Voight", + "Rebecca Budig", + "Paul Freeman", + "Bruce Payne" + ], + "genres": [ + "Action", + "Thriller" + ] + }, + { + "title": "The Ghost Army", + "year": 2013, + "cast": [ + "A secret U.S. army unit set to misdirect Nazi Germany." + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Girl Most Likely", + "year": 2013, + "cast": [ + "Kristen Wiig", + "Annette Bening", + "Matt Dillon", + "Darren Criss" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Glimpse Inside the Mind of Charles Swan III", + "year": 2013, + "cast": [ + "Charlie Sheen", + "Jason Schwartzman", + "Katheryn Winnick", + "Aubrey Plaza", + "Mary Elizabeth Winstead", + "Patricia Arquette", + "Bill Murray" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Go for Sisters", + "year": 2013, + "cast": [ + "Lisa Gay Hamilton", + "Edward James Olmos", + "Yolonda Ross", + "Hilary Barraford" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "A Good Day to Die Hard", + "year": 2013, + "cast": [ + "Bruce Willis", + "Jai Courtney", + "Sebastian Koch", + "Mary Elizabeth Winstead", + "Yuliya Snigir", + "Radivoje Bukvić", + "Cole Hauser", + "Amaury Nolasco" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Grace Unplugged", + "year": 2013, + "cast": [ + "AJ Michalka", + "James Denton", + "Kevin Pollak", + "Michael Welch", + "Shawnee Smith", + "Chris Tomlin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Gravity", + "year": 2013, + "cast": [ + "Sandra Bullock", + "George Clooney" + ], + "genres": [ + "Drama", + "Thriller" + ] + }, + { + "title": "The Great Gatsby", + "year": 2013, + "cast": [ + "Leonardo DiCaprio", + "Tobey Maguire", + "Carey Mulligan", + "Joel Edgerton", + "Amitabh Bachchan", + "Isla Fisher", + "Jason Clarke", + "Elizabeth Debicki" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "The Green Inferno", + "year": 2013, + "cast": [ + "Lorenza Izzo", + "Ariel Levy", + "Sky Ferreira", + "Daryl Sabara", + "Kirby Bliss Blanton" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Greetings from Tim Buckley", + "year": 2013, + "cast": [ + "Penn Badgley", + "Imogen Poots", + "Norbert Leo Butz", + "Ben Rosenfield", + "Frank Wood", + "Frank Bello", + "William Sadler", + "Kate Nash", + "Jessica Stone" + ], + "genres": [ + "Drama", + "Musical" + ] + }, + { + "title": "Grow Up, Tony Phillips", + "year": 2013, + "cast": [ + "Tony Vespe", + "Caleb Barwick", + "Devin Bonnée", + "AJ Bowen" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Grown Ups 2", + "year": 2013, + "cast": [ + "Adam Sandler", + "Kevin James", + "Chris Rock", + "David Spade", + "Salma Hayek", + "Maya Rudolph", + "Maria Bello", + "Nick Swardson", + "Taylor Lautner", + "David Henrie", + "Patrick Schwarzenegger", + "Cheri Oteri", + "Steve Buscemi", + "Milo Ventimiglia", + "Aly Michalka", + "Alexander Ludwig", + "Andy Samberg", + "Steve Austin", + "Will Forte", + "Taran Killam", + "Jon Lovitz", + "Akiva Schaffer", + "Jorma Taccone", + "Tim Meadows", + "Shaquille O'Neal", + "Colin Quinn", + "Bobby Moynihan", + "Paul Brittain" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Grudge Match", + "year": 2013, + "cast": [ + "Robert De Niro", + "Sylvester Stallone", + "Kevin Hart", + "Alan Arkin", + "Kim Basinger", + "Jon Bernthal" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Hangover Part III", + "year": 2013, + "cast": [ + "Bradley Cooper", + "Ed Helms", + "Zach Galifianakis", + "Ken Jeong", + "Heather Graham", + "Jeffrey Tambor", + "Justin Bartha", + "John Goodman" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hansel & Gretel", + "year": 2013, + "cast": [ + "Dee Wallace", + "Brent Lydic", + "Stephanie Greco", + "Steve Hanks", + "Clark Perry" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Hansel & Gretel Get Baked", + "year": 2013, + "cast": [ + "Michael Welch", + "Molly Quinn", + "Lara Flynn Boyle", + "Lochlyn Munro" + ], + "genres": [ + "Horror", + "Comedy" + ] + }, + { + "title": "Hansel & Gretel: Witch Hunters", + "year": 2013, + "cast": [ + "Jeremy Renner", + "Gemma Arterton", + "Famke Janssen", + "Peter Stormare", + "Pihla Viitala", + "Thomas Mann", + "Derek Mears", + "Robin Atkin Downes", + "(voice)", + "Rainer Bock", + "Monique Ganderton", + "Ingrid Bolsø Berdal", + "Zoë Bell", + "Joanna Kulig" + ], + "genres": [ + "Action", + "Adventure", + "Horror" + ] + }, + { + "title": "Hansel & Gretel: Warriors of Witchcraft", + "year": 2013, + "cast": [ + "Booboo Stewart", + "Fivel Stewart", + "Eric Roberts", + "Vanessa Angel", + "Cherie Currie" + ], + "genres": [ + "Action", + "Adventure" + ] + }, + { + "title": "Hatchet III", + "year": 2013, + "cast": [ + "Danielle Harris", + "Kane Hodder", + "Zach Galligan", + "Caroline Williams", + "Derek Mears", + "Cody Blue Snider" + ], + "genres": [ + "Slasher" + ] + }, + { + "title": "Hateship, Loveship", + "year": 2013, + "cast": [ + "Kristen Wiig", + "Hailee Steinfeld", + "Guy Pearce", + "Nick Nolte" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Haunted House", + "year": 2013, + "cast": [ + "Marlon Wayans", + "Essence Atkins", + "Cedric the Entertainer", + "Nick Swardson", + "David Koechner", + "Dave Sheridan" + ], + "genres": [ + "Horror", + "Comedy", + "Satire" + ] + }, + { + "title": "The Haunting in Connecticut 2: Ghosts of Georgia", + "year": 2013, + "cast": [ + "Abigail Spencer", + "Chad Michael Murray", + "Katee Sackhoff", + "Emily Alyn Lind", + "Cicely Tyson" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "He's Way More Famous Than You", + "year": 2013, + "cast": [ + "Jesse Eisenberg", + "Ben Stiller", + "Halley Feiffer", + "Vanessa L. Williams" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Heat", + "year": 2013, + "cast": [ + "Sandra Bullock", + "Melissa McCarthy", + "Demián Bichir", + "Marlon Wayans", + "Michael Rapaport" + ], + "genres": [] + }, + { + "title": "Hell Baby", + "year": 2013, + "cast": [ + "Rob Corddry", + "Leslie Bibb", + "Keegan-Michael Key", + "Riki Lindhome", + "Rob Huebel", + "Paul Scheer", + "Robert Ben Garant", + "Thomas Lennon", + "Michael Ian Black", + "Kumail Nanjiani", + "Dave Holmes" + ], + "genres": [ + "Horror", + "Comedy" + ] + }, + { + "title": "Her", + "year": 2013, + "cast": [ + "Joaquin Phoenix", + "Amy Adams", + "Rooney Mara", + "Scarlett Johansson", + "(voice)" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Hit & Stay", + "year": 2013, + "cast": [ + "The actions of the", + "Catonsville Nine", + "in the Vietnam War." + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Hobbit: The Desolation of Smaug", + "year": 2013, + "cast": [ + "Ian McKellen", + "Martin Freeman", + "Benedict Cumberbatch", + "Lee Pace", + "Evangeline Lilly", + "Stephen Fry", + "James Nesbitt" + ], + "genres": [ + "Adventure", + "Fantasy" + ] + }, + { + "title": "Home Run", + "year": 2013, + "cast": [ + "Scott Elrod", + "Dorian Brown", + "Charles Henry Wyson", + "Vivica A. Fox" + ], + "genres": [ + "Drama", + "Sports" + ] + }, + { + "title": "Homefront", + "year": 2013, + "cast": [ + "Jason Statham", + "James Franco", + "Winona Ryder", + "Kate Bosworth", + "Rachelle Lefevre", + "Frank Grillo", + "Clancy Brown", + "Izabela Vidovic" + ], + "genres": [ + "Action", + "Drama" + ] + }, + { + "title": "The Hospital", + "year": 2013, + "cast": [ + "Jim O'Rear", + "Daniel Emery Taylor", + "John Dugan", + "Jason Crowe", + "April Monique Burril" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Host", + "year": 2013, + "cast": [ + "Saoirse Ronan", + "Jake Abel", + "Max Irons", + "Frances Fisher", + "Chandler Canterbury", + "Diane Kruger", + "William Hurt" + ], + "genres": [ + "Romance", + "Science Fiction" + ] + }, + { + "title": "The Hot Flashes", + "year": 2013, + "cast": [ + "Brooke Shields", + "Daryl Hannah", + "Wanda Sykes", + "Virginia Madsen", + "Camryn Manheim" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hours", + "year": 2013, + "cast": [ + "Paul Walker", + "Genesis Rodriguez" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "House of Dust", + "year": 2013, + "cast": [ + "Inbar Lavi", + "Steven Grayhm", + "Eddie Hassell", + "Holland Roden", + "John Lee Ames" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "How to Lose Your Virginity", + "year": 2013, + "cast": [ + "How the concept of virginity shapes the lives of men and women." + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "How to Be a Man", + "year": 2013, + "cast": [ + "Gavin McInnes", + "Liam Aiken" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Hunger Games: Catching Fire", + "year": 2013, + "cast": [ + "Jennifer Lawrence", + "Josh Hutcherson", + "Liam Hemsworth", + "Woody Harrelson", + "Elizabeth Banks", + "Sam Claflin", + "Jena Malone" + ], + "genres": [ + "Action", + "Drama", + "Science Fiction" + ] + }, + { + "title": "I Am Divine", + "year": 2013, + "cast": [ + "Focuses on the drag queen", + "Divine", + "." + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "I'm in Love with a Church Girl", + "year": 2013, + "cast": [ + "Jeff \"Ja Rule\" Atkins", + "Adrienne Bailon", + "Stephen Baldwin", + "Vincent Pastore", + "TobyMac", + "T-Bone", + "Michael Madsen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "I Know That Voice", + "year": 2013, + "cast": [ + "The tales about voice acting." + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "I Spit on Your Grave 2", + "year": 2013, + "cast": [ + "Jemma Dallender", + "Yavor Baharoff", + "Joe Absolom", + "Aleksandar Aleksiev" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "I Used to Be Darker", + "year": 2013, + "cast": [ + "Deragh Campbell", + "Hannah Gross", + "Ned Oldham", + "Kim Taylor" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Iceman", + "year": 2013, + "cast": [ + "Michael Shannon", + "Winona Ryder", + "Ray Liotta", + "Chris Evans", + "James Franco", + "David Schwimmer", + "Stephen Dorff", + "Erin Cummings", + "Robert Davi", + "Jay Giannone", + "Weronika Rosati" + ], + "genres": [ + "Crime", + "Thriller" + ] + }, + { + "title": "Identity Thief", + "year": 2013, + "cast": [ + "Jason Bateman", + "Melissa McCarthy", + "Jon Favreau", + "Amanda Peet", + "T.I.", + "Genesis Rodriguez", + "Morris Chestnut", + "John Cho", + "Robert Patrick", + "Eric Stonestreet", + "Maggie Elizabeth Jones", + "Clark Duke", + "Ben Falcone" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "In a World...", + "year": 2013, + "cast": [ + "Lake Bell", + "Fred Melamed", + "Demetri Martin", + "Michaela Watkins" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "InAPPropriate Comedy", + "year": 2013, + "cast": [ + "Ari Shaffir", + "Rob Schneider", + "Michelle Rodriguez", + "Adrien Brody", + "Lindsay Lohan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Incredible Burt Wonderstone", + "year": 2013, + "cast": [ + "Steve Carell", + "Steve Buscemi", + "Olivia Wilde", + "Alan Arkin", + "James Gandolfini", + "Jim Carrey" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Indescribable", + "year": 2013, + "cast": [ + "Seth Pruski", + "Rich Swingle", + "Jason Cockerham", + "Danielle Duncan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Inequality for All", + "year": 2013, + "cast": [ + "Shows income inequality in the", + "United States", + "." + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Inevitable Defeat of Mister & Pete", + "year": 2013, + "cast": [ + "Skylan Brooks", + "Ethan Dizon", + "Anthony Mackie", + "Adewale Akinnuoye-Agbaje" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Inside Llewyn Davis", + "year": 2013, + "cast": [ + "Oscar Isaac", + "Carey Mulligan", + "John Goodman", + "Garrett Hedlund", + "Justin Timberlake" + ], + "genres": [ + "Musical", + "Drama" + ] + }, + { + "title": "Insidious: Chapter 2", + "year": 2013, + "cast": [ + "Patrick Wilson", + "Rose Byrne", + "Lin Shaye", + "Ty Simpkins", + "Barbara Hershey" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Internship", + "year": 2013, + "cast": [ + "Vince Vaughn", + "Owen Wilson", + "Dylan O'Brien", + "Rose Byrne", + "Jessica Szohr", + "Max Minghella", + "Aasif Mandvi", + "John Goodman", + "Will Ferrell", + "JoAnna Garcia", + "Eric Andre", + "Josh Brener", + "Tiya Sircar", + "Tobit Raphael", + "Josh Gad" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Iron Man 3", + "year": 2013, + "cast": [ + "Robert Downey, Jr.", + "Gwyneth Paltrow", + "Don Cheadle", + "Guy Pearce", + "Rebecca Hall", + "Stephanie Szostak", + "James Badge Dale", + "Jon Favreau", + "Ben Kingsley" + ], + "genres": [ + "Superhero" + ] + }, + { + "title": "ISteve", + "year": 2013, + "cast": [ + "Justin Long", + "Art Evans", + "Juzo Yoshida", + "Brian Huskey", + "Jorge Garcia" + ], + "genres": [ + "Satire" + ] + }, + { + "title": "It's a Disaster", + "year": 2013, + "cast": [ + "Rachel Boston", + "Kevin M. Brennan", + "David Cross", + "America Ferrera", + "Jeff Grace", + "Erinn Hayes", + "Blaise Miller", + "Julia Stiles", + "Todd Berger" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Jack the Giant Killer", + "year": 2013, + "cast": [ + "Ben Cross", + "Jane March", + "Jamie Atkins", + "Vicki Glover", + "Harry Dyer" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Jack the Giant Slayer", + "year": 2013, + "cast": [ + "Nicholas Hoult", + "Eleanor Tomlinson", + "Stanley Tucci", + "Ian McShane", + "Bill Nighy", + "Ewan McGregor" + ], + "genres": [ + "Action", + "Adventure", + "Fantasy" + ] + }, + { + "title": "Jackass Presents: Bad Grandpa", + "year": 2013, + "cast": [ + "Johnny Knoxville", + "Jackson Nicoll" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Java Heat", + "year": 2013, + "cast": [ + "Kellan Lutz", + "Mickey Rourke", + "Ario Bayu", + "Atiqah Hasiholan" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Jay & Silent Bob's Super Groovy Cartoon Movie", + "year": 2013, + "cast": [ + "Jason Mewes", + "Kevin Smith", + "Eliza Dushku", + "Tara Strong", + "Ralph Garman", + "Neil Gaiman" + ], + "genres": [ + "Animated", + "Comedy" + ] + }, + { + "title": "Jayne Mansfield's Car", + "year": 2013, + "cast": [ + "Robert Duvall", + "John Hurt", + "Billy Bob Thornton", + "Kevin Bacon", + "Robert Patrick", + "Ray Stevenson", + "Katherine LaNasa", + "Frances O'Connor", + "Shawnee Smith", + "Ron White" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Jobs", + "year": 2013, + "cast": [ + "Ashton Kutcher", + "Dermot Mulroney", + "Josh Gad", + "Lukas Haas", + "J. K. Simmons", + "Lesley Ann Warren", + "Ron Eldard", + "Ahna O'Reilly", + "John Getz", + "James Woods", + "Matthew Modine" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "John Dies at the End", + "year": 2013, + "cast": [ + "Chase Williamson", + "Rob Mayes", + "Paul Giamatti", + "Clancy Brown", + "Glynn Turman", + "Doug Jones", + "Daniel Roebuck" + ], + "genres": [ + "Comedy", + "Horror" + ] + }, + { + "title": "Joe", + "year": 2013, + "cast": [ + "Nicolas Cage", + "Tye Sheridan", + "Heather Kafka", + "Ronnie Gene Blevins", + "Sue Rock" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Jug Face", + "year": 2013, + "cast": [ + "Lauren Ashley Carter", + "Sean Bridgers", + "Sean Young" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Justice League: The Flashpoint Paradox", + "year": 2013, + "cast": [ + "Justin Chambers", + "Kevin McKidd", + "C. Thomas Howell", + "Michael B. Jordan" + ], + "genres": [ + "Animated", + "Superhero" + ] + }, + { + "title": "Justin Bieber's Believe", + "year": 2013, + "cast": [ + "Focuses on Justin Bieber's rise to fame." + ], + "genres": [ + "Biography", + "Documentary" + ] + }, + { + "title": "Kevin Hart: Let Me Explain", + "year": 2013, + "cast": [ + "Features", + "Kevin Hart", + "'s performance in 2012" + ], + "genres": [ + "Comedy", + "Documentary" + ] + }, + { + "title": "Kick-Ass 2", + "year": 2013, + "cast": [ + "Aaron Taylor-Johnson", + "Christopher Mintz-Plasse", + "Chloë Grace Moretz", + "Jim Carrey" + ], + "genres": [ + "Action", + "Comedy", + "Superhero" + ] + }, + { + "title": "Kill Your Darlings", + "year": 2013, + "cast": [ + "Daniel Radcliffe", + "Dane DeHaan", + "Ben Foster", + "Michael C. Hall", + "Jack Huston", + "Jennifer Jason Leigh", + "Elizabeth Olsen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Killing Season", + "year": 2013, + "cast": [ + "Robert De Niro", + "John Travolta", + "Milo Ventimiglia", + "Elizabeth Olin" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Kings of Summer", + "year": 2013, + "cast": [ + "Nick Robinson", + "Gabriel Basso", + "Moisés Arias", + "Nick Offerman", + "Alison Brie", + "Megan Mullally", + "Marc Evan Jackson", + "Mary Lynn Rajskub" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "Kink", + "year": 2013, + "cast": [ + "About the website", + "Kink.com", + "." + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Kiss of the Damned", + "year": 2013, + "cast": [ + "Joséphine de La Baume", + "Milo Ventimiglia", + "Roxane Mesquida", + "Michael Rapaport", + "Riley Keough", + "Ching Valdes-Aran", + "Anna Mouglalis" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Knife Fight", + "year": 2013, + "cast": [ + "Rob Lowe", + "Julie Bowen", + "Saffron Burrows", + "Jamie Chung", + "David Harbour", + "Eric McCormack", + "Jennifer Morrison", + "Carrie-Anne Moss", + "Richard Schiff", + "Amanda Crew", + "Shirley Manson", + "Davey Havok" + ], + "genres": [ + "Political", + "Thriller" + ] + }, + { + "title": "Koch", + "year": 2013, + "cast": [ + "The life and career of former New York Mayor", + "Ed Koch", + "." + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Lake Windfall", + "year": 2013, + "cast": [ + "Focuses on deaf people at a weekend camp expedition." + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Last Call", + "year": 2013, + "cast": [ + "Travis Van Winkle", + "Ryan Hansen", + "Tara Reid" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Last Exorcism Part II", + "year": 2013, + "cast": [ + "Ashley Bell", + "Julia Garner", + "Spencer Treat Clark", + "Louis Herthum" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Last of Robin Hood", + "year": 2013, + "cast": [ + "Kevin Kline", + "Dakota Fanning", + "Susan Sarandon", + "Patrick St. Esprit" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Last Stand", + "year": 2013, + "cast": [ + "Arnold Schwarzenegger", + "Forest Whitaker", + "Johnny Knoxville", + "Rodrigo Santoro", + "Jaimie Alexander", + "Luis Guzmán", + "Eduardo Noriega", + "Peter Stormare", + "Zach Gilford", + "Genesis Rodriguez" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Last Vegas", + "year": 2013, + "cast": [ + "Michael Douglas", + "Robert De Niro", + "Morgan Freeman", + "Kevin Kline", + "Mary Steenburgen" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Last Weekend", + "year": 2013, + "cast": [ + "Patricia Clarkson", + "Zachary Booth", + "Joseph Cross", + "Chris Mulkey" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Legend of Jimi Lazer", + "year": 2013, + "cast": [ + "Robbie Beniuk", + "Patrick J. Mitchell", + "Elijah Black", + "Robert Tanos" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Let the Fire Burn", + "year": 2013, + "cast": [ + "The stand-off between a black liberation group and police." + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Liars All", + "year": 2013, + "cast": [ + "Matt Lanter", + "Sara Paxton", + "Randy Wayne", + "Darin Brooks" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Life of Crime", + "year": 2013, + "cast": [ + "Jennifer Aniston", + "Tim Robbins", + "Isla Fisher", + "John Hawkes", + "Mos Def", + "Will Forte" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Lifeguard", + "year": 2013, + "cast": [ + "Kristen Bell", + "Mamie Gummer", + "Martin Starr", + "Alex Shaffer", + "Joshua Harto", + "David Lambert", + "Amy Madigan" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Lil Bub & Friendz", + "year": 2013, + "cast": [ + "Features cats based on Internet memes and viral videos." + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Little Feet", + "year": 2013, + "cast": [ + "Rene Cuante-Bautista", + "Lana Rockwell", + "Nico Rockwell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Lone Ranger", + "year": 2013, + "cast": [ + "Armie Hammer", + "Johnny Depp", + "William Fichtner", + "Tom Wilkinson", + "Barry Pepper", + "Helena Bonham Carter", + "Ruth Wilson", + "James Badge Dale", + "Mason Cook" + ], + "genres": [ + "Action", + "Adventure", + "Western" + ] + }, + { + "title": "The Lords of Salem", + "year": 2013, + "cast": [ + "Sheri Moon Zombie", + "Bruce Davison", + "Jeff Daniel Phillips", + "Ken Foree", + "Patricia Quinn", + "Dee Wallace", + "María Conchita Alonso", + "Judy Geeson", + "Meg Foster" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Lost Medallion: The Adventures of Billy Stone", + "year": 2013, + "cast": [ + "Billy Unger", + "Sammi Hanratty", + "James Hong", + "Jansen Panettiere" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Lovelace", + "year": 2013, + "cast": [ + "Amanda Seyfried", + "Peter Sarsgaard", + "Hank Azaria", + "Adam Brody", + "Bobby Cannavale", + "James Franco", + "Debi Mazar", + "Chris Noth", + "Chloë Sevigny", + "Sharon Stone", + "Juno Temple" + ], + "genres": [ + "Biography", + "Drama" + ] + }, + { + "title": "Lone Survivor", + "year": 2013, + "cast": [ + "Mark Wahlberg", + "Taylor Kitsch", + "Emile Hirsch", + "Ben Foster", + "Eric Bana" + ], + "genres": [ + "War" + ] + }, + { + "title": "Lucky Them", + "year": 2013, + "cast": [ + "Toni Collette", + "Ahna O'Reilly", + "Thomas Haden Church", + "Amy Seimetz" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "LUV", + "year": 2013, + "cast": [ + "Common", + "Michael Rainey Jr.", + "Charles S. Dutton", + "Meagan Good", + "Marc John Jefferies", + "Lonette McKee", + "Michael K. Williams", + "Tracey Heggins", + "Clark Johnson", + "Russell Hornsby", + "Sammi Rotibi", + "Dennis Haysbert", + "Danny Glover" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Machete Kills", + "year": 2013, + "cast": [ + "Danny Trejo", + "Michelle Rodriguez", + "Sofía Vergara", + "Amber Heard", + "Carlos Estevez", + "Antonio Banderas", + "Cuba Gooding Jr.", + "Walt Goggins", + "William Sadler", + "Demián Bichir", + "Mel Gibson" + ], + "genres": [ + "Action" + ] + }, + { + "title": "A Madea Christmas", + "year": 2013, + "cast": [ + "Tyler Perry", + "Kathy Najimy", + "Chad Michael Murray", + "Anna Maria Horsford", + "Tika Sumpter", + "Eric Lively", + "JR Lemon", + "Alicia Witt", + "Lisa Whelchel", + "Larry the Cable Guy" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Magic Magic", + "year": 2013, + "cast": [ + "Juno Temple", + "Emily Browning", + "Michael Cera" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Manhattan Romance", + "year": 2013, + "cast": [ + "Gaby Hoffmann", + "Katharine Waterstone", + "Zach Grenier" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Man of Steel", + "year": 2013, + "cast": [ + "Henry Cavill", + "Amy Adams", + "Michael Shannon", + "Kevin Costner", + "Diane Lane", + "Laurence Fishburne", + "Antje Traue", + "Ayelet Zurer", + "Russell Crowe" + ], + "genres": [ + "Superhero" + ] + }, + { + "title": "Manhunt: The Search for Bin Laden", + "year": 2013, + "cast": [ + "Explores the investigation of Osama Bin Laden from 1995 to 2011." + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Marine 3: Homefront", + "year": 2013, + "cast": [ + "The Miz", + "Neal McDonough", + "Michael Eklund", + "Ashley Bell", + "Jared Keeso" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Masterminds", + "year": 2013, + "cast": [ + "Tila Tequila", + "Nick Hogan", + "Tray Chaney" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "McCanick", + "year": 2013, + "cast": [ + "David Morse", + "Cory Monteith", + "Mike Vogel", + "Ciarán Hinds" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Medora", + "year": 2013, + "cast": [ + "Features a basketball team." + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Men Who Lost China", + "year": 2013, + "cast": [ + "Explores the attitude between United States and China." + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Metallica Through the Never", + "year": 2013, + "cast": [ + "Dane DeHaan", + "James Hetfield", + "Lars Ulrich", + "Kirk Hammett", + "Robert Trujillo" + ], + "genres": [ + "Documentary", + "Musical" + ] + }, + { + "title": "Monsters University", + "year": 2013, + "cast": [ + "Billy Crystal", + "John Goodman", + "Steve Buscemi", + "Joel Murray", + "Sean Hayes", + "Dave Foley", + "Peter Sohn", + "Charlie Day", + "Frank Oz", + "Helen Mirren", + "Alfred Molina", + "Nathan Fillion", + "Aubrey Plaza", + "Tyler Labine", + "John Krasinski", + "Bonnie Hunt", + "Bobby Moynihan", + "Julia Sweeney", + "Beth Behrs", + "John Ratzenberger" + ], + "genres": [ + "Animated", + "Comedy", + "Family" + ] + }, + { + "title": "The Mortal Instruments: City of Bones", + "year": 2013, + "cast": [ + "Lily Collins", + "Jamie Campbell Bower", + "Robert Sheehan", + "Kevin Zegers", + "Lena Headey", + "Kevin Durand", + "Aidan Turner", + "Godfrey Gao", + "C. C. H. Pounder", + "Jared Harris", + "Jonathan Rhys Meyers" + ], + "genres": [ + "Action", + "Adventure", + "Fantasy" + ] + }, + { + "title": "Movie 43", + "year": 2013, + "cast": [ + "Elizabeth Banks", + "Kristen Bell", + "Halle Berry", + "Leslie Bibb", + "Kate Bosworth", + "Gerard Butler", + "Josh Duhamel", + "Anna Faris", + "Richard Gere", + "Terrence Howard", + "Hugh Jackman", + "Johnny Knoxville", + "Justin Long", + "Christopher Mintz-Plasse", + "Chloë Grace Moretz", + "Liev Schreiber", + "Seann William Scott", + "Emma Stone", + "Jason Sudeikis", + "Uma Thurman", + "Naomi Watts", + "Kate Winslet" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Much Ado About Nothing", + "year": 2013, + "cast": [ + "Amy Acker", + "Alexis Denisof", + "Reed Diamond", + "Nathan Fillion", + "Clark Gregg", + "Fran Kranz", + "Sean Maher", + "Jillian Morgese" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Mud", + "year": 2013, + "cast": [ + "Matthew McConaughey", + "Tye Sheridan", + "Sam Shepard", + "Michael Shannon", + "Joe Don Baker", + "Ray McKinnon", + "Sarah Paulson", + "Paul Sparks", + "Jacob Lofland", + "Reese Witherspoon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Nebraska", + "year": 2013, + "cast": [ + "Bruce Dern", + "Will Forte", + "June Squibb", + "Stacy Keach", + "Bob Odenkirk" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "No One Lives", + "year": 2013, + "cast": [ + "Luke Evans", + "Adelaide Clemens", + "Lee Tergesen", + "Laura Ramsey", + "Derek Magyar", + "Beau Knapp", + "America Olivo", + "Brodus Clay", + "Lindsey Shaw" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Now You See Me", + "year": 2013, + "cast": [ + "Jesse Eisenberg", + "Mark Ruffalo", + "Woody Harrelson", + "Mélanie Laurent", + "Isla Fisher", + "Dave Franco", + "Michael Caine", + "Morgan Freeman" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Oblivion", + "year": 2013, + "cast": [ + "Tom Cruise", + "Olga Kurylenko", + "Andrea Riseborough", + "Morgan Freeman", + "Nikolaj Coster-Waldau", + "Melissa Leo", + "Zoë Bell" + ], + "genres": [ + "Action", + "Science Fiction" + ] + }, + { + "title": "Officer Down", + "year": 2013, + "cast": [ + "Stephen Dorff", + "Dominic Purcell", + "AnnaLynne McCord", + "David Boreanaz", + "Soulja Boy", + "Stephen Lang", + "James Woods" + ], + "genres": [ + "Action", + "Crime" + ] + }, + { + "title": "Oldboy", + "year": 2013, + "cast": [ + "Josh Brolin", + "Elizabeth Olsen", + "Sharlto Copley" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Olympus Has Fallen", + "year": 2013, + "cast": [ + "Gerard Butler", + "Aaron Eckhart", + "and", + "Morgan Freeman", + "Angela Bassett", + "Robert Forster", + "Cole Hauser", + "Finley Jacobsen", + "Ashley Judd", + "Melissa Leo", + "Dylan McDermott", + "Radha Mitchell", + "Rick Yune" + ], + "genres": [ + "Action", + "Thriller" + ] + }, + { + "title": "One Direction: This Is Us", + "year": 2013, + "cast": [ + "Chronicling the lives of British boy band", + "One Direction", + "while on tour." + ], + "genres": [ + "Performance", + "Documentary" + ] + }, + { + "title": "Out of the Furnace", + "year": 2013, + "cast": [ + "Christian Bale", + "Woody Harrelson", + "Casey Affleck", + "Forest Whitaker", + "Willem Dafoe", + "Zoe Saldana", + "Sam Shepard" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Oz the Great and Powerful", + "year": 2013, + "cast": [ + "James Franco", + "Mila Kunis", + "Rachel Weisz", + "Michelle Williams", + "Zach Braff", + "Bill Cobbs", + "Joey King", + "(voice)", + "Tony Cox" + ], + "genres": [ + "Adventure", + "Fantasy" + ] + }, + { + "title": "Pacific Rim", + "year": 2013, + "cast": [ + "Charlie Hunnam", + "Idris Elba", + "Rinko Kikuchi", + "Charlie Day", + "Rob Kazinsky", + "Max Martini", + "Ron Perlman" + ], + "genres": [ + "Action", + "Science Fiction" + ] + }, + { + "title": "The Package", + "year": 2013, + "cast": [ + "Steve Austin", + "Dolph Lundgren", + "Eric Keenleyside", + "Mike Dopud", + "John Novak" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Pain & Gain", + "year": 2013, + "cast": [ + "Mark Wahlberg", + "Dwayne Johnson", + "Anthony Mackie", + "Tony Shalhoub", + "Ed Harris" + ], + "genres": [ + "Crime", + "Comedy" + ] + }, + { + "title": "Palominas", + "year": 2013, + "cast": [ + "Buck Taylor", + "Daryl Hannah", + "Wes Studi", + "Ryan Merriman", + "Michael Parks" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Half Life", + "year": 2013, + "cast": [], + "genres": [ + "Drama" + ] + }, + { + "title": "Paradise", + "year": 2013, + "cast": [ + "Julianne Hough", + "Russell Brand", + "Octavia Spencer", + "Nick Offerman", + "Holly Hunter" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Paranoia", + "year": 2013, + "cast": [ + "Liam Hemsworth", + "Gary Oldman", + "Amber Heard", + "Harrison Ford", + "Lucas Till", + "Embeth Davidtz", + "Julian McMahon", + "Josh Holloway", + "and", + "Richard Dreyfuss" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Pardon", + "year": 2013, + "cast": [ + "Jaime King", + "Jason Lewis", + "M. C. Gainey", + "Leigh Whannell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Parker", + "year": 2013, + "cast": [ + "Jason Statham", + "Jennifer Lopez", + "Michael Chiklis", + "Bobby Cannavale", + "and", + "Nick Nolte", + "Clifton Collins, Jr.", + "Wendell Pierce", + "Patti LuPone", + "Carlos Carrasco", + "Micah A. Hauptman", + "Emma Booth", + "Daniel Bernhardt" + ], + "genres": [ + "Crime", + "Thriller" + ] + }, + { + "title": "Parkland", + "year": 2013, + "cast": [ + "James Badge Dale", + "Zac Efron", + "Colin Hanks", + "David Harbour", + "Jackie Earle Haley", + "Marcia Gay Harden", + "Ron Livingston", + "Jeremy Strong", + "Billy Bob Thornton", + "Jacki Weaver", + "Tom Welling", + "Paul Giamatti" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Pawn", + "year": 2013, + "cast": [ + "Jessica Szohr", + "Nikki Reed", + "Sean Faris", + "Forest Whitaker" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Pawn Shop Chronicles", + "year": 2013, + "cast": [ + "Paul Walker", + "Matt Dillon", + "Brendan Fraser", + "Kevin Rankin", + "Vincent D'Onofrio", + "Norman Reedus" + ], + "genres": [ + "Crime", + "Thriller" + ] + }, + { + "title": "Penthouse North", + "year": 2013, + "cast": [ + "Michael Keaton", + "Michelle Monaghan", + "Barry Sloane", + "Kaniehtiio Horn" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Percy Jackson: Sea of Monsters", + "year": 2013, + "cast": [ + "Logan Lerman", + "Brandon T. Jackson", + "Alexandra Daddario", + "Leven Rambin", + "Jake Abel", + "Douglas Smith", + "Stanley Tucci", + "Nathan Fillion" + ], + "genres": [ + "Adventure", + "Fantasy" + ] + }, + { + "title": "Phantom", + "year": 2013, + "cast": [ + "Ed Harris", + "David Duchovny", + "William Fichtner", + "Lance Henriksen", + "Johnathon Schaech", + "Jason Beghe", + "Sean Patrick Flanery", + "Jason Gray-Stanford", + "Julian Adams" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Philomena", + "year": 2013, + "cast": [ + "Judi Dench", + "Steve Coogan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Pit Stop", + "year": 2013, + "cast": [ + "Bill Heck", + "Marcus DeAnda", + "Amy Seimetz", + "Alfredo Maduro" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Place Beyond the Pines", + "year": 2013, + "cast": [ + "Ryan Gosling", + "Bradley Cooper", + "Eva Mendes", + "Ray Liotta", + "Ben Mendelsohn", + "Rose Byrne", + "Mahershala Ali", + "Bruce Greenwood", + "Harris Yulin" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Planes", + "year": 2013, + "cast": [ + "Dane Cook", + "Stacy Keach", + "Priyanka Chopra", + "Brad Garrett", + "Teri Hatcher", + "Cedric the Entertainer", + "Julia Louis-Dreyfus", + "John Cleese", + "Carlos Alazraqui", + "Roger Craig Smith", + "and", + "Gabriel Iglesias" + ], + "genres": [ + "Animated", + "Comedy", + "Family" + ] + }, + { + "title": "Plush", + "year": 2013, + "cast": [ + "Emily Browning", + "Xavier Samuel", + "Cam Gigandet", + "Dawn Olivieri", + "Thomas Dekker", + "Frances Fisher" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Plus One", + "year": 2013, + "cast": [ + "Ashley Hinshaw", + "Rhys Wakefield", + "Natalie Hall" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Power Inside", + "year": 2013, + "cast": [ + "Harvey Keitel", + "Analeigh Tipton", + "Craig Roberts", + "Reid Ewing", + "Zack Pearlman" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Pretty One", + "year": 2013, + "cast": [ + "Zoe Kazan", + "Jake Johnson", + "Ron Livingston", + "Sterling Beaumon" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Prince Avalanche", + "year": 2013, + "cast": [ + "Paul Rudd", + "Emile Hirsch", + "Lance LeGault" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Prisoners", + "year": 2013, + "cast": [ + "Hugh Jackman", + "Jake Gyllenhaal", + "Viola Davis", + "Maria Bello", + "Terrence Howard", + "Melissa Leo", + "Paul Dano" + ], + "genres": [ + "Crime", + "Thriller" + ] + }, + { + "title": "Project 2x1", + "year": 2013, + "cast": [ + "Covers the lives of Judaism and West Indian residents in", + "Brooklyn", + "." + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Proxy", + "year": 2013, + "cast": [ + "Alexia Rasmussen", + "Joe Swanberg", + "Alexa Havins", + "Kristina Klebe", + "Jim Dougherty" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Punk Singer", + "year": 2013, + "cast": [ + "Follows a girl band's rise into stardom." + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Purge", + "year": 2013, + "cast": [ + "Ethan Hawke", + "Lena Headey", + "Max Burkholder", + "Tony Oller", + "Edwin Hodge", + "Rhys Wakefield", + "Adelaide Kane", + "Arija Bareikis", + "Chris Mulkey", + "Karen Strassman" + ], + "genres": [ + "Science Fiction", + "Thriller" + ] + }, + { + "title": "Rapture-Palooza", + "year": 2013, + "cast": [ + "Craig Robinson", + "Anna Kendrick", + "John Francis Daley", + "Ken Jeong" + ], + "genres": [ + "Fantasy", + "Comedy" + ] + }, + { + "title": "The Red Robin", + "year": 2013, + "cast": [ + "Judd Hirsch", + "C. S. Lee", + "Ryan O'Nan", + "Joseph Lyle Taylor" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "RED 2", + "year": 2013, + "cast": [ + "Bruce Willis", + "John Malkovich", + "Mary-Louise Parker", + "Catherine Zeta-Jones", + "Anthony Hopkins", + "Helen Mirren" + ], + "genres": [ + "Action", + "Comedy" + ] + }, + { + "title": "A Resurrection", + "year": 2013, + "cast": [ + "Devon Sawa", + "Mischa Barton", + "Michael Clarke Duncan", + "Stuart Stone" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Riddick", + "year": 2013, + "cast": [ + "Vin Diesel", + "Jordi Mollà", + "Matt Nable", + "Katee Sackhoff", + "Dave Bautista", + "Bokeem Woodbine", + "Raoul Trujillo", + "Karl Urban" + ], + "genres": [ + "Action", + "Science Fiction" + ] + }, + { + "title": "R.I.P.D.", + "year": 2013, + "cast": [ + "Jeff Bridges", + "Ryan Reynolds", + "Kevin Bacon", + "Mary-Louise Parker", + "Stephanie Szostak" + ], + "genres": [ + "Supernatural" + ] + }, + { + "title": "Roadside", + "year": 2013, + "cast": [ + "Ace Marrero", + "Erin Stegeman", + "Katie Stegeman" + ], + "genres": [ + "Mystery", + "Drama" + ] + }, + { + "title": "Robosapien: Rebooted", + "year": 2013, + "cast": [ + "Bobby Coleman", + "Holliston Coleman", + "Penelope Ann Miller", + "Joaquim de Almeida" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Robotech: Love Live Alive", + "year": 2013, + "cast": [ + "Frank Catalano", + "Cam Clarke", + "Richard Epcar", + "Barbara Goodson", + "Alexandra Kenworthy" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Runner Runner", + "year": 2013, + "cast": [ + "Justin Timberlake", + "Gemma Arterton", + "Anthony Mackie", + "Ben Affleck", + "David Costabile", + "Sam Palladio", + "Oliver Cooper" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Safe Haven", + "year": 2013, + "cast": [ + "Josh Duhamel", + "Julianne Hough", + "Cobie Smulders", + "David Lyons" + ], + "genres": [ + "Romance", + "Thriller" + ] + }, + { + "title": "Salinger", + "year": 2013, + "cast": [ + "About the reclusive writer", + "J. D. Salinger", + "." + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Saratov Approach", + "year": 2013, + "cast": [ + "The Kidnapping of", + "Mormon Missionaries", + "in Russia in 1998." + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Savannah", + "year": 2013, + "cast": [ + "Jim Caviezel", + "Jaimie Alexander", + "Chiwetel Ejiofor", + "Jack McBrayer", + "Sam Shepard" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Saving Lincoln", + "year": 2013, + "cast": [ + "Tom Amandes", + "Lea Coco", + "Penelope Ann Miller", + "Bruce Davison", + "Creed Bratton" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Saving Mr. Banks", + "year": 2013, + "cast": [ + "Emma Thompson", + "Tom Hanks", + "Paul Giamatti", + "Jason Schwartzman", + "Colin Farrell" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "Saving Santa", + "year": 2013, + "cast": [ + "Martin Freeman", + "Tim Curry", + "Noel Clarke", + "Tim Conway", + "Pam Ferris" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Scary Movie 5", + "year": 2013, + "cast": [ + "Ashley Tisdale", + "Simon Rex", + "Erica Ash", + "Katrina Bowden", + "Heather Locklear", + "Terry Crews", + "J. P. Manoux", + "Mac Miller", + "Jerry O'Connell", + "Molly Shannon", + "Snoop Dogg", + "Kate Walsh", + "Katt Williams", + "Sarah Hyland", + "Bow Wow", + "Jasmine Guy", + "Lil Duval", + "Chris Elliott", + "Kendra Wilkinson", + "Audrina Patridge", + "Tyler Posey", + "Mike Tyson", + "Charlie Sheen", + "Lindsay Lohan" + ], + "genres": [ + "Horror", + "Comedy", + "Satire" + ] + }, + { + "title": "Scenic Route", + "year": 2013, + "cast": [ + "Josh Duhamel", + "Dan Fogler" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Scrapper", + "year": 2013, + "cast": [ + "Michael Beach", + "Anna Giles", + "Aidan Gillen" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Season of Miracles", + "year": 2013, + "cast": [ + "John Schneider", + "Grayson Russell", + "Andrew Wilson Williams", + "Nancy Stafford" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sex Boss", + "year": 2013, + "cast": [ + "Curtiss Frisle", + "Graham Skipper", + "Chase Williamson" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "The Secret Life of Walter Mitty", + "year": 2013, + "cast": [ + "Ben Stiller", + "Kristen Wiig", + "Shirley MacLaine", + "Adam Scott", + "Kathryn Hahn", + "Sean Penn" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "Sexy Evil Genius", + "year": 2013, + "cast": [ + "Katee Sackhoff", + "Michelle Trachtenberg", + "Anthony Michael Hall", + "Seth Green" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Shadow People", + "year": 2013, + "cast": [ + "Dallas Roberts", + "Alison Eastwood", + "Anne Dudek", + "Mariah Bonner", + "Mattie Liptak" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "She Wants Me", + "year": 2013, + "cast": [ + "Josh Gad", + "Kristen Ruhlin", + "Charlie Sheen", + "Hilary Duff" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Short Term 12", + "year": 2013, + "cast": [ + "Brie Larson", + "John Gallagher, Jr.", + "Kaitlyn Dever", + "Rami Malek" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Shotgun Wedding", + "year": 2013, + "cast": [ + "Mike Damus", + "Kim Shaw", + "Joel McKinnon Miller" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Side Effects", + "year": 2013, + "cast": [ + "Jude Law", + "Rooney Mara", + "Catherine Zeta-Jones", + "Channing Tatum" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "A Single Shot", + "year": 2013, + "cast": [ + "Sam Rockwell", + "Jeffrey Wright", + "Kelly Reilly", + "Jason Isaacs", + "Joe Anderson", + "Ophelia Lovibond" + ], + "genres": [ + "Drama", + "Thriller" + ] + }, + { + "title": "Skinwalker Ranch", + "year": 2013, + "cast": [ + "Taylor Bateman", + "Steve Berg", + "Michael Black", + "Erin Cahill", + "Carol Call", + "Kyle Davis" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Smurfs 2", + "year": 2013, + "cast": [ + "Neil Patrick Harris", + "Jayma Mays", + "Hank Azaria", + "Tim Gunn", + "Brendan Gleeson", + "Katy Perry", + "Jonathan Winters", + "Alan Cumming", + "Fred Armisen", + "George Lopez", + "Anton Yelchin", + "John Oliver", + "Christina Ricci", + "J. B. Smoove", + "Frank Welker" + ], + "genres": [ + "Adventure", + "Family" + ] + }, + { + "title": "The Smurfs: The Legend of Smurfy Hollow", + "year": 2013, + "cast": [ + "Fred Armisen", + "Melissa Sturm", + "Jack Angel", + "Alan Cumming", + "Anton Yelchin", + "Hank Azaria", + "Tom Kane" + ], + "genres": [ + "Animated", + "Family" + ] + }, + { + "title": "Snitch", + "year": 2013, + "cast": [ + "Dwayne Johnson", + "Barry Pepper", + "Jon Bernthal", + "Michael K. Williams", + "Melina Kanakaredes", + "Nadine Velazquez", + "Rafi Gavron", + "David Harbour", + "Benjamin Bratt", + "Susan Sarandon" + ], + "genres": [ + "Action", + "Drama" + ] + }, + { + "title": "Some Velvet Morning", + "year": 2013, + "cast": [ + "Alice Eve", + "Stanley Tucci" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sound City", + "year": 2013, + "cast": [ + "The history of Los Angeles recording studio", + "Sound City Studios", + "." + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Spectacular Now", + "year": 2013, + "cast": [ + "Miles Teller", + "Shailene Woodley", + "Brie Larson", + "Jennifer Jason Leigh", + "Kyle Chandler" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Spiders 3D", + "year": 2013, + "cast": [ + "Patrick Muldoon", + "Christa Campbell", + "William Hope" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Spirit of the Marathon II", + "year": 2013, + "cast": [ + "Follows seven marathon runners competing at the 2012 Rome Marathon." + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Spring Breakers", + "year": 2013, + "cast": [ + "James Franco", + "Vanessa Hudgens", + "Selena Gomez", + "Ashley Benson", + "Rachel Korine", + "Gucci Mane" + ], + "genres": [ + "Comedy", + "Drama", + "Crime", + "Thriller" + ] + }, + { + "title": "Standing Up", + "year": 2013, + "cast": [ + "Annalise Basso", + "Radha Mitchell", + "Chandler Canterbury" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Stand Up Guys", + "year": 2013, + "cast": [ + "Al Pacino", + "Christopher Walken", + "Alan Arkin", + "Julianna Margulies" + ], + "genres": [ + "Comedy", + "Crime" + ] + }, + { + "title": "Star Trek Into Darkness", + "year": 2013, + "cast": [ + "John Cho", + "Benedict Cumberbatch", + "Alice Eve", + "Bruce Greenwood", + "Simon Pegg", + "Chris Pine", + "Zachary Quinto", + "Zoe Saldana", + "Karl Urban", + "Peter Weller", + "Anton Yelchin" + ], + "genres": [ + "Action", + "Adventure", + "Science Fiction" + ] + }, + { + "title": "The Starving Games", + "year": 2013, + "cast": [ + "Maiara Walsh", + "Brant Daugherty", + "Cody Christian" + ], + "genres": [ + "Satire" + ] + }, + { + "title": "Stoker", + "year": 2013, + "cast": [ + "Mia Wasikowska", + "Matthew Goode", + "Nicole Kidman", + "Dermot Mulroney", + "Jacki Weaver", + "Lucas Till", + "Alden Ehrenreich", + "Phyllis Somerville", + "Judith Godrèche" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Straight A's", + "year": 2013, + "cast": [ + "Anna Paquin", + "Ryan Phillippe", + "Luke Wilson", + "Powers Boothe", + "Tess Harper" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Struck by Lightning", + "year": 2013, + "cast": [ + "Chris Colfer", + "Allison Janney", + "Christina Hendricks", + "Sarah Hyland", + "Carter Jenkins", + "Brad William Henke", + "Rebel Wilson", + "Angela Kinsey", + "Polly Bergen", + "Dermot Mulroney" + ], + "genres": [ + "Comedy", + "Drama", + "Teen" + ] + }, + { + "title": "Submit the Documentary", + "year": 2013, + "cast": [ + "Goes into the world of cyberbullying." + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Sunlight Jr.", + "year": 2013, + "cast": [ + "Norman Reedus", + "Naomi Watts", + "Matt Dillon", + "William Haze" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Super Buddies", + "year": 2013, + "cast": [ + "John Ratzenberger", + "Trey Loney", + "Veronca Diaz-Carranza", + "Jay Brazeau" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Superman: Unbound", + "year": 2013, + "cast": [ + "Matt Bomer", + "Stana Katic", + "John Noble", + "Molly Quinn", + "Diedrich Bader", + "Alexander Gould", + "Frances Conroy" + ], + "genres": [ + "Animated", + "Superhero" + ] + }, + { + "title": "Sweetwater", + "year": 2013, + "cast": [ + "Ed Harris", + "January Jones", + "Jason Isaacs", + "Stephen Root" + ], + "genres": [ + "Thriller", + "Western" + ] + }, + { + "title": "A Teacher", + "year": 2013, + "cast": [ + "Lindsay Burdge", + "Will Brittain", + "Jennifer Prediger", + "Jonny Mars" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Temptation: Confessions of a Marriage Counselor", + "year": 2013, + "cast": [ + "Jurnee Smollett-Bell", + "Lance Gross", + "Vanessa Williams", + "Kim Kardashian", + "Robbie Jones", + "and", + "Brandy Norwood" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "Test", + "year": 2013, + "cast": [ + "Kevin Clarke", + "Kristoffer Cusick", + "Scott Marlowe", + "Matthew Risch", + "Damon K. Sperber" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Texas Chainsaw 3D", + "year": 2013, + "cast": [ + "Alexandra Daddario", + "Dan Yeager", + "Tremaine 'Trey Songz' Neverson", + "Tania Raymonde", + "Keram Malicki-Sánchez", + "Thom Barry", + "Paul Rae", + "and", + "Bill Moseley" + ], + "genres": [ + "Slasher" + ] + }, + { + "title": "The Square", + "year": 2013, + "cast": [ + "Khalid Abdalla", + "Ahmed Hassan", + "Dina Abdullah", + "Magdy Ashour", + "Sherif Boray", + "Aida Elkashef" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "This Is the End", + "year": 2013, + "cast": [ + "James Franco", + "Jonah Hill", + "Seth Rogen", + "Jay Baruchel", + "Danny McBride", + "Craig Robinson", + "Michael Cera", + "Emma Watson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Thor: The Dark World", + "year": 2013, + "cast": [ + "Chris Hemsworth", + "Natalie Portman", + "Tom Hiddleston", + "Stellan Skarsgård", + "Idris Elba", + "Christopher Eccleston", + "Adewale Akinnuoye-Agbaje", + "Kat Dennings", + "Ray Stevenson", + "Zachary Levi", + "Tadanobu Asano", + "Jaimie Alexander", + "Rene Russo", + "and", + "Anthony Hopkins" + ], + "genres": [ + "Superhero" + ] + }, + { + "title": "Turbo", + "year": 2013, + "cast": [ + "Ryan Reynolds", + "Paul Giamatti", + "Michael Peña", + "Luis Guzmán", + "Bill Hader", + "Richard Jenkins", + "Ken Jeong", + "Michelle Rodriguez", + "Maya Rudolph", + "Ben Schwartz", + "Kurtwood Smith", + "Snoop Dogg", + "Samuel L. Jackson" + ], + "genres": [ + "Animated", + "Comedy", + "Family" + ] + }, + { + "title": "Tyler Perry Presents Peeples", + "year": 2013, + "cast": [ + "Craig Robinson", + "Kerry Washington", + "David Alan Grier", + "S. Epatha Merkerson", + "Tyler James Williams", + "Melvin Van Peebles", + "Diahann Carroll" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "UnHung Hero", + "year": 2013, + "cast": [ + "A man travels the world in search to enlarge his penis." + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Unknown Known", + "year": 2013, + "cast": [ + "Features the life of", + "Donald Rumsfeld", + "." + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Unspeakable Act", + "year": 2013, + "cast": [ + "Tallie Medel", + "Sky Hirschkron", + "Aundrea Fares", + "Kati Schwartz", + "Caroline Luft", + "Eleanore Pienta", + "Collin Summers", + "Caitlin Mehner", + "Mike Faist", + "Liz Toonkel", + "Jessica Pinfield", + "Sunita Mani", + "Kate Lyn Sheil", + "Gonzalo Cordova", + "Zelda Knapp" + ], + "genres": [ + "Drama", + "Teen" + ] + }, + { + "title": "Unsupersize Me", + "year": 2013, + "cast": [ + "Centers around healthy eating and exercise." + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Upper Footage", + "year": 2013, + "cast": [ + "Found footage of the death of a female teen." + ], + "genres": [ + "Found Footage" + ] + }, + { + "title": "Upstream Color", + "year": 2013, + "cast": [ + "Amy Seimetz", + "Shane Carruth", + "Andrew Sensenig", + "Thiago Martins" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "V/H/S/2", + "year": 2013, + "cast": [ + "A series of", + "found-footage", + "shorts." + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Vehicle 19", + "year": 2013, + "cast": [ + "Paul Walker", + "Naima McLean", + "Gys de Villiers", + "Leyla Haidarian" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Violet & Daisy", + "year": 2013, + "cast": [ + "Saoirse Ronan", + "Alexis Bledel", + "Marianne Jean-Baptiste", + "Danny Trejo", + "James Gandolfini" + ], + "genres": [ + "Action", + "Comedy", + "Drama" + ] + }, + { + "title": "The Wait", + "year": 2013, + "cast": [ + "Jena Malone", + "Chloë Sevigny", + "Luke Grimes", + "Devon Gearhart" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Walking with Dinosaurs", + "year": 2013, + "cast": [ + "Dinosaurs from the Late Cretaceous period." + ], + "genres": [ + "Documentary", + "Family" + ] + }, + { + "title": "Warm Bodies", + "year": 2013, + "cast": [ + "Nicholas Hoult", + "Teresa Palmer", + "Rob Corddry", + "Dave Franco", + "Analeigh Tipton", + "Cory Hardrict", + "and", + "John Malkovich" + ], + "genres": [ + "Horror", + "Romance", + "Comedy" + ] + }, + { + "title": "The Way, Way Back", + "year": 2013, + "cast": [ + "Steve Carell", + "Toni Collette", + "Allison Janney", + "AnnaSophia Robb", + "Sam Rockwell", + "Maya Rudolph", + "Rob Corddry", + "Amanda Peet", + "Liam James" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "We Are What We Are", + "year": 2013, + "cast": [ + "Bill Sage", + "Julia Garner", + "Ambyr Childers", + "Odeya Rush" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "We Steal Secrets: The Story of WikiLeaks", + "year": 2013, + "cast": [ + "Features the organization", + "WikiLeaks", + "started by", + "Julian Assange" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "We're the Millers", + "year": 2013, + "cast": [ + "Jason Sudeikis", + "Jennifer Aniston", + "Emma Roberts", + "Will Poulter", + "Ed Helms", + "Nick Offerman" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Welcome to the Jungle", + "year": 2013, + "cast": [ + "Jean-Claude Van Damme", + "Adam Brody", + "Rob Huebel", + "Kristopher Van Varenberg" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "White House Down", + "year": 2013, + "cast": [ + "Channing Tatum", + "Jamie Foxx", + "Maggie Gyllenhaal", + "Jason Clarke", + "Richard Jenkins", + "James Woods" + ], + "genres": [ + "Action", + "Comedy" + ] + }, + { + "title": "White Reindeer", + "year": 2013, + "cast": [ + "Anna Margaret Hollyman", + "Laura Lemar-Goldsborough", + "Lydia Hyslop" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Wicked", + "year": 2013, + "cast": [ + "Jess Adams", + "Diana Hooper", + "Devon Werkheiser", + "Justin Deeley", + "Jamie Kaler" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Wolf of Wall Street", + "year": 2013, + "cast": [ + "Leonardo DiCaprio", + "Jonah Hill", + "Margot Robbie", + "Matthew McConaughey", + "Kyle Chandler", + "Rob Reiner", + "Jon Favreau", + "Jean Dujardin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Wolverine", + "year": 2013, + "cast": [ + "Hugh Jackman", + "Tao Okamoto", + "Hiroyuki Sanada", + "Rila Fukushima", + "Famke Janssen", + "Will Yun Lee", + "Svetlana Khodchenkova", + "Haruhiko Yamanouchi", + "Brian Tee" + ], + "genres": [ + "Superhero" + ] + }, + { + "title": "World War Z", + "year": 2013, + "cast": [ + "Brad Pitt", + "Mireille Enos", + "James Badge Dale", + "Matthew Fox" + ], + "genres": [ + "Action", + "Adventure" + ] + }, + { + "title": "Wrong", + "year": 2013, + "cast": [ + "Jack Plotnick", + "Éric Judor", + "Alexis Dziena", + "Steve Little", + "and", + "William Fichtner" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Wrong Cops", + "year": 2013, + "cast": [ + "Mark Burnham", + "Éric Judor", + "Marilyn Manson", + "Steve Little", + "Grace Zabriskie" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "You're Next", + "year": 2013, + "cast": [ + "Sharni Vinson", + "Nicholas Tucci", + "Wendy Glenn", + "A. J. Bowen", + "Joe Swanberg", + "Barbara Crampton", + "Rob Moran" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "You Are Here", + "year": 2013, + "cast": [ + "Owen Wilson", + "Zach Galifianakis", + "Amy Poehler", + "Jenna Fischer", + "Laura Ramsey", + "Lauren Lapkus" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Zero Charisma", + "year": 2013, + "cast": [ + "Sam Eidson", + "Anne Gee Byrd", + "Brock England", + "Garrett Graham", + "Cyndi Williams" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Zombie Hunter", + "year": 2013, + "cast": [ + "Danny Trejo", + "Martin Copping", + "Clare Niederpruem" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Paranormal Activity: The Marked Ones", + "year": 2014, + "cast": [ + "Jorge Diaz", + "Andrew Jacobs", + "Gabrielle Walsh", + "Richard Cabral" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Open Grave", + "year": 2014, + "cast": [ + "Sharlto Copley", + "Joseph Morgan", + "Josie Ho", + "Thomas Kretschmann" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Cold Comes the Night", + "year": 2014, + "cast": [ + "Alice Eve", + "Bryan Cranston", + "Logan Marshall-Green", + "Ursula Parker" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Dumbbells", + "year": 2014, + "cast": [ + "Brian Drolet", + "Hoyt Richards", + "Jaleel White" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Legend of Hercules", + "year": 2014, + "cast": [ + "Kellan Lutz", + "Gaia Weiss", + "Scott Adkins" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Raze", + "year": 2014, + "cast": [ + "Zoë Bell", + "Rachel Nichols", + "Tracie Thoms" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Back in the Day", + "year": 2014, + "cast": [ + "Michael Rosenbaum", + "Morena Baccarin", + "Kristoffer Polaha", + "Isaiah Mustafa" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Devil's Due", + "year": 2014, + "cast": [ + "Zach Gilford", + "Allison Miller", + "Sam Anderson", + "Aimee Carrero" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Jack Ryan: Shadow Recruit", + "year": 2014, + "cast": [ + "Chris Pine", + "Keira Knightley", + "Kevin Costner", + "Kenneth Branagh" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Jamesy Boy", + "year": 2014, + "cast": [ + "Spencer Lofranco", + "Mary-Louise Parker", + "Taissa Farmiga", + "James Woods" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Nut Job", + "year": 2014, + "cast": [ + "Will Arnett", + "Brendan Fraser", + "Gabriel Iglesias", + "Liam Neeson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Ride Along", + "year": 2014, + "cast": [ + "Ice Cube", + "Kevin Hart", + "John Leguizamo", + "Bruce McGill" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Black Water Vampire", + "year": 2014, + "cast": [ + "Danielle Lozeau", + "Andrea Monier", + "Anthony Fanelli", + "Robin Steffen" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "I, Frankenstein", + "year": 2014, + "cast": [ + "Aaron Eckhart", + "Bill Nighy", + "Yvonne Strahovski", + "Miranda Otto" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Mega Shark Versus Mecha Shark", + "year": 2014, + "cast": [ + "Christopher Judge", + "Elisabeth Röhm", + "Debbie Gibson" + ], + "genres": [ + "Disaster" + ] + }, + { + "title": "Labor Day", + "year": 2014, + "cast": [ + "Kate Winslet", + "Josh Brolin", + "Gattlin Griffith", + "Tobey Maguire" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "That Awkward Moment", + "year": 2014, + "cast": [ + "Zac Efron", + "Miles Teller", + "Michael B. Jordan", + "Imogen Poots" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Somewhere Slow", + "year": 2014, + "cast": [ + "Jessalyn Gilsig", + "David Costabile", + "Graham Patrick Martin", + "Wallace Langham" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Android Cop", + "year": 2014, + "cast": [ + "Michael Jai White", + "Kadeem Hardison", + "Randy Wayne", + "Charles S. Dutton" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Monuments Men", + "year": 2014, + "cast": [ + "George Clooney", + "Matt Damon", + "Bill Murray", + "John Goodman" + ], + "genres": [ + "War" + ] + }, + { + "title": "The Outsider", + "year": 2014, + "cast": [ + "Craig Fairbrass", + "James Caan", + "Shannon Elizabeth" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Scorned", + "year": 2014, + "cast": [ + "AnnaLynne McCord", + "Billy Zane", + "Viva Bianca" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "After the Dark", + "year": 2014, + "cast": [ + "Sophie Lowe", + "Rhys Wakefield", + "James D'Arcy" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Nurse 3D", + "year": 2014, + "cast": [ + "Paz de la Huerta", + "Katrina Bowden", + "Corbin Bleu" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Pretty One", + "year": 2014, + "cast": [ + "Zoe Kazan", + "Jake Johnson", + "Ron Livingston", + "Sterling Beaumon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Vampire Academy", + "year": 2014, + "cast": [ + "Zoey Deutch", + "Lucy Fry", + "Danila Kozlovsky" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "About Last Night", + "year": 2014, + "cast": [ + "Kevin Hart", + "Michael Ealy", + "Regina Hall", + "Joy Bryant" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Adult World", + "year": 2014, + "cast": [ + "Emma Roberts", + "John Cusack", + "Evan Peters" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Camp Takota", + "year": 2014, + "cast": [ + "Grace Helbig", + "Hannah Hart", + "Mamrie Hart" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Date and Switch", + "year": 2014, + "cast": [ + "Nicholas Braun", + "Gary Cole", + "Dakota Johnson", + "Hunter Cope" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Endless Love", + "year": 2014, + "cast": [ + "Alex Pettyfer", + "Gabriella Wilde", + "Bruce Greenwood", + "Robert Patrick" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "RoboCop", + "year": 2014, + "cast": [ + "Joel Kinnaman", + "Gary Oldman", + "Michael Keaton", + "Samuel L. Jackson" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Someone Marry Barry", + "year": 2014, + "cast": [ + "Tyler Labine", + "Damon Wayans, Jr.", + "Lucy Punch", + "Hayes MacArthur" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Apocalypse Pompeii", + "year": 2014, + "cast": [ + "Adrian Paul", + "John Rhys-Davies", + "Dylan Vox" + ], + "genres": [ + "Action" + ] + }, + { + "title": "3 Days to Kill", + "year": 2014, + "cast": [ + "Kevin Costner", + "Amber Heard", + "Hailee Steinfeld", + "Connie Nielsen" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Angels in Stardust", + "year": 2014, + "cast": [ + "Alicia Silverstone", + "Billy Burke", + "AJ Michalka" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Barefoot", + "year": 2014, + "cast": [ + "Evan Rachel Wood", + "Scott Speedman", + "Treat Williams", + "J. K. Simmons" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Holy Ghost People", + "year": 2014, + "cast": [ + "Emma Greenwell", + "Joe Egender", + "Cameron Richardson" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Bag Man", + "year": 2014, + "cast": [ + "John Cusack", + "Rebecca Da Costa", + "Robert De Niro", + "Crispin Glover" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Non-Stop", + "year": 2014, + "cast": [ + "Liam Neeson", + "Julianne Moore", + "Scoot McNairy", + "Michelle Dockery" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Repentance", + "year": 2014, + "cast": [ + "Forest Whitaker", + "Anthony Mackie", + "Nicole Ari Parker" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Son of God", + "year": 2014, + "cast": [ + "Diogo Morgado", + "Roma Downey", + "Darwin Shaw" + ], + "genres": [] + }, + { + "title": "300: Rise of an Empire", + "year": 2014, + "cast": [ + "Sullivan Stapleton", + "Eva Green", + "Lena Headey", + "Rodrigo Santoro" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Mr. Peabody & Sherman", + "year": 2014, + "cast": [ + "Ty Burrell", + "Max Charles", + "Ariel Winter", + "Leslie Mann" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Better Living Through Chemistry", + "year": 2014, + "cast": [ + "Sam Rockwell", + "Olivia Wilde", + "Michelle Monaghan", + "Ray Liotta" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Need for Speed", + "year": 2014, + "cast": [ + "Aaron Paul", + "Dominic Cooper", + "Imogen Poots", + "Kid Cudi" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Single Moms Club", + "year": 2014, + "cast": [ + "Nia Long", + "Amy Smart", + "Cocoa Brown", + "Wendi McLendon-Covey" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Veronica Mars", + "year": 2014, + "cast": [ + "Kristen Bell", + "Jason Dohring", + "Krysten Ritter", + "Ryan Hansen" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Cheap Thrills (film)", + "year": 2014, + "cast": [ + "Pat Healy", + "Ethan Embry", + "David Koechner", + "Sara Paxton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Divergent", + "year": 2014, + "cast": [ + "Shailene Woodley", + "Theo James", + "Ashley Judd", + "Jai Courtney", + "Zoë Kravitz" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "God's Not Dead", + "year": 2014, + "cast": [ + "Kevin Sorbo", + "Shane Harper", + "David A. R. White", + "Dean Cain" + ], + "genres": [] + }, + { + "title": "Muppets Most Wanted", + "year": 2014, + "cast": [ + "Ricky Gervais", + "Ty Burrell", + "Steve Whitmire", + "Tina Fey" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "50 to 1", + "year": 2014, + "cast": [ + "Christian Kane", + "William Devane", + "Skeet Ulrich" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Noah", + "year": 2014, + "cast": [ + "Russell Crowe", + "Emma Watson", + "Logan Lerman", + "Anthony Hopkins" + ], + "genres": [] + }, + { + "title": "Sabotage", + "year": 2014, + "cast": [ + "Arnold Schwarzenegger", + "Terrence Howard", + "Sam Worthington", + "Olivia Williams" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Ladies of the House", + "year": 2014, + "cast": [ + "Michelle Sinclair", + "Melodie Sisk", + "Samrat Chakrabarti" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Alien Abduction", + "year": 2014, + "cast": [ + "Katherine Sigismund", + "Corey Eid", + "Riley Polanski", + "Jeff Bowser" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Captain America: The Winter Soldier", + "year": 2014, + "cast": [ + "Chris Evans", + "Scarlett Johansson", + "Sebastian Stan", + "Anthony Mackie" + ], + "genres": [ + "Superhero" + ] + }, + { + "title": "In the Blood", + "year": 2014, + "cast": [ + "Gina Carano", + "Cam Gigandet", + "Danny Trejo" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Jinn", + "year": 2014, + "cast": [ + "Dominic Rains", + "Serinda Swan", + "Ray Park", + "William Atherton" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Draft Day", + "year": 2014, + "cast": [ + "Kevin Costner", + "Jennifer Garner", + "Denis Leary", + "Frank Langella" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Oculus", + "year": 2014, + "cast": [ + "Karen Gillan", + "Brenton Thwaites", + "Rory Cochrane" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Rio 2", + "year": 2014, + "cast": [ + "Jesse Eisenberg", + "Anne Hathaway", + "Jamie Foxx", + "Leslie Mann" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Asian School Girls", + "year": 2014, + "cast": [ + "Sam Aotaki", + "Catherine Hyein Kim", + "Minnie Scarlet", + "Belle Hengsathorn" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Heaven Is for Real", + "year": 2014, + "cast": [ + "Connor Corum", + "Greg Kinnear", + "Kelly Reilly", + "Lance Styles" + ], + "genres": [] + }, + { + "title": "Authors Anonymous", + "year": 2014, + "cast": [ + "Kaley Cuoco", + "Chris Klein", + "Jonathan Banks", + "Tricia Helfer" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "A Haunted House 2", + "year": 2014, + "cast": [ + "Marlon Wayans", + "Jaime Pressly", + "Essence Atkins" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Kid Cannabis", + "year": 2014, + "cast": [ + "Jonathan Daniel Brown", + "Kenny Wormald", + "Amanda Tapping", + "Aaron Yoo" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Transcendence", + "year": 2014, + "cast": [ + "Johnny Depp", + "Morgan Freeman", + "Rebecca Hall" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "13 Sins", + "year": 2014, + "cast": [ + "Devon Graye", + "Mark Webber", + "Ron Perlman" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Brick Mansions", + "year": 2014, + "cast": [ + "Paul Walker", + "David Belle", + "RZA", + "Catalina Denis" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Other Woman", + "year": 2014, + "cast": [ + "Cameron Diaz", + "Leslie Mann", + "Kate Upton", + "Nicki Minaj" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Walking with the Enemy", + "year": 2014, + "cast": [ + "Jonas Armstrong", + "Ben Kingsley", + "Hannah Tointon", + "Simon Kunz" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Amazing Spider-Man 2", + "year": 2014, + "cast": [ + "Andrew Garfield", + "Emma Stone", + "Jamie Foxx", + "Dane DeHaan" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Bad Johnson", + "year": 2014, + "cast": [ + "Cam Gigandet", + "Nick Thune", + "Jamie Chung", + "Katherine Cunningham" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Decoding Annie Parker", + "year": 2014, + "cast": [ + "Samantha Morton", + "Helen Hunt", + "Aaron Paul" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Walk of Shame", + "year": 2014, + "cast": [ + "Elizabeth Banks", + "James Marsden", + "Gillian Jacobs", + "Oliver Hudson" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Devil's Knot", + "year": 2014, + "cast": [ + "Colin Firth", + "Reese Witherspoon", + "Kevin Durand", + "Dane DeHaan" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "God's Pocket", + "year": 2014, + "cast": [ + "Philip Seymour Hoffman", + "Richard Jenkins", + "Christina Hendricks", + "Caleb Landry Jones" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "'Moms' Night Out", + "year": 2014, + "cast": [ + "Sarah Drew", + "Sean Astin", + "Patricia Heaton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Neighbors", + "year": 2014, + "cast": [ + "Seth Rogen", + "Zac Efron", + "Rose Byrne", + "Dave Franco" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Stage Fright", + "year": 2014, + "cast": [ + "Allie MacDonald", + "Minnie Driver", + "Meat Loaf", + "Brandon Uranowitz" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Godzilla", + "year": 2014, + "cast": [ + "Aaron Taylor-Johnson", + "Ken Watanabe", + "Elizabeth Olsen", + "Sally Hawkins" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Million Dollar Arm", + "year": 2014, + "cast": [ + "Jon Hamm", + "Aasif Mandvi", + "Madhur Mittal", + "Lake Bell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Angriest Man in Brooklyn", + "year": 2014, + "cast": [ + "Peter Dinklage", + "Robin Williams", + "Mila Kunis", + "James Earl Jones" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Blended", + "year": 2014, + "cast": [ + "Adam Sandler", + "Drew Barrymore", + "Bella Thorne", + "Emma Fuhrmann" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Cold in July", + "year": 2014, + "cast": [ + "Michael C. Hall", + "Sam Shepard", + "Don Johnson", + "Vinessa Shaw" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "X-Men: Days of Future Past", + "year": 2014, + "cast": [ + "Hugh Jackman", + "James McAvoy", + "Michael Fassbender", + "Halle Berry" + ], + "genres": [ + "Superhero" + ] + }, + { + "title": "Maleficent", + "year": 2014, + "cast": [ + "Angelina Jolie", + "Elle Fanning", + "Sharlto Copley", + "Sam Riley" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "A Million Ways to Die in the West", + "year": 2014, + "cast": [ + "Seth MacFarlane", + "Charlize Theron", + "Amanda Seyfried", + "Neil Patrick Harris" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Edge of Tomorrow", + "year": 2014, + "cast": [ + "Tom Cruise", + "Emily Blunt", + "Bill Paxton" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Fault in Our Stars", + "year": 2014, + "cast": [ + "Shailene Woodley", + "Ansel Elgort", + "Nat Wolff", + "Laura Dern" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Ping Pong Summer", + "year": 2014, + "cast": [ + "Susan Sarandon", + "John Hannah", + "Lea Thompson", + "Amy Sedaris" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "22 Jump Street", + "year": 2014, + "cast": [ + "Channing Tatum", + "Jonah Hill", + "Ice Cube", + "Peter Stormare", + "Dave Franco" + ], + "genres": [ + "Action", + "Comedy" + ] + }, + { + "title": "Hellion", + "year": 2014, + "cast": [ + "Aaron Paul", + "Juliette Lewis", + "Josh Wiggins", + "Deke Garner" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "How to Train Your Dragon 2", + "year": 2014, + "cast": [ + "Jay Baruchel", + "Cate Blanchett", + "Gerard Butler", + "Jonah Hill" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Lullaby", + "year": 2014, + "cast": [ + "Amy Adams", + "Garrett Hedlund", + "Terrence Howard" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Murder 101", + "year": 2014, + "cast": [ + "Tom Sizemore", + "Paige LaPierre", + "Randy Irwin", + "Jamison Haase" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Obvious Child", + "year": 2014, + "cast": [ + "Jenny Slate", + "Jake Lacy", + "Gaby Hoffmann", + "David Cross" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "The Signal", + "year": 2014, + "cast": [ + "Brenton Thwaites", + "Laurence Fishburne", + "Olivia Cooke", + "Beau Knapp" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Jersey Boys", + "year": 2014, + "cast": [ + "John Lloyd Young", + "Erich Bergen", + "Vincent Piazza", + "Christopher Walken" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Think Like a Man Too", + "year": 2014, + "cast": [ + "Michael Ealy", + "Jerry Ferrara", + "Meagan Good", + "Regina Hall" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Rebound", + "year": 2014, + "cast": [ + "Kevin Bulla", + "Ashley James", + "Dan Sutter" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "America: Imagine the World Without Her", + "year": 2014, + "cast": [ + "Don Taylor", + "Michelle Swink", + "Dinesh D'Souza", + "Josh Bonzie" + ], + "genres": [ + "Political", + "Documentary" + ] + }, + { + "title": "They Came Together", + "year": 2014, + "cast": [ + "Paul Rudd", + "Amy Poehler", + "Cobie Smulders", + "Christopher Meloni" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Transformers: Age of Extinction", + "year": 2014, + "cast": [ + "Mark Wahlberg", + "Stanley Tucci", + "Kelsey Grammer", + "Nicola Peltz" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Deliver Us from Evil", + "year": 2014, + "cast": [ + "Eric Bana", + "Édgar Ramírez", + "Olivia Munn", + "Sean Harris" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Earth to Echo", + "year": 2014, + "cast": [ + "Teo Halm", + "Reese Hartwig", + "Jason Gray-Stanford" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "School Dance", + "year": 2014, + "cast": [ + "Bobb'e J. Thompson", + "Mike Epps", + "Luenell", + "Wilmer Valderrama" + ], + "genres": [ + "Musical" + ] + }, + { + "title": "Tammy", + "year": 2014, + "cast": [ + "Melissa McCarthy", + "Susan Sarandon", + "Gary Cole", + "Mark Duplass" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Boyhood", + "year": 2014, + "cast": [ + "Patricia Arquette", + "Ellar Coltrane", + "Lorelei Linklater", + "Ethan Hawke" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dawn of the Planet of the Apes", + "year": 2014, + "cast": [ + "Andy Serkis", + "Jason Clarke", + "Toby Kebbell", + "Gary Oldman", + "Kodi Smit-McPhee" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Rage", + "year": 2014, + "cast": [ + "Nicolas Cage", + "Peter Stormare", + "Danny Glover", + "Max Ryan" + ], + "genres": [ + "Crime", + "Thriller" + ] + }, + { + "title": "Road to Paloma", + "year": 2014, + "cast": [ + "Jason Momoa", + "Lisa Bonet", + "Michael Raymond-James", + "Wes Studi" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "I Origins", + "year": 2014, + "cast": [ + "Michael Pitt", + "Brit Marling", + "Astrid Berges-Frisbey", + "Steven Yeun" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Persecuted", + "year": 2014, + "cast": [ + "James Remar", + "Bruce Davison", + "Dean Stockwell", + "Raoul Trujillo" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Planes: Fire & Rescue", + "year": 2014, + "cast": [ + "Dane Cook", + "Stacy Keach", + "Brad Garrett", + "Danny Mann" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "The Purge: Anarchy", + "year": 2014, + "cast": [ + "Frank Grillo", + "Carmen Ejogo", + "Zach Gilford", + "Kiele Sanchez" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Sex Tape", + "year": 2014, + "cast": [ + "Cameron Diaz", + "Jason Segel", + "Rob Corddry", + "Rob Lowe" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Tiger Orange", + "year": 2014, + "cast": [ + "Mark Strano", + "Frankie Valenti", + "Gregory Marcel" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Wish I Was Here", + "year": 2014, + "cast": [ + "Zach Braff", + "Kate Hudson", + "Joey King", + "Josh Gad" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "And So It Goes", + "year": 2014, + "cast": [ + "Michael Douglas", + "Diane Keaton", + "Sterling Jernis", + "Annie Parisse" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Happy Christmas", + "year": 2014, + "cast": [ + "Anna Kendrick", + "Lena Dunham", + "Melanie Lynskey" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hercules", + "year": 2014, + "cast": [ + "Dwayne Johnson", + "Ian McShane", + "Rufus Sewell", + "Joseph Fiennes" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Magic in the Moonlight", + "year": 2014, + "cast": [ + "Colin Firth", + "Emma Stone", + "Hamish Linklater", + "Jacki Weaver" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "My Man Is a Loser", + "year": 2014, + "cast": [ + "John Stamos", + "Michael Rapaport", + "Tika Sumpter" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Get on Up", + "year": 2014, + "cast": [ + "Chadwick Boseman", + "Nelsan Ellis", + "Dan Aykroyd", + "Octavia Spencer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Guardians of the Galaxy", + "year": 2014, + "cast": [ + "Vin Diesel", + "Dave Bautista", + "Zoe Saldana", + "Chris Pratt", + "Bradley Cooper" + ], + "genres": [ + "Superhero" + ] + }, + { + "title": "Mercenaries", + "year": 2014, + "cast": [ + "Brigitte Nielsen", + "Tim Abell", + "Cynthia Rothrock", + "Kristanna Loken" + ], + "genres": [ + "Action" + ] + }, + { + "title": "4 Minute Mile", + "year": 2014, + "cast": [ + "Analeigh Tipton", + "Cam Gigandet", + "Kim Basinger", + "Kelly Blatz" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Hundred-Foot Journey", + "year": 2014, + "cast": [ + "Helen Mirren", + "Om Puri", + "Manish Dayal", + "Charlotte Le Bon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Into the Storm", + "year": 2014, + "cast": [ + "Richard Armitage", + "Sarah Wayne Callies", + "Nathan Kress", + "Alycia Debnam-Carey" + ], + "genres": [ + "Disaster" + ] + }, + { + "title": "Step Up: All In", + "year": 2014, + "cast": [ + "Ryan Guzman", + "Briana Evigan", + "Misha Gabriel", + "Alyson Stoner" + ], + "genres": [ + "Dance" + ] + }, + { + "title": "Teenage Mutant Nina Turtles", + "year": 2014, + "cast": [ + "Megan Fox", + "Alan Ritchson", + "Will Arnett", + "Noel Fisher" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Let's Be Cops", + "year": 2014, + "cast": [ + "Damon Wayans, Jr.", + "Jake Johnson", + "Nina Dobrev", + "Rob Riggle" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Expendables 3", + "year": 2014, + "cast": [ + "Sylvester Stallone", + "Jason Statham", + "Antonio Banderas", + "Arnold Schwarzenegger" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Giver", + "year": 2014, + "cast": [ + "Jeff Bridges", + "Meryl Streep", + "Brenton Thwaites", + "Katie Holmes" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Life After Beth", + "year": 2014, + "cast": [ + "Aubrey Plaza", + "Dane DeHaan", + "Anna Kendrick", + "Molly Shannon" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The One I Love", + "year": 2014, + "cast": [ + "Mark Duplass", + "Ted Danson", + "Elisabeth Moss" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "If I Stay", + "year": 2014, + "cast": [ + "Chloë Grace Moretz", + "Mireille Enos", + "Jamie Blackley", + "Joshua Leonard" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Leprechaun: Origins", + "year": 2014, + "cast": [ + "Dylan Postl", + "Stephanie Bennett", + "Bruce Blain", + "Adam Boys" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Love Is Strange", + "year": 2014, + "cast": [ + "John Lithgow", + "Alfred Molina", + "Marisa Tomei", + "Charlie Tahan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Prince", + "year": 2014, + "cast": [ + "Bruce Willis", + "John Cusack", + "50 Cent", + "Jason Patric" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Sin City: A Dame to Kill For", + "year": 2014, + "cast": [ + "Mickey Rourke", + "Jessica Alba", + "Josh Brolin", + "Bruce Willis" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "As Above, So Below", + "year": 2014, + "cast": [ + "Perdita Weeks", + "Ben Feldman", + "Edwin Hodge", + "François Civil" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Cake", + "year": 2014, + "cast": [ + "Jennifer Aniston", + "Adriana Barraza", + "Sam Worthington", + "Anna Kendrick" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Atlas Shrugged: Part III", + "year": 2014, + "cast": [ + "Laura Regan", + "Kristoffer Polaha", + "Joaquim de Almeida", + "Eric Allan Kramer", + "Rob Morrow" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Dolphin Tale 2", + "year": 2014, + "cast": [ + "Harry Connick, Jr.", + "Ashley Judd", + "Nathan Gamble", + "Kris Kristofferson", + "Morgan Freeman" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Honeymoon", + "year": 2014, + "cast": [ + "Rose Leslie", + "Harry Tread", + "Ben Huber", + "Hanna Brown" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "No Good Deed", + "year": 2014, + "cast": [ + "Idris Elba", + "Taraji P. Henson", + "Henry Simmons", + "Wilbur Fitzgerald" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Guest", + "year": 2014, + "cast": [ + "Dan Stevens", + "Maika Monroe", + "Brendan Meyer", + "Chase Williamson" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "A Walk Among the Tombstones", + "year": 2014, + "cast": [ + "Liam Neeson", + "Dan Stevens", + "Boyd Holbrook" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Maze Runner", + "year": 2014, + "cast": [ + "Dylan O'Brien", + "Kaya Scodelario", + "Thomas Brodie-Sangster" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Scribbler", + "year": 2014, + "cast": [ + "Katie Cassidy", + "Garret Dillahunt", + "Michelle Trachtenberg" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Skeleton Twins", + "year": 2014, + "cast": [ + "Kristen Wiig", + "Bill Hader", + "Luke Wilson", + "Ty Burrell" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "This Is Where I Leave You", + "year": 2014, + "cast": [ + "Jason Bateman", + "Tina Fey", + "Adam Driver", + "Rose Byrne" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Tusk", + "year": 2014, + "cast": [ + "Michael Parks", + "Justin Long", + "Haley Joel Osment", + "Johnny Depp" + ], + "genres": [ + "Horror", + "Comedy" + ] + }, + { + "title": "The Boxtrolls", + "year": 2014, + "cast": [ + "Elle Fanning", + "Toni Collette", + "Isaac Hempstead-Wright", + "Simon Pegg", + "Nick Frost" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "The Equalizer", + "year": 2014, + "cast": [ + "Denzel Washington", + "Marton Csokas", + "Chloë Grace Moretz", + "Bill Pullman" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Song", + "year": 2014, + "cast": [ + "Alan Powell", + "Ali Faulkner", + "Danny Vinson" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "The Two Faces of January", + "year": 2014, + "cast": [ + "Viggo Mortensen", + "Kirsten Dunst", + "Oscar Isaac" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Annabelle", + "year": 2014, + "cast": [ + "Annabelle Wallis", + "Tony Amendola", + "Ward Horton", + "Alfre Woodard" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Gone Girl", + "year": 2014, + "cast": [ + "Ben Affleck", + "Rosamund Pike", + "Neil Patrick Harris", + "Tyler Perry" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Good Lie", + "year": 2014, + "cast": [ + "Emmanuel Jal", + "Ger Duany", + "Reese Witherspoon", + "Corey Stoll" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Left Behind", + "year": 2014, + "cast": [ + "Nicolas Cage", + "Cassi Thomson", + "Chad Michael Murray" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Last Shift", + "year": 2014, + "cast": [ + "Juliana Harkavy", + "Joshua Mikel", + "Hank Stone" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Addicted", + "year": 2014, + "cast": [ + "Sharon Leal", + "Boris Kodjoe", + "William Levy", + "Tasha Smith" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Alexander and the Terrible, Horrible, No Good, Very Bad Day", + "year": 2014, + "cast": [ + "Steve Carell", + "Jennifer Garner", + "Ed Oxenbould", + "Dylan Minnette" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Dracula Untold", + "year": 2014, + "cast": [ + "Luke Evans", + "Sarah Gadon", + "Dominic Cooper", + "Zach McGowan" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "The Judge", + "year": 2014, + "cast": [ + "Robert Downey, Jr.", + "Robert Duvall", + "Vera Farmiga", + "Billy Bob Thornton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Whiplash", + "year": 2014, + "cast": [ + "Miles Teller", + "Melissa Benoist", + "Austin Stowell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "You're Not You", + "year": 2014, + "cast": [ + "Hilary Swank", + "Emmy Rossum", + "Josh Duhamel", + "Frances Fisher" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Birdman or (The Unexpected Virtue of Ignorance)", + "year": 2014, + "cast": [ + "Michael Keaton", + "Edward Norton", + "Naomi Watts", + "Emma Stone" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Book of Life", + "year": 2014, + "cast": [ + "Channing Tatum", + "Zoe Saldana", + "Diego Luna", + "Ice Cube" + ], + "genres": [ + "Animated", + "Adventure" + ] + }, + { + "title": "Camp X-Ray", + "year": 2014, + "cast": [ + "Kristen Stewart", + "Peyman Moaadi", + "Julia Duffy", + "Lane Garrison" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Czar of Black Hollywood", + "year": 2014, + "cast": [ + "Oscar Micheaux" + ], + "genres": [ + "Biography", + "Documentary" + ] + }, + { + "title": "Dear White People", + "year": 2014, + "cast": [ + "Tyler James Williams", + "Dennis Haysbert", + "Tessa Thompson", + "Kyle Gallner" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Fury", + "year": 2014, + "cast": [ + "Brad Pitt", + "Shia LaBeouf", + "Logan Lerman", + "Michael Peña" + ], + "genres": [ + "War" + ] + }, + { + "title": "Listen Up Philip", + "year": 2014, + "cast": [ + "Jason Schwartzman", + "Elisabeth Moss", + "Jonathan Pryce" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Nightcrawler", + "year": 2014, + "cast": [ + "Jake Gyllenhaal", + "Rene Russo", + "Riz Ahmed", + "Bill Paxton" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Pernicious", + "year": 2014, + "cast": [ + "Ciara Hanna", + "Emily O'Brien", + "Jackie Moore", + "Russell Geoffrey" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Young Ones", + "year": 2014, + "cast": [ + "Kodi Smit-McPhee", + "Elle Fanning", + "Michael Shannon", + "Nicholas Hoult" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Laggies", + "year": 2014, + "cast": [ + "Keira Knightley", + "Chloë Grace Moretz", + "Sam Rockwell", + "Mark Webber" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Ouija", + "year": 2014, + "cast": [ + "Ana Coto", + "Olivia Cooke", + "Daren Kagasoff", + "Bianca A. Santos" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Interstellar", + "year": 2014, + "cast": [ + "Anne Hathaway", + "Matthew McConaughey", + "Jessica Chastain", + "Michael Caine" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "A Merry Friggin' Christmas", + "year": 2014, + "cast": [ + "Robin Williams", + "Joel McHale", + "Clark Duke", + "Oliver Platt" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Better Angels", + "year": 2014, + "cast": [ + "Diane Kruger", + "Brit Marling", + "Wes Bentley" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Big Hero 6", + "year": 2014, + "cast": [ + "Ryan Potter", + "Scott Adsit", + "Jamie Chung", + "Damon Wayans, Jr." + ], + "genres": [ + "Animated", + "Comedy" + ] + }, + { + "title": "Elsa & Fred", + "year": 2014, + "cast": [ + "Shirley MacLaine", + "Christopher Plummer", + "Marcia Gay Harden" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Jessabelle", + "year": 2014, + "cast": [ + "Sarah Snook", + "Mark Webber", + "Joelle Carter", + "Amber Stevens" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Peripheral", + "year": 2014, + "cast": [ + "Randy Frank", + "Lynn Lowry" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Beside Still Waters", + "year": 2014, + "cast": [ + "Ryan Eggold", + "Brett Dalton", + "Beck Bennett" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Beyond the Lights", + "year": 2014, + "cast": [ + "Gugu Mbatha-Raw", + "Minnie Driver", + "Nate Parker", + "Danny Glover" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Dumb and Dumber To", + "year": 2014, + "cast": [ + "Jim Carrey", + "Jeff Daniels", + "Laurie Holden", + "Jennifer Lawrence" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Foxcatcher", + "year": 2014, + "cast": [ + "Steve Carell", + "Channing Tatum", + "Mark Ruffalo", + "Vanessa Redgrave" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Homesman", + "year": 2014, + "cast": [ + "Tommy Lee Jones", + "Hilary Swank", + "Grace Gummer", + "Miranda Otto" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Saving Christmas", + "year": 2014, + "cast": [ + "Kirk Cameron", + "Darren Doane", + "David Shannon", + "Bridgette Ridenour" + ], + "genres": [] + }, + { + "title": "Witching Hour", + "year": 2014, + "cast": [ + "Reanna Roanne", + "Emily Johnson-Erday", + "Patrick Ferrara" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Hunger Games: Mockingjay – Part 1", + "year": 2014, + "cast": [ + "Josh Hutcherson", + "Jennifer Lawrence", + "Liam Hemsworth", + "Donald Sutherland" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Horrible Bosses 2", + "year": 2014, + "cast": [ + "Jason Bateman", + "Charlie Day", + "Jennifer Aniston", + "Jason Sudeikis", + "Jamie Foxx" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Penguins of Madagascar", + "year": 2014, + "cast": [ + "Tom McGrath", + "John DiMaggio", + "Christopher Knights" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Comet", + "year": 2014, + "cast": [ + "Emmy Rossum", + "Justin Long", + "Eric Winter", + "Kayla Servi" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Wild", + "year": 2014, + "cast": [ + "Reese Witherspoon", + "Laura Dern", + "Thomas Sadoski", + "Michiel Huisman" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "Exodus: Gods and Kings", + "year": 2014, + "cast": [ + "Christian Bale", + "Joel Edgerton", + "Aaron Paul", + "John Turturro" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Inherent Vice", + "year": 2014, + "cast": [ + "Joaquin Phoenix", + "Owen Wilson", + "Reese Witherspoon", + "Benicio del Toro" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Color of Time", + "year": 2014, + "cast": [ + "James Franco", + "Henry Hopper", + "Mila Kunis", + "Zach Braff" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Top Five", + "year": 2014, + "cast": [ + "Chris Rock", + "Rosario Dawson", + "Kevin Hart", + "Gabrielle Union" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Goodbye To All That", + "year": 2014, + "cast": [ + "Paul Schneider", + "Melanie Lynskey", + "Anna Camp" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Annie", + "year": 2014, + "cast": [ + "Jamie Foxx", + "Quvenzhané Wallis", + "Rose Byrne", + "Bobby Cannavale" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Night at the Museum: Secret of the Tomb", + "year": 2014, + "cast": [ + "Ben Stiller", + "Robin Williams", + "Owen Wilson", + "Ben Kingsley" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Big Eyes", + "year": 2014, + "cast": [ + "Amy Adams", + "Christoph Waltz", + "Danny Huston", + "Terence Stamp" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Interview", + "year": 2014, + "cast": [ + "James Franco", + "Seth Rogen", + "Lizzy Caplan", + "Randall Park" + ], + "genres": [ + "Action", + "Comedy" + ] + }, + { + "title": "Into the Woods", + "year": 2014, + "cast": [ + "Meryl Streep", + "Emily Blunt", + "James Corden", + "Anna Kendrick" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Unbroken", + "year": 2014, + "cast": [ + "Miyavi", + "Garrett Hedlund", + "Jai Courtney", + "Luke Treadaway" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Woman in Black 2: Angel of Death", + "year": 2015, + "cast": [ + "Phoebe Fox", + "Jeremy Irvine", + "Helen McCrory", + "Adrian Rawlins", + "Ned Dennehy" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Taken 3", + "year": 2015, + "cast": [ + "Liam Neeson", + "Forest Whitaker", + "Famke Janssen", + "Maggie Grace" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Let's Kill Ward's Wife", + "year": 2015, + "cast": [ + "Scott Foley", + "Patrick Wilson", + "Donald Faison", + "James Carpinello" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Match", + "year": 2015, + "cast": [ + "Patrick Stewart", + "Carla Gugino", + "Matthew Lillard", + "Rob Yang" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Blackhat", + "year": 2015, + "cast": [ + "Chris Hemsworth", + "Viola Davis", + "Manny Montana", + "Tang Wei" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Little Accidents", + "year": 2015, + "cast": [ + "Elizabeth Banks", + "Boyd Holbrook", + "Chloë Sevigny", + "Josh Lucas" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Paddington", + "year": 2015, + "cast": [ + "Ben Whishaw", + "Hugh Bonneville", + "Sally Hawkins", + "Madeleine Harris", + "Samuel Joslin", + "Julie Walters", + "Nicole Kidman" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Spare Parts", + "year": 2015, + "cast": [ + "George Lopez", + "Jamie Lee Curtis", + "Carlos PenaVega", + "Esai Morales" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Wedding Ringer", + "year": 2015, + "cast": [ + "Kevin Hart", + "Josh Gad", + "Olivia Thirlby", + "Kaley Cuoco", + "Alan Ritchson" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Vice", + "year": 2015, + "cast": [ + "Thomas Jane", + "Bruce Willis", + "Ambyr Childers", + "Johnathon Schaech" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Veronika Decides to Die", + "year": 2015, + "cast": [ + "Sarah Michelle Gellar", + "Jonathan Tucker", + "Erika Christensen", + "Melissa Leo" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Boy Next Door", + "year": 2015, + "cast": [ + "Jennifer Lopez", + "Ryan Guzman", + "Kristin Chenoweth", + "Hill Harper" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Cake", + "year": 2015, + "cast": [ + "Jennifer Aniston", + "Sam Worthington", + "Anna Kendrick", + "Adriana Barraza" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Humbling", + "year": 2015, + "cast": [ + "Al Pacino", + "Greta Gerwig", + "Kyra Sedgwick", + "Dan Hedaya" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Mortdecai", + "year": 2015, + "cast": [ + "Johnny Depp", + "Gwyneth Paltrow", + "Ewan McGregor", + "Olivia Munn" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Song One", + "year": 2015, + "cast": [ + "Anne Hathaway", + "Mary Steenburgen", + "Crystal Lonneberg", + "Stefano Villabona" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Strange Magic", + "year": 2015, + "cast": [ + "Alan Cumming", + "Evan Rachel Wood", + "Kristin Chenoweth", + "Maya Rudolph" + ], + "genres": [ + "Animated", + "Fantasy" + ] + }, + { + "title": "We'll Never Have Paris", + "year": 2015, + "cast": [ + "Simon Helberg", + "Melanie Lynskey", + "Maggie Grace", + "Zachary Quinto" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Black or White", + "year": 2015, + "cast": [ + "Kevin Costner", + "Octavia Spencer", + "Bill Burr", + "Mpho Koaho" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Loft", + "year": 2015, + "cast": [ + "Karl Urban", + "Wentworth Miller", + "James Marsden" + ], + "genres": [ + "Mystery" + ] + }, + { + "title": "Project Almanac", + "year": 2015, + "cast": [ + "Sofia Black D'Elia", + "Jonny Weston", + "Allen Evangelista", + "Virginia Gardner" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Wild Card", + "year": 2015, + "cast": [ + "Jason Statham", + "Michael Angarano", + "Stanley Tucci", + "Sofia Vergara" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "3 Nights in the Desert", + "year": 2015, + "cast": [ + "Wes Bentley", + "Vincent Piazza", + "Amber Tamblyn" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Enter the Dangerous Mind", + "year": 2015, + "cast": [ + "Jake Hoffman", + "Nikki Reed", + "Scott Bakula", + "Gina Rodriguez" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Jupiter Ascending", + "year": 2015, + "cast": [ + "Channing Tatum", + "Mila Kunis", + "Sean Bean", + "Eddie Redmayne" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Love, Rosie", + "year": 2015, + "cast": [ + "Lily Collins", + "Sam Claflin" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Seventh Son", + "year": 2015, + "cast": [ + "Jeff Bridges", + "Alicia Vikander", + "Ben Barnes", + "Kit Harington" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "The SpongeBob Movie: Sponge Out of Water", + "year": 2015, + "cast": [ + "Antonio Banderas", + "Tom Kenny", + "Clancy Brown", + "Rodger Bumpass" + ], + "genres": [ + "Animated", + "Adventure" + ] + }, + { + "title": "The Voices", + "year": 2015, + "cast": [ + "Ryan Reynolds", + "Anna Kendrick", + "Gemma Arterton", + "Jacki Weaver" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Accidental Love", + "year": 2015, + "cast": [ + "Jessica Biel", + "Catherine Keener", + "James Marsden", + "Tracy Morgan" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Da Sweet Blood of Jesus", + "year": 2015, + "cast": [ + "Felicia Pearson", + "Zaraah Abrahams", + "Elvis Nolasco", + "Steven Hauck" + ], + "genres": [ + "Horror", + "Comedy" + ] + }, + { + "title": "Fifty Shades of Grey", + "year": 2015, + "cast": [ + "Jamie Dornan", + "Dakota Johnson", + "Rita Ora", + "Luke Grimes", + "Marcia Gay Harden" + ], + "genres": [ + "Romance", + "Thriller" + ] + }, + { + "title": "Kingsman: The Secret Service", + "year": 2015, + "cast": [ + "Samuel L. Jackson", + "Colin Firth", + "Taron Egerton", + "Mark Strong" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Last 5 Years", + "year": 2015, + "cast": [ + "Anna Kendrick", + "Jeremy Jordan", + "Natalie Knepp", + "Betsy Wolfe" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Duff", + "year": 2015, + "cast": [ + "Mae Whitman", + "Robbie Amell", + "Bella Thorne", + "Bianca A. Santos" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hot Tub Time Machine 2", + "year": 2015, + "cast": [ + "Craig Robinson", + "Rob Corddry", + "Clark Duke", + "Chevy Chase" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "McFarland, USA", + "year": 2015, + "cast": [ + "Kevin Costner", + "Maria Bello", + "Morgan Saylor", + "Carlos Pratts" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Everly", + "year": 2015, + "cast": [ + "Salma Hayek", + "Akie Kotabe", + "Laura Cepeda", + "Togo Igawa" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Focus", + "year": 2015, + "cast": [ + "Will Smith", + "Margot Robbie", + "Rodrigo Santoro" + ], + "genres": [ + "Romance", + "Comedy", + "Drama" + ] + }, + { + "title": "The Lazarus Effect", + "year": 2015, + "cast": [ + "Mark Duplass", + "Evan Peters", + "Oliva Wilde" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Maps to the Stars", + "year": 2015, + "cast": [ + "Julianne Moore", + "Mia Wasikowska", + "John Cusack", + "Robert Pattinson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Out of the Dark", + "year": 2015, + "cast": [ + "Scott Speedman", + "Stephen Rea", + "Julia Stiles", + "Pixie Davies" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Bad Asses on the Bayou", + "year": 2015, + "cast": [ + "Danny Trejo", + "Danny Glover", + "John Amos", + "Loni Love" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Chappie", + "year": 2015, + "cast": [ + "Sharlto Copley", + "Dev Patel", + "Watkin Tudor Jones", + "Yolandi Visser" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Road Hard", + "year": 2015, + "cast": [ + "Adam Carolla", + "David Koechner", + "Diane Farr", + "Jay Mohr", + "David Alan Grier" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Second Best Exotic Marigold Hotel", + "year": 2015, + "cast": [ + "Judi Dench", + "Maggie Smith", + "Bill Nighy" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Unfinished Business", + "year": 2015, + "cast": [ + "Vince Vaughn", + "Dave Franco", + "Sienna Miller", + "Nick Frost" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Cinderella", + "year": 2015, + "cast": [ + "Lily James", + "Richard Madden", + "Cate Blanchett", + "Helena Bonham Carter", + "Holliday Grainger" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "The Cobbler", + "year": 2015, + "cast": [ + "Adam Sandler", + "Dustin Hoffman", + "Dan Stevens", + "Steve Buscemi" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Cymbeline", + "year": 2015, + "cast": [ + "Ed Harris", + "Milla Jovovich", + "Ethan Hawke", + "John Leguizamo" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Home Sweet Hell", + "year": 2015, + "cast": [ + "Patrick Wilson", + "Katherine Heigl", + "Jordana Brewster", + "Jim Belushi" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "It Follows", + "year": 2015, + "cast": [ + "Maika Monroe", + "Keir Gilchrist", + "Jake Weary", + "Daniel Zovatto" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Muck", + "year": 2015, + "cast": [ + "Kane Hodder", + "Jaclyn Swedberg", + "Lachlan Buchanan", + "Bryce Draper" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Run All Night", + "year": 2015, + "cast": [ + "Liam Neeson", + "Ed Harris", + "Joel Kinnaman", + "Boyd Holbrook" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Danny Collins", + "year": 2015, + "cast": [ + "Al Pacino", + "Jennifer Garner", + "Annette Bening", + "Bobby Cannavale" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Divergent Series: Insurgent", + "year": 2015, + "cast": [ + "Shailene Woodley", + "Theo James", + "Octavia Spencer", + "Naomi Watts" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Do You Believe", + "year": 2015, + "cast": [ + "Ted McGinley", + "Mira Sorvino", + "Lee Majors", + "Sean Astin", + "Brian Bosworth" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Gunman", + "year": 2015, + "cast": [ + "Sean Penn", + "Idris Elba", + "Peter Franzén", + "Mark Schardan" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Tracers", + "year": 2015, + "cast": [ + "Taylor Lautner", + "Marie Avgeropoulos", + "Adam Rayner", + "Rafi Gavron" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Walking Deceased", + "year": 2015, + "cast": [ + "Dave Sheridan", + "Tim Ogletree", + "Joey Oglesby", + "Sophie Taylor" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Get Hard", + "year": 2015, + "cast": [ + "Will Ferrell", + "Kevin Hart", + "Alison Brie", + "Edwina Findley" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Home", + "year": 2015, + "cast": [ + "Rihanna", + "Jim Parsons", + "Jennifer Lopez", + "Steve Martin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Serena", + "year": 2015, + "cast": [ + "Bradley Cooper", + "Jennifer Lawrence", + "Rhys Ifans", + "Sean Harris" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "While We're Young", + "year": 2015, + "cast": [ + "Ben Stiller", + "Naomi Watts", + "Amanda Seyfried", + "Adam Driver" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Furious 7", + "year": 2015, + "cast": [ + "Vin Diesel", + "Paul Walker", + "Dwayne Johnson", + "Michelle Rodriguez", + "Tyrese Gibson" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Woman in Gold", + "year": 2015, + "cast": [ + "Helen Mirren", + "Ryan Reynolds", + "Daniel Brühl", + "Katie Holmes", + "Max Irons" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Ex Machina", + "year": 2015, + "cast": [ + "Domhnall Gleeson", + "Alicia Vikander", + "Oscar Isaac" + ], + "genres": [ + "Science Fiction", + "Thriller" + ] + }, + { + "title": "The Longest Ride", + "year": 2015, + "cast": [ + "Scott Eastwood", + "Britt Robertson", + "Alan Alda", + "Oona Chaplin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Lost River", + "year": 2015, + "cast": [ + "Christina Hendricks", + "Eva Mendes", + "Saoirse Ronan" + ], + "genres": [ + "Fantasy", + "Thriller" + ] + }, + { + "title": "1915", + "year": 2015, + "cast": [ + "Simon Abkarian", + "Angela Sarafyan", + "Samuel Page", + "Nikolai Kinski" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Alex of Venice", + "year": 2015, + "cast": [ + "Mary Elizabeth Winstead", + "Don Johnson", + "Chris Messina", + "Derek Luke" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Beyond the Reach", + "year": 2015, + "cast": [ + "Michael Douglas", + "Jeremy Irvine", + "Ronny Cox" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Child 44", + "year": 2015, + "cast": [ + "Tom Hardy", + "Noomi Rapace", + "Joel Kinnaman", + "Gary Oldman" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Monkey Kingdom", + "year": 2015, + "cast": [ + "Tina Fey" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Paul Blart: Mall Cop 2", + "year": 2015, + "cast": [ + "Kevin James", + "Neal McDonough", + "Daniella Alonso", + "David Henrie" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Road Within", + "year": 2015, + "cast": [ + "Robert Sheehan", + "Dev Patel", + "Zoë Kravitz" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "True Story", + "year": 2015, + "cast": [ + "Jonah Hill", + "James Franco", + "Felicity Jones", + "Gretchen Mol" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Unfriended", + "year": 2015, + "cast": [ + "Shelley Hennig", + "Moses Jacob", + "Renee Olstead", + "Will Peltz" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Adult Beginners", + "year": 2015, + "cast": [ + "Nick Kroll", + "Rose Byrne", + "Bobby Cannavale", + "Joel McHale" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Blackbird", + "year": 2015, + "cast": [ + "Julian Walker", + "Mo'Nique", + "Isaiah Washington", + "Kevin Alessee" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Brotherly Love", + "year": 2015, + "cast": [ + "Keke Palmer", + "Cory Hardrict", + "Quincy", + "Romeo Miller" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Just Before I Go", + "year": 2015, + "cast": [ + "Seann William Scott", + "Olivia Thirlby", + "Garret Dillahunt", + "Kyle Gallner" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Little Boy", + "year": 2015, + "cast": [ + "David Henrie", + "Kevin James", + "Emily Watson", + "Ted Levine" + ], + "genres": [ + "War" + ] + }, + { + "title": "The Age of Adaline", + "year": 2015, + "cast": [ + "Blake Lively", + "Harrison Ford", + "Michiel Huisman" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Avengers: Age of Ultron", + "year": 2015, + "cast": [ + "Robert Downey, Jr.", + "Chris Evans", + "Chris Hemsworth", + "Mark Ruffalo" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Far from the Madding Crowd", + "year": 2015, + "cast": [ + "Carey Mulligan", + "Matthias Schoenaerts", + "Michael Sheen", + "Tom Sturridge" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The D Train", + "year": 2015, + "cast": [ + "Jack Black", + "James Marsden", + "Kathryn Hahn" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Hot Pursuit", + "year": 2015, + "cast": [ + "Reese Witherspoon", + "Sofía Vergara" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Maggie", + "year": 2015, + "cast": [ + "Abigail Breslin", + "Arnold Schwarzenegger", + "Denise Williamson" + ], + "genres": [ + "Drama", + "Horror", + "Thriller" + ] + }, + { + "title": "Mad Max: Fury Road", + "year": 2015, + "cast": [ + "Tom Hardy", + "Charlize Theron", + "Nicholas Hoult", + "Hugh Keays-Byrne", + "Josh Helman", + "Nathan Jones", + "Zoë Kravitz", + "Rosie Huntington-Whiteley", + "Riley Keough" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Pitch Perfect 2", + "year": 2015, + "cast": [ + "Anna Kendrick", + "Skylar Astin", + "Rebel Wilson", + "Brittany Snow", + "Ester Dean" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Poltergeist", + "year": 2015, + "cast": [ + "Sam Rockwell", + "Jared Harris", + "Rosemarie DeWitt", + "Saxon Sharbino" + ], + "genres": [ + "Horror", + "Thriller" + ] + }, + { + "title": "Tomorrowland", + "year": 2015, + "cast": [ + "George Clooney", + "Hugh Laurie", + "Britt Robertson", + "Raffey Cassidy", + "Thomas Robinson" + ], + "genres": [ + "Science Fiction", + "Mystery" + ] + }, + { + "title": "When Marnie Was There", + "year": 2015, + "cast": [ + "Hailee Steinfeld", + "Kiernan Shipka" + ], + "genres": [] + }, + { + "title": "Aloha", + "year": 2015, + "cast": [ + "Bradley Cooper", + "Emma Stone", + "Rachel McAdams", + "John Krasinski" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "San Andreas", + "year": 2015, + "cast": [ + "Dwayne Johnson", + "Carla Gugino", + "Alexandra Daddario" + ], + "genres": [ + "Disaster" + ] + }, + { + "title": "Spy", + "year": 2015, + "cast": [ + "Melissa McCarthy", + "Jason Statham", + "Rose Byrne", + "Jude Law" + ], + "genres": [ + "Action", + "Comedy" + ] + }, + { + "title": "Entourage", + "year": 2015, + "cast": [ + "Kevin Connolly", + "Adrian Grenier", + "Kevin Dillon", + "Jerry Ferrara", + "Jeremy Piven" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Insidious: Chapter 3", + "year": 2015, + "cast": [ + "Lin Shaye", + "Dermot Mulroney", + "Stefanie Scott" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Love & Mercy", + "year": 2015, + "cast": [ + "John Cusack", + "Paul Dano", + "Elizabeth Banks" + ], + "genres": [ + "Biography", + "Drama" + ] + }, + { + "title": "Jurassic World", + "year": 2015, + "cast": [ + "Vincent D'Onofrio", + "Judy Greer", + "Chris Pratt" + ], + "genres": [ + "Adventure", + "Science Fiction" + ] + }, + { + "title": "Me and Earl and the Dying Girl", + "year": 2015, + "cast": [ + "Thomas Mann", + "Olivia Cooke", + "RJ Cyler" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Dope", + "year": 2015, + "cast": [ + "Shameik Moore", + "Tony Revolori", + "Kiersey Clemons" + ], + "genres": [ + "Crime", + "Comedy", + "Drama" + ] + }, + { + "title": "Inside Out", + "year": 2015, + "cast": [ + "Amy Poehler", + "Lewis Black", + "Mindy Kaling", + "Bill Hader", + "Phyllis Smith" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Max", + "year": 2015, + "cast": [ + "Josh Wiggins", + "Dejon LaQuake", + "Thomas Haden Church" + ], + "genres": [ + "Adventure" + ] + }, + { + "title": "Ted 2", + "year": 2015, + "cast": [ + "Mark Wahlberg", + "Seth MacFarlane", + "Amanda Seyfried", + "Morgan Freeman" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Terminator Genisys", + "year": 2015, + "cast": [ + "Arnold Schwarzenegger", + "Emilia Clarke", + "Jai Courtney" + ], + "genres": [ + "Action", + "Adventure", + "Science Fiction" + ] + }, + { + "title": "Minions", + "year": 2015, + "cast": [ + "Sandra Bullock", + "Jon Hamm", + "Michael Keaton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Ant-Man", + "year": 2015, + "cast": [ + "Paul Rudd", + "Michael Douglas", + "Evangeline Lilly", + "Corey Stoll" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Trainwreck", + "year": 2015, + "cast": [ + "Amy Schumer", + "Tilda Swinton", + "Bill Hader", + "Daniel Radcliffe", + "Colin Quinn" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Pixels", + "year": 2015, + "cast": [ + "Adam Sandler", + "Kevin James", + "Peter Dinklage", + "Josh Gad" + ], + "genres": [ + "Animated", + "Comedy" + ] + }, + { + "title": "The Vatican Tapes", + "year": 2015, + "cast": [ + "Kathleen Robertson", + "Michael Peña", + "Djimon Hounsou", + "Dougray Scott" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "She's Funny That Way", + "year": 2015, + "cast": [ + "Owen Wilson", + "Imogen Poots", + "Kathryn Hahn", + "Jennifer Aniston" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "No Escape", + "year": 2015, + "cast": [ + "Lake Bell", + "Pierce Brosnan", + "Owen Wilson", + "Sterling Jerins" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Agent 47", + "year": 2015, + "cast": [ + "Rupert Friend", + "Zachary Quinto", + "Hannah Ware", + "Thomas Kretschmann" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Black Mass", + "year": 2015, + "cast": [ + "Johnny Depp", + "Benedict Cumberbatch", + "Joel Edgerton", + "Sienna Miller" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Everest", + "year": 2015, + "cast": [ + "Jake Gyllenhaal", + "Jason Clarke", + "Sam Worthington", + "Josh Brolin", + "John Hawkes" + ], + "genres": [ + "Adventure", + "Thriller" + ] + }, + { + "title": "War Pigs", + "year": 2015, + "cast": [ + "Luke Goss", + "Dolph Lundgren", + "Mickey Rourke" + ], + "genres": [ + "Action", + "War" + ] + }, + { + "title": "The Martian", + "year": 2015, + "cast": [ + "Matt Damon" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "Room (2015 film)", + "year": 2015, + "cast": [ + "Jacob Tremblay", + "Joan Allen", + "William H. Macy", + "Sean Bridgers" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Crimson Peak", + "year": 2015, + "cast": [ + "Charlie Hunnam", + "Tom Hiddleston", + "Jessica Chastain", + "Burn Gorman" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Peanuts Movie", + "year": 2015, + "cast": [ + "Bill Melendez", + "Noah Schnapp", + "Hadley Belle Miller", + "Mariel Sheets" + ], + "genres": [ + "Adventure", + "Comedy" + ] + }, + { + "title": "The Good Dinosaur", + "year": 2015, + "cast": [ + "Lucas Neff", + "John Lithgow", + "Neil Patrick Harris", + "Judy Greer" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Victor Frankenstein", + "year": 2015, + "cast": [ + "James McAvoy", + "Daniel Radcliffe", + "Jessica Brown Findlay", + "Mark Gatiss" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "In the Heart of the Sea", + "year": 2015, + "cast": [ + "Chris Hemsworth", + "Benjamin Walker", + "Cillian Murphy", + "Ben Whishaw" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Concussion", + "year": 2015, + "cast": [ + "Will Smith", + "Albert Brooks", + "Alec Baldwin", + "Gugu Mbatha-Raw" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Daddy's Home", + "year": 2015, + "cast": [ + "Mark Wahlberg", + "Will Ferrell", + "Linda Cardellini" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Joy", + "year": 2015, + "cast": [ + "Jennifer Lawrence", + "Robert De Niro", + "Édgar Ramírez" + ], + "genres": [ + "Biography", + "Comedy", + "Drama" + ] + }, + { + "title": "Point Break", + "year": 2015, + "cast": [ + "Edgar Ramirez", + "Luke Bracey", + "Ray Winstone" + ], + "genres": [ + "Action", + "Thriller" + ] + }, + { + "title": "The Revenant", + "year": 2015, + "cast": [ + "Leonardo DiCaprio", + "Tom Hardy" + ], + "genres": [ + "Western", + "Thriller" + ] + }, + { + "title": "The Forest", + "year": 2016, + "cast": [ + "Natalie Dormer", + "Taylor Kitsch" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Anesthesia", + "year": 2016, + "cast": [ + "Sam Waterston", + "Tim Blake Nelson", + "Kristen Stewart" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Lamb", + "year": 2016, + "cast": [ + "Ross Partridge", + "Oona Laurence", + "Jess Weixler" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Ride Along 2", + "year": 2016, + "cast": [ + "Ice Cube", + "Kevin Hart" + ], + "genres": [ + "Action", + "Comedy" + ] + }, + { + "title": "13 Hours: The Secret Soldiers of Benghazi", + "year": 2016, + "cast": [ + "James Badge Dale", + "John Krasinski", + "Max Martini" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Norm of the North", + "year": 2016, + "cast": [ + "Rob Schneider", + "Heather Graham", + "Ken Jeong" + ], + "genres": [ + "Animated", + "Comedy" + ] + }, + { + "title": "The Benefactor", + "year": 2016, + "cast": [ + "Richard Gere", + "Dakota Fanning", + "Theo James" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dirty Grandpa", + "year": 2016, + "cast": [ + "Zac Efron", + "Robert De Niro" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The 5th Wave", + "year": 2016, + "cast": [ + "Chloë Grace Moretz", + "Liev Schreiber" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Boy", + "year": 2016, + "cast": [ + "Lauren Cohan", + "Rupert Evans" + ], + "genres": [ + "Horror", + "Thriller" + ] + }, + { + "title": "Ip Man 3", + "year": 2016, + "cast": [ + "Donnie Yen" + ], + "genres": [ + "Martial Arts" + ] + }, + { + "title": "Synchronicity", + "year": 2016, + "cast": [ + "Brianne Davis", + "Chad McKnight", + "Scott Poythress" + ], + "genres": [ + "Action" + ] + }, + { + "title": "Kung Fu Panda 3", + "year": 2016, + "cast": [ + "Jack Black", + "Angelina Jolie", + "Dustin Hoffman", + "Seth Rogen" + ], + "genres": [ + "Animated", + "Martial Arts", + "Action", + "Comedy" + ] + }, + { + "title": "The Finest Hours", + "year": 2016, + "cast": [ + "Chris Pine", + "Casey Affleck" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Fifty Shades of Black", + "year": 2016, + "cast": [ + "Marlon Wayans", + "Kali Hawk", + "Mike Epps" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Jane Got a Gun", + "year": 2016, + "cast": [ + "Natalie Portman", + "Joel Edgerton" + ], + "genres": [ + "Action", + "Western" + ] + }, + { + "title": "Hail, Caesar!", + "year": 2016, + "cast": [ + "Josh Brolin", + "George Clooney" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Pride + Prejudice + Zombies", + "year": 2016, + "cast": [ + "Lily James", + "Sam Riley", + "Jack Huston", + "Matt Smith" + ], + "genres": [ + "Comedy", + "Horror" + ] + }, + { + "title": "The Choice", + "year": 2016, + "cast": [ + "Benjamin Walker", + "Teresa Palmer" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Deadpool", + "year": 2016, + "cast": [ + "Ryan Reynolds", + "T.J. Miller", + "Morena Baccarin" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Zoolander 2", + "year": 2016, + "cast": [ + "Ben Stiller", + "Owen Wilson", + "Penélope Cruz", + "Kristen Wiig" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "How to Be Single", + "year": 2016, + "cast": [ + "Dakota Johnson", + "Rebel Wilson" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Risen", + "year": 2016, + "cast": [ + "Joseph Fiennes", + "Tom Felton" + ], + "genres": [ + "Action", + "Adventure" + ] + }, + { + "title": "The Witch", + "year": 2016, + "cast": [ + "Anya Taylor-Joy", + "Ralph Ineson", + "Kate Dickie" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Race", + "year": 2016, + "cast": [ + "Stephan James", + "Jason Sudeikis", + "Jeremy Irons" + ], + "genres": [ + "Sports", + "Drama" + ] + }, + { + "title": "Gods of Egypt", + "year": 2016, + "cast": [ + "Nicolaj Coster-Waldau", + "Gerard Butler", + "Brenton Thwaites" + ], + "genres": [ + "Fantasy", + "Action" + ] + }, + { + "title": "Triple 9", + "year": 2016, + "cast": [ + "Casey Affleck", + "Aaron Paul" + ], + "genres": [ + "Crime", + "Thriller" + ] + }, + { + "title": "Eddie the Eagle", + "year": 2016, + "cast": [ + "Taron Egerton", + "Hugh Jackman", + "Christopher Walken" + ], + "genres": [ + "Sports", + "Drama", + "Comedy" + ] + }, + { + "title": "Zootopia", + "year": 2016, + "cast": [ + "Ginnifer Goodwin", + "Jason Bateman", + "Idris Elba" + ], + "genres": [ + "Animated", + "Adventure" + ] + }, + { + "title": "London Has Fallen", + "year": 2016, + "cast": [ + "Gerard Butler", + "Aaron Eckhart" + ], + "genres": [ + "Action", + "Thriller" + ] + }, + { + "title": "Whiskey Tango Foxtrot", + "year": 2016, + "cast": [ + "Tina Fey", + "Martin Freeman" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "The Other Side of the Door", + "year": 2016, + "cast": [ + "Sarah Wayne Callies", + "Jeremy Sisto" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "10 Cloverfield Lane", + "year": 2016, + "cast": [ + "John Goodman", + "Mary Elizabeth Winstead" + ], + "genres": [ + "Science Fiction", + "Thriller" + ] + }, + { + "title": "The Young Messiah", + "year": 2016, + "cast": [ + "Adam Greaves-Neal", + "Sean Bean", + "David Bradley" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Perfect Match", + "year": 2016, + "cast": [ + "Terrence J", + "Cassie Ventura" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Hello, My Name Is Doris", + "year": 2016, + "cast": [ + "Sally Field", + "Max Greenfield" + ], + "genres": [ + "Romance", + "Drama", + "Comedy" + ] + }, + { + "title": "Miracles from Heaven", + "year": 2016, + "cast": [ + "Jennifer Garner", + "Martin Henderson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Divergent Series: Allegiant", + "year": 2016, + "cast": [ + "Shailene Woodley", + "Theo James", + "Miles Teller", + "Ansel Elgort" + ], + "genres": [ + "Science Fiction", + "Adventure" + ] + }, + { + "title": "The Bronze", + "year": 2016, + "cast": [ + "Melissa Rauch", + "Thomas Middleditch" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Midnight Special", + "year": 2016, + "cast": [ + "Michael Shannon", + "Kirsten Dunst" + ], + "genres": [ + "Science Fiction", + "Drama", + "Supernatural" + ] + }, + { + "title": "Batman v Superman: Dawn of Justice", + "year": 2016, + "cast": [ + "Henry Cavill", + "Ben Affleck", + "Amy Adams" + ], + "genres": [ + "Action" + ] + }, + { + "title": "My Big Fat Greek Wedding 2", + "year": 2016, + "cast": [ + "Nia Vardalos", + "John Corbett" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "I Saw the Light", + "year": 2016, + "cast": [ + "Tom Hiddleston", + "Elizabeth Olsen", + "Cherry Jones", + "Bradley Whitford" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Everybody Wants Some!!", + "year": 2016, + "cast": [ + "Will Brittain", + "Blake Jenner", + "Zoey Deutch", + "Tyler Hoechlin" + ], + "genres": [ + "Sports", + "Comedy" + ] + }, + { + "title": "God's Not Dead 2", + "year": 2016, + "cast": [ + "Melissa Joan Hart", + "Jesse Metcalfe" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Meet the Blacks", + "year": 2016, + "cast": [ + "Mike Epps", + "Gary Owen" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Miles Ahead", + "year": 2016, + "cast": [ + "Don Cheadle", + "Ewan McGregor" + ], + "genres": [ + "Musical", + "Drama" + ] + }, + { + "title": "The Boss", + "year": 2016, + "cast": [ + "Melissa McCarthy", + "Kristen Bell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Hardcore Henry", + "year": 2016, + "cast": [ + "Sharlto Copley", + "Danila Kozlovsky", + "Haley Bennett" + ], + "genres": [ + "Science Fiction", + "Action" + ] + }, + { + "title": "Demolition", + "year": 2016, + "cast": [ + "Jake Gyllenhaal", + "Naomi Watts" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "The Invitation", + "year": 2016, + "cast": [ + "Logan Marshall-Green", + "Tammy Blanchard", + "Michiel Huisman" + ], + "genres": [ + "Horror", + "Thriller" + ] + }, + { + "title": "The Jungle Book", + "year": 2016, + "cast": [ + "Bill Murray", + "Ben Kingsley", + "Idris Elba" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Barbershop: The Next Cut", + "year": 2016, + "cast": [ + "Ice Cube", + "Cedric the Entertainer", + "Regina Hall" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Criminal", + "year": 2016, + "cast": [ + "Kevin Costner", + "Gary Oldman" + ], + "genres": [ + "Action", + "Thriller" + ] + }, + { + "title": "Green Room", + "year": 2016, + "cast": [ + "Anton Yelchin", + "Imogen Poots" + ], + "genres": [ + "Horror", + "Thriller" + ] + }, + { + "title": "The Huntsman: Winter's War", + "year": 2016, + "cast": [ + "Chris Hemsworth", + "Charlize Theron", + "Emily Blunt" + ], + "genres": [ + "Fantasy", + "Action", + "Adventure" + ] + }, + { + "title": "A Hologram for the King", + "year": 2016, + "cast": [ + "Tom Hanks", + "Ben Whishaw" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "Elvis & Nixon", + "year": 2016, + "cast": [ + "Kevin Spacey", + "Michael Shannon" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "Keanu", + "year": 2016, + "cast": [ + "Jordan Peele", + "Keegan-Michael Key" + ], + "genres": [ + "Action", + "Comedy" + ] + }, + { + "title": "Mother's Day", + "year": 2016, + "cast": [ + "Jennifer Aniston", + "Julia Roberts" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Ratchet & Clank", + "year": 2016, + "cast": [ + "Paul Giamatti", + "John Goodman", + "Bella Thorne" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Captain America: Civil War", + "year": 2016, + "cast": [ + "Chris Evans", + "Robert Downey Jr.", + "Sebastian Stan" + ], + "genres": [ + "Superhero", + "Action", + "Adventure" + ] + }, + { + "title": "Money Monster", + "year": 2016, + "cast": [ + "George Clooney", + "Julia Roberts", + "Jack O'Connell" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Darkness", + "year": 2016, + "cast": [ + "Kevin Bacon", + "Radha Mitchell" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Love & Friendship", + "year": 2016, + "cast": [ + "Kate Beckinsale", + "Xavier Samuel", + "Emma Greenwell" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Angry Birds Movie", + "year": 2016, + "cast": [ + "Jason Sudeikis", + "Josh Gad", + "Bill Hader" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Neighbors 2: Sorority Rising", + "year": 2016, + "cast": [ + "Seth Rogen", + "Zac Efron" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Nice Guys", + "year": 2016, + "cast": [ + "Russell Crowe", + "Ryan Gosling" + ], + "genres": [ + "Action", + "Comedy" + ] + }, + { + "title": "X-Men: Apocalypse", + "year": 2016, + "cast": [ + "James McAvoy", + "Michael Fassbender", + "Oscar Isaac" + ], + "genres": [ + "Superhero", + "Action", + "Adventure" + ] + }, + { + "title": "Alice Through the Looking Glass", + "year": 2016, + "cast": [ + "Mia Wasikowska", + "Johnny Depp", + "Helena Bonham Carter", + "Anne Hathaway" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "TMNT 2: Out of the Shadows", + "year": 2016, + "cast": [ + "Megan Fox", + "Will Arnett", + "Stephen Amell" + ], + "genres": [ + "Science Fiction", + "Action", + "Comedy" + ] + }, + { + "title": "Me Before You", + "year": 2016, + "cast": [ + "Emilia Clarke", + "Sam Claflin" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "Popstar: Never Stop Never Stopping", + "year": 2016, + "cast": [ + "Andy Samberg" + ], + "genres": [ + "Satire", + "Comedy" + ] + }, + { + "title": "The Conjuring 2", + "year": 2016, + "cast": [ + "Vera Farmiga", + "Patrick Wilson" + ], + "genres": [ + "Supernatural", + "Horror" + ] + }, + { + "title": "Warcraft", + "year": 2016, + "cast": [ + "Travis Fimmel", + "Ben Foster" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Now You See Me 2", + "year": 2016, + "cast": [ + "Jesse Eisenberg", + "Mark Ruffalo" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Finding Dory", + "year": 2016, + "cast": [ + "Ellen DeGeneres", + "Albert Brooks" + ], + "genres": [ + "Animated", + "Adventure" + ] + }, + { + "title": "Central Intelligence", + "year": 2016, + "cast": [ + "Dwayne Johnson", + "Kevin Hart" + ], + "genres": [ + "Action", + "Comedy" + ] + }, + { + "title": "Independence Day: Resurgence", + "year": 2016, + "cast": [ + "Liam Hemsworth", + "Maika Monroe", + "Jeff Goldblum" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Shallows", + "year": 2016, + "cast": [ + "Blake Lively" + ], + "genres": [ + "Horror", + "Thriller" + ] + }, + { + "title": "Free State of Jones", + "year": 2016, + "cast": [ + "Matthew McConaughey", + "Gugu Mbatha-Raw" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Neon Demon", + "year": 2016, + "cast": [ + "Elle Fanning", + "Karl Glusman", + "Jena Malone" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Legend of Tarzan", + "year": 2016, + "cast": [ + "Alexander Skarsgård", + "Margot Robbie" + ], + "genres": [ + "Action", + "Adventure" + ] + }, + { + "title": "The BFG", + "year": 2016, + "cast": [ + "Mark Rylance", + "Ruby Barnhill" + ], + "genres": [ + "Fantasy", + "Adventure" + ] + }, + { + "title": "The Purge: Election Year", + "year": 2016, + "cast": [ + "Frank Grillo", + "Elizabeth Mitchell" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Secret Life of Pets", + "year": 2016, + "cast": [ + "Louis C.K.", + "Kevin Hart" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Mike and Dave Need Wedding Dates", + "year": 2016, + "cast": [ + "Adam DeVine", + "Zac Efron" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Characterz", + "year": 2016, + "cast": [ + "Mitchel Musso" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Infiltrator", + "year": 2016, + "cast": [ + "Bryan Cranston", + "Diane Kruger", + "John Leguizamo" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Ghostbusters", + "year": 2016, + "cast": [ + "Melissa McCarthy", + "Kristen Wiig" + ], + "genres": [ + "Supernatural", + "Comedy" + ] + }, + { + "title": "Star Trek Beyond", + "year": 2016, + "cast": [ + "Chris Pine", + "Zachary Quinto", + "Idris Elba" + ], + "genres": [ + "Science Fiction", + "Action", + "Adventure" + ] + }, + { + "title": "Ice Age: Collision Course", + "year": 2016, + "cast": [ + "Ray Romano", + "John Leguizamo" + ], + "genres": [ + "Animated" + ] + }, + { + "title": "Lights Out", + "year": 2016, + "cast": [ + "Teresa Palmer" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Jason Bourne", + "year": 2016, + "cast": [ + "Matt Damon", + "Alicia Vikander" + ], + "genres": [ + "Action", + "Adventure", + "Thriller", + "Spy" + ] + }, + { + "title": "Bad Moms", + "year": 2016, + "cast": [ + "Kristen Bell", + "Mila Kunis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Nerve", + "year": 2016, + "cast": [ + "Emma Roberts", + "Dave Franco" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Suicide Squad", + "year": 2016, + "cast": [ + "Will Smith", + "Jared Leto", + "Margot Robbie" + ], + "genres": [ + "Superhero", + "Action", + "Adventure" + ] + }, + { + "title": "Nine Lives", + "year": 2016, + "cast": [ + "Kevin Spacey" + ], + "genres": [] + }, + { + "title": "Pete's Dragon", + "year": 2016, + "cast": [ + "Bryce Dallas Howard" + ], + "genres": [] + }, + { + "title": "Sausage Party", + "year": 2016, + "cast": [ + "Seth Rogen", + "Kristen Wiig" + ], + "genres": [] + }, + { + "title": "Florence Foster Jenkins", + "year": 2016, + "cast": [ + "Meryl Streep" + ], + "genres": [] + }, + { + "title": "Ben-Hur", + "year": 2016, + "cast": [ + "Jack Huston", + "Toby Kebbell" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Kubo and the Two Strings", + "year": 2016, + "cast": [], + "genres": [] + }, + { + "title": "War Dogs", + "year": 2016, + "cast": [ + "Jonah Hill", + "Miles Teller" + ], + "genres": [ + "Crime", + "Drama", + "Comedy" + ] + }, + { + "title": "Mechanic: Resurrection", + "year": 2016, + "cast": [ + "Jason Statham" + ], + "genres": [] + }, + { + "title": "Don't Breathe", + "year": 2016, + "cast": [ + "Jane Levy" + ], + "genres": [] + }, + { + "title": "Hands of Stone", + "year": 2016, + "cast": [ + "Édgar Ramírez", + "Robert De Niro" + ], + "genres": [ + "Sports" + ] + }, + { + "title": "The Light Between Oceans", + "year": 2016, + "cast": [ + "Michael Fassbender", + "Alicia Vikander" + ], + "genres": [] + }, + { + "title": "Morgan", + "year": 2016, + "cast": [ + "Kate Mara" + ], + "genres": [] + }, + { + "title": "Sully", + "year": 2016, + "cast": [ + "Tom Hanks" + ], + "genres": [] + }, + { + "title": "When the Bough Breaks", + "year": 2016, + "cast": [ + "Morris Chestnut", + "Regina Hall" + ], + "genres": [] + }, + { + "title": "The Wild Life", + "year": 2016, + "cast": [], + "genres": [] + }, + { + "title": "The Disappointments Room", + "year": 2016, + "cast": [ + "Kate Beckinsale", + "Lucas Till" + ], + "genres": [] + }, + { + "title": "Bridget Jones's Baby", + "year": 2016, + "cast": [ + "Renée Zellweger", + "Colin Firth", + "Patrick Dempsey" + ], + "genres": [] + }, + { + "title": "Snowden", + "year": 2016, + "cast": [ + "Joseph Gordon-Levitt", + "Shailene Woodley", + "Zachary Quinto" + ], + "genres": [] + }, + { + "title": "Blair Witch", + "year": 2016, + "cast": [ + "Valorie Curry" + ], + "genres": [] + }, + { + "title": "Hillsong: Let Hope Rise", + "year": 2016, + "cast": [], + "genres": [] + }, + { + "title": "The Magnificent Seven", + "year": 2016, + "cast": [ + "Denzel Washington", + "Chris Pratt" + ], + "genres": [] + }, + { + "title": "Storks", + "year": 2016, + "cast": [], + "genres": [] + }, + { + "title": "South of 8", + "year": 2016, + "cast": [ + "Brian Patrick Butler", + "George Jac" + ], + "genres": [ + "Crime" + ] + }, + { + "title": "Miss Peregrine's Home for Peculiar Children", + "year": 2016, + "cast": [ + "Eva Green", + "Asa Butterfield" + ], + "genres": [] + }, + { + "title": "Deepwater Horizon", + "year": 2016, + "cast": [ + "Mark Wahlberg", + "Kurt Russell" + ], + "genres": [] + }, + { + "title": "Masterminds", + "year": 2016, + "cast": [ + "Zach Galifianakis", + "Kristen Wiig" + ], + "genres": [] + }, + { + "title": "The Girl on the Train", + "year": 2016, + "cast": [ + "Emily Blunt" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Birth of a Nation", + "year": 2016, + "cast": [ + "Nate Parker", + "Armie Hammer" + ], + "genres": [] + }, + { + "title": "Middle School: The Worst Years of My Life", + "year": 2016, + "cast": [], + "genres": [] + }, + { + "title": "The Accountant", + "year": 2016, + "cast": [], + "genres": [] + }, + { + "title": "Kevin Hart: What Now?", + "year": 2016, + "cast": [ + "Kevin Hart" + ], + "genres": [] + }, + { + "title": "Max Steel", + "year": 2016, + "cast": [], + "genres": [] + }, + { + "title": "Jack Reacher: Never Go Back", + "year": 2016, + "cast": [], + "genres": [] + }, + { + "title": "Keeping Up with the Joneses", + "year": 2016, + "cast": [ + "Isla Fisher", + "Jon Hamm" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Ouija: Origin of Evil", + "year": 2016, + "cast": [], + "genres": [] + }, + { + "title": "Boo! A Madea Halloween", + "year": 2016, + "cast": [ + "Tyler Perry" + ], + "genres": [] + }, + { + "title": "I'm Not Ashamed", + "year": 2016, + "cast": [], + "genres": [] + }, + { + "title": "American Pastoral", + "year": 2016, + "cast": [ + "Ewan McGregor", + "Jennifer Connelly" + ], + "genres": [] + }, + { + "title": "Inferno", + "year": 2016, + "cast": [], + "genres": [] + }, + { + "title": "Friend Request", + "year": 2016, + "cast": [ + "Alycia Debnam-Carey" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Moana", + "year": 2016, + "cast": [ + "Auli'i Cravalho", + "Dwayne Johnson" + ], + "genres": [ + "Family", + "Animated" + ] + }, + { + "title": "Rogue One: A Star Wars Story (film)", + "year": 2016, + "cast": [ + "Diego Luna" + ], + "genres": [ + "Science Fiction" + ] + }, + { + "title": "The Founder", + "year": 2016, + "cast": [ + "Michael Keaton" + ], + "genres": [] + }, + { + "title": "Sing", + "year": 2016, + "cast": [ + "Reese Witherspoon", + "Scarlett Johansson" + ], + "genres": [] + }, + { + "title": "A Monster Calls", + "year": 2016, + "cast": [], + "genres": [] + }, + { + "title": "Rings", + "year": 2016, + "cast": [], + "genres": [] + }, + { + "title": "Underworld: Blood Wars", + "year": 2017, + "cast": [ + "Kate Beckinsale", + "Theo James", + "Tobias Menzies", + "Lara Pulver", + "James Faulkner", + "Charles Dance" + ], + "genres": [ + "Action", + "Horror" + ] + }, + { + "title": "Arsenal", + "year": 2017, + "cast": [ + "Adrian Grenier", + "Johnathon Schaech", + "Nicolas Cage", + "Lydia Hull", + "Christopher Coppola", + "Megan Leonard", + "Christopher Rob Bowen", + "Tyler Jon Olson", + "Shea Buckner", + "John Cusack" + ], + "genres": [ + "Action", + "Crime", + "Thriller" + ] + }, + { + "title": "Between Us", + "year": 2017, + "cast": [ + "Olivia Thirlby", + "Ben Feldman", + "Adam Goldberg", + "Analeigh Tipton", + "Scott Haze", + "Peter Bogdanovich", + "Lesley Ann Warren" + ], + "genres": [ + "Comedy", + "Romance", + "Drama" + ] + }, + { + "title": "Monster Trucks", + "year": 2017, + "cast": [ + "Lucas Till", + "Jane Levy", + "Amy Ryan", + "Holt McCallany", + "Rob Lowe", + "Danny Glover", + "Frank Whaley", + "Chad Willett", + "Barry Pepper", + "Thomas Lennon", + "Tucker Albrizzi" + ], + "genres": [ + "Animated", + "Adventure", + "Science Fiction" + ] + }, + { + "title": "The Bye Bye Man", + "year": 2017, + "cast": [ + "Douglas Smith", + "Doug Jones", + "Michael Trucco", + "Cressida Bonas", + "Lucien Laviscount", + "Carrie-Anne Moss", + "Faye Dunaway" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Sleepless", + "year": 2017, + "cast": [ + "Jamie Foxx", + "T.I.", + "Drew Sidora", + "Lloyd Banks", + "Gabrielle Union", + "David Harbour", + "Young Jeezy", + "Michelle Monaghan", + "Scoot McNairy", + "Sala Baker" + ], + "genres": [ + "Action", + "Thriller" + ] + }, + { + "title": "100 Streets", + "year": 2017, + "cast": [ + "Idris Elba", + "Gemma Arterton", + "Charlie Creed-Miles", + "Franz Drameh", + "Kierston Wareing", + "Tom Cullen", + "Ken Stott" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Book of Love", + "year": 2017, + "cast": [ + "Jason Sudeikis", + "Jessica Biel", + "Maisie Williams", + "Mary Steenburgen", + "Orlando Jones", + "Paul Reiser" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "Split", + "year": 2017, + "cast": [ + "James McAvoy", + "Anya Taylor-Joy", + "Betty Buckley", + "Jessica Sula", + "Haley Lu Richardson", + "Kim Director", + "Lyne Renée", + "Brad William Henke", + "Neal Huff", + "Sebastian Arcelus" + ], + "genres": [ + "Horror", + "Thriller", + "Drama" + ] + }, + { + "title": "xXx: Return of Xander Cage", + "year": 2017, + "cast": [ + "Vin Diesel", + "Samuel L. Jackson", + "Donnie Yen", + "Deepika Padukone", + "Kris Wu", + "Nina Dobrev", + "Tony Jaa", + "Ruby Rose", + "Toni Collette", + "Nicky Jam", + "Rory McCann", + "Al Sapienza", + "Michael Bisping", + "Ariadna Gutiérrez", + "Hermione Corfield" + ], + "genres": [ + "Action", + "Adventure" + ] + }, + { + "title": "The Resurrection of Gavin Stone", + "year": 2017, + "cast": [ + "Brett Dalton", + "Anjelah Johnson", + "Neil Flynn", + "Shawn Michaels", + "D. B. Sweeney" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Trespass Against Us", + "year": 2017, + "cast": [ + "Michael Fassbender", + "Brendan Gleeson", + "Lyndsey Marshal", + "Killian Scott" + ], + "genres": [ + "Crime", + "Drama", + "Thriller" + ] + }, + { + "title": "Sophie and the Rising Sun", + "year": 2017, + "cast": [ + "Julianne Nicholson", + "Margo Martindale", + "Lorraine Toussaint", + "Takashi Yamaguchi", + "Diane Ladd" + ], + "genres": [ + "Drama", + "Romance" + ] + }, + { + "title": "A Dog's Purpose", + "year": 2017, + "cast": [ + "Britt Robertson", + "Dennis Quaid", + "Josh Gad", + "Peggy Lipton", + "Juliet Rylance" + ], + "genres": [ + "Family" + ] + }, + { + "title": "Resident Evil: The Final Chapter", + "year": 2017, + "cast": [ + "Milla Jovovich", + "Shawn Roberts", + "Ruby Rose", + "William Levy", + "Iain Glen", + "Eoin Macken", + "Lee Joon-gi", + "Ali Larter" + ], + "genres": [ + "Action", + "Adventure", + "Horror", + "Science Fiction" + ] + }, + { + "title": "Lost in Florence", + "year": 2017, + "cast": [ + "Brett Dalton", + "Stana Katic", + "Alessandra Mastronardi", + "Alessandro Preziosi", + "Emily Atack", + "Rob Aramayo", + "Marco Bonini" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "I Am Michael", + "year": 2017, + "cast": [ + "James Franco", + "Zachary Quinto", + "Emma Roberts", + "Charlie Carver" + ], + "genres": [ + "Biography", + "Drama" + ] + }, + { + "title": "iBoy", + "year": 2017, + "cast": [ + "Bill Milner", + "Maisie Williams", + "Miranda Richardson", + "Rory Kinnear" + ], + "genres": [ + "Action", + "Crime" + ] + }, + { + "title": "Rings", + "year": 2017, + "cast": [ + "Matilda Lutz", + "Alex Roe", + "Johnny Galecki", + "Aimee Teegarden", + "Laura Wiggins", + "Zach Roerig", + "Vincent D'Onofrio", + "Andrea Laing", + "Patrick R. Walker" + ], + "genres": [ + "Horror", + "Thriller" + ] + }, + { + "title": "The Space Between Us", + "year": 2017, + "cast": [ + "Asa Butterfield", + "Britt Robertson", + "Gary Oldman", + "Carla Gugino", + "B. D. Wong" + ], + "genres": [ + "Science Fiction", + "Adventure", + "Romance" + ] + }, + { + "title": "Youth in Oregon", + "year": 2017, + "cast": [ + "Frank Langella", + "Billy Crudup", + "Christina Applegate", + "Nicola Peltz", + "Josh Lucas", + "Mary Kay Place", + "Alex Shaffer" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "I Am Not Your Negro", + "year": 2017, + "cast": [ + "Samuel L. Jackson" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Growing Up Smith", + "year": 2017, + "cast": [ + "Jason Lee", + "Anjul Nigam", + "Brighton Sharbino", + "Hilarie Burton", + "Roni Akurati" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Lego Batman Movie", + "year": 2017, + "cast": [ + "Will Arnett", + "Ralph Fiennes", + "Rosario Dawson", + "Michael Cera", + "Zach Galifianakis", + "Mariah Carey", + "Jenny Slate", + "Billy Dee Williams" + ], + "genres": [ + "Animated", + "Comedy", + "Action" + ] + }, + { + "title": "Fifty Shades Darker", + "year": 2017, + "cast": [ + "Dakota Johnson", + "Jamie Dornan", + "Kim Basinger", + "Luke Grimes", + "Eloise Mumford", + "Max Martini", + "Eric Johnson", + "Bella Heathcote", + "Marcia Gay Harden", + "Rita Ora" + ], + "genres": [ + "Drama", + "Romance" + ] + }, + { + "title": "John Wick: Chapter 2", + "year": 2017, + "cast": [ + "Keanu Reeves", + "Common", + "Bridget Moynahan", + "Ian McShane", + "John Leguizamo", + "Ruby Rose", + "Laurence Fishburne" + ], + "genres": [ + "Noir", + "Action", + "Thriller" + ] + }, + { + "title": "Bornless Ones", + "year": 2017, + "cast": [ + "Michael Johnston", + "Margaret Judson", + "Bobby T", + "Lana Titova", + "Victoria Clare", + "Devin Goodsell", + "Gwen Holloway", + "Mark Furze", + "Greg Travis", + "Nick Saso", + "Rob Tepper", + "David Banks" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Great Wall", + "year": 2017, + "cast": [ + "Andy Lau", + "Matt Damon", + "Willem Dafoe", + "Jing Tian", + "Pedro Pascal", + "Zhang Hanyu", + "Eddie Peng", + "Lu Han", + "Lin Gengxin", + "Chen Xuedong", + "Huang Xuan", + "Wang Junkai", + "Ryan Zheng", + "Yu Xintian", + "Liu Qiong" + ], + "genres": [ + "Action", + "Fantasy" + ] + }, + { + "title": "A Cure for Wellness", + "year": 2017, + "cast": [ + "Dane DeHaan", + "Mia Goth", + "Jason Isaacs" + ], + "genres": [ + "Drama", + "Thriller" + ] + }, + { + "title": "Fist Fight", + "year": 2017, + "cast": [ + "Ice Cube", + "Charlie Day", + "Christina Hendricks", + "Dennis Haysbert", + "Tracy Morgan", + "Jillian Bell", + "Dean Norris" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "American Fable", + "year": 2017, + "cast": [ + "Peyton Kennedy", + "Richard Schiff", + "Kip Pardue", + "Marci Miller", + "Gavin MacIntosh", + "Zuleikha Robinson" + ], + "genres": [ + "Thriller", + "Fantasy" + ] + }, + { + "title": "XX", + "year": 2017, + "cast": [ + "Natalie Brown", + "Melanie Lynskey", + "Breeda Wool", + "Christina Kirk" + ], + "genres": [ + "Horror", + "Suspense" + ] + }, + { + "title": "Lovesong", + "year": 2017, + "cast": [ + "Jena Malone", + "Riley Keough", + "Brooklyn Decker", + "Amy Seimetz", + "Marshall Chapman", + "Ryan Eggold", + "Rosanna Arquette" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Get Out", + "year": 2017, + "cast": [ + "Daniel Kaluuya", + "Allison Williams", + "Catherine Keener", + "Bradley Whitford", + "Caleb Landry Jones" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Rock Dog", + "year": 2017, + "cast": [ + "Luke Wilson", + "Eddie Izzard", + "J. K. Simmons", + "Lewis Black", + "Kenan Thompson", + "Mae Whitman", + "Jorge Garcia", + "Matt Dillon", + "Sam Elliott" + ], + "genres": [ + "Animated", + "Comedy" + ] + }, + { + "title": "Collide", + "year": 2017, + "cast": [ + "Nicholas Hoult", + "Felicity Jones", + "Anthony Hopkins", + "Ben Kingsley" + ], + "genres": [ + "Action", + "Crime", + "Drama" + ] + }, + { + "title": "The Girl with All the Gifts", + "year": 2017, + "cast": [ + "Gemma Arterton", + "Glenn Close", + "Paddy Considine", + "Sennia Nanua" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "I Don't Feel at Home in This World Anymore", + "year": 2017, + "cast": [ + "Melanie Lynskey", + "Elijah Wood", + "David Yow", + "Jane Levy", + "Devon Graye" + ], + "genres": [ + "Comedy", + "Thriller" + ] + }, + { + "title": "Contemporary Color", + "year": 2017, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "Logan", + "year": 2017, + "cast": [ + "Hugh Jackman", + "Patrick Stewart", + "Boyd Holbrook", + "Stephen Merchant", + "Richard E. Grant", + "Eriq La Salle", + "Elise Neal", + "Elizabeth Rodriguez", + "Dafne Keen" + ], + "genres": [ + "Action", + "Adventure", + "Superhero", + "Drama" + ] + }, + { + "title": "The Shack", + "year": 2017, + "cast": [ + "Sam Worthington", + "Radha Mitchell", + "Octavia Spencer", + "Graham Greene" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Before I Fall", + "year": 2017, + "cast": [ + "Zoey Deutch", + "Halston Sage", + "Logan Miller", + "Kian Lawley", + "Elena Kampouris", + "Cynthy Wu", + "Medalion Rahimi", + "Diego Boneta", + "Jennifer Beals" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Table 19", + "year": 2017, + "cast": [ + "Anna Kendrick", + "Amanda Crew", + "Stephen Merchant", + "Lisa Kudrow", + "Wyatt Russell", + "Craig Robinson", + "Tony Revolori", + "June Squibb" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Last Word", + "year": 2017, + "cast": [ + "Shirley MacLaine", + "Amanda Seyfried" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Catfight", + "year": 2017, + "cast": [ + "Alicia Silverstone", + "Anne Heche", + "Sandra Oh", + "Dylan Baker", + "Amy Hall", + "Craig Bierko" + ], + "genres": [ + "Comedy", + "Action" + ] + }, + { + "title": "Donald Cried", + "year": 2017, + "cast": [ + "Kristopher Avedisian", + "Jesse Wakeman", + "Louisa Krause", + "Ted Arcidi" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Kong: Skull Island", + "year": 2017, + "cast": [ + "Tom Hiddleston", + "Brie Larson", + "Samuel L. Jackson", + "John Goodman", + "John C. Reilly", + "Toby Kebbell", + "Jing Tian", + "Jason Mitchell", + "Corey Hawkins", + "Thomas Mann", + "John Ortiz", + "Shea Whigham", + "Terry Notary" + ], + "genres": [ + "Action", + "Adventure", + "Fantasy", + "Science Fiction" + ] + }, + { + "title": "Burning Sands", + "year": 2017, + "cast": [ + "Trevor Jackson", + "Alfre Woodard", + "Steve Harris", + "Trevante Rhodes", + "Serayah" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Beauty and the Beast", + "year": 2017, + "cast": [ + "Emma Watson", + "Dan Stevens", + "Luke Evans", + "Ewan McGregor", + "Ian McKellen", + "Emma Thompson", + "Kevin Kline", + "Stanley Tucci", + "Josh Gad", + "Audra McDonald", + "Gugu Mbatha-Raw" + ], + "genres": [ + "Fantasy", + "Adventure", + "Musical", + "Drama", + "Romance" + ] + }, + { + "title": "The Belko Experiment", + "year": 2017, + "cast": [ + "John Gallagher Jr.", + "Tony Goldwyn", + "David Del Rio" + ], + "genres": [ + "Action", + "Horror", + "Thriller" + ] + }, + { + "title": "Song to Song", + "year": 2017, + "cast": [ + "Ryan Gosling", + "Michael Fassbender", + "Rooney Mara", + "Natalie Portman", + "Christian Bale", + "Cate Blanchett", + "Benicio del Toro", + "Val Kilmer" + ], + "genres": [ + "Drama", + "Romance" + ] + }, + { + "title": "Atomica", + "year": 2017, + "cast": [ + "Dominic Monaghan", + "Tom Sizemore", + "Sarah Habel" + ], + "genres": [ + "Science Fiction", + "Thriller" + ] + }, + { + "title": "All Nighter", + "year": 2017, + "cast": [ + "J. K. Simmons", + "Emile Hirsch", + "Analeigh Tipton", + "Taran Killam", + "Kristen Schaal" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Devil's Candy", + "year": 2017, + "cast": [ + "Ethan Embry", + "Shiri Appleby", + "Kiara Glasco", + "Pruitt Taylor Vince", + "Craig Nigh", + "Marco Perella" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Power Rangers", + "year": 2017, + "cast": [ + "Dacre Montgomery", + "Naomi Scott", + "RJ Cyler", + "Becky G", + "Ludi Lin", + "Bill Hader", + "Bryan Cranston", + "Elizabeth Banks" + ], + "genres": [ + "Action", + "Adventure", + "Drama", + "Superhero" + ] + }, + { + "title": "Life", + "year": 2017, + "cast": [ + "Rebecca Ferguson", + "Jake Gyllenhaal", + "Ryan Reynolds", + "Hiroyuki Sanada" + ], + "genres": [ + "Horror", + "Science Fiction" + ] + }, + { + "title": "CHiPs", + "year": 2017, + "cast": [ + "Dax Shepard", + "Michael Peña", + "Vincent D'Onofrio", + "Adam Brody", + "Rosa Salazar", + "Vida Guerra", + "Kristen Bell" + ], + "genres": [ + "Comedy", + "Action" + ] + }, + { + "title": "Wilson", + "year": 2017, + "cast": [ + "Woody Harrelson", + "Laura Dern", + "Isabella Amara", + "Judy Greer", + "Cheryl Hines", + "Margo Martindale", + "David Warshofsky" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Victor", + "year": 2017, + "cast": [ + "Patrick Davis", + "Nick Eversman", + "Cortney Palm", + "Rick Gonzalez", + "Matt Marquez", + "Lisa Vidal", + "Josh Pence" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Car Dogs", + "year": 2017, + "cast": [ + "Patrick J. Adams", + "George Lopez", + "Nia Vardalos", + "Octavia Spencer", + "Josh Hopkins", + "Dash Mihok", + "Chris Mulkey", + "Alessandra Torresani", + "Cory Hardrict", + "Stefanie Butler", + "Joe Massingill" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Walk of Fame", + "year": 2017, + "cast": [ + "Scott Eastwood", + "Malcolm McDowell", + "Chris Kattan", + "Laura Ashley Samuels", + "Jamie Kennedy", + "Cory Hardrict" + ], + "genres": [ + "Comedy", + "Romance" + ] + }, + { + "title": "Ghost in the Shell", + "year": 2017, + "cast": [ + "Scarlett Johansson", + "Takeshi Kitano", + "Michael Pitt", + "Pilou Asbæk", + "Chin Han", + "Juliette Binoche", + "Rila Fukushima", + "Anamaria Marinca", + "Kaori Momoi" + ], + "genres": [ + "Action", + "Adventure", + "Crime", + "Science Fiction" + ] + }, + { + "title": "The Boss Baby", + "year": 2017, + "cast": [ + "Alec Baldwin", + "Steve Buscemi", + "Tobey Maguire", + "Jimmy Kimmel", + "Lisa Kudrow" + ], + "genres": [ + "Animated", + "Comedy" + ] + }, + { + "title": "The Zookeeper's Wife", + "year": 2017, + "cast": [ + "Jessica Chastain", + "Johan Heldenbergh", + "Daniel Brühl", + "Michael McElhatton" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "The Blackcoat's Daughter", + "year": 2017, + "cast": [ + "Emma Roberts", + "Kiernan Shipka", + "Lucy Boynton", + "Lauren Holly", + "James Remar" + ], + "genres": [ + "Horror", + "Thriller" + ] + }, + { + "title": "The Discovery", + "year": 2017, + "cast": [ + "Jason Segel", + "Rooney Mara", + "Robert Redford", + "Jesse Plemons", + "Riley Keough" + ], + "genres": [ + "Romance", + "Drama", + "Science Fiction" + ] + }, + { + "title": "Carrie Pilby", + "year": 2017, + "cast": [ + "Bel Powley", + "Vanessa Bayer", + "Colin O'Donoghue", + "William Moseley", + "Jason Ritter", + "Gabriel Byrne", + "Nathan Lane" + ], + "genres": [ + "Comedy", + "Romance" + ] + }, + { + "title": "The Case for Christ", + "year": 2017, + "cast": [ + "Mike Vogel", + "Erika Christensen", + "Robert Forster", + "Faye Dunaway", + "Grant Goodeve" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Smurfs: The Lost Village", + "year": 2017, + "cast": [ + "Demi Lovato", + "Mandy Patinkin", + "Jack McBrayer", + "Danny Pudi", + "Joe Manganiello", + "Rainn Wilson", + "Ariel Winter" + ], + "genres": [ + "Animated", + "Comedy", + "Fantasy", + "Family" + ] + }, + { + "title": "Going in Style", + "year": 2017, + "cast": [ + "Morgan Freeman", + "Michael Caine", + "Alan Arkin", + "Joey King", + "Matt Dillon", + "Ann-Margret", + "Christopher Lloyd", + "Siobhan Fallon Hogan", + "John Ortiz", + "Peter Serafinowicz" + ], + "genres": [ + "Comedy", + "Crime" + ] + }, + { + "title": "Colossal", + "year": 2017, + "cast": [ + "Anne Hathaway", + "Jason Sudeikis", + "Dan Stevens", + "Austin Stowell", + "Tim Blake Nelson" + ], + "genres": [ + "Science Fiction", + "Comedy" + ] + }, + { + "title": "Gifted", + "year": 2017, + "cast": [ + "Chris Evans", + "Mckenna Grace", + "Jenny Slate", + "Lindsay Duncan", + "Octavia Spencer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Aftermath", + "year": 2017, + "cast": [ + "Arnold Schwarzenegger", + "Scoot McNairy", + "Maggie Grace", + "Martin Donovan" + ], + "genres": [ + "Drama", + "Thriller" + ] + }, + { + "title": "The Fate of the Furious", + "year": 2017, + "cast": [ + "Vin Diesel", + "Dwayne Johnson", + "Michelle Rodriguez", + "Kurt Russell", + "Charlize Theron", + "Jason Statham", + "Helen Mirren", + "Tyrese Gibson", + "Chris Bridges", + "Elsa Pataky", + "Nathalie Emmanuel", + "Scott Eastwood", + "Kristofer Hivju" + ], + "genres": [ + "Action", + "Adventure" + ] + }, + { + "title": "Spark", + "year": 2017, + "cast": [ + "Jace Norman", + "Jessica Biel", + "Susan Sarandon", + "Patrick Stewart", + "Hilary Swank" + ], + "genres": [ + "Science Fiction", + "Animated", + "Comedy" + ] + }, + { + "title": "The Lost City of Z", + "year": 2017, + "cast": [ + "Charlie Hunnam", + "Robert Pattinson", + "Tom Holland", + "Sienna Miller" + ], + "genres": [ + "Adventure", + "Drama" + ] + }, + { + "title": "My Entire High School Sinking Into the Sea", + "year": 2017, + "cast": [ + "Jason Schwartzman", + "Reggie Watts", + "Lena Dunham", + "Maya Rudolph", + "Susan Sarandon", + "Thomas Jay Ryan", + "Alex Karpovsky", + "John Cameron Mitchell" + ], + "genres": [ + "Animated", + "Comedy" + ] + }, + { + "title": "The Outcasts", + "year": 2017, + "cast": [ + "Victoria Justice", + "Eden Sher", + "Ashley Rickards", + "Claudia Lee", + "Katie Chang", + "Peyton List", + "Avan Jogia", + "Will Peltz", + "Harry Katzman" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Born in China", + "year": 2017, + "cast": [ + "John Krasinski", + "Zhou Xun", + "(narrator)" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Unforgettable", + "year": 2017, + "cast": [ + "Katherine Heigl", + "Rosario Dawson", + "Geoff Stults", + "Isabella Rice", + "Cheryl Ladd", + "Simon Kassianides", + "Whitney Cummings", + "Robert Wisdom" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The Promise", + "year": 2017, + "cast": [ + "Oscar Isaac", + "Charlotte Le Bon", + "Christian Bale", + "Daniel Giménez Cacho", + "Shohreh Aghdashloo", + "Rade Šerbedžija" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Circle", + "year": 2017, + "cast": [ + "Tom Hanks", + "Emma Watson", + "John Boyega", + "Karen Gillan", + "Patton Oswalt", + "Bill Paxton" + ], + "genres": [ + "Science Fiction", + "Drama", + "Thriller" + ] + }, + { + "title": "How to Be a Latin Lover", + "year": 2017, + "cast": [ + "Eugenio Derbez", + "Salma Hayek", + "Raphael Alejandro", + "Rob Lowe", + "Kristen Bell", + "Raquel Welch", + "Rob Riggle", + "Renée Taylor", + "Rob Huebel", + "Michaela Watkins", + "Linda Lavin" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Sleight", + "year": 2017, + "cast": [ + "Jacob Latimore", + "Seychelle Gabriel", + "Dulé Hill", + "Storm Reid", + "Sasheer Zamata", + "Michael Villar" + ], + "genres": [ + "Science Fiction", + "Drama" + ] + }, + { + "title": "Guardians of the Galaxy Vol. 2", + "year": 2017, + "cast": [ + "Chris Pratt", + "Zoe Saldana", + "Dave Bautista", + "Vin Diesel", + "Bradley Cooper", + "Michael Rooker", + "Karen Gillan", + "Sean Gunn", + "Pom Klementieff", + "Elizabeth Debicki", + "Chris Sullivan", + "Sylvester Stallone", + "Kurt Russell" + ], + "genres": [ + "Superhero", + "Comedy", + "Adventure", + "Science Fiction" + ] + }, + { + "title": "The Lovers", + "year": 2017, + "cast": [ + "Debra Winger", + "Tracy Letts", + "Aidan Gillen", + "Melora Walters", + "Tyler Ross", + "Jessica Sula" + ], + "genres": [ + "Comedy", + "Romance" + ] + }, + { + "title": "3 Generations", + "year": 2017, + "cast": [ + "Naomi Watts", + "Elle Fanning", + "Susan Sarandon", + "Tate Donovan", + "Linda Emond", + "Sam Trammell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "King Arthur: Legend of the Sword", + "year": 2017, + "cast": [ + "Charlie Hunnam", + "Aidan Gillen", + "Àstrid Bergès-Frisbey", + "Eric Bana", + "Jude Law", + "Djimon Hounsou", + "Kingsley Ben-Adir", + "Neil Maskell", + "Millie Brady", + "David Beckham", + "Katie McGrath", + "Michael McElhatton" + ], + "genres": [ + "Action", + "Adventure" + ] + }, + { + "title": "Snatched", + "year": 2017, + "cast": [ + "Amy Schumer", + "Goldie Hawn", + "Christopher Meloni", + "Ike Barinholtz", + "Óscar Jaenada", + "Wanda Sykes" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Lowriders", + "year": 2017, + "cast": [ + "Demián Bichir", + "Gabriel Chavarria", + "Theo Rossi", + "Melissa Benoist", + "Tony Revolori", + "Eva Longoria", + "Cress Williams", + "Yvette Monreal" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Wall", + "year": 2017, + "cast": [ + "Aaron Taylor-Johnson", + "John Cena" + ], + "genres": [ + "Drama", + "Thriller" + ] + }, + { + "title": "Paris Can Wait", + "year": 2017, + "cast": [ + "Diane Lane", + "Alec Baldwin", + "Arnaud Viard" + ], + "genres": [ + "Comedy", + "Romance" + ] + }, + { + "title": "Alien: Covenant", + "year": 2017, + "cast": [ + "Michael Fassbender", + "Katherine Waterston", + "Demián Bichir", + "Billy Crudup", + "Danny McBride", + "Jussie Smollett", + "Amy Seimetz", + "Carmen Ejogo", + "Callie Hernandez", + "Alex England", + "James Franco" + ], + "genres": [ + "Science Fiction", + "Horror" + ] + }, + { + "title": "Diary of a Wimpy Kid: The Long Haul", + "year": 2017, + "cast": [ + "Jason Ian Drucker", + "Owen Asztalo", + "Charlie Wright", + "Alicia Silverstone", + "Tom Everett Scott" + ], + "genres": [ + "Comedy", + "Family" + ] + }, + { + "title": "Everything, Everything", + "year": 2017, + "cast": [ + "Amandla Stenberg", + "Nick Robinson", + "Anika Noni Rose", + "Ana de la Reguera", + "Danube Hermosillo" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "Wakefield", + "year": 2017, + "cast": [ + "Bryan Cranston", + "Jennifer Garner", + "Victoria Bruno", + "Pippa Bennett-Warner" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Baywatch", + "year": 2017, + "cast": [ + "Dwayne Johnson", + "Zac Efron", + "Priyanka Chopra", + "Alexandra Daddario", + "Kelly Rohrbach", + "Yahya Abdul-Mateen II", + "Ilfenesh Hadera", + "Jon Bass" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Pirates of the Caribbean: Dead Men Tell No Tales", + "year": 2017, + "cast": [ + "Johnny Depp", + "Javier Bardem", + "Orlando Bloom", + "Brenton Thwaites", + "Kaya Scodelario", + "Geoffrey Rush", + "Kevin McNally", + "Stephen Graham", + "Martin Klebba", + "Paul McCartney" + ], + "genres": [ + "Action", + "Adventure", + "Fantasy", + "Comedy" + ] + }, + { + "title": "Buena Vista Social Club: Adios", + "year": 2017, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "War Machine", + "year": 2017, + "cast": [ + "Michael Hastings", + "(book)", + "Brad Pitt", + "Anthony Michael Hall", + "Topher Grace", + "Anthony Hayes", + "John Magaro", + "Emory Cohen", + "Daniel Betts", + "Lakeith Stanfield", + "RJ Cyler", + "Aymen Hamdouchi", + "Alan Ruck", + "Meg Tilly", + "Will Poulter", + "Ben Kingsley", + "Tilda Swinton" + ], + "genres": [ + "Comedy", + "Drama", + "War" + ] + }, + { + "title": "Wonder Woman", + "year": 2017, + "cast": [ + "Gal Gadot", + "Chris Pine", + "Connie Nielsen", + "Robin Wright", + "Lucy Davis", + "Lisa Loven Kongsli", + "Danny Huston", + "David Thewlis", + "Ewen Bremner", + "Saïd Taghmaoui", + "Elena Anaya" + ], + "genres": [ + "Superhero", + "Action", + "Adventure", + "Fantasy", + "Drama", + "War" + ] + }, + { + "title": "Captain Underpants: The First Epic Movie", + "year": 2017, + "cast": [ + "Ed Helms", + "Kevin Hart", + "Thomas Middleditch", + "Nick Kroll", + "Anna Kendrick", + "Jordan Peele", + "Kristen Schaal" + ], + "genres": [ + "Animated", + "Action", + "Comedy", + "Family" + ] + }, + { + "title": "Dean", + "year": 2017, + "cast": [ + "Demetri Martin", + "Kevin Kline", + "Gillian Jacobs", + "Mary Steenburgen", + "Reid Scott", + "Rory Scovel", + "Christine Woods", + "Ginger Gonzaga", + "Peter Scolari", + "Briga Heelan" + ], + "genres": [ + "Comedy", + "Drama", + "Romance" + ] + }, + { + "title": "The Mummy", + "year": 2017, + "cast": [ + "Tom Cruise", + "Russell Crowe", + "Sofia Boutella", + "Annabelle Wallis", + "Jake Johnson", + "Marwan Kenzari", + "Courtney B. Vance" + ], + "genres": [ + "Action", + "Adventure", + "Fantasy", + "Horror" + ] + }, + { + "title": "It Comes at Night", + "year": 2017, + "cast": [ + "Joel Edgerton", + "Riley Keough", + "Christopher Abbott", + "Kelvin Harrison Jr.", + "Carmen Ejogo" + ], + "genres": [ + "Horror", + "Mystery" + ] + }, + { + "title": "My Cousin Rachel", + "year": 2017, + "cast": [ + "Rachel Weisz", + "Sam Claflin", + "Iain Glen", + "Holliday Grainger" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Megan Leavey", + "year": 2017, + "cast": [ + "Kate Mara", + "Edie Falco", + "Common", + "Ramón Rodríguez", + "Tom Felton" + ], + "genres": [ + "Biography", + "War" + ] + }, + { + "title": "Beatriz at Dinner", + "year": 2017, + "cast": [ + "Salma Hayek", + "Chloë Sevigny", + "Connie Britton", + "John Lithgow", + "Jay Duplass", + "David Warshofsky", + "Amy Landecker", + "John Early" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Cars 3", + "year": 2017, + "cast": [ + "Owen Wilson", + "Larry the Cable Guy", + "Bonnie Hunt", + "Cheech Marin", + "Michael Wallis", + "Cristela Alonzo", + "Armie Hammer", + "Paul Dooley" + ], + "genres": [ + "Animated", + "Sports", + "Comedy", + "Drama" + ] + }, + { + "title": "Rough Night", + "year": 2017, + "cast": [ + "Scarlett Johansson", + "Zoë Kravitz", + "Kate McKinnon", + "Jillian Bell", + "Ilana Glazer", + "Paul W. Downs", + "Demi Moore", + "Ty Burrell", + "Colton Haynes" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "All Eyez on Me", + "year": 2017, + "cast": [ + "Demetrius Shipp Jr.", + "Kat Graham", + "Lauren Cohan", + "Hill Harper", + "Danai Gurira" + ], + "genres": [ + "Biography", + "Drama" + ] + }, + { + "title": "47 Meters Down", + "year": 2017, + "cast": [ + "Mandy Moore", + "Claire Holt", + "Matthew Modine" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Book of Henry", + "year": 2017, + "cast": [ + "Naomi Watts", + "Jacob Tremblay", + "Jaeden Lieberher", + "Dean Norris", + "Maddie Ziegler", + "Sarah Silverman", + "Lee Pace", + "Bobby Moynihan", + "Tonya Pinkins" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Transformers: The Last Knight", + "year": 2017, + "cast": [ + "Mark Wahlberg", + "Anthony Hopkins", + "Isabela Moner", + "Josh Duhamel", + "John Turturro", + "Stanley Tucci", + "Mitch Pileggi", + "Jerrod Carmichael", + "Laura Haddock", + "Santiago Cabrera", + "Peter Cullen", + "John Goodman", + "John DiMaggio" + ], + "genres": [ + "Action", + "Adventure", + "Science Fiction" + ] + }, + { + "title": "The Beguiled", + "year": 2017, + "cast": [ + "Colin Farrell", + "Nicole Kidman", + "Kirsten Dunst", + "Elle Fanning", + "Angourie Rice", + "Oona Laurence" + ], + "genres": [ + "Drama", + "Western" + ] + }, + { + "title": "The Big Sick", + "year": 2017, + "cast": [ + "Kumail Nanjiani", + "Zoe Kazan", + "Holly Hunter", + "Ray Romano" + ], + "genres": [ + "Romance", + "Comedy", + "Drama" + ] + }, + { + "title": "The Bad Batch", + "year": 2017, + "cast": [ + "Suki Waterhouse", + "Jason Momoa", + "Giovanni Ribisi", + "Yolonda Ross", + "Diego Luna", + "Keanu Reeves", + "Jim Carrey" + ], + "genres": [ + "Romance", + "Horror", + "Thriller" + ] + }, + { + "title": "Baby Driver", + "year": 2017, + "cast": [ + "Ansel Elgort", + "Lily James", + "Jamie Foxx", + "Jon Hamm", + "Kevin Spacey", + "Jon Bernthal", + "Eiza González" + ], + "genres": [ + "Comedy", + "Action", + "Crime" + ] + }, + { + "title": "Okja", + "year": 2017, + "cast": [ + "Tilda Swinton", + "Paul Dano", + "Ahn Seo-hyun", + "Byun Hee-bong", + "Steven Yeun", + "Lily Collins", + "Yoon Je-moon", + "Shirley Henderson", + "Daniel Henshall", + "Devon Bostick", + "Choi Woo-shik", + "Giancarlo Esposito", + "Jake Gyllenhaal" + ], + "genres": [ + "Action", + "Adventure", + "Drama", + "Fantasy" + ] + }, + { + "title": "Despicable Me 3", + "year": 2017, + "cast": [ + "Steve Carell", + "Kristen Wiig", + "Trey Parker", + "Miranda Cosgrove", + "Dana Gaier", + "Nev Scharrel", + "Steve Coogan", + "Jenny Slate", + "Julie Andrews" + ], + "genres": [ + "Animated", + "Comedy", + "Adventure", + "Action" + ] + }, + { + "title": "The House", + "year": 2017, + "cast": [ + "Will Ferrell", + "Amy Poehler", + "Ryan Simpkins", + "Jason Mantzoukas", + "Nick Kroll", + "Cedric Yarbrough", + "Jeremy Renner" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Little Hours", + "year": 2017, + "cast": [ + "Alison Brie", + "Dave Franco", + "Kate Micucci", + "Aubrey Plaza", + "John C. Reilly", + "Molly Shannon", + "Fred Armisen", + "Jemima Kirke", + "Lauren Weedman", + "Nick Offerman", + "Paul Reiser", + "Adam Pally", + "Paul Weitz", + "Jon Gabrus" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Inconceivable", + "year": 2017, + "cast": [ + "Nicolas Cage", + "Faye Dunaway", + "Gina Gershon", + "Natalie Eva Marie" + ], + "genres": [ + "Drama", + "Thriller" + ] + }, + { + "title": "2:22", + "year": 2017, + "cast": [ + "Michiel Huisman", + "Teresa Palmer", + "Sam Reid", + "Simone Kessell", + "Maeve Dermody", + "Kerry Armstrong", + "John Waters" + ], + "genres": [ + "Drama", + "Thriller" + ] + }, + { + "title": "A Ghost Story", + "year": 2017, + "cast": [ + "Casey Affleck", + "Rooney Mara" + ], + "genres": [ + "Drama", + "Fantasy", + "Horror", + "Romance" + ] + }, + { + "title": "Spider-Man: Homecoming", + "year": 2017, + "cast": [ + "Tom Holland", + "Michael Keaton", + "Zendaya", + "Donald Glover", + "Jacob Batalon", + "Laura Harrier", + "Tony Revolori", + "Tyne Daly", + "Bokeem Woodbine", + "Marisa Tomei", + "Robert Downey Jr." + ], + "genres": [ + "Action", + "Adventure", + "Superhero", + "Comedy", + "Science Fiction" + ] + }, + { + "title": "War for the Planet of the Apes", + "year": 2017, + "cast": [ + "Andy Serkis", + "Gabriel Chavarria", + "Woody Harrelson", + "Judy Greer", + "Steve Zahn" + ], + "genres": [ + "Science Fiction", + "Adventure", + "Drama", + "Action" + ] + }, + { + "title": "Wish Upon", + "year": 2017, + "cast": [ + "Joey King", + "Ryan Phillippe", + "Ki Hong Lee", + "Mitchell Slaggert", + "Shannon Purser", + "Sydney Park", + "Kevin Hanchard", + "Sherilyn Fenn" + ], + "genres": [ + "Thriller", + "Horror" + ] + }, + { + "title": "Dunkirk", + "year": 2017, + "cast": [ + "Fionn Whitehead", + "Tom Hardy", + "Cillian Murphy", + "Mark Rylance", + "Kenneth Branagh", + "Harry Styles", + "James D'Arcy", + "Jack Lowden", + "Kevin Guthrie" + ], + "genres": [ + "Action", + "War", + "Drama", + "Historical", + "Adventure", + "Thriller" + ] + }, + { + "title": "Valerian and the City of a Thousand Planets", + "year": 2017, + "cast": [ + "Dane DeHaan", + "Cara Delevingne", + "Clive Owen", + "Rihanna", + "Ethan Hawke", + "Herbie Hancock", + "Kris Wu", + "Rutger Hauer" + ], + "genres": [ + "Science Fiction", + "Action", + "Adventure" + ] + }, + { + "title": "Girls Trip", + "year": 2017, + "cast": [ + "Regina Hall", + "Queen Latifah", + "Jada Pinkett Smith", + "Tiffany Haddish", + "Larenz Tate", + "Mike Colter", + "Kofi Siriboe" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "First Kill", + "year": 2017, + "cast": [ + "Hayden Christensen", + "Bruce Willis", + "Gethin Anthony", + "Megan Leonard", + "Tyler Jon Olson", + "Shea Buckner", + "Ty Shelton" + ], + "genres": [ + "Thriller", + "Action" + ] + }, + { + "title": "Atomic Blonde", + "year": 2017, + "cast": [ + "Charlize Theron", + "James McAvoy", + "John Goodman", + "Sofia Boutella", + "Toby Jones", + "Eddie Marsan" + ], + "genres": [ + "Spy", + "Action", + "Thriller" + ] + }, + { + "title": "The Emoji Movie", + "year": 2017, + "cast": [ + "T. J. Miller", + "Anna Faris", + "James Corden", + "Jennifer Coolidge", + "Rob Riggle", + "Steven Wright", + "Patrick Stewart" + ], + "genres": [ + "Animated", + "Comedy", + "Adventure" + ] + }, + { + "title": "An Inconvenient Sequel: Truth to Power", + "year": 2017, + "cast": [ + "Al Gore" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Detroit", + "year": 2017, + "cast": [ + "John Boyega", + "Will Poulter", + "Algee Smith", + "Jacob Latimore", + "Jason Mitchell", + "Hannah Murray", + "Kaitlyn Dever", + "Jack Reynor", + "Ben O'Toole", + "John Krasinski", + "Anthony Mackie" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Brigsby Bear", + "year": 2017, + "cast": [ + "Kyle Mooney", + "Mark Hamill", + "Claire Danes", + "Greg Kinnear", + "Andy Samberg", + "Matt Walsh", + "Michaela Watkins", + "Beck Bennett" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Menashe", + "year": 2017, + "cast": [ + "Menashe Lustig", + "Ruben Nidorski", + "Yoel Weisshaus", + "Meyer Schwartz" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Dark Tower", + "year": 2017, + "cast": [ + "Idris Elba", + "Matthew McConaughey", + "Tom Taylor", + "Abbey Lee Kershaw", + "Katheryn Winnick", + "Jackie Earle Haley", + "Claudia Kim" + ], + "genres": [ + "Action", + "Fantasy", + "Adventure", + "Horror", + "Science Fiction", + "Western" + ] + }, + { + "title": "Kidnap", + "year": 2017, + "cast": [ + "Halle Berry", + "Sage Correa", + "Lew Temple", + "Chris McGinn" + ], + "genres": [ + "Action", + "Thriller" + ] + }, + { + "title": "Step", + "year": 2017, + "cast": [ + "Blessin Giraldo", + "Cori Grainger", + "Tayla Solomon", + "Gari McIntyre", + "Paula Dofat" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Wind River", + "year": 2017, + "cast": [ + "Jeremy Renner", + "Elizabeth Olsen", + "Jon Bernthal", + "Kelsey Chow" + ], + "genres": [ + "Drama", + "Thriller" + ] + }, + { + "title": "Armed Response", + "year": 2017, + "cast": [ + "Wesley Snipes", + "Anne Heche", + "Dave Annable", + "Seth Rollins", + "Gene Simmons", + "Mo Gallini" + ], + "genres": [ + "Thriller", + "Science Fiction", + "Action" + ] + }, + { + "title": "Annabelle: Creation", + "year": 2017, + "cast": [ + "Miranda Otto", + "Anthony LaPaglia", + "Stephanie Sigman", + "Talitha Bateman", + "Lulu Wilson", + "Tayler Buck", + "Alicia Vela-Bailey" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Glass Castle", + "year": 2017, + "cast": [ + "Brie Larson", + "Naomi Watts", + "Woody Harrelson", + "Sarah Snook" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Nut Job 2: Nutty by Nature", + "year": 2017, + "cast": [ + "Will Arnett", + "Katherine Heigl", + "Maya Rudolph", + "Sebastian Maniscalco", + "Kari Wahlgren", + "Bobby Moynihan", + "Isabela Moner", + "Bobby Cannavale", + "Gabriel Iglesias", + "Jeff Dunham", + "Peter Stormare" + ], + "genres": [ + "Animated", + "Comedy" + ] + }, + { + "title": "Good Time", + "year": 2017, + "cast": [ + "Robert Pattinson", + "Jennifer Jason Leigh", + "Ben Safdie", + "Barkhad Abdi", + "Buddy Duress", + "Taliah Webster" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Ingrid Goes West", + "year": 2017, + "cast": [ + "Aubrey Plaza", + "Elizabeth Olsen", + "O'Shea Jackson Jr.", + "Wyatt Russell", + "Billy Magnussen" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Only Living Boy in New York", + "year": 2017, + "cast": [ + "Callum Turner", + "Kate Beckinsale", + "Pierce Brosnan", + "Cynthia Nixon", + "Jeff Bridges", + "Kiersey Clemons", + "Debi Mazar", + "Bill Camp", + "Tate Donovan" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Hitman's Bodyguard", + "year": 2017, + "cast": [ + "Ryan Reynolds", + "Samuel L. Jackson", + "Gary Oldman", + "Élodie Yung", + "Salma Hayek" + ], + "genres": [ + "Action", + "Comedy" + ] + }, + { + "title": "Logan Lucky", + "year": 2017, + "cast": [ + "Channing Tatum", + "Adam Driver", + "Riley Keough", + "Daniel Craig", + "Hilary Swank", + "Seth MacFarlane", + "Katie Holmes", + "Katherine Waterston", + "Sebastian Stan" + ], + "genres": [ + "Action", + "Comedy" + ] + }, + { + "title": "Patti Cake$", + "year": 2017, + "cast": [ + "Danielle Macdonald", + "McCaul Lombardi" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "All Saints", + "year": 2017, + "cast": [ + "John Corbett", + "Cara Buono" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Served Like A Girl", + "year": 2017, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "Beach Rats", + "year": 2017, + "cast": [ + "Harris Dickinson", + "Madeline Weinstein", + "Kate Hodge" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Tulip Fever", + "year": 2017, + "cast": [ + "Alicia Vikander", + "Dane DeHaan", + "Christoph Waltz", + "Holliday Grainger", + "Jack O'Connell", + "Zach Galifianakis", + "Judi Dench", + "Matthew Morrison", + "Tom Hollander", + "Cara Delevingne" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "Unlocked", + "year": 2017, + "cast": [ + "Noomi Rapace", + "Orlando Bloom", + "Toni Collette", + "John Malkovich", + "Michael Douglas", + "Jessica Boone" + ], + "genres": [ + "Action", + "Thriller" + ] + }, + { + "title": "It", + "year": 2017, + "cast": [ + "Bill Skarsgård", + "Jaeden Lieberher", + "Finn Wolfhard", + "Jack Dylan Grazer", + "Sophia Lillis", + "Wyatt Oleff", + "Chosen Jacobs", + "Jeremy Ray Taylor" + ], + "genres": [ + "Horror", + "Fantasy", + "Drama" + ] + }, + { + "title": "Home Again", + "year": 2017, + "cast": [ + "Reese Witherspoon", + "Candice Bergen", + "Michael Sheen", + "Lake Bell", + "Nat Wolff", + "Reid Scott", + "Pico Alexander" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "9/11", + "year": 2017, + "cast": [ + "Charlie Sheen", + "Whoopi Goldberg" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Good Catholic", + "year": 2017, + "cast": [ + "Zachary Spicer", + "Wrenn Schmidt", + "John C. McGinley", + "Danny Glover" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Gun Shy", + "year": 2017, + "cast": [ + "Antonio Banderas", + "Olga Kurylenko" + ], + "genres": [ + "Action" + ] + }, + { + "title": "American Assassin", + "year": 2017, + "cast": [ + "Dylan O'Brien", + "Michael Keaton", + "Sanaa Lathan", + "Shiva Negar", + "Taylor Kitsch" + ], + "genres": [ + "Action", + "Thriller" + ] + }, + { + "title": "Mother!", + "year": 2017, + "cast": [ + "Jennifer Lawrence", + "Javier Bardem", + "Michelle Pfeiffer", + "Domhnall Gleeson", + "Ed Harris", + "Kristen Wiig" + ], + "genres": [ + "Drama", + "Horror" + ] + }, + { + "title": "Brad's Status", + "year": 2017, + "cast": [ + "Ben Stiller", + "Michael Sheen", + "Luke Wilson", + "Jemaine Clement", + "Jenna Fischer" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Kingsman: The Golden Circle", + "year": 2017, + "cast": [ + "Colin Firth", + "Julianne Moore", + "Taron Egerton", + "Mark Strong", + "Halle Berry", + "Elton John", + "Channing Tatum", + "Jeff Bridges" + ], + "genres": [ + "Action", + "Adventure", + "Comedy" + ] + }, + { + "title": "The Lego Ninjago Movie", + "year": 2017, + "cast": [ + "Jackie Chan", + "Justin Theroux", + "Dave Franco", + "Olivia Munn", + "Michael Peña", + "Abbi Jacobson", + "Kumail Nanjiani", + "Zach Woods", + "Fred Armisen" + ], + "genres": [ + "Animated", + "Action", + "Comedy", + "Martial Arts" + ] + }, + { + "title": "Stronger", + "year": 2017, + "cast": [ + "Jake Gyllenhaal", + "Tatiana Maslany", + "Miranda Richardson", + "Clancy Brown" + ], + "genres": [ + "Biography", + "Drama" + ] + }, + { + "title": "Battle of the Sexes", + "year": 2017, + "cast": [ + "Emma Stone", + "Steve Carell", + "Andrea Riseborough", + "Elisabeth Shue", + "Austin Stowell", + "Sarah Silverman", + "Alan Cumming" + ], + "genres": [ + "Biography", + "Sports", + "Comedy", + "Drama" + ] + }, + { + "title": "Woodshock", + "year": 2017, + "cast": [ + "Kirsten Dunst", + "Joe Cole", + "Pilou Asbæk", + "Lorelei Linklater", + "Jack Kilmer" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Victoria & Abdul", + "year": 2017, + "cast": [ + "Judi Dench", + "Ali Fazal", + "Eddie Izzard", + "Tim Pigott-Smith", + "Adeel Akhtar" + ], + "genres": [ + "Biography", + "Drama" + ] + }, + { + "title": "Jeepers Creepers 3", + "year": 2017, + "cast": [ + "Jonathan Breck", + "Meg Foster", + "Brandon James", + "Gabrielle Haugh", + "Jordan Salloum", + "Ryan Moore", + "Brandon Smith", + "Gina Philips", + "Christine Ko", + "Stan Shaw" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "American Made", + "year": 2017, + "cast": [ + "Tom Cruise", + "Domhnall Gleeson", + "Sarah Wright", + "Jayma Mays", + "Jesse Plemons" + ], + "genres": [ + "Biography", + "Action", + "Comedy", + "Crime", + "Drama", + "Historical", + "Thriller" + ] + }, + { + "title": "Flatliners", + "year": 2017, + "cast": [ + "Ellen Page", + "Diego Luna", + "Nina Dobrev", + "James Norton", + "Kiersey Clemons", + "Kiefer Sutherland" + ], + "genres": [ + "Horror", + "Science Fiction", + "Drama" + ] + }, + { + "title": "Mark Felt: The Man Who Brought Down the White House", + "year": 2017, + "cast": [ + "Liam Neeson", + "Diane Lane", + "Marton Csokas", + "Ike Barinholtz", + "Tony Goldwyn", + "Bruce Greenwood", + "Michael C. Hall", + "Brian d'Arcy James", + "Josh Lucas", + "Eddie Marsan", + "Wendi McLendon-Covey", + "Maika Monroe" + ], + "genres": [ + "Biography", + "Drama", + "Thriller" + ] + }, + { + "title": "Blade Runner 2049", + "year": 2017, + "cast": [ + "Harrison Ford", + "Ryan Gosling", + "Ana de Armas", + "Mackenzie Davis", + "Sylvia Hoeks", + "Lennie James", + "Carla Juri", + "Robin Wright", + "Dave Bautista", + "Jared Leto" + ], + "genres": [ + "Noir", + "Science Fiction", + "Thriller", + "Mystery" + ] + }, + { + "title": "The Mountain Between Us", + "year": 2017, + "cast": [ + "Idris Elba", + "Kate Winslet", + "Dermot Mulroney", + "Waleed Zuaiter" + ], + "genres": [ + "Romance", + "Disaster" + ] + }, + { + "title": "My Little Pony: The Movie", + "year": 2017, + "cast": [ + "Tara Strong", + "Ashleigh Ball", + "Andrea Libman", + "Tabitha St. Germain", + "Cathy Weseluck", + "Kristin Chenoweth", + "Emily Blunt", + "Michael Peña", + "Uzo Aduba", + "Liev Schreiber", + "Taye Diggs", + "Sia", + "Zoe Saldana" + ], + "genres": [ + "Animated", + "Adventure", + "Comedy", + "Family", + "Fantasy", + "Musical" + ] + }, + { + "title": "The Florida Project", + "year": 2017, + "cast": [ + "Willem Dafoe", + "Bria Vinaite", + "Brooklynn Prince", + "Valeria Cotto", + "Caleb Landry Jones" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Brawl in Cell Block 99", + "year": 2017, + "cast": [ + "Vince Vaughn", + "Jennifer Carpenter", + "Don Johnson", + "Udo Kier" + ], + "genres": [ + "Drama", + "Action", + "Thriller" + ] + }, + { + "title": "Happy Death Day", + "year": 2017, + "cast": [ + "Jessica Rothe", + "Israel Broussard", + "Ruby Modine" + ], + "genres": [ + "Horror", + "Mystery", + "Thriller" + ] + }, + { + "title": "Marshall", + "year": 2017, + "cast": [ + "Chadwick Boseman", + "Josh Gad", + "Kate Hudson", + "Dan Stevens", + "James Cromwell", + "Sterling K. Brown" + ], + "genres": [ + "Biography", + "Drama", + "Thriller" + ] + }, + { + "title": "Breathe", + "year": 2017, + "cast": [ + "Andrew Garfield", + "Claire Foy", + "Tom Hollander", + "Hugh Bonneville", + "Dean-Charles Chapman", + "Miranda Raison", + "Stephen Mangan" + ], + "genres": [ + "Biography", + "Drama" + ] + }, + { + "title": "Goodbye Christopher Robin", + "year": 2017, + "cast": [ + "Domhnall Gleeson", + "Margot Robbie", + "Kelly Macdonald" + ], + "genres": [ + "Biography", + "Drama" + ] + }, + { + "title": "Professor Marston and the Wonder Women", + "year": 2017, + "cast": [ + "Luke Evans", + "Rebecca Hall", + "Bella Heathcote", + "Connie Britton", + "Oliver Platt" + ], + "genres": [ + "Biography", + "Drama" + ] + }, + { + "title": "Blood Money", + "year": 2017, + "cast": [ + "John Cusack", + "Ellar Coltrane", + "Willa Fitzgerald", + "Jacob Artist" + ], + "genres": [ + "Drama", + "Crime" + ] + }, + { + "title": "Geostorm", + "year": 2017, + "cast": [ + "Gerard Butler", + "Abbie Cornish", + "Alexandra Lara", + "Jim Sturgess", + "Amr Waked", + "Ed Harris", + "Andy García" + ], + "genres": [ + "Action", + "Science Fiction", + "Thriller" + ] + }, + { + "title": "Only the Brave", + "year": 2017, + "cast": [ + "Ben Hardy", + "Jennifer Connelly", + "Taylor Kitsch", + "Miles Teller", + "James Badge Dale", + "Josh Brolin", + "Jeff Bridges" + ], + "genres": [ + "Action", + "Biography", + "Drama" + ] + }, + { + "title": "Boo 2! A Madea Halloween", + "year": 2017, + "cast": [ + "Tyler Perry", + "Cassi Davis", + "Patrice Lovely", + "Yousef Erakat", + "Diamond White", + "Lexy Panterra", + "Andre Hall", + "Brock O'Hurn", + "Tito Ortiz" + ], + "genres": [ + "Comedy", + "Horror" + ] + }, + { + "title": "Same Kind of Different as Me", + "year": 2017, + "cast": [ + "Renée Zellweger", + "Jon Voight", + "Djimon Hounsou", + "Olivia Holt", + "Greg Kinnear", + "Stephanie Leigh Schlund" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Leatherface", + "year": 2017, + "cast": [ + "Stephen Dorff", + "Vanessa Grasse", + "Sam Strike", + "Lili Taylor", + "James Bloor", + "Jessica Madsen", + "Sam Coleman", + "Finn Jones" + ], + "genres": [ + "Horror", + "Thriller" + ] + }, + { + "title": "Wonderstruck", + "year": 2017, + "cast": [ + "Oakes Fegley", + "Julianne Moore", + "Millicent Simmonds", + "Michelle Williams", + "Jaden Michael", + "Tom Noonan", + "James Urbaniak", + "Amy Hargreaves" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Killing of a Sacred Deer", + "year": 2017, + "cast": [ + "Colin Farrell", + "Nicole Kidman", + "Barry Keoghan", + "Raffey Cassidy", + "Sunny Suljic", + "Alicia Silverstone", + "Bill Camp" + ], + "genres": [ + "Comedy", + "Drama", + "Horror", + "Mystery", + "Thriller" + ] + }, + { + "title": "Thank You for Your Service", + "year": 2017, + "cast": [ + "Miles Teller", + "Haley Bennett", + "Beulah Koale", + "Amy Schumer", + "Scott Haze" + ], + "genres": [ + "Biography", + "War", + "Drama" + ] + }, + { + "title": "Suburbicon", + "year": 2017, + "cast": [ + "Matt Damon", + "Julianne Moore", + "Oscar Isaac" + ], + "genres": [ + "Crime", + "Comedy", + "Drama", + "Mystery", + "Thriller" + ] + }, + { + "title": "Jigsaw", + "year": 2017, + "cast": [ + "Tobin Bell", + "Mandela Van Peebles", + "Laura Vandervoort", + "Brittany Allen", + "Callum Keith Rennie", + "Matt Passmore" + ], + "genres": [ + "Crime", + "Horror", + "Mystery", + "Thriller" + ] + }, + { + "title": "Novitiate", + "year": 2017, + "cast": [ + "Margaret Qualley", + "Melissa Leo", + "Morgan Saylor", + "Dianna Agron", + "Julianne Nicholson", + "Liana Liberato", + "Denis O'Hare", + "Maddie Hasson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "All I See Is You", + "year": 2017, + "cast": [ + "Blake Lively", + "Jason Clarke", + "Yvonne Strahovski", + "Danny Huston", + "Wes Chatham" + ], + "genres": [ + "Drama", + "Thriller" + ] + }, + { + "title": "Amityville: The Awakening", + "year": 2017, + "cast": [ + "Bella Thorne", + "Jennifer Jason Leigh", + "Cameron Monaghan", + "Mckenna Grace", + "Jennifer Morrison", + "Kurtwood Smith" + ], + "genres": [ + "Thriller", + "Horror" + ] + }, + { + "title": "Thor: Ragnarok", + "year": 2017, + "cast": [ + "Chris Hemsworth", + "Tom Hiddleston", + "Cate Blanchett", + "Idris Elba", + "Jeff Goldblum", + "Tessa Thompson", + "Karl Urban", + "Mark Ruffalo", + "Anthony Hopkins" + ], + "genres": [ + "Superhero", + "Action", + "Adventure", + "Fantasy", + "Science Fiction", + "Comedy" + ] + }, + { + "title": "A Bad Moms Christmas", + "year": 2017, + "cast": [ + "Mila Kunis", + "Kristen Bell", + "Kathryn Hahn", + "Jay Hernandez", + "Susan Sarandon", + "Christine Baranski" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Last Flag Flying", + "year": 2017, + "cast": [ + "Steve Carell", + "Bryan Cranston", + "Laurence Fishburne", + "Yul Vazquez" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Lady Bird", + "year": 2017, + "cast": [ + "Saoirse Ronan", + "Laurie Metcalf", + "Tracy Letts", + "Lucas Hedges", + "Timothée Chalamet", + "Beanie Feldstein", + "Stephen McKinley Henderson", + "Lois Smith" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Murder on the Orient Express", + "year": 2017, + "cast": [ + "Kenneth Branagh", + "Penélope Cruz", + "Willem Dafoe", + "Judi Dench", + "Johnny Depp", + "Josh Gad", + "Derek Jacobi", + "Leslie Odom Jr.", + "Michelle Pfeiffer", + "Daisy Ridley", + "Lucy Boynton", + "Sergei Polunin" + ], + "genres": [ + "Mystery", + "Crime", + "Drama" + ] + }, + { + "title": "Daddy's Home 2", + "year": 2017, + "cast": [ + "Will Ferrell", + "Mark Wahlberg", + "Linda Cardellini", + "John Cena", + "Mel Gibson", + "John Lithgow" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "LBJ", + "year": 2017, + "cast": [ + "Woody Harrelson", + "Richard Jenkins", + "Bill Pullman", + "Kim Allen", + "Michael Stahl-David", + "Jennifer Jason Leigh", + "Jeffrey Donovan", + "Doug McKeon", + "Michael Mosley" + ], + "genres": [ + "Biography", + "Drama" + ] + }, + { + "title": "Three Billboards Outside Ebbing, Missouri", + "year": 2017, + "cast": [ + "Frances McDormand", + "Woody Harrelson", + "Sam Rockwell", + "John Hawkes", + "Peter Dinklage" + ], + "genres": [ + "Comedy", + "Crime", + "Drama", + "Thriller" + ] + }, + { + "title": "Mayhem", + "year": 2017, + "cast": [ + "Steven Yeun", + "Samara Weaving", + "Steven Brand", + "Caroline Chikezie", + "Kerry Fox", + "Dallas Roberts" + ], + "genres": [ + "Action", + "Horror", + "Comedy" + ] + }, + { + "title": "Justice League", + "year": 2017, + "cast": [ + "Ben Affleck", + "Henry Cavill", + "Gal Gadot", + "Jason Momoa", + "Ezra Miller", + "Ray Fisher", + "Amy Adams", + "Jesse Eisenberg", + "Amber Heard", + "Jeremy Irons", + "J. K. Simmons", + "Willem Dafoe", + "Julian Lewis Jones", + "Ciarán Hinds" + ], + "genres": [ + "Superhero", + "Action", + "Adventure", + "Fantasy", + "Science Fiction" + ] + }, + { + "title": "The Star", + "year": 2017, + "cast": [ + "Steven Yeun", + "Gina Rodriguez", + "Zachary Levi", + "Keegan-Michael Key", + "Kelly Clarkson", + "Patricia Heaton", + "Kristin Chenoweth", + "Tracy Morgan", + "Tyler Perry", + "Oprah Winfrey" + ], + "genres": [ + "Animated", + "Adventure", + "Comedy" + ] + }, + { + "title": "Wonder", + "year": 2017, + "cast": [ + "Julia Roberts", + "Jacob Tremblay", + "Owen Wilson", + "Mandy Patinkin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Cook Off!", + "year": 2017, + "cast": [ + "Cathryn Michon", + "Melissa McCarthy", + "Wendi McLendon-Covey", + "Diedrich Bader", + "Gary Anthony Williams", + "Ben Falcone", + "Niecy Nash", + "Louie Anderson", + "Stephen Root" + ], + "genres": [ + "Satire", + "Comedy" + ] + }, + { + "title": "Mr. Roosevelt", + "year": 2017, + "cast": [ + "Noël Wells", + "Nick Thune", + "Britt Lower", + "Danielle Pineda", + "Andre Hyland", + "Doug Benson", + "Armen Weitzman", + "Sergio Cilli" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Roman J. Israel, Esq.", + "year": 2017, + "cast": [ + "Denzel Washington", + "Colin Farrell", + "Carmen Ejogo", + "Shelley Hennig" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Coco", + "year": 2017, + "cast": [ + "Anthony Gonzalez", + "Gael García Bernal", + "Benjamin Bratt", + "Renée Victor", + "Ana Ofelia Murguia", + "Edward James Olmos" + ], + "genres": [ + "Animated", + "Musical", + "Fantasy", + "Mystery" + ] + }, + { + "title": "Darkest Hour", + "year": 2017, + "cast": [ + "Gary Oldman", + "Ben Mendelsohn", + "Kristin Scott Thomas", + "Lily James", + "Stephen Dillane", + "Ronald Pickup" + ], + "genres": [ + "Biography", + "War", + "Drama" + ] + }, + { + "title": "The Man Who Invented Christmas", + "year": 2017, + "cast": [ + "Dan Stevens", + "Christopher Plummer", + "Jonathan Pryce" + ], + "genres": [ + "Biography", + "Drama" + ] + }, + { + "title": "Call Me by Your Name", + "year": 2017, + "cast": [ + "Timothée Chalamet", + "Armie Hammer", + "Michael Stuhlbarg", + "Amira Casar", + "Esther Garrel", + "Victoire Du Bois" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Disaster Artist", + "year": 2017, + "cast": [ + "James Franco", + "Dave Franco", + "Seth Rogen", + "Alison Brie", + "Ari Graynor", + "Josh Hutcherson", + "Jacki Weaver" + ], + "genres": [ + "Biography", + "Comedy", + "Drama" + ] + }, + { + "title": "The Shape of Water", + "year": 2017, + "cast": [ + "Sally Hawkins", + "Michael Shannon", + "Richard Jenkins", + "Doug Jones", + "Lauren Lee Smith", + "Michael Stuhlbarg", + "Octavia Spencer" + ], + "genres": [ + "Fantasy", + "Horror", + "Romance", + "Science Fiction", + "Thriller" + ] + }, + { + "title": "Wonder Wheel", + "year": 2017, + "cast": [ + "Kate Winslet", + "Justin Timberlake", + "Juno Temple", + "Jim Belushi", + "Tony Sirico" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "I, Tonya", + "year": 2017, + "cast": [ + "Margot Robbie", + "Sebastian Stan", + "Allison Janney", + "Julianne Nicholson", + "Mckenna Grace" + ], + "genres": [ + "Biography", + "Drama" + ] + }, + { + "title": "Just Getting Started", + "year": 2017, + "cast": [ + "Morgan Freeman", + "Tommy Lee Jones", + "Rene Russo" + ], + "genres": [ + "Action", + "Comedy" + ] + }, + { + "title": "Star Wars: The Last Jedi", + "year": 2017, + "cast": [ + "Mark Hamill", + "Carrie Fisher", + "Adam Driver", + "Daisy Ridley", + "John Boyega", + "Oscar Isaac", + "Lupita Nyong'o", + "Domhnall Gleeson", + "Benicio del Toro", + "Laura Dern", + "Anthony Daniels", + "Gwendoline Christie", + "Andy Serkis" + ], + "genres": [ + "Action", + "Adventure", + "Fantasy", + "Science Fiction" + ] + }, + { + "title": "Ferdinand", + "year": 2017, + "cast": [ + "John Cena", + "David Tennant", + "Anthony Anderson", + "Gabriel Iglesias", + "Kate McKinnon", + "Boris Kodjoe", + "Miguel Ángel Silvestre", + "Raúl Esparza", + "Jerrod Carmichael", + "Gina Rodriguez", + "Daveed Diggs", + "Bobby Cannavale", + "Sally Phillips", + "Flula Borg", + "Karla Martínez" + ], + "genres": [ + "Animated", + "Adventure", + "Comedy", + "Family" + ] + }, + { + "title": "Beyond Skyline", + "year": 2017, + "cast": [ + "Frank Grillo", + "Bojana Novakovic", + "Callan Mulvey", + "Iko Uwais", + "Yayan Ruhian", + "Betty Gabriel", + "Antonio Fargas" + ], + "genres": [ + "Science Fiction", + "Action", + "Thriller" + ] + }, + { + "title": "Jumanji: Welcome to the Jungle", + "year": 2017, + "cast": [ + "Dwayne Johnson", + "Kevin Hart", + "Jack Black", + "Nick Jonas", + "Karen Gillan" + ], + "genres": [ + "Action", + "Fantasy", + "Adventure", + "Comedy" + ] + }, + { + "title": "The Greatest Showman", + "year": 2017, + "cast": [ + "Hugh Jackman", + "Zac Efron", + "Rebecca Ferguson", + "Michelle Williams", + "Yahya Abdul-Mateen II", + "Zendaya" + ], + "genres": [ + "Biography", + "Musical", + "Drama" + ] + }, + { + "title": "Pitch Perfect 3", + "year": 2017, + "cast": [ + "Anna Kendrick", + "Anna Camp", + "Rebel Wilson", + "Brittany Snow", + "Hailee Steinfeld", + "Alexis Knapp", + "Ester Dean", + "Hana Mae Lee", + "Chrissie Fit", + "Kelley Jakle", + "Shelley Regner" + ], + "genres": [ + "Musical", + "Comedy" + ] + }, + { + "title": "Downsizing", + "year": 2017, + "cast": [ + "Matt Damon", + "Christoph Waltz", + "Hong Chau", + "Kristen Wiig" + ], + "genres": [ + "Science Fiction", + "Comedy", + "Drama" + ] + }, + { + "title": "Father Figures", + "year": 2017, + "cast": [ + "Owen Wilson", + "Ed Helms", + "J. K. Simmons", + "Terry Bradshaw", + "Ving Rhames", + "Katt Williams", + "Retta", + "June Squibb", + "Glenn Close" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Post", + "year": 2017, + "cast": [ + "Tom Hanks", + "Meryl Streep", + "Bruce Greenwood", + "Jesse Plemons", + "Bob Odenkirk", + "Sarah Paulson", + "Alison Brie", + "David Cross", + "Carrie Coon" + ], + "genres": [ + "Biography", + "Drama", + "Historical", + "Thriller" + ] + }, + { + "title": "Bright", + "year": 2017, + "cast": [ + "Will Smith", + "Joel Edgerton", + "Noomi Rapace", + "Lucy Fry", + "Edgar Ramirez" + ], + "genres": [ + "Action", + "Fantasy", + "Science Fiction" + ] + }, + { + "title": "Crooked House", + "year": 2017, + "cast": [ + "Max Irons", + "Glenn Close", + "Gillian Anderson", + "Christina Hendricks", + "Terence Stamp" + ], + "genres": [ + "Crime", + "Drama", + "Mystery" + ] + }, + { + "title": "Hostiles", + "year": 2017, + "cast": [ + "Christian Bale", + "Rosamund Pike", + "Wes Studi", + "Q'orianka Kilcher", + "Ben Foster", + "Adam Beach", + "Rory Cochrane", + "Jesse Plemons", + "Timothée Chalamet" + ], + "genres": [ + "Western" + ] + }, + { + "title": "All the Money in the World", + "year": 2017, + "cast": [ + "Michelle Williams", + "Mark Wahlberg", + "Christopher Plummer", + "Timothy Hutton", + "Charlie Plummer" + ], + "genres": [ + "Biography", + "Crime", + "Drama" + ] + }, + { + "title": "Molly's Game", + "year": 2017, + "cast": [ + "Jessica Chastain", + "Idris Elba", + "Kevin Costner", + "Brian d'Arcy James", + "Michael Cera", + "Chris O'Dowd", + "Bill Camp", + "Jeremy Strong" + ], + "genres": [ + "Biography", + "Crime", + "Drama" + ] + }, + { + "title": "Phantom Thread", + "year": 2017, + "cast": [ + "Daniel Day-Lewis", + "Lesley Manville", + "Richard Graham", + "Vicky Krieps" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Insidious: The Last Key", + "year": 2018, + "cast": [ + "Lin Shaye", + "Angus Sampson", + "Leigh Whannell", + "Spencer Locke", + "Caitlin Gerard", + "Kirk Acevedo", + "Bruce Davison" + ], + "genres": [ + "Horror", + "Thriller" + ] + }, + { + "title": "The Strange Ones", + "year": 2018, + "cast": [ + "Alex Pettyfer", + "James Freedson-Jackson", + "Emily Althaus", + "Gene Jones", + "Owen Campbell", + "Tobias Campbell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Sweet Country", + "year": 2018, + "cast": [ + "Bryan Brown", + "Sam Neill" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Commuter", + "year": 2018, + "cast": [ + "Liam Neeson", + "Vera Farmiga", + "Patrick Wilson", + "Jonathan Banks", + "Elizabeth McGovern", + "Sam Neill" + ], + "genres": [ + "Action", + "Crime", + "Drama", + "Mystery", + "Thriller" + ] + }, + { + "title": "Proud Mary", + "year": 2018, + "cast": [ + "Taraji P. Henson", + "Billy Brown", + "Danny Glover", + "Neal McDonough", + "Xander Berkeley", + "Margaret Avery" + ], + "genres": [ + "Action", + "Thriller" + ] + }, + { + "title": "Acts of Violence", + "year": 2018, + "cast": [ + "Bruce Willis", + "Cole Hauser", + "Shawn Ashmore", + "Melissa Bolona", + "Mike Epps" + ], + "genres": [ + "Action", + "Thriller" + ] + }, + { + "title": "Freak Show", + "year": 2018, + "cast": [ + "Alex Lawther", + "Abigail Breslin", + "Bette Midler", + "AnnaSophia Robb", + "Ian Nelson", + "Lorraine Toussaint", + "Laverne Cox" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Humor Me", + "year": 2018, + "cast": [ + "Jemaine Clement", + "Elliott Gould", + "Ingrid Michaelson", + "Annie Potts", + "Priscilla Lopez", + "Bebe Neuwirth", + "Maria Dizzia" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "12 Strong", + "year": 2018, + "cast": [ + "Chris Hemsworth", + "Michael Shannon", + "Michael Peña", + "Navid Negahban", + "Trevante Rhodes", + "Geoff Stults", + "Thad Luckinbill", + "Elsa Pataky", + "Rob Riggle", + "William Fichtner" + ], + "genres": [ + "War", + "Drama" + ] + }, + { + "title": "Den of Thieves", + "year": 2018, + "cast": [ + "Gerard Butler", + "50 Cent", + "Pablo Schreiber", + "O'Shea Jackson Jr.", + "Evan Jones", + "Dawn Olivieri", + "Mo McRae", + "Max Holloway" + ], + "genres": [ + "Action", + "Action", + "Thriller" + ] + }, + { + "title": "Forever My Girl", + "year": 2018, + "cast": [ + "Alex Roe", + "Jessica Rothe", + "John Benjamin Hickey" + ], + "genres": [ + "Romance", + "Musical", + "Drama" + ] + }, + { + "title": "Maze Runner: The Death Cure", + "year": 2018, + "cast": [ + "Dylan O'Brien", + "Kaya Scodelario", + "Thomas Brodie-Sangster", + "Ki Hong Lee", + "Giancarlo Esposito", + "Aidan Gillen", + "Walton Goggins", + "Barry Pepper", + "Will Poulter", + "Patricia Clarkson" + ], + "genres": [ + "Action", + "Science Fiction", + "Thriller" + ] + }, + { + "title": "The Insult", + "year": 2018, + "cast": [ + "Adel Karam", + "Camille Salameh", + "Kamel El Basha" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Please Stand By", + "year": 2018, + "cast": [ + "Dakota Fanning", + "Toni Collette", + "Alice Eve" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Winchester", + "year": 2018, + "cast": [ + "Helen Mirren", + "Jason Clarke", + "Sarah Snook", + "Angus Sampson" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "A Fantastic Woman", + "year": 2018, + "cast": [ + "Daniela Vega", + "Francisco Reyes" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Armed", + "year": 2018, + "cast": [ + "Mario Van Peebles", + "William Fichtner", + "Ryan Guzman", + "Columbus Short", + "Laz Alonso" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Cloverfield Paradox", + "year": 2018, + "cast": [ + "Daniel Brühl", + "Elizabeth Debicki", + "Aksel Hennie", + "Gugu Mbatha-Raw", + "Chris O'Dowd", + "John Ortiz", + "David Oyelowo", + "Zhang Ziyi" + ], + "genres": [ + "Science Fiction", + "Horror", + "Thriller" + ] + }, + { + "title": "The 15:17 to Paris", + "year": 2018, + "cast": [ + "Anthony Sadler", + "Alek Skarlatos", + "Spencer Stone", + "Judy Greer", + "Jenna Fischer", + "Ray Corasani" + ], + "genres": [ + "Biography", + "Drama" + ] + }, + { + "title": "Fifty Shades Freed", + "year": 2018, + "cast": [ + "Dakota Johnson", + "Jamie Dornan", + "Kim Basinger", + "Eric Johnson", + "Max Martini", + "Brant Daugherty", + "Fay Masterson", + "Luke Grimes", + "Rita Ora", + "Arielle Kebbel" + ], + "genres": [ + "Drama", + "Romance" + ] + }, + { + "title": "Peter Rabbit", + "year": 2018, + "cast": [ + "James Corden", + "Domhnall Gleeson", + "Rose Byrne", + "Margot Robbie", + "Daisy Ridley", + "Elizabeth Debicki", + "Sam Neill" + ], + "genres": [ + "Animated", + "Family", + "Comedy" + ] + }, + { + "title": "La Boda de Valentina", + "year": 2018, + "cast": [ + "Omar Chaparro", + "Marimar Vega", + "Ryan Carnes" + ], + "genres": [ + "Comedy", + "Romance" + ] + }, + { + "title": "Permission", + "year": 2018, + "cast": [ + "Rebecca Hall", + "Dan Stevens", + "Morgan Spector", + "David Joseph Craig", + "Gina Gershon", + "Jason Sudeikis" + ], + "genres": [ + "Drama", + "Romance", + "Comedy" + ] + }, + { + "title": "Monster Family", + "year": 2018, + "cast": [ + "Emily Watson", + "Jason Isaacs", + "Nick Frost", + "Jessica Brown Findlay", + "Celia Imrie", + "Catherine Tate" + ], + "genres": [ + "Animated", + "Comedy", + "Family", + "Horror" + ] + }, + { + "title": "Golden Exits", + "year": 2018, + "cast": [ + "Emily Browning", + "Adam Horowitz", + "Mary-Louise Parker", + "Jason Schwartzman", + "Chloë Sevigny", + "Analeigh Tipton" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Black Panther", + "year": 2018, + "cast": [ + "Chadwick Boseman", + "Michael B. Jordan", + "Lupita Nyong'o", + "Danai Gurira", + "Martin Freeman", + "Daniel Kaluuya", + "Letitia Wright", + "Winston Duke", + "Angela Bassett", + "Forest Whitaker", + "Andy Serkis" + ], + "genres": [ + "Superhero", + "Action", + "Adventure" + ] + }, + { + "title": "Nostalgia", + "year": 2018, + "cast": [ + "Jon Hamm", + "Nick Offerman", + "Amber Tamblyn", + "Patton Oswalt", + "Catherine Keener", + "Ellen Burstyn", + "Bruce Dern", + "John Ortiz", + "James LeGros" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Samson", + "year": 2018, + "cast": [ + "Taylor James", + "Jackson Rathbone", + "Billy Zane", + "Caitlin Leahy", + "Rutger Hauer", + "Lindsay Wagner" + ], + "genres": [ + "Action", + "Drama" + ] + }, + { + "title": "Game Night", + "year": 2018, + "cast": [ + "Jason Bateman", + "Rachel McAdams", + "Kyle Chandler", + "Billy Magnussen", + "Sharon Horgan", + "Lamorne Morris", + "Kylie Bunbury", + "Jesse Plemons", + "Michael C. Hall" + ], + "genres": [ + "Action", + "Comedy", + "Crime", + "Mystery", + "Thriller" + ] + }, + { + "title": "Annihilation", + "year": 2018, + "cast": [ + "Natalie Portman", + "Jennifer Jason Leigh", + "Gina Rodriguez", + "Tessa Thompson", + "Tuva Novotny", + "Oscar Isaac" + ], + "genres": [ + "Science Fiction", + "Fantasy", + "Action", + "Horror" + ] + }, + { + "title": "Every Day", + "year": 2018, + "cast": [ + "Angourie Rice", + "Maria Bello", + "Debby Ryan", + "Jacob Batalon", + "Justice Smith", + "Lucas Jade Zumann" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "The Lodgers", + "year": 2018, + "cast": [ + "Charlotte Vega", + "Bill Milner", + "Eugene Simon", + "David Bradley", + "Deirdre O'Kane", + "Moe Dunford" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Cured", + "year": 2018, + "cast": [ + "Ellen Page", + "Sam Keeley", + "Tom Vaughan-Lawlor" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Red Sparrow", + "year": 2018, + "cast": [ + "Jennifer Lawrence", + "Joel Edgerton", + "Matthias Schoenaerts", + "Charlotte Rampling", + "Mary-Louise Parker", + "Jeremy Irons" + ], + "genres": [ + "Action", + "Drama", + "Mystery", + "Thriller" + ] + }, + { + "title": "Pickings", + "year": 2018, + "cast": [ + "Elyse Price", + "Joel Bernard", + "Katie Vincent", + "Joe Trombino" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Death Wish", + "year": 2018, + "cast": [ + "Bruce Willis", + "Vincent D'Onofrio", + "Dean Norris", + "Kimberly Elise", + "Mike Epps", + "Elisabeth Shue", + "Camila Morrone" + ], + "genres": [ + "Action" + ] + }, + { + "title": "The Vanishing of Sidney Hall", + "year": 2018, + "cast": [ + "Logan Lerman", + "Elle Fanning", + "Michelle Monaghan", + "Nathan Lane", + "Kyle Chandler" + ], + "genres": [ + "Drama", + "Mystery" + ] + }, + { + "title": "A Wrinkle in Time", + "year": 2018, + "cast": [ + "Storm Reid", + "Oprah Winfrey", + "Reese Witherspoon", + "Mindy Kaling", + "Levi Miller", + "Deric McCabe", + "Chris Pine", + "Gugu Mbatha-Raw", + "Michael Peña", + "Zach Galifianakis" + ], + "genres": [ + "Fantasy", + "Family", + "Adventure" + ] + }, + { + "title": "Gringo", + "year": 2018, + "cast": [ + "David Oyelowo", + "Charlize Theron", + "Joel Edgerton", + "Amanda Seyfried", + "Thandie Newton", + "Sharlto Copley" + ], + "genres": [ + "Action", + "Comedy", + "Drama" + ] + }, + { + "title": "Thoroughbreds", + "year": 2018, + "cast": [ + "Olivia Cooke", + "Anya Taylor-Joy", + "Anton Yelchin", + "Paul Sparks", + "Francie Swift" + ], + "genres": [ + "Drama", + "Thriller" + ] + }, + { + "title": "The Hurricane Heist", + "year": 2018, + "cast": [ + "Toby Kebbell", + "Maggie Grace", + "Ryan Kwanten", + "Melissa Bolona", + "Ralph Ineson" + ], + "genres": [ + "Disaster", + "Thriller" + ] + }, + { + "title": "The Strangers: Prey at Night", + "year": 2018, + "cast": [ + "Christina Hendricks", + "Martin Henderson", + "Bailee Madison", + "Lewis Pullman" + ], + "genres": [ + "Horror", + "Thriller" + ] + }, + { + "title": "Tomb Raider", + "year": 2018, + "cast": [ + "Alicia Vikander", + "Dominic West", + "Walton Goggins", + "Daniel Wu", + "Kristin Scott Thomas", + "Derek Jacobi", + "Nick Frost", + "Hannah John-Kamen" + ], + "genres": [ + "Action", + "Adventure" + ] + }, + { + "title": "Love, Simon", + "year": 2018, + "cast": [ + "Nick Robinson", + "Katherine Langford", + "Alexandra Shipp", + "Jorge Lendeborg Jr.", + "Miles Heizer", + "Keiynan Lonsdale", + "Logan Miller", + "Jennifer Garner", + "Josh Duhamel", + "Tony Hale" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "I Can Only Imagine", + "year": 2018, + "cast": [ + "Cloris Leachman", + "Dennis Quaid", + "Priscilla Shirer", + "Madeline Carroll", + "J. Michael Finley", + "Trace Adkins" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "7 Days in Entebbe", + "year": 2018, + "cast": [ + "Rosamund Pike", + "Daniel Bruhl", + "Vincent Cassel", + "Eddie Marsan", + "Ben Schnetzer" + ], + "genres": [ + "Action", + "Thriller" + ] + }, + { + "title": "Furlough", + "year": 2018, + "cast": [ + "Melissa Leo", + "Tessa Thompson", + "La La Anthony", + "Whoopi Goldberg", + "Anna Paquin" + ], + "genres": [ + "Drama", + "Comedy" + ] + }, + { + "title": "Josie", + "year": 2018, + "cast": [ + "Sophie Turner", + "Dylan McDermott", + "Jack Kilmer" + ], + "genres": [ + "Drama", + "Suspense" + ] + }, + { + "title": "Flower", + "year": 2018, + "cast": [ + "Zoey Deutch", + "Kathryn Hahn", + "Tim Heidecker", + "Joey Morgan", + "Adam Scott" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Pacific Rim Uprising", + "year": 2018, + "cast": [ + "John Boyega", + "Scott Eastwood", + "Cailee Spaeny", + "Charlie Day", + "Burn Gorman", + "Rinko Kikuchi", + "Jing Tian", + "Adria Arjona", + "Zhang Jin" + ], + "genres": [ + "Action", + "Adventure", + "Science Fiction" + ] + }, + { + "title": "Isle of Dogs", + "year": 2018, + "cast": [ + "Bryan Cranston", + "Edward Norton", + "Bill Murray", + "Jeff Goldblum", + "Bob Balaban", + "Greta Gerwig", + "Frances McDormand", + "Courtney B. Vance", + "Fisher Stevens", + "Harvey Keitel", + "Liev Schreiber", + "Scarlett Johansson", + "Tilda Swinton", + "F. Murray Abraham", + "Frank Wood" + ], + "genres": [ + "Animated", + "Comedy" + ] + }, + { + "title": "Sherlock Gnomes", + "year": 2018, + "cast": [ + "James McAvoy", + "Emily Blunt", + "Johnny Depp", + "Chiwetel Ejiofor", + "Mary J. Blige", + "Michael Caine", + "Maggie Smith", + "Ashley Jensen", + "Matt Lucas", + "Stephen Merchant", + "Julie Walters", + "Richard Wilson" + ], + "genres": [ + "Animated", + "Romance", + "Comedy", + "Mystery", + "Family" + ] + }, + { + "title": "Unsane", + "year": 2018, + "cast": [ + "Claire Foy", + "Joshua Leonard", + "Jay Pharoah", + "Juno Temple", + "Aimee Mullins", + "Amy Irving" + ], + "genres": [ + "Horror", + "Thriller" + ] + }, + { + "title": "Paul, Apostle of Christ", + "year": 2018, + "cast": [ + "James Faulkner", + "Jim Caviezel", + "Olivier Martinez", + "Joanne Whalley", + "John Lynch" + ], + "genres": [ + "Historical", + "Drama" + ] + }, + { + "title": "Final Portrait", + "year": 2018, + "cast": [ + "Geoffrey Rush", + "Armie Hammer", + "Clémence Poésy", + "Tony Shalhoub", + "James Faulkner", + "Sylvie Testud" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Midnight Sun", + "year": 2018, + "cast": [ + "Bella Thorne", + "Patrick Schwarzenegger", + "Rob Riggle", + "Quinn Shephard" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "Followers", + "year": 2018, + "cast": [ + "Amanda Delaney", + "Justin Maina", + "Sean Michael Gloria", + "Nishant Gogna", + "David E. McMahon" + ], + "genres": [ + "Horror", + "Thriller" + ] + }, + { + "title": "Ready Player One", + "year": 2018, + "cast": [ + "Tye Sheridan", + "Olivia Cooke", + "Ben Mendelsohn", + "Mark Rylance", + "Simon Pegg", + "T.J. Miller", + "Lena Waithe", + "Win Morisaki", + "Philip Zhao", + "Hannah John-Kamen", + "Susan Lynch" + ], + "genres": [ + "Adventure", + "Science Fiction" + ] + }, + { + "title": "Tyler Perry's Acrimony", + "year": 2018, + "cast": [ + "Taraji P. Henson", + "Lyriq Bent", + "Tika Sumpter" + ], + "genres": [ + "Drama", + "Thriller" + ] + }, + { + "title": "God's Not Dead: A Light in Darkness", + "year": 2018, + "cast": [ + "David A. R. White", + "John Corbett", + "Shane Harper", + "Benjamin Onyango", + "Ted McGinley", + "Jennifer Taylor", + "Tatum O'Neal", + "Shwayze", + "Cissy Houston" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Gemini", + "year": 2018, + "cast": [ + "Lola Kirke", + "Zoë Kravitz", + "Greta Lee", + "Michelle Forbes", + "Nelson Franklin", + "Reeve Carney", + "Jessica Parker Kennedy", + "James Ransone", + "Ricki Lake", + "John Cho" + ], + "genres": [ + "Mystery", + "Thriller" + ] + }, + { + "title": "The Last Movie Star", + "year": 2018, + "cast": [ + "Burt Reynolds", + "Ariel Winter", + "Clark Duke", + "Ellar Coltrane", + "Chevy Chase" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Quiet Place", + "year": 2018, + "cast": [ + "John Krasinski", + "Emily Blunt", + "Millicent Simmonds", + "Noah Jupe" + ], + "genres": [ + "Drama", + "Horror", + "Thriller" + ] + }, + { + "title": "Blockers", + "year": 2018, + "cast": [ + "Leslie Mann", + "Ike Barinholtz", + "John Cena", + "Kathryn Newton", + "Graham Phillips", + "June Diane Raphael", + "Hannibal Buress", + "Sarayu Blue" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "You Were Never Really Here", + "year": 2018, + "cast": [ + "Joaquin Phoenix", + "Ekaterina Samsonov", + "Alex Manette", + "John Doman", + "Judith Roberts" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Chappaquiddick", + "year": 2018, + "cast": [ + "Jason Clarke", + "Kate Mara", + "Ed Helms", + "Bruce Dern", + "Jim Gaffigan", + "Taylor Nichols" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Pandas", + "year": 2018, + "cast": [ + "Kristen Bell" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "The Miracle Season", + "year": 2018, + "cast": [ + "Helen Hunt", + "William Hurt", + "Erin Moriarty", + "Danika Yarosh" + ], + "genres": [ + "Drama", + "Sports" + ] + }, + { + "title": "Beirut", + "year": 2018, + "cast": [ + "Jon Hamm", + "Rosamund Pike", + "Dean Norris", + "Shea Whigham", + "Larry Pine", + "Mark Pellegrino" + ], + "genres": [ + "Action", + "Thriller" + ] + }, + { + "title": "Rampage", + "year": 2018, + "cast": [ + "Dwayne Johnson", + "Naomie Harris", + "Malin Åkerman", + "Jake Lacy", + "Marley Shelton", + "Joe Manganiello", + "Jeffrey Dean Morgan" + ], + "genres": [ + "Action", + "Adventure", + "Science Fiction" + ] + }, + { + "title": "Truth or Dare", + "year": 2018, + "cast": [ + "Lucy Hale", + "Tyler Posey", + "Violett Beane", + "Nolan Gerard Funk", + "Hayden Szeto", + "Sophia Taylor Ali" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "The Rider", + "year": 2018, + "cast": [ + "Brady Jandreau" + ], + "genres": [ + "Drama", + "Biography" + ] + }, + { + "title": "Sgt. Stubby: An American Hero", + "year": 2018, + "cast": [ + "Logan Lerman", + "Helena Bonham Carter", + "Gérard Depardieu" + ], + "genres": [ + "Animated", + "Family" + ] + }, + { + "title": "I Feel Pretty", + "year": 2018, + "cast": [ + "Amy Schumer", + "Michelle Williams", + "Emily Ratajkowski", + "Rory Scovel" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Super Troopers 2", + "year": 2018, + "cast": [ + "Jay Chandrasekhar", + "Paul Soter", + "Steve Lemme", + "Erik Stolhanske", + "Kevin Heffernan" + ], + "genres": [ + "Crime", + "Comedy", + "Mystery" + ] + }, + { + "title": "Traffik", + "year": 2018, + "cast": [ + "Paula Patton", + "Omar Epps", + "Missi Pyle", + "William Fichtner", + "Roselyn Sanchez", + "Dawn Olivieri", + "Laz Alonso" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "The House of Tomorrow", + "year": 2018, + "cast": [ + "Asa Butterfield", + "Nick Offerman", + "Ellen Burstyn", + "Alex Wolff", + "Maude Apatow" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Avengers: Infinity War", + "year": 2018, + "cast": [ + "Robert Downey Jr.", + "Chris Hemsworth", + "Mark Ruffalo", + "Chris Evans", + "Scarlett Johansson", + "Benedict Cumberbatch", + "Don Cheadle", + "Tom Holland", + "Chadwick Boseman", + "Paul Bettany", + "Elizabeth Olsen", + "Anthony Mackie", + "Sebastian Stan", + "Danai Gurira", + "Letitia Wright", + "Dave Bautista", + "Zoe Saldana", + "Pom Klementieff", + "Karen Gillan", + "Benedict Wong", + "Idris Elba", + "Peter Dinklage", + "Tom Hiddleston", + "Vin Diesel", + "Bradley Cooper", + "Gwyneth Paltrow", + "Benicio del Toro", + "Josh Brolin", + "Chris Pratt" + ], + "genres": [ + "Superhero", + "Action", + "Adventure" + ] + }, + { + "title": "Disobedience", + "year": 2018, + "cast": [ + "Rachel Weisz", + "Rachel McAdams", + "Alessandro Nivola" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Backstabbing for Beginners", + "year": 2018, + "cast": [ + "Ben Kingsley", + "Theo James", + "Jacqueline Bisset" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Kings", + "year": 2018, + "cast": [ + "Halle Berry", + "Daniel Craig" + ], + "genres": [ + "Romance" + ] + }, + { + "title": "Overboard", + "year": 2018, + "cast": [ + "Anna Faris", + "Eugenio Derbez", + "Eva Longoria", + "John Hannah", + "Josh Segarra", + "Mel Rodriguez" + ], + "genres": [ + "Comedy", + "Romance" + ] + }, + { + "title": "The Cleanse", + "year": 2018, + "cast": [ + "Johnny Galecki", + "Anna Friel", + "Oliver Platt", + "Anjelica Huston" + ], + "genres": [ + "Comedy", + "Horror" + ] + }, + { + "title": "Tully", + "year": 2018, + "cast": [ + "Charlize Theron", + "Mackenzie Davis", + "Mark Duplass", + "Ron Livingston" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Bad Samaritan", + "year": 2018, + "cast": [ + "David Tennant", + "Robert Sheehan", + "Carlito Olivero", + "Kerry Condon", + "Jacqueline Byers" + ], + "genres": [ + "Horror", + "Thriller" + ] + }, + { + "title": "Life of the Party", + "year": 2018, + "cast": [ + "Melissa McCarthy", + "Maya Rudolph", + "Molly Gordon", + "Julie Bowen", + "Gillian Jacobs", + "Debby Ryan", + "Matt Walsh", + "Jacki Weaver" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Breaking In", + "year": 2018, + "cast": [ + "Gabrielle Union", + "Billy Burke", + "Richard Cabral", + "Seth Carr", + "Levi Meaden", + "Ajiona Alexus", + "Christa Miller" + ], + "genres": [ + "Drama", + "Thriller" + ] + }, + { + "title": "The Seagull", + "year": 2018, + "cast": [ + "Saoirse Ronan", + "Annette Bening", + "Corey Stoll", + "Billy Howle" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Terminal", + "year": 2018, + "cast": [ + "Margot Robbie", + "Simon Pegg", + "Dexter Fletcher", + "Max Irons", + "Mike Myers" + ], + "genres": [ + "Drama", + "Thriller" + ] + }, + { + "title": "Deadpool 2", + "year": 2018, + "cast": [ + "Ryan Reynolds", + "Josh Brolin", + "Zazie Beetz", + "Julian Dennison", + "Morena Baccarin", + "T. J. Miller", + "Brianna Hildebrand", + "Stefan Kapičić", + "Jack Kesy", + "Leslie Uggams", + "Karan Soni", + "Shioli Kutsuna", + "Eddie Marsan", + "Terry Crews", + "Bill Skarsgård", + "Lewis Tan", + "Rob Delaney" + ], + "genres": [ + "Superhero", + "Action", + "Comedy" + ] + }, + { + "title": "Book Club", + "year": 2018, + "cast": [ + "Jane Fonda", + "Candice Bergen", + "Mary Steenburgen", + "Diane Keaton" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "First Reformed", + "year": 2018, + "cast": [ + "Ethan Hawke", + "Amanda Seyfried", + "Cedric Kyles" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Pope Francis: A Man of His Word", + "year": 2018, + "cast": [ + "Pope Francis" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Show Dogs", + "year": 2018, + "cast": [ + "Will Arnett", + "Natasha Lyonne", + "Ludacris", + "Stanley Tucci", + "Shaquille O'Neal", + "Gabriel Iglesias", + "Alan Cumming", + "Oliver Tompsett", + "Andy Beckwith" + ], + "genres": [ + "Family", + "Comedy" + ] + }, + { + "title": "Solo: A Star Wars Story", + "year": 2018, + "cast": [ + "Alden Ehrenreich", + "Woody Harrelson", + "Emilia Clarke", + "Donald Glover", + "Thandie Newton", + "Phoebe Waller-Bridge", + "Joonas Suotamo", + "Paul Bettany" + ], + "genres": [ + "Science Fiction", + "Comedy", + "Action", + "Adventure" + ] + }, + { + "title": "How to Talk to Girls at Parties", + "year": 2018, + "cast": [ + "Elle Fanning", + "Alex Sharp", + "Nicole Kidman", + "Ruth Wilson", + "Matt Lucas" + ], + "genres": [ + "Science Fiction", + "Romance", + "Comedy" + ] + }, + { + "title": "In Darkness", + "year": 2018, + "cast": [ + "Natalie Dormer", + "Emily Ratajkowski", + "Ed Skrein", + "Joely Richardson", + "Neil Maskell", + "James Cosmo", + "Jan Bijvoet" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Future World", + "year": 2018, + "cast": [ + "James Franco", + "Suki Waterhouse", + "Jeffrey Wahlberg", + "Margarita Levieva", + "Snoop Dogg", + "George Lewis Jr.", + "Method Man", + "Lucy Liu", + "Milla Jovovich" + ], + "genres": [ + "Thriller", + "Action", + "Science Fiction" + ] + }, + { + "title": "Action Point", + "year": 2018, + "cast": [ + "Johnny Knoxville", + "Chris Pontius" + ], + "genres": [ + "Action", + "Comedy" + ] + }, + { + "title": "Adrift", + "year": 2018, + "cast": [ + "Shailene Woodley", + "Sam Claflin" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Upgrade", + "year": 2018, + "cast": [ + "Logan Marshall-Green", + "Betty Gabriel", + "Harrison Gilbertson", + "Benedict Hardie" + ], + "genres": [ + "Science Fiction", + "Horror", + "Action" + ] + }, + { + "title": "American Animals", + "year": 2018, + "cast": [ + "Evan Peters", + "Barry Keoghan", + "Blake Jenner", + "Jared Abrahamson", + "Udo Kier", + "Ann Dowd" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Social Animals", + "year": 2018, + "cast": [ + "Noël Wells", + "Josh Radnor", + "Aya Cash", + "Carly Chaikin", + "Fortune Feimster", + "Samira Wiley" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Ocean's 8", + "year": 2018, + "cast": [ + "Sandra Bullock", + "Cate Blanchett", + "Anne Hathaway", + "Mindy Kaling", + "Sarah Paulson", + "Awkwafina", + "Rihanna", + "Helena Bonham Carter" + ], + "genres": [ + "Action", + "Comedy" + ] + }, + { + "title": "Won't You Be My Neighbor?", + "year": 2018, + "cast": [ + "Fred Rogers" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Hereditary", + "year": 2018, + "cast": [ + "Toni Collette", + "Alex Wolff", + "Milly Shapiro", + "Ann Dowd", + "Gabriel Byrne" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Hotel Artemis", + "year": 2018, + "cast": [ + "Jodie Foster", + "Sterling K. Brown", + "Sofia Boutella", + "Jeff Goldblum", + "Dave Bautista", + "Brian Tyree Henry", + "Jenny Slate", + "Zachary Quinto", + "Charlie Day" + ], + "genres": [ + "Action", + "Thriller" + ] + }, + { + "title": "Superfly", + "year": 2018, + "cast": [ + "Trevor Jackson", + "Jason Mitchell", + "Michael K. Williams", + "Esai Morales" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Incredibles 2", + "year": 2018, + "cast": [ + "Holly Hunter", + "Craig T. Nelson", + "Sarah Vowell", + "Huck Milner", + "Samuel L. Jackson", + "Bob Odenkirk", + "Catherine Keener", + "Brad Bird", + "Jonathan Banks", + "Michael Bird", + "Sophia Bush", + "Phil LaMarr", + "Paul Eiding", + "Bill Wise", + "Isabella Rossellini", + "John Ratzenberger" + ], + "genres": [ + "Superhero", + "Family", + "Animated" + ] + }, + { + "title": "Tag", + "year": 2018, + "cast": [ + "Ed Helms", + "Jeremy Renner", + "Jon Hamm", + "Jake Johnson", + "Hannibal Buress", + "Annabelle Wallis", + "Isla Fisher", + "Rashida Jones", + "Leslie Bibb" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "On Chesil Beach", + "year": 2018, + "cast": [ + "Saoirse Ronan", + "Billy Howle", + "Emily Watson", + "Anne-Marie Duff", + "Samuel West", + "Adrian Scarborough" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Gotti", + "year": 2018, + "cast": [ + "John Travolta", + "Kelly Preston", + "Stacy Keach", + "Pruitt Taylor Vince", + "Spencer Lofranco", + "William DeMeo", + "Leo Rossi", + "Victor Gojcaj" + ], + "genres": [ + "Biography", + "Crime", + "Drama" + ] + }, + { + "title": "Jurassic World: Fallen Kingdom", + "year": 2018, + "cast": [ + "Chris Pratt", + "Bryce Dallas Howard", + "Rafe Spall", + "Justice Smith", + "Daniella Pineda", + "James Cromwell", + "Toby Jones", + "Ted Levine", + "B. D. Wong", + "Geraldine Chaplin", + "Jeff Goldblum" + ], + "genres": [ + "Action", + "Adventure", + "Science Fiction" + ] + }, + { + "title": "Boundaries", + "year": 2018, + "cast": [ + "Vera Farmiga", + "Christopher Plummer", + "Lewis MacDougall", + "Bobby Cannavale", + "Kristen Schaal" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Damsel", + "year": 2018, + "cast": [ + "Robert Pattinson", + "Mia Wasikowska" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Domestics", + "year": 2018, + "cast": [ + "Tyler Hoechlin", + "Kate Bosworth", + "Lance Reddick", + "Sonoya Mizuno", + "Dana Gourrier", + "Thomas Francis Murray", + "David Dastmalchian" + ], + "genres": [ + "Science Fiction", + "Thriller" + ] + }, + { + "title": "Sicario: Day of the Soldado", + "year": 2018, + "cast": [ + "Benicio del Toro", + "Josh Brolin", + "Isabela Moner", + "Jeffrey Donovan", + "Manuel Garcia-Rulfo", + "Catherine Keener" + ], + "genres": [ + "Action", + "Crime", + "Thriller" + ] + }, + { + "title": "Leave No Trace", + "year": 2018, + "cast": [ + "Ben Foster", + "Thomasin McKenzie", + "Jeff Kober", + "Dale Dickey" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Uncle Drew", + "year": 2018, + "cast": [ + "Kyrie Irving", + "Lil Rel Howery", + "Shaquille O'Neal", + "Reggie Miller", + "Nate Robinson", + "Chris Webber", + "Erica Ash", + "Lisa Leslie", + "Nick Kroll", + "Tiffany Haddish" + ], + "genres": [ + "Comedy", + "Family", + "Sports" + ] + }, + { + "title": "Woman Walks Ahead", + "year": 2018, + "cast": [ + "Jessica Chastain", + "Michael Greyeyes", + "Chaske Spencer", + "Sam Rockwell" + ], + "genres": [ + "Biography", + "Drama" + ] + }, + { + "title": "The First Purge", + "year": 2018, + "cast": [ + "Y'lan Noel", + "Lex Scott Davis", + "Joivan Wade", + "Luna Lauren Velez", + "Marisa Tomei" + ], + "genres": [ + "Horror", + "Science Fiction" + ] + }, + { + "title": "Ant-Man and the Wasp", + "year": 2018, + "cast": [ + "Paul Rudd", + "Evangeline Lilly", + "Michael Peña", + "Michael Douglas", + "Michelle Pfeiffer", + "Walton Goggins", + "Hannah John-Kamen", + "Bobby Cannavale", + "Judy Greer", + "Tip \"T.I.\" Harris", + "David Dastmalchian", + "Abby Ryder Fortson", + "Randall Park", + "Laurence Fishburne" + ], + "genres": [ + "Superhero", + "Action", + "Adventure", + "Comedy", + "Science Fiction" + ] + }, + { + "title": "Sorry to Bother You", + "year": 2018, + "cast": [ + "Lakeith Stanfield", + "Tessa Thompson", + "Armie Hammer", + "Steven Yeun", + "Jermaine Fowler", + "Omari Hardwick", + "Terry Crews", + "Danny Glover", + "Patton Oswalt", + "David Cross" + ], + "genres": [ + "Science Fiction", + "Fantasy", + "Comedy" + ] + }, + { + "title": "Whitney", + "year": 2018, + "cast": [ + "Whitney Houston" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Hotel Transylvania 3: Summer Vacation", + "year": 2018, + "cast": [ + "Adam Sandler", + "Andy Samberg", + "Selena Gomez", + "David Spade", + "Steve Buscemi", + "Molly Shannon", + "Keegan-Michael Key", + "Kevin James", + "Fran Drescher", + "Asher Blinkoff", + "Sadie Sandler", + "Joe Whyte", + "Kathryn Hahn", + "Jim Gaffigan", + "Mel Brooks", + "Joe Jonas" + ], + "genres": [ + "Comedy", + "Animated", + "Fantasy" + ] + }, + { + "title": "Skyscraper", + "year": 2018, + "cast": [ + "Dwayne Johnson", + "Neve Campbell", + "Chin Han", + "Roland Møller", + "Pablo Schreiber", + "Byron Mann", + "Hannah Quinlivan", + "Noah Taylor" + ], + "genres": [ + "Action", + "Thriller" + ] + }, + { + "title": "Eighth Grade", + "year": 2018, + "cast": [ + "Elsie Fisher", + "Josh Hamilton", + "Emily Robinson", + "Missy Yager" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Don't Worry, He Won't Get Far on Foot", + "year": 2018, + "cast": [ + "Joaquin Phoenix", + "Rooney Mara", + "Jonah Hill", + "Jack Black" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "Shock and Awe", + "year": 2018, + "cast": [ + "Woody Harrelson", + "Tommy Lee Jones", + "James Marsden", + "Milla Jovovich", + "Jessica Biel", + "Richard Schiff", + "Al Sapienza" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Mamma Mia! Here We Go Again", + "year": 2018, + "cast": [ + "Lily James", + "Amanda Seyfried", + "Pierce Brosnan", + "Colin Firth", + "Stellan Skarsgård", + "Julie Walters", + "Christine Baranski", + "Dominic Cooper", + "Meryl Streep", + "Cher", + "Andy García" + ], + "genres": [ + "Romance", + "Musical", + "Comedy" + ] + }, + { + "title": "The Equalizer 2", + "year": 2018, + "cast": [ + "Denzel Washington", + "Ashton Sanders", + "Pedro Pascal", + "Melissa Leo", + "Bill Pullman" + ], + "genres": [ + "Action", + "Crime", + "Thriller" + ] + }, + { + "title": "Blindspotting", + "year": 2018, + "cast": [ + "Janina Gavankar", + "Ethan Embry", + "Daveed Diggs", + "Rafael Casal", + "Wayne Knight" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Unfriended: Dark Web", + "year": 2018, + "cast": [ + "Colin Woodell", + "Stephanie Nogueras", + "Betty Gabriel", + "Rebecca Rittenhouse", + "Andrew Lees", + "Connor Del Rio", + "Savira Windyani" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Gauguin - Voyage de Tahiti", + "year": 2018, + "cast": [ + "Vincent Cassel", + "Tuheï Adams", + "Malik Zidi" + ], + "genres": [ + "Biography", + "Drama", + "Romance" + ] + }, + { + "title": "Mission: Impossible – Fallout", + "year": 2018, + "cast": [ + "Tom Cruise", + "Henry Cavill", + "Ving Rhames", + "Simon Pegg", + "Rebecca Ferguson", + "Sean Harris", + "Angela Bassett", + "Michelle Monaghan", + "Alec Baldwin" + ], + "genres": [ + "Action", + "Adventure", + "Thriller" + ] + }, + { + "title": "Teen Titans Go! To the Movies", + "year": 2018, + "cast": [ + "Scott Menville", + "Khary Payton", + "Tara Strong", + "Greg Cipes", + "Hynden Walch", + "Will Arnett", + "Kristen Bell" + ], + "genres": [ + "Animated", + "Superhero", + "Comedy" + ] + }, + { + "title": "Hot Summer Nights", + "year": 2018, + "cast": [ + "Timothée Chalamet", + "Maika Monroe", + "Alex Roe", + "Maia Mitchell" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Puzzle", + "year": 2018, + "cast": [ + "Kelly Macdonald", + "Irrfan Khan", + "David Denman", + "Bubba Weiler", + "Austin Abrams", + "Liv Hewson" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Christopher Robin", + "year": 2018, + "cast": [ + "Ewan McGregor", + "Hayley Atwell", + "Bronte Carmichael", + "Mark Gatiss", + "Jim Cummings", + "Brad Garrett", + "Nick Mohammed", + "Peter Capaldi", + "Sophie Okonedo", + "Sara Sheen", + "Toby Jones" + ], + "genres": [ + "Family", + "Comedy", + "Drama", + "Fantasy" + ] + }, + { + "title": "The Darkest Minds", + "year": 2018, + "cast": [ + "Amandla Stenberg", + "Mandy Moore", + "Gwendoline Christie", + "Harris Dickinson", + "Skylan Brooks", + "Miya Cech", + "Patrick Gibson", + "Golden Brooks", + "Bradley Whitford" + ], + "genres": [ + "Science Fiction", + "Action", + "Thriller" + ] + }, + { + "title": "The Spy Who Dumped Me", + "year": 2018, + "cast": [ + "Mila Kunis", + "Kate McKinnon", + "Sam Heughan" + ], + "genres": [ + "Action", + "Comedy" + ] + }, + { + "title": "Billionaire Boys Club", + "year": 2018, + "cast": [ + "Ansel Elgort", + "Taron Egerton", + "Kevin Spacey", + "Jeremy Irvine", + "Cary Elwes", + "Emma Roberts", + "Billie Lourd", + "Suki Waterhouse", + "Judd Nelson" + ], + "genres": [ + "Biography", + "Crime", + "Drama" + ] + }, + { + "title": "Never Goin' Back", + "year": 2018, + "cast": [ + "Maia Mitchell", + "Camila Morrone", + "Kyle Mooney", + "Joel Allen", + "Kendal Smith", + "Matthew Holcomb" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Miseducation of Cameron Post", + "year": 2018, + "cast": [ + "Chloë Grace Moretz", + "Sasha Lane", + "John Gallagher, Jr.", + "Forrest Goodluck", + "Jennifer Ehle" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Dog Days", + "year": 2018, + "cast": [ + "Nina Dobrev", + "Finn Wolfhard", + "Vanessa Hudgens", + "Adam Pally", + "Eva Longoria" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "The Meg", + "year": 2018, + "cast": [ + "Jason Statham", + "Li Bingbing", + "Rainn Wilson", + "Ruby Rose", + "Winston Chao", + "Cliff Curtis" + ], + "genres": [ + "Action", + "Horror", + "Thriller", + "Science Fiction" + ] + }, + { + "title": "BlacKkKlansman", + "year": 2018, + "cast": [ + "John David Washington", + "Adam Driver", + "Laura Harrier", + "Topher Grace" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Slender Man", + "year": 2018, + "cast": [ + "Joey King", + "Julia Goldani Telles", + "Jaz Sinclair", + "Annalise Basso", + "Javier Botet" + ], + "genres": [ + "Horror", + "Thriller" + ] + }, + { + "title": "A Prayer Before Dawn", + "year": 2018, + "cast": [ + "Joe Cole" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Crazy Rich Asians", + "year": 2018, + "cast": [ + "Constance Wu", + "Henry Golding", + "Gemma Chan", + "Awkwafina", + "Nico Santos", + "Lisa Lu", + "Ken Jeong", + "Michelle Yeoh" + ], + "genres": [ + "Romance", + "Comedy", + "Drama" + ] + }, + { + "title": "Alpha", + "year": 2018, + "cast": [ + "Kodi Smit-McPhee", + "Leonor Varela", + "Jens Hultén" + ], + "genres": [ + "Adventure", + "Fantasy", + "Drama" + ] + }, + { + "title": "Mile 22", + "year": 2018, + "cast": [ + "Mark Wahlberg", + "John Malkovich", + "Lauren Cohan", + "Iko Uwais", + "Ronda Rousey" + ], + "genres": [ + "Action", + "Thriller" + ] + }, + { + "title": "Down a Dark Hall", + "year": 2018, + "cast": [ + "AnnaSophia Robb", + "Uma Thurman", + "Isabelle Fuhrman", + "Kirsty Mitchell", + "Taylor Russell", + "Jim Sturgeon", + "Victoria Moroles" + ], + "genres": [ + "Fantasy", + "Drama" + ] + }, + { + "title": "The Wife", + "year": 2018, + "cast": [ + "Glenn Close", + "Jonathan Pryce", + "Christian Slater", + "Max Irons", + "Annie Starke", + "Harry Lloyd", + "Elizabeth McGovern" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Happytime Murders", + "year": 2018, + "cast": [ + "Melissa McCarthy", + "Maya Rudolph", + "Joel McHale", + "Elizabeth Banks" + ], + "genres": [ + "Comedy", + "Thriller" + ] + }, + { + "title": "Searching", + "year": 2018, + "cast": [ + "John Cho", + "Debra Messing" + ], + "genres": [ + "Thriller" + ] + }, + { + "title": "Papillon", + "year": 2018, + "cast": [ + "Charlie Hunnam", + "Rami Malek" + ], + "genres": [ + "Biography" + ] + }, + { + "title": "A.X.L.", + "year": 2018, + "cast": [ + "Alex Neustaedter", + "Becky G", + "Alex MacNicoll", + "Thomas Jane", + "Lou Taylor Pucci", + "Patricia de Leon" + ], + "genres": [ + "Science Fiction", + "Adventure" + ] + }, + { + "title": "Operation Finale", + "year": 2018, + "cast": [ + "Oscar Isaac", + "Ben Kingsley", + "Lior Raz", + "Mélanie Laurent", + "Nick Kroll", + "Joe Alwyn" + ], + "genres": [ + "Historical", + "Drama" + ] + }, + { + "title": "Kin", + "year": 2018, + "cast": [ + "Myles Truitt", + "Jack Reynor", + "Zoë Kravitz", + "Carrie Coon", + "Dennis Quaid", + "James Franco" + ], + "genres": [ + "Science Fiction", + "Action", + "Crime", + "Thriller" + ] + }, + { + "title": "Juliet, Naked", + "year": 2018, + "cast": [ + "Ethan Hawke", + "Rose Byrne" + ], + "genres": [ + "Romance", + "Drama" + ] + }, + { + "title": "Destination Wedding", + "year": 2018, + "cast": [ + "Winona Ryder", + "Keanu Reeves" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "The Nun", + "year": 2018, + "cast": [ + "Demián Bichir", + "Taissa Farmiga", + "Jonas Bloquet", + "Charlotte Hope", + "Ingrid Bisu", + "Bonnie Aarons" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Peppermint", + "year": 2018, + "cast": [ + "Jennifer Garner", + "John Ortiz", + "Juan Pablo Raba", + "John Gallagher Jr.", + "Annie Ilonzeh", + "Richard Cabral" + ], + "genres": [ + "Action", + "Thriller" + ] + }, + { + "title": "The Predator", + "year": 2018, + "cast": [ + "Boyd Holbrook", + "Trevante Rhodes", + "Jacob Tremblay", + "Keegan-Michael Key", + "Olivia Munn", + "Thomas Jane", + "Alfie Allen", + "Sterling K. Brown", + "Augusto Aguilera", + "Yvonne Strahovski", + "Jake Busey" + ], + "genres": [ + "Horror", + "Action", + "Science Fiction" + ] + }, + { + "title": "White Boy Rick", + "year": 2018, + "cast": [ + "Matthew McConaughey", + "Richie Merritt", + "Bel Powley", + "Jennifer Jason Leigh", + "Brian Tyree Henry", + "Rory Cochrane", + "RJ Cyler", + "Jonathan Majors", + "Eddie Marsan", + "Bruce Dern", + "Piper Laurie" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "A Simple Favor", + "year": 2018, + "cast": [ + "Anna Kendrick", + "Blake Lively", + "Henry Golding", + "Andrew Rannells" + ], + "genres": [ + "Thriller", + "Drama", + "Comedy" + ] + }, + { + "title": "The Children Act", + "year": 2018, + "cast": [ + "Emma Thompson", + "Stanley Tucci", + "Fionn Whitehead" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Lizzie", + "year": 2018, + "cast": [ + "Chloë Sevigny", + "Kristen Stewart", + "Jay Huguley", + "Fiona Shaw", + "Jamey Sheridan", + "Kim Dickens", + "Denis O'Hare", + "Jeff Perry" + ], + "genres": [ + "Biography", + "Thriller" + ] + }, + { + "title": "Unbroken: Path to Redemption", + "year": 2018, + "cast": [ + "Samuel Hunt", + "Merritt Patterson", + "Vanessa Bell Calloway", + "Bobby Campo", + "David DeLuise", + "David Sakurai", + "WIll Graham" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The House with a Clock in Its Walls", + "year": 2018, + "cast": [ + "Jack Black", + "Cate Blanchett", + "Owen Vaccaro", + "Kyle MacLachlan", + "Renée Elise Goldsberry", + "Sunny Suljic", + "Vanessa Anne Williams", + "Colleen Camp" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Life Itself", + "year": 2018, + "cast": [ + "Oscar Isaac", + "Olivia Wilde", + "Mandy Patinkin", + "Olivia Cooke", + "Laia Costa", + "Annette Bening", + "Antonio Banderas" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Sisters Brothers", + "year": 2018, + "cast": [ + "John C. Reilly", + "Joaquin Phoenix", + "Jake Gyllenhaal", + "Riz Ahmed" + ], + "genres": [ + "Western", + "Comedy" + ] + }, + { + "title": "Colette", + "year": 2018, + "cast": [ + "Keira Knightley", + "Dominic West" + ], + "genres": [ + "Biography", + "Drama" + ] + }, + { + "title": "Assassination Nation", + "year": 2018, + "cast": [ + "Odessa Young", + "Suki Waterhouse", + "Hari Nef", + "Abra", + "Bella Thorne", + "Bill Skarsgård", + "Cody Christian", + "Joel McHale", + "Maude Apatow", + "Colman Domingo", + "Anika Noni Rose" + ], + "genres": [ + "Crime", + "Drama" + ] + }, + { + "title": "Fahrenheit 11/9", + "year": 2018, + "cast": [], + "genres": [ + "Documentary" + ] + }, + { + "title": "Night School", + "year": 2018, + "cast": [ + "Kevin Hart", + "Tiffany Haddish", + "Taran Killam", + "Rob Riggle", + "Ben Schwartz", + "Yvonne Orji" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Smallfoot", + "year": 2018, + "cast": [ + "Channing Tatum", + "James Corden", + "Zendaya", + "Common", + "LeBron James", + "Gina Rodriguez", + "Danny DeVito", + "Yara Shahidi", + "Ely Henry", + "Jimmy Tatro" + ], + "genres": [ + "Animated", + "Fantasy", + "Comedy" + ] + }, + { + "title": "The Old Man & the Gun", + "year": 2018, + "cast": [ + "Robert Redford", + "Casey Affleck", + "Danny Glover", + "Tika Sumpter", + "Tom Waits", + "Sissy Spacek" + ], + "genres": [ + "Action", + "Thriller" + ] + }, + { + "title": "Hell Fest", + "year": 2018, + "cast": [ + "Bex Taylor-Klaus", + "Amy Forsyth", + "Reign Edwards", + "Christian James", + "Matt Mercurio", + "Roby Attal" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Power of the Air", + "year": 2018, + "cast": [ + "Nicholas X. Parsons", + "Patty Duke", + "Michael Gross", + "Tracy Goode", + "Karyn Williams", + "Wendell Kinney", + "Veryl Jones" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Venom", + "year": 2018, + "cast": [ + "Tom Hardy", + "Michelle Williams", + "Riz Ahmed", + "Scott Haze", + "Reid Scott", + "Jenny Slate" + ], + "genres": [ + "Superhero", + "Horror", + "Action", + "Science Fiction", + "Thriller" + ] + }, + { + "title": "A Star Is Born", + "year": 2018, + "cast": [ + "Bradley Cooper", + "Lady Gaga", + "Andrew Dice Clay", + "Dave Chappelle", + "Sam Elliott" + ], + "genres": [ + "Romance", + "Drama", + "Musical" + ] + }, + { + "title": "The Hate U Give", + "year": 2018, + "cast": [ + "Amandla Stenberg", + "Regina Hall", + "Russell Hornsby", + "KJ Apa", + "Algee Smith", + "Lamar Johnson", + "Issa Rae", + "Sabrina Carpenter", + "Common", + "Anthony Mackie" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "First Man", + "year": 2018, + "cast": [ + "Ryan Gosling", + "Claire Foy", + "Jason Clarke", + "Kyle Chandler", + "Corey Stoll", + "Ciaran Hinds", + "Christopher Abbott", + "Patrick Fugit", + "Lukas Haas" + ], + "genres": [ + "Biography", + "Drama" + ] + }, + { + "title": "Bad Times at the El Royale", + "year": 2018, + "cast": [ + "Jeff Bridges", + "Cynthia Erivo", + "Chris Hemsworth", + "Dakota Johnson", + "Jon Hamm", + "Cailee Spaeny", + "Lewis Pullman", + "Nick Offerman" + ], + "genres": [ + "Drama", + "Action" + ] + }, + { + "title": "Goosebumps 2: Haunted Halloween", + "year": 2018, + "cast": [ + "Wendi McLendon-Covey", + "Madison Iseman", + "Jeremy Ray Taylor", + "Caleel Harris", + "Chris Parnell", + "Ken Jeong", + "Jack Black" + ], + "genres": [ + "Horror", + "Comedy" + ] + }, + { + "title": "Beautiful Boy", + "year": 2018, + "cast": [ + "Steve Carell", + "Timothée Chalamet", + "Maura Tierney", + "Amy Ryan" + ], + "genres": [ + "Biography", + "Drama" + ] + }, + { + "title": "The Oath", + "year": 2018, + "cast": [ + "Ike Barinholtz", + "Tiffany Haddish", + "John Cho", + "Carrie Brownstein", + "Billy Magnussen", + "Meredith Hagner", + "Jon Barinholtz", + "Nora Dunn", + "Chris Ellis" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Halloween", + "year": 2018, + "cast": [ + "Jamie Lee Curtis", + "Judy Greer", + "Andi Matichak", + "Will Patton", + "Virginia Gardner", + "Nick Castle", + "James Jude Courtney" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Can You Ever Forgive Me?", + "year": 2018, + "cast": [ + "Melissa McCarthy", + "Richard E. Grant", + "Jane Curtin", + "Anna Deavere Smith", + "Dolly Wells", + "Jennifer Westfeldt" + ], + "genres": [ + "Biography", + "Drama", + "Comedy" + ] + }, + { + "title": "Serenity", + "year": 2018, + "cast": [ + "Matthew McConaughey", + "Anne Hathaway", + "Diane Lane", + "Jason Clarke", + "Djimon Hounsou", + "Jeremy Strong" + ], + "genres": [ + "Noir", + "Thriller", + "Drama" + ] + }, + { + "title": "Mid90s", + "year": 2018, + "cast": [ + "Sunny Suljic", + "Lucas Hedges", + "Katherine Waterston" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "What They Had", + "year": 2018, + "cast": [ + "Hilary Swank", + "Michael Shannon", + "Robert Forster", + "Blythe Danner", + "Taissa Farmiga", + "Josh Lucas" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Wildlife", + "year": 2018, + "cast": [ + "Carey Mulligan", + "Jake Gyllenhaal", + "Ed Oxenbould", + "Bill Camp" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Hunter Killer", + "year": 2018, + "cast": [ + "Gerard Butler", + "Gary Oldman", + "Common", + "Toby Stephens", + "Linda Cardellini", + "David Gyasi", + "Gabriel Chavarria", + "Zane Holtz", + "Michael Nyqvist" + ], + "genres": [ + "Action", + "Thriller" + ] + }, + { + "title": "Suspiria", + "year": 2018, + "cast": [ + "Dakota Johnson", + "Tilda Swinton", + "Mia Goth", + "Lutz Ebersdorf", + "Jessica Harper", + "Chloë Grace Moretz" + ], + "genres": [ + "Horror" + ] + }, + { + "title": "Indivisible", + "year": 2018, + "cast": [ + "Justin Bruening", + "Sarah Drew", + "Jason George", + "Tia Mowry", + "Michael O'Neill", + "Eric Close", + "Madeline Carroll", + "Tanner Stine", + "Skye P. Marshall" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Nutcracker and the Four Realms", + "year": 2018, + "cast": [ + "Keira Knightley", + "Mackenzie Foy", + "Eugenio Derbez", + "Matthew Macfadyen", + "Richard E. Grant", + "Misty Copeland", + "Helen Mirren", + "Morgan Freeman" + ], + "genres": [ + "Fantasy" + ] + }, + { + "title": "Bohemian Rhapsody", + "year": 2018, + "cast": [ + "Rami Malek", + "Lucy Boynton", + "Gwilym Lee", + "Ben Hardy", + "Joseph Mazzello", + "Aidan Gillen", + "Tom Hollander", + "Allen Leech", + "Mike Myers" + ], + "genres": [ + "Biography", + "Drama", + "Musical" + ] + }, + { + "title": "Nobody's Fool", + "year": 2018, + "cast": [ + "Tiffany Haddish", + "Tika Sumpter", + "Omari Hardwick", + "Whoopi Goldberg", + "Amber Riley" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Boy Erased", + "year": 2018, + "cast": [ + "Lucas Hedges", + "Joel Edgerton", + "Nicole Kidman", + "Russell Crowe" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "A Private War", + "year": 2018, + "cast": [ + "Rosamund Pike", + "Jamie Dornan", + "Stanley Tucci", + "Tom Hollander" + ], + "genres": [ + "Biography", + "Drama" + ] + }, + { + "title": "Bodied", + "year": 2018, + "cast": [ + "Calum Worthy", + "Jackie Long", + "Rory Uphold", + "Dumbfoundead", + "Walter Perez", + "Anthony Michael Hall" + ], + "genres": [ + "Comedy", + "Drama" + ] + }, + { + "title": "The Front Runner", + "year": 2018, + "cast": [ + "Hugh Jackman", + "Vera Farmiga", + "J. K. Simmons", + "Alfred Molina" + ], + "genres": [ + "Biography", + "Drama" + ] + }, + { + "title": "The Grinch", + "year": 2018, + "cast": [ + "Benedict Cumberbatch", + "Rashida Jones", + "Kenan Thompson", + "Cameron Seely", + "Angela Lansbury", + "Pharrell Williams" + ], + "genres": [ + "Animated", + "Family", + "Comedy" + ] + }, + { + "title": "The Girl in the Spider's Web", + "year": 2018, + "cast": [ + "Claire Foy", + "Sverrir Gudnason", + "Lakeith Stanfield", + "Sylvia Hoeks", + "Stephen Merchant" + ], + "genres": [ + "Crime", + "Thriller" + ] + }, + { + "title": "Overlord", + "year": 2018, + "cast": [ + "Jovan Adepo", + "Wyatt Russell", + "Jacob Anderson", + "Dominic Applewhite", + "Pilou Asbæk", + "Iain De Caestecker", + "John Magaro", + "Mathilde Ollivier", + "Bokeem Woodbine" + ], + "genres": [ + "Action", + "Horror", + "Thriller" + ] + }, + { + "title": "Conundrum: Secrets Among Friends", + "year": 2018, + "cast": [ + "Shaun Cairo (Screenplay)", + "Jo Marie Payton", + "Gary Leroi Gray", + "Paula Jai Parker", + "Parker McKenna Posey" + ], + "genres": [ + "Drama", + "Thriller" + ] + }, + { + "title": "Fantastic Beasts: The Crimes of Grindelwald", + "year": 2018, + "cast": [ + "Eddie Redmayne", + "Katherine Waterston", + "Alison Sudol", + "Dan Fogler", + "Ezra Miller", + "Jude Law", + "Johnny Depp", + "Zoë Kravitz", + "Callum Turner", + "Claudia Kim", + "William Nadylam", + "Carmen Ejogo", + "Kevin Guthrie", + "Poppy Corby-Tuech" + ], + "genres": [ + "Fantasy", + "Drama" + ] + }, + { + "title": "Widows", + "year": 2018, + "cast": [ + "Viola Davis", + "Michelle Rodriguez", + "Elizabeth Debicki", + "Cynthia Erivo", + "Colin Farrell", + "Brian Tyree Henry", + "Daniel Kaluuya", + "Garret Dillahunt", + "Carrie Coon", + "Jacki Weaver", + "Jon Bernthal", + "Manuel Garcia-Rulfo", + "Robert Duvall", + "Liam Neeson" + ], + "genres": [ + "Action", + "Thriller" + ] + }, + { + "title": "Instant Family", + "year": 2018, + "cast": [ + "Mark Wahlberg", + "Rose Byrne", + "Isabela Moner", + "Tig Notaro", + "Octavia Spencer" + ], + "genres": [ + "Comedy" + ] + }, + { + "title": "Ralph Breaks the Internet", + "year": 2018, + "cast": [ + "John C. Reilly", + "Sarah Silverman", + "Jack McBrayer", + "Jane Lynch", + "Taraji P. Henson", + "Gal Gadot", + "Alan Tudyk", + "Bill Hader", + "Alfred Molina" + ], + "genres": [ + "Animated", + "Fantasy", + "Adventure", + "Comedy" + ] + }, + { + "title": "Creed II", + "year": 2018, + "cast": [ + "Michael B. Jordan", + "Sylvester Stallone", + "Tessa Thompson", + "Dolph Lundgren", + "Florian Munteanu", + "Phylicia Rashad", + "Andre Ward", + "Wood Harris", + "Brigitte Nielsen" + ], + "genres": [ + "Sports", + "Drama" + ] + }, + { + "title": "Robin Hood", + "year": 2018, + "cast": [ + "Taron Egerton", + "Jamie Foxx", + "Ben Mendelsohn", + "Eve Hewson", + "Jamie Dornan", + "Tim Minchin", + "Paul Anderson" + ], + "genres": [ + "Action", + "Adventure" + ] + }, + { + "title": "Green Book", + "year": 2018, + "cast": [ + "Viggo Mortensen", + "Mahershala Ali", + "Linda Cardellini" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "The Favourite", + "year": 2018, + "cast": [ + "Emma Stone", + "Rachel Weisz", + "Olivia Colman", + "Nicholas Hoult", + "Joe Alwyn", + "Mark Gatiss" + ], + "genres": [ + "Biography", + "Drama" + ] + }, + { + "title": "Anna and the Apocalypse", + "year": 2018, + "cast": [ + "Ella Hunt", + "Malcolm Cumming", + "Marli Siu", + "Sarah Swire", + "Christopher Leveaux", + "Ben Wiggins" + ], + "genres": [ + "Horror", + "Musical", + "Comedy" + ] + }, + { + "title": "If Beale Street Could Talk", + "year": 2018, + "cast": [ + "Kiki Layne", + "Stephan James", + "Teyonah Parris", + "Regina King", + "Dave Franco", + "Ed Skrein", + "Diego Luna", + "Emily Rios" + ], + "genres": [ + "Drama", + "Romance" + ] + }, + { + "title": "Mary Queen of Scots", + "year": 2018, + "cast": [ + "Saoirse Ronan", + "Margot Robbie", + "Jack Lowden", + "Martin Compston", + "Joe Alwyn", + "Brendan Coyle", + "David Tennant", + "Guy Pearce" + ], + "genres": [ + "Historical", + "Drama" + ] + }, + { + "title": "Under the Silver Lake", + "year": 2018, + "cast": [ + "Andrew Garfield", + "Riley Keough", + "Topher Grace", + "Zosia Mamet", + "Jimmi Simpson", + "Luke Baines", + "Patrick Fischler" + ], + "genres": [ + "Noir", + "Crime", + "Thriller" + ] + }, + { + "title": "The Silence", + "year": 2018, + "cast": [ + "Miranda Otto", + "Stanley Tucci", + "John Corbett" + ], + "genres": [ + "Drama", + "Thriller" + ] + }, + { + "title": "This One's for the Ladies", + "year": 2018, + "cast": [ + "C-Pudding", + "Poundcake", + "Tyga & Raw Dawg", + "Sweet Tea", + "Young Rider", + "Blaze", + "Michele", + "Double Trouble", + "Satan", + "Fever" + ], + "genres": [ + "Documentary" + ] + }, + { + "title": "Ben Is Back", + "year": 2018, + "cast": [ + "Lucas Hedges", + "Julia Roberts", + "Kathryn Newton", + "Courtney B. Vance" + ], + "genres": [ + "Drama" + ] + }, + { + "title": "Mortal Engines", + "year": 2018, + "cast": [ + "Hera Hilmar", + "Robert Sheehan", + "Hugo Weaving", + "Jihae", + "Ronan Raftery", + "Leila George", + "Patrick Malahide", + "Stephen Lang" + ], + "genres": [ + "Science Fiction", + "Action", + "Adventure" + ] + }, + { + "title": "Spider-Man: Into the Spider-Verse", + "year": 2018, + "cast": [ + "Shameik Moore", + "Hailee Steinfeld", + "Mahershala Ali", + "Jake Johnson", + "Liev Schreiber", + "Brian Tyree Henry", + "Luna Lauren Velez", + "Lily Tomlin", + "John Mulaney", + "Kimiko Glenn", + "Nicholas Cage" + ], + "genres": [ + "Animated", + "Superhero", + "Action", + "Comedy" + ] + }, + { + "title": "The Mule", + "year": 2018, + "cast": [ + "Clint Eastwood", + "Bradley Cooper", + "Laurence Fishburne", + "Michael Peña", + "Dianne Wiest", + "Andy Garcia" + ], + "genres": [ + "Drama", + "Crime", + "Biography" + ] + }, + { + "title": "Vice", + "year": 2018, + "cast": [ + "Christian Bale", + "Amy Adams", + "Steve Carell", + "Sam Rockwell", + "Alison Pill", + "Jesse Plemons", + "Lily Rabe", + "Bill Pullman", + "Tyler Perry" + ], + "genres": [ + "Biography", + "Drama" + ] + }, + { + "title": "Second Act", + "year": 2018, + "cast": [ + "Jennifer Lopez", + "Vanessa Hudgens", + "Leah Remini", + "Annaleigh Ashford", + "Freddie Stroma", + "Dan Bucatinsky", + "Milo Ventimiglia", + "Treat Williams", + "Larry Miller" + ], + "genres": [ + "Romance", + "Comedy" + ] + }, + { + "title": "Mary Poppins Returns", + "year": 2018, + "cast": [ + "Emily Blunt", + "Lin-Manuel Miranda", + "Ben Whishaw", + "Emily Mortimer", + "Julie Walters", + "Colin Firth", + "Meryl Streep", + "Dick Van Dyke", + "Angela Lansbury" + ], + "genres": [ + "Musical", + "Fantasy" + ] + }, + { + "title": "Aquaman", + "year": 2018, + "cast": [ + "Jason Momoa", + "Amber Heard", + "Willem Dafoe", + "Patrick Wilson", + "Dolph Lundgren", + "Yahya Abdul-Mateen II", + "Nicole Kidman" + ], + "genres": [ + "Superhero", + "Action", + "Adventure" + ] + }, + { + "title": "Bumblebee", + "year": 2018, + "cast": [ + "Hailee Steinfeld", + "John Cena", + "Jorge Lendeborg Jr.", + "Jason Drucker", + "Rachel Crow", + "Pamela Adlon" + ], + "genres": [ + "Action", + "Adventure", + "Science Fiction" + ] + }, + { + "title": "Welcome to Marwen", + "year": 2018, + "cast": [ + "Steve Carell", + "Leslie Mann", + "Diane Kruger", + "Falk Hentschel", + "Janelle Monáe", + "Eiza Gonzalez", + "Gwendoline Christie" + ], + "genres": [ + "Fantasy", + "Drama" + ] + }, + { + "title": "Holmes and Watson", + "year": 2018, + "cast": [ + "Will Ferrell", + "John C. Reilly", + "Rebecca Hall", + "Ralph Fiennes", + "Rob Brydon", + "Kelly Macdonald", + "Lauren Lapkus", + "Hugh Laurie" + ], + "genres": [ + "Action", + "Mystery", + "Comedy" + ] + }, + { + "title": "On the Basis of Sex", + "year": 2018, + "cast": [ + "Felicity Jones", + "Armie Hammer", + "Justin Theroux", + "Jack Reynor", + "Cailee Spaeny", + "Sam Waterston", + "Kathy Bates" + ], + "genres": [ + "Biography", + "Drama" + ] + }, + { + "title": "Destroyer", + "year": 2018, + "cast": [ + "Nicole Kidman", + "Tatiana Maslany", + "Sebastian Stan", + "Toby Kebbell", + "Scoot McNairy" + ], + "genres": [ + "Crime", + "Thriller" + ] + } +] \ No newline at end of file diff --git a/chapter7/people.json b/chapter7/people.json new file mode 100644 index 0000000..09aa276 --- /dev/null +++ b/chapter7/people.json @@ -0,0 +1,34 @@ +[ + { + "name": "Jack", + "age": 27, + "hobby": [ + { + "type": "Movie", + "rating": 3 + }, + { + "type": "Sports", + "rating": 6 + } + ] + }, + { + "name": "Mark", + "age": 25, + "hobby": [ + { + "type": "Movie", + "rating": 2 + }, + { + "type": "Cook", + "rating": 5 + }, + { + "type": "Music", + "rating": 4 + } + ] + } +] \ No newline at end of file diff --git a/neighborhood.json b/chapter8/neighborhood.json similarity index 100% rename from neighborhood.json rename to chapter8/neighborhood.json diff --git a/restaurant.json b/chapter8/restaurant.json similarity index 100% rename from restaurant.json rename to chapter8/restaurant.json diff --git a/bucket.js b/chapter9/bucket.js similarity index 100% rename from bucket.js rename to chapter9/bucket.js diff --git a/chapter9/movie.json b/chapter9/movie.json new file mode 100644 index 0000000..28aed32 --- /dev/null +++ b/chapter9/movie.json @@ -0,0 +1,1402 @@ +[ + { + "title": "Avatar", + "year": 2009, + "director_name": "James Cameron", + "actors": [ + "CCH Pounder", + "Joel David Moore" + ], + "duration": 178, + "country": "USA", + "content_rating": "PG-13", + "gross": 760505847, + "imdb_score": 7.9 + }, + { + "title": "Pirates of the Caribbean: At World's End", + "year": 2007, + "director_name": "Gore Verbinski", + "actors": [ + "Johnny Depp", + "Orlando Bloom" + ], + "duration": 169, + "country": "USA", + "content_rating": "PG-13", + "gross": 309404152, + "imdb_score": 7.1 + }, + { + "title": "Spectre", + "year": 2015, + "director_name": "Sam Mendes", + "actors": [ + "Christoph Waltz", + "Rory Kinnear" + ], + "duration": 148, + "country": "UK", + "content_rating": "PG-13", + "gross": 200074175, + "imdb_score": 6.8 + }, + { + "title": "The Dark Knight Rises", + "year": 2012, + "director_name": "Christopher Nolan", + "actors": [ + "Tom Hardy", + "Christian Bale" + ], + "duration": 164, + "country": "USA", + "content_rating": "PG-13", + "gross": 448130642, + "imdb_score": 8.5 + }, + { + "title": "John Carter", + "year": 2012, + "director_name": "Andrew Stanton", + "actors": [ + "Daryl Sabara", + "Samantha Morton" + ], + "duration": 132, + "country": "USA", + "content_rating": "PG-13", + "gross": 73058679, + "imdb_score": 6.6 + }, + { + "title": "Spider-Man 3", + "year": 2007, + "director_name": "Sam Raimi", + "actors": [ + "J.K. Simmons", + "James Franco" + ], + "duration": 156, + "country": "USA", + "content_rating": "PG-13", + "gross": 336530303, + "imdb_score": 6.2 + }, + { + "title": "Tangled", + "year": 2010, + "director_name": "Nathan Greno", + "actors": [ + "Brad Garrett", + "Donna Murphy" + ], + "duration": 100, + "country": "USA", + "content_rating": "PG", + "gross": 200807262, + "imdb_score": 7.8 + }, + { + "title": "Avengers: Age of Ultron", + "year": 2015, + "director_name": "Joss Whedon", + "actors": [ + "Chris Hemsworth", + "Robert Downey Jr." + ], + "duration": 141, + "country": "USA", + "content_rating": "PG-13", + "gross": 458991599, + "imdb_score": 7.5 + }, + { + "title": "Harry Potter and the Half-Blood Prince", + "year": 2009, + "director_name": "David Yates", + "actors": [ + "Alan Rickman", + "Daniel Radcliffe" + ], + "duration": 153, + "country": "UK", + "content_rating": "PG", + "gross": 301956980, + "imdb_score": 7.5 + }, + { + "title": "Batman v Superman: Dawn of Justice", + "year": 2016, + "director_name": "Zack Snyder", + "actors": [ + "Henry Cavill", + "Lauren Cohan" + ], + "duration": 183, + "country": "USA", + "content_rating": "PG-13", + "gross": 330249062, + "imdb_score": 6.9 + }, + { + "title": "Superman Returns", + "year": 2006, + "director_name": "Bryan Singer", + "actors": [ + "Kevin Spacey", + "Marlon Brando" + ], + "duration": 169, + "country": "USA", + "content_rating": "PG-13", + "gross": 200069408, + "imdb_score": 6.1 + }, + { + "title": "Quantum of Solace", + "year": 2008, + "director_name": "Marc Forster", + "actors": [ + "Giancarlo Giannini", + "Mathieu Amalric" + ], + "duration": 106, + "country": "UK", + "content_rating": "PG-13", + "gross": 168368427, + "imdb_score": 6.7 + }, + { + "title": "Pirates of the Caribbean: Dead Man's Chest", + "year": 2006, + "director_name": "Gore Verbinski", + "actors": [ + "Johnny Depp", + "Orlando Bloom" + ], + "duration": 151, + "country": "USA", + "content_rating": "PG-13", + "gross": 423032628, + "imdb_score": 7.3 + }, + { + "title": "The Lone Ranger", + "year": 2013, + "director_name": "Gore Verbinski", + "actors": [ + "Johnny Depp", + "Ruth Wilson" + ], + "duration": 150, + "country": "USA", + "content_rating": "PG-13", + "gross": 89289910, + "imdb_score": 6.5 + }, + { + "title": "Man of Steel", + "year": 2013, + "director_name": "Zack Snyder", + "actors": [ + "Henry Cavill", + "Christopher Meloni" + ], + "duration": 143, + "country": "USA", + "content_rating": "PG-13", + "gross": 291021565, + "imdb_score": 7.2 + }, + { + "title": "The Chronicles of Narnia: Prince Caspian", + "year": 2008, + "director_name": "Andrew Adamson", + "actors": [ + "Peter Dinklage", + "Pierfrancesco Favino" + ], + "duration": 150, + "country": "USA", + "content_rating": "PG", + "gross": 141614023, + "imdb_score": 6.6 + }, + { + "title": "The Avengers", + "year": 2012, + "director_name": "Joss Whedon", + "actors": [ + "Chris Hemsworth", + "Robert Downey Jr." + ], + "duration": 173, + "country": "USA", + "content_rating": "PG-13", + "gross": 623279547, + "imdb_score": 8.1 + }, + { + "title": "Pirates of the Caribbean: On Stranger Tides", + "year": 2011, + "director_name": "Rob Marshall", + "actors": [ + "Johnny Depp", + "Sam Claflin" + ], + "duration": 136, + "country": "USA", + "content_rating": "PG-13", + "gross": 241063875, + "imdb_score": 6.7 + }, + { + "title": "Men in Black 3", + "year": 2012, + "director_name": "Barry Sonnenfeld", + "actors": [ + "Will Smith", + "Michael Stuhlbarg" + ], + "duration": 106, + "country": "USA", + "content_rating": "PG-13", + "gross": 179020854, + "imdb_score": 6.8 + }, + { + "title": "The Hobbit: The Battle of the Five Armies", + "year": 2014, + "director_name": "Peter Jackson", + "actors": [ + "Aidan Turner", + "Adam Brown" + ], + "duration": 164, + "country": "New Zealand", + "content_rating": "PG-13", + "gross": 255108370, + "imdb_score": 7.5 + }, + { + "title": "The Amazing Spider-Man", + "year": 2012, + "director_name": "Marc Webb", + "actors": [ + "Emma Stone", + "Andrew Garfield" + ], + "duration": 153, + "country": "USA", + "content_rating": "PG-13", + "gross": 262030663, + "imdb_score": 7 + }, + { + "title": "Robin Hood", + "year": 2010, + "director_name": "Ridley Scott", + "actors": [ + "Mark Addy", + "William Hurt" + ], + "duration": 156, + "country": "USA", + "content_rating": "PG-13", + "gross": 105219735, + "imdb_score": 6.7 + }, + { + "title": "The Hobbit: The Desolation of Smaug", + "year": 2013, + "director_name": "Peter Jackson", + "actors": [ + "Aidan Turner", + "Adam Brown" + ], + "duration": 186, + "country": "USA", + "content_rating": "PG-13", + "gross": 258355354, + "imdb_score": 7.9 + }, + { + "title": "The Golden Compass", + "year": 2007, + "director_name": "Chris Weitz", + "actors": [ + "Christopher Lee", + "Eva Green" + ], + "duration": 113, + "country": "USA", + "content_rating": "PG-13", + "gross": 70083519, + "imdb_score": 6.1 + }, + { + "title": "King Kong", + "year": 2005, + "director_name": "Peter Jackson", + "actors": [ + "Naomi Watts", + "Thomas Kretschmann" + ], + "duration": 201, + "country": "New Zealand", + "content_rating": "PG-13", + "gross": 218051260, + "imdb_score": 7.2 + }, + { + "title": "Titanic", + "year": 1997, + "director_name": "James Cameron", + "actors": [ + "Leonardo DiCaprio", + "Kate Winslet" + ], + "duration": 194, + "country": "USA", + "content_rating": "PG-13", + "gross": 658672302, + "imdb_score": 7.7 + }, + { + "title": "Captain America: Civil War", + "year": 2016, + "director_name": "Anthony Russo", + "actors": [ + "Robert Downey Jr.", + "Scarlett Johansson" + ], + "duration": 147, + "country": "USA", + "content_rating": "PG-13", + "gross": 407197282, + "imdb_score": 8.2 + }, + { + "title": "Battleship", + "year": 2012, + "director_name": "Peter Berg", + "actors": [ + "Liam Neeson", + "Alexander Skarsg\u00e5rd" + ], + "duration": 131, + "country": "USA", + "content_rating": "PG-13", + "gross": 65173160, + "imdb_score": 5.9 + }, + { + "title": "Jurassic World", + "year": 2015, + "director_name": "Colin Trevorrow", + "actors": [ + "Bryce Dallas Howard", + "Judy Greer" + ], + "duration": 124, + "country": "USA", + "content_rating": "PG-13", + "gross": 652177271, + "imdb_score": 7 + }, + { + "title": "Skyfall", + "year": 2012, + "director_name": "Sam Mendes", + "actors": [ + "Albert Finney", + "Helen McCrory" + ], + "duration": 143, + "country": "UK", + "content_rating": "PG-13", + "gross": 304360277, + "imdb_score": 7.8 + }, + { + "title": "Spider-Man 2", + "year": 2004, + "director_name": "Sam Raimi", + "actors": [ + "J.K. Simmons", + "James Franco" + ], + "duration": 135, + "country": "USA", + "content_rating": "PG-13", + "gross": 373377893, + "imdb_score": 7.3 + }, + { + "title": "Iron Man 3", + "year": 2013, + "director_name": "Shane Black", + "actors": [ + "Robert Downey Jr.", + "Jon Favreau" + ], + "duration": 195, + "country": "USA", + "content_rating": "PG-13", + "gross": 408992272, + "imdb_score": 7.2 + }, + { + "title": "Alice in Wonderland", + "year": 2010, + "director_name": "Tim Burton", + "actors": [ + "Johnny Depp", + "Alan Rickman" + ], + "duration": 108, + "country": "USA", + "content_rating": "PG", + "gross": 334185206, + "imdb_score": 6.5 + }, + { + "title": "X-Men: The Last Stand", + "year": 2006, + "director_name": "Brett Ratner", + "actors": [ + "Hugh Jackman", + "Kelsey Grammer" + ], + "duration": 104, + "country": "Canada", + "content_rating": "PG-13", + "gross": 234360014, + "imdb_score": 6.8 + }, + { + "title": "Monsters University", + "year": 2013, + "director_name": "Dan Scanlon", + "actors": [ + "Steve Buscemi", + "Tyler Labine" + ], + "duration": 104, + "country": "USA", + "content_rating": "G", + "gross": 268488329, + "imdb_score": 7.3 + }, + { + "title": "Transformers: Revenge of the Fallen", + "year": 2009, + "director_name": "Michael Bay", + "actors": [ + "Glenn Morshower", + "Kevin Dunn" + ], + "duration": 150, + "country": "USA", + "content_rating": "PG-13", + "gross": 402076689, + "imdb_score": 6 + }, + { + "title": "Transformers: Age of Extinction", + "year": 2014, + "director_name": "Michael Bay", + "actors": [ + "Bingbing Li", + "Sophia Myles" + ], + "duration": 165, + "country": "USA", + "content_rating": "PG-13", + "gross": 245428137, + "imdb_score": 5.7 + }, + { + "title": "Oz the Great and Powerful", + "year": 2013, + "director_name": "Sam Raimi", + "actors": [ + "Tim Holmes", + "Mila Kunis" + ], + "duration": 130, + "country": "USA", + "content_rating": "PG", + "gross": 234903076, + "imdb_score": 6.4 + }, + { + "title": "The Amazing Spider-Man 2", + "year": 2014, + "director_name": "Marc Webb", + "actors": [ + "Emma Stone", + "Andrew Garfield" + ], + "duration": 142, + "country": "USA", + "content_rating": "PG-13", + "gross": 202853933, + "imdb_score": 6.7 + }, + { + "title": "TRON: Legacy", + "year": 2010, + "director_name": "Joseph Kosinski", + "actors": [ + "Jeff Bridges", + "Olivia Wilde" + ], + "duration": 125, + "country": "USA", + "content_rating": "PG", + "gross": 172051787, + "imdb_score": 6.8 + }, + { + "title": "Cars 2", + "year": 2011, + "director_name": "John Lasseter", + "actors": [ + "Joe Mantegna", + "Thomas Kretschmann" + ], + "duration": 106, + "country": "USA", + "content_rating": "G", + "gross": 191450875, + "imdb_score": 6.3 + }, + { + "title": "Green Lantern", + "year": 2011, + "director_name": "Martin Campbell", + "actors": [ + "Ryan Reynolds", + "Temuera Morrison" + ], + "duration": 123, + "country": "USA", + "content_rating": "PG-13", + "gross": 116593191, + "imdb_score": 5.6 + }, + { + "title": "Toy Story 3", + "year": 2010, + "director_name": "Lee Unkrich", + "actors": [ + "Tom Hanks", + "John Ratzenberger" + ], + "duration": 103, + "country": "USA", + "content_rating": "G", + "gross": 414984497, + "imdb_score": 8.3 + }, + { + "title": "Terminator Salvation", + "year": 2009, + "director_name": "McG", + "actors": [ + "Christian Bale", + "Bryce Dallas Howard" + ], + "duration": 118, + "country": "USA", + "content_rating": "PG-13", + "gross": 125320003, + "imdb_score": 6.6 + }, + { + "title": "Furious 7", + "year": 2015, + "director_name": "James Wan", + "actors": [ + "Jason Statham", + "Paul Walker" + ], + "duration": 140, + "country": "USA", + "content_rating": "PG-13", + "gross": 350034110, + "imdb_score": 7.2 + }, + { + "title": "World War Z", + "year": 2013, + "director_name": "Marc Forster", + "actors": [ + "Peter Capaldi", + "Brad Pitt" + ], + "duration": 123, + "country": "USA", + "content_rating": "PG-13", + "gross": 202351611, + "imdb_score": 7 + }, + { + "title": "X-Men: Days of Future Past", + "year": 2014, + "director_name": "Bryan Singer", + "actors": [ + "Jennifer Lawrence", + "Peter Dinklage" + ], + "duration": 149, + "country": "USA", + "content_rating": "PG-13", + "gross": 233914986, + "imdb_score": 8 + }, + { + "title": "Star Trek Into Darkness", + "year": 2013, + "director_name": "J.J. Abrams", + "actors": [ + "Benedict Cumberbatch", + "Bruce Greenwood" + ], + "duration": 132, + "country": "USA", + "content_rating": "PG-13", + "gross": 228756232, + "imdb_score": 7.8 + }, + { + "title": "Jack the Giant Slayer", + "year": 2013, + "director_name": "Bryan Singer", + "actors": [ + "Eddie Marsan", + "Ewen Bremner" + ], + "duration": 114, + "country": "USA", + "content_rating": "PG-13", + "gross": 65171860, + "imdb_score": 6.3 + }, + { + "title": "The Great Gatsby", + "year": 2013, + "director_name": "Baz Luhrmann", + "actors": [ + "Leonardo DiCaprio", + "Elizabeth Debicki" + ], + "duration": 143, + "country": "Australia", + "content_rating": "PG-13", + "gross": 144812796, + "imdb_score": 7.3 + }, + { + "title": "Prince of Persia: The Sands of Time", + "year": 2010, + "director_name": "Mike Newell", + "actors": [ + "Jake Gyllenhaal", + "Richard Coyle" + ], + "duration": 116, + "country": "USA", + "content_rating": "PG-13", + "gross": 90755643, + "imdb_score": 6.6 + }, + { + "title": "Pacific Rim", + "year": 2013, + "director_name": "Guillermo del Toro", + "actors": [ + "Charlie Hunnam", + "Clifton Collins Jr." + ], + "duration": 131, + "country": "USA", + "content_rating": "PG-13", + "gross": 101785482, + "imdb_score": 7 + }, + { + "title": "Transformers: Dark of the Moon", + "year": 2011, + "director_name": "Michael Bay", + "actors": [ + "Glenn Morshower", + "Lester Speight" + ], + "duration": 154, + "country": "USA", + "content_rating": "PG-13", + "gross": 352358779, + "imdb_score": 6.3 + }, + { + "title": "Indiana Jones and the Kingdom of the Crystal Skull", + "year": 2008, + "director_name": "Steven Spielberg", + "actors": [ + "Harrison Ford", + "Ray Winstone" + ], + "duration": 122, + "country": "USA", + "content_rating": "PG-13", + "gross": 317011114, + "imdb_score": 6.2 + }, + { + "title": "The Good Dinosaur", + "year": 2015, + "director_name": "Peter Sohn", + "actors": [ + "A.J. Buckley", + "Jack McGraw" + ], + "duration": 93, + "country": "USA", + "content_rating": "PG", + "gross": 123070338, + "imdb_score": 6.8 + }, + { + "title": "Brave", + "year": 2012, + "director_name": "Mark Andrews", + "actors": [ + "Kelly Macdonald", + "John Ratzenberger" + ], + "duration": 93, + "country": "USA", + "content_rating": "PG", + "gross": 237282182, + "imdb_score": 7.2 + }, + { + "title": "Star Trek Beyond", + "year": 2016, + "director_name": "Justin Lin", + "actors": [ + "Sofia Boutella", + "Melissa Roxburgh" + ], + "duration": 122, + "country": "USA", + "content_rating": "PG-13", + "gross": 130468626, + "imdb_score": 7.5 + }, + { + "title": "WALL\u00b7E", + "year": 2008, + "director_name": "Andrew Stanton", + "actors": [ + "John Ratzenberger", + "Fred Willard" + ], + "duration": 98, + "country": "USA", + "content_rating": "G", + "gross": 223806889, + "imdb_score": 8.4 + }, + { + "title": "Rush Hour 3", + "year": 2007, + "director_name": "Brett Ratner", + "actors": [ + "Tzi Ma", + "Dana Ivey" + ], + "duration": 91, + "country": "USA", + "content_rating": "PG-13", + "gross": 140080850, + "imdb_score": 6.2 + }, + { + "title": "2012", + "year": 2009, + "director_name": "Roland Emmerich", + "actors": [ + "Oliver Platt", + "Liam James" + ], + "duration": 158, + "country": "USA", + "content_rating": "PG-13", + "gross": 166112167, + "imdb_score": 5.8 + }, + { + "title": "A Christmas Carol", + "year": 2009, + "director_name": "Robert Zemeckis", + "actors": [ + "Robin Wright", + "Colin Firth" + ], + "duration": 96, + "country": "USA", + "content_rating": "PG", + "gross": 137850096, + "imdb_score": 6.8 + }, + { + "title": "Jupiter Ascending", + "year": 2015, + "director_name": "Lana Wachowski", + "actors": [ + "Channing Tatum", + "Mila Kunis" + ], + "duration": 127, + "country": "USA", + "content_rating": "PG-13", + "gross": 47375327, + "imdb_score": 5.4 + }, + { + "title": "The Legend of Tarzan", + "year": 2016, + "director_name": "David Yates", + "actors": [ + "Christoph Waltz", + "Alexander Skarsg\u00e5rd" + ], + "duration": 110, + "country": "USA", + "content_rating": "PG-13", + "gross": 124051759, + "imdb_score": 6.6 + }, + { + "title": "The Chronicles of Narnia: The Lion, the Witch and the Wardrobe", + "year": 2005, + "director_name": "Andrew Adamson", + "actors": [ + "Jim Broadbent", + "Kiran Shah" + ], + "duration": 150, + "country": "USA", + "content_rating": "PG", + "gross": 291709845, + "imdb_score": 6.9 + }, + { + "title": "X-Men: Apocalypse", + "year": 2016, + "director_name": "Bryan Singer", + "actors": [ + "Jennifer Lawrence", + "Michael Fassbender" + ], + "duration": 144, + "country": "USA", + "content_rating": "PG-13", + "gross": 154985087, + "imdb_score": 7.3 + }, + { + "title": "The Dark Knight", + "year": 2008, + "director_name": "Christopher Nolan", + "actors": [ + "Christian Bale", + "Heath Ledger" + ], + "duration": 152, + "country": "USA", + "content_rating": "PG-13", + "gross": 533316061, + "imdb_score": 9 + }, + { + "title": "Up", + "year": 2009, + "director_name": "Pete Docter", + "actors": [ + "John Ratzenberger", + "Delroy Lindo" + ], + "duration": 96, + "country": "USA", + "content_rating": "PG", + "gross": 292979556, + "imdb_score": 8.3 + }, + { + "title": "Monsters vs. Aliens", + "year": 2009, + "director_name": "Rob Letterman", + "actors": [ + "Amy Poehler", + "Rainn Wilson" + ], + "duration": 94, + "country": "USA", + "content_rating": "PG", + "gross": 198332128, + "imdb_score": 6.5 + }, + { + "title": "Iron Man", + "year": 2008, + "director_name": "Jon Favreau", + "actors": [ + "Robert Downey Jr.", + "Jeff Bridges" + ], + "duration": 126, + "country": "USA", + "content_rating": "PG-13", + "gross": 318298180, + "imdb_score": 7.9 + }, + { + "title": "Hugo", + "year": 2011, + "director_name": "Martin Scorsese", + "actors": [ + "Chloe Grace Moretz", + "Christopher Lee" + ], + "duration": 126, + "country": "USA", + "content_rating": "PG", + "gross": 73820094, + "imdb_score": 7.5 + }, + { + "title": "Wild Wild West", + "year": 1999, + "director_name": "Barry Sonnenfeld", + "actors": [ + "Will Smith", + "Salma Hayek" + ], + "duration": 106, + "country": "USA", + "content_rating": "PG-13", + "gross": 113745408, + "imdb_score": 4.8 + }, + { + "title": "The Mummy: Tomb of the Dragon Emperor", + "year": 2008, + "director_name": "Rob Cohen", + "actors": [ + "Jet Li", + "Brendan Fraser" + ], + "duration": 112, + "country": "USA", + "content_rating": "PG-13", + "gross": 102176165, + "imdb_score": 5.2 + }, + { + "title": "Suicide Squad", + "year": 2016, + "director_name": "David Ayer", + "actors": [ + "Will Smith", + "Robin Atkin Downes" + ], + "duration": 123, + "country": "USA", + "content_rating": "PG-13", + "gross": 161087183, + "imdb_score": 6.9 + }, + { + "title": "Evan Almighty", + "year": 2007, + "director_name": "Tom Shadyac", + "actors": [ + "Jimmy Bennett", + "Morgan Freeman" + ], + "duration": 96, + "country": "USA", + "content_rating": "PG", + "gross": 100289690, + "imdb_score": 5.4 + }, + { + "title": "Edge of Tomorrow", + "year": 2014, + "director_name": "Doug Liman", + "actors": [ + "Tom Cruise", + "Lara Pulver" + ], + "duration": 113, + "country": "USA", + "content_rating": "PG-13", + "gross": 100189501, + "imdb_score": 7.9 + }, + { + "title": "Waterworld", + "year": 1995, + "director_name": "Kevin Reynolds", + "actors": [ + "Jeanne Tripplehorn", + "Rick Aviles" + ], + "duration": 176, + "country": "USA", + "content_rating": "PG-13", + "gross": 88246220, + "imdb_score": 6.1 + }, + { + "title": "G.I. Joe: The Rise of Cobra", + "year": 2009, + "director_name": "Stephen Sommers", + "actors": [ + "Joseph Gordon-Levitt", + "Dennis Quaid" + ], + "duration": 118, + "country": "USA", + "content_rating": "PG-13", + "gross": 150167630, + "imdb_score": 5.8 + }, + { + "title": "Inside Out", + "year": 2015, + "director_name": "Pete Docter", + "actors": [ + "Amy Poehler", + "Mindy Kaling" + ], + "duration": 95, + "country": "USA", + "content_rating": "PG", + "gross": 356454367, + "imdb_score": 8.3 + }, + { + "title": "The Jungle Book", + "year": 2016, + "director_name": "Jon Favreau", + "actors": [ + "Scarlett Johansson", + "Bill Murray" + ], + "duration": 106, + "country": "UK", + "content_rating": "PG", + "gross": 362645141, + "imdb_score": 7.8 + }, + { + "title": "Iron Man 2", + "year": 2010, + "director_name": "Jon Favreau", + "actors": [ + "Robert Downey Jr.", + "Scarlett Johansson" + ], + "duration": 124, + "country": "USA", + "content_rating": "PG-13", + "gross": 312057433, + "imdb_score": 7 + }, + { + "title": "Snow White and the Huntsman", + "year": 2012, + "director_name": "Rupert Sanders", + "actors": [ + "Chris Hemsworth", + "Kristen Stewart" + ], + "duration": 132, + "country": "USA", + "content_rating": "PG-13", + "gross": 155111815, + "imdb_score": 6.1 + }, + { + "title": "Maleficent", + "year": 2014, + "director_name": "Robert Stromberg", + "actors": [ + "Angelina Jolie Pitt", + "Sharlto Copley" + ], + "duration": 97, + "country": "USA", + "content_rating": "PG", + "gross": 241407328, + "imdb_score": 7 + }, + { + "title": "Dawn of the Planet of the Apes", + "year": 2014, + "director_name": "Matt Reeves", + "actors": [ + "Gary Oldman", + "Judy Greer" + ], + "duration": 130, + "country": "USA", + "content_rating": "PG-13", + "gross": 208543795, + "imdb_score": 7.6 + }, + { + "title": "47 Ronin", + "year": 2013, + "director_name": "Carl Rinsch", + "actors": [ + "Keanu Reeves", + "Cary-Hiroyuki Tagawa" + ], + "duration": 128, + "country": "USA", + "content_rating": "PG-13", + "gross": 38297305, + "imdb_score": 6.3 + }, + { + "title": "Captain America: The Winter Soldier", + "year": 2014, + "director_name": "Anthony Russo", + "actors": [ + "Scarlett Johansson", + "Chris Evans" + ], + "duration": 136, + "country": "USA", + "content_rating": "PG-13", + "gross": 259746958, + "imdb_score": 7.8 + }, + { + "title": "Shrek Forever After", + "year": 2010, + "director_name": "Mike Mitchell", + "actors": [ + "Jon Hamm", + "Kathy Griffin" + ], + "duration": 93, + "country": "USA", + "content_rating": "PG", + "gross": 238371987, + "imdb_score": 6.4 + }, + { + "title": "Tomorrowland", + "year": 2015, + "director_name": "Brad Bird", + "actors": [ + "Judy Greer", + "Chris Bauer" + ], + "duration": 130, + "country": "USA", + "content_rating": "PG", + "gross": 93417865, + "imdb_score": 6.5 + }, + { + "title": "Inception", + "year": 2010, + "director_name": "Christopher Nolan", + "actors": [ + "Leonardo DiCaprio", + "Tom Hardy" + ], + "duration": 148, + "country": "USA", + "content_rating": "PG-13", + "gross": 292568851, + "imdb_score": 8.8 + }, + { + "title": "Big Hero 6", + "year": 2014, + "director_name": "Don Hall", + "actors": [ + "Damon Wayans Jr.", + "Daniel Henney" + ], + "duration": 102, + "country": "USA", + "content_rating": "PG", + "gross": 222487711, + "imdb_score": 7.9 + }, + { + "title": "Wreck-It Ralph", + "year": 2012, + "director_name": "Rich Moore", + "actors": [ + "Jack McBrayer", + "Sarah Silverman" + ], + "duration": 101, + "country": "USA", + "content_rating": "PG", + "gross": 189412677, + "imdb_score": 7.8 + }, + { + "title": "The Polar Express", + "year": 2004, + "director_name": "Robert Zemeckis", + "actors": [ + "Tom Hanks", + "Eddie Deezen" + ], + "duration": 100, + "country": "USA", + "content_rating": "G", + "gross": 665426, + "imdb_score": 6.6 + }, + { + "title": "Independence Day: Resurgence", + "year": 2016, + "director_name": "Roland Emmerich", + "actors": [ + "Vivica A. Fox", + "Sela Ward" + ], + "duration": 120, + "country": "USA", + "content_rating": "PG-13", + "gross": 102315545, + "imdb_score": 5.5 + }, + { + "title": "How to Train Your Dragon", + "year": 2010, + "director_name": "Dean DeBlois", + "actors": [ + "Gerard Butler", + "America Ferrera" + ], + "duration": 98, + "country": "USA", + "content_rating": "PG", + "gross": 217387997, + "imdb_score": 8.2 + }, + { + "title": "Terminator 3: Rise of the Machines", + "year": 2003, + "director_name": "Jonathan Mostow", + "actors": [ + "Nick Stahl", + "M.C. Gainey" + ], + "duration": 109, + "country": "USA", + "content_rating": "R", + "gross": 150350192, + "imdb_score": 6.4 + }, + { + "title": "Guardians of the Galaxy", + "year": 2014, + "director_name": "James Gunn", + "actors": [ + "Bradley Cooper", + "Vin Diesel" + ], + "duration": 121, + "country": "USA", + "content_rating": "PG-13", + "gross": 333130696, + "imdb_score": 8.1 + }, + { + "title": "Interstellar", + "year": 2014, + "director_name": "Christopher Nolan", + "actors": [ + "Matthew McConaughey", + "Anne Hathaway" + ], + "duration": 169, + "country": "USA", + "content_rating": "PG-13", + "gross": 187991439, + "imdb_score": 8.6 + }, + { + "title": "Australia", + "year": 2008, + "director_name": "Baz Luhrmann", + "actors": [ + "Essie Davis", + "Bryan Brown" + ], + "duration": 165, + "country": "Australia", + "content_rating": "PG-13", + "gross": 49551662, + "imdb_score": 6.6 + }, + { + "title": "Warcraft", + "year": 2016, + "director_name": "Duncan Jones", + "actors": [ + "Dominic Cooper", + "Callum Rennie" + ], + "duration": 123, + "country": "USA", + "content_rating": "PG-13", + "gross": 46978995, + "imdb_score": 7.3 + }, + { + "title": "X-Men: First Class", + "year": 2011, + "director_name": "Matthew Vaughn", + "actors": [ + "Jennifer Lawrence", + "Michael Fassbender" + ], + "duration": 132, + "country": "USA", + "content_rating": "PG-13", + "gross": 146405371, + "imdb_score": 7.8 + }, + { + "title": "The Hobbit: An Unexpected Journey", + "year": 2012, + "director_name": "Peter Jackson", + "actors": [ + "Aidan Turner", + "Adam Brown" + ], + "duration": 182, + "country": "USA", + "content_rating": "PG-13", + "gross": 303001229, + "imdb_score": 7.9 + } +] \ No newline at end of file diff --git a/orders.json b/chapter9/orders.json similarity index 100% rename from orders.json rename to chapter9/orders.json diff --git a/out.js b/chapter9/out.js similarity index 100% rename from out.js rename to chapter9/out.js diff --git a/pipeline_1.js b/chapter9/pipeline_1.js similarity index 100% rename from pipeline_1.js rename to chapter9/pipeline_1.js diff --git a/pipeline_2.js b/chapter9/pipeline_2.js similarity index 100% rename from pipeline_2.js rename to chapter9/pipeline_2.js diff --git a/pipeline_3.js b/chapter9/pipeline_3.js similarity index 100% rename from pipeline_3.js rename to chapter9/pipeline_3.js diff --git a/pipeline_4.js b/chapter9/pipeline_4.js similarity index 100% rename from pipeline_4.js rename to chapter9/pipeline_4.js diff --git a/chapter9/restaurant.json b/chapter9/restaurant.json new file mode 100644 index 0000000..85c4014 --- /dev/null +++ b/chapter9/restaurant.json @@ -0,0 +1,25360 @@ +[{"_id":{"$oid":"55cba2476c522cafdb053add"},"location":{"coordinates":[-73.856077,40.848447],"type":"Point"},"name":"Morris Park Bake Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb053ade"},"location":{"coordinates":[-73.961704,40.662942],"type":"Point"},"name":"Wendy'S"} +,{"_id":{"$oid":"55cba2476c522cafdb053adf"},"location":{"coordinates":[-73.98241999999999,40.579505],"type":"Point"},"name":"Riviera Caterer"} +,{"_id":{"$oid":"55cba2476c522cafdb053ae0"},"location":{"coordinates":[-73.8601152,40.7311739],"type":"Point"},"name":"Tov Kosher Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb053ae1"},"location":{"coordinates":[-73.8803827,40.7643124],"type":"Point"},"name":"Brunos On The Boulevard"} +,{"_id":{"$oid":"55cba2476c522cafdb053ae2"},"location":{"coordinates":[-73.98513559999999,40.7676919],"type":"Point"},"name":"Dj Reynolds Pub And Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053ae3"},"location":{"coordinates":[-73.9068506,40.6199034],"type":"Point"},"name":"Wilken'S Fine Food"} +,{"_id":{"$oid":"55cba2476c522cafdb053ae4"},"location":{"coordinates":[-74.00528899999999,40.628886],"type":"Point"},"name":"Regina Caterers"} +,{"_id":{"$oid":"55cba2476c522cafdb053ae5"},"location":{"coordinates":[-73.9482609,40.6408271],"type":"Point"},"name":"Taste The Tropics Ice Cream"} +,{"_id":{"$oid":"55cba2476c522cafdb053ae6"},"location":{"coordinates":[-74.1377286,40.6119572],"type":"Point"},"name":"Kosher Island"} +,{"_id":{"$oid":"55cba2476c522cafdb053ae7"},"location":{"coordinates":[-73.8786113,40.8502883],"type":"Point"},"name":"Wild Asia"} +,{"_id":{"$oid":"55cba2476c522cafdb053ae8"},"location":{"coordinates":[-73.9973325,40.61174889999999],"type":"Point"},"name":"C \u0026 C Catering Service"} +,{"_id":{"$oid":"55cba2476c522cafdb053ae9"},"location":{"coordinates":[-73.96926909999999,40.7685235],"type":"Point"},"name":"1 East 66Th Street Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb053aea"},"location":{"coordinates":[-73.871194,40.6730975],"type":"Point"},"name":"May May Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb053aeb"},"location":{"coordinates":[-73.9653967,40.6064339],"type":"Point"},"name":"Seuda Foods"} +,{"_id":{"$oid":"55cba2476c522cafdb053aec"},"location":{"coordinates":[-73.97822040000001,40.6435254],"type":"Point"},"name":"Carvel Ice Cream"} +,{"_id":{"$oid":"55cba2476c522cafdb053aed"},"location":{"coordinates":[-73.7032601,40.7386417],"type":"Point"},"name":"Carvel Ice Cream"} +,{"_id":{"$oid":"55cba2476c522cafdb053aee"},"location":{"coordinates":[-74.0259567,40.6353674],"type":"Point"},"name":"Nordic Delicacies"} +,{"_id":{"$oid":"55cba2476c522cafdb053aef"},"location":{"coordinates":[-73.9829239,40.6580753],"type":"Point"},"name":"The Movable Feast"} +,{"_id":{"$oid":"55cba2476c522cafdb053af0"},"location":{"coordinates":[-73.839297,40.78147],"type":"Point"},"name":"Sal'S Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb053af1"},"location":{"coordinates":[-73.95171,40.767461],"type":"Point"},"name":"Glorious Food"} +,{"_id":{"$oid":"55cba2476c522cafdb053af2"},"location":{"coordinates":[-73.9925306,40.7309346],"type":"Point"},"name":"Bully'S Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb053af3"},"location":{"coordinates":[-73.976112,40.786714],"type":"Point"},"name":"Harriet'S Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb053af4"},"location":{"coordinates":[-73.94024739999999,40.7623288],"type":"Point"},"name":"Steve Chu'S Deli \u0026 Grocery"} +,{"_id":{"$oid":"55cba2476c522cafdb053af5"},"location":{"coordinates":[-73.96805719999999,40.7925587],"type":"Point"},"name":"P \u0026 S Deli Grocery"} +,{"_id":{"$oid":"55cba2476c522cafdb053af6"},"location":{"coordinates":[-73.996984,40.72589],"type":"Point"},"name":"Angelika Film Center"} +,{"_id":{"$oid":"55cba2476c522cafdb053af7"},"location":{"coordinates":[-73.9634876,40.6940001],"type":"Point"},"name":"White Castle"} +,{"_id":{"$oid":"55cba2476c522cafdb053af8"},"location":{"coordinates":[-73.8642349,40.75356],"type":"Point"},"name":"Ho Mei Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053af9"},"location":{"coordinates":[-74.0085357,40.70620539999999],"type":"Point"},"name":"The Country Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb053afa"},"location":{"coordinates":[-73.9246028,40.6522396],"type":"Point"},"name":"Shashemene Int'L Restaura"} +,{"_id":{"$oid":"55cba2476c522cafdb053afb"},"location":{"coordinates":[-74.00920839999999,40.7132925],"type":"Point"},"name":"Downtown Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb053afc"},"location":{"coordinates":[-73.84856870000002,40.8903781],"type":"Point"},"name":"Carvel Ice Cream"} +,{"_id":{"$oid":"55cba2476c522cafdb053afd"},"location":{"coordinates":[-73.991495,40.692273],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb053afe"},"location":{"coordinates":[-73.9998042,40.7251256],"type":"Point"},"name":"Olive'S"} +,{"_id":{"$oid":"55cba2476c522cafdb053aff"},"location":{"coordinates":[-73.8893654,40.81376179999999],"type":"Point"},"name":"Happy Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb053b00"},"location":{"coordinates":[-73.990494,40.7569545],"type":"Point"},"name":"Cafe Metro"} +,{"_id":{"$oid":"55cba2476c522cafdb053b01"},"location":{"coordinates":[-73.902463,40.694924],"type":"Point"},"name":"Tony'S Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb053b02"},"location":{"coordinates":[-73.97534999999999,40.7516269],"type":"Point"},"name":"Lexler Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb053b03"},"location":{"coordinates":[-74.1459332,40.6103714],"type":"Point"},"name":"Bagels N Buns"} +,{"_id":{"$oid":"55cba2476c522cafdb053b04"},"location":{"coordinates":[-73.8740217,40.7135015],"type":"Point"},"name":"Hot Bagels"} +,{"_id":{"$oid":"55cba2476c522cafdb053b05"},"location":{"coordinates":[-73.8309503,40.7001121],"type":"Point"},"name":"Snack Time Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb053b06"},"location":{"coordinates":[-73.9791458,40.744328],"type":"Point"},"name":"Domino'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb053b07"},"location":{"coordinates":[-73.95685019999999,40.7753401],"type":"Point"},"name":"Lorenzo \u0026 Maria'S"} +,{"_id":{"$oid":"55cba2476c522cafdb053b08"},"location":{"coordinates":[-73.975393,40.757365],"type":"Point"},"name":"Berkely"} +,{"_id":{"$oid":"55cba2476c522cafdb053b09"},"location":{"coordinates":[-73.9075537,40.6438684],"type":"Point"},"name":"Sonny'S Heros"} +,{"_id":{"$oid":"55cba2476c522cafdb053b0a"},"location":{"coordinates":[-74.0796436,40.59878339999999],"type":"Point"},"name":"Carvel Ice Cream"} +,{"_id":{"$oid":"55cba2476c522cafdb053b0b"},"location":{"coordinates":[-73.92701509999999,40.6620192],"type":"Point"},"name":"Golden Pavillion"} +,{"_id":{"$oid":"55cba2476c522cafdb053b0c"},"location":{"coordinates":[-73.9806854,40.7778589],"type":"Point"},"name":"Domino'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb053b0d"},"location":{"coordinates":[-73.9615132,40.6253268],"type":"Point"},"name":"Kosher Bagel Hole"} +,{"_id":{"$oid":"55cba2476c522cafdb053b0e"},"location":{"coordinates":[-73.96084119999999,40.8014307],"type":"Point"},"name":"Spoon Bread Catering"} +,{"_id":{"$oid":"55cba2476c522cafdb053b0f"},"location":{"coordinates":[-84.2040813,9.9986585],"type":"Point"},"name":"Terminal Cafe/Yankee Clipper"} +,{"_id":{"$oid":"55cba2476c522cafdb053b10"},"location":{"coordinates":[-74.0228449,40.6281815],"type":"Point"},"name":"Mejlander \u0026 Mulgannon"} +,{"_id":{"$oid":"55cba2476c522cafdb053b11"},"location":{"coordinates":[-74.1178949,40.5734906],"type":"Point"},"name":"Plaza Bagels \u0026 Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb053b12"},"location":{"coordinates":[-74.0061936,40.7092038],"type":"Point"},"name":"Texas Rotisserie"} +,{"_id":{"$oid":"55cba2476c522cafdb053b13"},"location":{"coordinates":[-74.03400479999999,40.6127077],"type":"Point"},"name":"Philadelhia Grille Express"} +,{"_id":{"$oid":"55cba2476c522cafdb053b14"},"location":{"coordinates":[-73.96252129999999,40.7098035],"type":"Point"},"name":"Peter Luger Steakhouse"} +,{"_id":{"$oid":"55cba2476c522cafdb053b15"},"location":{"coordinates":[-73.9712,40.751703],"type":"Point"},"name":"Palm Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053b16"},"location":{"coordinates":[-73.8941893,40.8634684],"type":"Point"},"name":"Happy Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb053b17"},"location":{"coordinates":[-73.9774394,40.7604522],"type":"Point"},"name":"21 Club"} +,{"_id":{"$oid":"55cba2476c522cafdb053b18"},"location":{"coordinates":[-73.81363999999999,40.82941100000001],"type":"Point"},"name":"Manhem Club"} +,{"_id":{"$oid":"55cba2476c522cafdb053b19"},"location":{"coordinates":[-74.15235919999999,40.5563756],"type":"Point"},"name":"B \u0026 M Hot Bagel \u0026 Grocery"} +,{"_id":{"$oid":"55cba2476c522cafdb053b1a"},"location":{"coordinates":[-73.966032,40.762832],"type":"Point"},"name":"Isle Of Capri Resturant"} +,{"_id":{"$oid":"55cba2476c522cafdb053b1b"},"location":{"coordinates":[-73.9891878,40.7375638],"type":"Point"},"name":"Old Town Bar \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053b1c"},"location":{"coordinates":[-73.94839189999999,40.7224876],"type":"Point"},"name":"Polish National Home"} +,{"_id":{"$oid":"55cba2476c522cafdb053b1d"},"location":{"coordinates":[-73.97166039999999,40.764832],"type":"Point"},"name":"Metropolitan Club"} +,{"_id":{"$oid":"55cba2476c522cafdb053b1e"},"location":{"coordinates":[-74.00310999999999,40.7348888],"type":"Point"},"name":"Seville Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053b1f"},"location":{"coordinates":[-74.0010484,40.71599000000001],"type":"Point"},"name":"Criminal Court Bldg Cafeteria"} +,{"_id":{"$oid":"55cba2476c522cafdb053b20"},"location":{"coordinates":[-73.9056678,40.7066898],"type":"Point"},"name":"Gottscheer Hall"} +,{"_id":{"$oid":"55cba2476c522cafdb053b21"},"location":{"coordinates":[-73.9788694,40.7665961],"type":"Point"},"name":"Nyac Main Dining Room"} +,{"_id":{"$oid":"55cba2476c522cafdb053b22"},"location":{"coordinates":[-73.98146,40.7250067],"type":"Point"},"name":"7B Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb053b23"},"location":{"coordinates":[-73.86137149999999,40.7293762],"type":"Point"},"name":"Ben-Best Deli \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053b24"},"location":{"coordinates":[-73.9805679,40.7659436],"type":"Point"},"name":"Cafe Atelier (Art Students League)"} +,{"_id":{"$oid":"55cba2476c522cafdb053b25"},"location":{"coordinates":[-73.965531,40.765431],"type":"Point"},"name":"Donohue'S Steak House"} +,{"_id":{"$oid":"55cba2476c522cafdb053b26"},"location":{"coordinates":[-73.9818918,40.6901211],"type":"Point"},"name":"Junior'S"} +,{"_id":{"$oid":"55cba2476c522cafdb053b27"},"location":{"coordinates":[-73.98621899999999,40.763406],"type":"Point"},"name":"Tout Va Bien"} +,{"_id":{"$oid":"55cba2476c522cafdb053b28"},"location":{"coordinates":[-74.138263,40.546681],"type":"Point"},"name":"Great Kills Yacht Club"} +,{"_id":{"$oid":"55cba2476c522cafdb053b29"},"location":{"coordinates":[-73.9775552,40.7432016],"type":"Point"},"name":"Marchis Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053b2a"},"location":{"coordinates":[-73.95443709999999,40.5877993],"type":"Point"},"name":"Towne Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb053b2b"},"location":{"coordinates":[-73.840437,40.6627235],"type":"Point"},"name":"New Park Pizzeria \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053b2c"},"location":{"coordinates":[-73.96485799999999,40.761899],"type":"Point"},"name":"Serendipity 3"} +,{"_id":{"$oid":"55cba2476c522cafdb053b2d"},"location":{"coordinates":[-73.7522366,40.7766941],"type":"Point"},"name":"Douglaston Club"} +,{"_id":{"$oid":"55cba2476c522cafdb053b2e"},"location":{"coordinates":[-73.9151096,40.763377],"type":"Point"},"name":"Rizzo'S Fine Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb053b2f"},"location":{"coordinates":[-74.002944,40.652779],"type":"Point"},"name":"Melody Lanes"} +,{"_id":{"$oid":"55cba2476c522cafdb053b30"},"location":{"coordinates":[-73.84971759999999,40.8304811],"type":"Point"},"name":"The New Starling Athletic Club Of The Bronx"} +,{"_id":{"$oid":"55cba2476c522cafdb053b31"},"location":{"coordinates":[-74.00619499999999,40.735663],"type":"Point"},"name":"White Horse Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb053b32"},"location":{"coordinates":[-74.0707363,40.59321569999999],"type":"Point"},"name":"Crystal Room"} +,{"_id":{"$oid":"55cba2476c522cafdb053b33"},"location":{"coordinates":[-74.07444319999999,40.6096914],"type":"Point"},"name":"Labetti'S Post # 2159"} +,{"_id":{"$oid":"55cba2476c522cafdb053b34"},"location":{"coordinates":[-73.9727638,40.588853],"type":"Point"},"name":"Shell Lanes"} +,{"_id":{"$oid":"55cba2476c522cafdb053b35"},"location":{"coordinates":[-73.9896713,40.7287978],"type":"Point"},"name":"Mcsorley'S Old Ale House"} +,{"_id":{"$oid":"55cba2476c522cafdb053b36"},"location":{"coordinates":[-73.99950489999999,40.7169224],"type":"Point"},"name":"Forlinis Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053b37"},"location":{"coordinates":[-74.2274942,40.5071996],"type":"Point"},"name":"South Shore Swimming Club"} +,{"_id":{"$oid":"55cba2476c522cafdb053b38"},"location":{"coordinates":[-74.0037823,40.7380122],"type":"Point"},"name":"Corner Bistro"} +,{"_id":{"$oid":"55cba2476c522cafdb053b39"},"location":{"coordinates":[-73.94933739999999,40.6509823],"type":"Point"},"name":"Nostrand Donut Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb053b3a"},"location":{"coordinates":[-73.97557069999999,40.7596796],"type":"Point"},"name":"La Grenouille"} +,{"_id":{"$oid":"55cba2476c522cafdb053b3b"},"location":{"coordinates":[-73.952449,40.776325],"type":"Point"},"name":"Dorrian'S Red Hand Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053b3c"},"location":{"coordinates":[-73.9395182,40.8422945],"type":"Point"},"name":"Como Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb053b3d"},"location":{"coordinates":[-73.9973041,40.7188698],"type":"Point"},"name":"Angelo Of Mulberry St."} +,{"_id":{"$oid":"55cba2476c522cafdb053b3e"},"location":{"coordinates":[-74.001043,40.729795],"type":"Point"},"name":"Panchito'S"} +,{"_id":{"$oid":"55cba2476c522cafdb053b3f"},"location":{"coordinates":[-74.0166091,40.6284767],"type":"Point"},"name":"New Corner"} +,{"_id":{"$oid":"55cba2476c522cafdb053b40"},"location":{"coordinates":[-74.004758,40.741207],"type":"Point"},"name":"Old Homestead"} +,{"_id":{"$oid":"55cba2476c522cafdb053b41"},"location":{"coordinates":[-48.9424,-16.3550032],"type":"Point"},"name":"Dining Room"} +,{"_id":{"$oid":"55cba2476c522cafdb053b42"},"location":{"coordinates":[-73.98126069999999,40.7547107],"type":"Point"},"name":"The Princeton Club"} +,{"_id":{"$oid":"55cba2476c522cafdb053b43"},"location":{"coordinates":[-73.9646207,40.7550069],"type":"Point"},"name":"Le Perigord"} +,{"_id":{"$oid":"55cba2476c522cafdb053b44"},"location":{"coordinates":[-74.1220973,40.6129407],"type":"Point"},"name":"Joe \u0026 Pat'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb053b45"},"location":{"coordinates":[-73.9365108,40.8497077],"type":"Point"},"name":"Reynold'S Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb053b46"},"location":{"coordinates":[-73.97063700000001,40.751495],"type":"Point"},"name":"Keats Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053b47"},"location":{"coordinates":[-73.9979214,40.7371344],"type":"Point"},"name":"Spain Restaurant \u0026 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb053b48"},"location":{"coordinates":[-73.9446421,40.7253944],"type":"Point"},"name":"Palace Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb053b49"},"location":{"coordinates":[-73.92506,40.8275556],"type":"Point"},"name":"Yankee Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb053b4a"},"location":{"coordinates":[-73.99987229999999,40.7386361],"type":"Point"},"name":"Donut Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb053b4b"},"location":{"coordinates":[-74.0056649,40.7452371],"type":"Point"},"name":"Moran'S Chelsea"} +,{"_id":{"$oid":"55cba2476c522cafdb053b4c"},"location":{"coordinates":[-73.96392089999999,40.8033908],"type":"Point"},"name":"V \u0026 T Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053b4d"},"location":{"coordinates":[-73.9590059,40.7090147],"type":"Point"},"name":"Reben Luncheonette"} +,{"_id":{"$oid":"55cba2476c522cafdb053b4e"},"location":{"coordinates":[-73.7867565,40.7271312],"type":"Point"},"name":"King Yum Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053b4f"},"location":{"coordinates":[-73.9896898,40.6199526],"type":"Point"},"name":"J\u0026V Famous Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb053b50"},"location":{"coordinates":[-73.8850023,40.7494272],"type":"Point"},"name":"Jahn'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053b51"},"location":{"coordinates":[-73.9799932,40.7660886],"type":"Point"},"name":"La Parisienne Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb053b52"},"location":{"coordinates":[-73.989131,40.760039],"type":"Point"},"name":"Joe Allen Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053b53"},"location":{"coordinates":[-74.16536339999999,40.5450793],"type":"Point"},"name":"Joyce'S Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb053b54"},"location":{"coordinates":[-74.0003315,40.7274874],"type":"Point"},"name":"Arturo'S"} +,{"_id":{"$oid":"55cba2476c522cafdb053b55"},"location":{"coordinates":[-73.988948,40.760337],"type":"Point"},"name":"Barbetta Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053b56"},"location":{"coordinates":[-73.982241,40.576366],"type":"Point"},"name":"Gargiulo'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053b57"},"location":{"coordinates":[-73.96117869999999,40.7619226],"type":"Point"},"name":"Il Vagabondo Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053b58"},"location":{"coordinates":[-73.856132,40.743841],"type":"Point"},"name":"Parkside Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053b59"},"location":{"coordinates":[-73.91427200000001,40.7569379],"type":"Point"},"name":"Lavelle'S Admiral'S Club"} +,{"_id":{"$oid":"55cba2476c522cafdb053b5a"},"location":{"coordinates":[-73.963506,40.758273],"type":"Point"},"name":"Neary'S Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb053b5b"},"location":{"coordinates":[-73.87786539999999,40.8724377],"type":"Point"},"name":"Mcdwyers Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb053b5c"},"location":{"coordinates":[-73.9983,40.715051],"type":"Point"},"name":"Mee Sum Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb053b5d"},"location":{"coordinates":[-73.70902579999999,40.7276012],"type":"Point"},"name":"Nancy'S Fire Side"} +,{"_id":{"$oid":"55cba2476c522cafdb053b5e"},"location":{"coordinates":[-73.9990337,40.7143954],"type":"Point"},"name":"Hop Kee Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053b5f"},"location":{"coordinates":[-74.0049219,40.720699],"type":"Point"},"name":"Nancy Whiskey Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb053b60"},"location":{"coordinates":[-73.808593,40.702028],"type":"Point"},"name":"Blarney Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb053b61"},"location":{"coordinates":[-73.78999089999999,40.7118632],"type":"Point"},"name":"Margherita Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb053b62"},"location":{"coordinates":[-73.8299395,40.5812137],"type":"Point"},"name":"Healy'S Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb053b63"},"location":{"coordinates":[-73.98586209999999,40.67017250000001],"type":"Point"},"name":"Fifth Avenue Bingo"} +,{"_id":{"$oid":"55cba2476c522cafdb053b64"},"location":{"coordinates":[-74.1402105,40.6301893],"type":"Point"},"name":"Denino'S Pizzeria Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb053b65"},"location":{"coordinates":[-73.942849,40.6076256],"type":"Point"},"name":"Michael'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053b66"},"location":{"coordinates":[-73.99532099999999,40.750205],"type":"Point"},"name":"New York Pizza Suprema"} +,{"_id":{"$oid":"55cba2476c522cafdb053b67"},"location":{"coordinates":[-73.9736776,40.7535755],"type":"Point"},"name":"Nanni Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053b68"},"location":{"coordinates":[-73.82770529999999,40.6944628],"type":"Point"},"name":"Lenihan'S Saloon"} +,{"_id":{"$oid":"55cba2476c522cafdb053b69"},"location":{"coordinates":[-73.8682701,40.745683],"type":"Point"},"name":"Emilio Iii Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb053b6a"},"location":{"coordinates":[-74.0086833,40.7052024],"type":"Point"},"name":"Killarney Rose"} +,{"_id":{"$oid":"55cba2476c522cafdb053b6b"},"location":{"coordinates":[-73.8216767,40.6689548],"type":"Point"},"name":"Don Peppe"} +,{"_id":{"$oid":"55cba2476c522cafdb053b6c"},"location":{"coordinates":[-73.9250442,40.5595462],"type":"Point"},"name":"Blarney Castle"} +,{"_id":{"$oid":"55cba2476c522cafdb053b6d"},"location":{"coordinates":[-73.955074,40.599217],"type":"Point"},"name":"Three Star Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053b6e"},"location":{"coordinates":[-73.98926,40.7509054],"type":"Point"},"name":"Blarney Rock"} +,{"_id":{"$oid":"55cba2476c522cafdb053b6f"},"location":{"coordinates":[-73.98306099999999,40.7441419],"type":"Point"},"name":"Desmond'S Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb053b70"},"location":{"coordinates":[-73.8204154,40.7242443],"type":"Point"},"name":"Naomi Kosher Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb053b71"},"location":{"coordinates":[-73.9396213,40.5841703],"type":"Point"},"name":"Roll-N-Roaster"} +,{"_id":{"$oid":"55cba2476c522cafdb053b72"},"location":{"coordinates":[-74.0016583,40.7319679],"type":"Point"},"name":"Tio Pepe"} +,{"_id":{"$oid":"55cba2476c522cafdb053b73"},"location":{"coordinates":[-73.9420751,40.6002442],"type":"Point"},"name":"Brennan \u0026 Carr"} +,{"_id":{"$oid":"55cba2476c522cafdb053b74"},"location":{"coordinates":[-73.9002615,40.885186],"type":"Point"},"name":"The Punch Bowl"} +,{"_id":{"$oid":"55cba2476c522cafdb053b75"},"location":{"coordinates":[-73.8700163,40.7504734],"type":"Point"},"name":"Jardin De China Rest"} +,{"_id":{"$oid":"55cba2476c522cafdb053b76"},"location":{"coordinates":[-73.8236419,40.7261682],"type":"Point"},"name":"Irish Cottage"} +,{"_id":{"$oid":"55cba2476c522cafdb053b77"},"location":{"coordinates":[-74.0137007,40.7062029],"type":"Point"},"name":"Blarney Stone"} +,{"_id":{"$oid":"55cba2476c522cafdb053b78"},"location":{"coordinates":[-73.8221418,40.7272376],"type":"Point"},"name":"Shimons Kosher Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb053b79"},"location":{"coordinates":[-74.0027865,40.7340505],"type":"Point"},"name":"The Riviera Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb053b7a"},"location":{"coordinates":[-73.9927131,40.6984887],"type":"Point"},"name":"Fascati'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb053b7b"},"location":{"coordinates":[-73.97598099999999,40.745132],"type":"Point"},"name":"Baby Bo'S Burritos"} +,{"_id":{"$oid":"55cba2476c522cafdb053b7c"},"location":{"coordinates":[-73.9690789,40.7594184],"type":"Point"},"name":"Shun Lee Palace Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053b7d"},"location":{"coordinates":[-74.11223799999999,40.629819],"type":"Point"},"name":"Li Greci'S Staaten Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053b7e"},"location":{"coordinates":[-73.9300062,40.5943553],"type":"Point"},"name":"Tamaqua"} +,{"_id":{"$oid":"55cba2476c522cafdb053b7f"},"location":{"coordinates":[-73.9168424,40.8401362],"type":"Point"},"name":"Munchtime"} +,{"_id":{"$oid":"55cba2476c522cafdb053b80"},"location":{"coordinates":[-73.74292179999999,40.7305714],"type":"Point"},"name":"Cara Mia"} +,{"_id":{"$oid":"55cba2476c522cafdb053b81"},"location":{"coordinates":[-73.8194559,40.8899176],"type":"Point"},"name":"Ihop"} +,{"_id":{"$oid":"55cba2476c522cafdb053b82"},"location":{"coordinates":[-73.809167,40.705421],"type":"Point"},"name":"Maloney'S Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb053b83"},"location":{"coordinates":[-74.10465599999999,40.58834],"type":"Point"},"name":"Richmond County Country Club"} +,{"_id":{"$oid":"55cba2476c522cafdb053b84"},"location":{"coordinates":[-73.8845166,40.744772],"type":"Point"},"name":"La Fusta Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053b85"},"location":{"coordinates":[-73.9827418,40.7655827],"type":"Point"},"name":"Patsy'S Italian Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053b86"},"location":{"coordinates":[-73.8513114,40.8316981],"type":"Point"},"name":"Lulu'S Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb053b87"},"location":{"coordinates":[-73.960573,40.760982],"type":"Point"},"name":"Dangerfield'S Night Club"} +,{"_id":{"$oid":"55cba2476c522cafdb053b88"},"location":{"coordinates":[-74.00065800000002,40.735114],"type":"Point"},"name":"El Charro Espanol"} +,{"_id":{"$oid":"55cba2476c522cafdb053b89"},"location":{"coordinates":[-73.9556394,40.768679],"type":"Point"},"name":"Finnegan'S Wake"} +,{"_id":{"$oid":"55cba2476c522cafdb053b8a"},"location":{"coordinates":[-73.9907801,40.6188665],"type":"Point"},"name":"Da Vinci Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb053b8b"},"location":{"coordinates":[-73.9681178,40.678776],"type":"Point"},"name":"Mitchell'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053b8c"},"location":{"coordinates":[-73.979839,40.739796],"type":"Point"},"name":"Mexico Lindo Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053b8d"},"location":{"coordinates":[-73.815175,40.8137649],"type":"Point"},"name":"Marina Delray"} +,{"_id":{"$oid":"55cba2476c522cafdb053b8e"},"location":{"coordinates":[-73.99682299999999,40.753182],"type":"Point"},"name":"Twins Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb053b8f"},"location":{"coordinates":[-73.9270926,40.6142428],"type":"Point"},"name":"New Floridian Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb053b90"},"location":{"coordinates":[-74.03345,40.612598],"type":"Point"},"name":"Narrows Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb053b91"},"location":{"coordinates":[-74.0029643,40.7231081],"type":"Point"},"name":"Broome Street Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb053b92"},"location":{"coordinates":[-73.9121201,40.7749286],"type":"Point"},"name":"O'Hanlon'S Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb053b93"},"location":{"coordinates":[-73.90364869999999,40.74133339999999],"type":"Point"},"name":"Charlies Sports Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb053b94"},"location":{"coordinates":[-73.9593019,40.77105400000001],"type":"Point"},"name":"Jg Melon Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053b95"},"location":{"coordinates":[-73.7775242,40.778475],"type":"Point"},"name":"Jack'S Pizza \u0026 Pasta"} +,{"_id":{"$oid":"55cba2476c522cafdb053b96"},"location":{"coordinates":[-74.0084936,40.7258072],"type":"Point"},"name":"Emerald Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb053b97"},"location":{"coordinates":[-73.9788694,40.7665961],"type":"Point"},"name":"Tap Room"} +,{"_id":{"$oid":"55cba2476c522cafdb053b98"},"location":{"coordinates":[-73.9788694,40.7665961],"type":"Point"},"name":"Cocktail Room (Nyac)"} +,{"_id":{"$oid":"55cba2476c522cafdb053b99"},"location":{"coordinates":[-73.98557920000002,40.7686093],"type":"Point"},"name":"Flame Restaurant Coffee House"} +,{"_id":{"$oid":"55cba2476c522cafdb053b9a"},"location":{"coordinates":[-73.9629729,40.7638694],"type":"Point"},"name":"Jackson Hole"} +,{"_id":{"$oid":"55cba2476c522cafdb053b9b"},"location":{"coordinates":[-73.8811834,40.7017759],"type":"Point"},"name":"Zum Stammtisch"} +,{"_id":{"$oid":"55cba2476c522cafdb053b9c"},"location":{"coordinates":[-73.985535,40.730605],"type":"Point"},"name":"John'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053b9d"},"location":{"coordinates":[-73.988991,40.728848],"type":"Point"},"name":"Grassroot Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb053b9e"},"location":{"coordinates":[-74.1350211,40.6369042],"type":"Point"},"name":"Buddy'S Wonder Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb053b9f"},"location":{"coordinates":[-73.876876,40.703885],"type":"Point"},"name":"The Assembly Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb053ba0"},"location":{"coordinates":[-73.9870818,40.7523004],"type":"Point"},"name":"Mr Broadway Kosher Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053ba1"},"location":{"coordinates":[-73.911784,40.764766],"type":"Point"},"name":"Piccola Venezia"} +,{"_id":{"$oid":"55cba2476c522cafdb053ba2"},"location":{"coordinates":[-74.1003379,40.5655379],"type":"Point"},"name":"Ni-Ni'S Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb053ba3"},"location":{"coordinates":[-73.9215284,40.8678204],"type":"Point"},"name":"Capitol Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053ba4"},"location":{"coordinates":[-73.9550129,40.768019],"type":"Point"},"name":"Malaga Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053ba5"},"location":{"coordinates":[-73.977035,40.762307],"type":"Point"},"name":"La Bonne Soupe Bistro"} +,{"_id":{"$oid":"55cba2476c522cafdb053ba6"},"location":{"coordinates":[-73.9672945,40.7561212],"type":"Point"},"name":"Mimis Restaurant \u0026 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb053ba7"},"location":{"coordinates":[-73.83856999999999,40.655669],"type":"Point"},"name":"Lenny'S Clam Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb053ba8"},"location":{"coordinates":[-73.9542568,40.7641379],"type":"Point"},"name":"Griffis Faculty Club"} +,{"_id":{"$oid":"55cba2476c522cafdb053ba9"},"location":{"coordinates":[-73.82629709999999,40.700598],"type":"Point"},"name":"Little Brown Jug"} +,{"_id":{"$oid":"55cba2476c522cafdb053baa"},"location":{"coordinates":[-73.8305269,40.7089494],"type":"Point"},"name":"Dani Pizza And Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053bab"},"location":{"coordinates":[-73.98185529999999,40.7782266],"type":"Point"},"name":"Gray'S Papaya"} +,{"_id":{"$oid":"55cba2476c522cafdb053bac"},"location":{"coordinates":[-73.95802549999999,40.6487475],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb053bad"},"location":{"coordinates":[-73.95006049999999,40.5838274],"type":"Point"},"name":"El Greco Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb053bae"},"location":{"coordinates":[-74.00259299999999,40.7324849],"type":"Point"},"name":"One If By Land Two If By Sea"} +,{"_id":{"$oid":"55cba2476c522cafdb053baf"},"location":{"coordinates":[-73.8618426,40.6797488],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb053bb0"},"location":{"coordinates":[-73.9819129,40.77151449999999],"type":"Point"},"name":"Fiorellos"} +,{"_id":{"$oid":"55cba2476c522cafdb053bb1"},"location":{"coordinates":[-73.9812843,40.5947365],"type":"Point"},"name":"Lb Spumoni Gardens"} +,{"_id":{"$oid":"55cba2476c522cafdb053bb2"},"location":{"coordinates":[-73.8344778,40.7692995],"type":"Point"},"name":"Amore Pizzeria \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053bb3"},"location":{"coordinates":[-73.86697,40.89794699999999],"type":"Point"},"name":"The Lark'S Nest"} +,{"_id":{"$oid":"55cba2476c522cafdb053bb4"},"location":{"coordinates":[-73.8786113,40.8502883],"type":"Point"},"name":"Terrace Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb053bb5"},"location":{"coordinates":[-73.8786113,40.8502883],"type":"Point"},"name":"African Terrace"} +,{"_id":{"$oid":"55cba2476c522cafdb053bb6"},"location":{"coordinates":[-73.8786113,40.8502883],"type":"Point"},"name":"Cool Zone"} +,{"_id":{"$oid":"55cba2476c522cafdb053bb7"},"location":{"coordinates":[-73.8786113,40.8502883],"type":"Point"},"name":"African Market (Baboon Cafe)"} +,{"_id":{"$oid":"55cba2476c522cafdb053bb8"},"location":{"coordinates":[-73.8786113,40.8502883],"type":"Point"},"name":"Beaver Pond"} +,{"_id":{"$oid":"55cba2476c522cafdb053bb9"},"location":{"coordinates":[-74.1005771,40.6134163],"type":"Point"},"name":"Roadhouse Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053bba"},"location":{"coordinates":[-73.971128,40.749869],"type":"Point"},"name":"Ford Foundation Cafeteria"} +,{"_id":{"$oid":"55cba2476c522cafdb053bbb"},"location":{"coordinates":[-74.00066699999999,40.736224],"type":"Point"},"name":"Elephant \u0026 Castle"} +,{"_id":{"$oid":"55cba2476c522cafdb053bbc"},"location":{"coordinates":[-73.97705599999999,40.752998],"type":"Point"},"name":"Oyster Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb053bbd"},"location":{"coordinates":[-73.98431219999999,40.7258174],"type":"Point"},"name":"Cherry Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb053bbe"},"location":{"coordinates":[-73.9827221,40.7561037],"type":"Point"},"name":"Red Flame Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb053bbf"},"location":{"coordinates":[-74.099018,40.58116500000001],"type":"Point"},"name":"Colonnade Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb053bc0"},"location":{"coordinates":[-73.9537859,40.775493],"type":"Point"},"name":"Brady'S Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb053bc1"},"location":{"coordinates":[-73.9181846,40.6157107],"type":"Point"},"name":"Mill Basin Kosher Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb053bc2"},"location":{"coordinates":[-73.977114,40.756295],"type":"Point"},"name":"Maggies Place"} +,{"_id":{"$oid":"55cba2476c522cafdb053bc3"},"location":{"coordinates":[-74.0062401,40.7397546],"type":"Point"},"name":"Da Silvano Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053bc4"},"location":{"coordinates":[-73.9765607,40.7443236],"type":"Point"},"name":"Benjamin"} +,{"_id":{"$oid":"55cba2476c522cafdb053bc5"},"location":{"coordinates":[-73.984838,40.756594],"type":"Point"},"name":"Jimmy'S Corner"} +,{"_id":{"$oid":"55cba2476c522cafdb053bc6"},"location":{"coordinates":[-73.9789394,40.6429349],"type":"Point"},"name":"Denny'S Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb053bc7"},"location":{"coordinates":[-74.00340299999999,40.733235],"type":"Point"},"name":"Maries Crisis Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb053bc8"},"location":{"coordinates":[-74.00341019999999,40.7335084],"type":"Point"},"name":"Boots \u0026 Saddle Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb053bc9"},"location":{"coordinates":[-74.0078144,40.6202393],"type":"Point"},"name":"New Parkway Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053bca"},"location":{"coordinates":[153.1628795,-28.0168595],"type":"Point"},"name":"Sammy'S Steakhouse"} +,{"_id":{"$oid":"55cba2476c522cafdb053bcb"},"location":{"coordinates":[-74.000399,40.740848],"type":"Point"},"name":"Cafe Riazor"} +,{"_id":{"$oid":"55cba2476c522cafdb053bcc"},"location":{"coordinates":[-73.9714599,40.759647],"type":"Point"},"name":"The Brook"} +,{"_id":{"$oid":"55cba2476c522cafdb053bcd"},"location":{"coordinates":[-73.998254,40.7179289],"type":"Point"},"name":"Il Cortile Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053bce"},"location":{"coordinates":[-74.002139,40.7261357],"type":"Point"},"name":"Raouls"} +,{"_id":{"$oid":"55cba2476c522cafdb053bcf"},"location":{"coordinates":[-73.94347599999999,40.718386],"type":"Point"},"name":"Frost Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053bd0"},"location":{"coordinates":[-73.97691499999999,40.757028],"type":"Point"},"name":"Hatsuhana Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053bd1"},"location":{"coordinates":[-73.9668354,40.7568328],"type":"Point"},"name":"La Mangeoire"} +,{"_id":{"$oid":"55cba2476c522cafdb053bd2"},"location":{"coordinates":[-73.814835,40.7288261],"type":"Point"},"name":"Valentino'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb053bd3"},"location":{"coordinates":[-73.970169,40.764834],"type":"Point"},"name":"Viand Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb053bd4"},"location":{"coordinates":[-73.970668,40.751453],"type":"Point"},"name":"Palm Too"} +,{"_id":{"$oid":"55cba2476c522cafdb053bd5"},"location":{"coordinates":[-91.5971285,41.6823902],"type":"Point"},"name":"Steve'S Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb053bd6"},"location":{"coordinates":[-73.9100082,40.8863835],"type":"Point"},"name":"Blue Bay Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053bd7"},"location":{"coordinates":[-73.9717,40.756457],"type":"Point"},"name":"Nada-Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb053bd8"},"location":{"coordinates":[-73.942599,40.67096],"type":"Point"},"name":"The Hytes Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb053bd9"},"location":{"coordinates":[-73.7796156,40.7298006],"type":"Point"},"name":"P.J.' S"} +,{"_id":{"$oid":"55cba2476c522cafdb053bda"},"location":{"coordinates":[-73.9486257,40.7813724],"type":"Point"},"name":"Reif'S Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb053bdb"},"location":{"coordinates":[-74.1018239,40.630788],"type":"Point"},"name":"Jody'S Club"} +,{"_id":{"$oid":"55cba2476c522cafdb053bdc"},"location":{"coordinates":[-73.8335566,40.7703224],"type":"Point"},"name":"Whitestone Lanes"} +,{"_id":{"$oid":"55cba2476c522cafdb053bdd"},"location":{"coordinates":[-73.8818014,40.7347681],"type":"Point"},"name":"John'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb053bde"},"location":{"coordinates":[-73.790804,40.8541848],"type":"Point"},"name":"Seashore Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053bdf"},"location":{"coordinates":[-73.76078199999999,40.761876],"type":"Point"},"name":"Marbella Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053be0"},"location":{"coordinates":[-74.00041689999999,40.7302678],"type":"Point"},"name":"Caffe Reggio"} +,{"_id":{"$oid":"55cba2476c522cafdb053be1"},"location":{"coordinates":[-73.984126,40.7567949],"type":"Point"},"name":"Cafe Un Deux Trois"} +,{"_id":{"$oid":"55cba2476c522cafdb053be2"},"location":{"coordinates":[-73.88228649999999,40.6481972],"type":"Point"},"name":"Armando'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb053be3"},"location":{"coordinates":[-73.9818416,40.7760336],"type":"Point"},"name":"Dan Tempura"} +,{"_id":{"$oid":"55cba2476c522cafdb053be4"},"location":{"coordinates":[-73.994428,40.7320132],"type":"Point"},"name":"Knickerbocker Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb053be5"},"location":{"coordinates":[-73.9873049,40.7592843],"type":"Point"},"name":"Pergola Des Artistes"} +,{"_id":{"$oid":"55cba2476c522cafdb053be6"},"location":{"coordinates":[-73.9808063,40.6895078],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb053be7"},"location":{"coordinates":[-73.9735762,40.74754],"type":"Point"},"name":"El Pote Espanol"} +,{"_id":{"$oid":"55cba2476c522cafdb053be8"},"location":{"coordinates":[-73.94523509999999,40.7177182],"type":"Point"},"name":"Cafe Capri"} +,{"_id":{"$oid":"55cba2476c522cafdb053be9"},"location":{"coordinates":[-73.99472279999999,40.703195],"type":"Point"},"name":"The River Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb053bea"},"location":{"coordinates":[-74.012376,40.703721],"type":"Point"},"name":"White Horse Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb053beb"},"location":{"coordinates":[-73.85534559999999,40.8426433],"type":"Point"},"name":"Bronx Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb053bec"},"location":{"coordinates":[-74.00893959999999,40.7151413],"type":"Point"},"name":"Mudville Saloon"} +,{"_id":{"$oid":"55cba2476c522cafdb053bed"},"location":{"coordinates":[-73.9321666,40.6632351],"type":"Point"},"name":"White Castle"} +,{"_id":{"$oid":"55cba2476c522cafdb053bee"},"location":{"coordinates":[-73.7826735,40.8377713],"type":"Point"},"name":"Johnny'S Reef Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053bef"},"location":{"coordinates":[-72.7329266,41.3099228],"type":"Point"},"name":"White Castle"} +,{"_id":{"$oid":"55cba2476c522cafdb053bf0"},"location":{"coordinates":[-73.92126499999999,40.743009],"type":"Point"},"name":"White Castle"} +,{"_id":{"$oid":"55cba2476c522cafdb053bf1"},"location":{"coordinates":[-73.993031,40.6417669],"type":"Point"},"name":"White Castle"} +,{"_id":{"$oid":"55cba2476c522cafdb053bf2"},"location":{"coordinates":[-74.00184349999999,40.684236],"type":"Point"},"name":"Ferdinando'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053bf3"},"location":{"coordinates":[-73.8451846,40.7200906],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb053bf4"},"location":{"coordinates":[-73.9623333,40.7757194],"type":"Point"},"name":"Viand Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb053bf5"},"location":{"coordinates":[-73.9624221,40.77620840000001],"type":"Point"},"name":"Nectar Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb053bf6"},"location":{"coordinates":[-74.0030657,40.7230087],"type":"Point"},"name":"The Cupping Room"} +,{"_id":{"$oid":"55cba2476c522cafdb053bf7"},"location":{"coordinates":[-73.9308722,40.656262],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb053bf8"},"location":{"coordinates":[-73.9866918,40.7364597],"type":"Point"},"name":"Pete'S Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb053bf9"},"location":{"coordinates":[-73.7566136,40.7483444],"type":"Point"},"name":"Gino'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb053bfa"},"location":{"coordinates":[-74.00200099999999,40.7285929],"type":"Point"},"name":"Villa Mosconi Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053bfb"},"location":{"coordinates":[-74.0075542,40.7077614],"type":"Point"},"name":"Jim Brady'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053bfc"},"location":{"coordinates":[-73.9035553,40.878342],"type":"Point"},"name":"P \u0026 K'S Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb053bfd"},"location":{"coordinates":[-73.9030535,40.8812538],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb053bfe"},"location":{"coordinates":[-73.9395471,40.8420198],"type":"Point"},"name":"Reme Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053bff"},"location":{"coordinates":[-73.9598324,40.7798381],"type":"Point"},"name":"The New Amity Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053c00"},"location":{"coordinates":[-74.00041259999999,40.7315763],"type":"Point"},"name":"Volare Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053c01"},"location":{"coordinates":[-73.97212999999999,40.7528838],"type":"Point"},"name":"Sparks Steak House"} +,{"_id":{"$oid":"55cba2476c522cafdb053c02"},"location":{"coordinates":[-73.807954,40.715159],"type":"Point"},"name":"The Dart Inn"} +,{"_id":{"$oid":"55cba2476c522cafdb053c03"},"location":{"coordinates":[-73.951199,40.7166026],"type":"Point"},"name":"Bamonte'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053c04"},"location":{"coordinates":[-73.9996841,40.7543101],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb053c05"},"location":{"coordinates":[-73.8456653,40.7823455],"type":"Point"},"name":"Pizza Town"} +,{"_id":{"$oid":"55cba2476c522cafdb053c06"},"location":{"coordinates":[-73.86720489999999,40.8977501],"type":"Point"},"name":"John Mulligan'S Fireside Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb053c07"},"location":{"coordinates":[-73.759249,40.761574],"type":"Point"},"name":"Burger King"} +,{"_id":{"$oid":"55cba2476c522cafdb053c08"},"location":{"coordinates":[-74.0094737,40.7258405],"type":"Point"},"name":"Ear Inn"} +,{"_id":{"$oid":"55cba2476c522cafdb053c09"},"location":{"coordinates":[-73.89707140000002,40.7543896],"type":"Point"},"name":"Burger King"} +,{"_id":{"$oid":"55cba2476c522cafdb053c0a"},"location":{"coordinates":[-73.8206678,40.7647441],"type":"Point"},"name":"Burger King"} +,{"_id":{"$oid":"55cba2476c522cafdb053c0b"},"location":{"coordinates":[-73.977597,40.779593],"type":"Point"},"name":"Mughlai Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053c0c"},"location":{"coordinates":[-73.9581492,40.7177363],"type":"Point"},"name":"Greenpoint Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb053c0d"},"location":{"coordinates":[-74.1680654,40.5595469],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb053c0e"},"location":{"coordinates":[-73.922642,40.701015],"type":"Point"},"name":"Tony'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb053c0f"},"location":{"coordinates":[-73.9788758,40.7491708],"type":"Point"},"name":"Rossini'S"} +,{"_id":{"$oid":"55cba2476c522cafdb053c10"},"location":{"coordinates":[-73.90725640000001,40.7601082],"type":"Point"},"name":"Pat'S Stationary"} +,{"_id":{"$oid":"55cba2476c522cafdb053c11"},"location":{"coordinates":[-73.96408199999999,40.7741339],"type":"Point"},"name":"Three Guy'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053c12"},"location":{"coordinates":[-73.9574128,40.7701235],"type":"Point"},"name":"Cucina Vivolo"} +,{"_id":{"$oid":"55cba2476c522cafdb053c13"},"location":{"coordinates":[-73.986685,40.73756400000001],"type":"Point"},"name":"The Players Club"} +,{"_id":{"$oid":"55cba2476c522cafdb053c14"},"location":{"coordinates":[-74.0007509,40.7287609],"type":"Point"},"name":"Cafe Espanol"} +,{"_id":{"$oid":"55cba2476c522cafdb053c15"},"location":{"coordinates":[-73.7310899,40.7603325],"type":"Point"},"name":"Tjk Cafe \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053c16"},"location":{"coordinates":[-73.9704988,40.7552269],"type":"Point"},"name":"Smith \u0026 Wollensky"} +,{"_id":{"$oid":"55cba2476c522cafdb053c17"},"location":{"coordinates":[-73.802319,40.780748],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb053c18"},"location":{"coordinates":[-74.00057799999999,40.730204],"type":"Point"},"name":"Olive Tree Cafe \u0026 Comedy Cellar"} +,{"_id":{"$oid":"55cba2476c522cafdb053c19"},"location":{"coordinates":[-74.146976,40.625178],"type":"Point"},"name":"Perkins Family Restaurant \u0026 Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb053c1a"},"location":{"coordinates":[-73.70073909999999,40.73895539999999],"type":"Point"},"name":"Burger King"} +,{"_id":{"$oid":"55cba2476c522cafdb053c1b"},"location":{"coordinates":[-73.9195106,40.6527642],"type":"Point"},"name":"Burger King"} +,{"_id":{"$oid":"55cba2476c522cafdb053c1c"},"location":{"coordinates":[-73.951172,40.7773139],"type":"Point"},"name":"Tokubei 86"} +,{"_id":{"$oid":"55cba2476c522cafdb053c1d"},"location":{"coordinates":[-73.9491317,40.7445755],"type":"Point"},"name":"Manducatis"} +,{"_id":{"$oid":"55cba2476c522cafdb053c1e"},"location":{"coordinates":[-73.792701,40.7702099],"type":"Point"},"name":"Divers Cove"} +,{"_id":{"$oid":"55cba2476c522cafdb053c1f"},"location":{"coordinates":[-73.85223080000002,40.7109144],"type":"Point"},"name":"Sizzler"} +,{"_id":{"$oid":"55cba2476c522cafdb053c20"},"location":{"coordinates":[-73.96123879999999,40.635193],"type":"Point"},"name":"Mama Lucia"} +,{"_id":{"$oid":"55cba2476c522cafdb053c21"},"location":{"coordinates":[-73.98621539999999,40.7350907],"type":"Point"},"name":"Mariella Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb053c22"},"location":{"coordinates":[-73.9832993,40.76754440000001],"type":"Point"},"name":"Coliseum Bar Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053c23"},"location":{"coordinates":[-73.79014660000001,40.769692],"type":"Point"},"name":"Vinny'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb053c24"},"location":{"coordinates":[-73.9633849,40.625169],"type":"Point"},"name":"Kosher Delight"} +,{"_id":{"$oid":"55cba2476c522cafdb053c25"},"location":{"coordinates":[-73.99283419999999,40.75885830000001],"type":"Point"},"name":"West Bank Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb053c26"},"location":{"coordinates":[-73.972235,40.758066],"type":"Point"},"name":"The Four Seasons"} +,{"_id":{"$oid":"55cba2476c522cafdb053c27"},"location":{"coordinates":[-73.734425,40.7723579],"type":"Point"},"name":"La Baraka Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053c28"},"location":{"coordinates":[-73.984858,40.631394],"type":"Point"},"name":"Dairy Luncheonette"} +,{"_id":{"$oid":"55cba2476c522cafdb053c29"},"location":{"coordinates":[-73.9828058,40.7150766],"type":"Point"},"name":"Zafi'S Luncheonette"} +,{"_id":{"$oid":"55cba2476c522cafdb053c2a"},"location":{"coordinates":[-73.9788552,40.6109657],"type":"Point"},"name":"La Palina Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053c2b"},"location":{"coordinates":[-74.1321,40.61266000000001],"type":"Point"},"name":"Schaffer'S Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb053c2c"},"location":{"coordinates":[-74.00529,40.73302899999999],"type":"Point"},"name":"Ty'S"} +,{"_id":{"$oid":"55cba2476c522cafdb053c2d"},"location":{"coordinates":[-73.7363139,40.767005],"type":"Point"},"name":"Aunt Bella'S Rest Of Little Neck"} +,{"_id":{"$oid":"55cba2476c522cafdb053c2e"},"location":{"coordinates":[-73.9321411,40.6094715],"type":"Point"},"name":"Mariner Inn"} +,{"_id":{"$oid":"55cba2476c522cafdb053c2f"},"location":{"coordinates":[-74.1235473,40.6215341],"type":"Point"},"name":"Exclusive Catering"} +,{"_id":{"$oid":"55cba2476c522cafdb053c30"},"location":{"coordinates":[-73.78421000000002,40.7577566],"type":"Point"},"name":"North Shore Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb053c31"},"location":{"coordinates":[-74.028273,40.62951959999999],"type":"Point"},"name":"Green House Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb053c32"},"location":{"coordinates":[-73.82339809999999,40.8276846],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb053c33"},"location":{"coordinates":[-73.958372,40.7420277],"type":"Point"},"name":"Water Front Crab House"} +,{"_id":{"$oid":"55cba2476c522cafdb053c34"},"location":{"coordinates":[-74.0060152,40.7372653],"type":"Point"},"name":"La Ripaille Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053c35"},"location":{"coordinates":[-74.1408495,40.5441055],"type":"Point"},"name":"Marina Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb053c36"},"location":{"coordinates":[-73.958885,40.7745559],"type":"Point"},"name":"Don Filippo Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053c37"},"location":{"coordinates":[-73.8664386,40.7319364],"type":"Point"},"name":"Burger King"} +,{"_id":{"$oid":"55cba2476c522cafdb053c38"},"location":{"coordinates":[-73.9245566,40.7441786],"type":"Point"},"name":"Dazies Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053c39"},"location":{"coordinates":[-73.89310739999999,40.7545576],"type":"Point"},"name":"Triestes Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053c3a"},"location":{"coordinates":[-73.924072,40.76108900000001],"type":"Point"},"name":"Omonia Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb053c3b"},"location":{"coordinates":[-73.9782725,40.7624022],"type":"Point"},"name":"Murals On 54/Randolphs'S"} +,{"_id":{"$oid":"55cba2476c522cafdb053c3c"},"location":{"coordinates":[-73.931262,40.598023],"type":"Point"},"name":"Veterans Of Foreign Wars Post #107 Canteen"} +,{"_id":{"$oid":"55cba2476c522cafdb053c3d"},"location":{"coordinates":[-73.990556,40.749722],"type":"Point"},"name":"Caruso Pizza #2"} +,{"_id":{"$oid":"55cba2476c522cafdb053c3e"},"location":{"coordinates":[-73.933605,40.669476],"type":"Point"},"name":"Tropical House Baking Co."} +,{"_id":{"$oid":"55cba2476c522cafdb053c3f"},"location":{"coordinates":[-73.780574,40.6679415],"type":"Point"},"name":"Burger King"} +,{"_id":{"$oid":"55cba2476c522cafdb053c40"},"location":{"coordinates":[-73.8128627,40.7931101],"type":"Point"},"name":"Clinton Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053c41"},"location":{"coordinates":[-73.958529,40.766908],"type":"Point"},"name":"Shabu-Shabu 70 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053c42"},"location":{"coordinates":[-73.87575,40.8294396],"type":"Point"},"name":"Yankee Jz Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb053c43"},"location":{"coordinates":[-74.0986428,40.5942955],"type":"Point"},"name":"Chen'S Chinese"} +,{"_id":{"$oid":"55cba2476c522cafdb053c44"},"location":{"coordinates":[-73.993539,40.7474898],"type":"Point"},"name":"The Greek Corner"} +,{"_id":{"$oid":"55cba2476c522cafdb053c45"},"location":{"coordinates":[-73.97328379999999,40.7588047],"type":"Point"},"name":"Racquet \u0026 Tennis Club"} +,{"_id":{"$oid":"55cba2476c522cafdb053c46"},"location":{"coordinates":[-74.031688,40.6374532],"type":"Point"},"name":"Casa Pepe"} +,{"_id":{"$oid":"55cba2476c522cafdb053c47"},"location":{"coordinates":[-73.97831029999999,40.7632329],"type":"Point"},"name":"Astro Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053c48"},"location":{"coordinates":[-74.1690735,40.5589805],"type":"Point"},"name":"Golden Dove Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb053c49"},"location":{"coordinates":[-74.0018619,40.7288849],"type":"Point"},"name":"Caffe Dante"} +,{"_id":{"$oid":"55cba2476c522cafdb053c4a"},"location":{"coordinates":[-73.9777137,40.6433389],"type":"Point"},"name":"Korner Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb053c4b"},"location":{"coordinates":[-73.992182,40.699702],"type":"Point"},"name":"Henry'S End"} +,{"_id":{"$oid":"55cba2476c522cafdb053c4c"},"location":{"coordinates":[-74.0062401,40.7397546],"type":"Point"},"name":"Souen Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053c4d"},"location":{"coordinates":[-73.98053949999999,40.7469315],"type":"Point"},"name":"Villa Berulia"} +,{"_id":{"$oid":"55cba2476c522cafdb053c4e"},"location":{"coordinates":[-73.9840766,40.7628868],"type":"Point"},"name":"Victor'S Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb053c4f"},"location":{"coordinates":[-74.0282415,40.6309663],"type":"Point"},"name":"Petes Pizzeria \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053c50"},"location":{"coordinates":[-73.98646339999999,40.7507174],"type":"Point"},"name":"Keens Steakhouse"} +,{"_id":{"$oid":"55cba2476c522cafdb053c51"},"location":{"coordinates":[-73.97752600000001,40.745973],"type":"Point"},"name":"Bar 515"} +,{"_id":{"$oid":"55cba2476c522cafdb053c52"},"location":{"coordinates":[-73.8924962,40.7485672],"type":"Point"},"name":"Ready Penny Inn"} +,{"_id":{"$oid":"55cba2476c522cafdb053c53"},"location":{"coordinates":[-73.99914799999999,40.729735],"type":"Point"},"name":"Il Mulino"} +,{"_id":{"$oid":"55cba2476c522cafdb053c54"},"location":{"coordinates":[-73.9651212,40.7603438],"type":"Point"},"name":"Felidia Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053c55"},"location":{"coordinates":[-73.9216671,40.6447189],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb053c56"},"location":{"coordinates":[-73.9993545,40.7286288],"type":"Point"},"name":"The Malt House"} +,{"_id":{"$oid":"55cba2476c522cafdb053c57"},"location":{"coordinates":[-73.9812519,40.7728753],"type":"Point"},"name":"Shun Lee"} +,{"_id":{"$oid":"55cba2476c522cafdb053c58"},"location":{"coordinates":[-73.90401159999999,40.8803571],"type":"Point"},"name":"Ihop"} +,{"_id":{"$oid":"55cba2476c522cafdb053c59"},"location":{"coordinates":[-74.0318242,40.62062239999999],"type":"Point"},"name":"Bridgeview Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb053c5a"},"location":{"coordinates":[-73.894071,40.726984],"type":"Point"},"name":"Burke'S Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb053c5b"},"location":{"coordinates":[-73.884337,40.733269],"type":"Point"},"name":"Hill Tap Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb053c5c"},"location":{"coordinates":[-73.9865289,40.7606981],"type":"Point"},"name":"Pongsri Thai Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053c5d"},"location":{"coordinates":[-73.967288,40.757018],"type":"Point"},"name":"Primavera Pizza \u0026 Pasta"} +,{"_id":{"$oid":"55cba2476c522cafdb053c5e"},"location":{"coordinates":[-73.78309349999999,40.8374725],"type":"Point"},"name":"Tony'S Pier Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053c5f"},"location":{"coordinates":[-73.95285799999999,40.77684199999999],"type":"Point"},"name":"Elio'S"} +,{"_id":{"$oid":"55cba2476c522cafdb053c60"},"location":{"coordinates":[-73.832183,40.84710099999999],"type":"Point"},"name":"Quality Cafe \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053c61"},"location":{"coordinates":[-73.9254891,40.59284479999999],"type":"Point"},"name":"Victoria Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb053c62"},"location":{"coordinates":[-73.9949622,40.7496446],"type":"Point"},"name":"Molly Wee Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb053c63"},"location":{"coordinates":[-73.96864699999999,40.755183],"type":"Point"},"name":"La Mediterranee Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053c64"},"location":{"coordinates":[-73.995662,40.748717],"type":"Point"},"name":"Kasteli Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb053c65"},"location":{"coordinates":[-73.91535139999999,40.6087346],"type":"Point"},"name":"El Caribe"} +,{"_id":{"$oid":"55cba2476c522cafdb053c66"},"location":{"coordinates":[-74.0019729,40.7260047],"type":"Point"},"name":"Omen Japanese Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb053c67"},"location":{"coordinates":[-73.8122829,40.727543],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb053c68"},"location":{"coordinates":[-73.9917897,40.6913932],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb053c69"},"location":{"coordinates":[-73.96607999999999,40.7602774],"type":"Point"},"name":"Bar Vetro"} +,{"_id":{"$oid":"55cba2476c522cafdb053c6a"},"location":{"coordinates":[-73.982506,40.762621],"type":"Point"},"name":"Rosie O'Grady Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053c6b"},"location":{"coordinates":[-73.807086,40.6988],"type":"Point"},"name":"Europa Go-Go Dancing"} +,{"_id":{"$oid":"55cba2476c522cafdb053c6c"},"location":{"coordinates":[-73.9982079,40.7180815],"type":"Point"},"name":"Casa Bella"} +,{"_id":{"$oid":"55cba2476c522cafdb053c6d"},"location":{"coordinates":[-74.0095812,40.71463749999999],"type":"Point"},"name":"Raccoon Lodge"} +,{"_id":{"$oid":"55cba2476c522cafdb053c6e"},"location":{"coordinates":[-73.9883256,40.76344890000001],"type":"Point"},"name":"Chez Napolean"} +,{"_id":{"$oid":"55cba2476c522cafdb053c6f"},"location":{"coordinates":[-73.9550857,40.72063869999999],"type":"Point"},"name":"Turkey'S Nest Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb053c70"},"location":{"coordinates":[-73.8507489,40.832069],"type":"Point"},"name":"Sabrosura Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053c71"},"location":{"coordinates":[-73.8520417,40.6666793],"type":"Point"},"name":"La Villa De Pizza \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053c72"},"location":{"coordinates":[-73.8426307,40.6808917],"type":"Point"},"name":"Ozone Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb053c73"},"location":{"coordinates":[-73.913591,40.756706],"type":"Point"},"name":"Ponticello Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053c74"},"location":{"coordinates":[-73.96643449999999,40.7641697],"type":"Point"},"name":"Agra Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053c75"},"location":{"coordinates":[-73.9813814,40.76306150000001],"type":"Point"},"name":"Lindy'S"} +,{"_id":{"$oid":"55cba2476c522cafdb053c76"},"location":{"coordinates":[-73.947847,40.775478],"type":"Point"},"name":"Arturo'S"} +,{"_id":{"$oid":"55cba2476c522cafdb053c77"},"location":{"coordinates":[-73.9500845,40.8064061],"type":"Point"},"name":"Paris Blues"} +,{"_id":{"$oid":"55cba2476c522cafdb053c78"},"location":{"coordinates":[-73.9977952,40.7353195],"type":"Point"},"name":"Gene'S Resturant"} +,{"_id":{"$oid":"55cba2476c522cafdb053c79"},"location":{"coordinates":[-73.9367236,40.5842786],"type":"Point"},"name":"Maria Ristorante"} +,{"_id":{"$oid":"55cba2476c522cafdb053c7a"},"location":{"coordinates":[-73.993406,40.730003],"type":"Point"},"name":"Cozy Soup \u0026 Burger"} +,{"_id":{"$oid":"55cba2476c522cafdb053c7b"},"location":{"coordinates":[-73.74878939999999,40.7271425],"type":"Point"},"name":"Neron'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb053c7c"},"location":{"coordinates":[-73.9977997,40.6118897],"type":"Point"},"name":"Villa Fiorita"} +,{"_id":{"$oid":"55cba2476c522cafdb053c7d"},"location":{"coordinates":[-74.0065917,40.609992],"type":"Point"},"name":"Vegas Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb053c7e"},"location":{"coordinates":[-73.840374,40.683319],"type":"Point"},"name":"Moms Luncheonette"} +,{"_id":{"$oid":"55cba2476c522cafdb053c7f"},"location":{"coordinates":[-73.9801846,40.7801316],"type":"Point"},"name":"Candle Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb053c80"},"location":{"coordinates":[-73.9558969,40.778154],"type":"Point"},"name":"Tevere 84"} +,{"_id":{"$oid":"55cba2476c522cafdb053c81"},"location":{"coordinates":[-73.990556,40.749722],"type":"Point"},"name":"Haagen-Dazs"} +,{"_id":{"$oid":"55cba2476c522cafdb053c82"},"location":{"coordinates":[-73.782866,40.757529],"type":"Point"},"name":"Fontana Famous Pizza \u0026 Gyro"} +,{"_id":{"$oid":"55cba2476c522cafdb053c83"},"location":{"coordinates":[-92.73084399999999,41.7461462],"type":"Point"},"name":"Charlie'S Mom Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053c84"},"location":{"coordinates":[-73.955387,40.772368],"type":"Point"},"name":"Lusardi'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053c85"},"location":{"coordinates":[-74.1069208,40.6302784],"type":"Point"},"name":"King'S Arms Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053c86"},"location":{"coordinates":[-73.8397963,40.7191179],"type":"Point"},"name":"Portofino"} +,{"_id":{"$oid":"55cba2476c522cafdb053c87"},"location":{"coordinates":[-74.00064259999999,40.7309096],"type":"Point"},"name":"Blue Note Jazz"} +,{"_id":{"$oid":"55cba2476c522cafdb053c88"},"location":{"coordinates":[-73.9724015,40.7403386],"type":"Point"},"name":"The Water Club"} +,{"_id":{"$oid":"55cba2476c522cafdb053c89"},"location":{"coordinates":[-73.9957111,40.6821943],"type":"Point"},"name":"Marco Polo Ristorante"} +,{"_id":{"$oid":"55cba2476c522cafdb053c8a"},"location":{"coordinates":[-74.0023353,40.7333573],"type":"Point"},"name":"Manhattan Monster"} +,{"_id":{"$oid":"55cba2476c522cafdb053c8b"},"location":{"coordinates":[-73.97911239999999,40.7834791],"type":"Point"},"name":"American Museum Of Natural History Food Court"} +,{"_id":{"$oid":"55cba2476c522cafdb053c8c"},"location":{"coordinates":[-84.1899005,39.7642657],"type":"Point"},"name":"War Memorial Ice Skating Rink"} +,{"_id":{"$oid":"55cba2476c522cafdb053c8d"},"location":{"coordinates":[-74.001763,40.7282465],"type":"Point"},"name":"Chez Jaqueline"} +,{"_id":{"$oid":"55cba2476c522cafdb053c8e"},"location":{"coordinates":[-73.9946329,40.690043],"type":"Point"},"name":"Tripoli Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053c8f"},"location":{"coordinates":[-73.9612178,40.7684788],"type":"Point"},"name":"Pj Bernstein Deli \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053c90"},"location":{"coordinates":[-73.980002,40.7659216],"type":"Point"},"name":"Pj Carney'S"} +,{"_id":{"$oid":"55cba2476c522cafdb053c91"},"location":{"coordinates":[-74.0001023,40.7276736],"type":"Point"},"name":"Tomoe Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb053c92"},"location":{"coordinates":[-74.3731727,40.4404759],"type":"Point"},"name":"Water'S Edge Club"} +,{"_id":{"$oid":"55cba2476c522cafdb053c93"},"location":{"coordinates":[-73.9592644,40.8088612],"type":"Point"},"name":"Amsterdam Restaurant \u0026 Tapas Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb053c94"},"location":{"coordinates":[-73.79064389999999,40.8575687],"type":"Point"},"name":"Jp'S Waterside Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053c95"},"location":{"coordinates":[-73.83732549999999,40.57984829999999],"type":"Point"},"name":"Rogers Irish Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb053c96"},"location":{"coordinates":[-73.8657838,40.8544744],"type":"Point"},"name":"John \u0026 Joe Pizzeria \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053c97"},"location":{"coordinates":[-73.8803351,40.7017284],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb053c98"},"location":{"coordinates":[-73.9811382,40.7788729],"type":"Point"},"name":"Utopia Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053c99"},"location":{"coordinates":[-74.2078085,40.5427718],"type":"Point"},"name":"Sunset Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb053c9a"},"location":{"coordinates":[-73.8047246,40.7328495],"type":"Point"},"name":"Napoli Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb053c9b"},"location":{"coordinates":[-73.9774801,40.7461444],"type":"Point"},"name":"Jackson Hole"} +,{"_id":{"$oid":"55cba2476c522cafdb053c9c"},"location":{"coordinates":[-74.027017,40.632575],"type":"Point"},"name":"Vesuvio Restaurant \u0026 Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb053c9d"},"location":{"coordinates":[-73.7416329,40.6767449],"type":"Point"},"name":"Western Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb053c9e"},"location":{"coordinates":[-73.971606,40.751148],"type":"Point"},"name":"Johns Cafe \u0026 Resturant"} +,{"_id":{"$oid":"55cba2476c522cafdb053c9f"},"location":{"coordinates":[-74.0014102,40.7318195],"type":"Point"},"name":"Karavas Place"} +,{"_id":{"$oid":"55cba2476c522cafdb053ca0"},"location":{"coordinates":[-73.983169,40.7774031],"type":"Point"},"name":"Cafe Luxembourg"} +,{"_id":{"$oid":"55cba2476c522cafdb053ca1"},"location":{"coordinates":[-73.9070012,40.7090773],"type":"Point"},"name":"Windjammers Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb053ca2"},"location":{"coordinates":[-73.8153553,40.7394901],"type":"Point"},"name":"Dunkin' Donuts/Baskin' Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb053ca3"},"location":{"coordinates":[-73.9689746,40.7979687],"type":"Point"},"name":"Broadway Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053ca4"},"location":{"coordinates":[-73.94100100000001,40.798046],"type":"Point"},"name":"Cuchifrito"} +,{"_id":{"$oid":"55cba2476c522cafdb053ca5"},"location":{"coordinates":[-73.8454959,40.7207511],"type":"Point"},"name":"Narita Japanese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053ca6"},"location":{"coordinates":[-73.9940325,40.681185],"type":"Point"},"name":"Red Rose"} +,{"_id":{"$oid":"55cba2476c522cafdb053ca7"},"location":{"coordinates":[-74.00141959999999,40.7408836],"type":"Point"},"name":"Mary Ann'S"} +,{"_id":{"$oid":"55cba2476c522cafdb053ca8"},"location":{"coordinates":[-73.89687649999999,40.8166811],"type":"Point"},"name":"Tony'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb053ca9"},"location":{"coordinates":[-73.84938439999999,40.688197],"type":"Point"},"name":"Port O' Calls"} +,{"_id":{"$oid":"55cba2476c522cafdb053caa"},"location":{"coordinates":[-73.97256639999999,40.59727549999999],"type":"Point"},"name":"Fiorentino Ristorante"} +,{"_id":{"$oid":"55cba2476c522cafdb053cab"},"location":{"coordinates":[-73.9932049,40.7321769],"type":"Point"},"name":"Il Cantinori Restauraunt"} +,{"_id":{"$oid":"55cba2476c522cafdb053cac"},"location":{"coordinates":[-73.9896961,40.7516989],"type":"Point"},"name":"Andrews Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb053cad"},"location":{"coordinates":[-73.8514393,40.693942],"type":"Point"},"name":"Mike'S Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb053cae"},"location":{"coordinates":[-73.90092960000001,40.7137698],"type":"Point"},"name":"The Clubhouse"} +,{"_id":{"$oid":"55cba2476c522cafdb053caf"},"location":{"coordinates":[-73.9879627,40.7478473],"type":"Point"},"name":"Kang Suh Korean Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053cb0"},"location":{"coordinates":[-73.8935099,40.7272902],"type":"Point"},"name":"Fame Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb053cb1"},"location":{"coordinates":[-73.93825489999999,40.5834295],"type":"Point"},"name":"Knights Of Baron Dekalb"} +,{"_id":{"$oid":"55cba2476c522cafdb053cb2"},"location":{"coordinates":[-74.1092654,40.6379272],"type":"Point"},"name":"Union Hall"} +,{"_id":{"$oid":"55cba2476c522cafdb053cb3"},"location":{"coordinates":[-73.965305,40.6064189],"type":"Point"},"name":"Kosher Hut Of Brooklyn"} +,{"_id":{"$oid":"55cba2476c522cafdb053cb4"},"location":{"coordinates":[-73.9992986,40.7283881],"type":"Point"},"name":"Terra Blues"} +,{"_id":{"$oid":"55cba2476c522cafdb053cb5"},"location":{"coordinates":[-73.97579000000002,40.786074],"type":"Point"},"name":"Caesar'S Palace"} +,{"_id":{"$oid":"55cba2476c522cafdb053cb6"},"location":{"coordinates":[-73.8806546,40.7479695],"type":"Point"},"name":"Flamingo"} +,{"_id":{"$oid":"55cba2476c522cafdb053cb7"},"location":{"coordinates":[-74.001094,40.729583],"type":"Point"},"name":"Monte'S"} +,{"_id":{"$oid":"55cba2476c522cafdb053cb8"},"location":{"coordinates":[-73.9938232,40.7340887],"type":"Point"},"name":"Gotham Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb053cb9"},"location":{"coordinates":[-73.8676483,40.72214200000001],"type":"Point"},"name":"London Lennies"} +,{"_id":{"$oid":"55cba2476c522cafdb053cba"},"location":{"coordinates":[-83.8842292,30.6928463],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb053cbb"},"location":{"coordinates":[-73.9901605,40.7526176],"type":"Point"},"name":"Delmonico'S Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb053cbc"},"location":{"coordinates":[-73.977372,40.783934],"type":"Point"},"name":"Mcaleer'S Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb053cbd"},"location":{"coordinates":[-73.9888412,40.7296752],"type":"Point"},"name":"Hasaki Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053cbe"},"location":{"coordinates":[-73.9592566,40.7711518],"type":"Point"},"name":"Mezzaluna"} +,{"_id":{"$oid":"55cba2476c522cafdb053cbf"},"location":{"coordinates":[-73.980274,40.73489379999999],"type":"Point"},"name":"Cooper Town Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb053cc0"},"location":{"coordinates":[-73.9703093,40.7575104],"type":"Point"},"name":"Restuarant Nippon"} +,{"_id":{"$oid":"55cba2476c522cafdb053cc1"},"location":{"coordinates":[-73.8675389,40.8977829],"type":"Point"},"name":"Aqueduct North"} +,{"_id":{"$oid":"55cba2476c522cafdb053cc2"},"location":{"coordinates":[-74.0082408,40.7148452],"type":"Point"},"name":"Imperial Coffee House"} +,{"_id":{"$oid":"55cba2476c522cafdb053cc3"},"location":{"coordinates":[-73.98527039999999,40.7589099],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb053cc4"},"location":{"coordinates":[-73.9616659,40.777365],"type":"Point"},"name":"E.A.T. Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb053cc5"},"location":{"coordinates":[-73.8865891,40.7723001],"type":"Point"},"name":"Yankee Clipper"} +,{"_id":{"$oid":"55cba2476c522cafdb053cc6"},"location":{"coordinates":[-73.8982405,40.8616283],"type":"Point"},"name":"Cuchifritos"} +,{"_id":{"$oid":"55cba2476c522cafdb053cc7"},"location":{"coordinates":[-74.00290509999999,40.6312541],"type":"Point"},"name":"Rex Manor"} +,{"_id":{"$oid":"55cba2476c522cafdb053cc8"},"location":{"coordinates":[-73.97775159999999,40.7510553],"type":"Point"},"name":"Club 101"} +,{"_id":{"$oid":"55cba2476c522cafdb053cc9"},"location":{"coordinates":[-73.901496,40.885102],"type":"Point"},"name":"Riverdale Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb053cca"},"location":{"coordinates":[-73.87812749999999,40.7126376],"type":"Point"},"name":"Carlos Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb053ccb"},"location":{"coordinates":[-73.9991763,40.728369],"type":"Point"},"name":"The Bitter End"} +,{"_id":{"$oid":"55cba2476c522cafdb053ccc"},"location":{"coordinates":[-73.98819809999999,40.7641429],"type":"Point"},"name":"Arriba Arriba"} +,{"_id":{"$oid":"55cba2476c522cafdb053ccd"},"location":{"coordinates":[-73.9726244,40.6779037],"type":"Point"},"name":"Geido Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053cce"},"location":{"coordinates":[-73.974367,40.788002],"type":"Point"},"name":"Barney Greengrass"} +,{"_id":{"$oid":"55cba2476c522cafdb053ccf"},"location":{"coordinates":[-73.97919759999999,40.76604930000001],"type":"Point"},"name":"Petrossian Restauraunt"} +,{"_id":{"$oid":"55cba2476c522cafdb053cd0"},"location":{"coordinates":[-73.80112059999999,40.7128278],"type":"Point"},"name":"Annam Braham Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053cd1"},"location":{"coordinates":[-73.9837907,40.7626833],"type":"Point"},"name":"Supernova-Novotel Hotel"} +,{"_id":{"$oid":"55cba2476c522cafdb053cd2"},"location":{"coordinates":[-73.9979536,40.6914024],"type":"Point"},"name":"Montero Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb053cd3"},"location":{"coordinates":[-73.88814889999999,40.7011542],"type":"Point"},"name":"Pisa Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb053cd4"},"location":{"coordinates":[-73.9820285,40.5753606],"type":"Point"},"name":"Pete'S Clam Stop"} +,{"_id":{"$oid":"55cba2476c522cafdb053cd5"},"location":{"coordinates":[-73.9991998,40.7286624],"type":"Point"},"name":"Porto Bello Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053cd6"},"location":{"coordinates":[-74.0015608,40.7319387],"type":"Point"},"name":"Burrito Loco"} +,{"_id":{"$oid":"55cba2476c522cafdb053cd7"},"location":{"coordinates":[-73.9939366,40.7468282],"type":"Point"},"name":"Fit Cafeteria (Building A)"} +,{"_id":{"$oid":"55cba2476c522cafdb053cd8"},"location":{"coordinates":[-73.9524969,40.748421],"type":"Point"},"name":"Riverhead Gentlemen'S Club"} +,{"_id":{"$oid":"55cba2476c522cafdb053cd9"},"location":{"coordinates":[-73.9812553,40.6670051],"type":"Point"},"name":"Smiling Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb053cda"},"location":{"coordinates":[-73.964326,40.805416],"type":"Point"},"name":"Symposium Greek Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053cdb"},"location":{"coordinates":[-73.9864626,40.7266739],"type":"Point"},"name":"Gandhi"} +,{"_id":{"$oid":"55cba2476c522cafdb053cdc"},"location":{"coordinates":[-73.94130600000001,40.722332],"type":"Point"},"name":"Nina'S Restaurant Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb053cdd"},"location":{"coordinates":[-73.98927979999999,40.72983199999999],"type":"Point"},"name":"Village Yokocho"} +,{"_id":{"$oid":"55cba2476c522cafdb053cde"},"location":{"coordinates":[-73.9932232,40.6974104],"type":"Point"},"name":"Clark'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053cdf"},"location":{"coordinates":[-73.9723721,40.7506241],"type":"Point"},"name":"Pietros"} +,{"_id":{"$oid":"55cba2476c522cafdb053ce0"},"location":{"coordinates":[-73.9837551,40.726019],"type":"Point"},"name":"Miss Lily'S 7A"} +,{"_id":{"$oid":"55cba2476c522cafdb053ce1"},"location":{"coordinates":[-73.9950747,40.7257659],"type":"Point"},"name":"Noho Star Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053ce2"},"location":{"coordinates":[-73.9627039,40.75896580000001],"type":"Point"},"name":"Rosa Mexicano"} +,{"_id":{"$oid":"55cba2476c522cafdb053ce3"},"location":{"coordinates":[-74.1107786,40.6295647],"type":"Point"},"name":"Duffy'S"} +,{"_id":{"$oid":"55cba2476c522cafdb053ce4"},"location":{"coordinates":[-74.01268830000001,40.7095273],"type":"Point"},"name":"O'Hara'S"} +,{"_id":{"$oid":"55cba2476c522cafdb053ce5"},"location":{"coordinates":[-74.1468129,40.5760984],"type":"Point"},"name":"Latourette Golf Course"} +,{"_id":{"$oid":"55cba2476c522cafdb053ce6"},"location":{"coordinates":[-73.8453754,40.7208791],"type":"Point"},"name":"Uno Chicago Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb053ce7"},"location":{"coordinates":[-74.0177228,40.615199],"type":"Point"},"name":"Dyker Beach Golf (Grill Room)"} +,{"_id":{"$oid":"55cba2476c522cafdb053ce8"},"location":{"coordinates":[-73.94994129999999,40.67140699999999],"type":"Point"},"name":"Glenda'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053ce9"},"location":{"coordinates":[-74.0054509,40.6018789],"type":"Point"},"name":"My Father'S Place"} +,{"_id":{"$oid":"55cba2476c522cafdb053cea"},"location":{"coordinates":[-73.974896,40.675678],"type":"Point"},"name":"Santa Fe Grill \u0026 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb053ceb"},"location":{"coordinates":[-73.939728,40.841687],"type":"Point"},"name":"Coogan'S"} +,{"_id":{"$oid":"55cba2476c522cafdb053cec"},"location":{"coordinates":[-73.983622,40.72548],"type":"Point"},"name":"Sidewalk Bar \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053ced"},"location":{"coordinates":[-74.0054378,40.653762],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb053cee"},"location":{"coordinates":[-74.00298049999999,40.7317316],"type":"Point"},"name":"Caffe Vivaldi"} +,{"_id":{"$oid":"55cba2476c522cafdb053cef"},"location":{"coordinates":[-73.8537226,40.8427071],"type":"Point"},"name":"Castlehill Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb053cf0"},"location":{"coordinates":[-73.8172416,40.8195906],"type":"Point"},"name":"Tommy'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb053cf1"},"location":{"coordinates":[-73.9692185,40.7645497],"type":"Point"},"name":"Regency Hotel"} +,{"_id":{"$oid":"55cba2476c522cafdb053cf2"},"location":{"coordinates":[-73.96522089999999,40.7558205],"type":"Point"},"name":"Parnell'S Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb053cf3"},"location":{"coordinates":[-74.0042129,40.654029],"type":"Point"},"name":"La Fe Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053cf4"},"location":{"coordinates":[-73.91471,40.8335421],"type":"Point"},"name":"Mom'S Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb053cf5"},"location":{"coordinates":[-73.98866199999999,40.769442],"type":"Point"},"name":"Ocean Dragon Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053cf6"},"location":{"coordinates":[-73.832745,40.7149694],"type":"Point"},"name":"Cobblestone Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb053cf7"},"location":{"coordinates":[-73.99849569999999,40.7176369],"type":"Point"},"name":"Cha Cha'S Backyard Garden Bar \u0026 Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb053cf8"},"location":{"coordinates":[-74.0321699,40.6213165],"type":"Point"},"name":"O'Sullivan'S Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb053cf9"},"location":{"coordinates":[-73.997387,40.722304],"type":"Point"},"name":"Spring St. Natural Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053cfa"},"location":{"coordinates":[-74.0263399,40.6213638],"type":"Point"},"name":"Pizza Wagon"} +,{"_id":{"$oid":"55cba2476c522cafdb053cfb"},"location":{"coordinates":[-73.98357949999999,40.7281865],"type":"Point"},"name":"Russian Turkish Baths"} +,{"_id":{"$oid":"55cba2476c522cafdb053cfc"},"location":{"coordinates":[-74.0079669,40.737446],"type":"Point"},"name":"Tortilla Flats"} +,{"_id":{"$oid":"55cba2476c522cafdb053cfd"},"location":{"coordinates":[-73.74848910000001,40.7683973],"type":"Point"},"name":"Il Toscano Ristorante"} +,{"_id":{"$oid":"55cba2476c522cafdb053cfe"},"location":{"coordinates":[-73.9544887,40.7745702],"type":"Point"},"name":"Sistina Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053cff"},"location":{"coordinates":[-73.7668394,40.760345],"type":"Point"},"name":"Pier 25A Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053d00"},"location":{"coordinates":[-73.81401,40.786803],"type":"Point"},"name":"Verdi Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053d01"},"location":{"coordinates":[-73.7608857,40.7204516],"type":"Point"},"name":"Gaby'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb053d02"},"location":{"coordinates":[-74.0024972,40.7314926],"type":"Point"},"name":"Cornelia Street Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb053d03"},"location":{"coordinates":[-73.9817017,40.7614715],"type":"Point"},"name":"Le Bernardin"} +,{"_id":{"$oid":"55cba2476c522cafdb053d04"},"location":{"coordinates":[-74.0122263,40.7058609],"type":"Point"},"name":"The Grotto"} +,{"_id":{"$oid":"55cba2476c522cafdb053d05"},"location":{"coordinates":[-73.9314602,40.6704278],"type":"Point"},"name":"Tony'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb053d06"},"location":{"coordinates":[-73.953448,40.777126],"type":"Point"},"name":"Brandy'S Piano Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb053d07"},"location":{"coordinates":[-74.1268188,40.5651822],"type":"Point"},"name":"Canlon'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053d08"},"location":{"coordinates":[-74.158427,40.626607],"type":"Point"},"name":"Real Madrid Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053d09"},"location":{"coordinates":[-73.975144,40.675441],"type":"Point"},"name":"Cousin John'S Cafe And Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb053d0a"},"location":{"coordinates":[-73.8982704,40.8896923],"type":"Point"},"name":"Short Stop Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053d0b"},"location":{"coordinates":[-73.97257479999999,40.7855756],"type":"Point"},"name":"Jackson Hole"} +,{"_id":{"$oid":"55cba2476c522cafdb053d0c"},"location":{"coordinates":[-73.984752,40.763105],"type":"Point"},"name":"Russian Samovar"} +,{"_id":{"$oid":"55cba2476c522cafdb053d0d"},"location":{"coordinates":[-73.829714,40.7587648],"type":"Point"},"name":"Barone Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb053d0e"},"location":{"coordinates":[-73.982872,40.76280939999999],"type":"Point"},"name":"Flash Dancers"} +,{"_id":{"$oid":"55cba2476c522cafdb053d0f"},"location":{"coordinates":[-74.16303719999999,40.60731],"type":"Point"},"name":"Pizza D'Oro"} +,{"_id":{"$oid":"55cba2476c522cafdb053d10"},"location":{"coordinates":[-73.9809789,40.7802374],"type":"Point"},"name":"Josie'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053d11"},"location":{"coordinates":[-73.99735199999999,40.719931],"type":"Point"},"name":"La Mela Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053d12"},"location":{"coordinates":[-73.82567900000001,40.7455975],"type":"Point"},"name":"Phil \u0026 Sons Restaurant \u0026 Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb053d13"},"location":{"coordinates":[-73.97746699999999,40.757261],"type":"Point"},"name":"Pj Morans"} +,{"_id":{"$oid":"55cba2476c522cafdb053d14"},"location":{"coordinates":[-73.7890858,40.7699617],"type":"Point"},"name":"Omega Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb053d15"},"location":{"coordinates":[-73.9880305,40.7591348],"type":"Point"},"name":"Frankie \u0026 Johnnies Steakhouse"} +,{"_id":{"$oid":"55cba2476c522cafdb053d16"},"location":{"coordinates":[-73.9868393,40.73691240000001],"type":"Point"},"name":"Friend Of A Farmer"} +,{"_id":{"$oid":"55cba2476c522cafdb053d17"},"location":{"coordinates":[-74.02778909999999,40.6318755],"type":"Point"},"name":"Sancho'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053d18"},"location":{"coordinates":[-73.8696562,40.7501494],"type":"Point"},"name":"Dream Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb053d19"},"location":{"coordinates":[-73.88966429999999,40.6578505],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb053d1a"},"location":{"coordinates":[-74.0272951,40.6318285],"type":"Point"},"name":"India Passage Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053d1b"},"location":{"coordinates":[-73.867181,40.8705092],"type":"Point"},"name":"Burger Barn Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053d1c"},"location":{"coordinates":[-73.95097100000001,40.723595],"type":"Point"},"name":"Irene'S Place"} +,{"_id":{"$oid":"55cba2476c522cafdb053d1d"},"location":{"coordinates":[-73.9871139,40.7290155],"type":"Point"},"name":"Veselka Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053d1e"},"location":{"coordinates":[-73.8324138,40.75341179999999],"type":"Point"},"name":"Kanes Deli Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb053d1f"},"location":{"coordinates":[-73.88898209999999,40.65584459999999],"type":"Point"},"name":"White Castle"} +,{"_id":{"$oid":"55cba2476c522cafdb053d20"},"location":{"coordinates":[-73.9541457,40.6102692],"type":"Point"},"name":"J \u0026 R Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb053d21"},"location":{"coordinates":[-73.9935579,40.7585089],"type":"Point"},"name":"Chez Josephine"} +,{"_id":{"$oid":"55cba2476c522cafdb053d22"},"location":{"coordinates":[-73.9816053,40.7441474],"type":"Point"},"name":"Mishima Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053d23"},"location":{"coordinates":[-73.7128239,40.7363575],"type":"Point"},"name":"Dunkin' Donuts/Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb053d24"},"location":{"coordinates":[-73.90539919999999,40.7730596],"type":"Point"},"name":"Victory Sweet Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb053d25"},"location":{"coordinates":[-74.009029,40.631093],"type":"Point"},"name":"Rocco'S Calamari"} +,{"_id":{"$oid":"55cba2476c522cafdb053d26"},"location":{"coordinates":[-73.993645,40.694843],"type":"Point"},"name":"Grand Canyon"} +,{"_id":{"$oid":"55cba2476c522cafdb053d27"},"location":{"coordinates":[-74.0283135,40.6294318],"type":"Point"},"name":"Cappuccino Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb053d28"},"location":{"coordinates":[-74.1013145,40.5912425],"type":"Point"},"name":"Carol'S Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb053d29"},"location":{"coordinates":[-73.985889,40.730473],"type":"Point"},"name":"Pangea Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053d2a"},"location":{"coordinates":[-73.98635039999999,40.7596825],"type":"Point"},"name":"Cafe Edison"} +,{"_id":{"$oid":"55cba2476c522cafdb053d2b"},"location":{"coordinates":[-74.00834669999999,40.7362217],"type":"Point"},"name":"Automatic Slims"} +,{"_id":{"$oid":"55cba2476c522cafdb053d2c"},"location":{"coordinates":[-73.98384999999999,40.7290629],"type":"Point"},"name":"De Robertis Pastry Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb053d2d"},"location":{"coordinates":[-73.98789909999999,40.7292983],"type":"Point"},"name":"Cloister Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb053d2e"},"location":{"coordinates":[-74.1369752,40.6118922],"type":"Point"},"name":"Dairy Palace"} +,{"_id":{"$oid":"55cba2476c522cafdb053d2f"},"location":{"coordinates":[-73.9804898,40.6768216],"type":"Point"},"name":"200 Fifth Avenue Restaurant \u0026 Sports Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb053d30"},"location":{"coordinates":[-73.964379,40.7567359],"type":"Point"},"name":"Jimbo'S Hamburger Place"} +,{"_id":{"$oid":"55cba2476c522cafdb053d31"},"location":{"coordinates":[-73.953676,40.775695],"type":"Point"},"name":"Va Bene"} +,{"_id":{"$oid":"55cba2476c522cafdb053d32"},"location":{"coordinates":[-73.98997,40.760897],"type":"Point"},"name":"Lattanzi"} +,{"_id":{"$oid":"55cba2476c522cafdb053d33"},"location":{"coordinates":[-73.7956093,40.75835319999999],"type":"Point"},"name":"Pizza Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb053d34"},"location":{"coordinates":[-73.9555364,40.7849229],"type":"Point"},"name":"Island"} +,{"_id":{"$oid":"55cba2476c522cafdb053d35"},"location":{"coordinates":[-73.9763347,40.7575454],"type":"Point"},"name":"Sushiden"} +,{"_id":{"$oid":"55cba2476c522cafdb053d36"},"location":{"coordinates":[-73.8462304,40.8761099],"type":"Point"},"name":"Eastwood Manor"} +,{"_id":{"$oid":"55cba2476c522cafdb053d37"},"location":{"coordinates":[-73.91255009999999,40.7743581],"type":"Point"},"name":"Lefkos Pygos Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb053d38"},"location":{"coordinates":[-73.99556,40.748852],"type":"Point"},"name":"Salumeria Beillese/ Biricchino Rest"} +,{"_id":{"$oid":"55cba2476c522cafdb053d39"},"location":{"coordinates":[-73.97574639999999,40.687295],"type":"Point"},"name":"Academy Restauraunt"} +,{"_id":{"$oid":"55cba2476c522cafdb053d3a"},"location":{"coordinates":[-73.9765199,40.7452545],"type":"Point"},"name":"Trattoria Alba"} +,{"_id":{"$oid":"55cba2476c522cafdb053d3b"},"location":{"coordinates":[-73.9917184,40.6979881],"type":"Point"},"name":"Park Plaza Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053d3c"},"location":{"coordinates":[-73.9772263,40.7493346],"type":"Point"},"name":"Sam'S Place"} +,{"_id":{"$oid":"55cba2476c522cafdb053d3d"},"location":{"coordinates":[-73.98164460000001,40.7632783],"type":"Point"},"name":"Ray'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb053d3e"},"location":{"coordinates":[-73.8429171,40.8411578],"type":"Point"},"name":"Ljubo'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb053d3f"},"location":{"coordinates":[-74.031194,40.616655],"type":"Point"},"name":"Hunter'S Steak \u0026 Ale House"} +,{"_id":{"$oid":"55cba2476c522cafdb053d40"},"location":{"coordinates":[-74.1485484,40.6248044],"type":"Point"},"name":"Dakota Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb053d41"},"location":{"coordinates":[-73.96160050000002,40.7639308],"type":"Point"},"name":"Primola Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053d42"},"location":{"coordinates":[-73.8421735,40.8794229],"type":"Point"},"name":"Wendy'S"} +,{"_id":{"$oid":"55cba2476c522cafdb053d43"},"location":{"coordinates":[-74.1603346,40.5454655],"type":"Point"},"name":"Country Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb053d44"},"location":{"coordinates":[-74.02853089999999,40.6289779],"type":"Point"},"name":"Sally \u0026 George'S Place"} +,{"_id":{"$oid":"55cba2476c522cafdb053d45"},"location":{"coordinates":[-73.9248952,40.7615312],"type":"Point"},"name":"Doral Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb053d46"},"location":{"coordinates":[-73.9237691,40.7470048],"type":"Point"},"name":"Jacks Ale House"} +,{"_id":{"$oid":"55cba2476c522cafdb053d47"},"location":{"coordinates":[-73.8574277,40.8366717],"type":"Point"},"name":"Venice Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb053d48"},"location":{"coordinates":[-73.99976319999999,40.7162194],"type":"Point"},"name":"Winnie'S Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb053d49"},"location":{"coordinates":[-73.9821078,40.6658524],"type":"Point"},"name":"Pizza Plus"} +,{"_id":{"$oid":"55cba2476c522cafdb053d4a"},"location":{"coordinates":[-73.9916396,40.7487243],"type":"Point"},"name":"Niles Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053d4b"},"location":{"coordinates":[-74.1504413,40.5493122],"type":"Point"},"name":"Arirang Hibachi Steak House"} +,{"_id":{"$oid":"55cba2476c522cafdb053d4c"},"location":{"coordinates":[-73.75767259999999,40.7538214],"type":"Point"},"name":"Oakland Cafeteria/Queensborough Community College"} +,{"_id":{"$oid":"55cba2476c522cafdb053d4d"},"location":{"coordinates":[-73.901412,40.7003073],"type":"Point"},"name":"Tasty'S"} +,{"_id":{"$oid":"55cba2476c522cafdb053d4e"},"location":{"coordinates":[-73.75767259999999,40.7538214],"type":"Point"},"name":"Q.B.Comm.College-Main Kitchen/Tiger Bites Pizza Section"} +,{"_id":{"$oid":"55cba2476c522cafdb053d4f"},"location":{"coordinates":[-73.80845529999999,40.7869333],"type":"Point"},"name":"Erin'S Isle"} +,{"_id":{"$oid":"55cba2476c522cafdb053d50"},"location":{"coordinates":[-73.9310977,40.70359879999999],"type":"Point"},"name":"Tina'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053d51"},"location":{"coordinates":[-74.00318299999999,40.733443],"type":"Point"},"name":"Karavas Pizza N Pita"} +,{"_id":{"$oid":"55cba2476c522cafdb053d52"},"location":{"coordinates":[-73.9787406,40.7611474],"type":"Point"},"name":"China Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb053d53"},"location":{"coordinates":[-73.9999854,40.7300989],"type":"Point"},"name":"New York University - Law School"} +,{"_id":{"$oid":"55cba2476c522cafdb053d54"},"location":{"coordinates":[-73.981751,40.7763588],"type":"Point"},"name":"Westside Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053d55"},"location":{"coordinates":[-73.969439,40.7983829],"type":"Point"},"name":"Sal And Carmine Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb053d56"},"location":{"coordinates":[-73.9792691,40.7649292],"type":"Point"},"name":"Club Metropolitan"} +,{"_id":{"$oid":"55cba2476c522cafdb053d57"},"location":{"coordinates":[-74.0239115,40.6269162],"type":"Point"},"name":"Rocco'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb053d58"},"location":{"coordinates":[-73.992869,40.740758],"type":"Point"},"name":"Periyali"} +,{"_id":{"$oid":"55cba2476c522cafdb053d59"},"location":{"coordinates":[-73.9063134,40.700273],"type":"Point"},"name":"Sanremo Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb053d5a"},"location":{"coordinates":[-73.85914,40.877498],"type":"Point"},"name":"Frank'S Soup Bowl"} +,{"_id":{"$oid":"55cba2476c522cafdb053d5b"},"location":{"coordinates":[-73.9135648,40.7458604],"type":"Point"},"name":"Copper Kettle"} +,{"_id":{"$oid":"55cba2476c522cafdb053d5c"},"location":{"coordinates":[-73.8812773,40.679218],"type":"Point"},"name":"White Castle"} +,{"_id":{"$oid":"55cba2476c522cafdb053d5d"},"location":{"coordinates":[-73.988231,40.76503200000001],"type":"Point"},"name":"El Azteca Mexican Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053d5e"},"location":{"coordinates":[-73.75767259999999,40.7538214],"type":"Point"},"name":"Science Cafe (Queensborough Community College)"} +,{"_id":{"$oid":"55cba2476c522cafdb053d5f"},"location":{"coordinates":[-74.0045136,40.7236625],"type":"Point"},"name":"Lupe'S East L.A. Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb053d60"},"location":{"coordinates":[-73.9879785,40.75331250000001],"type":"Point"},"name":"Arno Ristorante"} +,{"_id":{"$oid":"55cba2476c522cafdb053d61"},"location":{"coordinates":[-73.967893,40.75682],"type":"Point"},"name":"T \u0026 G Whitney'S"} +,{"_id":{"$oid":"55cba2476c522cafdb053d62"},"location":{"coordinates":[-73.99741519999999,40.7186078],"type":"Point"},"name":"Pellegrino'S"} +,{"_id":{"$oid":"55cba2476c522cafdb053d63"},"location":{"coordinates":[-73.87113099999999,40.825183],"type":"Point"},"name":"White Castle"} +,{"_id":{"$oid":"55cba2476c522cafdb053d64"},"location":{"coordinates":[-73.8789718,40.7483467],"type":"Point"},"name":"La Casa Del Pollo Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053d65"},"location":{"coordinates":[-73.76981409999999,40.7605092],"type":"Point"},"name":"White Castle"} +,{"_id":{"$oid":"55cba2476c522cafdb053d66"},"location":{"coordinates":[-73.9573454,40.7747147],"type":"Point"},"name":"Due"} +,{"_id":{"$oid":"55cba2476c522cafdb053d67"},"location":{"coordinates":[-73.99582699999999,40.739672],"type":"Point"},"name":"Da Umberto Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053d68"},"location":{"coordinates":[-73.8864787,40.8588703],"type":"Point"},"name":"White Castle"} +,{"_id":{"$oid":"55cba2476c522cafdb053d69"},"location":{"coordinates":[-73.9585056,40.7193481],"type":"Point"},"name":"Teddy'S Bar And Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb053d6a"},"location":{"coordinates":[-73.9883909,40.740735],"type":"Point"},"name":"Live Bait Bar \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053d6b"},"location":{"coordinates":[-74.1386716,40.6160213],"type":"Point"},"name":"Jimmy Max Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053d6c"},"location":{"coordinates":[-73.97495669999999,40.7833],"type":"Point"},"name":"Uno Chicago Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb053d6d"},"location":{"coordinates":[-73.9932633,40.752437],"type":"Point"},"name":"T.G.I. Friday'S"} +,{"_id":{"$oid":"55cba2476c522cafdb053d6e"},"location":{"coordinates":[-73.9641006,40.7566992],"type":"Point"},"name":"Tal Bagels Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb053d6f"},"location":{"coordinates":[-73.97672659999999,40.78598119999999],"type":"Point"},"name":"Cafe Lalo"} +,{"_id":{"$oid":"55cba2476c522cafdb053d70"},"location":{"coordinates":[-73.90745059999999,40.81268559999999],"type":"Point"},"name":"Venice Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053d71"},"location":{"coordinates":[-73.99905799999999,40.72837800000001],"type":"Point"},"name":"Peculiar Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb053d72"},"location":{"coordinates":[-73.9497152,40.653664],"type":"Point"},"name":"Nostrand Island Eatery"} +,{"_id":{"$oid":"55cba2476c522cafdb053d73"},"location":{"coordinates":[-73.91039789999999,40.8745536],"type":"Point"},"name":"Arturo'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb053d74"},"location":{"coordinates":[-73.9105009,40.8005198],"type":"Point"},"name":"Walnut Bus Stop"} +,{"_id":{"$oid":"55cba2476c522cafdb053d75"},"location":{"coordinates":[-73.8290925,40.7587999],"type":"Point"},"name":"Kelly'S Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb053d76"},"location":{"coordinates":[-73.98010790000001,40.6862191],"type":"Point"},"name":"Areo Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053d77"},"location":{"coordinates":[-73.9805746,40.7652002],"type":"Point"},"name":"Trattoria Della Arte"} +,{"_id":{"$oid":"55cba2476c522cafdb053d78"},"location":{"coordinates":[-74.065258,40.612447],"type":"Point"},"name":"Rosebank Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb053d79"},"location":{"coordinates":[-73.976152,40.63089799999999],"type":"Point"},"name":"Green Pavilion Restaurant \u0026 Sports Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb053d7a"},"location":{"coordinates":[-73.9983829,40.7290603],"type":"Point"},"name":"Tre Giovani Pizza \u0026 Pasta"} +,{"_id":{"$oid":"55cba2476c522cafdb053d7b"},"location":{"coordinates":[-73.95950400000001,40.773716],"type":"Point"},"name":"Lenox Hill Grill/Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb053d7c"},"location":{"coordinates":[-73.9391802,40.844211],"type":"Point"},"name":"Galicia Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053d7d"},"location":{"coordinates":[-78.877224,42.89546199999999],"type":"Point"},"name":"T.G.I. Friday'S"} +,{"_id":{"$oid":"55cba2476c522cafdb053d7e"},"location":{"coordinates":[-73.8529552,40.83376459999999],"type":"Point"},"name":"Wendy'S"} +,{"_id":{"$oid":"55cba2476c522cafdb053d7f"},"location":{"coordinates":[-73.9916209,40.7593916],"type":"Point"},"name":"Westway Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb053d80"},"location":{"coordinates":[-73.9998818,40.74289419999999],"type":"Point"},"name":"Rocking Horse Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb053d81"},"location":{"coordinates":[-73.9585846,40.8097806],"type":"Point"},"name":"Masawa"} +,{"_id":{"$oid":"55cba2476c522cafdb053d82"},"location":{"coordinates":[-73.94838039999999,40.6325077],"type":"Point"},"name":"Luigi'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb053d83"},"location":{"coordinates":[-74.0051398,40.7281648],"type":"Point"},"name":"Sob'S"} +,{"_id":{"$oid":"55cba2476c522cafdb053d84"},"location":{"coordinates":[-74.007032,40.7196857],"type":"Point"},"name":"Walker'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053d85"},"location":{"coordinates":[-73.993494,40.756672],"type":"Point"},"name":"Holland Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb053d86"},"location":{"coordinates":[-73.8555094,40.8406624],"type":"Point"},"name":"The Pizza Place"} +,{"_id":{"$oid":"55cba2476c522cafdb053d87"},"location":{"coordinates":[-73.976075,40.780319],"type":"Point"},"name":"Scaletta Ristorante"} +,{"_id":{"$oid":"55cba2476c522cafdb053d88"},"location":{"coordinates":[-73.9402484,40.7509792],"type":"Point"},"name":"Lucky Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb053d89"},"location":{"coordinates":[-73.992091,40.6354339],"type":"Point"},"name":"Amnon Kosher Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb053d8a"},"location":{"coordinates":[-73.97817599999999,40.757775],"type":"Point"},"name":"T.G.I. Friday'S"} +,{"_id":{"$oid":"55cba2476c522cafdb053d8b"},"location":{"coordinates":[-73.985568,40.7307496],"type":"Point"},"name":"Angelica Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb053d8c"},"location":{"coordinates":[-74.00660599999999,40.733932],"type":"Point"},"name":"Cowgirl Hall Of Fame"} +,{"_id":{"$oid":"55cba2476c522cafdb053d8d"},"location":{"coordinates":[-73.9788903,40.7605367],"type":"Point"},"name":"Yip'S"} +,{"_id":{"$oid":"55cba2476c522cafdb053d8e"},"location":{"coordinates":[-73.8419254,40.8803012],"type":"Point"},"name":"White Castle"} +,{"_id":{"$oid":"55cba2476c522cafdb053d8f"},"location":{"coordinates":[-73.9206715,40.8677164],"type":"Point"},"name":"Pipers Kilt"} +,{"_id":{"$oid":"55cba2476c522cafdb053d90"},"location":{"coordinates":[-73.986446,40.6915505],"type":"Point"},"name":"Lee'S Villa Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053d91"},"location":{"coordinates":[-73.9181633,40.8151851],"type":"Point"},"name":"Isla Restauraunt"} +,{"_id":{"$oid":"55cba2476c522cafdb053d92"},"location":{"coordinates":[-74.1064605,40.634613],"type":"Point"},"name":"Puttin On A Bagel"} +,{"_id":{"$oid":"55cba2476c522cafdb053d93"},"location":{"coordinates":[-74.01229450000001,40.7074764],"type":"Point"},"name":"Champ'S Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb053d94"},"location":{"coordinates":[-73.9669846,40.8049697],"type":"Point"},"name":"Famous Famiglia Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb053d95"},"location":{"coordinates":[-74.00148399999999,40.7371583],"type":"Point"},"name":"Bennys Burritos"} +,{"_id":{"$oid":"55cba2476c522cafdb053d96"},"location":{"coordinates":[-73.8836996,40.7019366],"type":"Point"},"name":"Glendale Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb053d97"},"location":{"coordinates":[-73.9619036,40.6675708],"type":"Point"},"name":"Brooklyn Botanic Catering Hall"} +,{"_id":{"$oid":"55cba2476c522cafdb053d98"},"location":{"coordinates":[-73.8177658,40.8204314],"type":"Point"},"name":"Spoto'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053d99"},"location":{"coordinates":[-73.97081399999999,40.793965],"type":"Point"},"name":"Dive Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb053d9a"},"location":{"coordinates":[-73.97937,40.754292],"type":"Point"},"name":"The Cornell Center Of New York"} +,{"_id":{"$oid":"55cba2476c522cafdb053d9b"},"location":{"coordinates":[-73.94875979999999,40.6509995],"type":"Point"},"name":"Queen Bee'S Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb053d9c"},"location":{"coordinates":[-73.96098789999999,40.778213],"type":"Point"},"name":"Nectar Of 82Nd Street"} +,{"_id":{"$oid":"55cba2476c522cafdb053d9d"},"location":{"coordinates":[-73.9431862,40.7146566],"type":"Point"},"name":"White Castle"} +,{"_id":{"$oid":"55cba2476c522cafdb053d9e"},"location":{"coordinates":[-73.97128959999999,40.7881015],"type":"Point"},"name":"Bella Luna"} +,{"_id":{"$oid":"55cba2476c522cafdb053d9f"},"location":{"coordinates":[-73.9786446,40.7527136],"type":"Point"},"name":"T.G.I. Friday'S"} +,{"_id":{"$oid":"55cba2476c522cafdb053da0"},"location":{"coordinates":[-73.9153499,40.7637436],"type":"Point"},"name":"Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb053da1"},"location":{"coordinates":[-73.9876443,40.7358217],"type":"Point"},"name":"Yama Japanese Restaurant'"} +,{"_id":{"$oid":"55cba2476c522cafdb053da2"},"location":{"coordinates":[-74.03208579999999,40.6215814],"type":"Point"},"name":"Chadwick'S"} +,{"_id":{"$oid":"55cba2476c522cafdb053da3"},"location":{"coordinates":[-73.9860427,40.7229989],"type":"Point"},"name":"2A"} +,{"_id":{"$oid":"55cba2476c522cafdb053da4"},"location":{"coordinates":[-73.99624560000001,40.6951645],"type":"Point"},"name":"Teresa'S Resturant"} +,{"_id":{"$oid":"55cba2476c522cafdb053da5"},"location":{"coordinates":[-73.962756,40.769241],"type":"Point"},"name":"Sette Mezzo"} +,{"_id":{"$oid":"55cba2476c522cafdb053da6"},"location":{"coordinates":[-73.988568,40.760303],"type":"Point"},"name":"La Rivista Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053da7"},"location":{"coordinates":[-73.9848522,40.7533144],"type":"Point"},"name":"Pax Wholesome Foods"} +,{"_id":{"$oid":"55cba2476c522cafdb053da8"},"location":{"coordinates":[-73.9874091,40.72863479999999],"type":"Point"},"name":"Dallas Bbq"} +,{"_id":{"$oid":"55cba2476c522cafdb053da9"},"location":{"coordinates":[-73.98779019999999,40.7292837],"type":"Point"},"name":"Sakebar Decibel"} +,{"_id":{"$oid":"55cba2476c522cafdb053daa"},"location":{"coordinates":[-73.987875,40.719752],"type":"Point"},"name":"El Castillo De Jagua Rest"} +,{"_id":{"$oid":"55cba2476c522cafdb053dab"},"location":{"coordinates":[-73.82328319999999,40.8689401],"type":"Point"},"name":"Bagel Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb053dac"},"location":{"coordinates":[-0.7119979,51.6514664],"type":"Point"},"name":"T.G.I. Fridays"} +,{"_id":{"$oid":"55cba2476c522cafdb053dad"},"location":{"coordinates":[-73.9842265,40.7253886],"type":"Point"},"name":"Benny'S Burritos"} +,{"_id":{"$oid":"55cba2476c522cafdb053dae"},"location":{"coordinates":[-73.987292,40.725414],"type":"Point"},"name":"Guayoyo"} +,{"_id":{"$oid":"55cba2476c522cafdb053daf"},"location":{"coordinates":[-73.98724899999999,40.766272],"type":"Point"},"name":"Sacco Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb053db0"},"location":{"coordinates":[-73.9270272,40.7629397],"type":"Point"},"name":"Sac'S Pizza Place"} +,{"_id":{"$oid":"55cba2476c522cafdb053db1"},"location":{"coordinates":[-74.0017238,40.7359904],"type":"Point"},"name":"Rivoli Pizza Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053db2"},"location":{"coordinates":[-73.7801447,40.7779482],"type":"Point"},"name":"Baybridge Szechuan Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053db3"},"location":{"coordinates":[-73.84920869999999,40.7316791],"type":"Point"},"name":"Ideal Donut"} +,{"_id":{"$oid":"55cba2476c522cafdb053db4"},"location":{"coordinates":[-73.8881363,40.655407],"type":"Point"},"name":"Royal Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb053db5"},"location":{"coordinates":[-73.96522499999999,40.805478],"type":"Point"},"name":"Tom'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053db6"},"location":{"coordinates":[-73.991669,40.737153],"type":"Point"},"name":"Campeon"} +,{"_id":{"$oid":"55cba2476c522cafdb053db7"},"location":{"coordinates":[-73.9024234,40.8545577],"type":"Point"},"name":"Vinny'S Famous Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb053db8"},"location":{"coordinates":[-73.9657113,40.7601715],"type":"Point"},"name":"Townhouse Of Ny"} +,{"_id":{"$oid":"55cba2476c522cafdb053db9"},"location":{"coordinates":[-73.960011,40.7700744],"type":"Point"},"name":"Dallas Bbq"} +,{"_id":{"$oid":"55cba2476c522cafdb053dba"},"location":{"coordinates":[-73.8189257,40.82115659999999],"type":"Point"},"name":"Rino'S"} +,{"_id":{"$oid":"55cba2476c522cafdb053dbb"},"location":{"coordinates":[-73.77206319999999,40.7650324],"type":"Point"},"name":"Uno Chicago Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb053dbc"},"location":{"coordinates":[-73.9177601,40.7423593],"type":"Point"},"name":"Bliss Street Station Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053dbd"},"location":{"coordinates":[-74.0034907,40.722135],"type":"Point"},"name":"Lucky Strike"} +,{"_id":{"$oid":"55cba2476c522cafdb053dbe"},"location":{"coordinates":[-73.9660459,40.75609439999999],"type":"Point"},"name":"Ah! Chihuahua"} +,{"_id":{"$oid":"55cba2476c522cafdb053dbf"},"location":{"coordinates":[-73.8956317,40.7269685],"type":"Point"},"name":"Rosa'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb053dc0"},"location":{"coordinates":[-74.01153459999999,40.7061121],"type":"Point"},"name":"Champ Gourmet"} +,{"_id":{"$oid":"55cba2476c522cafdb053dc1"},"location":{"coordinates":[-73.9685372,40.7103536],"type":"Point"},"name":"Giando"} +,{"_id":{"$oid":"55cba2476c522cafdb053dc2"},"location":{"coordinates":[-73.84257319999999,40.7191229],"type":"Point"},"name":"Austin House"} +,{"_id":{"$oid":"55cba2476c522cafdb053dc3"},"location":{"coordinates":[-73.83845699999999,40.582524],"type":"Point"},"name":"Wharf Bar And Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb053dc4"},"location":{"coordinates":[-73.9907994,40.7156752],"type":"Point"},"name":"Classic Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb053dc5"},"location":{"coordinates":[-73.74757249999999,40.6959609],"type":"Point"},"name":"O G Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053dc6"},"location":{"coordinates":[-73.98482229999999,40.7645702],"type":"Point"},"name":"Da Tommasso"} +,{"_id":{"$oid":"55cba2476c522cafdb053dc7"},"location":{"coordinates":[-73.9918113,40.6913309],"type":"Point"},"name":"Queen"} +,{"_id":{"$oid":"55cba2476c522cafdb053dc8"},"location":{"coordinates":[-73.99638569999999,40.72209369999999],"type":"Point"},"name":"Pomodoro Ristorante"} +,{"_id":{"$oid":"55cba2476c522cafdb053dc9"},"location":{"coordinates":[-73.8424017,40.7194513],"type":"Point"},"name":"5 Burro Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb053dca"},"location":{"coordinates":[-73.9538042,40.7730966],"type":"Point"},"name":"Quatorze Bistro"} +,{"_id":{"$oid":"55cba2476c522cafdb053dcb"},"location":{"coordinates":[-73.89621989999999,40.7467198],"type":"Point"},"name":"Lucho'S Place"} +,{"_id":{"$oid":"55cba2476c522cafdb053dcc"},"location":{"coordinates":[-73.988342,40.727111],"type":"Point"},"name":"Haveli"} +,{"_id":{"$oid":"55cba2476c522cafdb053dcd"},"location":{"coordinates":[-73.8487037,40.7319571],"type":"Point"},"name":"Cho-Sen Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb053dce"},"location":{"coordinates":[-73.9847137,40.7371804],"type":"Point"},"name":"Barfly"} +,{"_id":{"$oid":"55cba2476c522cafdb053dcf"},"location":{"coordinates":[-73.9732585,40.79229249999999],"type":"Point"},"name":"Cleopatra'S Needle"} +,{"_id":{"$oid":"55cba2476c522cafdb053dd0"},"location":{"coordinates":[-73.819575,40.8291703],"type":"Point"},"name":"Villa Barone Manor"} +,{"_id":{"$oid":"55cba2476c522cafdb053dd1"},"location":{"coordinates":[-73.771625,40.764232],"type":"Point"},"name":"Papazzio Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053dd2"},"location":{"coordinates":[-73.9557858,40.813575],"type":"Point"},"name":"The Famous Jimbo'S Hamburger Palace"} +,{"_id":{"$oid":"55cba2476c522cafdb053dd3"},"location":{"coordinates":[-73.9667463,40.6935651],"type":"Point"},"name":"Kum Kau Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb053dd4"},"location":{"coordinates":[-74.1126424,40.5722235],"type":"Point"},"name":"Taste Of India Ii Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053dd5"},"location":{"coordinates":[-74.0097128,40.7121042],"type":"Point"},"name":"Stage Door Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb053dd6"},"location":{"coordinates":[-73.9862347,40.75015459999999],"type":"Point"},"name":"Han Bat Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053dd7"},"location":{"coordinates":[-73.9105112,40.6699158],"type":"Point"},"name":"Dennis' Place"} +,{"_id":{"$oid":"55cba2476c522cafdb053dd8"},"location":{"coordinates":[-73.9592335,40.76383930000001],"type":"Point"},"name":"O'Flanagan'S"} +,{"_id":{"$oid":"55cba2476c522cafdb053dd9"},"location":{"coordinates":[-73.833378,40.688097],"type":"Point"},"name":"Caterina'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb053dda"},"location":{"coordinates":[-74.0631248,40.6097835],"type":"Point"},"name":"Danny Blaine"} +,{"_id":{"$oid":"55cba2476c522cafdb053ddb"},"location":{"coordinates":[-73.739475,40.705207],"type":"Point"},"name":"White Castle"} +,{"_id":{"$oid":"55cba2476c522cafdb053ddc"},"location":{"coordinates":[-73.88460020000001,40.764499],"type":"Point"},"name":"Joey'S Place"} +,{"_id":{"$oid":"55cba2476c522cafdb053ddd"},"location":{"coordinates":[-73.9877595,40.7248378],"type":"Point"},"name":"The Edge Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb053dde"},"location":{"coordinates":[-74.085013,40.5966165],"type":"Point"},"name":"Cafe Luna"} +,{"_id":{"$oid":"55cba2476c522cafdb053ddf"},"location":{"coordinates":[-73.82034759999999,40.824629],"type":"Point"},"name":"Loui Seafood"} +,{"_id":{"$oid":"55cba2476c522cafdb053de0"},"location":{"coordinates":[-74.020889,40.633037],"type":"Point"},"name":"Killarney'S Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb053de1"},"location":{"coordinates":[-73.8894548,40.7470518],"type":"Point"},"name":"Miracali Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb053de2"},"location":{"coordinates":[-73.9761439,40.7478596],"type":"Point"},"name":"Daniel'S Bagel"} +,{"_id":{"$oid":"55cba2476c522cafdb053de3"},"location":{"coordinates":[-73.977572,40.74978100000001],"type":"Point"},"name":"Scotty'S Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb053de4"},"location":{"coordinates":[-73.91222499999999,40.7677472],"type":"Point"},"name":"Kabab Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb053de5"},"location":{"coordinates":[-74.0775165,40.643984],"type":"Point"},"name":"A \u0026 S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb053de6"},"location":{"coordinates":[-73.9523098,40.76589620000001],"type":"Point"},"name":"Belaire Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb053de7"},"location":{"coordinates":[-73.9573743,40.7746471],"type":"Point"},"name":"Luke'S Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb053de8"},"location":{"coordinates":[-73.96875399999999,40.757204],"type":"Point"},"name":"Solera Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053de9"},"location":{"coordinates":[-73.9288969,40.8644501],"type":"Point"},"name":"Irish Brigade"} +,{"_id":{"$oid":"55cba2476c522cafdb053dea"},"location":{"coordinates":[-73.99331699999999,40.7594404],"type":"Point"},"name":"Little Pie Company"} +,{"_id":{"$oid":"55cba2476c522cafdb053deb"},"location":{"coordinates":[-73.97894699999999,40.777789],"type":"Point"},"name":"Malachy'S"} +,{"_id":{"$oid":"55cba2476c522cafdb053dec"},"location":{"coordinates":[-73.989497,40.754057],"type":"Point"},"name":"Lazzaras Pizza Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb053ded"},"location":{"coordinates":[-73.986521,40.767623],"type":"Point"},"name":"Bello Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053dee"},"location":{"coordinates":[-73.979771,40.757729],"type":"Point"},"name":"Pronto Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb053def"},"location":{"coordinates":[-73.9953713,40.6036019],"type":"Point"},"name":"Grotto Azzura Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb053df0"},"location":{"coordinates":[-73.9852422,40.7589981],"type":"Point"},"name":"The Palace Theater"} +,{"_id":{"$oid":"55cba2476c522cafdb053df1"},"location":{"coordinates":[-73.7308948,40.760634],"type":"Point"},"name":"Richer'S Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb053df2"},"location":{"coordinates":[-73.9192774,40.8644476],"type":"Point"},"name":"El Lina Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053df3"},"location":{"coordinates":[-74.02357789999999,40.6288524],"type":"Point"},"name":"Bay Ridge Manor Catering"} +,{"_id":{"$oid":"55cba2476c522cafdb053df4"},"location":{"coordinates":[-73.813673,40.691014],"type":"Point"},"name":"Sybil'S Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb053df5"},"location":{"coordinates":[-73.7108839,40.7279539],"type":"Point"},"name":"Vaccaro'S Pizzeria \u0026 Trattoria"} +,{"_id":{"$oid":"55cba2476c522cafdb053df6"},"location":{"coordinates":[-73.7889689,40.6433507],"type":"Point"},"name":"Air France Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb053df7"},"location":{"coordinates":[-73.843266,40.854348],"type":"Point"},"name":"Gleason'S Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb053df8"},"location":{"coordinates":[-74.0063787,40.7108898],"type":"Point"},"name":"The Beekman"} +,{"_id":{"$oid":"55cba2476c522cafdb053df9"},"location":{"coordinates":[-73.9058659,40.7456127],"type":"Point"},"name":"Peking Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053dfa"},"location":{"coordinates":[-73.95609999999999,40.785009],"type":"Point"},"name":"Vico Ristorante"} +,{"_id":{"$oid":"55cba2476c522cafdb053dfb"},"location":{"coordinates":[-73.9771312,40.67257840000001],"type":"Point"},"name":"Szechuan Delight Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053dfc"},"location":{"coordinates":[-74.0019453,40.7382932],"type":"Point"},"name":"Tea And Sympathy"} +,{"_id":{"$oid":"55cba2476c522cafdb053dfd"},"location":{"coordinates":[-73.92396529999999,40.6903438],"type":"Point"},"name":"Collado Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053dfe"},"location":{"coordinates":[-73.98443,40.725358],"type":"Point"},"name":"Taka Hashi Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053dff"},"location":{"coordinates":[-73.9256281,40.8063364],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb053e00"},"location":{"coordinates":[-73.9821691,40.7554761],"type":"Point"},"name":"Bar Association Of The City Of Ny Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb053e01"},"location":{"coordinates":[-73.9743584,40.7534139],"type":"Point"},"name":"Bel Paese Italian Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb053e02"},"location":{"coordinates":[-73.9890844,40.7483602],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb053e03"},"location":{"coordinates":[-73.9715774,40.7626541],"type":"Point"},"name":"Tokya"} +,{"_id":{"$oid":"55cba2476c522cafdb053e04"},"location":{"coordinates":[-73.989025,40.759994],"type":"Point"},"name":"Orso"} +,{"_id":{"$oid":"55cba2476c522cafdb053e05"},"location":{"coordinates":[-73.9538783,40.787312],"type":"Point"},"name":"3 Guys"} +,{"_id":{"$oid":"55cba2476c522cafdb053e06"},"location":{"coordinates":[-73.95459819999999,40.7744927],"type":"Point"},"name":"H \u0026 H Midtown Bagels East"} +,{"_id":{"$oid":"55cba2476c522cafdb053e07"},"location":{"coordinates":[-73.8794087,40.7559137],"type":"Point"},"name":"White Castle"} +,{"_id":{"$oid":"55cba2476c522cafdb053e08"},"location":{"coordinates":[-73.9733955,40.75470989999999],"type":"Point"},"name":"Lily'S Bar @ Roger Smith Hotel"} +,{"_id":{"$oid":"55cba2476c522cafdb053e09"},"location":{"coordinates":[-73.7402293,40.6356182],"type":"Point"},"name":"Ihop"} +,{"_id":{"$oid":"55cba2476c522cafdb053e0a"},"location":{"coordinates":[-74.16906999999999,40.60375],"type":"Point"},"name":"Hillside Swimming Club"} +,{"_id":{"$oid":"55cba2476c522cafdb053e0b"},"location":{"coordinates":[-73.97866499999999,40.765296],"type":"Point"},"name":"The Nippon Club"} +,{"_id":{"$oid":"55cba2476c522cafdb053e0c"},"location":{"coordinates":[-74.11556999999999,40.573835],"type":"Point"},"name":"La Strada Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053e0d"},"location":{"coordinates":[-73.995856,40.7493849],"type":"Point"},"name":"Walter'S Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb053e0e"},"location":{"coordinates":[-74.1651864,40.5438954],"type":"Point"},"name":"Salvatore And Lloyd'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb053e0f"},"location":{"coordinates":[-74.0033499,40.72255],"type":"Point"},"name":"Novecento"} +,{"_id":{"$oid":"55cba2476c522cafdb053e10"},"location":{"coordinates":[-73.9630363,40.7577488],"type":"Point"},"name":"Sutton Cafe Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053e11"},"location":{"coordinates":[-73.95632379999999,40.7755794],"type":"Point"},"name":"Beyoglu"} +,{"_id":{"$oid":"55cba2476c522cafdb053e12"},"location":{"coordinates":[-73.99978949999999,40.7186898],"type":"Point"},"name":"Fay Da Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb053e13"},"location":{"coordinates":[-73.897185,40.8615512],"type":"Point"},"name":"Fordham Seafood And Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb053e14"},"location":{"coordinates":[-73.9890601,40.7538643],"type":"Point"},"name":"Cambridge Caterers"} +,{"_id":{"$oid":"55cba2476c522cafdb053e15"},"location":{"coordinates":[-73.830311,40.759006],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb053e16"},"location":{"coordinates":[-74.0969897,40.5830445],"type":"Point"},"name":"Cafe Bella Vita"} +,{"_id":{"$oid":"55cba2476c522cafdb053e17"},"location":{"coordinates":[-73.9549067,40.6971322],"type":"Point"},"name":"Charle'S Corner Restaurant \u0026 Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb053e18"},"location":{"coordinates":[-73.9673998,40.802516],"type":"Point"},"name":"Absolute Bagels"} +,{"_id":{"$oid":"55cba2476c522cafdb053e19"},"location":{"coordinates":[-73.8958229,40.752156],"type":"Point"},"name":"B.Q.E. Cafe Billiards"} +,{"_id":{"$oid":"55cba2476c522cafdb053e1a"},"location":{"coordinates":[-73.9503367,40.777553],"type":"Point"},"name":"Tal Bagel"} +,{"_id":{"$oid":"55cba2476c522cafdb053e1b"},"location":{"coordinates":[-73.80217999999999,40.707304],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb053e1c"},"location":{"coordinates":[-74.00345709999999,40.73635100000001],"type":"Point"},"name":"Tartine"} +,{"_id":{"$oid":"55cba2476c522cafdb053e1d"},"location":{"coordinates":[-74.0022315,40.7393829],"type":"Point"},"name":"Ipanema Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb053e1e"},"location":{"coordinates":[-74.0064209,40.7310687],"type":"Point"},"name":"Henrietta Hudson"} +,{"_id":{"$oid":"55cba2476c522cafdb053e1f"},"location":{"coordinates":[-73.9830854,40.7270359],"type":"Point"},"name":"Lucys"} +,{"_id":{"$oid":"55cba2476c522cafdb053e20"},"location":{"coordinates":[-73.9492258,40.7131675],"type":"Point"},"name":"Sal'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb053e21"},"location":{"coordinates":[-73.9828696,40.7693649],"type":"Point"},"name":"Gabriel'S Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb053e22"},"location":{"coordinates":[-73.9809909,40.7422324],"type":"Point"},"name":"Jaiya Thai Oriental Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053e23"},"location":{"coordinates":[-73.8630828,40.7502594],"type":"Point"},"name":"Nueva Villa China Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053e24"},"location":{"coordinates":[-73.9948902,40.7286803],"type":"Point"},"name":"Dojo Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053e25"},"location":{"coordinates":[-73.8092355,40.76449090000001],"type":"Point"},"name":"Ihop"} +,{"_id":{"$oid":"55cba2476c522cafdb053e26"},"location":{"coordinates":[-73.906922,40.619872],"type":"Point"},"name":"Bergen Beach Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb053e27"},"location":{"coordinates":[-73.9932394,40.7336411],"type":"Point"},"name":"El Cantinero"} +,{"_id":{"$oid":"55cba2476c522cafdb053e28"},"location":{"coordinates":[-73.9832361,40.7382721],"type":"Point"},"name":"Molly'S"} +,{"_id":{"$oid":"55cba2476c522cafdb053e29"},"location":{"coordinates":[-73.99076149999999,40.7653444],"type":"Point"},"name":"Azuri Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb053e2a"},"location":{"coordinates":[-74.00577439999999,40.72448929999999],"type":"Point"},"name":"Amelia'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053e2b"},"location":{"coordinates":[-73.9649155,40.5771957],"type":"Point"},"name":"National Restaurant \u0026 Catering"} +,{"_id":{"$oid":"55cba2476c522cafdb053e2c"},"location":{"coordinates":[-73.8836961,40.7496704],"type":"Point"},"name":"Jackson House Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053e2d"},"location":{"coordinates":[-73.8757937,40.7360927],"type":"Point"},"name":"Georgia Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb053e2e"},"location":{"coordinates":[-73.9784822,40.75316000000001],"type":"Point"},"name":"Patrick Conways"} +,{"_id":{"$oid":"55cba2476c522cafdb053e2f"},"location":{"coordinates":[-73.98694499999999,40.692606],"type":"Point"},"name":"Metrostar Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb053e30"},"location":{"coordinates":[-73.88704919999999,40.747519],"type":"Point"},"name":"Friend'S Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb053e31"},"location":{"coordinates":[-73.9652191,40.7627652],"type":"Point"},"name":"Scalinatella Ristaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053e32"},"location":{"coordinates":[-73.80545049999999,40.7017543],"type":"Point"},"name":"Rincon Salvadoreno Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053e33"},"location":{"coordinates":[-73.971952,40.79371],"type":"Point"},"name":"La Nueva Victoria Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053e34"},"location":{"coordinates":[-73.9899313,40.731505],"type":"Point"},"name":"Amsterdam Billiards"} +,{"_id":{"$oid":"55cba2476c522cafdb053e35"},"location":{"coordinates":[-73.97635439999999,40.6438997],"type":"Point"},"name":"Yen Yen Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053e36"},"location":{"coordinates":[-73.9947256,40.6852794],"type":"Point"},"name":"Buddy'S Burrito \u0026 Taco Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb053e37"},"location":{"coordinates":[-73.7845323,40.7575758],"type":"Point"},"name":"Oasis Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb053e38"},"location":{"coordinates":[-73.9597299,40.770444],"type":"Point"},"name":"E.J Luncheonette"} +,{"_id":{"$oid":"55cba2476c522cafdb053e39"},"location":{"coordinates":[-73.95869990000001,40.780493],"type":"Point"},"name":"Demarchelier Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053e3a"},"location":{"coordinates":[-73.9510102,40.5836641],"type":"Point"},"name":"V \u0026 S Pizzeria Of Sheapshead Bay"} +,{"_id":{"$oid":"55cba2476c522cafdb053e3b"},"location":{"coordinates":[-73.945866,40.746087],"type":"Point"},"name":"Court Square Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb053e3c"},"location":{"coordinates":[-73.97490839999999,40.7532711],"type":"Point"},"name":"Davis Polk Dining Room"} +,{"_id":{"$oid":"55cba2476c522cafdb053e3d"},"location":{"coordinates":[-73.9605993,40.6805698],"type":"Point"},"name":"White Castle"} +,{"_id":{"$oid":"55cba2476c522cafdb053e3e"},"location":{"coordinates":[-73.9972555,40.7476408],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb053e3f"},"location":{"coordinates":[-73.984758,40.7457939],"type":"Point"},"name":"Bella Napoli"} +,{"_id":{"$oid":"55cba2476c522cafdb053e40"},"location":{"coordinates":[-73.9931261,40.6887559],"type":"Point"},"name":"Cody'S Ale House Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb053e41"},"location":{"coordinates":[-74.0015476,40.7323956],"type":"Point"},"name":"Down The Hatch"} +,{"_id":{"$oid":"55cba2476c522cafdb053e42"},"location":{"coordinates":[-74.029397,40.628295],"type":"Point"},"name":"J.J. Bubbles"} +,{"_id":{"$oid":"55cba2476c522cafdb053e43"},"location":{"coordinates":[-73.97977759999999,40.6428602],"type":"Point"},"name":"Faros Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053e44"},"location":{"coordinates":[-73.98257989999999,40.7400916],"type":"Point"},"name":"Fitzgerald'S Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb053e45"},"location":{"coordinates":[-73.8519705,40.8730299],"type":"Point"},"name":"Gun Post Lanes Snack Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb053e46"},"location":{"coordinates":[-73.982976,40.7599775],"type":"Point"},"name":"Pasta Lovers Trattoria"} +,{"_id":{"$oid":"55cba2476c522cafdb053e47"},"location":{"coordinates":[-73.8834289,40.7559834],"type":"Point"},"name":"Los Toldos Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053e48"},"location":{"coordinates":[-73.84361799999999,40.674895],"type":"Point"},"name":"Glen Patrick'S Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb053e49"},"location":{"coordinates":[-74.0042175,40.7473469],"type":"Point"},"name":"Don Giovanni Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053e4a"},"location":{"coordinates":[-74.0099723,40.7196029],"type":"Point"},"name":"Tribeca Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb053e4b"},"location":{"coordinates":[-73.98588629999999,40.7292211],"type":"Point"},"name":"Shabu Tatsu"} +,{"_id":{"$oid":"55cba2476c522cafdb053e4c"},"location":{"coordinates":[-73.9521974,40.81086920000001],"type":"Point"},"name":"Popeyes Chicken \u0026 Biscuits"} +,{"_id":{"$oid":"55cba2476c522cafdb053e4d"},"location":{"coordinates":[-73.9243061,40.8276297],"type":"Point"},"name":"El Molino Rojo Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053e4e"},"location":{"coordinates":[-73.992465,40.729258],"type":"Point"},"name":"Indo Chine"} +,{"_id":{"$oid":"55cba2476c522cafdb053e4f"},"location":{"coordinates":[-73.8999395,40.7292132],"type":"Point"},"name":"Glen Patrick'S Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb053e50"},"location":{"coordinates":[-73.9049922,40.6962313],"type":"Point"},"name":"C \u0026 B Luncheonette"} +,{"_id":{"$oid":"55cba2476c522cafdb053e51"},"location":{"coordinates":[-73.8952941,40.70071710000001],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb053e52"},"location":{"coordinates":[-73.97443109999999,40.7604984],"type":"Point"},"name":"San Pietro"} +,{"_id":{"$oid":"55cba2476c522cafdb053e53"},"location":{"coordinates":[-73.9739876,40.7518635],"type":"Point"},"name":"Muldoons Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb053e54"},"location":{"coordinates":[-73.92329939999999,40.6648509],"type":"Point"},"name":"Tony'S Pizza Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb053e55"},"location":{"coordinates":[-73.88131419999999,40.7357155],"type":"Point"},"name":"Grandstand Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb053e56"},"location":{"coordinates":[-73.9829084,40.771793],"type":"Point"},"name":"Julliard \u0026 S.A.B. Cafeteria"} +,{"_id":{"$oid":"55cba2476c522cafdb053e57"},"location":{"coordinates":[-73.90559979999999,40.7455459],"type":"Point"},"name":"Pizza Boy Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb053e58"},"location":{"coordinates":[-73.9461132,40.7456289],"type":"Point"},"name":"Manetta'S Ristorante"} +,{"_id":{"$oid":"55cba2476c522cafdb053e59"},"location":{"coordinates":[-73.983406,40.7258722],"type":"Point"},"name":"Niagara/ Lovers Of Today/ Cabin Down Below"} +,{"_id":{"$oid":"55cba2476c522cafdb053e5a"},"location":{"coordinates":[-73.8966634,40.8669958],"type":"Point"},"name":"O'Brien'S Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb053e5b"},"location":{"coordinates":[-73.931917,40.6175723],"type":"Point"},"name":"Salvi Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053e5c"},"location":{"coordinates":[-74.0012107,40.74210799999999],"type":"Point"},"name":"Flight 151"} +,{"_id":{"$oid":"55cba2476c522cafdb053e5d"},"location":{"coordinates":[-73.7977964,40.7090806],"type":"Point"},"name":"White Castle"} +,{"_id":{"$oid":"55cba2476c522cafdb053e5e"},"location":{"coordinates":[-73.9707505,40.7635651],"type":"Point"},"name":"Delmonico Gourmet"} +,{"_id":{"$oid":"55cba2476c522cafdb053e5f"},"location":{"coordinates":[-73.90904499999999,40.88041339999999],"type":"Point"},"name":"Tibbett Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb053e60"},"location":{"coordinates":[-73.8884494,40.7653446],"type":"Point"},"name":"Jackson Hole"} +,{"_id":{"$oid":"55cba2476c522cafdb053e61"},"location":{"coordinates":[-73.821939,40.686825],"type":"Point"},"name":"Sandy'S Deli \u0026 Roti"} +,{"_id":{"$oid":"55cba2476c522cafdb053e62"},"location":{"coordinates":[-73.983139,40.759967],"type":"Point"},"name":"Bombay Masala"} +,{"_id":{"$oid":"55cba2476c522cafdb053e63"},"location":{"coordinates":[-73.96171079999999,40.6248868],"type":"Point"},"name":"Garden Of Eat-In"} +,{"_id":{"$oid":"55cba2476c522cafdb053e64"},"location":{"coordinates":[-73.9193791,40.75896760000001],"type":"Point"},"name":"Cronin \u0026 Phelan Pub \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053e65"},"location":{"coordinates":[-74.0087873,40.6109983],"type":"Point"},"name":"Pizza Plate"} +,{"_id":{"$oid":"55cba2476c522cafdb053e66"},"location":{"coordinates":[-73.95412499999999,40.743569],"type":"Point"},"name":"San Remo Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb053e67"},"location":{"coordinates":[-73.978911,40.764421],"type":"Point"},"name":"Topaz Thai Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053e68"},"location":{"coordinates":[-73.97926799999999,40.743595],"type":"Point"},"name":"Moonstruck East"} +,{"_id":{"$oid":"55cba2476c522cafdb053e69"},"location":{"coordinates":[-73.9557397,40.785099],"type":"Point"},"name":"Pascalou"} +,{"_id":{"$oid":"55cba2476c522cafdb053e6a"},"location":{"coordinates":[-74.010342,40.611598],"type":"Point"},"name":"Tommaso Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053e6b"},"location":{"coordinates":[-73.9318138,40.6176659],"type":"Point"},"name":"Frank'S Pizza Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053e6c"},"location":{"coordinates":[-73.9896289,40.76025],"type":"Point"},"name":"Da Rosina Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053e6d"},"location":{"coordinates":[-74.1331891,40.56415930000001],"type":"Point"},"name":"Island Taste"} +,{"_id":{"$oid":"55cba2476c522cafdb053e6e"},"location":{"coordinates":[-73.9853684,40.7311278],"type":"Point"},"name":"Little Poland Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053e6f"},"location":{"coordinates":[-73.9394856,40.8426994],"type":"Point"},"name":"Empire Szechuan Noodle House"} +,{"_id":{"$oid":"55cba2476c522cafdb053e70"},"location":{"coordinates":[-92.7302205,41.7461454],"type":"Point"},"name":"Bar Six"} +,{"_id":{"$oid":"55cba2476c522cafdb053e71"},"location":{"coordinates":[-73.957274,40.770774],"type":"Point"},"name":"Baraonda"} +,{"_id":{"$oid":"55cba2476c522cafdb053e72"},"location":{"coordinates":[-74.1660553,40.5823983],"type":"Point"},"name":"Master Wok"} +,{"_id":{"$oid":"55cba2476c522cafdb053e73"},"location":{"coordinates":[-73.97380120000001,40.7482611],"type":"Point"},"name":"Abitino'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb053e74"},"location":{"coordinates":[-74.0058124,40.7380446],"type":"Point"},"name":"Piccolo Angolo"} +,{"_id":{"$oid":"55cba2476c522cafdb053e75"},"location":{"coordinates":[-73.99468200000001,40.6407],"type":"Point"},"name":"A.J. Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb053e76"},"location":{"coordinates":[-73.9629278,40.7791655],"type":"Point"},"name":"Members Dining Room @ The Met Museum"} +,{"_id":{"$oid":"55cba2476c522cafdb053e77"},"location":{"coordinates":[-73.7075077,40.7495887],"type":"Point"},"name":"Luigi'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053e78"},"location":{"coordinates":[-73.99842079999999,40.7290139],"type":"Point"},"name":"Marumi"} +,{"_id":{"$oid":"55cba2476c522cafdb053e79"},"location":{"coordinates":[-74.1296886,40.6264756],"type":"Point"},"name":"Egger'S Ice Cream Parlor"} +,{"_id":{"$oid":"55cba2476c522cafdb053e7a"},"location":{"coordinates":[-73.8113218,40.5875274],"type":"Point"},"name":"The Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053e7b"},"location":{"coordinates":[-73.732315,40.720725],"type":"Point"},"name":"Mateus Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053e7c"},"location":{"coordinates":[-73.9872656,40.6399854],"type":"Point"},"name":"Gino'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb053e7d"},"location":{"coordinates":[-73.98035,40.777747],"type":"Point"},"name":"Fine \u0026 Shapiro"} +,{"_id":{"$oid":"55cba2476c522cafdb053e7e"},"location":{"coordinates":[-73.7704645,40.6579399],"type":"Point"},"name":"Ambassador Dining Room At Saratoga Family Inn"} +,{"_id":{"$oid":"55cba2476c522cafdb053e7f"},"location":{"coordinates":[-73.96743500000001,40.8005319],"type":"Point"},"name":"The Abbey Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb053e80"},"location":{"coordinates":[-73.9837606,40.7608268],"type":"Point"},"name":"Caroline'S On Broadway"} +,{"_id":{"$oid":"55cba2476c522cafdb053e81"},"location":{"coordinates":[-73.85694079999999,40.8936238],"type":"Point"},"name":"E \u0026 L Bakery \u0026 Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb053e82"},"location":{"coordinates":[-73.85701399999999,40.901577],"type":"Point"},"name":"Wembley Athletic Club"} +,{"_id":{"$oid":"55cba2476c522cafdb053e83"},"location":{"coordinates":[-73.9581403,40.7087235],"type":"Point"},"name":"Las Isla Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053e84"},"location":{"coordinates":[-73.954818,40.768811],"type":"Point"},"name":"Campagnola Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053e85"},"location":{"coordinates":[-74.0086962,40.7388469],"type":"Point"},"name":"The Upper Crust"} +,{"_id":{"$oid":"55cba2476c522cafdb053e86"},"location":{"coordinates":[-74.031519,40.6229395],"type":"Point"},"name":"Tuscany Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb053e87"},"location":{"coordinates":[-73.8380032,40.65281179999999],"type":"Point"},"name":"Russo'S On The Bay"} +,{"_id":{"$oid":"55cba2476c522cafdb053e88"},"location":{"coordinates":[-73.8761791,40.7634533],"type":"Point"},"name":"Buccaneer Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb053e89"},"location":{"coordinates":[-73.8143517,40.7885254],"type":"Point"},"name":"The End Zone Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb053e8a"},"location":{"coordinates":[-73.8739659,40.7769271],"type":"Point"},"name":"American Airlines Employee Cafeteria"} +,{"_id":{"$oid":"55cba2476c522cafdb053e8b"},"location":{"coordinates":[-73.91043359999999,40.7756386],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb053e8c"},"location":{"coordinates":[-73.99703339999999,40.7160416],"type":"Point"},"name":"Jing Fong Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053e8d"},"location":{"coordinates":[-73.989807,40.7608279],"type":"Point"},"name":"Becco"} +,{"_id":{"$oid":"55cba2476c522cafdb053e8e"},"location":{"coordinates":[-73.85553,40.89668349999999],"type":"Point"},"name":"Cullen'S Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb053e8f"},"location":{"coordinates":[-73.9917662,40.76002889999999],"type":"Point"},"name":"Rudy'S Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb053e90"},"location":{"coordinates":[-73.830072,40.709375],"type":"Point"},"name":"Austin'S Steak \u0026 Ale House"} +,{"_id":{"$oid":"55cba2476c522cafdb053e91"},"location":{"coordinates":[-73.9191383,40.6371133],"type":"Point"},"name":"Tony'S Pizzeria \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053e92"},"location":{"coordinates":[-73.9851034,40.765368],"type":"Point"},"name":"Uncle Vanya"} +,{"_id":{"$oid":"55cba2476c522cafdb053e93"},"location":{"coordinates":[-73.951216,40.775354],"type":"Point"},"name":"Gino'S Pizzeria Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053e94"},"location":{"coordinates":[-73.9898776,40.7260157],"type":"Point"},"name":"Dempsey'S Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb053e95"},"location":{"coordinates":[-73.8391839,40.6543479],"type":"Point"},"name":"Prima Pasta \u0026 Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb053e96"},"location":{"coordinates":[-73.9532315,40.7782353],"type":"Point"},"name":"Uno Chicago Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb053e97"},"location":{"coordinates":[-73.84469299999999,40.721271],"type":"Point"},"name":"T-Bone Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb053e98"},"location":{"coordinates":[-73.736463,40.73316],"type":"Point"},"name":"Winchesters Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb053e99"},"location":{"coordinates":[-73.70225359999999,40.751891],"type":"Point"},"name":"Cafe Cardini"} +,{"_id":{"$oid":"55cba2476c522cafdb053e9a"},"location":{"coordinates":[-73.9798842,40.6049957],"type":"Point"},"name":"Chicken Delicious"} +,{"_id":{"$oid":"55cba2476c522cafdb053e9b"},"location":{"coordinates":[-73.8157492,40.7554185],"type":"Point"},"name":"Sunrise Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb053e9c"},"location":{"coordinates":[-74.02111289999999,40.6337396],"type":"Point"},"name":"Mike'S Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb053e9d"},"location":{"coordinates":[-73.88376339999999,40.7458695],"type":"Point"},"name":"Ilda'S Place Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb053e9e"},"location":{"coordinates":[-74.0017127,40.7242606],"type":"Point"},"name":"Le Petit Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb053e9f"},"location":{"coordinates":[-74.0137862,40.6272646],"type":"Point"},"name":"My Three Sons Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053ea0"},"location":{"coordinates":[-73.73869499999999,40.69494299999999],"type":"Point"},"name":"Porto Prince Star Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053ea1"},"location":{"coordinates":[-73.9848956,40.72855],"type":"Point"},"name":"Coyote Ugly"} +,{"_id":{"$oid":"55cba2476c522cafdb053ea2"},"location":{"coordinates":[-73.9256595,40.7623472],"type":"Point"},"name":"Broadway Station"} +,{"_id":{"$oid":"55cba2476c522cafdb053ea3"},"location":{"coordinates":[-74.0037427,40.7224542],"type":"Point"},"name":"Felix"} +,{"_id":{"$oid":"55cba2476c522cafdb053ea4"},"location":{"coordinates":[-73.8413936,40.8402053],"type":"Point"},"name":"White Castle"} +,{"_id":{"$oid":"55cba2476c522cafdb053ea5"},"location":{"coordinates":[-73.9191958,40.7430542],"type":"Point"},"name":"Alpha Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb053ea6"},"location":{"coordinates":[-73.9759902,40.6262572],"type":"Point"},"name":"Mcdonald Avenue Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb053ea7"},"location":{"coordinates":[-74.0281239,40.6312553],"type":"Point"},"name":"Mezcal'S Dos Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053ea8"},"location":{"coordinates":[-73.8413087,40.6634483],"type":"Point"},"name":"Sugar Bun Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb053ea9"},"location":{"coordinates":[-73.99543779999999,40.6791887],"type":"Point"},"name":"Frank'S Place"} +,{"_id":{"$oid":"55cba2476c522cafdb053eaa"},"location":{"coordinates":[-73.96712,40.798503],"type":"Point"},"name":"Camilles"} +,{"_id":{"$oid":"55cba2476c522cafdb053eab"},"location":{"coordinates":[-73.8795695,40.7411095],"type":"Point"},"name":"Elmhurst Famous Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb053eac"},"location":{"coordinates":[-73.8787725,40.8728659],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb053ead"},"location":{"coordinates":[-73.9908184,40.686652],"type":"Point"},"name":"Caruso Pizzeria \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053eae"},"location":{"coordinates":[-73.9875796,40.7709609],"type":"Point"},"name":"Olympic Flame Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb053eaf"},"location":{"coordinates":[-73.96642899999999,40.754211],"type":"Point"},"name":"Indigo Indian Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb053eb0"},"location":{"coordinates":[-74.1688867,40.5604033],"type":"Point"},"name":"Country Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb053eb1"},"location":{"coordinates":[-73.94473839999999,40.6158108],"type":"Point"},"name":"Pizza Nosh"} +,{"_id":{"$oid":"55cba2476c522cafdb053eb2"},"location":{"coordinates":[-73.9509786,40.8264242],"type":"Point"},"name":"Caridad Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053eb3"},"location":{"coordinates":[-73.84043869999999,40.6797863],"type":"Point"},"name":"White Castle"} +,{"_id":{"$oid":"55cba2476c522cafdb053eb4"},"location":{"coordinates":[-73.9563642,40.7712012],"type":"Point"},"name":"The Stumble Inn"} +,{"_id":{"$oid":"55cba2476c522cafdb053eb5"},"location":{"coordinates":[-73.8754225,40.713315],"type":"Point"},"name":"Rosa #2 Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb053eb6"},"location":{"coordinates":[-73.737484,40.7683787],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb053eb7"},"location":{"coordinates":[-73.7735119,40.7693963],"type":"Point"},"name":"Tequilla Sunrise"} +,{"_id":{"$oid":"55cba2476c522cafdb053eb8"},"location":{"coordinates":[-73.9194763,40.807466],"type":"Point"},"name":"Golden Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb053eb9"},"location":{"coordinates":[-73.86709549999999,40.8640754],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb053eba"},"location":{"coordinates":[-74.162854,40.60778699999999],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb053ebb"},"location":{"coordinates":[-73.98352299999999,40.743549],"type":"Point"},"name":"Les Halles"} +,{"_id":{"$oid":"55cba2476c522cafdb053ebc"},"location":{"coordinates":[-73.98475669999999,40.6626618],"type":"Point"},"name":"Java Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053ebd"},"location":{"coordinates":[-73.9981541,40.7351897],"type":"Point"},"name":"French Roast"} +,{"_id":{"$oid":"55cba2476c522cafdb053ebe"},"location":{"coordinates":[-73.98606099999999,40.728176],"type":"Point"},"name":"Jules Bistro"} +,{"_id":{"$oid":"55cba2476c522cafdb053ebf"},"location":{"coordinates":[-73.98087199999999,40.775067],"type":"Point"},"name":"Il Violino"} +,{"_id":{"$oid":"55cba2476c522cafdb053ec0"},"location":{"coordinates":[-73.9776503,40.7521147],"type":"Point"},"name":"Hot \u0026 Crusty Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb053ec1"},"location":{"coordinates":[-73.9738917,40.7605744],"type":"Point"},"name":"Smiler'S Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb053ec2"},"location":{"coordinates":[-73.8630529,40.8456372],"type":"Point"},"name":"Chick-N-Ribs"} +,{"_id":{"$oid":"55cba2476c522cafdb053ec3"},"location":{"coordinates":[-73.9956844,40.7262603],"type":"Point"},"name":"Two Boots To Go-Go"} +,{"_id":{"$oid":"55cba2476c522cafdb053ec4"},"location":{"coordinates":[-73.980296,40.765951],"type":"Point"},"name":"Europa Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb053ec5"},"location":{"coordinates":[-73.9815103,40.7475731],"type":"Point"},"name":"Mendy'S"} +,{"_id":{"$oid":"55cba2476c522cafdb053ec6"},"location":{"coordinates":[-73.9789821,40.7768026],"type":"Point"},"name":"Harry'S Burrito Junction"} +,{"_id":{"$oid":"55cba2476c522cafdb053ec7"},"location":{"coordinates":[-74.108808,40.570254],"type":"Point"},"name":"Gennaro'S Rest \u0026 Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb053ec8"},"location":{"coordinates":[-73.98221099999999,40.728341],"type":"Point"},"name":"Hi Fi"} +,{"_id":{"$oid":"55cba2476c522cafdb053ec9"},"location":{"coordinates":[-73.986654,40.757498],"type":"Point"},"name":"Carmine'S"} +,{"_id":{"$oid":"55cba2476c522cafdb053eca"},"location":{"coordinates":[-73.8559465,40.7513484],"type":"Point"},"name":"Queens Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb053ecb"},"location":{"coordinates":[-73.9760637,40.7508686],"type":"Point"},"name":"Delmonico Gourmet"} +,{"_id":{"$oid":"55cba2476c522cafdb053ecc"},"location":{"coordinates":[-73.9243079,40.7565289],"type":"Point"},"name":"Arharn Thai Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb053ecd"},"location":{"coordinates":[-73.9394471,40.8431703],"type":"Point"},"name":"La Dinastia"} +,{"_id":{"$oid":"55cba2476c522cafdb053ece"},"location":{"coordinates":[-73.9977256,40.7368279],"type":"Point"},"name":"Cafe Loup"} +,{"_id":{"$oid":"55cba2476c522cafdb053ecf"},"location":{"coordinates":[-73.9252904,40.828054],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb053ed0"},"location":{"coordinates":[-73.9967999,40.720231],"type":"Point"},"name":"Caffe Roma"} +,{"_id":{"$oid":"55cba2476c522cafdb053ed1"},"location":{"coordinates":[-73.9193652,40.7585221],"type":"Point"},"name":"Ritmo'S 60"} +,{"_id":{"$oid":"55cba2476c522cafdb053ed2"},"location":{"coordinates":[-73.954054,40.729085],"type":"Point"},"name":"Christina'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053ed3"},"location":{"coordinates":[-73.884734,40.747737],"type":"Point"},"name":"Pollos A La Brasa"} +,{"_id":{"$oid":"55cba2476c522cafdb053ed4"},"location":{"coordinates":[-73.9838036,40.7587108],"type":"Point"},"name":"Langans Bar \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053ed5"},"location":{"coordinates":[-73.9699785,40.7559897],"type":"Point"},"name":"Ess-A-Bagel"} +,{"_id":{"$oid":"55cba2476c522cafdb053ed6"},"location":{"coordinates":[-73.9500205,40.779562],"type":"Point"},"name":"Auction House"} +,{"_id":{"$oid":"55cba2476c522cafdb053ed7"},"location":{"coordinates":[-73.9508638,40.7826745],"type":"Point"},"name":"Corner Cafe And Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb053ed8"},"location":{"coordinates":[-74.0116374,40.6435373],"type":"Point"},"name":"Royal King'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb053ed9"},"location":{"coordinates":[-73.999633,40.6178766],"type":"Point"},"name":"Mr. Phil'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb053eda"},"location":{"coordinates":[-73.8908967,40.6982006],"type":"Point"},"name":"Tee Dee'S Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb053edb"},"location":{"coordinates":[-73.884756,40.858821],"type":"Point"},"name":"Pugsley Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb053edc"},"location":{"coordinates":[-73.9705633,40.7605759],"type":"Point"},"name":"Montebello Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053edd"},"location":{"coordinates":[-73.917582,40.868597],"type":"Point"},"name":"Irish Eye Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb053ede"},"location":{"coordinates":[-73.996905,40.719626],"type":"Point"},"name":"Da Nico Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053edf"},"location":{"coordinates":[-73.970231,40.797486],"type":"Point"},"name":"Metro Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb053ee0"},"location":{"coordinates":[-73.97992870000002,40.7833573],"type":"Point"},"name":"New Wave Cafe \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053ee1"},"location":{"coordinates":[-73.9608725,40.7650144],"type":"Point"},"name":"Mediterraneo"} +,{"_id":{"$oid":"55cba2476c522cafdb053ee2"},"location":{"coordinates":[-73.9944043,40.7555753],"type":"Point"},"name":"Market Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb053ee3"},"location":{"coordinates":[-73.862658,40.749222],"type":"Point"},"name":"La Antioquena Bakery Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb053ee4"},"location":{"coordinates":[-73.8136109,40.7625856],"type":"Point"},"name":"Paradise Alley Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb053ee5"},"location":{"coordinates":[-73.9998148,40.7386276],"type":"Point"},"name":"Flannery'S Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb053ee6"},"location":{"coordinates":[-73.813897,40.587326],"type":"Point"},"name":"Rockaway Beach Inn"} +,{"_id":{"$oid":"55cba2476c522cafdb053ee7"},"location":{"coordinates":[-73.983386,40.758951],"type":"Point"},"name":"Evergreen Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053ee8"},"location":{"coordinates":[-73.7365469,40.7177808],"type":"Point"},"name":"Popeyes Chicken \u0026 Biscuits"} +,{"_id":{"$oid":"55cba2476c522cafdb053ee9"},"location":{"coordinates":[-74.1770458,40.5403636],"type":"Point"},"name":"Angelo'S Pizzeria/Mimmo'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053eea"},"location":{"coordinates":[-73.74411649999999,40.6065258],"type":"Point"},"name":"Sharmel Caterers"} +,{"_id":{"$oid":"55cba2476c522cafdb053eeb"},"location":{"coordinates":[-73.9815266,40.752244],"type":"Point"},"name":"Devon \u0026 Blakely"} +,{"_id":{"$oid":"55cba2476c522cafdb053eec"},"location":{"coordinates":[-73.9721457,40.7553647],"type":"Point"},"name":"Manhattan Espresso"} +,{"_id":{"$oid":"55cba2476c522cafdb053eed"},"location":{"coordinates":[-73.9898869,40.739751],"type":"Point"},"name":"Motivo"} +,{"_id":{"$oid":"55cba2476c522cafdb053eee"},"location":{"coordinates":[-74.10674949999999,40.572703],"type":"Point"},"name":"Excelsior Catering"} +,{"_id":{"$oid":"55cba2476c522cafdb053eef"},"location":{"coordinates":[-73.9830757,40.7492904],"type":"Point"},"name":"Toledo"} +,{"_id":{"$oid":"55cba2476c522cafdb053ef0"},"location":{"coordinates":[-73.9929159,40.7346078],"type":"Point"},"name":"Souen Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053ef1"},"location":{"coordinates":[-73.8974254,40.8220145],"type":"Point"},"name":"White Castle"} +,{"_id":{"$oid":"55cba2476c522cafdb053ef2"},"location":{"coordinates":[-73.960095,40.779471],"type":"Point"},"name":"Caffe Grazie"} +,{"_id":{"$oid":"55cba2476c522cafdb053ef3"},"location":{"coordinates":[-73.98784479999999,40.7521259],"type":"Point"},"name":"Bravo Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb053ef4"},"location":{"coordinates":[-73.999163,40.725592],"type":"Point"},"name":"Kelley \u0026 Ping"} +,{"_id":{"$oid":"55cba2476c522cafdb053ef5"},"location":{"coordinates":[-74.029381,40.621086],"type":"Point"},"name":"Arirang Hibachi Steakhouse"} +,{"_id":{"$oid":"55cba2476c522cafdb053ef6"},"location":{"coordinates":[-73.9782602,40.7650119],"type":"Point"},"name":"Salisbury Hotel"} +,{"_id":{"$oid":"55cba2476c522cafdb053ef7"},"location":{"coordinates":[-74.006113,40.7446571],"type":"Point"},"name":"La Luncheonette"} +,{"_id":{"$oid":"55cba2476c522cafdb053ef8"},"location":{"coordinates":[-73.98796700000001,40.764263],"type":"Point"},"name":"Mccoy'S Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb053ef9"},"location":{"coordinates":[-73.95156879999999,40.6914573],"type":"Point"},"name":"Sugar Hill Restaurant, Supper Club And Disco"} +,{"_id":{"$oid":"55cba2476c522cafdb053efa"},"location":{"coordinates":[-73.81454269999999,40.7185891],"type":"Point"},"name":"Hapisgah Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053efb"},"location":{"coordinates":[-73.9938591,40.7324039],"type":"Point"},"name":"Bagel Bob'S"} +,{"_id":{"$oid":"55cba2476c522cafdb053efc"},"location":{"coordinates":[-73.968322,40.760905],"type":"Point"},"name":"Le Colonial"} +,{"_id":{"$oid":"55cba2476c522cafdb053efd"},"location":{"coordinates":[-73.77840859999999,40.7786001],"type":"Point"},"name":"Ben'S Kosher Deli \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053efe"},"location":{"coordinates":[-73.82813,40.76033],"type":"Point"},"name":"Lucia Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb053eff"},"location":{"coordinates":[-73.9936506,40.7475513],"type":"Point"},"name":"Mustang Sally'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053f00"},"location":{"coordinates":[-73.9890654,40.7297462],"type":"Point"},"name":"Sharaku Japanese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053f01"},"location":{"coordinates":[-73.98179259999999,40.7544806],"type":"Point"},"name":"Le Mirage Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb053f02"},"location":{"coordinates":[-73.8889027,40.8543105],"type":"Point"},"name":"Dominick'S Bar \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053f03"},"location":{"coordinates":[-73.9994959,40.6375249],"type":"Point"},"name":"Jentana'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb053f04"},"location":{"coordinates":[-73.97203999999999,40.79358999999999],"type":"Point"},"name":"Manhattan Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb053f05"},"location":{"coordinates":[-73.9096593,40.6168812],"type":"Point"},"name":"La Villa Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb053f06"},"location":{"coordinates":[-73.9801263,40.7616971],"type":"Point"},"name":"Credit Agricole-Cbi Executive Room"} +,{"_id":{"$oid":"55cba2476c522cafdb053f07"},"location":{"coordinates":[-73.979033,40.7552362],"type":"Point"},"name":"Morton'S Steakhouse"} +,{"_id":{"$oid":"55cba2476c522cafdb053f08"},"location":{"coordinates":[-73.9679381,40.7536565],"type":"Point"},"name":"Usagi"} +,{"_id":{"$oid":"55cba2476c522cafdb053f09"},"location":{"coordinates":[-73.9867901,40.7220758],"type":"Point"},"name":"The Mercury Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb053f0a"},"location":{"coordinates":[-73.9509798,40.7276629],"type":"Point"},"name":"Europa Night Club"} +,{"_id":{"$oid":"55cba2476c522cafdb053f0b"},"location":{"coordinates":[-73.8849036,40.74391230000001],"type":"Point"},"name":"Alfonso'S Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb053f0c"},"location":{"coordinates":[-73.9160189,40.6193982],"type":"Point"},"name":"Gourmet Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb053f0d"},"location":{"coordinates":[-73.984049,40.725845],"type":"Point"},"name":"Pyramid"} +,{"_id":{"$oid":"55cba2476c522cafdb053f0e"},"location":{"coordinates":[-74.1042307,40.5764077],"type":"Point"},"name":"White Castle"} +,{"_id":{"$oid":"55cba2476c522cafdb053f0f"},"location":{"coordinates":[-73.98512830000001,40.7567841],"type":"Point"},"name":"Virgil'S Bbq"} +,{"_id":{"$oid":"55cba2476c522cafdb053f10"},"location":{"coordinates":[-73.838083,40.690867],"type":"Point"},"name":"Bamboo Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb053f11"},"location":{"coordinates":[-73.9986803,40.7200268],"type":"Point"},"name":"Landmark Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb053f12"},"location":{"coordinates":[-73.88343,40.6665185],"type":"Point"},"name":"Caterina'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb053f13"},"location":{"coordinates":[-73.86119219999999,40.8338023],"type":"Point"},"name":"Zaro'S Bread Basket"} +,{"_id":{"$oid":"55cba2476c522cafdb053f14"},"location":{"coordinates":[-73.9744066,40.7587141],"type":"Point"},"name":"Pax Wholesome Foods"} +,{"_id":{"$oid":"55cba2476c522cafdb053f15"},"location":{"coordinates":[-73.909634,40.7702979],"type":"Point"},"name":"Olympia"} +,{"_id":{"$oid":"55cba2476c522cafdb053f16"},"location":{"coordinates":[-73.9809046,40.7639595],"type":"Point"},"name":"Ben Ash Delicatessen"} +,{"_id":{"$oid":"55cba2476c522cafdb053f17"},"location":{"coordinates":[-73.8038217,40.7599195],"type":"Point"},"name":"Paddy Quinns"} +,{"_id":{"$oid":"55cba2476c522cafdb053f18"},"location":{"coordinates":[-73.9807581,40.7384515],"type":"Point"},"name":"Mikes Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb053f19"},"location":{"coordinates":[-73.94466,40.717827],"type":"Point"},"name":"La Locanda Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053f1a"},"location":{"coordinates":[-74.0036532,40.7220851],"type":"Point"},"name":"Toad Hall"} +,{"_id":{"$oid":"55cba2476c522cafdb053f1b"},"location":{"coordinates":[-73.7378856,40.7541547],"type":"Point"},"name":"Burger King"} +,{"_id":{"$oid":"55cba2476c522cafdb053f1c"},"location":{"coordinates":[-73.9577642,40.7612861],"type":"Point"},"name":"Weiss Cafe Rockefeller University"} +,{"_id":{"$oid":"55cba2476c522cafdb053f1d"},"location":{"coordinates":[-73.8760006,40.7046102],"type":"Point"},"name":"Home Deli \u0026 Catering"} +,{"_id":{"$oid":"55cba2476c522cafdb053f1e"},"location":{"coordinates":[-73.982139,40.742638],"type":"Point"},"name":"Curry In A Hurry"} +,{"_id":{"$oid":"55cba2476c522cafdb053f1f"},"location":{"coordinates":[-73.84048,40.71797],"type":"Point"},"name":"Nick'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb053f20"},"location":{"coordinates":[-73.948916,40.6805691],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb053f21"},"location":{"coordinates":[-73.968417,40.757043],"type":"Point"},"name":"La Gioconda"} +,{"_id":{"$oid":"55cba2476c522cafdb053f22"},"location":{"coordinates":[-73.973939,40.748619],"type":"Point"},"name":"Phoenix Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb053f23"},"location":{"coordinates":[-73.8345874,40.7699357],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb053f24"},"location":{"coordinates":[-73.982362,40.6382292],"type":"Point"},"name":"Pavillion Caterers"} +,{"_id":{"$oid":"55cba2476c522cafdb053f25"},"location":{"coordinates":[-74.087058,40.5922885],"type":"Point"},"name":"Trattoria Romana"} +,{"_id":{"$oid":"55cba2476c522cafdb053f26"},"location":{"coordinates":[-73.9419856,40.5990429],"type":"Point"},"name":"Perry'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053f27"},"location":{"coordinates":[-73.97213099999999,40.755833],"type":"Point"},"name":"San Martin"} +,{"_id":{"$oid":"55cba2476c522cafdb053f28"},"location":{"coordinates":[-73.9544453,40.774678],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb053f29"},"location":{"coordinates":[-73.980223,40.77832799999999],"type":"Point"},"name":"Dinastia China"} +,{"_id":{"$oid":"55cba2476c522cafdb053f2a"},"location":{"coordinates":[-73.771394,40.76331],"type":"Point"},"name":"Cj Sullivan'S"} +,{"_id":{"$oid":"55cba2476c522cafdb053f2b"},"location":{"coordinates":[-73.9274172,40.8659948],"type":"Point"},"name":"Dyckman Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb053f2c"},"location":{"coordinates":[-73.993143,40.724614],"type":"Point"},"name":"Tom And Jerry Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb053f2d"},"location":{"coordinates":[-74.0096839,40.7047512],"type":"Point"},"name":"Joseph'S Ristorante"} +,{"_id":{"$oid":"55cba2476c522cafdb053f2e"},"location":{"coordinates":[-73.978021,40.745347],"type":"Point"},"name":"Blockhead'S Burritos"} +,{"_id":{"$oid":"55cba2476c522cafdb053f2f"},"location":{"coordinates":[-73.9634559,40.768975],"type":"Point"},"name":"World Cup Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb053f30"},"location":{"coordinates":[-73.879909,40.7480778],"type":"Point"},"name":"Cafe 75 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb053f31"},"location":{"coordinates":[-73.903599,40.8434229],"type":"Point"},"name":"La Lechonera Criolla"} +,{"_id":{"$oid":"55cba2476c522cafdb053f32"},"location":{"coordinates":[-73.9124892,40.76656990000001],"type":"Point"},"name":"Caffee Express"} +,{"_id":{"$oid":"55cba2476c522cafdb053f33"},"location":{"coordinates":[80.361767,26.4669033],"type":"Point"},"name":"Master Wok"} +,{"_id":{"$oid":"55cba2476c522cafdb053f34"},"location":{"coordinates":[-73.98299,40.72726],"type":"Point"},"name":"Doc Holidays"} +,{"_id":{"$oid":"55cba2476c522cafdb053f35"},"location":{"coordinates":[-73.89039029999999,40.7488932],"type":"Point"},"name":"Famous Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb053f36"},"location":{"coordinates":[-73.9050345,40.7131649],"type":"Point"},"name":"Vixens"} +,{"_id":{"$oid":"55cba2476c522cafdb053f37"},"location":{"coordinates":[-73.9775564,40.6852972],"type":"Point"},"name":"Hanson Restaurant And Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb053f38"},"location":{"coordinates":[-73.9593562,40.7740372],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb053f39"},"location":{"coordinates":[-73.8887814,40.85436720000001],"type":"Point"},"name":"Enzo Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb053f3a"},"location":{"coordinates":[-73.9731698,40.5904198],"type":"Point"},"name":"Knapp St Pizza Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb053f3b"},"location":{"coordinates":[-73.96837599999999,40.59775399999999],"type":"Point"},"name":"Choy Le Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053f3c"},"location":{"coordinates":[-73.98558469999999,40.7350509],"type":"Point"},"name":"Mumbles"} +,{"_id":{"$oid":"55cba2476c522cafdb053f3d"},"location":{"coordinates":[-73.8647155,40.8376115],"type":"Point"},"name":"Joe'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb053f3e"},"location":{"coordinates":[-73.9873606,40.748556],"type":"Point"},"name":"Rick'S Cabaret"} +,{"_id":{"$oid":"55cba2476c522cafdb053f3f"},"location":{"coordinates":[-73.9745136,40.7588164],"type":"Point"},"name":"Fresco"} +,{"_id":{"$oid":"55cba2476c522cafdb053f40"},"location":{"coordinates":[-73.9196733,40.8157134],"type":"Point"},"name":"Lolita'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053f41"},"location":{"coordinates":[-73.9589834,40.77141839999999],"type":"Point"},"name":"Candle Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb053f42"},"location":{"coordinates":[-74.16253999999999,40.594092],"type":"Point"},"name":"Henny'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053f43"},"location":{"coordinates":[-73.990616,40.76073],"type":"Point"},"name":"9Th Ave Saloon"} +,{"_id":{"$oid":"55cba2476c522cafdb053f44"},"location":{"coordinates":[-73.98279,40.7572868],"type":"Point"},"name":"Europa Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb053f45"},"location":{"coordinates":[-74.0127104,40.7067796],"type":"Point"},"name":"Sale \u0026 Pepe"} +,{"_id":{"$oid":"55cba2476c522cafdb053f46"},"location":{"coordinates":[-74.010475,40.7172636],"type":"Point"},"name":"Gigino Trattoria"} +,{"_id":{"$oid":"55cba2476c522cafdb053f47"},"location":{"coordinates":[-73.95598939999999,40.7637649],"type":"Point"},"name":"Rockefeller U/Abby Bldg"} +,{"_id":{"$oid":"55cba2476c522cafdb053f48"},"location":{"coordinates":[-73.95564569999999,40.7194357],"type":"Point"},"name":"Mugs Ale House Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb053f49"},"location":{"coordinates":[-73.8813376,40.7410885],"type":"Point"},"name":"Singas Famous Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb053f4a"},"location":{"coordinates":[-73.979175,40.776306],"type":"Point"},"name":"Pomodoro Ristorante"} +,{"_id":{"$oid":"55cba2476c522cafdb053f4b"},"location":{"coordinates":[-73.966044,40.7536346],"type":"Point"},"name":"Bangkok Grand Palace"} +,{"_id":{"$oid":"55cba2476c522cafdb053f4c"},"location":{"coordinates":[-73.9945819,40.7324806],"type":"Point"},"name":"Arte Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053f4d"},"location":{"coordinates":[-74.00939799999999,40.715763],"type":"Point"},"name":"Acappella Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053f4e"},"location":{"coordinates":[-74.0215371,40.6467581],"type":"Point"},"name":"Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb053f4f"},"location":{"coordinates":[-73.8322649,40.714569],"type":"Point"},"name":"O'Hanlon'S"} +,{"_id":{"$oid":"55cba2476c522cafdb053f50"},"location":{"coordinates":[-73.9616128,40.7604259],"type":"Point"},"name":"John \u0026 Tonys Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb053f51"},"location":{"coordinates":[-73.981366,40.741888],"type":"Point"},"name":"Turkish Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb053f52"},"location":{"coordinates":[-73.94218029999999,40.8375829],"type":"Point"},"name":"La Barca Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053f53"},"location":{"coordinates":[-73.8091766,40.78727970000001],"type":"Point"},"name":"Pizza Chef"} +,{"_id":{"$oid":"55cba2476c522cafdb053f54"},"location":{"coordinates":[-73.9847235,40.7596814],"type":"Point"},"name":"Olive Garden Italian Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053f55"},"location":{"coordinates":[-73.9862593,40.7481711],"type":"Point"},"name":"Foley'S N.Y. Pub And Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053f56"},"location":{"coordinates":[-73.7888327,40.7269937],"type":"Point"},"name":"Iguanas"} +,{"_id":{"$oid":"55cba2476c522cafdb053f57"},"location":{"coordinates":[-73.98760709999999,40.7578091],"type":"Point"},"name":"Sardis Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053f58"},"location":{"coordinates":[-73.9829694,40.7384858],"type":"Point"},"name":"Pick-A-Bagel"} +,{"_id":{"$oid":"55cba2476c522cafdb053f59"},"location":{"coordinates":[-73.97645899999999,40.76288],"type":"Point"},"name":"Judge Roy Bean"} +,{"_id":{"$oid":"55cba2476c522cafdb053f5a"},"location":{"coordinates":[-73.9546853,40.7700543],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb053f5b"},"location":{"coordinates":[-73.8706904,40.7262315],"type":"Point"},"name":"Pio Pio"} +,{"_id":{"$oid":"55cba2476c522cafdb053f5c"},"location":{"coordinates":[-73.9652903,40.6896417],"type":"Point"},"name":"Mike'S Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb053f5d"},"location":{"coordinates":[-73.81821959999999,40.707846],"type":"Point"},"name":"Flagship Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb053f5e"},"location":{"coordinates":[-73.98858469999999,40.7235304],"type":"Point"},"name":"La Linea Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb053f5f"},"location":{"coordinates":[-73.990494,40.7569545],"type":"Point"},"name":"Green Trees"} +,{"_id":{"$oid":"55cba2476c522cafdb053f60"},"location":{"coordinates":[-73.7889465,40.7262928],"type":"Point"},"name":"Bagels \u0026 Cream Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb053f61"},"location":{"coordinates":[-73.953298,40.746056],"type":"Point"},"name":"Glory Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb053f62"},"location":{"coordinates":[-73.99190329999999,40.69983209999999],"type":"Point"},"name":"Noodle Pudding"} +,{"_id":{"$oid":"55cba2476c522cafdb053f63"},"location":{"coordinates":[-73.97338529999999,40.761523],"type":"Point"},"name":"Sony Music Employee Cafeteria"} +,{"_id":{"$oid":"55cba2476c522cafdb053f64"},"location":{"coordinates":[-73.9220047,40.7713738],"type":"Point"},"name":"El Rey Mexican Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053f65"},"location":{"coordinates":[-73.9040273,40.7213502],"type":"Point"},"name":"Dunkin' Donuts, Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb053f66"},"location":{"coordinates":[-73.9434351,40.6075879],"type":"Point"},"name":"Michael'S Pastry Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb053f67"},"location":{"coordinates":[-73.9270544,40.8197704],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb053f68"},"location":{"coordinates":[-73.9890549,40.763902],"type":"Point"},"name":"Uncle Nicks"} +,{"_id":{"$oid":"55cba2476c522cafdb053f69"},"location":{"coordinates":[-73.96370569999999,40.7659217],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb053f6a"},"location":{"coordinates":[-74.00725489999999,40.6484124],"type":"Point"},"name":"International Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053f6b"},"location":{"coordinates":[-73.9864042,40.7391588],"type":"Point"},"name":"Novita"} +,{"_id":{"$oid":"55cba2476c522cafdb053f6c"},"location":{"coordinates":[-73.98480219999999,40.746541],"type":"Point"},"name":"Han Gawi"} +,{"_id":{"$oid":"55cba2476c522cafdb053f6d"},"location":{"coordinates":[-74.00543929999999,40.7334079],"type":"Point"},"name":"Hangar Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb053f6e"},"location":{"coordinates":[-74.0070818,40.715609],"type":"Point"},"name":"Domino'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb053f6f"},"location":{"coordinates":[-73.8946994,40.7259725],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb053f70"},"location":{"coordinates":[-74.000085,40.733807],"type":"Point"},"name":"Pieces"} +,{"_id":{"$oid":"55cba2476c522cafdb053f71"},"location":{"coordinates":[-73.9475662,40.8098915],"type":"Point"},"name":"White Castle"} +,{"_id":{"$oid":"55cba2476c522cafdb053f72"},"location":{"coordinates":[-73.9985645,40.6050864],"type":"Point"},"name":"Lenny'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb053f73"},"location":{"coordinates":[-73.9943579,40.6362777],"type":"Point"},"name":"Schick'S Manor"} +,{"_id":{"$oid":"55cba2476c522cafdb053f74"},"location":{"coordinates":[-73.9981446,40.7167219],"type":"Point"},"name":"Tai Pan Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb053f75"},"location":{"coordinates":[-73.9861763,40.6696681],"type":"Point"},"name":"Fifth Ave Cafe /Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb053f76"},"location":{"coordinates":[-73.907335,40.8866825],"type":"Point"},"name":"Rolen Bagels"} +,{"_id":{"$oid":"55cba2476c522cafdb053f77"},"location":{"coordinates":[-74.1914658,40.55274360000001],"type":"Point"},"name":"Villa Monte Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb053f78"},"location":{"coordinates":[-73.9132748,40.7563128],"type":"Point"},"name":"Doyle'S Corner"} +,{"_id":{"$oid":"55cba2476c522cafdb053f79"},"location":{"coordinates":[-73.9946873,40.7232006],"type":"Point"},"name":"Cafe Gitane"} +,{"_id":{"$oid":"55cba2476c522cafdb053f7a"},"location":{"coordinates":[-73.7340699,40.7433623],"type":"Point"},"name":"Giardino Ristorante"} +,{"_id":{"$oid":"55cba2476c522cafdb053f7b"},"location":{"coordinates":[-74.0320876,40.6203769],"type":"Point"},"name":"Circle'S Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb053f7c"},"location":{"coordinates":[-73.9878211,40.7299461],"type":"Point"},"name":"Panya/The Barrel"} +,{"_id":{"$oid":"55cba2476c522cafdb053f7d"},"location":{"coordinates":[-73.939373,40.837052],"type":"Point"},"name":"La Caridad Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053f7e"},"location":{"coordinates":[-73.9508413,40.7243234],"type":"Point"},"name":"Lomzymianka Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053f7f"},"location":{"coordinates":[-73.98924699999999,40.637366],"type":"Point"},"name":"China Glatt"} +,{"_id":{"$oid":"55cba2476c522cafdb053f80"},"location":{"coordinates":[-74.0060819,40.73702369999999],"type":"Point"},"name":"Bus Stop Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb053f81"},"location":{"coordinates":[-73.983464,40.765451],"type":"Point"},"name":"Matt'S Grill Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053f82"},"location":{"coordinates":[-73.9945999,40.7400153],"type":"Point"},"name":"Cafe Beyond"} +,{"_id":{"$oid":"55cba2476c522cafdb053f83"},"location":{"coordinates":[-73.8454939,40.7208543],"type":"Point"},"name":"Cabana"} +,{"_id":{"$oid":"55cba2476c522cafdb053f84"},"location":{"coordinates":[-73.9767986,40.7439001],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb053f85"},"location":{"coordinates":[-73.951612,40.5857958],"type":"Point"},"name":"Wheelers"} +,{"_id":{"$oid":"55cba2476c522cafdb053f86"},"location":{"coordinates":[-73.9395219,40.6131304],"type":"Point"},"name":"Quentin Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb053f87"},"location":{"coordinates":[-73.97099589999999,40.7601877],"type":"Point"},"name":"Create \u0026 Go"} +,{"_id":{"$oid":"55cba2476c522cafdb053f88"},"location":{"coordinates":[-74.007901,40.7329662],"type":"Point"},"name":"Sweet Life Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb053f89"},"location":{"coordinates":[-73.9956014,40.7291935],"type":"Point"},"name":"Campus Eatery"} +,{"_id":{"$oid":"55cba2476c522cafdb053f8a"},"location":{"coordinates":[-73.92956420000002,40.5868367],"type":"Point"},"name":"T.G.I. Friday'S"} +,{"_id":{"$oid":"55cba2476c522cafdb053f8b"},"location":{"coordinates":[-74.025231,40.636865],"type":"Point"},"name":"Bangkok Thai House"} +,{"_id":{"$oid":"55cba2476c522cafdb053f8c"},"location":{"coordinates":[-74.00327,40.724487],"type":"Point"},"name":"Vin Et Fleurs"} +,{"_id":{"$oid":"55cba2476c522cafdb053f8d"},"location":{"coordinates":[-73.9814823,40.77407669999999],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb053f8e"},"location":{"coordinates":[-73.8404553,40.7180368],"type":"Point"},"name":"Bonelle Pastry Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb053f8f"},"location":{"coordinates":[-73.9780885,40.7857695],"type":"Point"},"name":"Cafe Eighty Two"} +,{"_id":{"$oid":"55cba2476c522cafdb053f90"},"location":{"coordinates":[-73.9953177,40.7436585],"type":"Point"},"name":"Domino'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb053f91"},"location":{"coordinates":[-73.9787631,40.7849131],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb053f92"},"location":{"coordinates":[-73.9880601,40.724363],"type":"Point"},"name":"D.B.A."} +,{"_id":{"$oid":"55cba2476c522cafdb053f93"},"location":{"coordinates":[-73.8593022,40.7292981],"type":"Point"},"name":"Avellino Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053f94"},"location":{"coordinates":[-73.7753642,40.7800034],"type":"Point"},"name":"Barnes \u0026 Noble Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb053f95"},"location":{"coordinates":[-73.9840009,40.7596381],"type":"Point"},"name":"Smiler'S"} +,{"_id":{"$oid":"55cba2476c522cafdb053f96"},"location":{"coordinates":[-73.9275311,40.7465581],"type":"Point"},"name":"All American Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb053f97"},"location":{"coordinates":[-74.129932,40.612816],"type":"Point"},"name":"Legend'S Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb053f98"},"location":{"coordinates":[-73.91890699999999,40.631468],"type":"Point"},"name":"The Arch Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb053f99"},"location":{"coordinates":[-73.980271,40.750972],"type":"Point"},"name":"Mulligan'S Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb053f9a"},"location":{"coordinates":[-74.0052123,40.7322175],"type":"Point"},"name":"Moustache Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053f9b"},"location":{"coordinates":[-73.94610279999999,40.7137587],"type":"Point"},"name":"Fortunato Bros Cafe \u0026 Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb053f9c"},"location":{"coordinates":[-73.9600397,40.5785117],"type":"Point"},"name":"Cafe Paris"} +,{"_id":{"$oid":"55cba2476c522cafdb053f9d"},"location":{"coordinates":[-73.9861639,40.7351401],"type":"Point"},"name":"Gramercy Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb053f9e"},"location":{"coordinates":[-73.9373939,40.8190144],"type":"Point"},"name":"Touch Of Dee'S"} +,{"_id":{"$oid":"55cba2476c522cafdb053f9f"},"location":{"coordinates":[-73.94864299999999,40.59266],"type":"Point"},"name":"Anthony'S Place"} +,{"_id":{"$oid":"55cba2476c522cafdb053fa0"},"location":{"coordinates":[-73.9600923,40.7707731],"type":"Point"},"name":"T-Bar Steak \u0026 Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb053fa1"},"location":{"coordinates":[-73.96813999999999,40.756938],"type":"Point"},"name":"Peking Duck House"} +,{"_id":{"$oid":"55cba2476c522cafdb053fa2"},"location":{"coordinates":[-73.98333319999999,40.7618628],"type":"Point"},"name":"Ellen'S Stardust Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb053fa3"},"location":{"coordinates":[-73.9929667,40.725837],"type":"Point"},"name":"Il Buco Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053fa4"},"location":{"coordinates":[-73.9914232,40.72983],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb053fa5"},"location":{"coordinates":[-74.00513529999999,40.7081169],"type":"Point"},"name":"Ryan Maguire'S Bar \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053fa6"},"location":{"coordinates":[-73.962751,40.5754141],"type":"Point"},"name":"Cafe Volna"} +,{"_id":{"$oid":"55cba2476c522cafdb053fa7"},"location":{"coordinates":[-73.9218327,40.74369530000001],"type":"Point"},"name":"Pj Horgan'S Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb053fa8"},"location":{"coordinates":[-73.9052986,40.745151],"type":"Point"},"name":"Starting Gate"} +,{"_id":{"$oid":"55cba2476c522cafdb053fa9"},"location":{"coordinates":[-74.12184789999999,40.60862900000001],"type":"Point"},"name":"Village Maria Pizza Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb053faa"},"location":{"coordinates":[-74.0014137,40.7366986],"type":"Point"},"name":"Two Boots To Go West"} +,{"_id":{"$oid":"55cba2476c522cafdb053fab"},"location":{"coordinates":[-73.9890071,40.7391277],"type":"Point"},"name":"Rohm Thai"} +,{"_id":{"$oid":"55cba2476c522cafdb053fac"},"location":{"coordinates":[-73.9417015,40.78800349999999],"type":"Point"},"name":"White Castle"} +,{"_id":{"$oid":"55cba2476c522cafdb053fad"},"location":{"coordinates":[-74.0102663,40.7057236],"type":"Point"},"name":"Irish Punt"} +,{"_id":{"$oid":"55cba2476c522cafdb053fae"},"location":{"coordinates":[-73.9868068,40.7259971],"type":"Point"},"name":"Three Of Cups"} +,{"_id":{"$oid":"55cba2476c522cafdb053faf"},"location":{"coordinates":[-73.9782432,40.7530749],"type":"Point"},"name":"Annie Moore'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053fb0"},"location":{"coordinates":[-73.895853,40.746154],"type":"Point"},"name":"Scorpio Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb053fb1"},"location":{"coordinates":[-73.987251,40.725472],"type":"Point"},"name":"Downtown Bakery Ii Mexican Food"} +,{"_id":{"$oid":"55cba2476c522cafdb053fb2"},"location":{"coordinates":[-73.98074319999999,40.6642356],"type":"Point"},"name":"Johnny Mack'S Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb053fb3"},"location":{"coordinates":[-74.00070500000001,40.660545],"type":"Point"},"name":"Quick Stop Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053fb4"},"location":{"coordinates":[-74.0034501,40.7249822],"type":"Point"},"name":"Savore"} +,{"_id":{"$oid":"55cba2476c522cafdb053fb5"},"location":{"coordinates":[-73.7029951,40.7521758],"type":"Point"},"name":"Jj Peabody'S"} +,{"_id":{"$oid":"55cba2476c522cafdb053fb6"},"location":{"coordinates":[-73.9822591,40.637965],"type":"Point"},"name":"Naim Kosher Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb053fb7"},"location":{"coordinates":[-73.89846779999999,40.8617606],"type":"Point"},"name":"Fordham Fried Chicken \u0026 Sea Food"} +,{"_id":{"$oid":"55cba2476c522cafdb053fb8"},"location":{"coordinates":[-73.9905498,40.7275824],"type":"Point"},"name":"The Scratcher Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb053fb9"},"location":{"coordinates":[-73.9979819,40.73669640000001],"type":"Point"},"name":"Salam Cafe \u0026 Rest"} +,{"_id":{"$oid":"55cba2476c522cafdb053fba"},"location":{"coordinates":[-73.78976200000001,40.7612529],"type":"Point"},"name":"Mccabe'S Bar Car"} +,{"_id":{"$oid":"55cba2476c522cafdb053fbb"},"location":{"coordinates":[-73.97659019999999,40.78764169999999],"type":"Point"},"name":"French Roast"} +,{"_id":{"$oid":"55cba2476c522cafdb053fbc"},"location":{"coordinates":[-73.96396419999999,40.8032642],"type":"Point"},"name":"1020 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb053fbd"},"location":{"coordinates":[-74.1219048,40.6085365],"type":"Point"},"name":"Happy Fortune Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb053fbe"},"location":{"coordinates":[-73.908988,40.7775664],"type":"Point"},"name":"El Olivo"} +,{"_id":{"$oid":"55cba2476c522cafdb053fbf"},"location":{"coordinates":[-73.7896821,40.7667149],"type":"Point"},"name":"D'Aquila Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb053fc0"},"location":{"coordinates":[-73.933409,40.8543694],"type":"Point"},"name":"La Cabana Salvadorena Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053fc1"},"location":{"coordinates":[-73.9865702,40.7275014],"type":"Point"},"name":"Big Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb053fc2"},"location":{"coordinates":[-74.0063035,40.6472415],"type":"Point"},"name":"Astromundo Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053fc3"},"location":{"coordinates":[-73.9877408,40.7377223],"type":"Point"},"name":"City Crab"} +,{"_id":{"$oid":"55cba2476c522cafdb053fc4"},"location":{"coordinates":[-73.993325,40.661792],"type":"Point"},"name":"J And L Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb053fc5"},"location":{"coordinates":[-73.9913546,40.5907223],"type":"Point"},"name":"La Casa Bella"} +,{"_id":{"$oid":"55cba2476c522cafdb053fc6"},"location":{"coordinates":[-73.9726706,40.6475539],"type":"Point"},"name":"Shenanigans Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb053fc7"},"location":{"coordinates":[-73.9812479,40.778125],"type":"Point"},"name":"City Pie"} +,{"_id":{"$oid":"55cba2476c522cafdb053fc8"},"location":{"coordinates":[-73.867474,40.851044],"type":"Point"},"name":"Celeste'S Snack Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb053fc9"},"location":{"coordinates":[-73.99083929999999,40.7369091],"type":"Point"},"name":"Heartland Brewery"} +,{"_id":{"$oid":"55cba2476c522cafdb053fca"},"location":{"coordinates":[-73.9690186,40.7979053],"type":"Point"},"name":"Broadway Dive"} +,{"_id":{"$oid":"55cba2476c522cafdb053fcb"},"location":{"coordinates":[-73.9175575,40.6262933],"type":"Point"},"name":"Ihop"} +,{"_id":{"$oid":"55cba2476c522cafdb053fcc"},"location":{"coordinates":[-73.83102699999999,40.861888],"type":"Point"},"name":"Pelham Bay Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb053fcd"},"location":{"coordinates":[-73.977807,40.78437],"type":"Point"},"name":"Jake'S Dilemma"} +,{"_id":{"$oid":"55cba2476c522cafdb053fce"},"location":{"coordinates":[-73.953694,40.7429739],"type":"Point"},"name":"Paris Gourmet Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb053fcf"},"location":{"coordinates":[-73.8473802,40.7217493],"type":"Point"},"name":"Beth Torah Kosher Caterers"} +,{"_id":{"$oid":"55cba2476c522cafdb053fd0"},"location":{"coordinates":[-73.98403019999999,40.7429936],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb053fd1"},"location":{"coordinates":[-73.96959989999999,40.6046834],"type":"Point"},"name":"Back To Nature"} +,{"_id":{"$oid":"55cba2476c522cafdb053fd2"},"location":{"coordinates":[-73.9734249,40.57981960000001],"type":"Point"},"name":"Rocco'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb053fd3"},"location":{"coordinates":[-73.72977399999999,40.674417],"type":"Point"},"name":"Usa Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb053fd4"},"location":{"coordinates":[-73.9961484,40.6951151],"type":"Point"},"name":"Heights Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb053fd5"},"location":{"coordinates":[-73.964585,40.801452],"type":"Point"},"name":"El Rey De La Caridad"} +,{"_id":{"$oid":"55cba2476c522cafdb053fd6"},"location":{"coordinates":[-73.97702629999999,40.7254798],"type":"Point"},"name":"El Rinconcito Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053fd7"},"location":{"coordinates":[-73.96150779999999,40.57543769999999],"type":"Point"},"name":"Tatiana Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053fd8"},"location":{"coordinates":[-73.9775365,40.7420555],"type":"Point"},"name":"Water Front Ale House"} +,{"_id":{"$oid":"55cba2476c522cafdb053fd9"},"location":{"coordinates":[-73.954278,40.777918],"type":"Point"},"name":"Highlands Cafe Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053fda"},"location":{"coordinates":[-73.97331679999999,40.75482770000001],"type":"Point"},"name":"S Dynasty"} +,{"_id":{"$oid":"55cba2476c522cafdb053fdb"},"location":{"coordinates":[-73.94605159999999,40.7986678],"type":"Point"},"name":"Oriental Palace Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb053fdc"},"location":{"coordinates":[-73.7517434,40.6663811],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb053fdd"},"location":{"coordinates":[-73.990494,40.7569545],"type":"Point"},"name":"Deli Plus ( Inside Port Authority Station)"} +,{"_id":{"$oid":"55cba2476c522cafdb053fde"},"location":{"coordinates":[-73.953822,40.730003],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb053fdf"},"location":{"coordinates":[-73.8893255,40.7468526],"type":"Point"},"name":"Los Arrieros Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053fe0"},"location":{"coordinates":[-74.00844099999999,40.707058],"type":"Point"},"name":"Oriental Express"} +,{"_id":{"$oid":"55cba2476c522cafdb053fe1"},"location":{"coordinates":[-73.9492533,40.7808636],"type":"Point"},"name":"Three Decker Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053fe2"},"location":{"coordinates":[-73.960202,40.617828],"type":"Point"},"name":"Jerusalem Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb053fe3"},"location":{"coordinates":[-78.0810058,36.9083866],"type":"Point"},"name":"Columbus Gourmet Food"} +,{"_id":{"$oid":"55cba2476c522cafdb053fe4"},"location":{"coordinates":[-73.9275645,40.7463941],"type":"Point"},"name":"Nelly'S Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb053fe5"},"location":{"coordinates":[-74.0031652,40.7392599],"type":"Point"},"name":"Village Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb053fe6"},"location":{"coordinates":[-73.738874,40.660467],"type":"Point"},"name":"Sports Mania Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb053fe7"},"location":{"coordinates":[-73.997849,40.7197109],"type":"Point"},"name":"O'Nieals"} +,{"_id":{"$oid":"55cba2476c522cafdb053fe8"},"location":{"coordinates":[-74.001699,40.7378967],"type":"Point"},"name":"Johnny'S Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb053fe9"},"location":{"coordinates":[-73.9807411,40.76513629999999],"type":"Point"},"name":"Brooklyn Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb053fea"},"location":{"coordinates":[-73.9425904,40.5780734],"type":"Point"},"name":"Papa Leone Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb053feb"},"location":{"coordinates":[-74.00897599999999,40.7194498],"type":"Point"},"name":"Nobu"} +,{"_id":{"$oid":"55cba2476c522cafdb053fec"},"location":{"coordinates":[-73.9419869,40.8175016],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb053fed"},"location":{"coordinates":[-74.0046811,40.7090818],"type":"Point"},"name":"Tj Byrne'S Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb053fee"},"location":{"coordinates":[-74.00892689999999,40.7133533],"type":"Point"},"name":"Bangal Curry"} +,{"_id":{"$oid":"55cba2476c522cafdb053fef"},"location":{"coordinates":[-73.9235077,40.7613253],"type":"Point"},"name":"Tierras Columbianas"} +,{"_id":{"$oid":"55cba2476c522cafdb053ff0"},"location":{"coordinates":[-73.9887584,40.7539308],"type":"Point"},"name":"Cafe Metro"} +,{"_id":{"$oid":"55cba2476c522cafdb053ff1"},"location":{"coordinates":[-73.91844999999999,40.7652519],"type":"Point"},"name":"Grand Avenue Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb053ff2"},"location":{"coordinates":[-73.97759599999999,40.747007],"type":"Point"},"name":"Hudson Place"} +,{"_id":{"$oid":"55cba2476c522cafdb053ff3"},"location":{"coordinates":[-73.984353,40.7580068],"type":"Point"},"name":"Le Marais"} +,{"_id":{"$oid":"55cba2476c522cafdb053ff4"},"location":{"coordinates":[-74.0096509,40.7237676],"type":"Point"},"name":"Estancia 460"} +,{"_id":{"$oid":"55cba2476c522cafdb053ff5"},"location":{"coordinates":[-73.899683,40.74616899999999],"type":"Point"},"name":"Izalco Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053ff6"},"location":{"coordinates":[-73.9924918,40.6991025],"type":"Point"},"name":"Henry St. Ale House"} +,{"_id":{"$oid":"55cba2476c522cafdb053ff7"},"location":{"coordinates":[-73.9817238,40.7599885],"type":"Point"},"name":"Sushiden"} +,{"_id":{"$oid":"55cba2476c522cafdb053ff8"},"location":{"coordinates":[-73.855497,40.751408],"type":"Point"},"name":"Timmy'S Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb053ff9"},"location":{"coordinates":[-73.9912525,40.7607556],"type":"Point"},"name":"Bali Nusa Indonesian Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb053ffa"},"location":{"coordinates":[-73.9729466,40.7494832],"type":"Point"},"name":"Cibo"} +,{"_id":{"$oid":"55cba2476c522cafdb053ffb"},"location":{"coordinates":[-73.99563440000001,40.7215332],"type":"Point"},"name":"Lombardi'S"} +,{"_id":{"$oid":"55cba2476c522cafdb053ffc"},"location":{"coordinates":[-73.98373289999999,40.69341379999999],"type":"Point"},"name":"Jp Morgan Chase Bank Cafeteria"} +,{"_id":{"$oid":"55cba2476c522cafdb053ffd"},"location":{"coordinates":[-73.8574339,40.8927702],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb053ffe"},"location":{"coordinates":[-74.0890536,40.5891025],"type":"Point"},"name":"Rab'S Country Lane"} +,{"_id":{"$oid":"55cba2476c522cafdb053fff"},"location":{"coordinates":[-73.99784799999999,40.734672],"type":"Point"},"name":"Piadina Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054000"},"location":{"coordinates":[-73.794746,40.686768],"type":"Point"},"name":"Unforgettable Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb054001"},"location":{"coordinates":[-73.9933113,40.7478417],"type":"Point"},"name":"The Triple Crown"} +,{"_id":{"$oid":"55cba2476c522cafdb054002"},"location":{"coordinates":[-73.95608,40.650753],"type":"Point"},"name":"Wood Bine Caterers"} +,{"_id":{"$oid":"55cba2476c522cafdb054003"},"location":{"coordinates":[-73.9243132,40.7565223],"type":"Point"},"name":"J \u0026 M Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb054004"},"location":{"coordinates":[-73.8624059,40.749405],"type":"Point"},"name":"Americas Restorante"} +,{"_id":{"$oid":"55cba2476c522cafdb054005"},"location":{"coordinates":[-73.97930099999999,40.7571436],"type":"Point"},"name":"Blake \u0026 Todd"} +,{"_id":{"$oid":"55cba2476c522cafdb054006"},"location":{"coordinates":[-73.9764479,40.7620314],"type":"Point"},"name":"Michael'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054007"},"location":{"coordinates":[-74.0018108,40.7287179],"type":"Point"},"name":"New York Rifle Club"} +,{"_id":{"$oid":"55cba2476c522cafdb054008"},"location":{"coordinates":[-73.9686411,40.76513449999999],"type":"Point"},"name":"Colony Club"} +,{"_id":{"$oid":"55cba2476c522cafdb054009"},"location":{"coordinates":[-73.97731999999999,40.759653],"type":"Point"},"name":"Womens Natl. Republican Club"} +,{"_id":{"$oid":"55cba2476c522cafdb05400a"},"location":{"coordinates":[-73.9810658,40.7546367],"type":"Point"},"name":"The Century Association"} +,{"_id":{"$oid":"55cba2476c522cafdb05400b"},"location":{"coordinates":[-73.9681307,40.7690148],"type":"Point"},"name":"Regency Whist Club"} +,{"_id":{"$oid":"55cba2476c522cafdb05400c"},"location":{"coordinates":[-73.982706,40.755661],"type":"Point"},"name":"Harvard Club"} +,{"_id":{"$oid":"55cba2476c522cafdb05400d"},"location":{"coordinates":[-73.9632744,40.7544774],"type":"Point"},"name":"The River Club"} +,{"_id":{"$oid":"55cba2476c522cafdb05400e"},"location":{"coordinates":[-73.972492,40.760894],"type":"Point"},"name":"Friars National Assoc."} +,{"_id":{"$oid":"55cba2476c522cafdb05400f"},"location":{"coordinates":[-73.9646669,40.7691301],"type":"Point"},"name":"Union Club Of City Of New York"} +,{"_id":{"$oid":"55cba2476c522cafdb054010"},"location":{"coordinates":[-73.9590059,40.7757388],"type":"Point"},"name":"New York Jr. League"} +,{"_id":{"$oid":"55cba2476c522cafdb054011"},"location":{"coordinates":[-73.9714139,40.7659585],"type":"Point"},"name":"Knickerbocker Club"} +,{"_id":{"$oid":"55cba2476c522cafdb054012"},"location":{"coordinates":[-74.0112941,40.7032931],"type":"Point"},"name":"Anglers Club Of New York"} +,{"_id":{"$oid":"55cba2476c522cafdb054013"},"location":{"coordinates":[-74.0081545,40.7067097],"type":"Point"},"name":"Down Town Association"} +,{"_id":{"$oid":"55cba2476c522cafdb054014"},"location":{"coordinates":[-73.82749799999999,40.8532719],"type":"Point"},"name":"Villa Barone"} +,{"_id":{"$oid":"55cba2476c522cafdb054015"},"location":{"coordinates":[-73.9806258,40.7492531],"type":"Point"},"name":"The Union League Club"} +,{"_id":{"$oid":"55cba2476c522cafdb054016"},"location":{"coordinates":[-73.96894800000001,40.768529],"type":"Point"},"name":"Lotos Club Grill Room"} +,{"_id":{"$oid":"55cba2476c522cafdb054017"},"location":{"coordinates":[-73.9860597,40.7431194],"type":"Point"},"name":"Madison Square"} +,{"_id":{"$oid":"55cba2476c522cafdb054018"},"location":{"coordinates":[-73.9774365,40.7539873],"type":"Point"},"name":"Yale Club"} +,{"_id":{"$oid":"55cba2476c522cafdb054019"},"location":{"coordinates":[-73.7890737,40.8434322],"type":"Point"},"name":"Stuyvesant Yacht Club"} +,{"_id":{"$oid":"55cba2476c522cafdb05401a"},"location":{"coordinates":[-73.9110003,40.9033392],"type":"Point"},"name":"Riverdale Yacht Club"} +,{"_id":{"$oid":"55cba2476c522cafdb05401b"},"location":{"coordinates":[-73.9629278,40.7791655],"type":"Point"},"name":"Metropolitan Museum Employee Cafeteria"} +,{"_id":{"$oid":"55cba2476c522cafdb05401c"},"location":{"coordinates":[-73.9971942,40.7540962],"type":"Point"},"name":"The Webster Apartments"} +,{"_id":{"$oid":"55cba2476c522cafdb05401d"},"location":{"coordinates":[-74.08587059999999,40.6011805],"type":"Point"},"name":"Island Chateau"} +,{"_id":{"$oid":"55cba2476c522cafdb05401e"},"location":{"coordinates":[-73.9755498,40.76125469999999],"type":"Point"},"name":"The University Club"} +,{"_id":{"$oid":"55cba2476c522cafdb05401f"},"location":{"coordinates":[-73.9755498,40.76125469999999],"type":"Point"},"name":"The University Club"} +,{"_id":{"$oid":"55cba2476c522cafdb054020"},"location":{"coordinates":[-73.912215,40.776869],"type":"Point"},"name":"Astoria Bagel Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb054021"},"location":{"coordinates":[-87.86567699999999,42.61150920000001],"type":"Point"},"name":"Di Luvio'S Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb054022"},"location":{"coordinates":[-73.97198209999999,40.764464],"type":"Point"},"name":"Harmonie Club"} +,{"_id":{"$oid":"55cba2476c522cafdb054023"},"location":{"coordinates":[-73.96784099999999,40.76997100000001],"type":"Point"},"name":"Columbus Citizens Foundation"} +,{"_id":{"$oid":"55cba2476c522cafdb054024"},"location":{"coordinates":[-73.923354,40.6193776],"type":"Point"},"name":"Glen Terrace"} +,{"_id":{"$oid":"55cba2476c522cafdb054025"},"location":{"coordinates":[-73.8077193,40.7005139],"type":"Point"},"name":"Cafeteria- Lirr Employees"} +,{"_id":{"$oid":"55cba2476c522cafdb054026"},"location":{"coordinates":[-73.7822056,40.6434612],"type":"Point"},"name":"Air India Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb054027"},"location":{"coordinates":[-73.9755498,40.76125469999999],"type":"Point"},"name":"The Tap Room"} +,{"_id":{"$oid":"55cba2476c522cafdb054028"},"location":{"coordinates":[-73.9755498,40.76125469999999],"type":"Point"},"name":"The University Club"} +,{"_id":{"$oid":"55cba2476c522cafdb054029"},"location":{"coordinates":[-73.9749375,40.7522452],"type":"Point"},"name":"Simpson Thacher And Bartlet Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05402a"},"location":{"coordinates":[-74.0109533,40.7096139],"type":"Point"},"name":"Cleary Gottlieb"} +,{"_id":{"$oid":"55cba2476c522cafdb05402b"},"location":{"coordinates":[-73.9787406,40.7611474],"type":"Point"},"name":"Black Rock Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05402c"},"location":{"coordinates":[-73.7349437,40.7174786],"type":"Point"},"name":"Antun'S"} +,{"_id":{"$oid":"55cba2476c522cafdb05402d"},"location":{"coordinates":[-73.9501963,40.7237308],"type":"Point"},"name":"Princess Manor"} +,{"_id":{"$oid":"55cba2476c522cafdb05402e"},"location":{"coordinates":[-73.922226,40.7276291],"type":"Point"},"name":"S.M.R Restaurant Services"} +,{"_id":{"$oid":"55cba2476c522cafdb05402f"},"location":{"coordinates":[-74.0116385,40.707491],"type":"Point"},"name":"Bank Of New York Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054030"},"location":{"coordinates":[-74.01231039999999,40.7143002],"type":"Point"},"name":"Cafe 101 16Th Floor Cafeteria"} +,{"_id":{"$oid":"55cba2476c522cafdb054031"},"location":{"coordinates":[-73.989637,40.769262],"type":"Point"},"name":"Cbs Employee Cafeteria"} +,{"_id":{"$oid":"55cba2476c522cafdb054032"},"location":{"coordinates":[-73.97395569999999,40.7635384],"type":"Point"},"name":"P.S. Gourmet (Cafe On 8)"} +,{"_id":{"$oid":"55cba2476c522cafdb054033"},"location":{"coordinates":[-73.9801263,40.7616971],"type":"Point"},"name":"Credit Agricole"} +,{"_id":{"$oid":"55cba2476c522cafdb054034"},"location":{"coordinates":[-73.9818651,40.7337096],"type":"Point"},"name":"Good Shepherd Services"} +,{"_id":{"$oid":"55cba2476c522cafdb054035"},"location":{"coordinates":[-90.1910491,38.6144575],"type":"Point"},"name":"City College Cafeteria"} +,{"_id":{"$oid":"55cba2476c522cafdb054036"},"location":{"coordinates":[-73.89954829999999,40.8164378],"type":"Point"},"name":"Ambassador Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb054037"},"location":{"coordinates":[-73.9758568,40.7544956],"type":"Point"},"name":"Ing Forman Selz"} +,{"_id":{"$oid":"55cba2476c522cafdb054038"},"location":{"coordinates":[-73.9866514,40.7620624],"type":"Point"},"name":"Cravath Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054039"},"location":{"coordinates":[-73.9836468,40.7559068],"type":"Point"},"name":"Patterson Employee Cafeteria"} +,{"_id":{"$oid":"55cba2476c522cafdb05403a"},"location":{"coordinates":[-73.9837606,40.7608268],"type":"Point"},"name":"Morgan Stanley Cafeteria"} +,{"_id":{"$oid":"55cba2476c522cafdb05403b"},"location":{"coordinates":[-73.9741793,40.7575374],"type":"Point"},"name":"Mutual Of America"} +,{"_id":{"$oid":"55cba2476c522cafdb05403c"},"location":{"coordinates":[-73.9793564,40.7589426],"type":"Point"},"name":"Culinart Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05403d"},"location":{"coordinates":[-74.15565029999999,40.5644155],"type":"Point"},"name":"Holtermann'S Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb05403e"},"location":{"coordinates":[-73.94741479999999,40.6333318],"type":"Point"},"name":"Lords Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb05403f"},"location":{"coordinates":[-73.98171889999999,40.7413831],"type":"Point"},"name":"La Delice Pastry Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb054040"},"location":{"coordinates":[-74.07979739999999,40.5987581],"type":"Point"},"name":"Buono Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb054041"},"location":{"coordinates":[-73.911136,40.88611299999999],"type":"Point"},"name":"Bagel Corner"} +,{"_id":{"$oid":"55cba2476c522cafdb054042"},"location":{"coordinates":[-73.94847,40.777599],"type":"Point"},"name":"Glaser'S Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb054043"},"location":{"coordinates":[-73.98174999999999,40.7552949],"type":"Point"},"name":"The Penn Club"} +,{"_id":{"$oid":"55cba2476c522cafdb054044"},"location":{"coordinates":[-73.9793564,40.7589426],"type":"Point"},"name":"Lazard Freres"} +,{"_id":{"$oid":"55cba2476c522cafdb054045"},"location":{"coordinates":[-73.85965399999999,40.888617],"type":"Point"},"name":"Kingston Tropical Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb054046"},"location":{"coordinates":[-73.9309557,40.6185564],"type":"Point"},"name":"Aliotta Bake Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb054047"},"location":{"coordinates":[-73.9503455,40.6606412],"type":"Point"},"name":"Allan'S Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb054048"},"location":{"coordinates":[-73.8309079,40.6846212],"type":"Point"},"name":"Greenwood Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb054049"},"location":{"coordinates":[-73.9149362,40.8333583],"type":"Point"},"name":"Concourse Jamaican Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb05404a"},"location":{"coordinates":[-73.902545,40.74588300000001],"type":"Point"},"name":"V \u0026 V Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb05404b"},"location":{"coordinates":[-73.831687,40.7149787],"type":"Point"},"name":"Andre'S Hungarian"} +,{"_id":{"$oid":"55cba2476c522cafdb05404c"},"location":{"coordinates":[-73.97729919999999,40.7524958],"type":"Point"},"name":"Zaro'S Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb05404d"},"location":{"coordinates":[-73.9637801,40.8036283],"type":"Point"},"name":"Hungarian Pastry Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb05404e"},"location":{"coordinates":[-73.8851025,40.8541951],"type":"Point"},"name":"Artuso Pastry Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb05404f"},"location":{"coordinates":[-73.9234069,40.7014034],"type":"Point"},"name":"Circo Pastry Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb054050"},"location":{"coordinates":[-73.8107435,40.7313285],"type":"Point"},"name":"Bagels Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb054051"},"location":{"coordinates":[-73.86009279999999,40.8879078],"type":"Point"},"name":"Champion Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb054052"},"location":{"coordinates":[-73.9588179,40.7643428],"type":"Point"},"name":"Bagel Works"} +,{"_id":{"$oid":"55cba2476c522cafdb054053"},"location":{"coordinates":[-73.8945952,40.67563519999999],"type":"Point"},"name":"Mrs. Maxwell'S Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb054054"},"location":{"coordinates":[-73.86267,40.884484],"type":"Point"},"name":"Al Cholo Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb054055"},"location":{"coordinates":[-73.7774489,40.6795188],"type":"Point"},"name":"O.B'S Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb054056"},"location":{"coordinates":[-74.127349,40.612969],"type":"Point"},"name":"Alfonso'S Pastry Shoppe"} +,{"_id":{"$oid":"55cba2476c522cafdb054057"},"location":{"coordinates":[-73.9991491,40.7165692],"type":"Point"},"name":"Lung Moon Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb054058"},"location":{"coordinates":[-73.9095432,40.88544479999999],"type":"Point"},"name":"Mother'S Bake Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb054059"},"location":{"coordinates":[-73.9477753,40.63385239999999],"type":"Point"},"name":"Angel Flakes Patties"} +,{"_id":{"$oid":"55cba2476c522cafdb05405a"},"location":{"coordinates":[-73.9539362,40.6107492],"type":"Point"},"name":"Highway Bagels"} +,{"_id":{"$oid":"55cba2476c522cafdb05405b"},"location":{"coordinates":[-73.9403713,40.7980917],"type":"Point"},"name":"Capri Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb05405c"},"location":{"coordinates":[-74.1434262,40.6246952],"type":"Point"},"name":"Renato'S Pastry Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb05405d"},"location":{"coordinates":[-73.8406239,40.6603079],"type":"Point"},"name":"Pasticceria La Torre"} +,{"_id":{"$oid":"55cba2476c522cafdb05405e"},"location":{"coordinates":[-73.92465399999999,40.7394716],"type":"Point"},"name":"Nita'S European Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb05405f"},"location":{"coordinates":[-74.1305762,40.6129841],"type":"Point"},"name":"The Cake Chef"} +,{"_id":{"$oid":"55cba2476c522cafdb054060"},"location":{"coordinates":[-73.9971473,40.71819740000001],"type":"Point"},"name":"Manna House"} +,{"_id":{"$oid":"55cba2476c522cafdb054061"},"location":{"coordinates":[-73.91824199999999,40.80744500000001],"type":"Point"},"name":"Franco Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb054062"},"location":{"coordinates":[-73.9041403,40.7217339],"type":"Point"},"name":"Russo'S Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb054063"},"location":{"coordinates":[-73.9968312,40.7126429],"type":"Point"},"name":"Manna One Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb054064"},"location":{"coordinates":[-73.990218,40.7612],"type":"Point"},"name":"Amy'S Bread"} +,{"_id":{"$oid":"55cba2476c522cafdb054065"},"location":{"coordinates":[-73.9938095,40.7135376],"type":"Point"},"name":"Manna House Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb054066"},"location":{"coordinates":[-73.8891952,40.8269787],"type":"Point"},"name":"Biarritz Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb054067"},"location":{"coordinates":[-73.8495683,40.6942036],"type":"Point"},"name":"Paneorama Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb054068"},"location":{"coordinates":[-73.84331019999999,40.8894376],"type":"Point"},"name":"Jackie'S West Indian Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb054069"},"location":{"coordinates":[-73.993678,40.601558],"type":"Point"},"name":"Bagel Bazaar"} +,{"_id":{"$oid":"55cba2476c522cafdb05406a"},"location":{"coordinates":[-73.7467025,40.6959944],"type":"Point"},"name":"Patmar Bake Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb05406b"},"location":{"coordinates":[-73.734427,40.71318],"type":"Point"},"name":"Pate'S Jeanty"} +,{"_id":{"$oid":"55cba2476c522cafdb05406c"},"location":{"coordinates":[-73.9546917,40.7688396],"type":"Point"},"name":"Creative Cakes"} +,{"_id":{"$oid":"55cba2476c522cafdb05406d"},"location":{"coordinates":[-73.95202499999999,40.59904299999999],"type":"Point"},"name":"Vito'S Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb05406e"},"location":{"coordinates":[-73.86702149999999,40.74953439999999],"type":"Point"},"name":"Apollo Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb05406f"},"location":{"coordinates":[-73.83176329999999,40.7068067],"type":"Point"},"name":"Baker'S Dozen Bagel"} +,{"_id":{"$oid":"55cba2476c522cafdb054070"},"location":{"coordinates":[-73.75904349999999,40.7406105],"type":"Point"},"name":"Bagel Shoppe"} +,{"_id":{"$oid":"55cba2476c522cafdb054071"},"location":{"coordinates":[-73.9574808,40.7183584],"type":"Point"},"name":"Vittoria Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb054072"},"location":{"coordinates":[-73.9871606,40.7580922],"type":"Point"},"name":"Shubert Theater"} +,{"_id":{"$oid":"55cba2476c522cafdb054073"},"location":{"coordinates":[-73.9882148,40.7584004],"type":"Point"},"name":"Majestic Theater"} +,{"_id":{"$oid":"55cba2476c522cafdb054074"},"location":{"coordinates":[-73.98772579999999,40.7587254],"type":"Point"},"name":"Bernard B Jacobs Theater"} +,{"_id":{"$oid":"55cba2476c522cafdb054075"},"location":{"coordinates":[-73.98671209999999,40.7584367],"type":"Point"},"name":"Booth Theater"} +,{"_id":{"$oid":"55cba2476c522cafdb054076"},"location":{"coordinates":[-73.9872318,40.7581077],"type":"Point"},"name":"Broadhurst Theater"} +,{"_id":{"$oid":"55cba2476c522cafdb054077"},"location":{"coordinates":[-73.983583,40.76174839999999],"type":"Point"},"name":"Winter Garden Theater"} +,{"_id":{"$oid":"55cba2476c522cafdb054078"},"location":{"coordinates":[-73.9872966,40.7588493],"type":"Point"},"name":"Imperial Theatre"} +,{"_id":{"$oid":"55cba2476c522cafdb054079"},"location":{"coordinates":[-73.98322139999999,40.76321120000001],"type":"Point"},"name":"Broadway Theatre"} +,{"_id":{"$oid":"55cba2476c522cafdb05407a"},"location":{"coordinates":[-73.9873168,40.7584637],"type":"Point"},"name":"Schoenfield"} +,{"_id":{"$oid":"55cba2476c522cafdb05407b"},"location":{"coordinates":[-73.9827363,40.7719905],"type":"Point"},"name":"Lincoln Plaza Cinemas"} +,{"_id":{"$oid":"55cba2476c522cafdb05407c"},"location":{"coordinates":[-74.1128499,40.5719006],"type":"Point"},"name":"Hidden Cottage"} +,{"_id":{"$oid":"55cba2476c522cafdb05407d"},"location":{"coordinates":[-73.9849698,40.76249730000001],"type":"Point"},"name":"Gershwin Theatre"} +,{"_id":{"$oid":"55cba2476c522cafdb05407e"},"location":{"coordinates":[-74.0006087,40.742755],"type":"Point"},"name":"The Joyce Theater"} +,{"_id":{"$oid":"55cba2476c522cafdb05407f"},"location":{"coordinates":[-73.9860017,40.7578273],"type":"Point"},"name":"Minskoff Theater"} +,{"_id":{"$oid":"55cba2476c522cafdb054080"},"location":{"coordinates":[-73.98435289999999,40.7727501],"type":"Point"},"name":"Walter Reade Theater"} +,{"_id":{"$oid":"55cba2476c522cafdb054081"},"location":{"coordinates":[-73.9883119,40.755487],"type":"Point"},"name":"Nederlander Theater Ba"} +,{"_id":{"$oid":"55cba2476c522cafdb054082"},"location":{"coordinates":[-73.9866977,40.759012],"type":"Point"},"name":"Richard Rogers Theatre"} +,{"_id":{"$oid":"55cba2476c522cafdb054083"},"location":{"coordinates":[-73.9862536,40.7585799],"type":"Point"},"name":"Marquis Theater"} +,{"_id":{"$oid":"55cba2476c522cafdb054084"},"location":{"coordinates":[-73.98607919999999,40.7591861],"type":"Point"},"name":"Lunt Fontanne Theater"} +,{"_id":{"$oid":"55cba2476c522cafdb054085"},"location":{"coordinates":[-73.9869032,40.7599244],"type":"Point"},"name":"Brooks Atkinson Theater"} +,{"_id":{"$oid":"55cba2476c522cafdb054086"},"location":{"coordinates":[-73.9860597,40.7431194],"type":"Point"},"name":"Cafe Madison"} +,{"_id":{"$oid":"55cba2476c522cafdb054087"},"location":{"coordinates":[-73.8310765,40.6849728],"type":"Point"},"name":"Roys Rest \u0026 Sports Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054088"},"location":{"coordinates":[-73.88906899999999,40.863796],"type":"Point"},"name":"El Vaquero Barras"} +,{"_id":{"$oid":"55cba2476c522cafdb054089"},"location":{"coordinates":[-73.9991637,40.75368539999999],"type":"Point"},"name":"Don Pepis Delicatessen"} +,{"_id":{"$oid":"55cba2476c522cafdb05408a"},"location":{"coordinates":[-73.9756349,40.6355631],"type":"Point"},"name":"Randazzo Pizza Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05408b"},"location":{"coordinates":[-73.9761482,40.75499569999999],"type":"Point"},"name":"Devon \u0026 Blakely"} +,{"_id":{"$oid":"55cba2476c522cafdb05408c"},"location":{"coordinates":[-73.979699,40.77623639999999],"type":"Point"},"name":"The Muffins Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb05408d"},"location":{"coordinates":[-73.94524,40.790225],"type":"Point"},"name":"La Isla Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05408e"},"location":{"coordinates":[-73.8929629,40.8601605],"type":"Point"},"name":"China Wok Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb05408f"},"location":{"coordinates":[-76.878256,40.26205],"type":"Point"},"name":"Zaro'S Bread Basket"} +,{"_id":{"$oid":"55cba2476c522cafdb054090"},"location":{"coordinates":[-74.20658449999999,40.54289199999999],"type":"Point"},"name":"Woodrow Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb054091"},"location":{"coordinates":[-73.9941624,40.6683183],"type":"Point"},"name":"Dunkin' Donuts/Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb054092"},"location":{"coordinates":[-74.0134539,40.7076612],"type":"Point"},"name":"Tajin Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054093"},"location":{"coordinates":[-73.781813,40.712748],"type":"Point"},"name":"Roti Corner Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054094"},"location":{"coordinates":[-73.999501,40.7348987],"type":"Point"},"name":"Cafe Asean"} +,{"_id":{"$oid":"55cba2476c522cafdb054095"},"location":{"coordinates":[-73.9826114,40.7494539],"type":"Point"},"name":"The Ginger Man"} +,{"_id":{"$oid":"55cba2476c522cafdb054096"},"location":{"coordinates":[-73.99881990000002,40.7285861],"type":"Point"},"name":"Silver Spurs/Molcajate Taqueria"} +,{"_id":{"$oid":"55cba2476c522cafdb054097"},"location":{"coordinates":[-73.9899306,40.7304421],"type":"Point"},"name":"The Central Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054098"},"location":{"coordinates":[-73.99203609999999,40.7367938],"type":"Point"},"name":"Little Sal'S Italiano"} +,{"_id":{"$oid":"55cba2476c522cafdb054099"},"location":{"coordinates":[-73.96093119999999,40.8064211],"type":"Point"},"name":"Hamilton Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb05409a"},"location":{"coordinates":[-73.9888977,40.7363885],"type":"Point"},"name":"Trevi Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb05409b"},"location":{"coordinates":[-73.989578,40.7129199],"type":"Point"},"name":"El Castillo De Madison"} +,{"_id":{"$oid":"55cba2476c522cafdb05409c"},"location":{"coordinates":[-73.84917670000002,40.5784669],"type":"Point"},"name":"Plum Tomatoes Pizzeria \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05409d"},"location":{"coordinates":[-73.99536239999999,40.6454641],"type":"Point"},"name":"Vincent'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb05409e"},"location":{"coordinates":[-73.90503799999999,40.812633],"type":"Point"},"name":"Pitusa Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb05409f"},"location":{"coordinates":[-73.9869973,40.7359131],"type":"Point"},"name":"Cibar - Lady Mendl'S Tea Salon"} +,{"_id":{"$oid":"55cba2476c522cafdb0540a0"},"location":{"coordinates":[-73.834012,40.683833],"type":"Point"},"name":"Gemini'S Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb0540a1"},"location":{"coordinates":[-73.99582199999999,40.743407],"type":"Point"},"name":"Restivo Ristorante"} +,{"_id":{"$oid":"55cba2476c522cafdb0540a2"},"location":{"coordinates":[-73.98368099999999,40.742097],"type":"Point"},"name":"I Trulli Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0540a3"},"location":{"coordinates":[-74.034098,40.61513],"type":"Point"},"name":"Kitty Kiernans"} +,{"_id":{"$oid":"55cba2476c522cafdb0540a4"},"location":{"coordinates":[-73.9587446,40.7644629],"type":"Point"},"name":"Pizza Park"} +,{"_id":{"$oid":"55cba2476c522cafdb0540a5"},"location":{"coordinates":[-73.942723,40.793715],"type":"Point"},"name":"Domino'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0540a6"},"location":{"coordinates":[-80.3876219,27.637687],"type":"Point"},"name":"Big New York Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb0540a7"},"location":{"coordinates":[-73.9910292,40.7372614],"type":"Point"},"name":"Rainbow Falafel"} +,{"_id":{"$oid":"55cba2476c522cafdb0540a8"},"location":{"coordinates":[-73.9758564,40.74532689999999],"type":"Point"},"name":"Notaro Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0540a9"},"location":{"coordinates":[-74.1606584,40.5452578],"type":"Point"},"name":"Alfonso'S Pastry Shoppe"} +,{"_id":{"$oid":"55cba2476c522cafdb0540aa"},"location":{"coordinates":[-92.7292446,41.7461746],"type":"Point"},"name":"Village Yogurt"} +,{"_id":{"$oid":"55cba2476c522cafdb0540ab"},"location":{"coordinates":[-73.9658571,40.8061666],"type":"Point"},"name":"Mill Korean Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0540ac"},"location":{"coordinates":[-73.958012,40.65065500000001],"type":"Point"},"name":"Brooklyn Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0540ad"},"location":{"coordinates":[-73.9224091,40.7709406],"type":"Point"},"name":"The Astoria World Manor"} +,{"_id":{"$oid":"55cba2476c522cafdb0540ae"},"location":{"coordinates":[-73.9895227,40.7671312],"type":"Point"},"name":"Cafe Ole Usa"} +,{"_id":{"$oid":"55cba2476c522cafdb0540af"},"location":{"coordinates":[-74.0066803,40.7115866],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0540b0"},"location":{"coordinates":[-73.87808799999999,40.8865392],"type":"Point"},"name":"Woodlawn Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0540b1"},"location":{"coordinates":[-73.998305,40.744594],"type":"Point"},"name":"Barracuda Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0540b2"},"location":{"coordinates":[-74.01303759999999,40.70661],"type":"Point"},"name":"China Chalet"} +,{"_id":{"$oid":"55cba2476c522cafdb0540b3"},"location":{"coordinates":[-74.00237299999999,40.726056],"type":"Point"},"name":"Blue Ribbon Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb0540b4"},"location":{"coordinates":[-73.9232263,40.65249710000001],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0540b5"},"location":{"coordinates":[-73.9020823,40.8461655],"type":"Point"},"name":"White Castle"} +,{"_id":{"$oid":"55cba2476c522cafdb0540b6"},"location":{"coordinates":[-74.0015999,40.740631],"type":"Point"},"name":"Chelsea Trattoria"} +,{"_id":{"$oid":"55cba2476c522cafdb0540b7"},"location":{"coordinates":[-73.96277309999999,40.7691995],"type":"Point"},"name":"Bella Blu"} +,{"_id":{"$oid":"55cba2476c522cafdb0540b8"},"location":{"coordinates":[-73.97729919999999,40.7524958],"type":"Point"},"name":"Zaro'S Bread Basket"} +,{"_id":{"$oid":"55cba2476c522cafdb0540b9"},"location":{"coordinates":[-73.9562358,40.7017358],"type":"Point"},"name":"Bais Rochel"} +,{"_id":{"$oid":"55cba2476c522cafdb0540ba"},"location":{"coordinates":[-73.924914,40.827846],"type":"Point"},"name":"Crown Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb0540bb"},"location":{"coordinates":[-73.9179072,40.7702472],"type":"Point"},"name":"Elias Corner For Fish"} +,{"_id":{"$oid":"55cba2476c522cafdb0540bc"},"location":{"coordinates":[-73.9555058,40.7722815],"type":"Point"},"name":"Doc Watsons"} +,{"_id":{"$oid":"55cba2476c522cafdb0540bd"},"location":{"coordinates":[-73.9778118,40.7561728],"type":"Point"},"name":"Connolly'S Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb0540be"},"location":{"coordinates":[-73.8271018,40.7608378],"type":"Point"},"name":"Tous Les Jours"} +,{"_id":{"$oid":"55cba2476c522cafdb0540bf"},"location":{"coordinates":[-73.9434833,40.70067239999999],"type":"Point"},"name":"Los Angeles Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0540c0"},"location":{"coordinates":[-73.9928879,40.662118],"type":"Point"},"name":"El Continental Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0540c1"},"location":{"coordinates":[-74.0038433,40.7253089],"type":"Point"},"name":"Aqua Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0540c2"},"location":{"coordinates":[-73.9275013,40.6246788],"type":"Point"},"name":"Blue Mountain Restaurant \u0026 Jerk Center"} +,{"_id":{"$oid":"55cba2476c522cafdb0540c3"},"location":{"coordinates":[-73.9726967,40.78610279999999],"type":"Point"},"name":"Firehouse"} +,{"_id":{"$oid":"55cba2476c522cafdb0540c4"},"location":{"coordinates":[-73.9830473,40.764891],"type":"Point"},"name":"Mcgees Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb0540c5"},"location":{"coordinates":[-73.9828471,40.7244201],"type":"Point"},"name":"Ace Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0540c6"},"location":{"coordinates":[-74.131142,40.613148],"type":"Point"},"name":"Burger King"} +,{"_id":{"$oid":"55cba2476c522cafdb0540c7"},"location":{"coordinates":[-73.984409,40.736611],"type":"Point"},"name":"Paddy Maguire'S Ale House"} +,{"_id":{"$oid":"55cba2476c522cafdb0540c8"},"location":{"coordinates":[-73.9980027,40.6227135],"type":"Point"},"name":"B66 Club"} +,{"_id":{"$oid":"55cba2476c522cafdb0540c9"},"location":{"coordinates":[-73.98021000000001,40.7423],"type":"Point"},"name":"Vatan"} +,{"_id":{"$oid":"55cba2476c522cafdb0540ca"},"location":{"coordinates":[-73.97884599999999,40.778065],"type":"Point"},"name":"Arte Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0540cb"},"location":{"coordinates":[-74.01073319999999,40.64446179999999],"type":"Point"},"name":"Piaxtla Es Mexico Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb0540cc"},"location":{"coordinates":[-73.99679189999999,40.7533794],"type":"Point"},"name":"Skylight Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb0540cd"},"location":{"coordinates":[-74.0043037,40.7220205],"type":"Point"},"name":"Soho Grand Hotel"} +,{"_id":{"$oid":"55cba2476c522cafdb0540ce"},"location":{"coordinates":[-74.026513,40.635301],"type":"Point"},"name":"Anopoli Family Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0540cf"},"location":{"coordinates":[-74.008558,40.732037],"type":"Point"},"name":"Creative Edge Caterers"} +,{"_id":{"$oid":"55cba2476c522cafdb0540d0"},"location":{"coordinates":[-73.98979109999999,40.7293427],"type":"Point"},"name":"St. Marks Ale House"} +,{"_id":{"$oid":"55cba2476c522cafdb0540d1"},"location":{"coordinates":[-73.94472499999999,40.7150421],"type":"Point"},"name":"Tony'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0540d2"},"location":{"coordinates":[-73.89565,40.746155],"type":"Point"},"name":"Renee'S Kitchenette"} +,{"_id":{"$oid":"55cba2476c522cafdb0540d3"},"location":{"coordinates":[-73.8830018,40.8812241],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0540d4"},"location":{"coordinates":[-73.9803328,40.7800281],"type":"Point"},"name":"Freddie \u0026 Pepper'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0540d5"},"location":{"coordinates":[-73.9908292,40.7366592],"type":"Point"},"name":"Blue Water Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0540d6"},"location":{"coordinates":[-73.8051716,40.7627509],"type":"Point"},"name":"E-Dah Korean Bbq Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb0540d7"},"location":{"coordinates":[-73.9905823,40.7250089],"type":"Point"},"name":"Anyway Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0540d8"},"location":{"coordinates":[-73.78706799999999,40.8496359],"type":"Point"},"name":"Artie'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0540d9"},"location":{"coordinates":[-73.8285999,40.8324789],"type":"Point"},"name":"Crosstown Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb0540da"},"location":{"coordinates":[-73.9977705,40.7224755],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0540db"},"location":{"coordinates":[-73.9140573,40.6431943],"type":"Point"},"name":"Atlantis Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb0540dc"},"location":{"coordinates":[-74.0063581,40.7194557],"type":"Point"},"name":"The Bubble Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb0540dd"},"location":{"coordinates":[-73.9791599,40.7547039],"type":"Point"},"name":"Azusa Of Japan"} +,{"_id":{"$oid":"55cba2476c522cafdb0540de"},"location":{"coordinates":[-74.15198199999999,40.6009948],"type":"Point"},"name":"Campus Center Cafeteria"} +,{"_id":{"$oid":"55cba2476c522cafdb0540df"},"location":{"coordinates":[-74.15198199999999,40.6009948],"type":"Point"},"name":"Food For Thought Library Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0540e0"},"location":{"coordinates":[-73.9975707,40.7190497],"type":"Point"},"name":"Il Palazzo"} +,{"_id":{"$oid":"55cba2476c522cafdb0540e1"},"location":{"coordinates":[-73.7543013,40.6006613],"type":"Point"},"name":"El Nuevo Ambiente Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0540e2"},"location":{"coordinates":[-73.77652490000001,40.7447857],"type":"Point"},"name":"Blue Bay Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb0540e3"},"location":{"coordinates":[-73.97940419999999,40.7533284],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0540e4"},"location":{"coordinates":[-73.79571990000001,40.7095637],"type":"Point"},"name":"Ramona'S Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0540e5"},"location":{"coordinates":[-73.98302199999999,40.742313],"type":"Point"},"name":"Madras Mahal"} +,{"_id":{"$oid":"55cba2476c522cafdb0540e6"},"location":{"coordinates":[-73.95698399999999,40.775167],"type":"Point"},"name":"Tiramisu Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0540e7"},"location":{"coordinates":[-73.8473396,40.7209905],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0540e8"},"location":{"coordinates":[-73.92766979999999,40.6264459],"type":"Point"},"name":"Topaze Restaurant \u0026 Jerk Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb0540e9"},"location":{"coordinates":[-73.9777007,40.7836064],"type":"Point"},"name":"Al-Dente"} +,{"_id":{"$oid":"55cba2476c522cafdb0540ea"},"location":{"coordinates":[-73.90354359999999,40.7458357],"type":"Point"},"name":"Dunkin' Donuts, Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb0540eb"},"location":{"coordinates":[-73.98157710000001,40.7743109],"type":"Point"},"name":"Nick And Toni'S Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0540ec"},"location":{"coordinates":[-74.1158584,40.6293085],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0540ed"},"location":{"coordinates":[-73.8893286,40.8535484],"type":"Point"},"name":"Catania'S Pizza Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0540ee"},"location":{"coordinates":[-73.9539427,40.775634],"type":"Point"},"name":"Kings Carriage House"} +,{"_id":{"$oid":"55cba2476c522cafdb0540ef"},"location":{"coordinates":[-73.9243706,40.69104799999999],"type":"Point"},"name":"Dunkin' Donuts Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb0540f0"},"location":{"coordinates":[-73.990494,40.7569545],"type":"Point"},"name":"Au Bon Pain"} +,{"_id":{"$oid":"55cba2476c522cafdb0540f1"},"location":{"coordinates":[-73.86273609999999,40.7289403],"type":"Point"},"name":"Rego Park Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0540f2"},"location":{"coordinates":[-73.71909099999999,40.7259045],"type":"Point"},"name":"Bellrose Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb0540f3"},"location":{"coordinates":[-73.9414927,40.8228713],"type":"Point"},"name":"Popeyes Chicken \u0026 Biscuits"} +,{"_id":{"$oid":"55cba2476c522cafdb0540f4"},"location":{"coordinates":[-74.01405249999999,40.7025595],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0540f5"},"location":{"coordinates":[-73.997602,40.762363],"type":"Point"},"name":"Mcquaids Public House"} +,{"_id":{"$oid":"55cba2476c522cafdb0540f6"},"location":{"coordinates":[-73.95516409999999,40.7796708],"type":"Point"},"name":"Starbucks Coffee (Store #7216)"} +,{"_id":{"$oid":"55cba2476c522cafdb0540f7"},"location":{"coordinates":[-92.7320902,41.7461455],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0540f8"},"location":{"coordinates":[-73.8301761,40.8441014],"type":"Point"},"name":"Jimmy Ryan'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0540f9"},"location":{"coordinates":[-73.9498035,40.6505357],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0540fa"},"location":{"coordinates":[-73.9870818,40.7523004],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0540fb"},"location":{"coordinates":[-73.940857,40.805088],"type":"Point"},"name":"Sisters Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb0540fc"},"location":{"coordinates":[-73.8674829,40.850774],"type":"Point"},"name":"Park Billiards"} +,{"_id":{"$oid":"55cba2476c522cafdb0540fd"},"location":{"coordinates":[-73.85222329999999,40.8363612],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0540fe"},"location":{"coordinates":[-73.954453,40.7658971],"type":"Point"},"name":"Food Mart Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb0540ff"},"location":{"coordinates":[-73.813163,40.786781],"type":"Point"},"name":"Shenanigan'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054100"},"location":{"coordinates":[-73.88759139999999,40.8553028],"type":"Point"},"name":"Full Moon Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054101"},"location":{"coordinates":[-73.9835976,40.7621614],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb054102"},"location":{"coordinates":[-73.9840858,40.7669118],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb054103"},"location":{"coordinates":[-73.9476059,40.5888866],"type":"Point"},"name":"The Bras \u0026 Pail Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054104"},"location":{"coordinates":[-73.8280734,40.8775869],"type":"Point"},"name":"Capri Ii Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054105"},"location":{"coordinates":[-74.00489689999999,40.7419343],"type":"Point"},"name":"Amy'S Bread"} +,{"_id":{"$oid":"55cba2476c522cafdb054106"},"location":{"coordinates":[-73.9123338,40.7744498],"type":"Point"},"name":"Los Amigos Mexican Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054107"},"location":{"coordinates":[-73.9677397,40.7917796],"type":"Point"},"name":"Daniello'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb054108"},"location":{"coordinates":[-73.96936149999999,40.7658603],"type":"Point"},"name":"Club Macanudo (Cigar Bar)"} +,{"_id":{"$oid":"55cba2476c522cafdb054109"},"location":{"coordinates":[-74.0051398,40.7281648],"type":"Point"},"name":"Deb'S"} +,{"_id":{"$oid":"55cba2476c522cafdb05410a"},"location":{"coordinates":[-73.988011,40.76420299999999],"type":"Point"},"name":"Island Burgers And Shakes"} +,{"_id":{"$oid":"55cba2476c522cafdb05410b"},"location":{"coordinates":[-73.9472849,40.775231],"type":"Point"},"name":"Arturo'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05410c"},"location":{"coordinates":[-90.6220568,37.76564],"type":"Point"},"name":"Diwan-E-Khaas"} +,{"_id":{"$oid":"55cba2476c522cafdb05410d"},"location":{"coordinates":[-73.9502129,40.7277307],"type":"Point"},"name":"Pit Stop Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05410e"},"location":{"coordinates":[-74.010465,40.7198789],"type":"Point"},"name":"Tribeca Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb05410f"},"location":{"coordinates":[-74.1504413,40.5493122],"type":"Point"},"name":"Grand Plaza"} +,{"_id":{"$oid":"55cba2476c522cafdb054110"},"location":{"coordinates":[-73.9758568,40.7544956],"type":"Point"},"name":"Bobby Van'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054111"},"location":{"coordinates":[-73.980701,40.756994],"type":"Point"},"name":"Via Italia Ristorante"} +,{"_id":{"$oid":"55cba2476c522cafdb054112"},"location":{"coordinates":[-73.9923517,40.7272403],"type":"Point"},"name":"Swift"} +,{"_id":{"$oid":"55cba2476c522cafdb054113"},"location":{"coordinates":[-74.1608071,40.5444791],"type":"Point"},"name":"Perkins Family Restaurant \u0026 Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb054114"},"location":{"coordinates":[-73.82609699999999,40.8687177],"type":"Point"},"name":"Dragon City"} +,{"_id":{"$oid":"55cba2476c522cafdb054115"},"location":{"coordinates":[-73.89763049999999,40.7082785],"type":"Point"},"name":"Minitalia Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb054116"},"location":{"coordinates":[-74.02590599999999,40.6209702],"type":"Point"},"name":"Your Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb054117"},"location":{"coordinates":[-74.00947049999999,40.7045563],"type":"Point"},"name":"Cafe Bravo"} +,{"_id":{"$oid":"55cba2476c522cafdb054118"},"location":{"coordinates":[-73.7807163,40.7291146],"type":"Point"},"name":"Romeo'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb054119"},"location":{"coordinates":[-73.9815467,40.7584118],"type":"Point"},"name":"Wendy'S"} +,{"_id":{"$oid":"55cba2476c522cafdb05411a"},"location":{"coordinates":[-73.97852100000001,40.729192],"type":"Point"},"name":"Mona'S"} +,{"_id":{"$oid":"55cba2476c522cafdb05411b"},"location":{"coordinates":[-73.90625829999999,40.7732257],"type":"Point"},"name":"The Bagel House"} +,{"_id":{"$oid":"55cba2476c522cafdb05411c"},"location":{"coordinates":[-73.8096901,40.72001729999999],"type":"Point"},"name":"Khyber Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05411d"},"location":{"coordinates":[-74.010069,40.7147337],"type":"Point"},"name":"Corner Gourmet Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb05411e"},"location":{"coordinates":[-73.8806669,40.8283447],"type":"Point"},"name":"Nacional Bakery #1"} +,{"_id":{"$oid":"55cba2476c522cafdb05411f"},"location":{"coordinates":[-73.968463,40.8003519],"type":"Point"},"name":"Tap-A-Keg"} +,{"_id":{"$oid":"55cba2476c522cafdb054120"},"location":{"coordinates":[-74.01641599999999,40.680196],"type":"Point"},"name":"The Room"} +,{"_id":{"$oid":"55cba2476c522cafdb054121"},"location":{"coordinates":[-74.0011779,40.7411261],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb054122"},"location":{"coordinates":[-73.91178099999999,40.74456],"type":"Point"},"name":"Desseo Night Club"} +,{"_id":{"$oid":"55cba2476c522cafdb054123"},"location":{"coordinates":[-73.9245152,40.8619219],"type":"Point"},"name":"Dyckman Express Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054124"},"location":{"coordinates":[-73.8460571,40.78431080000001],"type":"Point"},"name":"Cascarino'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054125"},"location":{"coordinates":[-73.98350889999999,40.7264835],"type":"Point"},"name":"Odessa"} +,{"_id":{"$oid":"55cba2476c522cafdb054126"},"location":{"coordinates":[-101.8945214,33.5197474],"type":"Point"},"name":"Burger King"} +,{"_id":{"$oid":"55cba2476c522cafdb054127"},"location":{"coordinates":[-74.002764,40.6067589],"type":"Point"},"name":"La Cucina"} +,{"_id":{"$oid":"55cba2476c522cafdb054128"},"location":{"coordinates":[-73.9793577,40.7630705],"type":"Point"},"name":"Circo Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054129"},"location":{"coordinates":[-73.73647799999999,40.769905],"type":"Point"},"name":"Sushi Family"} +,{"_id":{"$oid":"55cba2476c522cafdb05412a"},"location":{"coordinates":[-73.982872,40.76280939999999],"type":"Point"},"name":"Crown Gourmet Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb05412b"},"location":{"coordinates":[-73.9586465,40.8097342],"type":"Point"},"name":"Ajanta India"} +,{"_id":{"$oid":"55cba2476c522cafdb05412c"},"location":{"coordinates":[-73.9874971,40.7267605],"type":"Point"},"name":"Raj Mahal Indian Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05412d"},"location":{"coordinates":[-73.9778724,40.7832795],"type":"Point"},"name":"The Great Burrito Mexican Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb05412e"},"location":{"coordinates":[-73.97490189999999,40.6865219],"type":"Point"},"name":"Brooklyn Moon Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05412f"},"location":{"coordinates":[-73.84007910000001,40.6622634],"type":"Point"},"name":"Gold'S Gym"} +,{"_id":{"$oid":"55cba2476c522cafdb054130"},"location":{"coordinates":[-73.95418889999999,40.7779987],"type":"Point"},"name":"Jacque'S Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054131"},"location":{"coordinates":[-74.0085647,40.6504224],"type":"Point"},"name":"Don Paco Lopez Panderia"} +,{"_id":{"$oid":"55cba2476c522cafdb054132"},"location":{"coordinates":[-73.9604585,40.779157],"type":"Point"},"name":"Giovanni 25"} +,{"_id":{"$oid":"55cba2476c522cafdb054133"},"location":{"coordinates":[-74.0215292,40.6188596],"type":"Point"},"name":"Dyker Park Bagels"} +,{"_id":{"$oid":"55cba2476c522cafdb054134"},"location":{"coordinates":[-73.759912,40.76202199999999],"type":"Point"},"name":"Adria Hotel"} +,{"_id":{"$oid":"55cba2476c522cafdb054135"},"location":{"coordinates":[-73.9966194,40.7433635],"type":"Point"},"name":"Cafe Champignon"} +,{"_id":{"$oid":"55cba2476c522cafdb054136"},"location":{"coordinates":[-73.99258999999999,40.725475],"type":"Point"},"name":"Von"} +,{"_id":{"$oid":"55cba2476c522cafdb054137"},"location":{"coordinates":[-73.9803234,40.779967],"type":"Point"},"name":"Levain Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb054138"},"location":{"coordinates":[-74.20658449999999,40.54289199999999],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054139"},"location":{"coordinates":[-74.0093371,40.7258846],"type":"Point"},"name":"Pao"} +,{"_id":{"$oid":"55cba2476c522cafdb05413a"},"location":{"coordinates":[-73.9840852,40.7268832],"type":"Point"},"name":"St. Dymphna'S"} +,{"_id":{"$oid":"55cba2476c522cafdb05413b"},"location":{"coordinates":[-73.8269031,40.7638912],"type":"Point"},"name":"Kum Gang San"} +,{"_id":{"$oid":"55cba2476c522cafdb05413c"},"location":{"coordinates":[-73.9965239,40.719646],"type":"Point"},"name":"Chiu Hong Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb05413d"},"location":{"coordinates":[-73.88006589999999,40.8285315],"type":"Point"},"name":"New Pabellon De Oro Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05413e"},"location":{"coordinates":[-73.8426987,40.6720191],"type":"Point"},"name":"Aldo'S Ii Pizza And Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05413f"},"location":{"coordinates":[-73.98463480000001,40.7630755],"type":"Point"},"name":"Neil Simon Theatre"} +,{"_id":{"$oid":"55cba2476c522cafdb054140"},"location":{"coordinates":[-73.9720554,40.6765935],"type":"Point"},"name":"Antonio'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054141"},"location":{"coordinates":[-73.9506875,40.6650304],"type":"Point"},"name":"Vee'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054142"},"location":{"coordinates":[-73.95361000000001,40.777196],"type":"Point"},"name":"Trinity Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb054143"},"location":{"coordinates":[-73.8923707,40.7583122],"type":"Point"},"name":"Cassidy'S Ale House"} +,{"_id":{"$oid":"55cba2476c522cafdb054144"},"location":{"coordinates":[-74.1678299,40.577238],"type":"Point"},"name":"Jade Island Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054145"},"location":{"coordinates":[-73.958012,40.65065500000001],"type":"Point"},"name":"La Cabana Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054146"},"location":{"coordinates":[-74.1508741,40.5373436],"type":"Point"},"name":"Portobello Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054147"},"location":{"coordinates":[-73.986654,40.753858],"type":"Point"},"name":"Olive Tree"} +,{"_id":{"$oid":"55cba2476c522cafdb054148"},"location":{"coordinates":[-73.8786336,40.756423],"type":"Point"},"name":"Riazor Blue Tapas Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054149"},"location":{"coordinates":[-73.98608,40.7497601],"type":"Point"},"name":"Anesis Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05414a"},"location":{"coordinates":[-73.9190969,40.6194298],"type":"Point"},"name":"Pinocchios"} +,{"_id":{"$oid":"55cba2476c522cafdb05414b"},"location":{"coordinates":[-73.94095960000001,40.6122338],"type":"Point"},"name":"Nora'S Park Bench Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05414c"},"location":{"coordinates":[-73.9772878,40.671776],"type":"Point"},"name":"Connecticut Muffin"} +,{"_id":{"$oid":"55cba2476c522cafdb05414d"},"location":{"coordinates":[-74.000252,40.7356228],"type":"Point"},"name":"Village Natural"} +,{"_id":{"$oid":"55cba2476c522cafdb05414e"},"location":{"coordinates":[-73.9823852,40.7628592],"type":"Point"},"name":"810 Deli \u0026 Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05414f"},"location":{"coordinates":[-73.8903473,40.8447875],"type":"Point"},"name":"Cosmos Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054150"},"location":{"coordinates":[-73.9797925,40.7565846],"type":"Point"},"name":"Ipanema Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054151"},"location":{"coordinates":[-74.00837299999999,40.716973],"type":"Point"},"name":"Edward'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054152"},"location":{"coordinates":[-73.97160629999999,40.7621879],"type":"Point"},"name":"Four Seasons Hotel"} +,{"_id":{"$oid":"55cba2476c522cafdb054153"},"location":{"coordinates":[-73.97160629999999,40.7621879],"type":"Point"},"name":"Four Seasons Hotel"} +,{"_id":{"$oid":"55cba2476c522cafdb054154"},"location":{"coordinates":[-73.9390066,40.8427157],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054155"},"location":{"coordinates":[-73.9988983,40.6052988],"type":"Point"},"name":"New Ruan'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054156"},"location":{"coordinates":[-73.8577731,40.7364426],"type":"Point"},"name":"Dunkin' Donuts, Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb054157"},"location":{"coordinates":[-73.98830389999999,40.7290695],"type":"Point"},"name":"Bull Mccabes"} +,{"_id":{"$oid":"55cba2476c522cafdb054158"},"location":{"coordinates":[-73.9931119,40.748385],"type":"Point"},"name":"Mustang Harry'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054159"},"location":{"coordinates":[-73.7194389,40.7581113],"type":"Point"},"name":"Towers Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05415a"},"location":{"coordinates":[-73.98758240000001,40.7380466],"type":"Point"},"name":"L'Express"} +,{"_id":{"$oid":"55cba2476c522cafdb05415b"},"location":{"coordinates":[-73.9804412,40.7650133],"type":"Point"},"name":"Red Eye Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb05415c"},"location":{"coordinates":[-73.9727279,40.7928619],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb05415d"},"location":{"coordinates":[-73.9799772,40.7514005],"type":"Point"},"name":"Food Merchants"} +,{"_id":{"$oid":"55cba2476c522cafdb05415e"},"location":{"coordinates":[-73.9449103,40.6508686],"type":"Point"},"name":"Bake And Things Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05415f"},"location":{"coordinates":[-73.9926895,40.7209349],"type":"Point"},"name":"Neuman'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054160"},"location":{"coordinates":[-73.9955219,40.632759],"type":"Point"},"name":"Shemtov Manor"} +,{"_id":{"$oid":"55cba2476c522cafdb054161"},"location":{"coordinates":[-74.2342263,40.5162237],"type":"Point"},"name":"W'S Bar \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054162"},"location":{"coordinates":[-73.82333799999999,40.886056],"type":"Point"},"name":"Bowler Land"} +,{"_id":{"$oid":"55cba2476c522cafdb054163"},"location":{"coordinates":[-74.1094423,40.5795377],"type":"Point"},"name":"The Corner House"} +,{"_id":{"$oid":"55cba2476c522cafdb054164"},"location":{"coordinates":[-73.987833,40.76444499999999],"type":"Point"},"name":"Renaissance Restaurant Bar And Garden Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb054165"},"location":{"coordinates":[-73.9940649,40.7388627],"type":"Point"},"name":"Basta Pasta Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054166"},"location":{"coordinates":[-73.9914442,40.755458],"type":"Point"},"name":"Escuelita Club"} +,{"_id":{"$oid":"55cba2476c522cafdb054167"},"location":{"coordinates":[-73.9845344,40.752736],"type":"Point"},"name":"Appetito Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054168"},"location":{"coordinates":[-73.785422,40.7883967],"type":"Point"},"name":"Bagel Club"} +,{"_id":{"$oid":"55cba2476c522cafdb054169"},"location":{"coordinates":[-73.92434209999999,40.8281502],"type":"Point"},"name":"Feeding Tree Style West Indian Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05416a"},"location":{"coordinates":[-73.9152218,40.7638592],"type":"Point"},"name":"Mini Star Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05416b"},"location":{"coordinates":[-73.7822917,40.7669315],"type":"Point"},"name":"Luigi'S Pizza \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05416c"},"location":{"coordinates":[-74.24814049999999,40.5135104],"type":"Point"},"name":"Towne Deli \u0026 Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05416d"},"location":{"coordinates":[-73.9729897,40.7513679],"type":"Point"},"name":"Sakagura"} +,{"_id":{"$oid":"55cba2476c522cafdb05416e"},"location":{"coordinates":[-73.971248,40.5901629],"type":"Point"},"name":"Cuccios Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb05416f"},"location":{"coordinates":[-73.905188,40.621585],"type":"Point"},"name":"Il Posto"} +,{"_id":{"$oid":"55cba2476c522cafdb054170"},"location":{"coordinates":[-73.85634259999999,40.7376161],"type":"Point"},"name":"Forest Hills Spa"} +,{"_id":{"$oid":"55cba2476c522cafdb054171"},"location":{"coordinates":[-73.925694,40.8663567],"type":"Point"},"name":"Domino'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054172"},"location":{"coordinates":[-73.82020299999999,40.6984054],"type":"Point"},"name":"Nix Mix Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb054173"},"location":{"coordinates":[-74.001914,40.7313345],"type":"Point"},"name":"Le Gigot"} +,{"_id":{"$oid":"55cba2476c522cafdb054174"},"location":{"coordinates":[-73.9204199,40.770395],"type":"Point"},"name":"United Cyprians Of America"} +,{"_id":{"$oid":"55cba2476c522cafdb054175"},"location":{"coordinates":[-73.8950873,40.7009461],"type":"Point"},"name":"Corato Pizza Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb054176"},"location":{"coordinates":[-73.9901259,40.7231435],"type":"Point"},"name":"Yonah Shimmels Knishes"} +,{"_id":{"$oid":"55cba2476c522cafdb054177"},"location":{"coordinates":[-73.92533499999999,40.7685025],"type":"Point"},"name":"Crescent Corner"} +,{"_id":{"$oid":"55cba2476c522cafdb054178"},"location":{"coordinates":[-73.9938361,40.6091317],"type":"Point"},"name":"Mondial Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb054179"},"location":{"coordinates":[-73.97368329999999,40.6141935],"type":"Point"},"name":"Vinnie'S Pizzeria/ Luncheonette"} +,{"_id":{"$oid":"55cba2476c522cafdb05417a"},"location":{"coordinates":[-73.990337,40.637132],"type":"Point"},"name":"Benny'S Famous Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05417b"},"location":{"coordinates":[-73.997162,40.736329],"type":"Point"},"name":"Murray'S Bagels"} +,{"_id":{"$oid":"55cba2476c522cafdb05417c"},"location":{"coordinates":[-73.9077743,40.7737558],"type":"Point"},"name":"Alba'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05417d"},"location":{"coordinates":[-74.00358059999999,40.7317983],"type":"Point"},"name":"Caliente Cab Co"} +,{"_id":{"$oid":"55cba2476c522cafdb05417e"},"location":{"coordinates":[-73.92099999999999,40.776599],"type":"Point"},"name":"Riccardo'S"} +,{"_id":{"$oid":"55cba2476c522cafdb05417f"},"location":{"coordinates":[-73.9901958,40.7412679],"type":"Point"},"name":"City Market Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054180"},"location":{"coordinates":[-73.9626206,40.6349831],"type":"Point"},"name":"Loduca'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054181"},"location":{"coordinates":[-73.98844129999999,40.7482511],"type":"Point"},"name":"Speedy Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb054182"},"location":{"coordinates":[-73.9230394,40.7438359],"type":"Point"},"name":"Ariyoshi Japanese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054183"},"location":{"coordinates":[-73.9892364,40.7538547],"type":"Point"},"name":"Ben'S Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb054184"},"location":{"coordinates":[-73.9189064,40.8654529],"type":"Point"},"name":"Post Billiards Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054185"},"location":{"coordinates":[-73.98289749999999,40.7424602],"type":"Point"},"name":"Pongal Indian Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb054186"},"location":{"coordinates":[-73.9933039,40.7493998],"type":"Point"},"name":"Cafe 31"} +,{"_id":{"$oid":"55cba2476c522cafdb054187"},"location":{"coordinates":[-73.9831695,40.7636381],"type":"Point"},"name":"Hello Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb054188"},"location":{"coordinates":[-74.02161699999999,40.631139],"type":"Point"},"name":"Pc'S Bar And Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb054189"},"location":{"coordinates":[-73.9167757,40.7707967],"type":"Point"},"name":"The Neptune Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb05418a"},"location":{"coordinates":[-73.9749492,40.7594243],"type":"Point"},"name":"Fireside"} +,{"_id":{"$oid":"55cba2476c522cafdb05418b"},"location":{"coordinates":[-73.9617547,40.8139032],"type":"Point"},"name":"Internationalhouse"} +,{"_id":{"$oid":"55cba2476c522cafdb05418c"},"location":{"coordinates":[-73.848495,40.906489],"type":"Point"},"name":"Rio Cobre Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05418d"},"location":{"coordinates":[-73.97279569999999,40.7852237],"type":"Point"},"name":"Prohibition"} +,{"_id":{"$oid":"55cba2476c522cafdb05418e"},"location":{"coordinates":[-73.8549673,40.8548909],"type":"Point"},"name":"Pasta Pasta Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05418f"},"location":{"coordinates":[-73.9418888,40.6001904],"type":"Point"},"name":"Jp'S Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054190"},"location":{"coordinates":[-73.9836866,40.7550567],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb054191"},"location":{"coordinates":[-73.9217386,40.766832],"type":"Point"},"name":"Tastee Corner"} +,{"_id":{"$oid":"55cba2476c522cafdb054192"},"location":{"coordinates":[-73.9877321,40.7619602],"type":"Point"},"name":"Churrascaria Plataforma"} +,{"_id":{"$oid":"55cba2476c522cafdb054193"},"location":{"coordinates":[-73.83939099999999,40.6589699],"type":"Point"},"name":"The Old Time Vincent'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054194"},"location":{"coordinates":[-74.0019169,40.7373179],"type":"Point"},"name":"Starbucks Coffee (Store 7261)"} +,{"_id":{"$oid":"55cba2476c522cafdb054195"},"location":{"coordinates":[-73.99836340000002,40.7422658],"type":"Point"},"name":"G"} +,{"_id":{"$oid":"55cba2476c522cafdb054196"},"location":{"coordinates":[-73.9494191,40.8241099],"type":"Point"},"name":"Sweet Chef Southern Styles Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb054197"},"location":{"coordinates":[-73.91105639999999,40.76230320000001],"type":"Point"},"name":"Gian \u0026 Pier Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb054198"},"location":{"coordinates":[-73.95015769999999,40.6315299],"type":"Point"},"name":"Metropolitan Food Cafe Of Brooklyn College"} +,{"_id":{"$oid":"55cba2476c522cafdb054199"},"location":{"coordinates":[-73.985338,40.76089899999999],"type":"Point"},"name":"Da Marino Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05419a"},"location":{"coordinates":[-73.988895,40.739047],"type":"Point"},"name":"La Pizza Fresca"} +,{"_id":{"$oid":"55cba2476c522cafdb05419b"},"location":{"coordinates":[-73.996996,40.742737],"type":"Point"},"name":"Pita City Falafel"} +,{"_id":{"$oid":"55cba2476c522cafdb05419c"},"location":{"coordinates":[-73.952798,40.776976],"type":"Point"},"name":"Vespa Cibobuono"} +,{"_id":{"$oid":"55cba2476c522cafdb05419d"},"location":{"coordinates":[-74.0095549,40.6497309],"type":"Point"},"name":"Isabela'S Mexican Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb05419e"},"location":{"coordinates":[-74.028486,40.630438],"type":"Point"},"name":"Omonia Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05419f"},"location":{"coordinates":[-73.9286341,40.7732937],"type":"Point"},"name":"No.1 Kitchen Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0541a0"},"location":{"coordinates":[-73.89723959999999,40.707095],"type":"Point"},"name":"Glenlo Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb0541a1"},"location":{"coordinates":[-74.0120183,40.6778904],"type":"Point"},"name":"Red Hook Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb0541a2"},"location":{"coordinates":[-73.99099149999999,40.7499318],"type":"Point"},"name":"Roy Rogers"} +,{"_id":{"$oid":"55cba2476c522cafdb0541a3"},"location":{"coordinates":[-74.0031518,40.7253447],"type":"Point"},"name":"Mezzogiorno"} +,{"_id":{"$oid":"55cba2476c522cafdb0541a4"},"location":{"coordinates":[-73.9991637,40.75368539999999],"type":"Point"},"name":"Don Pepi Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0541a5"},"location":{"coordinates":[-73.97771399999999,40.7565754],"type":"Point"},"name":"Kurumazushi Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0541a6"},"location":{"coordinates":[-73.988545,40.7578407],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0541a7"},"location":{"coordinates":[-73.9846206,40.7259632],"type":"Point"},"name":"Death \u0026 Co"} +,{"_id":{"$oid":"55cba2476c522cafdb0541a8"},"location":{"coordinates":[-74.10884759999999,40.630357],"type":"Point"},"name":"The Burrito Bar Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0541a9"},"location":{"coordinates":[-73.9824665,40.5961602],"type":"Point"},"name":"Paradise Caterers"} +,{"_id":{"$oid":"55cba2476c522cafdb0541aa"},"location":{"coordinates":[-73.99800259999999,40.7177627],"type":"Point"},"name":"Buona Notte Ristorante"} +,{"_id":{"$oid":"55cba2476c522cafdb0541ab"},"location":{"coordinates":[-73.969476,40.6892912],"type":"Point"},"name":"Alibi Club"} +,{"_id":{"$oid":"55cba2476c522cafdb0541ac"},"location":{"coordinates":[-73.83899,40.657329],"type":"Point"},"name":"Roma View Catering"} +,{"_id":{"$oid":"55cba2476c522cafdb0541ad"},"location":{"coordinates":[-73.8350265,40.7071143],"type":"Point"},"name":"Spolini'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0541ae"},"location":{"coordinates":[-73.91754399999999,40.8071004],"type":"Point"},"name":"Ray'S Pizza Restuarant"} +,{"_id":{"$oid":"55cba2476c522cafdb0541af"},"location":{"coordinates":[-73.99776609999999,40.7146297],"type":"Point"},"name":"Joe'S Shanghai Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0541b0"},"location":{"coordinates":[-73.93614699999999,40.8501658],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0541b1"},"location":{"coordinates":[-74.1104206,40.6349091],"type":"Point"},"name":"Blue \u0026 Gray Inn"} +,{"_id":{"$oid":"55cba2476c522cafdb0541b2"},"location":{"coordinates":[-73.8845607,40.75941419999999],"type":"Point"},"name":"Jj Garden Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0541b3"},"location":{"coordinates":[-73.9093128,40.8813203],"type":"Point"},"name":"Louie'Sdale Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb0541b4"},"location":{"coordinates":[-73.9867735,40.7400748],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0541b5"},"location":{"coordinates":[-73.902048,40.868898],"type":"Point"},"name":"Montezuma Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0541b6"},"location":{"coordinates":[-73.8672586,40.8555371],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0541b7"},"location":{"coordinates":[-73.8358135,40.7857057],"type":"Point"},"name":"Akiyama Japanese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0541b8"},"location":{"coordinates":[-73.99543179999999,40.7210881],"type":"Point"},"name":"Parisi Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0541b9"},"location":{"coordinates":[-74.18227569999999,40.5975538],"type":"Point"},"name":"Mug Shots"} +,{"_id":{"$oid":"55cba2476c522cafdb0541ba"},"location":{"coordinates":[-73.79975639999999,40.59268660000001],"type":"Point"},"name":"Goody'S Bbq"} +,{"_id":{"$oid":"55cba2476c522cafdb0541bb"},"location":{"coordinates":[-73.9945985,40.7246247],"type":"Point"},"name":"Lite Delights"} +,{"_id":{"$oid":"55cba2476c522cafdb0541bc"},"location":{"coordinates":[-73.9735702,40.7537296],"type":"Point"},"name":"Aretsky'S Patroon"} +,{"_id":{"$oid":"55cba2476c522cafdb0541bd"},"location":{"coordinates":[-73.951905,40.586433],"type":"Point"},"name":"Night Light Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0541be"},"location":{"coordinates":[-73.8511316,40.8335033],"type":"Point"},"name":"Carvel Ice Cream"} +,{"_id":{"$oid":"55cba2476c522cafdb0541bf"},"location":{"coordinates":[-73.9754742,40.6809974],"type":"Point"},"name":"Gino'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0541c0"},"location":{"coordinates":[-73.977531,40.78475],"type":"Point"},"name":"The Gin Mill"} +,{"_id":{"$oid":"55cba2476c522cafdb0541c1"},"location":{"coordinates":[-73.855048,40.720626],"type":"Point"},"name":"Mikes Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0541c2"},"location":{"coordinates":[-73.91945489999999,40.7624252],"type":"Point"},"name":"Dunkin' Donuts, Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb0541c3"},"location":{"coordinates":[-74.23720960000001,40.5384084],"type":"Point"},"name":"Killmeyer'S Old Bavaria Inn."} +,{"_id":{"$oid":"55cba2476c522cafdb0541c4"},"location":{"coordinates":[-73.9100876,40.8860444],"type":"Point"},"name":"Hunan Balcony"} +,{"_id":{"$oid":"55cba2476c522cafdb0541c5"},"location":{"coordinates":[-73.883128,40.85353],"type":"Point"},"name":"Great Wall Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0541c6"},"location":{"coordinates":[-73.8020864,40.780034],"type":"Point"},"name":"Gigi'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb0541c7"},"location":{"coordinates":[-73.990494,40.7569545],"type":"Point"},"name":"Au Bon Pain"} +,{"_id":{"$oid":"55cba2476c522cafdb0541c8"},"location":{"coordinates":[-73.959249,40.768076],"type":"Point"},"name":"Afghan Kebab House"} +,{"_id":{"$oid":"55cba2476c522cafdb0541c9"},"location":{"coordinates":[-74.1327915,40.631894],"type":"Point"},"name":"Ground Level Beer Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb0541ca"},"location":{"coordinates":[-73.9550847,40.7367143],"type":"Point"},"name":"Acapulco Deli \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0541cb"},"location":{"coordinates":[-73.99099149999999,40.7499318],"type":"Point"},"name":"Nathan'S Famous"} +,{"_id":{"$oid":"55cba2476c522cafdb0541cc"},"location":{"coordinates":[-74.21203539999999,40.5519961],"type":"Point"},"name":"Happy Fortune"} +,{"_id":{"$oid":"55cba2476c522cafdb0541cd"},"location":{"coordinates":[-74.00630199999999,40.718892],"type":"Point"},"name":"Distilled"} +,{"_id":{"$oid":"55cba2476c522cafdb0541ce"},"location":{"coordinates":[-73.8418701,40.8404361],"type":"Point"},"name":"Boston Market"} +,{"_id":{"$oid":"55cba2476c522cafdb0541cf"},"location":{"coordinates":[-73.990589,40.6644099],"type":"Point"},"name":"Lenny'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0541d0"},"location":{"coordinates":[-73.8928162,40.84641939999999],"type":"Point"},"name":"La Bella Rosa Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0541d1"},"location":{"coordinates":[-74.00689899999999,40.731578],"type":"Point"},"name":"Barrow'S Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb0541d2"},"location":{"coordinates":[-74.00416179999999,40.6548509],"type":"Point"},"name":"La Familia Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0541d3"},"location":{"coordinates":[-73.9898,40.759194],"type":"Point"},"name":"Birdland"} +,{"_id":{"$oid":"55cba2476c522cafdb0541d4"},"location":{"coordinates":[-74.02691399999999,40.6328843],"type":"Point"},"name":"Am"} +,{"_id":{"$oid":"55cba2476c522cafdb0541d5"},"location":{"coordinates":[-73.868028,40.741938],"type":"Point"},"name":"El Gauchito Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0541d6"},"location":{"coordinates":[-74.0116385,40.707491],"type":"Point"},"name":"Bank Of New York"} +,{"_id":{"$oid":"55cba2476c522cafdb0541d7"},"location":{"coordinates":[-73.7636704,40.7004564],"type":"Point"},"name":"Oriental Star Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0541d8"},"location":{"coordinates":[-73.8370236,40.579157],"type":"Point"},"name":"Ciro'S Pizza Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0541d9"},"location":{"coordinates":[-74.0058365,40.70910060000001],"type":"Point"},"name":"Bennie'S Thai Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0541da"},"location":{"coordinates":[-73.8676612,40.8652942],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb0541db"},"location":{"coordinates":[-73.96904599999999,40.763159],"type":"Point"},"name":"Sunberry'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0541dc"},"location":{"coordinates":[-73.8627284,40.833022],"type":"Point"},"name":"La Isla Cuchifritos"} +,{"_id":{"$oid":"55cba2476c522cafdb0541dd"},"location":{"coordinates":[-73.9114246,40.7752317],"type":"Point"},"name":"Last Stop Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0541de"},"location":{"coordinates":[-73.93709729999999,40.8554247],"type":"Point"},"name":"Kismat Indian Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb0541df"},"location":{"coordinates":[-73.9043294,40.8791425],"type":"Point"},"name":"Keenans"} +,{"_id":{"$oid":"55cba2476c522cafdb0541e0"},"location":{"coordinates":[-73.9849107,40.7547094],"type":"Point"},"name":"Flik International"} +,{"_id":{"$oid":"55cba2476c522cafdb0541e1"},"location":{"coordinates":[-73.8017089,40.7057974],"type":"Point"},"name":"New Feng'S Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb0541e2"},"location":{"coordinates":[-73.9960847,40.735944],"type":"Point"},"name":"Quad Cinema"} +,{"_id":{"$oid":"55cba2476c522cafdb0541e3"},"location":{"coordinates":[-73.9876168,40.7377189],"type":"Point"},"name":"Duke'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0541e4"},"location":{"coordinates":[-73.918791,40.807678],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0541e5"},"location":{"coordinates":[-73.9939717,40.73587260000001],"type":"Point"},"name":"Mansions Cater"} +,{"_id":{"$oid":"55cba2476c522cafdb0541e6"},"location":{"coordinates":[-73.95796530000001,40.7697258],"type":"Point"},"name":"Uskudar Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0541e7"},"location":{"coordinates":[-73.9995899,40.7168015],"type":"Point"},"name":"Thai Son"} +,{"_id":{"$oid":"55cba2476c522cafdb0541e8"},"location":{"coordinates":[-73.9788293,40.7765158],"type":"Point"},"name":"Pasha Turkish Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0541e9"},"location":{"coordinates":[-73.9376807,40.7674632],"type":"Point"},"name":"Costco Wholesale"} +,{"_id":{"$oid":"55cba2476c522cafdb0541ea"},"location":{"coordinates":[-73.9934785,40.7527038],"type":"Point"},"name":"Tick Tock Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb0541eb"},"location":{"coordinates":[-73.9934785,40.7527038],"type":"Point"},"name":"Coopers Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb0541ec"},"location":{"coordinates":[-73.9383113,40.8427309],"type":"Point"},"name":"M \u0026 M Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0541ed"},"location":{"coordinates":[-73.7775135,40.6794932],"type":"Point"},"name":"Jays Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0541ee"},"location":{"coordinates":[-73.9761815,40.7649625],"type":"Point"},"name":"Quality Meats"} +,{"_id":{"$oid":"55cba2476c522cafdb0541ef"},"location":{"coordinates":[-73.9873267,40.7683224],"type":"Point"},"name":"Gotham Cafe (Inside Holiday Inn)"} +,{"_id":{"$oid":"55cba2476c522cafdb0541f0"},"location":{"coordinates":[-74.0343092,40.6125569],"type":"Point"},"name":"101 Restaurant And Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0541f1"},"location":{"coordinates":[-73.992471,40.7511286],"type":"Point"},"name":"Rose'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0541f2"},"location":{"coordinates":[-73.900514,40.847339],"type":"Point"},"name":"Caridad Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0541f3"},"location":{"coordinates":[-73.9766216,40.7597793],"type":"Point"},"name":"Devon \u0026 Blakely"} +,{"_id":{"$oid":"55cba2476c522cafdb0541f4"},"location":{"coordinates":[-73.9624221,40.77620840000001],"type":"Point"},"name":"Serafina Fabulous Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0541f5"},"location":{"coordinates":[-73.968015,40.755099],"type":"Point"},"name":"Blockhead'S Mexican Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb0541f6"},"location":{"coordinates":[-73.992471,40.7511286],"type":"Point"},"name":"Rose Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0541f7"},"location":{"coordinates":[-73.961794,40.624881],"type":"Point"},"name":"Gourmet On J"} +,{"_id":{"$oid":"55cba2476c522cafdb0541f8"},"location":{"coordinates":[-73.89048559999999,40.8696818],"type":"Point"},"name":"Lena Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0541f9"},"location":{"coordinates":[-73.983176,40.728489],"type":"Point"},"name":"Moustache"} +,{"_id":{"$oid":"55cba2476c522cafdb0541fa"},"location":{"coordinates":[-73.989254,40.729529],"type":"Point"},"name":"Yakitori Taisho"} +,{"_id":{"$oid":"55cba2476c522cafdb0541fb"},"location":{"coordinates":[-73.801226,40.771338],"type":"Point"},"name":"Marino'S Pizza \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0541fc"},"location":{"coordinates":[-73.95627499999999,40.771083],"type":"Point"},"name":"Iggy'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0541fd"},"location":{"coordinates":[-73.986144,40.760103],"type":"Point"},"name":"Ethel Barrymore Theater"} +,{"_id":{"$oid":"55cba2476c522cafdb0541fe"},"location":{"coordinates":[-73.9844504,40.7561154],"type":"Point"},"name":"Town Hall Theatre"} +,{"_id":{"$oid":"55cba2476c522cafdb0541ff"},"location":{"coordinates":[-73.9870509,40.7588904],"type":"Point"},"name":"Music Box Theater"} +,{"_id":{"$oid":"55cba2476c522cafdb054200"},"location":{"coordinates":[-73.984492,40.757768],"type":"Point"},"name":"Lyceum Theatre"} +,{"_id":{"$oid":"55cba2476c522cafdb054201"},"location":{"coordinates":[-73.9850761,40.7612489],"type":"Point"},"name":"Ambassador Theatre"} +,{"_id":{"$oid":"55cba2476c522cafdb054202"},"location":{"coordinates":[-73.98306800000002,40.7591309],"type":"Point"},"name":"Cort Theatre"} +,{"_id":{"$oid":"55cba2476c522cafdb054203"},"location":{"coordinates":[-73.9879479,40.7587882],"type":"Point"},"name":"Golden Theatre"} +,{"_id":{"$oid":"55cba2476c522cafdb054204"},"location":{"coordinates":[-73.9699089,40.795049],"type":"Point"},"name":"El Malecon Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054205"},"location":{"coordinates":[-74.00347099999999,40.733218],"type":"Point"},"name":"Arthur'S Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb054206"},"location":{"coordinates":[-73.9988889,40.7477778],"type":"Point"},"name":"Auntie Anne'S Pretzels"} +,{"_id":{"$oid":"55cba2476c522cafdb054207"},"location":{"coordinates":[-92.7276265,41.7461418],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb054208"},"location":{"coordinates":[-74.00145599999999,40.73818199999999],"type":"Point"},"name":"Miyagi Japanese Home Cooking"} +,{"_id":{"$oid":"55cba2476c522cafdb054209"},"location":{"coordinates":[-73.95360749999999,40.7759361],"type":"Point"},"name":"Erminia Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05420a"},"location":{"coordinates":[-73.984021,40.766045],"type":"Point"},"name":"Bricco Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05420b"},"location":{"coordinates":[-73.73076999999999,40.752128],"type":"Point"},"name":"Douglaston Golf Snacks"} +,{"_id":{"$oid":"55cba2476c522cafdb05420c"},"location":{"coordinates":[-73.9838125,40.5788295],"type":"Point"},"name":"Totonno'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb05420d"},"location":{"coordinates":[-73.953586,40.731193],"type":"Point"},"name":"Psc Cafeteria"} +,{"_id":{"$oid":"55cba2476c522cafdb05420e"},"location":{"coordinates":[-73.9838415,40.7793874],"type":"Point"},"name":"Sugar Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05420f"},"location":{"coordinates":[-74.0019287,40.7401735],"type":"Point"},"name":"La Taza De Oro Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054210"},"location":{"coordinates":[-73.9273139,40.8651344],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054211"},"location":{"coordinates":[-73.9815605,40.7690686],"type":"Point"},"name":"Jean Georges"} +,{"_id":{"$oid":"55cba2476c522cafdb054212"},"location":{"coordinates":[-73.98357539999999,40.7262493],"type":"Point"},"name":"Ray'S Candy Store"} +,{"_id":{"$oid":"55cba2476c522cafdb054213"},"location":{"coordinates":[-73.94970920000002,40.7619141],"type":"Point"},"name":"Trellis"} +,{"_id":{"$oid":"55cba2476c522cafdb054214"},"location":{"coordinates":[-73.990855,40.737009],"type":"Point"},"name":"Republic Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054215"},"location":{"coordinates":[-74.00041689999999,40.7302678],"type":"Point"},"name":"Mamoun Falafel"} +,{"_id":{"$oid":"55cba2476c522cafdb054216"},"location":{"coordinates":[-73.92430569999999,40.7565317],"type":"Point"},"name":"Cafe Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054217"},"location":{"coordinates":[-73.9760776,40.7816785],"type":"Point"},"name":"Ocean Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb054218"},"location":{"coordinates":[-73.9848074,40.69341319999999],"type":"Point"},"name":"Au Bon Pain"} +,{"_id":{"$oid":"55cba2476c522cafdb054219"},"location":{"coordinates":[-73.9610505,40.5999343],"type":"Point"},"name":"Sahara Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05421a"},"location":{"coordinates":[-73.9922175,40.7543506],"type":"Point"},"name":"Wakamba"} +,{"_id":{"$oid":"55cba2476c522cafdb05421b"},"location":{"coordinates":[-73.9977969,40.7447604],"type":"Point"},"name":"East Of Eighth"} +,{"_id":{"$oid":"55cba2476c522cafdb05421c"},"location":{"coordinates":[-73.96550909999999,40.7551102],"type":"Point"},"name":"Domino'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05421d"},"location":{"coordinates":[-73.8813495,40.7562445],"type":"Point"},"name":"La Cabana Argentina"} +,{"_id":{"$oid":"55cba2476c522cafdb05421e"},"location":{"coordinates":[-73.9557963,40.7662241],"type":"Point"},"name":"Murphy'S Law"} +,{"_id":{"$oid":"55cba2476c522cafdb05421f"},"location":{"coordinates":[-73.921888,40.76061199999999],"type":"Point"},"name":"Caravan Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb054220"},"location":{"coordinates":[-73.98403139999999,40.7288877],"type":"Point"},"name":"Lanza'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054221"},"location":{"coordinates":[-74.19261519999999,40.5530453],"type":"Point"},"name":"Bagel Deli / Village Green Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb054222"},"location":{"coordinates":[-73.982968,40.745815],"type":"Point"},"name":"Mike'S Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb054223"},"location":{"coordinates":[-73.9918686,40.691189],"type":"Point"},"name":"La Bagel Delight"} +,{"_id":{"$oid":"55cba2476c522cafdb054224"},"location":{"coordinates":[-73.9877398,40.7279584],"type":"Point"},"name":"Virage"} +,{"_id":{"$oid":"55cba2476c522cafdb054225"},"location":{"coordinates":[-74.0021229,40.7382669],"type":"Point"},"name":"Carry On Tea \u0026 Sympathy"} +,{"_id":{"$oid":"55cba2476c522cafdb054226"},"location":{"coordinates":[-73.948014,40.7264539],"type":"Point"},"name":"Connie O'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054227"},"location":{"coordinates":[-73.9828813,40.7610785],"type":"Point"},"name":"Kentucky Fried Chicken, Tim Hortons"} +,{"_id":{"$oid":"55cba2476c522cafdb054228"},"location":{"coordinates":[-73.9828813,40.7610785],"type":"Point"},"name":"Tad'S Steaks"} +,{"_id":{"$oid":"55cba2476c522cafdb054229"},"location":{"coordinates":[-73.9828813,40.7610785],"type":"Point"},"name":"Pizza Hut"} +,{"_id":{"$oid":"55cba2476c522cafdb05422a"},"location":{"coordinates":[-73.9837606,40.7608268],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb05422b"},"location":{"coordinates":[-74.10960130000001,40.5696522],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb05422c"},"location":{"coordinates":[-73.960049,40.8094253],"type":"Point"},"name":"Carleton Lounge - Mudd Building"} +,{"_id":{"$oid":"55cba2476c522cafdb05422d"},"location":{"coordinates":[-73.92205299999999,40.8174674],"type":"Point"},"name":"La Perla Mexicana"} +,{"_id":{"$oid":"55cba2476c522cafdb05422e"},"location":{"coordinates":[-73.994779,40.63250240000001],"type":"Point"},"name":"Shem Tov"} +,{"_id":{"$oid":"55cba2476c522cafdb05422f"},"location":{"coordinates":[-73.90783789999999,40.780184],"type":"Point"},"name":"Gussy'S Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054230"},"location":{"coordinates":[-73.9593889,40.779726],"type":"Point"},"name":"Le Pain Quotidien"} +,{"_id":{"$oid":"55cba2476c522cafdb054231"},"location":{"coordinates":[-73.943679,40.711861],"type":"Point"},"name":"Grand Morelos Diner \u0026 Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb054232"},"location":{"coordinates":[-73.89609899999999,40.746136],"type":"Point"},"name":"Krystal Pastry Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb054233"},"location":{"coordinates":[-73.9977311,40.7182328],"type":"Point"},"name":"Caffe Napoli"} +,{"_id":{"$oid":"55cba2476c522cafdb054234"},"location":{"coordinates":[-73.98843269999999,40.6745461],"type":"Point"},"name":"Rodeo Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb054235"},"location":{"coordinates":[-74.00471689999999,40.6501965],"type":"Point"},"name":"Usuluteco Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054236"},"location":{"coordinates":[-73.9872432,40.7296856],"type":"Point"},"name":"The Thirsty Scholar"} +,{"_id":{"$oid":"55cba2476c522cafdb054237"},"location":{"coordinates":[-73.7915677,40.7115839],"type":"Point"},"name":"Ihop"} +,{"_id":{"$oid":"55cba2476c522cafdb054238"},"location":{"coordinates":[-73.7855257,40.7394038],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb054239"},"location":{"coordinates":[-78.589606,42.8912372],"type":"Point"},"name":"La Caridad 78"} +,{"_id":{"$oid":"55cba2476c522cafdb05423a"},"location":{"coordinates":[-73.867598,40.8603041],"type":"Point"},"name":"Sugar City Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb05423b"},"location":{"coordinates":[-74.00885699999999,40.7273998],"type":"Point"},"name":"P.J. Charlton"} +,{"_id":{"$oid":"55cba2476c522cafdb05423c"},"location":{"coordinates":[-73.995085,40.725887],"type":"Point"},"name":"Bleecker Street Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05423d"},"location":{"coordinates":[-73.9809779,40.7635778],"type":"Point"},"name":"Faces \u0026 Names"} +,{"_id":{"$oid":"55cba2476c522cafdb05423e"},"location":{"coordinates":[-73.9844202,40.77956470000001],"type":"Point"},"name":"Pier 72 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05423f"},"location":{"coordinates":[-73.98314789999999,40.7384902],"type":"Point"},"name":"Bull Head Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb054240"},"location":{"coordinates":[-73.8140762,40.7025498],"type":"Point"},"name":"Wendy'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054241"},"location":{"coordinates":[-73.74377170000001,40.7299053],"type":"Point"},"name":"Wendy'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054242"},"location":{"coordinates":[-73.9200369,40.7428162],"type":"Point"},"name":"Wendy'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054243"},"location":{"coordinates":[-73.9057967,40.8179175],"type":"Point"},"name":"Lopez'S Pizzeria And Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb054244"},"location":{"coordinates":[-73.9766478,40.7482353],"type":"Point"},"name":"El Rio Grande"} +,{"_id":{"$oid":"55cba2476c522cafdb054245"},"location":{"coordinates":[-73.8366934,40.5818951],"type":"Point"},"name":"Empire Wok Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb054246"},"location":{"coordinates":[-73.991703,40.7602649],"type":"Point"},"name":"Bocca Di Bacco"} +,{"_id":{"$oid":"55cba2476c522cafdb054247"},"location":{"coordinates":[-73.92789290000002,40.8189679],"type":"Point"},"name":"Glen Roy Bar And Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb054248"},"location":{"coordinates":[-73.983879,40.7225373],"type":"Point"},"name":"The Stairs Bar And Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb054249"},"location":{"coordinates":[-73.9503667,40.6349956],"type":"Point"},"name":"Crystal Manor"} +,{"_id":{"$oid":"55cba2476c522cafdb05424a"},"location":{"coordinates":[-73.9924742,40.7490266],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb05424b"},"location":{"coordinates":[-74.00576099999999,40.7426064],"type":"Point"},"name":"The Green Table(Chelsea Market)"} +,{"_id":{"$oid":"55cba2476c522cafdb05424c"},"location":{"coordinates":[-73.9049794,40.8874509],"type":"Point"},"name":"An Beal Bocht Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05424d"},"location":{"coordinates":[-73.97814439999999,40.7778227],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb05424e"},"location":{"coordinates":[-73.98820429999999,40.7290567],"type":"Point"},"name":"Noodle Cafe Zen"} +,{"_id":{"$oid":"55cba2476c522cafdb05424f"},"location":{"coordinates":[-74.0086743,40.7094986],"type":"Point"},"name":"Health King"} +,{"_id":{"$oid":"55cba2476c522cafdb054250"},"location":{"coordinates":[-73.901932,40.862181],"type":"Point"},"name":"Diamante Poblano Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054251"},"location":{"coordinates":[-73.978516,40.741658],"type":"Point"},"name":"Paddy'S Reilly'S Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054252"},"location":{"coordinates":[-73.86362500000001,40.8381664],"type":"Point"},"name":"Archer Sports Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054253"},"location":{"coordinates":[-73.98670299999999,40.737694],"type":"Point"},"name":"National Arts Club"} +,{"_id":{"$oid":"55cba2476c522cafdb054254"},"location":{"coordinates":[-73.9663538,40.8051749],"type":"Point"},"name":"The Heights Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb054255"},"location":{"coordinates":[-73.9814742,40.7642335],"type":"Point"},"name":"Carnegie Delicatessen \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054256"},"location":{"coordinates":[-74.0142998,40.6409406],"type":"Point"},"name":"Georges Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054257"},"location":{"coordinates":[-73.9164504,40.8341845],"type":"Point"},"name":"Lucky House Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054258"},"location":{"coordinates":[-73.7142688,40.7458682],"type":"Point"},"name":"Santoor Indian Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054259"},"location":{"coordinates":[-73.808241,40.701275],"type":"Point"},"name":"Golden Krust Caribbean Bakery \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb05425a"},"location":{"coordinates":[-74.1674401,40.5769947],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb05425b"},"location":{"coordinates":[-73.967798,40.756423],"type":"Point"},"name":"Turtle Bay Grill And Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb05425c"},"location":{"coordinates":[-73.83309799999999,40.684212],"type":"Point"},"name":"El Dorado Sports Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb05425d"},"location":{"coordinates":[-73.996449,40.721877],"type":"Point"},"name":"The Spring Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb05425e"},"location":{"coordinates":[-73.831959,40.84606],"type":"Point"},"name":"Shamrock Inn"} +,{"_id":{"$oid":"55cba2476c522cafdb05425f"},"location":{"coordinates":[-73.9180785,40.69901429999999],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb054260"},"location":{"coordinates":[-73.91647139999999,40.7695029],"type":"Point"},"name":"Burger King"} +,{"_id":{"$oid":"55cba2476c522cafdb054261"},"location":{"coordinates":[-73.992543,40.759527],"type":"Point"},"name":"Westside Theatre"} +,{"_id":{"$oid":"55cba2476c522cafdb054262"},"location":{"coordinates":[-73.95622589999999,40.7848855],"type":"Point"},"name":"Ciao Bella"} +,{"_id":{"$oid":"55cba2476c522cafdb054263"},"location":{"coordinates":[-73.87844559999999,40.7390289],"type":"Point"},"name":"Rio Dela Plata Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb054264"},"location":{"coordinates":[-73.9779253,40.7453835],"type":"Point"},"name":"La Giara"} +,{"_id":{"$oid":"55cba2476c522cafdb054265"},"location":{"coordinates":[-73.88122729999999,40.8281391],"type":"Point"},"name":"New Wah Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb054266"},"location":{"coordinates":[-73.9536119,40.7705841],"type":"Point"},"name":"Canyon Road Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb054267"},"location":{"coordinates":[-74.004265,40.738324],"type":"Point"},"name":"Tavern On Jane"} +,{"_id":{"$oid":"55cba2476c522cafdb054268"},"location":{"coordinates":[-74.00151199999999,40.727113],"type":"Point"},"name":"Pepe Rosso To Go"} +,{"_id":{"$oid":"55cba2476c522cafdb054269"},"location":{"coordinates":[-73.78737300000002,40.84861],"type":"Point"},"name":"Crab Shanty"} +,{"_id":{"$oid":"55cba2476c522cafdb05426a"},"location":{"coordinates":[-73.98317,40.672564],"type":"Point"},"name":"The Gate"} +,{"_id":{"$oid":"55cba2476c522cafdb05426b"},"location":{"coordinates":[-73.9809786,40.7780386],"type":"Point"},"name":"The Triad"} +,{"_id":{"$oid":"55cba2476c522cafdb05426c"},"location":{"coordinates":[-73.99480199999999,40.735016],"type":"Point"},"name":"Whitsons And Forbes"} +,{"_id":{"$oid":"55cba2476c522cafdb05426d"},"location":{"coordinates":[-73.98330790000001,40.760053],"type":"Point"},"name":"Iroha Japanese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05426e"},"location":{"coordinates":[-73.956245,40.777792],"type":"Point"},"name":"Nicola'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05426f"},"location":{"coordinates":[-74.0053039,40.7385812],"type":"Point"},"name":"Hudson Bar And Books"} +,{"_id":{"$oid":"55cba2476c522cafdb054270"},"location":{"coordinates":[-73.9788903,40.7605367],"type":"Point"},"name":"Bread Market Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054271"},"location":{"coordinates":[-73.8246709,40.8290428],"type":"Point"},"name":"Throgs Neck Clipper"} +,{"_id":{"$oid":"55cba2476c522cafdb054272"},"location":{"coordinates":[-73.9683848,40.76663689999999],"type":"Point"},"name":"Arabelle"} +,{"_id":{"$oid":"55cba2476c522cafdb054273"},"location":{"coordinates":[-73.817261,40.7768177],"type":"Point"},"name":"Whitestone Bagel Factory"} +,{"_id":{"$oid":"55cba2476c522cafdb054274"},"location":{"coordinates":[-74.0122391,40.6289332],"type":"Point"},"name":"Great Wall Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054275"},"location":{"coordinates":[-74.0043501,40.7377646],"type":"Point"},"name":"La Bonbonniere"} +,{"_id":{"$oid":"55cba2476c522cafdb054276"},"location":{"coordinates":[-74.00489689999999,40.7419343],"type":"Point"},"name":"Hale \u0026 Hearty Soups"} +,{"_id":{"$oid":"55cba2476c522cafdb054277"},"location":{"coordinates":[-73.932418,40.6513161],"type":"Point"},"name":"Topaze Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054278"},"location":{"coordinates":[-73.9805604,40.6757766],"type":"Point"},"name":"Mezcals Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054279"},"location":{"coordinates":[-74.0236011,40.64677870000001],"type":"Point"},"name":"Pete'S Place Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05427a"},"location":{"coordinates":[-73.99350629999999,40.6818391],"type":"Point"},"name":"Vinny'S Of Carroll Garden Restaurant \u0026 Luncheonett"} +,{"_id":{"$oid":"55cba2476c522cafdb05427b"},"location":{"coordinates":[-73.9982235,40.7226041],"type":"Point"},"name":"Balthazar Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05427c"},"location":{"coordinates":[-73.9982235,40.7226041],"type":"Point"},"name":"Balthazar Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb05427d"},"location":{"coordinates":[-73.88427159999999,40.7644386],"type":"Point"},"name":"Airport Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb05427e"},"location":{"coordinates":[-73.9805666,40.7644251],"type":"Point"},"name":"Molyvos"} +,{"_id":{"$oid":"55cba2476c522cafdb05427f"},"location":{"coordinates":[-74.0015425,40.7073164],"type":"Point"},"name":"Paris Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054280"},"location":{"coordinates":[-73.98653329999999,40.6914682],"type":"Point"},"name":"Souvlaki House"} +,{"_id":{"$oid":"55cba2476c522cafdb054281"},"location":{"coordinates":[-73.90830989999999,40.6626291],"type":"Point"},"name":"Napoli Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054282"},"location":{"coordinates":[-74.0021496,40.730592],"type":"Point"},"name":"Famous Joe'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054283"},"location":{"coordinates":[-73.8739128,40.73324059999999],"type":"Point"},"name":"White Castle"} +,{"_id":{"$oid":"55cba2476c522cafdb054284"},"location":{"coordinates":[-74.0030019,40.7235659],"type":"Point"},"name":"Cipriani Downtown Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054285"},"location":{"coordinates":[-73.8561857,40.8948468],"type":"Point"},"name":"Barries Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054286"},"location":{"coordinates":[-73.959485,40.762514],"type":"Point"},"name":"Felice 64 Wine Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054287"},"location":{"coordinates":[-73.962825,40.769144],"type":"Point"},"name":"Mariella Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054288"},"location":{"coordinates":[-73.9117359,40.767575],"type":"Point"},"name":"Egyptian Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb054289"},"location":{"coordinates":[-73.91968109999999,40.7435742],"type":"Point"},"name":"Mc Guinness'S"} +,{"_id":{"$oid":"55cba2476c522cafdb05428a"},"location":{"coordinates":[-74.00838759999999,40.7402558],"type":"Point"},"name":"Hector'S Cafe \u0026 Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb05428b"},"location":{"coordinates":[-73.97110409999999,40.6461233],"type":"Point"},"name":"Rocky'S Pizza Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05428c"},"location":{"coordinates":[-73.9574117,40.717887],"type":"Point"},"name":"Anna Maria Pizza Pasta"} +,{"_id":{"$oid":"55cba2476c522cafdb05428d"},"location":{"coordinates":[-73.999482,40.730538],"type":"Point"},"name":"New York University - Snow Dining"} +,{"_id":{"$oid":"55cba2476c522cafdb05428e"},"location":{"coordinates":[-73.9597119,40.763208],"type":"Point"},"name":"Maya"} +,{"_id":{"$oid":"55cba2476c522cafdb05428f"},"location":{"coordinates":[-73.9973861,40.7420828],"type":"Point"},"name":"Le Singe Vert"} +,{"_id":{"$oid":"55cba2476c522cafdb054290"},"location":{"coordinates":[-73.9818098,40.7806783],"type":"Point"},"name":"Barre Cafe At Steps"} +,{"_id":{"$oid":"55cba2476c522cafdb054291"},"location":{"coordinates":[-73.73923479999999,40.6757795],"type":"Point"},"name":"Jerk Hut"} +,{"_id":{"$oid":"55cba2476c522cafdb054292"},"location":{"coordinates":[-73.90748649999999,40.7601416],"type":"Point"},"name":"Mama Carmela'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054293"},"location":{"coordinates":[-73.994069,40.727221],"type":"Point"},"name":"Acme Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb054294"},"location":{"coordinates":[-73.93268460000002,40.76418590000001],"type":"Point"},"name":"Bel-Aire Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb054295"},"location":{"coordinates":[-73.956273,40.6761089],"type":"Point"},"name":"Imperial Biker Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054296"},"location":{"coordinates":[-73.9500679,40.6774695],"type":"Point"},"name":"Royal Bakery \u0026 Roti Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb054297"},"location":{"coordinates":[-73.9590306,40.6524237],"type":"Point"},"name":"Gino'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054298"},"location":{"coordinates":[-73.8562166,40.87044789999999],"type":"Point"},"name":"Cafe Lou'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054299"},"location":{"coordinates":[-73.9600746,40.6558265],"type":"Point"},"name":"Family Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05429a"},"location":{"coordinates":[-73.9557131,40.7847375],"type":"Point"},"name":"Sarabeth'S Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb05429b"},"location":{"coordinates":[-73.9310014,40.6683333],"type":"Point"},"name":"Popeyes Chicken \u0026 Biscuits"} +,{"_id":{"$oid":"55cba2476c522cafdb05429c"},"location":{"coordinates":[-73.9435104,40.7013798],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb05429d"},"location":{"coordinates":[-73.9838944,40.7372002],"type":"Point"},"name":"Plug Uglies"} +,{"_id":{"$oid":"55cba2476c522cafdb05429e"},"location":{"coordinates":[-73.9207656,40.7680205],"type":"Point"},"name":"Don Coqui"} +,{"_id":{"$oid":"55cba2476c522cafdb05429f"},"location":{"coordinates":[-73.88143509999999,40.7412552],"type":"Point"},"name":"Pho Bac Vietnamese Seafood Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb0542a0"},"location":{"coordinates":[-74.0057942,40.7420256],"type":"Point"},"name":"Ruthys Bakery \u0026 Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0542a1"},"location":{"coordinates":[-73.952859,40.771247],"type":"Point"},"name":"Sushi Of Gari"} +,{"_id":{"$oid":"55cba2476c522cafdb0542a2"},"location":{"coordinates":[-73.9789514,40.76359799999999],"type":"Point"},"name":"Estiatorio Milos"} +,{"_id":{"$oid":"55cba2476c522cafdb0542a3"},"location":{"coordinates":[-73.944092,40.610156],"type":"Point"},"name":"Claddagh Inn"} +,{"_id":{"$oid":"55cba2476c522cafdb0542a4"},"location":{"coordinates":[-73.8912519,40.8213991],"type":"Point"},"name":"Giralda Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0542a5"},"location":{"coordinates":[-73.97338529999999,40.761523],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0542a6"},"location":{"coordinates":[-73.82618579999999,40.6896249],"type":"Point"},"name":"Villa Russo"} +,{"_id":{"$oid":"55cba2476c522cafdb0542a7"},"location":{"coordinates":[-73.98346939999999,40.7387743],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0542a8"},"location":{"coordinates":[-73.9674,40.753834],"type":"Point"},"name":"Il Postino"} +,{"_id":{"$oid":"55cba2476c522cafdb0542a9"},"location":{"coordinates":[-73.935518,40.84229699999999],"type":"Point"},"name":"El Nuevo Conquistador"} +,{"_id":{"$oid":"55cba2476c522cafdb0542aa"},"location":{"coordinates":[-73.973551,40.750644],"type":"Point"},"name":"Osteria Laguna"} +,{"_id":{"$oid":"55cba2476c522cafdb0542ab"},"location":{"coordinates":[-73.98839579999999,40.7582117],"type":"Point"},"name":"John'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0542ac"},"location":{"coordinates":[-73.9745971,40.7501862],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0542ad"},"location":{"coordinates":[-73.9823451,40.7498107],"type":"Point"},"name":"Lucky Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb0542ae"},"location":{"coordinates":[-73.9475415,40.6293158],"type":"Point"},"name":"Anna'S Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0542af"},"location":{"coordinates":[-73.9692946,40.6043427],"type":"Point"},"name":"Think Sweet Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0542b0"},"location":{"coordinates":[-73.9872755,40.7367874],"type":"Point"},"name":"Paul \u0026 Jimmy'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0542b1"},"location":{"coordinates":[-74.18227569999999,40.5975538],"type":"Point"},"name":"Chicken Holiday Express"} +,{"_id":{"$oid":"55cba2476c522cafdb0542b2"},"location":{"coordinates":[-73.970443,40.75844],"type":"Point"},"name":"Hillstone'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0542b3"},"location":{"coordinates":[-73.988995,40.729423],"type":"Point"},"name":"Udon West"} +,{"_id":{"$oid":"55cba2476c522cafdb0542b4"},"location":{"coordinates":[-73.9639194,40.597882],"type":"Point"},"name":"Caffe Venezia"} +,{"_id":{"$oid":"55cba2476c522cafdb0542b5"},"location":{"coordinates":[-73.8962638,40.6377585],"type":"Point"},"name":"The Original Pizza Of Avenue L"} +,{"_id":{"$oid":"55cba2476c522cafdb0542b6"},"location":{"coordinates":[-73.933593,40.6000738],"type":"Point"},"name":"Knapp St Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0542b7"},"location":{"coordinates":[-73.8442002,40.7203652],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0542b8"},"location":{"coordinates":[-73.9945429,40.7245123],"type":"Point"},"name":"Ballato'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0542b9"},"location":{"coordinates":[-73.94463139999999,40.8349956],"type":"Point"},"name":"Coral Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb0542ba"},"location":{"coordinates":[-73.9826612,40.7777202],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0542bb"},"location":{"coordinates":[-73.9913282,40.6924204],"type":"Point"},"name":"Starbucks Coffee #7358"} +,{"_id":{"$oid":"55cba2476c522cafdb0542bc"},"location":{"coordinates":[-73.99054199999999,40.750529],"type":"Point"},"name":"Applebaum'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0542bd"},"location":{"coordinates":[-73.9798394,40.7566063],"type":"Point"},"name":"Emporium Brasil Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0542be"},"location":{"coordinates":[-73.98470499999999,40.743841],"type":"Point"},"name":"Bono'S Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0542bf"},"location":{"coordinates":[-74.000062,40.7289176],"type":"Point"},"name":"The Village Lantern"} +,{"_id":{"$oid":"55cba2476c522cafdb0542c0"},"location":{"coordinates":[-73.9549467,40.8046486],"type":"Point"},"name":"Mama'S Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb0542c1"},"location":{"coordinates":[-73.88893519999999,40.7471061],"type":"Point"},"name":"Hornado Ecuatoriano"} +,{"_id":{"$oid":"55cba2476c522cafdb0542c2"},"location":{"coordinates":[-73.9510612,40.7772434],"type":"Point"},"name":"Maz Mezcal"} +,{"_id":{"$oid":"55cba2476c522cafdb0542c3"},"location":{"coordinates":[-73.92054949999999,40.7595616],"type":"Point"},"name":"Boston Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0542c4"},"location":{"coordinates":[-73.94447079999999,40.7473237],"type":"Point"},"name":"Citibank Employee Cafeteria"} +,{"_id":{"$oid":"55cba2476c522cafdb0542c5"},"location":{"coordinates":[-73.86387429999999,40.7495267],"type":"Point"},"name":"El Dorado Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0542c6"},"location":{"coordinates":[-73.8947554,40.7265377],"type":"Point"},"name":"Glendale Bakeshop \u0026 Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0542c7"},"location":{"coordinates":[-73.97709689999999,40.7632476],"type":"Point"},"name":"Hale \u0026 Hearty Soups"} +,{"_id":{"$oid":"55cba2476c522cafdb0542c8"},"location":{"coordinates":[-73.986193,40.750245],"type":"Point"},"name":"Cho Dang Gol"} +,{"_id":{"$oid":"55cba2476c522cafdb0542c9"},"location":{"coordinates":[-74.0112363,40.6293247],"type":"Point"},"name":"Pizza Royale"} +,{"_id":{"$oid":"55cba2476c522cafdb0542ca"},"location":{"coordinates":[-73.973911,40.7532719],"type":"Point"},"name":"Hop Won Express"} +,{"_id":{"$oid":"55cba2476c522cafdb0542cb"},"location":{"coordinates":[-73.98846019999999,40.7688906],"type":"Point"},"name":"Roosevelt Gourmet Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb0542cc"},"location":{"coordinates":[-73.9344768,40.6200917],"type":"Point"},"name":"Lenny \u0026 John'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0542cd"},"location":{"coordinates":[-73.976103,40.762731],"type":"Point"},"name":"Sushiya Japanese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0542ce"},"location":{"coordinates":[-74.00489689999999,40.7419343],"type":"Point"},"name":"Eleni'S New York"} +,{"_id":{"$oid":"55cba2476c522cafdb0542cf"},"location":{"coordinates":[-73.97168289999999,40.6087484],"type":"Point"},"name":"Frank'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0542d0"},"location":{"coordinates":[-73.9519253,40.7341312],"type":"Point"},"name":"Casanova Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0542d1"},"location":{"coordinates":[-73.89780720000002,40.8673765],"type":"Point"},"name":"New Capital Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0542d2"},"location":{"coordinates":[-73.9978684,40.7541913],"type":"Point"},"name":"Food Fair Deli \u0026 Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0542d3"},"location":{"coordinates":[-73.9854578,40.727888],"type":"Point"},"name":"Cafe Rakka"} +,{"_id":{"$oid":"55cba2476c522cafdb0542d4"},"location":{"coordinates":[-74.000176,40.734542],"type":"Point"},"name":"Grano Trattoria"} +,{"_id":{"$oid":"55cba2476c522cafdb0542d5"},"location":{"coordinates":[-73.9802022,40.7464441],"type":"Point"},"name":"Guy \u0026 Gallard"} +,{"_id":{"$oid":"55cba2476c522cafdb0542d6"},"location":{"coordinates":[-73.97729919999999,40.7524958],"type":"Point"},"name":"Zaro'S Bread Basket"} +,{"_id":{"$oid":"55cba2476c522cafdb0542d7"},"location":{"coordinates":[-73.79937699999999,40.70897000000001],"type":"Point"},"name":"Genesis # 1 West Indian"} +,{"_id":{"$oid":"55cba2476c522cafdb0542d8"},"location":{"coordinates":[-73.9860597,40.7431194],"type":"Point"},"name":"N.Y. Life Executive Dining Room ."} +,{"_id":{"$oid":"55cba2476c522cafdb0542d9"},"location":{"coordinates":[-73.9897793,40.7260641],"type":"Point"},"name":"Wine Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0542da"},"location":{"coordinates":[-73.9692136,40.7976317],"type":"Point"},"name":"Broadway Bagel"} +,{"_id":{"$oid":"55cba2476c522cafdb0542db"},"location":{"coordinates":[-74.00219299999999,40.6855138],"type":"Point"},"name":"Jake'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0542dc"},"location":{"coordinates":[-74.001914,40.7313345],"type":"Point"},"name":"Pearl"} +,{"_id":{"$oid":"55cba2476c522cafdb0542dd"},"location":{"coordinates":[-73.95233999999999,40.776548],"type":"Point"},"name":"Million Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb0542de"},"location":{"coordinates":[-74.23286519999999,40.5166827],"type":"Point"},"name":"Tottenville Bagels"} +,{"_id":{"$oid":"55cba2476c522cafdb0542df"},"location":{"coordinates":[-73.91972299999999,40.699329],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0542e0"},"location":{"coordinates":[-73.9189052,40.7435696],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0542e1"},"location":{"coordinates":[-73.8308632,40.8451777],"type":"Point"},"name":"Pelham Bake Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb0542e2"},"location":{"coordinates":[-73.9564939,40.650368],"type":"Point"},"name":"Strictly Vegetarian"} +,{"_id":{"$oid":"55cba2476c522cafdb0542e3"},"location":{"coordinates":[-73.893541,40.755041],"type":"Point"},"name":"Ihop"} +,{"_id":{"$oid":"55cba2476c522cafdb0542e4"},"location":{"coordinates":[-73.789959,40.707333],"type":"Point"},"name":"Perfecto Pizza \u0026 Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb0542e5"},"location":{"coordinates":[-73.9859914,40.750143],"type":"Point"},"name":"Metro Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0542e6"},"location":{"coordinates":[-73.97218939999999,40.7868324],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0542e7"},"location":{"coordinates":[-73.8404011,40.6595729],"type":"Point"},"name":"Gino'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb0542e8"},"location":{"coordinates":[-73.8094089,40.5905154],"type":"Point"},"name":"Ciro Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0542e9"},"location":{"coordinates":[-73.990556,40.749722],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0542ea"},"location":{"coordinates":[-73.97137479999999,40.75398360000001],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0542eb"},"location":{"coordinates":[-73.8208451,40.6800863],"type":"Point"},"name":"John'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0542ec"},"location":{"coordinates":[-74.00856530000001,40.7127305],"type":"Point"},"name":"Bits Bite \u0026 Baguettes"} +,{"_id":{"$oid":"55cba2476c522cafdb0542ed"},"location":{"coordinates":[-73.9823413,40.761032],"type":"Point"},"name":"Bocca"} +,{"_id":{"$oid":"55cba2476c522cafdb0542ee"},"location":{"coordinates":[-73.92511,40.7617012],"type":"Point"},"name":"Mcloughlins Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0542ef"},"location":{"coordinates":[-73.79606679999999,40.7059888],"type":"Point"},"name":"Patty World"} +,{"_id":{"$oid":"55cba2476c522cafdb0542f0"},"location":{"coordinates":[-73.9847939,40.744186],"type":"Point"},"name":"Campanile"} +,{"_id":{"$oid":"55cba2476c522cafdb0542f1"},"location":{"coordinates":[-73.8817708,40.7502275],"type":"Point"},"name":"La Picada Azuaya Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0542f2"},"location":{"coordinates":[-73.98051989999999,40.6607441],"type":"Point"},"name":"Connecticut Muffin"} +,{"_id":{"$oid":"55cba2476c522cafdb0542f3"},"location":{"coordinates":[-73.9883612,40.7286391],"type":"Point"},"name":"Khyber Pass"} +,{"_id":{"$oid":"55cba2476c522cafdb0542f4"},"location":{"coordinates":[-73.8822543,40.7497133],"type":"Point"},"name":"El Chivito D'Oro Iii"} +,{"_id":{"$oid":"55cba2476c522cafdb0542f5"},"location":{"coordinates":[-73.9462238,40.656571],"type":"Point"},"name":"Kings County Cafeteria Bldg T"} +,{"_id":{"$oid":"55cba2476c522cafdb0542f6"},"location":{"coordinates":[-73.9683426,40.8022977],"type":"Point"},"name":"Underground Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb0542f7"},"location":{"coordinates":[-73.98259569999999,40.7692175],"type":"Point"},"name":"Starbucks Coffee #7344"} +,{"_id":{"$oid":"55cba2476c522cafdb0542f8"},"location":{"coordinates":[-73.99222379999999,40.6995965],"type":"Point"},"name":"Cranberry'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0542f9"},"location":{"coordinates":[-73.8216636,40.5838155],"type":"Point"},"name":"101 Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb0542fa"},"location":{"coordinates":[-73.9550998,40.7336187],"type":"Point"},"name":"Triangolo Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb0542fb"},"location":{"coordinates":[-74.0095256,40.7107975],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0542fc"},"location":{"coordinates":[-74.004848,40.718417],"type":"Point"},"name":"South'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0542fd"},"location":{"coordinates":[-73.9801263,40.7616971],"type":"Point"},"name":"West 53Rd Gourmet Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb0542fe"},"location":{"coordinates":[-73.9771979,40.78838320000001],"type":"Point"},"name":"The Parlour"} +,{"_id":{"$oid":"55cba2476c522cafdb0542ff"},"location":{"coordinates":[-73.8079209,40.706527],"type":"Point"},"name":"Lovell'S Guiding Light"} +,{"_id":{"$oid":"55cba2476c522cafdb054300"},"location":{"coordinates":[-74.010318,40.7100628],"type":"Point"},"name":"Majestic Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054301"},"location":{"coordinates":[-73.804851,40.70223],"type":"Point"},"name":"La Nueva Playitas"} +,{"_id":{"$oid":"55cba2476c522cafdb054302"},"location":{"coordinates":[-74.16620540000001,40.6358327],"type":"Point"},"name":"Alex'S Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb054303"},"location":{"coordinates":[-73.991309,40.75190600000001],"type":"Point"},"name":"Fuji Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb054304"},"location":{"coordinates":[-73.932473,40.7139783],"type":"Point"},"name":"Pumps Exotic Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054305"},"location":{"coordinates":[-74.0080346,40.7349704],"type":"Point"},"name":"The Otheroom"} +,{"_id":{"$oid":"55cba2476c522cafdb054306"},"location":{"coordinates":[-73.8465526,40.8444831],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054307"},"location":{"coordinates":[-74.0166532,40.710408],"type":"Point"},"name":"Picasso Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb054308"},"location":{"coordinates":[-74.0085142,40.7480556],"type":"Point"},"name":"Bowlmor Chelsea Piers"} +,{"_id":{"$oid":"55cba2476c522cafdb054309"},"location":{"coordinates":[-73.9702969,40.75983919999999],"type":"Point"},"name":"3 Deli \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb05430a"},"location":{"coordinates":[-74.005607,40.62240800000001],"type":"Point"},"name":"Krispy Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb05430b"},"location":{"coordinates":[-73.9216658,40.7414459],"type":"Point"},"name":"Mario'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05430c"},"location":{"coordinates":[-74.02758899999999,40.631071],"type":"Point"},"name":"Salty Dog Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05430d"},"location":{"coordinates":[-73.9820768,40.764063],"type":"Point"},"name":"Flute"} +,{"_id":{"$oid":"55cba2476c522cafdb05430e"},"location":{"coordinates":[-73.7740604,40.6600397],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb05430f"},"location":{"coordinates":[-73.980368,40.780879],"type":"Point"},"name":"Citrus Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb054310"},"location":{"coordinates":[-73.9311954,40.7692441],"type":"Point"},"name":"S S Calabro Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb054311"},"location":{"coordinates":[-73.86596779999999,40.6980396],"type":"Point"},"name":"Forest Park Golf Course"} +,{"_id":{"$oid":"55cba2476c522cafdb054312"},"location":{"coordinates":[-74.00977089999999,40.7161935],"type":"Point"},"name":"Reade Street Pub \u0026 Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb054313"},"location":{"coordinates":[-74.00121299999999,40.726163],"type":"Point"},"name":"Cafe Borgia Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb054314"},"location":{"coordinates":[-74.0232,40.634603],"type":"Point"},"name":"The Original Pizza Of 4Th Ave"} +,{"_id":{"$oid":"55cba2476c522cafdb054315"},"location":{"coordinates":[-73.8184241,40.7650549],"type":"Point"},"name":"Xtra Cheese Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb054316"},"location":{"coordinates":[-73.992334,40.6902356],"type":"Point"},"name":"My Little Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb054317"},"location":{"coordinates":[-73.9767435,40.7856578],"type":"Point"},"name":"Fred'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054318"},"location":{"coordinates":[-74.1091687,40.6379716],"type":"Point"},"name":"Vincents Bagel"} +,{"_id":{"$oid":"55cba2476c522cafdb054319"},"location":{"coordinates":[-73.96952879999999,40.7621856],"type":"Point"},"name":"La Gourmet"} +,{"_id":{"$oid":"55cba2476c522cafdb05431a"},"location":{"coordinates":[-73.9875571,40.7627884],"type":"Point"},"name":"Blockheads"} +,{"_id":{"$oid":"55cba2476c522cafdb05431b"},"location":{"coordinates":[-73.9443527,40.7472594],"type":"Point"},"name":"L. A. Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb05431c"},"location":{"coordinates":[-73.97384439999999,40.7532901],"type":"Point"},"name":"Restaurant Riki"} +,{"_id":{"$oid":"55cba2476c522cafdb05431d"},"location":{"coordinates":[-73.9950905,40.7435489],"type":"Point"},"name":"Monster Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb05431e"},"location":{"coordinates":[-73.9991637,40.75368539999999],"type":"Point"},"name":"Kabooz'S Bar \u0026 Grille"} +,{"_id":{"$oid":"55cba2476c522cafdb05431f"},"location":{"coordinates":[-73.9218923,40.8169858],"type":"Point"},"name":"Yolanda Pizzeria Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054320"},"location":{"coordinates":[-73.8834765,40.6540355],"type":"Point"},"name":"Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb054321"},"location":{"coordinates":[-73.89531939999999,40.7007151],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb054322"},"location":{"coordinates":[-74.005526,40.719703],"type":"Point"},"name":"Tribeca Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb054323"},"location":{"coordinates":[-73.8227505,40.7602117],"type":"Point"},"name":"Maggie Mays"} +,{"_id":{"$oid":"55cba2476c522cafdb054324"},"location":{"coordinates":[-73.82985099999999,40.758158],"type":"Point"},"name":"Red Bowl Noodle Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb054325"},"location":{"coordinates":[-73.90044569999999,40.8622067],"type":"Point"},"name":"Gyro King"} +,{"_id":{"$oid":"55cba2476c522cafdb054326"},"location":{"coordinates":[-73.985383,40.7565079],"type":"Point"},"name":"Rick'S Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054327"},"location":{"coordinates":[-73.9845351,40.7021028],"type":"Point"},"name":"Los Papis Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054328"},"location":{"coordinates":[-73.9934785,40.7527038],"type":"Point"},"name":"New Yorker Hotel Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb054329"},"location":{"coordinates":[-73.918155,40.758836],"type":"Point"},"name":"Pollos A La Barasa Mario"} +,{"_id":{"$oid":"55cba2476c522cafdb05432a"},"location":{"coordinates":[-73.9232217,40.6560986],"type":"Point"},"name":"Wah Do Mr. Chan'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05432b"},"location":{"coordinates":[-73.989425,40.612718],"type":"Point"},"name":"Caffe' Romeo"} +,{"_id":{"$oid":"55cba2476c522cafdb05432c"},"location":{"coordinates":[-73.77705999999999,40.680128],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb05432d"},"location":{"coordinates":[-73.99741929999999,40.7421817],"type":"Point"},"name":"Roccos Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05432e"},"location":{"coordinates":[-73.988839,40.747559],"type":"Point"},"name":"O'Reilly'S Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb05432f"},"location":{"coordinates":[-73.994787,40.695161],"type":"Point"},"name":"Connecticut Muffin"} +,{"_id":{"$oid":"55cba2476c522cafdb054330"},"location":{"coordinates":[-73.9949106,40.69064520000001],"type":"Point"},"name":"Peter'S Waterfront Ale House"} +,{"_id":{"$oid":"55cba2476c522cafdb054331"},"location":{"coordinates":[-73.9853778,40.7278502],"type":"Point"},"name":"Stromboli Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054332"},"location":{"coordinates":[-74.0673997,40.6151642],"type":"Point"},"name":"Tony'S Brick Oven"} +,{"_id":{"$oid":"55cba2476c522cafdb054333"},"location":{"coordinates":[-73.9921584,40.72672],"type":"Point"},"name":"Great Jones Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054334"},"location":{"coordinates":[-73.992812,40.740979],"type":"Point"},"name":"Alyshia Aleem Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb054335"},"location":{"coordinates":[-73.9824071,40.6584867],"type":"Point"},"name":"Elora Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054336"},"location":{"coordinates":[-73.8565856,40.8955218],"type":"Point"},"name":"Burger King"} +,{"_id":{"$oid":"55cba2476c522cafdb054337"},"location":{"coordinates":[-73.9704367,40.6893567],"type":"Point"},"name":"Marios Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb054338"},"location":{"coordinates":[-74.0091352,40.7090346],"type":"Point"},"name":"Diwan-E- Khaas"} +,{"_id":{"$oid":"55cba2476c522cafdb054339"},"location":{"coordinates":[-74.00035129999999,40.59535289999999],"type":"Point"},"name":"Wendy'S"} +,{"_id":{"$oid":"55cba2476c522cafdb05433a"},"location":{"coordinates":[-74.01185749999999,40.7089582],"type":"Point"},"name":"Big Als Chicago Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05433b"},"location":{"coordinates":[-73.9947464,40.7246698],"type":"Point"},"name":"Botanica Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05433c"},"location":{"coordinates":[-73.9558523,40.5919797],"type":"Point"},"name":"Bassett Caterers"} +,{"_id":{"$oid":"55cba2476c522cafdb05433d"},"location":{"coordinates":[-73.947113,40.724749],"type":"Point"},"name":"Restauracja Relax"} +,{"_id":{"$oid":"55cba2476c522cafdb05433e"},"location":{"coordinates":[-73.8812598,40.6667731],"type":"Point"},"name":"Golden Horse Chinese Rest"} +,{"_id":{"$oid":"55cba2476c522cafdb05433f"},"location":{"coordinates":[-73.985224,40.76816549999999],"type":"Point"},"name":"Lunch Box"} +,{"_id":{"$oid":"55cba2476c522cafdb054340"},"location":{"coordinates":[-73.95581849999999,40.7852711],"type":"Point"},"name":"Le Paris Bistrot Francais"} +,{"_id":{"$oid":"55cba2476c522cafdb054341"},"location":{"coordinates":[-73.9971087,40.71902060000001],"type":"Point"},"name":"Ferrara'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054342"},"location":{"coordinates":[-73.9972901,40.7189915],"type":"Point"},"name":"Caffe Palermo"} +,{"_id":{"$oid":"55cba2476c522cafdb054343"},"location":{"coordinates":[-74.0124913,40.704817],"type":"Point"},"name":"Burger King"} +,{"_id":{"$oid":"55cba2476c522cafdb054344"},"location":{"coordinates":[-73.9738835,40.792409],"type":"Point"},"name":"Perfecto Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb054345"},"location":{"coordinates":[-73.9798586,40.6692539],"type":"Point"},"name":"La Bruschetta Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054346"},"location":{"coordinates":[-74.0085357,40.70620539999999],"type":"Point"},"name":"Le Glacier"} +,{"_id":{"$oid":"55cba2476c522cafdb054347"},"location":{"coordinates":[-73.9895669,40.76022100000001],"type":"Point"},"name":"Le Rivage"} +,{"_id":{"$oid":"55cba2476c522cafdb054348"},"location":{"coordinates":[-73.9667501,40.8047524],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb054349"},"location":{"coordinates":[-73.92431599999999,40.75651879999999],"type":"Point"},"name":"Aladdin"} +,{"_id":{"$oid":"55cba2476c522cafdb05434a"},"location":{"coordinates":[-74.0105816,40.61174949999999],"type":"Point"},"name":"Puritan Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05434b"},"location":{"coordinates":[-74.1493462,40.5515286],"type":"Point"},"name":"La Candela Espanola"} +,{"_id":{"$oid":"55cba2476c522cafdb05434c"},"location":{"coordinates":[-73.98311679999999,40.72694509999999],"type":"Point"},"name":"Ten Degrees Bistro"} +,{"_id":{"$oid":"55cba2476c522cafdb05434d"},"location":{"coordinates":[-73.93299859999999,40.76386180000001],"type":"Point"},"name":"Dunkin' Donuts, Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb05434e"},"location":{"coordinates":[-73.991991,40.717824],"type":"Point"},"name":"Lok Sing Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05434f"},"location":{"coordinates":[-73.8289053,40.7581581],"type":"Point"},"name":"Woo Chon Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054350"},"location":{"coordinates":[-73.9878842,40.7296294],"type":"Point"},"name":"Soba-Ya"} +,{"_id":{"$oid":"55cba2476c522cafdb054351"},"location":{"coordinates":[-73.9849976,40.7276766],"type":"Point"},"name":"Simone Bar Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054352"},"location":{"coordinates":[-73.99025309999999,40.7519294],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb054353"},"location":{"coordinates":[-73.9700998,40.7610356],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb054354"},"location":{"coordinates":[-73.9515438,40.7826501],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb054355"},"location":{"coordinates":[-73.9746049,40.7836197],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb054356"},"location":{"coordinates":[-73.95833,40.7725508],"type":"Point"},"name":"Atlantic Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb054357"},"location":{"coordinates":[-73.9192774,40.8644476],"type":"Point"},"name":"El Tina Fish Market \u0026 Seafood Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054358"},"location":{"coordinates":[-74.00362559999999,40.7295123],"type":"Point"},"name":"Blue Ribbon"} +,{"_id":{"$oid":"55cba2476c522cafdb054359"},"location":{"coordinates":[-74.1673983,40.5865347],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb05435a"},"location":{"coordinates":[-74.0075542,40.7077614],"type":"Point"},"name":"Lane Deli \u0026 Catering"} +,{"_id":{"$oid":"55cba2476c522cafdb05435b"},"location":{"coordinates":[-73.97840099999999,40.7645814],"type":"Point"},"name":"Norma'S, Burger Joint"} +,{"_id":{"$oid":"55cba2476c522cafdb05435c"},"location":{"coordinates":[-73.9897794,40.7348529],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb05435d"},"location":{"coordinates":[-73.994725,40.744009],"type":"Point"},"name":"Francisco'S Centro Vasco"} +,{"_id":{"$oid":"55cba2476c522cafdb05435e"},"location":{"coordinates":[-73.977569,40.745913],"type":"Point"},"name":"Joshua Tree"} +,{"_id":{"$oid":"55cba2476c522cafdb05435f"},"location":{"coordinates":[-73.9893222,40.7295826],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054360"},"location":{"coordinates":[-73.78629219999999,40.8471662],"type":"Point"},"name":"City Island Diner /Snug Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054361"},"location":{"coordinates":[-74.22122900000001,40.5494808],"type":"Point"},"name":"Rossville Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb054362"},"location":{"coordinates":[-73.9590872,40.7743729],"type":"Point"},"name":"Wrap N Run Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb054363"},"location":{"coordinates":[-73.8085929,40.8134608],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb054364"},"location":{"coordinates":[-73.9810679,40.772009],"type":"Point"},"name":"Picholine"} +,{"_id":{"$oid":"55cba2476c522cafdb054365"},"location":{"coordinates":[-73.8835549,40.6661864],"type":"Point"},"name":"La Lechonera Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054366"},"location":{"coordinates":[-73.9933803,40.7328673],"type":"Point"},"name":"Patsy'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb054367"},"location":{"coordinates":[-73.9591141,40.8089857],"type":"Point"},"name":"Che Bella Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054368"},"location":{"coordinates":[-73.8480992,40.7212505],"type":"Point"},"name":"T.G.I. Friday'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054369"},"location":{"coordinates":[-73.989713,40.7620074],"type":"Point"},"name":"Delta Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb05436a"},"location":{"coordinates":[-73.97926749999999,40.77620940000001],"type":"Point"},"name":"Cassis Bistro/Brasserie"} +,{"_id":{"$oid":"55cba2476c522cafdb05436b"},"location":{"coordinates":[-73.984163,40.7518477],"type":"Point"},"name":"Havana Ny"} +,{"_id":{"$oid":"55cba2476c522cafdb05436c"},"location":{"coordinates":[-73.954382,40.811811],"type":"Point"},"name":"Domino'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05436d"},"location":{"coordinates":[-73.9707385,40.7940122],"type":"Point"},"name":"Famous Famiglia Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05436e"},"location":{"coordinates":[-74.0001028,40.7619413],"type":"Point"},"name":"42Nd Street Pizza Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb05436f"},"location":{"coordinates":[-73.983319,40.765422],"type":"Point"},"name":"Nocello"} +,{"_id":{"$oid":"55cba2476c522cafdb054370"},"location":{"coordinates":[-73.91595199999999,40.7627068],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb054371"},"location":{"coordinates":[-73.7677262,40.7563242],"type":"Point"},"name":"Laterna Taverna"} +,{"_id":{"$oid":"55cba2476c522cafdb054372"},"location":{"coordinates":[-73.992818,40.69415300000001],"type":"Point"},"name":"Lichee Nut"} +,{"_id":{"$oid":"55cba2476c522cafdb054373"},"location":{"coordinates":[-73.981948,40.756211],"type":"Point"},"name":"Park Italian Gourment"} +,{"_id":{"$oid":"55cba2476c522cafdb054374"},"location":{"coordinates":[-74.0291285,40.6288256],"type":"Point"},"name":"Off Shore Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054375"},"location":{"coordinates":[-73.9757291,40.7454586],"type":"Point"},"name":"Gemini Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb054376"},"location":{"coordinates":[-74.001735,40.746365],"type":"Point"},"name":"The Rail Line Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb054377"},"location":{"coordinates":[-73.965706,40.8061198],"type":"Point"},"name":"Nusbaum \u0026 Wu"} +,{"_id":{"$oid":"55cba2476c522cafdb054378"},"location":{"coordinates":[-73.922236,40.754271],"type":"Point"},"name":"Steinway Billiard"} +,{"_id":{"$oid":"55cba2476c522cafdb054379"},"location":{"coordinates":[-73.818094,40.830816],"type":"Point"},"name":"P.J. Brady'S Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb05437a"},"location":{"coordinates":[-73.9798836,40.7272748],"type":"Point"},"name":"Box Car Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb05437b"},"location":{"coordinates":[-73.811117,40.70238560000001],"type":"Point"},"name":"El Nuevo Cafe Latino"} +,{"_id":{"$oid":"55cba2476c522cafdb05437c"},"location":{"coordinates":[-74.00264159999999,40.7246631],"type":"Point"},"name":"Bistro Les Amis"} +,{"_id":{"$oid":"55cba2476c522cafdb05437d"},"location":{"coordinates":[-73.734503,40.772264],"type":"Point"},"name":"Kebab House"} +,{"_id":{"$oid":"55cba2476c522cafdb05437e"},"location":{"coordinates":[-74.11509269999999,40.5730559],"type":"Point"},"name":"Brioso Ristorante"} +,{"_id":{"$oid":"55cba2476c522cafdb05437f"},"location":{"coordinates":[-73.9773889,40.779388],"type":"Point"},"name":"Dive 75"} +,{"_id":{"$oid":"55cba2476c522cafdb054380"},"location":{"coordinates":[-73.88907069999999,40.8735267],"type":"Point"},"name":"Bedford Cafe \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054381"},"location":{"coordinates":[-73.98881639999999,40.7538172],"type":"Point"},"name":"Health King"} +,{"_id":{"$oid":"55cba2476c522cafdb054382"},"location":{"coordinates":[-74.0070372,40.6040506],"type":"Point"},"name":"Nicky'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054383"},"location":{"coordinates":[-73.9836866,40.7550567],"type":"Point"},"name":"Hale \u0026 Hearty Soups"} +,{"_id":{"$oid":"55cba2476c522cafdb054384"},"location":{"coordinates":[-74.0094183,40.7258678],"type":"Point"},"name":"Kana Tapas Bar \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054385"},"location":{"coordinates":[-73.99341299999999,40.633354],"type":"Point"},"name":"Strauss Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb054386"},"location":{"coordinates":[-73.968611,40.7552329],"type":"Point"},"name":"Morningstar Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054387"},"location":{"coordinates":[-74.089108,40.590548],"type":"Point"},"name":"Burger King"} +,{"_id":{"$oid":"55cba2476c522cafdb054388"},"location":{"coordinates":[-74.144395,40.624603],"type":"Point"},"name":"Burger King"} +,{"_id":{"$oid":"55cba2476c522cafdb054389"},"location":{"coordinates":[-74.1152092,40.56391],"type":"Point"},"name":"Burger King"} +,{"_id":{"$oid":"55cba2476c522cafdb05438a"},"location":{"coordinates":[-74.16819079999999,40.5854225],"type":"Point"},"name":"Burger King"} +,{"_id":{"$oid":"55cba2476c522cafdb05438b"},"location":{"coordinates":[-74.16489229999999,40.5897778],"type":"Point"},"name":"Barios Pizza \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05438c"},"location":{"coordinates":[-73.9562876,40.7175074],"type":"Point"},"name":"The Abbey"} +,{"_id":{"$oid":"55cba2476c522cafdb05438d"},"location":{"coordinates":[-73.97231359999999,40.75703730000001],"type":"Point"},"name":"Mr K'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05438e"},"location":{"coordinates":[-73.9336691,40.7430396],"type":"Point"},"name":"Van Dam Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb05438f"},"location":{"coordinates":[-73.9846823,40.7634631],"type":"Point"},"name":"Russia Vodka Room"} +,{"_id":{"$oid":"55cba2476c522cafdb054390"},"location":{"coordinates":[-73.970443,40.75844],"type":"Point"},"name":"Citibank Executive Conference Center"} +,{"_id":{"$oid":"55cba2476c522cafdb054391"},"location":{"coordinates":[-73.9784919,40.7250446],"type":"Point"},"name":"The Summit"} +,{"_id":{"$oid":"55cba2476c522cafdb054392"},"location":{"coordinates":[-73.958612,40.663832],"type":"Point"},"name":"Buzz"} +,{"_id":{"$oid":"55cba2476c522cafdb054393"},"location":{"coordinates":[-73.9778412,40.7531292],"type":"Point"},"name":"Michael Jordan'S Steak House - In Grand Central"} +,{"_id":{"$oid":"55cba2476c522cafdb054394"},"location":{"coordinates":[-73.9544931,40.7329212],"type":"Point"},"name":"Hop Lee Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb054395"},"location":{"coordinates":[-74.000002,40.72735],"type":"Point"},"name":"Madame X"} +,{"_id":{"$oid":"55cba2476c522cafdb054396"},"location":{"coordinates":[-73.9421862,40.67102999999999],"type":"Point"},"name":"Bobby'S Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb054397"},"location":{"coordinates":[-73.9178935,40.769715],"type":"Point"},"name":"Caprice"} +,{"_id":{"$oid":"55cba2476c522cafdb054398"},"location":{"coordinates":[-73.94302979999999,40.707777],"type":"Point"},"name":"Danny'S Pizzeria Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb054399"},"location":{"coordinates":[-73.91933759999999,40.7591182],"type":"Point"},"name":"Polito'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05439a"},"location":{"coordinates":[-73.93439289999999,40.7938948],"type":"Point"},"name":"Rao'S Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb05439b"},"location":{"coordinates":[-73.9748154,40.601702],"type":"Point"},"name":"Joe'S Of Ave U"} +,{"_id":{"$oid":"55cba2476c522cafdb05439c"},"location":{"coordinates":[-74.007454,40.71637800000001],"type":"Point"},"name":"City Hall Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05439d"},"location":{"coordinates":[-73.7665269,40.760932],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb05439e"},"location":{"coordinates":[-74.0067949,40.6042497],"type":"Point"},"name":"Tanjia Hukka Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05439f"},"location":{"coordinates":[-73.9866514,40.7620624],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0543a0"},"location":{"coordinates":[-73.9410939,40.6995104],"type":"Point"},"name":"Lucky Star Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0543a1"},"location":{"coordinates":[-73.97717109999999,40.7633128],"type":"Point"},"name":"Ise Japanese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0543a2"},"location":{"coordinates":[-73.778226,40.7373276],"type":"Point"},"name":"Fresh Meadow'S Pizza \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0543a3"},"location":{"coordinates":[-74.0032852,40.5735391],"type":"Point"},"name":"Sea Gate Beach Club"} +,{"_id":{"$oid":"55cba2476c522cafdb0543a4"},"location":{"coordinates":[-73.82961499999999,40.708951],"type":"Point"},"name":"Mehak"} +,{"_id":{"$oid":"55cba2476c522cafdb0543a5"},"location":{"coordinates":[-73.987849,40.759298],"type":"Point"},"name":"Playwright Celtic Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb0543a6"},"location":{"coordinates":[-73.9933583,40.72040640000001],"type":"Point"},"name":"The Bowery Ballroom"} +,{"_id":{"$oid":"55cba2476c522cafdb0543a7"},"location":{"coordinates":[-73.9798747,40.7642459],"type":"Point"},"name":"The Carnegie Cigar Club And Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb0543a8"},"location":{"coordinates":[-73.992991,40.694197],"type":"Point"},"name":"Monty Q'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0543a9"},"location":{"coordinates":[-73.9702781,40.7637766],"type":"Point"},"name":"Gene'S Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb0543aa"},"location":{"coordinates":[-73.9880435,40.7641423],"type":"Point"},"name":"Afghan Kebab House #1"} +,{"_id":{"$oid":"55cba2476c522cafdb0543ab"},"location":{"coordinates":[-73.9034295,40.7410721],"type":"Point"},"name":"Hunan ''K'' Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0543ac"},"location":{"coordinates":[-73.99657499999999,40.61236299999999],"type":"Point"},"name":"C \u0026 C Catering"} +,{"_id":{"$oid":"55cba2476c522cafdb0543ad"},"location":{"coordinates":[-73.962046,40.771073],"type":"Point"},"name":"Lexington Bar And Books"} +,{"_id":{"$oid":"55cba2476c522cafdb0543ae"},"location":{"coordinates":[-74.003165,40.748505],"type":"Point"},"name":"Bottino"} +,{"_id":{"$oid":"55cba2476c522cafdb0543af"},"location":{"coordinates":[-73.909325,40.6696359],"type":"Point"},"name":"Pitkin Caribbean Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0543b0"},"location":{"coordinates":[-73.97741599999999,40.783874],"type":"Point"},"name":"Sarabeth'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0543b1"},"location":{"coordinates":[-73.8950732,40.7021745],"type":"Point"},"name":"Krystal European Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0543b2"},"location":{"coordinates":[-73.8892497,40.8537883],"type":"Point"},"name":"Pasquale Rigoletto Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0543b3"},"location":{"coordinates":[-73.98431699999999,40.727441],"type":"Point"},"name":"Cafe Mogador"} +,{"_id":{"$oid":"55cba2476c522cafdb0543b4"},"location":{"coordinates":[-73.8838988,40.8673384],"type":"Point"},"name":"Webster Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0543b5"},"location":{"coordinates":[-73.9976592,40.6905615],"type":"Point"},"name":"Taco Bell, Au Bon Pain"} +,{"_id":{"$oid":"55cba2476c522cafdb0543b6"},"location":{"coordinates":[-73.95815569999999,40.7694243],"type":"Point"},"name":"Little Vincent'S Pizza Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0543b7"},"location":{"coordinates":[-73.9988889,40.7477778],"type":"Point"},"name":"Chickpea"} +,{"_id":{"$oid":"55cba2476c522cafdb0543b8"},"location":{"coordinates":[-73.99788459999999,40.740528],"type":"Point"},"name":"Cafeteria"} +,{"_id":{"$oid":"55cba2476c522cafdb0543b9"},"location":{"coordinates":[-73.84662039999999,40.8372031],"type":"Point"},"name":"Capri Pizza Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0543ba"},"location":{"coordinates":[-73.97886869999999,40.6657934],"type":"Point"},"name":"Dizzy'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0543bb"},"location":{"coordinates":[-73.9788076,40.7830627],"type":"Point"},"name":"Planet Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb0543bc"},"location":{"coordinates":[-74.1033173,40.6309981],"type":"Point"},"name":"Afternoone'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0543bd"},"location":{"coordinates":[-73.994399,40.7269571],"type":"Point"},"name":"Bond St"} +,{"_id":{"$oid":"55cba2476c522cafdb0543be"},"location":{"coordinates":[-74.1586641,40.612597],"type":"Point"},"name":"Applebee'S Neighborhood Grill \u0026 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0543bf"},"location":{"coordinates":[-73.84875869999999,40.8984725],"type":"Point"},"name":"Tony'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0543c0"},"location":{"coordinates":[-73.98056369999999,40.755558],"type":"Point"},"name":"Point Break"} +,{"_id":{"$oid":"55cba2476c522cafdb0543c1"},"location":{"coordinates":[-73.7864848,40.8463454],"type":"Point"},"name":"Black Whale"} +,{"_id":{"$oid":"55cba2476c522cafdb0543c2"},"location":{"coordinates":[-73.9760372,40.6309706],"type":"Point"},"name":"Glatt Kosher Family Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0543c3"},"location":{"coordinates":[-73.886871,40.854888],"type":"Point"},"name":"Caffe Egidio"} +,{"_id":{"$oid":"55cba2476c522cafdb0543c4"},"location":{"coordinates":[-73.955328,40.768115],"type":"Point"},"name":"Nino'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0543c5"},"location":{"coordinates":[-73.929917,40.650678],"type":"Point"},"name":"P\u0026S Bakery Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0543c6"},"location":{"coordinates":[-73.9823203,40.71446419999999],"type":"Point"},"name":"A-1 Pizza Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb0543c7"},"location":{"coordinates":[-73.9726997,40.7858569],"type":"Point"},"name":"Good Enough To Eat (A.G. Bistro)"} +,{"_id":{"$oid":"55cba2476c522cafdb0543c8"},"location":{"coordinates":[-73.8679519,40.8540027],"type":"Point"},"name":"Pizza Express"} +,{"_id":{"$oid":"55cba2476c522cafdb0543c9"},"location":{"coordinates":[-73.9446811,40.8237287],"type":"Point"},"name":"Famous Fish Market"} +,{"_id":{"$oid":"55cba2476c522cafdb0543ca"},"location":{"coordinates":[-73.988615,40.726809],"type":"Point"},"name":"Frank"} +,{"_id":{"$oid":"55cba2476c522cafdb0543cb"},"location":{"coordinates":[-73.92594439999999,40.8272129],"type":"Point"},"name":"Billy'S Sport Bar Restaurant \u0026 Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb0543cc"},"location":{"coordinates":[-73.78914809999999,40.765817],"type":"Point"},"name":"Primo Amore"} +,{"_id":{"$oid":"55cba2476c522cafdb0543cd"},"location":{"coordinates":[-73.9478306,40.778485],"type":"Point"},"name":"Cavatappo Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0543ce"},"location":{"coordinates":[-73.99324299999999,40.694735],"type":"Point"},"name":"Caffe Buon Gusto"} +,{"_id":{"$oid":"55cba2476c522cafdb0543cf"},"location":{"coordinates":[-73.7822056,40.6434612],"type":"Point"},"name":"Korean Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb0543d0"},"location":{"coordinates":[-73.9896377,40.7607259],"type":"Point"},"name":"Swing 46 Jazz And Supper Club"} +,{"_id":{"$oid":"55cba2476c522cafdb0543d1"},"location":{"coordinates":[-73.9483286,40.6324028],"type":"Point"},"name":"Hillel Bagels"} +,{"_id":{"$oid":"55cba2476c522cafdb0543d2"},"location":{"coordinates":[-73.905135,40.75681],"type":"Point"},"name":"Bagelman Of Woodside"} +,{"_id":{"$oid":"55cba2476c522cafdb0543d3"},"location":{"coordinates":[-73.9498136,40.7442847],"type":"Point"},"name":"Millie'S Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb0543d4"},"location":{"coordinates":[-73.983649,40.781475],"type":"Point"},"name":"The Esplanade"} +,{"_id":{"$oid":"55cba2476c522cafdb0543d5"},"location":{"coordinates":[-73.9834123,40.7379459],"type":"Point"},"name":"Rolf'S German Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0543d6"},"location":{"coordinates":[-73.9690754,40.7604647],"type":"Point"},"name":"The Fitz"} +,{"_id":{"$oid":"55cba2476c522cafdb0543d7"},"location":{"coordinates":[-73.9814049,40.64164460000001],"type":"Point"},"name":"Taqueria Restaurante Mi Bario"} +,{"_id":{"$oid":"55cba2476c522cafdb0543d8"},"location":{"coordinates":[-73.9194346,40.8642219],"type":"Point"},"name":"Ten-Tan Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0543d9"},"location":{"coordinates":[-73.9627015,40.6493416],"type":"Point"},"name":"Brooklyn Pizza Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb0543da"},"location":{"coordinates":[-73.972619,40.786351],"type":"Point"},"name":"La Mirabelle Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0543db"},"location":{"coordinates":[-73.8832285,40.7500626],"type":"Point"},"name":"Taco Bell"} +,{"_id":{"$oid":"55cba2476c522cafdb0543dc"},"location":{"coordinates":[-73.999279,40.73228599999999],"type":"Point"},"name":"Babbo Ristorante E Enoteca"} +,{"_id":{"$oid":"55cba2476c522cafdb0543dd"},"location":{"coordinates":[-73.739007,40.7671066],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0543de"},"location":{"coordinates":[-73.9935848,40.7330038],"type":"Point"},"name":"Chic-Fil-A, Quiznos Subs, Jw'S, Tossed"} +,{"_id":{"$oid":"55cba2476c522cafdb0543df"},"location":{"coordinates":[-73.9439067,40.7135076],"type":"Point"},"name":"Garden Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0543e0"},"location":{"coordinates":[-73.9669,40.7635118],"type":"Point"},"name":"The Bread Factory Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0543e1"},"location":{"coordinates":[-73.98837089999999,40.7212926],"type":"Point"},"name":"Arlene'S Grocery"} +,{"_id":{"$oid":"55cba2476c522cafdb0543e2"},"location":{"coordinates":[-73.9881904,40.7313942],"type":"Point"},"name":"New York University - Courtyard Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0543e3"},"location":{"coordinates":[-73.88398719999999,40.8456386],"type":"Point"},"name":"Pizza Italia 1"} +,{"_id":{"$oid":"55cba2476c522cafdb0543e4"},"location":{"coordinates":[-73.9863142,40.72259469999999],"type":"Point"},"name":"The Library"} +,{"_id":{"$oid":"55cba2476c522cafdb0543e5"},"location":{"coordinates":[-74.001217,40.735965],"type":"Point"},"name":"Empire Szechuan Village"} +,{"_id":{"$oid":"55cba2476c522cafdb0543e6"},"location":{"coordinates":[-73.9692216,40.7657388],"type":"Point"},"name":"The Lowell"} +,{"_id":{"$oid":"55cba2476c522cafdb0543e7"},"location":{"coordinates":[-73.85082310000001,40.693918],"type":"Point"},"name":"Bicheiros Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0543e8"},"location":{"coordinates":[-74.005769,40.740794],"type":"Point"},"name":"Gaslight"} +,{"_id":{"$oid":"55cba2476c522cafdb0543e9"},"location":{"coordinates":[-73.9559791,40.779291],"type":"Point"},"name":"Hot \u0026 Crusty Bagels Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0543ea"},"location":{"coordinates":[-74.0084394,40.7328494],"type":"Point"},"name":"Trattoria I Malatesta"} +,{"_id":{"$oid":"55cba2476c522cafdb0543eb"},"location":{"coordinates":[-73.98565239999999,40.7263767],"type":"Point"},"name":"Caravan Of Dreams"} +,{"_id":{"$oid":"55cba2476c522cafdb0543ec"},"location":{"coordinates":[-74.0108765,40.7052927],"type":"Point"},"name":"Starbucks Coffee #7416"} +,{"_id":{"$oid":"55cba2476c522cafdb0543ed"},"location":{"coordinates":[-73.7822056,40.6434612],"type":"Point"},"name":"Japan Airlines Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb0543ee"},"location":{"coordinates":[-74.0071446,40.7409928],"type":"Point"},"name":"Hogs \u0026 Heifers"} +,{"_id":{"$oid":"55cba2476c522cafdb0543ef"},"location":{"coordinates":[-73.9964169,40.629239],"type":"Point"},"name":"Paradise Manor"} +,{"_id":{"$oid":"55cba2476c522cafdb0543f0"},"location":{"coordinates":[-73.8947756,40.7505192],"type":"Point"},"name":"Legends Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0543f1"},"location":{"coordinates":[-73.8107363,40.7314646],"type":"Point"},"name":"Francesco'S Pizzeria Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0543f2"},"location":{"coordinates":[-73.9986648,40.7249049],"type":"Point"},"name":"Mercer Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0543f3"},"location":{"coordinates":[-73.9799214,40.7356341],"type":"Point"},"name":"Rose Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0543f4"},"location":{"coordinates":[-73.9334678,40.6514163],"type":"Point"},"name":"Pam'S Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0543f5"},"location":{"coordinates":[-73.8286956,40.7572907],"type":"Point"},"name":"Latin Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0543f6"},"location":{"coordinates":[-74.0230854,40.6289404],"type":"Point"},"name":"Jean Danet French Pastry"} +,{"_id":{"$oid":"55cba2476c522cafdb0543f7"},"location":{"coordinates":[-73.9004264,40.6520939],"type":"Point"},"name":"104-01 Foster Avenue Coffee Shop(Ups)"} +,{"_id":{"$oid":"55cba2476c522cafdb0543f8"},"location":{"coordinates":[-74.0094471,40.7464969],"type":"Point"},"name":"Spirit Of New York"} +,{"_id":{"$oid":"55cba2476c522cafdb0543f9"},"location":{"coordinates":[-74.1629372,40.5806591],"type":"Point"},"name":"Carvel Ice Cream"} +,{"_id":{"$oid":"55cba2476c522cafdb0543fa"},"location":{"coordinates":[-73.8665421,40.6755027],"type":"Point"},"name":"Burger King"} +,{"_id":{"$oid":"55cba2476c522cafdb0543fb"},"location":{"coordinates":[-73.9470784,40.8081125],"type":"Point"},"name":"Burger King"} +,{"_id":{"$oid":"55cba2476c522cafdb0543fc"},"location":{"coordinates":[-73.957787,40.782685],"type":"Point"},"name":"3 Guys Resturant"} +,{"_id":{"$oid":"55cba2476c522cafdb0543fd"},"location":{"coordinates":[-73.9459945,40.6804254],"type":"Point"},"name":"Burger King"} +,{"_id":{"$oid":"55cba2476c522cafdb0543fe"},"location":{"coordinates":[-73.9302299,40.7608824],"type":"Point"},"name":"Tasty Fast Food"} +,{"_id":{"$oid":"55cba2476c522cafdb0543ff"},"location":{"coordinates":[-74.0094471,40.7464969],"type":"Point"},"name":"Spirit Of New Jersey"} +,{"_id":{"$oid":"55cba2476c522cafdb054400"},"location":{"coordinates":[-73.99307,40.687599],"type":"Point"},"name":"The Original California Taqueria"} +,{"_id":{"$oid":"55cba2476c522cafdb054401"},"location":{"coordinates":[-73.9765899,40.7655851],"type":"Point"},"name":"Whiskey Park"} +,{"_id":{"$oid":"55cba2476c522cafdb054402"},"location":{"coordinates":[-73.9537778,40.7713191],"type":"Point"},"name":"Maruzzella"} +,{"_id":{"$oid":"55cba2476c522cafdb054403"},"location":{"coordinates":[-73.98737,40.754797],"type":"Point"},"name":"Jack'S Restaurant \u0026 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054404"},"location":{"coordinates":[-73.802404,40.674176],"type":"Point"},"name":"The Food Hut"} +,{"_id":{"$oid":"55cba2476c522cafdb054405"},"location":{"coordinates":[-73.999989,40.7437309],"type":"Point"},"name":"The Dish Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054406"},"location":{"coordinates":[-73.9571901,40.7749108],"type":"Point"},"name":"Parma Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054407"},"location":{"coordinates":[-74.16596899999999,40.545066],"type":"Point"},"name":"Giovanni'S Restaurant \u0026 Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054408"},"location":{"coordinates":[-73.9993408,40.7298997],"type":"Point"},"name":"Shade"} +,{"_id":{"$oid":"55cba2476c522cafdb054409"},"location":{"coordinates":[-73.81430759999999,40.7022807],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb05440a"},"location":{"coordinates":[-73.99025309999999,40.7519294],"type":"Point"},"name":"Hale \u0026 Hearty Soups"} +,{"_id":{"$oid":"55cba2476c522cafdb05440b"},"location":{"coordinates":[-73.901158,40.8620949],"type":"Point"},"name":"Steve'S Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb05440c"},"location":{"coordinates":[-73.966315,40.628921],"type":"Point"},"name":"Kent Theatre"} +,{"_id":{"$oid":"55cba2476c522cafdb05440d"},"location":{"coordinates":[-73.985911,40.727171],"type":"Point"},"name":"Wcou Radio / Tile Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05440e"},"location":{"coordinates":[-74.03073289999999,40.6243128],"type":"Point"},"name":"Terranova'S Bake Ridge Bagel"} +,{"_id":{"$oid":"55cba2476c522cafdb05440f"},"location":{"coordinates":[-73.9881122,40.7293616],"type":"Point"},"name":"Solas"} +,{"_id":{"$oid":"55cba2476c522cafdb054410"},"location":{"coordinates":[-73.9878516,40.7484979],"type":"Point"},"name":"Kum Gang San Korean Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054411"},"location":{"coordinates":[-73.97567699999999,40.625333],"type":"Point"},"name":"Kids 'N' Action"} +,{"_id":{"$oid":"55cba2476c522cafdb054412"},"location":{"coordinates":[-73.97392099999999,40.746958],"type":"Point"},"name":"Townhouse Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb054413"},"location":{"coordinates":[-73.97279,40.791289],"type":"Point"},"name":"Mana"} +,{"_id":{"$oid":"55cba2476c522cafdb054414"},"location":{"coordinates":[-73.9165421,40.8399311],"type":"Point"},"name":"La Sabrosura"} +,{"_id":{"$oid":"55cba2476c522cafdb054415"},"location":{"coordinates":[-73.8771514,40.74820130000001],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb054416"},"location":{"coordinates":[-73.9728615,40.7621749],"type":"Point"},"name":"Ibm Executive Dining Room"} +,{"_id":{"$oid":"55cba2476c522cafdb054417"},"location":{"coordinates":[-73.9836967,40.7751554],"type":"Point"},"name":"Old John'S Luncheonette"} +,{"_id":{"$oid":"55cba2476c522cafdb054418"},"location":{"coordinates":[-74.0235386,40.627888],"type":"Point"},"name":"Bayridge Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054419"},"location":{"coordinates":[-74.0026012,40.7314557],"type":"Point"},"name":"Po Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05441a"},"location":{"coordinates":[-74.0090742,40.6554813],"type":"Point"},"name":"Costco Wholesale"} +,{"_id":{"$oid":"55cba2476c522cafdb05441b"},"location":{"coordinates":[-73.9880977,40.73240740000001],"type":"Point"},"name":"Bar None"} +,{"_id":{"$oid":"55cba2476c522cafdb05441c"},"location":{"coordinates":[-73.9563202,40.7846507],"type":"Point"},"name":"Yura \u0026 Company On Madison"} +,{"_id":{"$oid":"55cba2476c522cafdb05441d"},"location":{"coordinates":[-73.77323299999999,40.7688116],"type":"Point"},"name":"Jackson Hole"} +,{"_id":{"$oid":"55cba2476c522cafdb05441e"},"location":{"coordinates":[-73.99025859999999,40.7622242],"type":"Point"},"name":"Leon Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb05441f"},"location":{"coordinates":[-73.8506319,40.7446091],"type":"Point"},"name":"Terrace On The Park"} +,{"_id":{"$oid":"55cba2476c522cafdb054420"},"location":{"coordinates":[-74.0039647,40.737262],"type":"Point"},"name":"The Place"} +,{"_id":{"$oid":"55cba2476c522cafdb054421"},"location":{"coordinates":[-73.9033649,40.7452815],"type":"Point"},"name":"Peppino'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb054422"},"location":{"coordinates":[-73.8913291,40.7477727],"type":"Point"},"name":"Jackson Diner Indian Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb054423"},"location":{"coordinates":[-73.93652,40.755892],"type":"Point"},"name":"Thomas Preti Caterers"} +,{"_id":{"$oid":"55cba2476c522cafdb054424"},"location":{"coordinates":[-74.00097,40.746032],"type":"Point"},"name":"Westside Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb054425"},"location":{"coordinates":[-73.9191472,40.8155975],"type":"Point"},"name":"Blimpie"} +,{"_id":{"$oid":"55cba2476c522cafdb054426"},"location":{"coordinates":[-74.030759,40.624953],"type":"Point"},"name":"The Blue Zoo Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb054427"},"location":{"coordinates":[-73.965688,40.761744],"type":"Point"},"name":"Canaletto Ristorante"} +,{"_id":{"$oid":"55cba2476c522cafdb054428"},"location":{"coordinates":[-73.8854921,40.749482],"type":"Point"},"name":"La Boina Roja Steak House"} +,{"_id":{"$oid":"55cba2476c522cafdb054429"},"location":{"coordinates":[-74.0309602,40.6230491],"type":"Point"},"name":"Elia"} +,{"_id":{"$oid":"55cba2476c522cafdb05442a"},"location":{"coordinates":[-73.95279699999999,40.727849],"type":"Point"},"name":"Italy Pizza \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05442b"},"location":{"coordinates":[-74.0066433,40.62829199999999],"type":"Point"},"name":"La Sorrentina Ristorante"} +,{"_id":{"$oid":"55cba2476c522cafdb05442c"},"location":{"coordinates":[-73.9863096,40.69069349999999],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb05442d"},"location":{"coordinates":[-74.0842335,40.597161],"type":"Point"},"name":"Bocelli"} +,{"_id":{"$oid":"55cba2476c522cafdb05442e"},"location":{"coordinates":[-74.00861019999999,40.7465483],"type":"Point"},"name":"Pier 60"} +,{"_id":{"$oid":"55cba2476c522cafdb05442f"},"location":{"coordinates":[-73.97366,40.58968],"type":"Point"},"name":"Orion Palace"} +,{"_id":{"$oid":"55cba2476c522cafdb054430"},"location":{"coordinates":[-73.984343,40.726931],"type":"Point"},"name":"The Crooked Tree"} +,{"_id":{"$oid":"55cba2476c522cafdb054431"},"location":{"coordinates":[-73.9891116,40.7338531],"type":"Point"},"name":"New York University- Hall Cafe/ Burger Studio"} +,{"_id":{"$oid":"55cba2476c522cafdb054432"},"location":{"coordinates":[-74.0005432,40.5953382],"type":"Point"},"name":"Pizza D Amore"} +,{"_id":{"$oid":"55cba2476c522cafdb054433"},"location":{"coordinates":[-73.98669869999999,40.74500219999999],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb054434"},"location":{"coordinates":[-73.9995183,40.7295425],"type":"Point"},"name":"V-Bar And Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054435"},"location":{"coordinates":[-73.8955507,40.7460993],"type":"Point"},"name":"Ihawan"} +,{"_id":{"$oid":"55cba2476c522cafdb054436"},"location":{"coordinates":[-73.89000899999999,40.8631833],"type":"Point"},"name":"Los Girasoles Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054437"},"location":{"coordinates":[-73.8352324,40.863055],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb054438"},"location":{"coordinates":[-73.950141,40.77950999999999],"type":"Point"},"name":"Cilantro"} +,{"_id":{"$oid":"55cba2476c522cafdb054439"},"location":{"coordinates":[-73.9984253,40.7238617],"type":"Point"},"name":"Greenhouse Cafe (557 Broaday) Scholastic Building"} +,{"_id":{"$oid":"55cba2476c522cafdb05443a"},"location":{"coordinates":[-73.94253309999999,40.6006121],"type":"Point"},"name":"The Original Pizza Iv"} +,{"_id":{"$oid":"55cba2476c522cafdb05443b"},"location":{"coordinates":[-74.0085777,40.7481912],"type":"Point"},"name":"Bateaux New York"} +,{"_id":{"$oid":"55cba2476c522cafdb05443c"},"location":{"coordinates":[-73.990494,40.7569545],"type":"Point"},"name":"Snacks-N-Wheels"} +,{"_id":{"$oid":"55cba2476c522cafdb05443d"},"location":{"coordinates":[-74.0047385,40.731475],"type":"Point"},"name":"Casa"} +,{"_id":{"$oid":"55cba2476c522cafdb05443e"},"location":{"coordinates":[-73.92631920000001,40.8196491],"type":"Point"},"name":"Sam'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05443f"},"location":{"coordinates":[-74.00850319999999,40.7235086],"type":"Point"},"name":"Tribeca Rooftop"} +,{"_id":{"$oid":"55cba2476c522cafdb054440"},"location":{"coordinates":[-73.89086619999999,40.6580684],"type":"Point"},"name":"Wendy'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054441"},"location":{"coordinates":[-73.9038784,40.9067255],"type":"Point"},"name":"Riverdale Steak House"} +,{"_id":{"$oid":"55cba2476c522cafdb054442"},"location":{"coordinates":[-73.98171959999999,40.7499406],"type":"Point"},"name":"Madison Bistro"} +,{"_id":{"$oid":"55cba2476c522cafdb054443"},"location":{"coordinates":[-74.0018114,40.7372741],"type":"Point"},"name":"Good Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054444"},"location":{"coordinates":[-73.9605882,40.8120268],"type":"Point"},"name":"Jewish Theological Seminary"} +,{"_id":{"$oid":"55cba2476c522cafdb054445"},"location":{"coordinates":[-73.8689507,40.74532749999999],"type":"Point"},"name":"El Caramelo Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb054446"},"location":{"coordinates":[-74.1011348,40.5893329],"type":"Point"},"name":"Hillside Gourmet"} +,{"_id":{"$oid":"55cba2476c522cafdb054447"},"location":{"coordinates":[-73.97917079999999,40.7831924],"type":"Point"},"name":"Blondies"} +,{"_id":{"$oid":"55cba2476c522cafdb054448"},"location":{"coordinates":[-73.8877756,40.8541437],"type":"Point"},"name":"Cafe Al Mercato"} +,{"_id":{"$oid":"55cba2476c522cafdb054449"},"location":{"coordinates":[-74.0099177,40.7146687],"type":"Point"},"name":"Mangez Avec Moi"} +,{"_id":{"$oid":"55cba2476c522cafdb05444a"},"location":{"coordinates":[-73.9441088,40.629756],"type":"Point"},"name":"Dynasty"} +,{"_id":{"$oid":"55cba2476c522cafdb05444b"},"location":{"coordinates":[-73.9348637,40.68203219999999],"type":"Point"},"name":"Lucky House Chinese Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb05444c"},"location":{"coordinates":[-74.000812,40.72992],"type":"Point"},"name":"Off The Wagon"} +,{"_id":{"$oid":"55cba2476c522cafdb05444d"},"location":{"coordinates":[-73.8888905,40.7473296],"type":"Point"},"name":"Evolution"} +,{"_id":{"$oid":"55cba2476c522cafdb05444e"},"location":{"coordinates":[-73.986091,40.75372300000001],"type":"Point"},"name":"Nosh! - Courtyard By Marriott"} +,{"_id":{"$oid":"55cba2476c522cafdb05444f"},"location":{"coordinates":[-73.9534343,40.8113958],"type":"Point"},"name":"Showman'S Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054450"},"location":{"coordinates":[-73.9872855,40.7477239],"type":"Point"},"name":"Seoul Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb054451"},"location":{"coordinates":[-73.8122771,40.7646941],"type":"Point"},"name":"Book Chang Dong Sodndubu"} +,{"_id":{"$oid":"55cba2476c522cafdb054452"},"location":{"coordinates":[-73.9260989,40.7720088],"type":"Point"},"name":"Roti Boti Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054453"},"location":{"coordinates":[-73.8407371,40.7180816],"type":"Point"},"name":"Bagels Etc"} +,{"_id":{"$oid":"55cba2476c522cafdb054454"},"location":{"coordinates":[-73.9879339,40.7561111],"type":"Point"},"name":"New Amsterdam Theater"} +,{"_id":{"$oid":"55cba2476c522cafdb054455"},"location":{"coordinates":[-73.9895006,40.6638717],"type":"Point"},"name":"The Grand Prospect Hall"} +,{"_id":{"$oid":"55cba2476c522cafdb054456"},"location":{"coordinates":[-74.00897599999999,40.7194498],"type":"Point"},"name":"Nobu Next Door"} +,{"_id":{"$oid":"55cba2476c522cafdb054457"},"location":{"coordinates":[-73.8441198,40.6764737],"type":"Point"},"name":"Cookie'S Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb054458"},"location":{"coordinates":[-73.98739599999999,40.7610699],"type":"Point"},"name":"Brazil Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb054459"},"location":{"coordinates":[-73.9981899,40.7344356],"type":"Point"},"name":"Alta"} +,{"_id":{"$oid":"55cba2476c522cafdb05445a"},"location":{"coordinates":[-73.8305506,40.7596528],"type":"Point"},"name":"Burger King"} +,{"_id":{"$oid":"55cba2476c522cafdb05445b"},"location":{"coordinates":[-73.987546,40.728124],"type":"Point"},"name":"San Loco"} +,{"_id":{"$oid":"55cba2476c522cafdb05445c"},"location":{"coordinates":[-73.88454209999999,40.7477832],"type":"Point"},"name":"Hairos Night Club"} +,{"_id":{"$oid":"55cba2476c522cafdb05445d"},"location":{"coordinates":[-73.99221,40.734132],"type":"Point"},"name":"News Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05445e"},"location":{"coordinates":[-73.9688009,40.7610086],"type":"Point"},"name":"Belmora Pizza \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05445f"},"location":{"coordinates":[-73.9814311,40.6753101],"type":"Point"},"name":"Al Di La"} +,{"_id":{"$oid":"55cba2476c522cafdb054460"},"location":{"coordinates":[-73.955916,40.768477],"type":"Point"},"name":"Session 73"} +,{"_id":{"$oid":"55cba2476c522cafdb054461"},"location":{"coordinates":[-73.9909732,40.692922],"type":"Point"},"name":"Hale \u0026 Hearty Soups"} +,{"_id":{"$oid":"55cba2476c522cafdb054462"},"location":{"coordinates":[-73.7227987,40.7250767],"type":"Point"},"name":"Friends Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb054463"},"location":{"coordinates":[-73.857528,40.732581],"type":"Point"},"name":"J And D Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054464"},"location":{"coordinates":[-73.98806549999999,40.7233082],"type":"Point"},"name":"Lucien Restauraunt"} +,{"_id":{"$oid":"55cba2476c522cafdb054465"},"location":{"coordinates":[-73.92554369999999,40.7622946],"type":"Point"},"name":"Sanfords Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054466"},"location":{"coordinates":[-73.99182019999999,40.729032],"type":"Point"},"name":"Joe'S Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb054467"},"location":{"coordinates":[-73.9831214,40.7653212],"type":"Point"},"name":"Sugiyama Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054468"},"location":{"coordinates":[-73.790887,40.6430002],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054469"},"location":{"coordinates":[-74.0040791,40.7226907],"type":"Point"},"name":"Grand Street Deli \u0026 Mini Market"} +,{"_id":{"$oid":"55cba2476c522cafdb05446a"},"location":{"coordinates":[-73.79627049999999,40.7376642],"type":"Point"},"name":"Highway Deli And Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb05446b"},"location":{"coordinates":[-73.99325499999999,40.744544],"type":"Point"},"name":"Food For Thought Catered Events"} +,{"_id":{"$oid":"55cba2476c522cafdb05446c"},"location":{"coordinates":[-73.917273,40.820786],"type":"Point"},"name":"Pepe Joes Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb05446d"},"location":{"coordinates":[-73.926838,40.8654522],"type":"Point"},"name":"Ifh El Buffet Restaurant Alberto'S Mofongo House"} +,{"_id":{"$oid":"55cba2476c522cafdb05446e"},"location":{"coordinates":[-74.0043525,40.7236469],"type":"Point"},"name":"Circa Tabac"} +,{"_id":{"$oid":"55cba2476c522cafdb05446f"},"location":{"coordinates":[-74.006232,40.73592],"type":"Point"},"name":"Phillip Marie"} +,{"_id":{"$oid":"55cba2476c522cafdb054470"},"location":{"coordinates":[-73.9787663,40.669918],"type":"Point"},"name":"Sotto Voce Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054471"},"location":{"coordinates":[-73.98375399999999,40.744251],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb054472"},"location":{"coordinates":[-73.96785,40.757627],"type":"Point"},"name":"Lexicon"} +,{"_id":{"$oid":"55cba2476c522cafdb054473"},"location":{"coordinates":[-73.9691283,40.7557713],"type":"Point"},"name":"Le Bateau Ivre"} +,{"_id":{"$oid":"55cba2476c522cafdb054474"},"location":{"coordinates":[-74.0127514,40.6457809],"type":"Point"},"name":"La Carreta Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054475"},"location":{"coordinates":[-73.9677689,40.7666933],"type":"Point"},"name":"Daniel"} +,{"_id":{"$oid":"55cba2476c522cafdb054476"},"location":{"coordinates":[-74.0034939,40.7317],"type":"Point"},"name":"Fish"} +,{"_id":{"$oid":"55cba2476c522cafdb054477"},"location":{"coordinates":[-73.9700204,40.7575426],"type":"Point"},"name":"Manhattan Courtyard"} +,{"_id":{"$oid":"55cba2476c522cafdb054478"},"location":{"coordinates":[-73.9932196,40.7269003],"type":"Point"},"name":"Vic'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054479"},"location":{"coordinates":[-73.888176,40.855624],"type":"Point"},"name":"Gino'S Pastry Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb05447a"},"location":{"coordinates":[-73.9649656,40.8057705],"type":"Point"},"name":"Deluxe"} +,{"_id":{"$oid":"55cba2476c522cafdb05447b"},"location":{"coordinates":[-73.8559693,40.7458228],"type":"Point"},"name":"K'S Cafeteria"} +,{"_id":{"$oid":"55cba2476c522cafdb05447c"},"location":{"coordinates":[-73.8906125,40.8354714],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb05447d"},"location":{"coordinates":[-73.9767777,40.7602128],"type":"Point"},"name":"Grand Havana Room"} +,{"_id":{"$oid":"55cba2476c522cafdb05447e"},"location":{"coordinates":[-73.8317235,40.7150074],"type":"Point"},"name":"Midway Cinemas"} +,{"_id":{"$oid":"55cba2476c522cafdb05447f"},"location":{"coordinates":[-73.90559809999999,40.8793065],"type":"Point"},"name":"Loeser'S Hebrew National"} +,{"_id":{"$oid":"55cba2476c522cafdb054480"},"location":{"coordinates":[-73.9892179,40.72594],"type":"Point"},"name":"Queen Vic"} +,{"_id":{"$oid":"55cba2476c522cafdb054481"},"location":{"coordinates":[-73.9714858,40.793109],"type":"Point"},"name":"Ayurveda Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054482"},"location":{"coordinates":[-73.8746279,40.7343944],"type":"Point"},"name":"My Uncle'S Steak Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054483"},"location":{"coordinates":[-73.9876618,40.72237870000001],"type":"Point"},"name":"Ray'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054484"},"location":{"coordinates":[-73.9189574,40.7428288],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054485"},"location":{"coordinates":[-73.98173,40.7592574],"type":"Point"},"name":"Mcgraw Hill Executive Dining"} +,{"_id":{"$oid":"55cba2476c522cafdb054486"},"location":{"coordinates":[-73.98153599999999,40.741651],"type":"Point"},"name":"Coppola'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054487"},"location":{"coordinates":[-74.0053538,40.67894560000001],"type":"Point"},"name":"Defonte'S Sandwich Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb054488"},"location":{"coordinates":[-74.150475,40.625515],"type":"Point"},"name":"Bagel Land"} +,{"_id":{"$oid":"55cba2476c522cafdb054489"},"location":{"coordinates":[-74.00503780000001,40.72880809999999],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb05448a"},"location":{"coordinates":[-73.84760779999999,40.694968],"type":"Point"},"name":"El Anzuelo Fino Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05448b"},"location":{"coordinates":[-73.9773755,40.7568284],"type":"Point"},"name":"Wolf And Lamb"} +,{"_id":{"$oid":"55cba2476c522cafdb05448c"},"location":{"coordinates":[-73.9941168,40.7520075],"type":"Point"},"name":"Tir Na Nog"} +,{"_id":{"$oid":"55cba2476c522cafdb05448d"},"location":{"coordinates":[-73.991755,40.760138],"type":"Point"},"name":"Turkish Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb05448e"},"location":{"coordinates":[-73.789209,40.7575853],"type":"Point"},"name":"Fresco Bar Cafe Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05448f"},"location":{"coordinates":[-73.791185,40.74012],"type":"Point"},"name":"Emerald Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb054490"},"location":{"coordinates":[-119.6368672,36.2504996],"type":"Point"},"name":"Cascarino'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054491"},"location":{"coordinates":[-73.80327969999999,40.6745378],"type":"Point"},"name":"Track Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb054492"},"location":{"coordinates":[-73.9095279,40.83102239999999],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054493"},"location":{"coordinates":[-73.952204,40.772498],"type":"Point"},"name":"Szechuan Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb054494"},"location":{"coordinates":[-73.8664716,40.8714175],"type":"Point"},"name":"Firozas Roti Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054495"},"location":{"coordinates":[-74.14077309999999,40.5446914],"type":"Point"},"name":"The Mansion Grand"} +,{"_id":{"$oid":"55cba2476c522cafdb054496"},"location":{"coordinates":[-73.7277356,40.67432609999999],"type":"Point"},"name":"J \u0026 S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054497"},"location":{"coordinates":[-73.9657651,40.8056669],"type":"Point"},"name":"Le Monde"} +,{"_id":{"$oid":"55cba2476c522cafdb054498"},"location":{"coordinates":[-73.9767947,40.7480839],"type":"Point"},"name":"Duke'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054499"},"location":{"coordinates":[-73.7827725,40.7284874],"type":"Point"},"name":"Lulu'S Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb05449a"},"location":{"coordinates":[-73.9972324,40.6792233],"type":"Point"},"name":"Me \u0026 My Eggroll"} +,{"_id":{"$oid":"55cba2476c522cafdb05449b"},"location":{"coordinates":[-73.96844209999999,40.7593899],"type":"Point"},"name":"Pig \u0026 Whistle On 3Rd"} +,{"_id":{"$oid":"55cba2476c522cafdb05449c"},"location":{"coordinates":[-74.028843,40.622419],"type":"Point"},"name":"Pho Hoai Bay Ridge"} +,{"_id":{"$oid":"55cba2476c522cafdb05449d"},"location":{"coordinates":[-73.9199414,40.8350246],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb05449e"},"location":{"coordinates":[-73.985534,40.63131],"type":"Point"},"name":"Dagan Pizza \u0026 Dairy Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05449f"},"location":{"coordinates":[-73.995792,40.743447],"type":"Point"},"name":"Hana Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb0544a0"},"location":{"coordinates":[-73.9782111,40.74211100000001],"type":"Point"},"name":"Failte"} +,{"_id":{"$oid":"55cba2476c522cafdb0544a1"},"location":{"coordinates":[-73.98641099999999,40.746979],"type":"Point"},"name":"Minar Indian Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0544a2"},"location":{"coordinates":[-73.90434259999999,40.7449326],"type":"Point"},"name":"Sean Og"} +,{"_id":{"$oid":"55cba2476c522cafdb0544a3"},"location":{"coordinates":[-73.998993,40.74718060000001],"type":"Point"},"name":"10Th Avenue Pizza \u0026 Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0544a4"},"location":{"coordinates":[-74.0145347,40.7049443],"type":"Point"},"name":"Kenyon \u0026 Kenyon Cafeteria"} +,{"_id":{"$oid":"55cba2476c522cafdb0544a5"},"location":{"coordinates":[-73.9837271,40.7598528],"type":"Point"},"name":"Lace"} +,{"_id":{"$oid":"55cba2476c522cafdb0544a6"},"location":{"coordinates":[-73.8720748,40.8069431],"type":"Point"},"name":"Market Restaurant (C-D Block)"} +,{"_id":{"$oid":"55cba2476c522cafdb0544a7"},"location":{"coordinates":[-74.00344679999999,40.7316187],"type":"Point"},"name":"John'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb0544a8"},"location":{"coordinates":[-74.01589299999999,40.7115385],"type":"Point"},"name":"Cafe Express"} +,{"_id":{"$oid":"55cba2476c522cafdb0544a9"},"location":{"coordinates":[-73.752431,40.6803345],"type":"Point"},"name":"Burger King"} +,{"_id":{"$oid":"55cba2476c522cafdb0544aa"},"location":{"coordinates":[-73.97623,40.7855119],"type":"Point"},"name":"Hi Life Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0544ab"},"location":{"coordinates":[-73.8674484,40.8988632],"type":"Point"},"name":"Behan'S Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb0544ac"},"location":{"coordinates":[-73.9655581,40.7107146],"type":"Point"},"name":"Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb0544ad"},"location":{"coordinates":[-73.97166039999999,40.7626988],"type":"Point"},"name":"Osteria Serafina"} +,{"_id":{"$oid":"55cba2476c522cafdb0544ae"},"location":{"coordinates":[-73.9899753,40.7616045],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0544af"},"location":{"coordinates":[-73.863601,40.748109],"type":"Point"},"name":"Tacos Mexico"} +,{"_id":{"$oid":"55cba2476c522cafdb0544b0"},"location":{"coordinates":[-73.96861799999999,40.760997],"type":"Point"},"name":"Teodora"} +,{"_id":{"$oid":"55cba2476c522cafdb0544b1"},"location":{"coordinates":[-73.9482251,40.632598],"type":"Point"},"name":"Burger King"} +,{"_id":{"$oid":"55cba2476c522cafdb0544b2"},"location":{"coordinates":[-73.9758372,40.7482969],"type":"Point"},"name":"The Black Sheep"} +,{"_id":{"$oid":"55cba2476c522cafdb0544b3"},"location":{"coordinates":[-73.9832105,40.7642063],"type":"Point"},"name":"Iguana Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0544b4"},"location":{"coordinates":[-74.001983,40.607519],"type":"Point"},"name":"New Dyker Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0544b5"},"location":{"coordinates":[-73.9970809,40.7424696],"type":"Point"},"name":"Le Zie Trattoria"} +,{"_id":{"$oid":"55cba2476c522cafdb0544b6"},"location":{"coordinates":[-73.7358447,40.7185586],"type":"Point"},"name":"Big Jons Pizza \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0544b7"},"location":{"coordinates":[-73.9666395,40.761062],"type":"Point"},"name":"Astra"} +,{"_id":{"$oid":"55cba2476c522cafdb0544b8"},"location":{"coordinates":[-73.8976959,40.7460083],"type":"Point"},"name":"El Mariachi Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0544b9"},"location":{"coordinates":[-73.99119619999999,40.7608857],"type":"Point"},"name":"Mercury Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0544ba"},"location":{"coordinates":[-73.85258,40.833713],"type":"Point"},"name":"Johnny'S O'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0544bb"},"location":{"coordinates":[-74.00370749999999,40.7489719],"type":"Point"},"name":"Pepe Giallo"} +,{"_id":{"$oid":"55cba2476c522cafdb0544bc"},"location":{"coordinates":[-73.7714117,40.7638362],"type":"Point"},"name":"Bourbon Street"} +,{"_id":{"$oid":"55cba2476c522cafdb0544bd"},"location":{"coordinates":[-73.9007433,40.7022336],"type":"Point"},"name":"Burek'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0544be"},"location":{"coordinates":[-73.9779696,40.7454765],"type":"Point"},"name":"Cinema Cafe \u0026 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0544bf"},"location":{"coordinates":[-73.970277,40.765821],"type":"Point"},"name":"Amaranth"} +,{"_id":{"$oid":"55cba2476c522cafdb0544c0"},"location":{"coordinates":[-73.8567826,40.7325318],"type":"Point"},"name":"Tandoori Food \u0026 Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0544c1"},"location":{"coordinates":[-73.98624219999999,40.762978],"type":"Point"},"name":"House Of Brews"} +,{"_id":{"$oid":"55cba2476c522cafdb0544c2"},"location":{"coordinates":[-73.9883403,40.69367580000001],"type":"Point"},"name":"Archives"} +,{"_id":{"$oid":"55cba2476c522cafdb0544c3"},"location":{"coordinates":[-73.9508693,40.7238704],"type":"Point"},"name":"Polonia Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0544c4"},"location":{"coordinates":[-73.9198301,40.7431281],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0544c5"},"location":{"coordinates":[-73.9152214,40.7601975],"type":"Point"},"name":"Cavo"} +,{"_id":{"$oid":"55cba2476c522cafdb0544c6"},"location":{"coordinates":[-73.864436,40.8326348],"type":"Point"},"name":"Joe'S Place"} +,{"_id":{"$oid":"55cba2476c522cafdb0544c7"},"location":{"coordinates":[-73.9564827,40.7749682],"type":"Point"},"name":"Taste Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0544c8"},"location":{"coordinates":[-73.975973,40.762676],"type":"Point"},"name":"Joe'S Shanghai Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0544c9"},"location":{"coordinates":[-73.9190669,40.762241],"type":"Point"},"name":"L \u0026 M Italian Deli \u0026 Catering"} +,{"_id":{"$oid":"55cba2476c522cafdb0544ca"},"location":{"coordinates":[-73.9893481,40.7603868],"type":"Point"},"name":"Via Brazil"} +,{"_id":{"$oid":"55cba2476c522cafdb0544cb"},"location":{"coordinates":[-74.00419,40.748122],"type":"Point"},"name":"The Red Cat"} +,{"_id":{"$oid":"55cba2476c522cafdb0544cc"},"location":{"coordinates":[-73.91061350000001,40.7764679],"type":"Point"},"name":"Trattoria L'Incontro"} +,{"_id":{"$oid":"55cba2476c522cafdb0544cd"},"location":{"coordinates":[-73.9612859,40.6630911],"type":"Point"},"name":"Popeyes Chicken \u0026 Biscuits"} +,{"_id":{"$oid":"55cba2476c522cafdb0544ce"},"location":{"coordinates":[-73.9717845,40.6897199],"type":"Point"},"name":"Madiba"} +,{"_id":{"$oid":"55cba2476c522cafdb0544cf"},"location":{"coordinates":[-73.88314729999999,40.748713],"type":"Point"},"name":"Garden Cafe Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0544d0"},"location":{"coordinates":[-73.914334,40.8150983],"type":"Point"},"name":"Burger King"} +,{"_id":{"$oid":"55cba2476c522cafdb0544d1"},"location":{"coordinates":[-73.92374410000001,40.7527285],"type":"Point"},"name":"Tequila Sunrise"} +,{"_id":{"$oid":"55cba2476c522cafdb0544d2"},"location":{"coordinates":[-73.9593229,40.8147734],"type":"Point"},"name":"Toast"} +,{"_id":{"$oid":"55cba2476c522cafdb0544d3"},"location":{"coordinates":[-74.1976871,40.559304],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0544d4"},"location":{"coordinates":[-73.98173,40.7592574],"type":"Point"},"name":"Del Frisco'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0544d5"},"location":{"coordinates":[-73.9404776,40.7220173],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0544d6"},"location":{"coordinates":[-73.9516316,40.7256153],"type":"Point"},"name":"Lite Bites \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0544d7"},"location":{"coordinates":[-73.93104199999999,40.661174],"type":"Point"},"name":"Wendy'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0544d8"},"location":{"coordinates":[-74.086946,40.594422],"type":"Point"},"name":"Perkins Family Restaurant \u0026 Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0544d9"},"location":{"coordinates":[-73.9799726,40.7586467],"type":"Point"},"name":"Christie'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0544da"},"location":{"coordinates":[-73.9768121,40.7507385],"type":"Point"},"name":"Zaro'S Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0544db"},"location":{"coordinates":[-73.93113249999999,40.66642420000001],"type":"Point"},"name":"Ali'S Roti Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb0544dc"},"location":{"coordinates":[-73.9560274,40.6477478],"type":"Point"},"name":"Michelle'S Cocktail Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb0544dd"},"location":{"coordinates":[-73.98652299999999,40.7437635],"type":"Point"},"name":"Le Trapeze"} +,{"_id":{"$oid":"55cba2476c522cafdb0544de"},"location":{"coordinates":[-73.82878749999999,40.8695221],"type":"Point"},"name":"Bartow Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0544df"},"location":{"coordinates":[-74.2566332,40.4109872],"type":"Point"},"name":"Seguine Bagel Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0544e0"},"location":{"coordinates":[-73.96513360000002,40.7727764],"type":"Point"},"name":"Via Quadronno"} +,{"_id":{"$oid":"55cba2476c522cafdb0544e1"},"location":{"coordinates":[-73.990556,40.749722],"type":"Point"},"name":"Moe'S Southwestern Grill/Charley'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0544e2"},"location":{"coordinates":[-73.968266,40.8011473],"type":"Point"},"name":"Smoke"} +,{"_id":{"$oid":"55cba2476c522cafdb0544e3"},"location":{"coordinates":[-73.9739542,40.7586245],"type":"Point"},"name":"Fresco On The Go"} +,{"_id":{"$oid":"55cba2476c522cafdb0544e4"},"location":{"coordinates":[-73.99165099999999,40.732144],"type":"Point"},"name":"Modern Gourmet"} +,{"_id":{"$oid":"55cba2476c522cafdb0544e5"},"location":{"coordinates":[-73.9191196,40.74166839999999],"type":"Point"},"name":"Studio 46"} +,{"_id":{"$oid":"55cba2476c522cafdb0544e6"},"location":{"coordinates":[-73.7469355,40.69613469999999],"type":"Point"},"name":"Thomasina'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0544e7"},"location":{"coordinates":[-73.789176,40.852644],"type":"Point"},"name":"Fella'S Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0544e8"},"location":{"coordinates":[-73.70820030000002,40.7492044],"type":"Point"},"name":"The Ice Box-Ralph'S Famous Italian Ices"} +,{"_id":{"$oid":"55cba2476c522cafdb0544e9"},"location":{"coordinates":[-73.830641,40.867177],"type":"Point"},"name":"Checkers"} +,{"_id":{"$oid":"55cba2476c522cafdb0544ea"},"location":{"coordinates":[-73.78366419999999,40.8389862],"type":"Point"},"name":"Sammy'S Fishbox"} +,{"_id":{"$oid":"55cba2476c522cafdb0544eb"},"location":{"coordinates":[-73.999179,40.6760955],"type":"Point"},"name":"Mezcal'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0544ec"},"location":{"coordinates":[-73.98791849999999,40.7187505],"type":"Point"},"name":"New Roma Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0544ed"},"location":{"coordinates":[-73.8549331,40.7208405],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0544ee"},"location":{"coordinates":[-73.9706758,40.6466803],"type":"Point"},"name":"Andrew'S Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb0544ef"},"location":{"coordinates":[-74.0045143,40.7332076],"type":"Point"},"name":"Havana Alma De Cuba"} +,{"_id":{"$oid":"55cba2476c522cafdb0544f0"},"location":{"coordinates":[-73.8966456,40.70627169999999],"type":"Point"},"name":"Delight Donut"} +,{"_id":{"$oid":"55cba2476c522cafdb0544f1"},"location":{"coordinates":[-73.9587991,40.7746496],"type":"Point"},"name":"Il Riccio Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0544f2"},"location":{"coordinates":[-73.8967174,40.6377718],"type":"Point"},"name":"Bamboo Garden Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0544f3"},"location":{"coordinates":[-73.8720748,40.8069431],"type":"Point"},"name":"Snack Bar (Located Between A-B Between Fancy Food And Masters)"} +,{"_id":{"$oid":"55cba2476c522cafdb0544f4"},"location":{"coordinates":[-73.983773,40.7566429],"type":"Point"},"name":"Belasco Theatre"} +,{"_id":{"$oid":"55cba2476c522cafdb0544f5"},"location":{"coordinates":[-73.978043,40.751802],"type":"Point"},"name":"Pershing Square Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0544f6"},"location":{"coordinates":[-73.98597,40.760343],"type":"Point"},"name":"Longacre Theatre"} +,{"_id":{"$oid":"55cba2476c522cafdb0544f7"},"location":{"coordinates":[-73.823066,40.676496],"type":"Point"},"name":"Trackside"} +,{"_id":{"$oid":"55cba2476c522cafdb0544f8"},"location":{"coordinates":[-73.82823309999999,40.8890665],"type":"Point"},"name":"J.R'S Cabaret"} +,{"_id":{"$oid":"55cba2476c522cafdb0544f9"},"location":{"coordinates":[-73.8383004,40.6522687],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0544fa"},"location":{"coordinates":[-73.87808799999999,40.8865392],"type":"Point"},"name":"Gary And Gino'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0544fb"},"location":{"coordinates":[-73.906122,40.8776409],"type":"Point"},"name":"Parrilla Latina Steakhouse"} +,{"_id":{"$oid":"55cba2476c522cafdb0544fc"},"location":{"coordinates":[-73.932701,40.714134],"type":"Point"},"name":"Manny'S Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0544fd"},"location":{"coordinates":[-73.9717,40.756457],"type":"Point"},"name":"New York Luncheonette"} +,{"_id":{"$oid":"55cba2476c522cafdb0544fe"},"location":{"coordinates":[-73.9710304,40.7961844],"type":"Point"},"name":"Lenny'S Bagels"} +,{"_id":{"$oid":"55cba2476c522cafdb0544ff"},"location":{"coordinates":[-73.829872,40.7092067],"type":"Point"},"name":"Kew Gardens Cinemas"} +,{"_id":{"$oid":"55cba2476c522cafdb054500"},"location":{"coordinates":[-73.9697812,40.78912],"type":"Point"},"name":"Trattoria Pesce Pasta"} +,{"_id":{"$oid":"55cba2476c522cafdb054501"},"location":{"coordinates":[-73.795135,40.705579],"type":"Point"},"name":"Jamaican Flavours"} +,{"_id":{"$oid":"55cba2476c522cafdb054502"},"location":{"coordinates":[-73.81219899999999,40.675584],"type":"Point"},"name":"The Tick Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb054503"},"location":{"coordinates":[-73.9734941,40.7842696],"type":"Point"},"name":"Bistro Citron"} +,{"_id":{"$oid":"55cba2476c522cafdb054504"},"location":{"coordinates":[-73.9928156,40.7526007],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb054505"},"location":{"coordinates":[-73.9776004,40.7455096],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb054506"},"location":{"coordinates":[-73.97761779999999,40.6720497],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb054507"},"location":{"coordinates":[-73.9792705,40.7550959],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb054508"},"location":{"coordinates":[-73.9730028,40.7924531],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb054509"},"location":{"coordinates":[-73.94978379999999,40.722396],"type":"Point"},"name":"Enid'S"} +,{"_id":{"$oid":"55cba2476c522cafdb05450a"},"location":{"coordinates":[-73.9867209,40.7635999],"type":"Point"},"name":"Vice Versa"} +,{"_id":{"$oid":"55cba2476c522cafdb05450b"},"location":{"coordinates":[-74.147786,40.5406959],"type":"Point"},"name":"Big Al'S Chicago Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05450c"},"location":{"coordinates":[-73.9787535,40.7767208],"type":"Point"},"name":"Bello Giardino"} +,{"_id":{"$oid":"55cba2476c522cafdb05450d"},"location":{"coordinates":[-73.9708163,40.7577483],"type":"Point"},"name":"Europa Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05450e"},"location":{"coordinates":[-74.0313602,40.637575],"type":"Point"},"name":"Rockys \u0026 Nickys Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb05450f"},"location":{"coordinates":[-73.9868879,40.7660018],"type":"Point"},"name":"El Centro"} +,{"_id":{"$oid":"55cba2476c522cafdb054510"},"location":{"coordinates":[-74.0015116,40.7214912],"type":"Point"},"name":"Le Pain Quotidien"} +,{"_id":{"$oid":"55cba2476c522cafdb054511"},"location":{"coordinates":[-73.99078899999999,40.760389],"type":"Point"},"name":"Juice Generation"} +,{"_id":{"$oid":"55cba2476c522cafdb054512"},"location":{"coordinates":[-73.992069,40.759761],"type":"Point"},"name":"44 Sw Ristorante \u0026 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054513"},"location":{"coordinates":[-73.9852363,40.6781264],"type":"Point"},"name":"Union Cafe Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054514"},"location":{"coordinates":[-73.8843733,40.7556113],"type":"Point"},"name":"Galicia Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054515"},"location":{"coordinates":[-73.9024464,40.7047084],"type":"Point"},"name":"I.O. Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054516"},"location":{"coordinates":[-73.9921155,40.7364657],"type":"Point"},"name":"15 East Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054517"},"location":{"coordinates":[-74.0095219,40.7069772],"type":"Point"},"name":"The Country Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054518"},"location":{"coordinates":[-73.8834701,40.8677303],"type":"Point"},"name":"Nick Garden Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb054519"},"location":{"coordinates":[-73.9817238,40.7599885],"type":"Point"},"name":"City Lobster \u0026 Steak"} +,{"_id":{"$oid":"55cba2476c522cafdb05451a"},"location":{"coordinates":[-73.919907,40.807536],"type":"Point"},"name":"Latino Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05451b"},"location":{"coordinates":[-74.01756189999999,40.7049736],"type":"Point"},"name":"Gigino At Wagner Park"} +,{"_id":{"$oid":"55cba2476c522cafdb05451c"},"location":{"coordinates":[-73.9758064,40.6736423],"type":"Point"},"name":"Haagen-Dazs"} +,{"_id":{"$oid":"55cba2476c522cafdb05451d"},"location":{"coordinates":[-73.996577,40.719515],"type":"Point"},"name":"Pho Bang Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05451e"},"location":{"coordinates":[-74.009317,40.7174312],"type":"Point"},"name":"Scalini Fedeli"} +,{"_id":{"$oid":"55cba2476c522cafdb05451f"},"location":{"coordinates":[-73.9392495,40.5900432],"type":"Point"},"name":"Subway / Twin Donut"} +,{"_id":{"$oid":"55cba2476c522cafdb054520"},"location":{"coordinates":[-73.9936139,40.601451],"type":"Point"},"name":"Golden Crown Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb054521"},"location":{"coordinates":[-73.9137269,40.8482958],"type":"Point"},"name":"New Hing Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054522"},"location":{"coordinates":[-73.950756,40.783795],"type":"Point"},"name":"Kinsale Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb054523"},"location":{"coordinates":[-73.9857881,40.7560982],"type":"Point"},"name":"Skadden Arps, Slate"} +,{"_id":{"$oid":"55cba2476c522cafdb054524"},"location":{"coordinates":[-73.9249708,40.7615236],"type":"Point"},"name":"Bahari Estiatorio"} +,{"_id":{"$oid":"55cba2476c522cafdb054525"},"location":{"coordinates":[-73.9903068,40.7520202],"type":"Point"},"name":"The Bread Factory Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054526"},"location":{"coordinates":[-74.002168,40.725788],"type":"Point"},"name":"Snack"} +,{"_id":{"$oid":"55cba2476c522cafdb054527"},"location":{"coordinates":[-74.01009599999999,40.703603],"type":"Point"},"name":"Da Vinci Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054528"},"location":{"coordinates":[-74.0032824,40.7319341],"type":"Point"},"name":"Ghandi Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054529"},"location":{"coordinates":[-73.985676,40.7619857],"type":"Point"},"name":"Palm Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05452a"},"location":{"coordinates":[-73.99420239999999,40.73011260000001],"type":"Point"},"name":"Josie Wood'S Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb05452b"},"location":{"coordinates":[-73.9781179,40.758723],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb05452c"},"location":{"coordinates":[-73.98490149999999,40.7695186],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb05452d"},"location":{"coordinates":[-73.9820343,40.6706291],"type":"Point"},"name":"Park Slope Ale House"} +,{"_id":{"$oid":"55cba2476c522cafdb05452e"},"location":{"coordinates":[-73.99078349999999,40.7552904],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb05452f"},"location":{"coordinates":[-74.0088763,40.7155873],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb054530"},"location":{"coordinates":[-73.9861301,40.75508730000001],"type":"Point"},"name":"Starbucks Coffee # 7463"} +,{"_id":{"$oid":"55cba2476c522cafdb054531"},"location":{"coordinates":[-73.97807010000001,40.7530362],"type":"Point"},"name":"Central Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054532"},"location":{"coordinates":[-73.84863700000001,40.710303],"type":"Point"},"name":"La Dolce Italia Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb054533"},"location":{"coordinates":[-74.00168099999999,40.732536],"type":"Point"},"name":"Ramen-Ya"} +,{"_id":{"$oid":"55cba2476c522cafdb054534"},"location":{"coordinates":[-73.961696,40.7707089],"type":"Point"},"name":"Swifty'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054535"},"location":{"coordinates":[-74.0003231,40.7303784],"type":"Point"},"name":"Ben'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054536"},"location":{"coordinates":[-73.9889479,40.7568894],"type":"Point"},"name":"B.B. Kings"} +,{"_id":{"$oid":"55cba2476c522cafdb054537"},"location":{"coordinates":[-73.9397077,40.5835841],"type":"Point"},"name":"Il Fornetto Trattoria Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054538"},"location":{"coordinates":[-73.98891569999999,40.7214094],"type":"Point"},"name":"Bluestockings Womens Bookstore Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054539"},"location":{"coordinates":[-73.7698111,40.7618378],"type":"Point"},"name":"Erawan Thai Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb05453a"},"location":{"coordinates":[-73.824945,40.686251],"type":"Point"},"name":"G.P. Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb05453b"},"location":{"coordinates":[-73.85742979999999,40.6698154],"type":"Point"},"name":"Lindenwood Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb05453c"},"location":{"coordinates":[-73.8889968,40.8541382],"type":"Point"},"name":"Emilia'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05453d"},"location":{"coordinates":[-73.9625202,40.8055078],"type":"Point"},"name":"Strokos Gourmet Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb05453e"},"location":{"coordinates":[-73.8727854,40.7183657],"type":"Point"},"name":"Harbor Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05453f"},"location":{"coordinates":[-73.9946889,40.694662],"type":"Point"},"name":"Haagen-Dazs"} +,{"_id":{"$oid":"55cba2476c522cafdb054540"},"location":{"coordinates":[-73.9996592,40.732077],"type":"Point"},"name":"Blue Hill Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054541"},"location":{"coordinates":[-73.9926363,40.7538399],"type":"Point"},"name":"White Castle"} +,{"_id":{"$oid":"55cba2476c522cafdb054542"},"location":{"coordinates":[-73.918813,40.835208],"type":"Point"},"name":"Mi Pueblito Bakery/Comida Tipica Mexicana"} +,{"_id":{"$oid":"55cba2476c522cafdb054543"},"location":{"coordinates":[-73.9899167,40.7307907],"type":"Point"},"name":"Black And White"} +,{"_id":{"$oid":"55cba2476c522cafdb054544"},"location":{"coordinates":[-73.9210275,40.6413138],"type":"Point"},"name":"Haagen-Dazs"} +,{"_id":{"$oid":"55cba2476c522cafdb054545"},"location":{"coordinates":[-73.9230271,40.7610872],"type":"Point"},"name":"Michael'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054546"},"location":{"coordinates":[-73.9241803,40.7616575],"type":"Point"},"name":"Nuevo Jardin De China Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054547"},"location":{"coordinates":[-74.033272,40.618809],"type":"Point"},"name":"Delias Lounge Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054548"},"location":{"coordinates":[-73.9840517,40.7224092],"type":"Point"},"name":"Il Posto Accanto"} +,{"_id":{"$oid":"55cba2476c522cafdb054549"},"location":{"coordinates":[-73.9088979,40.778582],"type":"Point"},"name":"No Partners"} +,{"_id":{"$oid":"55cba2476c522cafdb05454a"},"location":{"coordinates":[-73.9860031,40.7620089],"type":"Point"},"name":"Thalia"} +,{"_id":{"$oid":"55cba2476c522cafdb05454b"},"location":{"coordinates":[-73.882325,40.756148],"type":"Point"},"name":"Pan Fino"} +,{"_id":{"$oid":"55cba2476c522cafdb05454c"},"location":{"coordinates":[-73.9940866,40.7611108],"type":"Point"},"name":"Hallo Berlin"} +,{"_id":{"$oid":"55cba2476c522cafdb05454d"},"location":{"coordinates":[-74.0048984,40.7207701],"type":"Point"},"name":"Pepolino"} +,{"_id":{"$oid":"55cba2476c522cafdb05454e"},"location":{"coordinates":[-73.98400699999999,40.7486485],"type":"Point"},"name":"C.U.N.Y Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05454f"},"location":{"coordinates":[-73.9129933,40.74859259999999],"type":"Point"},"name":"Donato'S Pizzeria Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054550"},"location":{"coordinates":[-73.9603676,40.8069748],"type":"Point"},"name":"Lenfest Cafe - Jerome Green Hall"} +,{"_id":{"$oid":"55cba2476c522cafdb054551"},"location":{"coordinates":[-73.9640299,40.807001],"type":"Point"},"name":"Cafe 212/Columbia Catering Kitchen - Alfred Lerner Hall"} +,{"_id":{"$oid":"55cba2476c522cafdb054552"},"location":{"coordinates":[-73.9937999,40.682074],"type":"Point"},"name":"The Grocery"} +,{"_id":{"$oid":"55cba2476c522cafdb054553"},"location":{"coordinates":[-73.9780487,40.7254621],"type":"Point"},"name":"Esperanto"} +,{"_id":{"$oid":"55cba2476c522cafdb054554"},"location":{"coordinates":[-73.9109154,40.7766011],"type":"Point"},"name":"Chicken Festival"} +,{"_id":{"$oid":"55cba2476c522cafdb054555"},"location":{"coordinates":[-73.9271936,40.656741],"type":"Point"},"name":"West Cuisine-Enchantment By Maria"} +,{"_id":{"$oid":"55cba2476c522cafdb054556"},"location":{"coordinates":[-73.9420895,40.8181467],"type":"Point"},"name":"Make My Cake"} +,{"_id":{"$oid":"55cba2476c522cafdb054557"},"location":{"coordinates":[-73.9980826,40.7166948],"type":"Point"},"name":"Fay Da Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb054558"},"location":{"coordinates":[-73.9463447,40.6542651],"type":"Point"},"name":"Cafe 101"} +,{"_id":{"$oid":"55cba2476c522cafdb054559"},"location":{"coordinates":[-73.9122805,40.6136522],"type":"Point"},"name":"Dagan Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05455a"},"location":{"coordinates":[-73.8889124,40.678254],"type":"Point"},"name":"M. Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05455b"},"location":{"coordinates":[-74.0001035,40.7275972],"type":"Point"},"name":"Lupa"} +,{"_id":{"$oid":"55cba2476c522cafdb05455c"},"location":{"coordinates":[-73.8799004,40.7480787],"type":"Point"},"name":"Hornado Ecuatoriano"} +,{"_id":{"$oid":"55cba2476c522cafdb05455d"},"location":{"coordinates":[-73.9503798,40.6559105],"type":"Point"},"name":"New Soldiers Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05455e"},"location":{"coordinates":[-73.99885890000002,40.6767279],"type":"Point"},"name":"Le Petit Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05455f"},"location":{"coordinates":[-73.987866,40.6935684],"type":"Point"},"name":"Phoebe'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054560"},"location":{"coordinates":[-92.7194907,41.7460985],"type":"Point"},"name":"Amerada Hess Express Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054561"},"location":{"coordinates":[-74.0072149,40.7084158],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb054562"},"location":{"coordinates":[-73.9853857,40.7637587],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb054563"},"location":{"coordinates":[-73.9957168,40.7273131],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb054564"},"location":{"coordinates":[-73.8400645,40.66139099999999],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb054565"},"location":{"coordinates":[-73.96844469999999,40.8009604],"type":"Point"},"name":"Henry'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054566"},"location":{"coordinates":[-74.008419,40.716914],"type":"Point"},"name":"Petite Abeille"} +,{"_id":{"$oid":"55cba2476c522cafdb054567"},"location":{"coordinates":[-73.7660726,40.7610545],"type":"Point"},"name":"Pizza Hut"} +,{"_id":{"$oid":"55cba2476c522cafdb054568"},"location":{"coordinates":[-73.8618163,40.7297058],"type":"Point"},"name":"Pizza Hut"} +,{"_id":{"$oid":"55cba2476c522cafdb054569"},"location":{"coordinates":[-73.9101076,40.7527085],"type":"Point"},"name":"Pizza Hut"} +,{"_id":{"$oid":"55cba2476c522cafdb05456a"},"location":{"coordinates":[-73.74478560000001,40.7302317],"type":"Point"},"name":"Pizza Hut"} +,{"_id":{"$oid":"55cba2476c522cafdb05456b"},"location":{"coordinates":[-73.9015462,40.7136773],"type":"Point"},"name":"Pizza Hut, Kentucky Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb05456c"},"location":{"coordinates":[-73.8965462,40.7008184],"type":"Point"},"name":"Pizza Hut"} +,{"_id":{"$oid":"55cba2476c522cafdb05456d"},"location":{"coordinates":[-73.8977781,40.9052826],"type":"Point"},"name":"The Barbecue Pit"} +,{"_id":{"$oid":"55cba2476c522cafdb05456e"},"location":{"coordinates":[-73.9542182,40.7749116],"type":"Point"},"name":"Blockheads Burritos"} +,{"_id":{"$oid":"55cba2476c522cafdb05456f"},"location":{"coordinates":[-74.0054595,40.7198099],"type":"Point"},"name":"Tribeca Park Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054570"},"location":{"coordinates":[-73.7529452,40.6481331],"type":"Point"},"name":"Pizza Hut/Wing Street"} +,{"_id":{"$oid":"55cba2476c522cafdb054571"},"location":{"coordinates":[-74.00422449999999,40.7299821],"type":"Point"},"name":"Do Hwa"} +,{"_id":{"$oid":"55cba2476c522cafdb054572"},"location":{"coordinates":[-73.71439699999999,40.736286],"type":"Point"},"name":"Pizza Hut"} +,{"_id":{"$oid":"55cba2476c522cafdb054573"},"location":{"coordinates":[-73.8227612,40.7649941],"type":"Point"},"name":"Pizza Hut"} +,{"_id":{"$oid":"55cba2476c522cafdb054574"},"location":{"coordinates":[-73.8516322,40.6861561],"type":"Point"},"name":"Pizza Hut"} +,{"_id":{"$oid":"55cba2476c522cafdb054575"},"location":{"coordinates":[-73.98864,40.7216158],"type":"Point"},"name":"Rosario'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054576"},"location":{"coordinates":[-74.1928099,40.6000765],"type":"Point"},"name":"Chuck E Cheese'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054577"},"location":{"coordinates":[-73.9172255,40.86929170000001],"type":"Point"},"name":"Liffy Ii Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054578"},"location":{"coordinates":[-73.9604753,40.7723975],"type":"Point"},"name":"Orsay"} +,{"_id":{"$oid":"55cba2476c522cafdb054579"},"location":{"coordinates":[-73.98936599999999,40.723918],"type":"Point"},"name":"Prune"} +,{"_id":{"$oid":"55cba2476c522cafdb05457a"},"location":{"coordinates":[-73.8886216,40.7494958],"type":"Point"},"name":"Gustosa Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05457b"},"location":{"coordinates":[-73.977824,40.757964],"type":"Point"},"name":"Morrell Wine Bar \u0026 Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05457c"},"location":{"coordinates":[-73.99426609999999,40.7508707],"type":"Point"},"name":"Gold Bar B"} +,{"_id":{"$oid":"55cba2476c522cafdb05457d"},"location":{"coordinates":[-73.8449639,40.8450638],"type":"Point"},"name":"Pine Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb05457e"},"location":{"coordinates":[-74.0049389,40.640196],"type":"Point"},"name":"Hong Fung Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb05457f"},"location":{"coordinates":[-73.84515499999999,40.720545],"type":"Point"},"name":"Billiard Company"} +,{"_id":{"$oid":"55cba2476c522cafdb054580"},"location":{"coordinates":[-73.93630139999999,40.5835969],"type":"Point"},"name":"Sheepshead Bay Yacht Club Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054581"},"location":{"coordinates":[-73.9875331,40.72829249999999],"type":"Point"},"name":"Stage Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054582"},"location":{"coordinates":[-73.994756,40.730087],"type":"Point"},"name":"Torch Club"} +,{"_id":{"$oid":"55cba2476c522cafdb054583"},"location":{"coordinates":[-73.872145,40.7026322],"type":"Point"},"name":"El Salvador Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054584"},"location":{"coordinates":[-73.816634,40.7524508],"type":"Point"},"name":"Dosa Hutt"} +,{"_id":{"$oid":"55cba2476c522cafdb054585"},"location":{"coordinates":[-74.01032339999999,40.7050156],"type":"Point"},"name":"Delmonicos"} +,{"_id":{"$oid":"55cba2476c522cafdb054586"},"location":{"coordinates":[-73.9836989,40.7522855],"type":"Point"},"name":"Windfall"} +,{"_id":{"$oid":"55cba2476c522cafdb054587"},"location":{"coordinates":[-73.952247,40.7724369],"type":"Point"},"name":"Annelies Pastries"} +,{"_id":{"$oid":"55cba2476c522cafdb054588"},"location":{"coordinates":[-73.980764,40.7532198],"type":"Point"},"name":"Bravo Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054589"},"location":{"coordinates":[-73.9819766,40.7558649],"type":"Point"},"name":"Triomphe"} +,{"_id":{"$oid":"55cba2476c522cafdb05458a"},"location":{"coordinates":[-73.9921155,40.7364657],"type":"Point"},"name":"Park Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05458b"},"location":{"coordinates":[-74.2165607,40.5221243],"type":"Point"},"name":"Kiddie Cakes"} +,{"_id":{"$oid":"55cba2476c522cafdb05458c"},"location":{"coordinates":[-73.94310449999999,40.8108763],"type":"Point"},"name":"Manna Restaurant Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb05458d"},"location":{"coordinates":[-73.98033749999999,40.7529521],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb05458e"},"location":{"coordinates":[-73.9572416,40.7775113],"type":"Point"},"name":"Lexington Candy Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb05458f"},"location":{"coordinates":[-73.9125455,40.7745714],"type":"Point"},"name":"Family Corner"} +,{"_id":{"$oid":"55cba2476c522cafdb054590"},"location":{"coordinates":[-74.002504,40.625414],"type":"Point"},"name":"Gennaro'S Catering Hall"} +,{"_id":{"$oid":"55cba2476c522cafdb054591"},"location":{"coordinates":[-73.8984052,40.8280502],"type":"Point"},"name":"Prospect Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb054592"},"location":{"coordinates":[-73.97705599999999,40.752998],"type":"Point"},"name":"Juniors"} +,{"_id":{"$oid":"55cba2476c522cafdb054593"},"location":{"coordinates":[-73.97705599999999,40.752998],"type":"Point"},"name":"Juniors"} +,{"_id":{"$oid":"55cba2476c522cafdb054594"},"location":{"coordinates":[-73.9935848,40.7330038],"type":"Point"},"name":"Nyu Kosher Eatery"} +,{"_id":{"$oid":"55cba2476c522cafdb054595"},"location":{"coordinates":[-73.8451855,40.71948709999999],"type":"Point"},"name":"Pahal Zan Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054596"},"location":{"coordinates":[-73.8780795,40.756055],"type":"Point"},"name":"Bagel House"} +,{"_id":{"$oid":"55cba2476c522cafdb054597"},"location":{"coordinates":[-74.2174153,40.5536306],"type":"Point"},"name":"The Historic Old Bermuda Inn"} +,{"_id":{"$oid":"55cba2476c522cafdb054598"},"location":{"coordinates":[-73.9664884,40.7698365],"type":"Point"},"name":"Le Charlot"} +,{"_id":{"$oid":"55cba2476c522cafdb054599"},"location":{"coordinates":[-73.9766459,40.7602745],"type":"Point"},"name":"Soba Nippon Japanese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05459a"},"location":{"coordinates":[-74.14900829999999,40.5381541],"type":"Point"},"name":"Andrew'S Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb05459b"},"location":{"coordinates":[-74.1331891,40.56415930000001],"type":"Point"},"name":"Ambrosinos Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb05459c"},"location":{"coordinates":[-73.987653,40.724931],"type":"Point"},"name":"Karma"} +,{"_id":{"$oid":"55cba2476c522cafdb05459d"},"location":{"coordinates":[-73.9985519,40.714614],"type":"Point"},"name":"Peking Duck House"} +,{"_id":{"$oid":"55cba2476c522cafdb05459e"},"location":{"coordinates":[-74.00855299999999,40.7464627],"type":"Point"},"name":"Pier Sixty One-The Lighthouse"} +,{"_id":{"$oid":"55cba2476c522cafdb05459f"},"location":{"coordinates":[-74.0055537,40.7198815],"type":"Point"},"name":"Anotheroom"} +,{"_id":{"$oid":"55cba2476c522cafdb0545a0"},"location":{"coordinates":[-73.9465567,40.8085797],"type":"Point"},"name":"Golden Krust Caribbean Bakery \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0545a1"},"location":{"coordinates":[-74.002387,40.730602],"type":"Point"},"name":"Greenwich Village Bistro"} +,{"_id":{"$oid":"55cba2476c522cafdb0545a2"},"location":{"coordinates":[-73.848705,40.710323],"type":"Point"},"name":"Continental Luncheonette \u0026 Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb0545a3"},"location":{"coordinates":[-73.941099,40.798685],"type":"Point"},"name":"Domino'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0545a4"},"location":{"coordinates":[-73.9829184,40.6736139],"type":"Point"},"name":"Loki Bar \u0026 Benchmark Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0545a5"},"location":{"coordinates":[-73.970443,40.75844],"type":"Point"},"name":"Cucina Gourmet"} +,{"_id":{"$oid":"55cba2476c522cafdb0545a6"},"location":{"coordinates":[-74.02596299999999,40.636638],"type":"Point"},"name":"Three Jolly Pigeons"} +,{"_id":{"$oid":"55cba2476c522cafdb0545a7"},"location":{"coordinates":[-73.82976750000002,40.8657555],"type":"Point"},"name":"Barnes \u0026 Noble Booksellers"} +,{"_id":{"$oid":"55cba2476c522cafdb0545a8"},"location":{"coordinates":[-73.986201,40.727416],"type":"Point"},"name":"Blue \u0026 Gold Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0545a9"},"location":{"coordinates":[-74.0096839,40.7047512],"type":"Point"},"name":"Leonidas"} +,{"_id":{"$oid":"55cba2476c522cafdb0545aa"},"location":{"coordinates":[-73.9825829,40.769461],"type":"Point"},"name":"Sapphire Indian Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb0545ab"},"location":{"coordinates":[-73.9009493,40.7465045],"type":"Point"},"name":"Braulio'S \u0026 Family Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0545ac"},"location":{"coordinates":[-74.001438,40.7378064],"type":"Point"},"name":"Village Den"} +,{"_id":{"$oid":"55cba2476c522cafdb0545ad"},"location":{"coordinates":[-73.89659019999999,40.7461067],"type":"Point"},"name":"El Sitio Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0545ae"},"location":{"coordinates":[-73.97551039999999,40.75092619999999],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0545af"},"location":{"coordinates":[-73.9853517,40.7477908],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0545b0"},"location":{"coordinates":[-73.97778799999999,40.7833609],"type":"Point"},"name":"Bourbon Street"} +,{"_id":{"$oid":"55cba2476c522cafdb0545b1"},"location":{"coordinates":[-73.9879038,40.7196456],"type":"Point"},"name":"The Whiskey Ward"} +,{"_id":{"$oid":"55cba2476c522cafdb0545b2"},"location":{"coordinates":[-73.8367371,40.580119],"type":"Point"},"name":"Kerry Hills Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb0545b3"},"location":{"coordinates":[-73.9823795,40.674337],"type":"Point"},"name":"Bonnie'S Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0545b4"},"location":{"coordinates":[-73.994272,40.721696],"type":"Point"},"name":"Peasant"} +,{"_id":{"$oid":"55cba2476c522cafdb0545b5"},"location":{"coordinates":[-73.8441198,40.6764737],"type":"Point"},"name":"Adrian \u0026 Rocky'S Caterers"} +,{"_id":{"$oid":"55cba2476c522cafdb0545b6"},"location":{"coordinates":[-73.9127954,40.7661701],"type":"Point"},"name":"Sissy Mcginty'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0545b7"},"location":{"coordinates":[-73.983437,40.7269523],"type":"Point"},"name":"Ten Degrees"} +,{"_id":{"$oid":"55cba2476c522cafdb0545b8"},"location":{"coordinates":[-74.0010011,40.7306066],"type":"Point"},"name":"Black Fat Pussy Cat"} +,{"_id":{"$oid":"55cba2476c522cafdb0545b9"},"location":{"coordinates":[-73.9882453,40.6934634],"type":"Point"},"name":"Phoebe'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0545ba"},"location":{"coordinates":[-73.9516754,40.585088],"type":"Point"},"name":"Munchinette"} +,{"_id":{"$oid":"55cba2476c522cafdb0545bb"},"location":{"coordinates":[-74.1097497,40.6296623],"type":"Point"},"name":"Nucci'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0545bc"},"location":{"coordinates":[-73.915497,40.83967],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0545bd"},"location":{"coordinates":[-73.82798679999999,40.7603752],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0545be"},"location":{"coordinates":[-73.8376322,40.5796692],"type":"Point"},"name":"New Kim'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0545bf"},"location":{"coordinates":[-73.9744492,40.7527018],"type":"Point"},"name":"The Wheeltapper"} +,{"_id":{"$oid":"55cba2476c522cafdb0545c0"},"location":{"coordinates":[-73.9136305,40.7533158],"type":"Point"},"name":"Chuck E Cheese'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0545c1"},"location":{"coordinates":[-73.8877778,40.81777779999999],"type":"Point"},"name":"Market Place Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0545c2"},"location":{"coordinates":[-73.9791142,40.754993],"type":"Point"},"name":"Cinema The Brasserie"} +,{"_id":{"$oid":"55cba2476c522cafdb0545c3"},"location":{"coordinates":[-73.9734886,40.7531015],"type":"Point"},"name":"Gente"} +,{"_id":{"$oid":"55cba2476c522cafdb0545c4"},"location":{"coordinates":[-73.9772294,40.7527262],"type":"Point"},"name":"Two Boots Grand Central"} +,{"_id":{"$oid":"55cba2476c522cafdb0545c5"},"location":{"coordinates":[-73.9687205,40.6913413],"type":"Point"},"name":"Evodio'S Place"} +,{"_id":{"$oid":"55cba2476c522cafdb0545c6"},"location":{"coordinates":[-73.9770219,40.7640334],"type":"Point"},"name":"Rue 57"} +,{"_id":{"$oid":"55cba2476c522cafdb0545c7"},"location":{"coordinates":[-73.989747,40.726523],"type":"Point"},"name":"Cucina Di Pesce"} +,{"_id":{"$oid":"55cba2476c522cafdb0545c8"},"location":{"coordinates":[-73.99938139999999,40.7172631],"type":"Point"},"name":"Dragon Land Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0545c9"},"location":{"coordinates":[-73.98837569999999,40.7535397],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0545ca"},"location":{"coordinates":[-73.91895629999999,40.74353139999999],"type":"Point"},"name":"Oki Japanese Restaruant"} +,{"_id":{"$oid":"55cba2476c522cafdb0545cb"},"location":{"coordinates":[-73.9848365,40.742659],"type":"Point"},"name":"Hillstone Manhattan"} +,{"_id":{"$oid":"55cba2476c522cafdb0545cc"},"location":{"coordinates":[-73.9727504,40.7602438],"type":"Point"},"name":"Reliable Food"} +,{"_id":{"$oid":"55cba2476c522cafdb0545cd"},"location":{"coordinates":[-73.92278879999999,40.7675356],"type":"Point"},"name":"Plaza Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb0545ce"},"location":{"coordinates":[-73.9574976,40.6945948],"type":"Point"},"name":"Chinantla"} +,{"_id":{"$oid":"55cba2476c522cafdb0545cf"},"location":{"coordinates":[-73.97760079999999,40.6853237],"type":"Point"},"name":"Hanson Gourmet Deli \u0026 Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0545d0"},"location":{"coordinates":[-74.0074941,40.7057352],"type":"Point"},"name":"The Full Shilling"} +,{"_id":{"$oid":"55cba2476c522cafdb0545d1"},"location":{"coordinates":[-73.9824347,40.7578271],"type":"Point"},"name":"Utsav Festive India Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0545d2"},"location":{"coordinates":[-73.99657549999999,40.7246035],"type":"Point"},"name":"Housing Works Food"} +,{"_id":{"$oid":"55cba2476c522cafdb0545d3"},"location":{"coordinates":[-74.010475,40.7172636],"type":"Point"},"name":"Roc Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0545d4"},"location":{"coordinates":[-73.98952609999999,40.7507917],"type":"Point"},"name":"Au Bon Pain"} +,{"_id":{"$oid":"55cba2476c522cafdb0545d5"},"location":{"coordinates":[-74.1973,40.559734],"type":"Point"},"name":"Unique Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb0545d6"},"location":{"coordinates":[-73.8501976,40.6874312],"type":"Point"},"name":"Burger King"} +,{"_id":{"$oid":"55cba2476c522cafdb0545d7"},"location":{"coordinates":[-73.96675669999999,40.8032378],"type":"Point"},"name":"Saji'S Japanese Food"} +,{"_id":{"$oid":"55cba2476c522cafdb0545d8"},"location":{"coordinates":[-74.0313962,40.6235252],"type":"Point"},"name":"Seven Stars Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0545d9"},"location":{"coordinates":[-74.00164649999999,40.7344508],"type":"Point"},"name":"Julius"} +,{"_id":{"$oid":"55cba2476c522cafdb0545da"},"location":{"coordinates":[-73.98535629999999,40.74986860000001],"type":"Point"},"name":"Playwright Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb0545db"},"location":{"coordinates":[-73.92591,40.762454],"type":"Point"},"name":"Dino'S Pizza \u0026 Pasta"} +,{"_id":{"$oid":"55cba2476c522cafdb0545dc"},"location":{"coordinates":[-73.88595699999999,40.74762399999999],"type":"Point"},"name":"Cositas Ricas"} +,{"_id":{"$oid":"55cba2476c522cafdb0545dd"},"location":{"coordinates":[-73.9659032,40.76497519999999],"type":"Point"},"name":"Le Pain Quotidien"} +,{"_id":{"$oid":"55cba2476c522cafdb0545de"},"location":{"coordinates":[-74.00847499999999,40.722532],"type":"Point"},"name":"United Grocery \u0026 Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb0545df"},"location":{"coordinates":[-73.7891337,40.7660074],"type":"Point"},"name":"Juice For Life"} +,{"_id":{"$oid":"55cba2476c522cafdb0545e0"},"location":{"coordinates":[-73.96095729999999,40.7593632],"type":"Point"},"name":"Guastavino'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0545e1"},"location":{"coordinates":[-73.94067509999999,40.75131770000001],"type":"Point"},"name":"Scandals"} +,{"_id":{"$oid":"55cba2476c522cafdb0545e2"},"location":{"coordinates":[-73.8835316,40.8676037],"type":"Point"},"name":"Jolly Tinker"} +,{"_id":{"$oid":"55cba2476c522cafdb0545e3"},"location":{"coordinates":[-73.9491634,40.6801472],"type":"Point"},"name":"Not Just Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0545e4"},"location":{"coordinates":[-73.9527517,40.5990416],"type":"Point"},"name":"Estelle"} +,{"_id":{"$oid":"55cba2476c522cafdb0545e5"},"location":{"coordinates":[-73.984011,40.7610605],"type":"Point"},"name":"Ruby Foo'S Times Square"} +,{"_id":{"$oid":"55cba2476c522cafdb0545e6"},"location":{"coordinates":[-73.8676548,40.8992003],"type":"Point"},"name":"Angelica'S Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0545e7"},"location":{"coordinates":[-73.9662084,40.7544921],"type":"Point"},"name":"Deux Amis"} +,{"_id":{"$oid":"55cba2476c522cafdb0545e8"},"location":{"coordinates":[-74.0127775,40.7058397],"type":"Point"},"name":"Stir Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0545e9"},"location":{"coordinates":[-73.8309735,40.6996605],"type":"Point"},"name":"Pizza Jarden"} +,{"_id":{"$oid":"55cba2476c522cafdb0545ea"},"location":{"coordinates":[-73.9893762,40.7272256],"type":"Point"},"name":"Fish Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0545eb"},"location":{"coordinates":[-73.960242,40.6082417],"type":"Point"},"name":"Sunflower Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0545ec"},"location":{"coordinates":[-73.75826769999999,40.7399448],"type":"Point"},"name":"Villa Rustica Ristorante"} +,{"_id":{"$oid":"55cba2476c522cafdb0545ed"},"location":{"coordinates":[-74.00224229999999,40.6072948],"type":"Point"},"name":"Pizza Den"} +,{"_id":{"$oid":"55cba2476c522cafdb0545ee"},"location":{"coordinates":[-73.8542141,40.84864580000001],"type":"Point"},"name":"Captain'S Pizzeria And Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0545ef"},"location":{"coordinates":[-73.977857,40.784301],"type":"Point"},"name":"Brother Jimmy'S Bbq"} +,{"_id":{"$oid":"55cba2476c522cafdb0545f0"},"location":{"coordinates":[-73.8579257,40.7281371],"type":"Point"},"name":"Sato Japanese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0545f1"},"location":{"coordinates":[-73.9652842,40.5764471],"type":"Point"},"name":"Varenichnaya - Pelmini Varenichky"} +,{"_id":{"$oid":"55cba2476c522cafdb0545f2"},"location":{"coordinates":[-74.0138547,40.6448588],"type":"Point"},"name":"Tequilitas Mexican Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0545f3"},"location":{"coordinates":[-73.9839763,40.7798952],"type":"Point"},"name":"Giacomo Fine Foods"} +,{"_id":{"$oid":"55cba2476c522cafdb0545f4"},"location":{"coordinates":[-73.9873745,40.7222321],"type":"Point"},"name":"Katz'S Delicatessen"} +,{"_id":{"$oid":"55cba2476c522cafdb0545f5"},"location":{"coordinates":[-73.8950761,40.7021827],"type":"Point"},"name":"Antica Trattoria"} +,{"_id":{"$oid":"55cba2476c522cafdb0545f6"},"location":{"coordinates":[-73.9774643,40.7526347],"type":"Point"},"name":"The Campbell Apartment - In Grand Central"} +,{"_id":{"$oid":"55cba2476c522cafdb0545f7"},"location":{"coordinates":[-73.9184203,40.7041002],"type":"Point"},"name":"Dunkin' Donuts Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb0545f8"},"location":{"coordinates":[-73.9660888,40.6936268],"type":"Point"},"name":"John'S Donut \u0026 Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb0545f9"},"location":{"coordinates":[-73.9772473,40.784167],"type":"Point"},"name":"Haru"} +,{"_id":{"$oid":"55cba2476c522cafdb0545fa"},"location":{"coordinates":[-73.9583727,40.7723174],"type":"Point"},"name":"Haru"} +,{"_id":{"$oid":"55cba2476c522cafdb0545fb"},"location":{"coordinates":[-73.9858807,40.7264521],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0545fc"},"location":{"coordinates":[-73.9932841,40.7291149],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0545fd"},"location":{"coordinates":[-73.97254,40.755045],"type":"Point"},"name":"Avra Estiatorio"} +,{"_id":{"$oid":"55cba2476c522cafdb0545fe"},"location":{"coordinates":[-73.9795938,40.6577047],"type":"Point"},"name":"Rythym \u0026 Booze"} +,{"_id":{"$oid":"55cba2476c522cafdb0545ff"},"location":{"coordinates":[-73.9927457,40.7592097],"type":"Point"},"name":"Esca"} +,{"_id":{"$oid":"55cba2476c522cafdb054600"},"location":{"coordinates":[-74.0134161,40.6140856],"type":"Point"},"name":"John Hughes Knights Of Columbus Club"} +,{"_id":{"$oid":"55cba2476c522cafdb054601"},"location":{"coordinates":[-73.764287,40.700352],"type":"Point"},"name":"J \u0026 C Seafood"} +,{"_id":{"$oid":"55cba2476c522cafdb054602"},"location":{"coordinates":[-73.9885192,40.7698117],"type":"Point"},"name":"The Greek Kitchen Clinton Bakery Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054603"},"location":{"coordinates":[-74.0006504,40.731355],"type":"Point"},"name":"Vol De Nuit"} +,{"_id":{"$oid":"55cba2476c522cafdb054604"},"location":{"coordinates":[-73.9153942,40.844623],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054605"},"location":{"coordinates":[-73.9620217,40.7590592],"type":"Point"},"name":"Cafe Joul"} +,{"_id":{"$oid":"55cba2476c522cafdb054606"},"location":{"coordinates":[-73.98933509999999,40.763422],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054607"},"location":{"coordinates":[-73.9934645,40.71554649999999],"type":"Point"},"name":"Cup \u0026 Saucer"} +,{"_id":{"$oid":"55cba2476c522cafdb054608"},"location":{"coordinates":[-73.867651,40.752163],"type":"Point"},"name":"El Paraiso Bar \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054609"},"location":{"coordinates":[-73.990494,40.7569545],"type":"Point"},"name":"Munchy'S"} +,{"_id":{"$oid":"55cba2476c522cafdb05460a"},"location":{"coordinates":[-73.92139890000001,40.767283],"type":"Point"},"name":"Mccaffrey And Burke"} +,{"_id":{"$oid":"55cba2476c522cafdb05460b"},"location":{"coordinates":[-73.98512199999999,40.63198200000001],"type":"Point"},"name":"Mesivta Eitz Chaim"} +,{"_id":{"$oid":"55cba2476c522cafdb05460c"},"location":{"coordinates":[-73.95026779999999,40.71810989999999],"type":"Point"},"name":"Pete'S Candy Store"} +,{"_id":{"$oid":"55cba2476c522cafdb05460d"},"location":{"coordinates":[-73.98443,40.725358],"type":"Point"},"name":"Juicy Lucy"} +,{"_id":{"$oid":"55cba2476c522cafdb05460e"},"location":{"coordinates":[-73.9828063,40.7489289],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb05460f"},"location":{"coordinates":[-73.964973,40.80712399999999],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb054610"},"location":{"coordinates":[-73.95676279999999,40.7170508],"type":"Point"},"name":"Acqua Santa"} +,{"_id":{"$oid":"55cba2476c522cafdb054611"},"location":{"coordinates":[-73.9692235,40.7614094],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb054612"},"location":{"coordinates":[-73.9615571,40.7640017],"type":"Point"},"name":"Silver Star Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054613"},"location":{"coordinates":[-73.75510779999999,40.6050376],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054614"},"location":{"coordinates":[-73.8603037,40.6701624],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054615"},"location":{"coordinates":[-73.8546057,40.8544756],"type":"Point"},"name":"Portofino Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054616"},"location":{"coordinates":[-74.0071389,40.6512448],"type":"Point"},"name":"Burger King"} +,{"_id":{"$oid":"55cba2476c522cafdb054617"},"location":{"coordinates":[-73.9603194,40.6503633],"type":"Point"},"name":"Fisherman'S Cove"} +,{"_id":{"$oid":"55cba2476c522cafdb054618"},"location":{"coordinates":[-73.986565,40.7307119],"type":"Point"},"name":"Bar Veloce"} +,{"_id":{"$oid":"55cba2476c522cafdb054619"},"location":{"coordinates":[-74.00668759999999,40.6558052],"type":"Point"},"name":"Hero Champ"} +,{"_id":{"$oid":"55cba2476c522cafdb05461a"},"location":{"coordinates":[-73.829741,40.757968],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb05461b"},"location":{"coordinates":[-73.97333119999999,40.7593752],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb05461c"},"location":{"coordinates":[-73.9788903,40.7605367],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb05461d"},"location":{"coordinates":[-74.0067882,40.7060144],"type":"Point"},"name":"Au Bon Pain"} +,{"_id":{"$oid":"55cba2476c522cafdb05461e"},"location":{"coordinates":[-73.9783387,40.7627874],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb05461f"},"location":{"coordinates":[-73.924936,40.690885],"type":"Point"},"name":"St Lucian Paradise"} +,{"_id":{"$oid":"55cba2476c522cafdb054620"},"location":{"coordinates":[-73.9758719,40.6261629],"type":"Point"},"name":"Pizza Bagel Burger"} +,{"_id":{"$oid":"55cba2476c522cafdb054621"},"location":{"coordinates":[-73.9936453,40.7308116],"type":"Point"},"name":"Au Bon Pain"} +,{"_id":{"$oid":"55cba2476c522cafdb054622"},"location":{"coordinates":[-73.9896729,40.7347314],"type":"Point"},"name":"Au Bon Pain"} +,{"_id":{"$oid":"55cba2476c522cafdb054623"},"location":{"coordinates":[-73.85672319999999,40.8939927],"type":"Point"},"name":"Ali'S Roti Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb054624"},"location":{"coordinates":[-73.9789514,40.76359799999999],"type":"Point"},"name":"Au Bon Pain"} +,{"_id":{"$oid":"55cba2476c522cafdb054625"},"location":{"coordinates":[-74.0132552,40.7027702],"type":"Point"},"name":"Au Bon Pain"} +,{"_id":{"$oid":"55cba2476c522cafdb054626"},"location":{"coordinates":[-73.86262099999999,40.750304],"type":"Point"},"name":"La Cabana"} +,{"_id":{"$oid":"55cba2476c522cafdb054627"},"location":{"coordinates":[-73.97490839999999,40.7532711],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb054628"},"location":{"coordinates":[-73.973793,40.748161],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054629"},"location":{"coordinates":[-73.97595,40.785827],"type":"Point"},"name":"George Keeley"} +,{"_id":{"$oid":"55cba2476c522cafdb05462a"},"location":{"coordinates":[-73.943218,40.711967],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb05462b"},"location":{"coordinates":[-73.92319619999999,40.7611784],"type":"Point"},"name":"El Mariachi Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05462c"},"location":{"coordinates":[-73.98998270000001,40.744452],"type":"Point"},"name":"Latin American Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05462d"},"location":{"coordinates":[-88.6383588,33.3528489],"type":"Point"},"name":"Le Bon Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05462e"},"location":{"coordinates":[-73.9886598,40.7565811],"type":"Point"},"name":"Applebee'S Neighborhood Grill \u0026 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05462f"},"location":{"coordinates":[-73.95903109999999,40.71347129999999],"type":"Point"},"name":"Caribbean Sports"} +,{"_id":{"$oid":"55cba2476c522cafdb054630"},"location":{"coordinates":[-73.90686199999999,40.712688],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb054631"},"location":{"coordinates":[-73.8552368,40.71094919999999],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb054632"},"location":{"coordinates":[-73.9812776,40.7568337],"type":"Point"},"name":"Cafe Cello Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb054633"},"location":{"coordinates":[-73.96439029999999,40.6225488],"type":"Point"},"name":"Cafe K"} +,{"_id":{"$oid":"55cba2476c522cafdb054634"},"location":{"coordinates":[-73.959383,40.8149183],"type":"Point"},"name":"Tom'S Delicious Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054635"},"location":{"coordinates":[-73.902222,40.64915],"type":"Point"},"name":"Metro Coffee Shop @ Jetro"} +,{"_id":{"$oid":"55cba2476c522cafdb054636"},"location":{"coordinates":[-73.89955979999999,40.8577153],"type":"Point"},"name":"Susie'S Pies"} +,{"_id":{"$oid":"55cba2476c522cafdb054637"},"location":{"coordinates":[-73.8305506,40.7611159],"type":"Point"},"name":"Tai Pan Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb054638"},"location":{"coordinates":[-73.9668188,40.7531219],"type":"Point"},"name":"Nations Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054639"},"location":{"coordinates":[-73.988622,40.739716],"type":"Point"},"name":"Giorgio'S Of Gramercy"} +,{"_id":{"$oid":"55cba2476c522cafdb05463a"},"location":{"coordinates":[-74.005561,40.7359009],"type":"Point"},"name":"Wallse Restaruant"} +,{"_id":{"$oid":"55cba2476c522cafdb05463b"},"location":{"coordinates":[-73.9644708,40.7587261],"type":"Point"},"name":"Mr. Chow Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05463c"},"location":{"coordinates":[-73.829627,40.7577646],"type":"Point"},"name":"Tong Hai Tung Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb05463d"},"location":{"coordinates":[-74.02687100000001,40.63448],"type":"Point"},"name":"Del Corso Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb05463e"},"location":{"coordinates":[-73.8286263,40.8381952],"type":"Point"},"name":"Teresa'S Gourmet"} +,{"_id":{"$oid":"55cba2476c522cafdb05463f"},"location":{"coordinates":[-73.9805707,40.5793238],"type":"Point"},"name":"Domino'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054640"},"location":{"coordinates":[-74.02961549999999,40.6188133],"type":"Point"},"name":"Domino'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054641"},"location":{"coordinates":[-73.8867297,40.6540126],"type":"Point"},"name":"Domino'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054642"},"location":{"coordinates":[-73.864632,40.8452821],"type":"Point"},"name":"Domino'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054643"},"location":{"coordinates":[-73.9081684,40.6697662],"type":"Point"},"name":"Domino'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054644"},"location":{"coordinates":[-73.9023478,40.8843386],"type":"Point"},"name":"Domino'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054645"},"location":{"coordinates":[-73.8228302,40.8268764],"type":"Point"},"name":"Domino'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054646"},"location":{"coordinates":[-73.9436362,40.70829870000001],"type":"Point"},"name":"Domino'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054647"},"location":{"coordinates":[-73.9070584,40.8546019],"type":"Point"},"name":"Domino'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054648"},"location":{"coordinates":[-73.9348807,40.7971528],"type":"Point"},"name":"Patsy'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb054649"},"location":{"coordinates":[-73.80323340000001,40.6745342],"type":"Point"},"name":"Domino'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05464a"},"location":{"coordinates":[-74.00935050000001,40.6188519],"type":"Point"},"name":"Domino'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05464b"},"location":{"coordinates":[-73.86364329999999,40.6917254],"type":"Point"},"name":"Domino'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05464c"},"location":{"coordinates":[-73.9430715,40.7467767],"type":"Point"},"name":"Domino'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05464d"},"location":{"coordinates":[-73.760205,40.679708],"type":"Point"},"name":"Domino'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05464e"},"location":{"coordinates":[-73.81724539999999,40.7076294],"type":"Point"},"name":"Domino'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05464f"},"location":{"coordinates":[-73.99597539999999,40.7246728],"type":"Point"},"name":"Puck Fair"} +,{"_id":{"$oid":"55cba2476c522cafdb054650"},"location":{"coordinates":[-73.8851268,40.7557824],"type":"Point"},"name":"El Rumbero Bar Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054651"},"location":{"coordinates":[-73.94320979999999,40.7053972],"type":"Point"},"name":"Antojitos Mexicanos"} +,{"_id":{"$oid":"55cba2476c522cafdb054652"},"location":{"coordinates":[-73.9198493,40.8036479],"type":"Point"},"name":"Picanteria El Botecito"} +,{"_id":{"$oid":"55cba2476c522cafdb054653"},"location":{"coordinates":[-73.943011,40.607228],"type":"Point"},"name":"Pronto Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054654"},"location":{"coordinates":[-73.9694367,40.7531964],"type":"Point"},"name":"Nino'S Positano"} +,{"_id":{"$oid":"55cba2476c522cafdb054655"},"location":{"coordinates":[-92.72249769999999,41.7461483],"type":"Point"},"name":"Sammy'S Noodle Shop \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb054656"},"location":{"coordinates":[-73.9870615,40.7285042],"type":"Point"},"name":"Cafe Orlin"} +,{"_id":{"$oid":"55cba2476c522cafdb054657"},"location":{"coordinates":[-73.946952,40.779645],"type":"Point"},"name":"Pinocchio Ristorante"} +,{"_id":{"$oid":"55cba2476c522cafdb054658"},"location":{"coordinates":[-73.9816622,40.7655121],"type":"Point"},"name":"Hooters"} +,{"_id":{"$oid":"55cba2476c522cafdb054659"},"location":{"coordinates":[-73.8789383,40.7129412],"type":"Point"},"name":"Milan Sports Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05465a"},"location":{"coordinates":[-73.946589,40.695877],"type":"Point"},"name":"Mike'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05465b"},"location":{"coordinates":[-73.95317299999999,40.746338],"type":"Point"},"name":"Junior'S Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05465c"},"location":{"coordinates":[-73.7342245,40.7722447],"type":"Point"},"name":"Marathon Food Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb05465d"},"location":{"coordinates":[-73.84947930000001,40.5782181],"type":"Point"},"name":"Ciros Pastry Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb05465e"},"location":{"coordinates":[-74.11066819999999,40.57119369999999],"type":"Point"},"name":"Mike'S Place"} +,{"_id":{"$oid":"55cba2476c522cafdb05465f"},"location":{"coordinates":[-73.896586,40.75213],"type":"Point"},"name":"Amf 34 Avenue Lanes"} +,{"_id":{"$oid":"55cba2476c522cafdb054660"},"location":{"coordinates":[-73.9214745,40.7603878],"type":"Point"},"name":"Scorpio"} +,{"_id":{"$oid":"55cba2476c522cafdb054661"},"location":{"coordinates":[-73.953422,40.77189],"type":"Point"},"name":"Bar Coastal"} +,{"_id":{"$oid":"55cba2476c522cafdb054662"},"location":{"coordinates":[-73.78093969999999,40.7295765],"type":"Point"},"name":"Domino'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054663"},"location":{"coordinates":[-73.950456,40.672989],"type":"Point"},"name":"Original Vegetarian Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054664"},"location":{"coordinates":[-73.9361296,40.6215646],"type":"Point"},"name":"Domino'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054665"},"location":{"coordinates":[-73.9589046,40.7089167],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054666"},"location":{"coordinates":[-73.9905627,40.6869149],"type":"Point"},"name":"Domino'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054667"},"location":{"coordinates":[-73.9490154,40.6481393],"type":"Point"},"name":"Domino'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054668"},"location":{"coordinates":[-73.9307614,40.76577],"type":"Point"},"name":"Samaria Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054669"},"location":{"coordinates":[-74.0911522,40.5705787],"type":"Point"},"name":"Island Shores"} +,{"_id":{"$oid":"55cba2476c522cafdb05466a"},"location":{"coordinates":[-73.9041718,40.9073323],"type":"Point"},"name":"Nonis Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb05466b"},"location":{"coordinates":[-73.98364699999999,40.7491351],"type":"Point"},"name":"Oxford Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05466c"},"location":{"coordinates":[-73.99099149999999,40.7499318],"type":"Point"},"name":"Tim Hortons"} +,{"_id":{"$oid":"55cba2476c522cafdb05466d"},"location":{"coordinates":[-73.997056,40.721598],"type":"Point"},"name":"Mexican Radio"} +,{"_id":{"$oid":"55cba2476c522cafdb05466e"},"location":{"coordinates":[-73.9861966,40.7604451],"type":"Point"},"name":"Hurley'S Saloon"} +,{"_id":{"$oid":"55cba2476c522cafdb05466f"},"location":{"coordinates":[-73.9285623,40.81229820000001],"type":"Point"},"name":"Blue Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb054670"},"location":{"coordinates":[-74.0023973,40.732497],"type":"Point"},"name":"Restaurant Annisa"} +,{"_id":{"$oid":"55cba2476c522cafdb054671"},"location":{"coordinates":[-73.7822056,40.6434612],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054672"},"location":{"coordinates":[-74.0065229,40.7393762],"type":"Point"},"name":"Sugar Factory"} +,{"_id":{"$oid":"55cba2476c522cafdb054673"},"location":{"coordinates":[-74.00273880000002,40.73316610000001],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb054674"},"location":{"coordinates":[-73.76407619999999,40.681116],"type":"Point"},"name":"Springfield Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb054675"},"location":{"coordinates":[-73.8620263,40.7495605],"type":"Point"},"name":"Flushing Meadows Pitch And Putt"} +,{"_id":{"$oid":"55cba2476c522cafdb054676"},"location":{"coordinates":[-73.96107119999999,40.71418269999999],"type":"Point"},"name":"Iona'S Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054677"},"location":{"coordinates":[-73.970573,40.797339],"type":"Point"},"name":"Turkuaz Turkish Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb054678"},"location":{"coordinates":[-73.99067,40.761553],"type":"Point"},"name":"Hell'S Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb054679"},"location":{"coordinates":[-73.99315849999999,40.7482946],"type":"Point"},"name":"Seven Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb05467a"},"location":{"coordinates":[-73.99921499999999,40.74558469999999],"type":"Point"},"name":"Patsy'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb05467b"},"location":{"coordinates":[-73.8087156,40.763946],"type":"Point"},"name":"Tous Les Jours"} +,{"_id":{"$oid":"55cba2476c522cafdb05467c"},"location":{"coordinates":[-74.0329788,40.6194848],"type":"Point"},"name":"Paneantico Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb05467d"},"location":{"coordinates":[-73.9862536,40.7585799],"type":"Point"},"name":"Marriott Marquis - Main Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb05467e"},"location":{"coordinates":[-73.9862536,40.7585799],"type":"Point"},"name":"Room Service Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb05467f"},"location":{"coordinates":[-73.9862536,40.7585799],"type":"Point"},"name":"Intermisson Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054680"},"location":{"coordinates":[-73.9862536,40.7585799],"type":"Point"},"name":"Broadway Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb054681"},"location":{"coordinates":[-73.9862536,40.7585799],"type":"Point"},"name":"View Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054682"},"location":{"coordinates":[-73.9862536,40.7585799],"type":"Point"},"name":"Crossroads (Marriott Marquis)"} +,{"_id":{"$oid":"55cba2476c522cafdb054683"},"location":{"coordinates":[-73.9862536,40.7585799],"type":"Point"},"name":"Marriott Marquis Pastry Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb054684"},"location":{"coordinates":[-73.9862536,40.7585799],"type":"Point"},"name":"Mariott Marquis/Crossroads Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054685"},"location":{"coordinates":[-73.9862536,40.7585799],"type":"Point"},"name":"View Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb054686"},"location":{"coordinates":[-73.9237307,40.7433399],"type":"Point"},"name":"The Courtyard Ale House"} +,{"_id":{"$oid":"55cba2476c522cafdb054687"},"location":{"coordinates":[-73.987822,40.769557],"type":"Point"},"name":"Strokos Pizza Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb054688"},"location":{"coordinates":[-73.9679039,40.7564318],"type":"Point"},"name":"Opal"} +,{"_id":{"$oid":"55cba2476c522cafdb054689"},"location":{"coordinates":[-73.992255,40.749712],"type":"Point"},"name":"Zaro'S Bread Basket"} +,{"_id":{"$oid":"55cba2476c522cafdb05468a"},"location":{"coordinates":[-73.8799398,40.7480746],"type":"Point"},"name":"Maguire'S Public House"} +,{"_id":{"$oid":"55cba2476c522cafdb05468b"},"location":{"coordinates":[-74.000254,40.7172727],"type":"Point"},"name":"Nha-Trang Centre Vietnam Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05468c"},"location":{"coordinates":[-82.384467,38.427248],"type":"Point"},"name":"Little Italy Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05468d"},"location":{"coordinates":[-74.004809,40.7188721],"type":"Point"},"name":"Tribeca Grand Hotel"} +,{"_id":{"$oid":"55cba2476c522cafdb05468e"},"location":{"coordinates":[-73.97836389999999,40.777607],"type":"Point"},"name":"Sido Falalel \u0026 More"} +,{"_id":{"$oid":"55cba2476c522cafdb05468f"},"location":{"coordinates":[-73.967455,40.760891],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054690"},"location":{"coordinates":[-74.01136939999999,40.7164914],"type":"Point"},"name":"Cafe Amore'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054691"},"location":{"coordinates":[-73.9404009,40.8395605],"type":"Point"},"name":"Dallas Bbq"} +,{"_id":{"$oid":"55cba2476c522cafdb054692"},"location":{"coordinates":[-73.942387,40.703708],"type":"Point"},"name":"American Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb054693"},"location":{"coordinates":[-73.7832451,40.7288193],"type":"Point"},"name":"Peking House"} +,{"_id":{"$oid":"55cba2476c522cafdb054694"},"location":{"coordinates":[-74.0061455,40.7328128],"type":"Point"},"name":"Sanpanino"} +,{"_id":{"$oid":"55cba2476c522cafdb054695"},"location":{"coordinates":[-73.8263328,40.8662088],"type":"Point"},"name":"Applebee'S Neighborhood Grill \u0026 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054696"},"location":{"coordinates":[-73.9407446,40.7892449],"type":"Point"},"name":"Double Dragon"} +,{"_id":{"$oid":"55cba2476c522cafdb054697"},"location":{"coordinates":[-73.90867,40.880189],"type":"Point"},"name":"Bally Total Fitness"} +,{"_id":{"$oid":"55cba2476c522cafdb054698"},"location":{"coordinates":[-73.99464789999999,40.6020978],"type":"Point"},"name":"Burger King"} +,{"_id":{"$oid":"55cba2476c522cafdb054699"},"location":{"coordinates":[-73.8321279,40.7673946],"type":"Point"},"name":"Fountain Of Youth Health Spa Juice Bar \u0026 Dinner"} +,{"_id":{"$oid":"55cba2476c522cafdb05469a"},"location":{"coordinates":[-73.93942799999999,40.660295],"type":"Point"},"name":"Albany Manor"} +,{"_id":{"$oid":"55cba2476c522cafdb05469b"},"location":{"coordinates":[-73.8671967,40.7216631],"type":"Point"},"name":"Maurya Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05469c"},"location":{"coordinates":[-74.0214036,40.6330489],"type":"Point"},"name":"Elegante Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05469d"},"location":{"coordinates":[-73.9783571,40.75376809999999],"type":"Point"},"name":"Starbucks Coffee (Bank Of America Building)"} +,{"_id":{"$oid":"55cba2476c522cafdb05469e"},"location":{"coordinates":[-74.0109418,40.7095523],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb05469f"},"location":{"coordinates":[-73.86743,40.844679],"type":"Point"},"name":"Morris Park Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0546a0"},"location":{"coordinates":[-73.9510916,40.5836346],"type":"Point"},"name":"Istanbul Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0546a1"},"location":{"coordinates":[-74.01299449999999,40.7053319],"type":"Point"},"name":"Sophie'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0546a2"},"location":{"coordinates":[-73.997653,40.741859],"type":"Point"},"name":"Peter Mcmanus"} +,{"_id":{"$oid":"55cba2476c522cafdb0546a3"},"location":{"coordinates":[-73.8610744,40.8324594],"type":"Point"},"name":"Circle Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb0546a4"},"location":{"coordinates":[-73.9925729,40.758035],"type":"Point"},"name":"Dave'S Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb0546a5"},"location":{"coordinates":[-73.862967,40.748166],"type":"Point"},"name":"El Pollo Peruano"} +,{"_id":{"$oid":"55cba2476c522cafdb0546a6"},"location":{"coordinates":[-73.7342623,40.7716355],"type":"Point"},"name":"La Grotta Ristorante"} +,{"_id":{"$oid":"55cba2476c522cafdb0546a7"},"location":{"coordinates":[-73.910693,40.744894],"type":"Point"},"name":"Tres Coronas Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0546a8"},"location":{"coordinates":[-73.9613869,40.6802252],"type":"Point"},"name":"Best Deli Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0546a9"},"location":{"coordinates":[-74.0271258,40.6323596],"type":"Point"},"name":"Taj Mahal Indian Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0546aa"},"location":{"coordinates":[-74.0163793,40.7167671],"type":"Point"},"name":"West 79Th Street Boat Basin Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0546ab"},"location":{"coordinates":[-73.965559,40.765392],"type":"Point"},"name":"Barbaresco"} +,{"_id":{"$oid":"55cba2476c522cafdb0546ac"},"location":{"coordinates":[-73.9792456,40.7717915],"type":"Point"},"name":"Ballfields Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0546ad"},"location":{"coordinates":[-73.87946459999999,40.76921129999999],"type":"Point"},"name":"Laguardia Courtyard Hotel By Marriott"} +,{"_id":{"$oid":"55cba2476c522cafdb0546ae"},"location":{"coordinates":[-73.8503878,40.7253331],"type":"Point"},"name":"Da Mikelle Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb0546af"},"location":{"coordinates":[-73.974796,40.6809719],"type":"Point"},"name":"Bergen Bagels"} +,{"_id":{"$oid":"55cba2476c522cafdb0546b0"},"location":{"coordinates":[-73.944993,40.7113021],"type":"Point"},"name":"Bahia Restaurant \u0026 Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0546b1"},"location":{"coordinates":[-73.9924214,40.6840975],"type":"Point"},"name":"Angry Wades"} +,{"_id":{"$oid":"55cba2476c522cafdb0546b2"},"location":{"coordinates":[-73.95688799999999,40.767069],"type":"Point"},"name":"Cafe Luka"} +,{"_id":{"$oid":"55cba2476c522cafdb0546b3"},"location":{"coordinates":[-73.9982994,40.7173595],"type":"Point"},"name":"Labella Ferrara"} +,{"_id":{"$oid":"55cba2476c522cafdb0546b4"},"location":{"coordinates":[-73.9410575,40.8384568],"type":"Point"},"name":"Parrilla Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0546b5"},"location":{"coordinates":[-73.97644199999999,40.7810076],"type":"Point"},"name":"Cafe Frida"} +,{"_id":{"$oid":"55cba2476c522cafdb0546b6"},"location":{"coordinates":[-73.9885633,40.7234639],"type":"Point"},"name":"Juicy Lucy'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0546b7"},"location":{"coordinates":[-73.78945,40.707502],"type":"Point"},"name":"New Sunny Garden Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0546b8"},"location":{"coordinates":[-73.9476907,40.790024],"type":"Point"},"name":"Jalapeno Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb0546b9"},"location":{"coordinates":[-73.98066639999999,40.760432],"type":"Point"},"name":"Time Cafeteria"} +,{"_id":{"$oid":"55cba2476c522cafdb0546ba"},"location":{"coordinates":[-73.9571457,40.7722763],"type":"Point"},"name":"Cafe Buon Gusto"} +,{"_id":{"$oid":"55cba2476c522cafdb0546bb"},"location":{"coordinates":[-73.965474,40.76551],"type":"Point"},"name":"Hale \u0026 Hearty Soups"} +,{"_id":{"$oid":"55cba2476c522cafdb0546bc"},"location":{"coordinates":[-73.99855409999999,40.7447708],"type":"Point"},"name":"Murray'S Bagels"} +,{"_id":{"$oid":"55cba2476c522cafdb0546bd"},"location":{"coordinates":[-74.0328099,40.6198118],"type":"Point"},"name":"Nino'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0546be"},"location":{"coordinates":[-73.86180999999999,40.9009047],"type":"Point"},"name":"Bella Napoli"} +,{"_id":{"$oid":"55cba2476c522cafdb0546bf"},"location":{"coordinates":[-73.9934097,40.6616446],"type":"Point"},"name":"Luigi'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb0546c0"},"location":{"coordinates":[-73.9889178,40.75996749999999],"type":"Point"},"name":"B. Smith Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0546c1"},"location":{"coordinates":[-73.9532023,40.780337],"type":"Point"},"name":"Roma Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0546c2"},"location":{"coordinates":[-73.9833914,40.7711259],"type":"Point"},"name":"Rosa Mexicano At Lincoln Center"} +,{"_id":{"$oid":"55cba2476c522cafdb0546c3"},"location":{"coordinates":[-73.90567390000001,40.8766056],"type":"Point"},"name":"Astral Fitness \u0026 Wellness"} +,{"_id":{"$oid":"55cba2476c522cafdb0546c4"},"location":{"coordinates":[-73.86932469999999,40.7521988],"type":"Point"},"name":"La Nortena Express Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0546c5"},"location":{"coordinates":[-73.9845362,40.7620434],"type":"Point"},"name":"Circle In The Square Theatre"} +,{"_id":{"$oid":"55cba2476c522cafdb0546c6"},"location":{"coordinates":[-73.98733,40.765136],"type":"Point"},"name":"Eatery Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0546c7"},"location":{"coordinates":[-73.83455,40.6787667],"type":"Point"},"name":"My Mother'S Place"} +,{"_id":{"$oid":"55cba2476c522cafdb0546c8"},"location":{"coordinates":[-73.9921299,40.6908345],"type":"Point"},"name":"Barnes \u0026 Noble Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0546c9"},"location":{"coordinates":[-73.8004905,40.7038328],"type":"Point"},"name":"Peking Express"} +,{"_id":{"$oid":"55cba2476c522cafdb0546ca"},"location":{"coordinates":[-73.9113807,40.7442965],"type":"Point"},"name":"La Flor Bakery Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0546cb"},"location":{"coordinates":[-73.99650539999999,40.7682095],"type":"Point"},"name":"Olympic Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0546cc"},"location":{"coordinates":[-73.918601,40.698549],"type":"Point"},"name":"Burger King"} +,{"_id":{"$oid":"55cba2476c522cafdb0546cd"},"location":{"coordinates":[-73.8916826,40.7113697],"type":"Point"},"name":"Burger King/Metro Mall"} +,{"_id":{"$oid":"55cba2476c522cafdb0546ce"},"location":{"coordinates":[-73.9550178,40.6103442],"type":"Point"},"name":"Memo Shish Kebab"} +,{"_id":{"$oid":"55cba2476c522cafdb0546cf"},"location":{"coordinates":[-73.997185,40.715023],"type":"Point"},"name":"Great N.Y. Noodletown"} +,{"_id":{"$oid":"55cba2476c522cafdb0546d0"},"location":{"coordinates":[-73.99992809999999,40.7459],"type":"Point"},"name":"The Half King"} +,{"_id":{"$oid":"55cba2476c522cafdb0546d1"},"location":{"coordinates":[-73.96086919999999,40.5977486],"type":"Point"},"name":"Burger King"} +,{"_id":{"$oid":"55cba2476c522cafdb0546d2"},"location":{"coordinates":[-73.87785749999999,40.760312],"type":"Point"},"name":"Yummy Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0546d3"},"location":{"coordinates":[-73.9642844,40.6827346],"type":"Point"},"name":"Golden Krust Caribbean Bakery \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0546d4"},"location":{"coordinates":[-73.95785099999999,40.7174769],"type":"Point"},"name":"Bliss Bakery \u0026 Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0546d5"},"location":{"coordinates":[-73.9744668,40.731155],"type":"Point"},"name":"Zum Schneider"} +,{"_id":{"$oid":"55cba2476c522cafdb0546d6"},"location":{"coordinates":[-73.9485895,40.64024269999999],"type":"Point"},"name":"Golden Krust Caribbean Bakery \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0546d7"},"location":{"coordinates":[-73.99436399999999,40.69023070000001],"type":"Point"},"name":"The Brazen Head"} +,{"_id":{"$oid":"55cba2476c522cafdb0546d8"},"location":{"coordinates":[-73.789289,40.769934],"type":"Point"},"name":"Ralph'S Ii Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb0546d9"},"location":{"coordinates":[-73.98021299999999,40.727219],"type":"Point"},"name":"Gnocco"} +,{"_id":{"$oid":"55cba2476c522cafdb0546da"},"location":{"coordinates":[-73.9498632,40.7799512],"type":"Point"},"name":"Chef Ho'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0546db"},"location":{"coordinates":[-73.95546499999999,40.6187332],"type":"Point"},"name":"Chadash Falafel \u0026 Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0546dc"},"location":{"coordinates":[-73.795523,40.7577573],"type":"Point"},"name":"San Soo Kap San"} +,{"_id":{"$oid":"55cba2476c522cafdb0546dd"},"location":{"coordinates":[-73.9107439,40.776487],"type":"Point"},"name":"Pizza Palace"} +,{"_id":{"$oid":"55cba2476c522cafdb0546de"},"location":{"coordinates":[-73.9988,40.723726],"type":"Point"},"name":"Cafe Duke"} +,{"_id":{"$oid":"55cba2476c522cafdb0546df"},"location":{"coordinates":[-73.8518311,40.8504655],"type":"Point"},"name":"Hong Kong Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0546e0"},"location":{"coordinates":[-74.0066449,40.7392415],"type":"Point"},"name":"Macelleria Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0546e1"},"location":{"coordinates":[-73.92127110000001,40.6446434],"type":"Point"},"name":"Footprints Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0546e2"},"location":{"coordinates":[-73.84471610000001,40.84312430000001],"type":"Point"},"name":"Caridad"} +,{"_id":{"$oid":"55cba2476c522cafdb0546e3"},"location":{"coordinates":[-73.9143362,40.7637919],"type":"Point"},"name":"Gaudio'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb0546e4"},"location":{"coordinates":[-74.0118361,40.7051454],"type":"Point"},"name":"Pret A Manger"} +,{"_id":{"$oid":"55cba2476c522cafdb0546e5"},"location":{"coordinates":[-73.94444519999999,40.7147697],"type":"Point"},"name":"El Loco Burrito"} +,{"_id":{"$oid":"55cba2476c522cafdb0546e6"},"location":{"coordinates":[-73.98744649999999,40.7193235],"type":"Point"},"name":"Essex"} +,{"_id":{"$oid":"55cba2476c522cafdb0546e7"},"location":{"coordinates":[-73.98722920000002,40.7209631],"type":"Point"},"name":"El Nuevo Amanecer Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0546e8"},"location":{"coordinates":[-73.785422,40.7883967],"type":"Point"},"name":"Ponticello Baybridge Pizzeria \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0546e9"},"location":{"coordinates":[-73.968012,40.597293],"type":"Point"},"name":"Alices"} +,{"_id":{"$oid":"55cba2476c522cafdb0546ea"},"location":{"coordinates":[-73.9181728,40.7602927],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0546eb"},"location":{"coordinates":[-73.9091548,40.6626546],"type":"Point"},"name":"Popeyes Chicken \u0026 Biscuits"} +,{"_id":{"$oid":"55cba2476c522cafdb0546ec"},"location":{"coordinates":[-74.00599319999999,40.7149312],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0546ed"},"location":{"coordinates":[-74.0099658,40.6454685],"type":"Point"},"name":"Charles Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb0546ee"},"location":{"coordinates":[-74.1668698,40.588193],"type":"Point"},"name":"Wendy'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0546ef"},"location":{"coordinates":[-73.9506864,40.778924],"type":"Point"},"name":"Marty O'Brien'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0546f0"},"location":{"coordinates":[-73.9775629,40.6810713],"type":"Point"},"name":"Convivium Osteria"} +,{"_id":{"$oid":"55cba2476c522cafdb0546f1"},"location":{"coordinates":[-73.9773359,40.78498],"type":"Point"},"name":"The Dead Poet"} +,{"_id":{"$oid":"55cba2476c522cafdb0546f2"},"location":{"coordinates":[-74.00196919999999,40.738354],"type":"Point"},"name":"A Salt \u0026 Battery"} +,{"_id":{"$oid":"55cba2476c522cafdb0546f3"},"location":{"coordinates":[-73.9732461,40.6086286],"type":"Point"},"name":"Cindy Restaurant Luncheonette"} +,{"_id":{"$oid":"55cba2476c522cafdb0546f4"},"location":{"coordinates":[-73.98781199999999,40.7656009],"type":"Point"},"name":"Georgios Country Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0546f5"},"location":{"coordinates":[-73.90810669999999,40.7027894],"type":"Point"},"name":"Jade Seneca Oriental Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0546f6"},"location":{"coordinates":[-73.885335,40.7219089],"type":"Point"},"name":"Phillies Pizzeria Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb0546f7"},"location":{"coordinates":[-73.9986819,40.73702189999999],"type":"Point"},"name":"Gradisca Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0546f8"},"location":{"coordinates":[-73.9747277,40.7536114],"type":"Point"},"name":"Cafe Metro"} +,{"_id":{"$oid":"55cba2476c522cafdb0546f9"},"location":{"coordinates":[-73.9835548,40.7387073],"type":"Point"},"name":"Pizza Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb0546fa"},"location":{"coordinates":[-73.8706606,40.7342757],"type":"Point"},"name":"Cinnabon World Famous Cinnamon Rolls"} +,{"_id":{"$oid":"55cba2476c522cafdb0546fb"},"location":{"coordinates":[-74.0096839,40.7047512],"type":"Point"},"name":"Hanover Gourmet Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb0546fc"},"location":{"coordinates":[-73.983634,40.7294377],"type":"Point"},"name":"Sahara East Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0546fd"},"location":{"coordinates":[-73.9854099,40.749687],"type":"Point"},"name":"Cafe Rustico Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb0546fe"},"location":{"coordinates":[-73.9902951,40.7380332],"type":"Point"},"name":"New Andy'S Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb0546ff"},"location":{"coordinates":[-74.0019252,40.7323493],"type":"Point"},"name":"The Slaughtered Lamb"} +,{"_id":{"$oid":"55cba2476c522cafdb054700"},"location":{"coordinates":[-73.99824699999999,40.750237],"type":"Point"},"name":"Billymarks West"} +,{"_id":{"$oid":"55cba2476c522cafdb054701"},"location":{"coordinates":[-73.99253999999999,40.757773],"type":"Point"},"name":"Tobacco Road"} +,{"_id":{"$oid":"55cba2476c522cafdb054702"},"location":{"coordinates":[-73.8299108,40.7820112],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054703"},"location":{"coordinates":[-73.81317539999999,40.7614779],"type":"Point"},"name":"El Ranchito De Daisy"} +,{"_id":{"$oid":"55cba2476c522cafdb054704"},"location":{"coordinates":[-73.9894649,40.7594479],"type":"Point"},"name":"Private Eyes"} +,{"_id":{"$oid":"55cba2476c522cafdb054705"},"location":{"coordinates":[-73.77676939999999,40.7803566],"type":"Point"},"name":"Boston Market"} +,{"_id":{"$oid":"55cba2476c522cafdb054706"},"location":{"coordinates":[-73.8575202,40.6852051],"type":"Point"},"name":"Boston Market"} +,{"_id":{"$oid":"55cba2476c522cafdb054707"},"location":{"coordinates":[-74.13739600000001,40.62459399999999],"type":"Point"},"name":"Boston Market"} +,{"_id":{"$oid":"55cba2476c522cafdb054708"},"location":{"coordinates":[-73.79424929999999,40.7574391],"type":"Point"},"name":"Boston Market"} +,{"_id":{"$oid":"55cba2476c522cafdb054709"},"location":{"coordinates":[-73.91889549999999,40.6292943],"type":"Point"},"name":"Boston Market"} +,{"_id":{"$oid":"55cba2476c522cafdb05470a"},"location":{"coordinates":[-73.91466319999999,40.7430799],"type":"Point"},"name":"Boston Market"} +,{"_id":{"$oid":"55cba2476c522cafdb05470b"},"location":{"coordinates":[-74.1687024,40.56063169999999],"type":"Point"},"name":"Boston Market"} +,{"_id":{"$oid":"55cba2476c522cafdb05470c"},"location":{"coordinates":[-74.10960130000001,40.5696522],"type":"Point"},"name":"Boston Market"} +,{"_id":{"$oid":"55cba2476c522cafdb05470d"},"location":{"coordinates":[-74.00386680000001,40.7141052],"type":"Point"},"name":"Albella Ristorante \u0026 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05470e"},"location":{"coordinates":[-73.7856486,40.7395806],"type":"Point"},"name":"Boston Market"} +,{"_id":{"$oid":"55cba2476c522cafdb05470f"},"location":{"coordinates":[-73.90440029999999,40.7126111],"type":"Point"},"name":"Boston Market"} +,{"_id":{"$oid":"55cba2476c522cafdb054710"},"location":{"coordinates":[-73.9096395,40.7518295],"type":"Point"},"name":"Boston Market"} +,{"_id":{"$oid":"55cba2476c522cafdb054711"},"location":{"coordinates":[-73.84471930000001,40.7199899],"type":"Point"},"name":"Boston Market"} +,{"_id":{"$oid":"55cba2476c522cafdb054712"},"location":{"coordinates":[-73.9450662,40.80785650000001],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb054713"},"location":{"coordinates":[-74.0085142,40.7480556],"type":"Point"},"name":"Studio Cafe 59"} +,{"_id":{"$oid":"55cba2476c522cafdb054714"},"location":{"coordinates":[-73.9793564,40.7589426],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb054715"},"location":{"coordinates":[-73.7704239,40.6727064],"type":"Point"},"name":"Kelly'S Restaurant \u0026 Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054716"},"location":{"coordinates":[-92.7265541,41.7461415],"type":"Point"},"name":"Starbucks Coffee (Store #7587)"} +,{"_id":{"$oid":"55cba2476c522cafdb054717"},"location":{"coordinates":[-74.0006049,40.743218],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb054718"},"location":{"coordinates":[-73.9906153,40.7371162],"type":"Point"},"name":"Starbucks Coffee # 7540"} +,{"_id":{"$oid":"55cba2476c522cafdb054719"},"location":{"coordinates":[-74.014517,40.717478],"type":"Point"},"name":"The Hallmark Of Battery Park City- Dining Room"} +,{"_id":{"$oid":"55cba2476c522cafdb05471a"},"location":{"coordinates":[-74.014517,40.717478],"type":"Point"},"name":"Hallmark Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb05471b"},"location":{"coordinates":[-73.9900893,40.7390882],"type":"Point"},"name":"City Chow Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05471c"},"location":{"coordinates":[-73.9545971,40.5873145],"type":"Point"},"name":"Bay Pizzeria Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05471d"},"location":{"coordinates":[-73.9640299,40.807001],"type":"Point"},"name":"Ferris Booth Commons - Alfred Lerner Hall"} +,{"_id":{"$oid":"55cba2476c522cafdb05471e"},"location":{"coordinates":[-73.8299108,40.7820112],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb05471f"},"location":{"coordinates":[-73.9733026,40.75140690000001],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb054720"},"location":{"coordinates":[-73.9544765,40.7871231],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb054721"},"location":{"coordinates":[-73.85607499999999,40.711514],"type":"Point"},"name":"Forest Hills Coffe Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb054722"},"location":{"coordinates":[-73.92932739999999,40.6396199],"type":"Point"},"name":"Boston Jerk-City Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054723"},"location":{"coordinates":[-73.97468599999999,40.675083],"type":"Point"},"name":"Mr. Wonton"} +,{"_id":{"$oid":"55cba2476c522cafdb054724"},"location":{"coordinates":[-73.80977560000001,40.7054733],"type":"Point"},"name":"Popeyes Chicken \u0026 Biscuits"} +,{"_id":{"$oid":"55cba2476c522cafdb054725"},"location":{"coordinates":[-73.9561148,40.7723585],"type":"Point"},"name":"Brother Jimmy'S Bbq"} +,{"_id":{"$oid":"55cba2476c522cafdb054726"},"location":{"coordinates":[-73.9987666,40.6046391],"type":"Point"},"name":"Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb054727"},"location":{"coordinates":[-74.03045569999999,40.6168595],"type":"Point"},"name":"Kelly'S Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb054728"},"location":{"coordinates":[-74.00024599999999,40.729905],"type":"Point"},"name":"Meskerem"} +,{"_id":{"$oid":"55cba2476c522cafdb054729"},"location":{"coordinates":[-73.9515128,40.7149676],"type":"Point"},"name":"Union Pool"} +,{"_id":{"$oid":"55cba2476c522cafdb05472a"},"location":{"coordinates":[-73.95876799999999,40.6183915],"type":"Point"},"name":"Chock Full O' Nuts"} +,{"_id":{"$oid":"55cba2476c522cafdb05472b"},"location":{"coordinates":[-73.9881162,40.7269427],"type":"Point"},"name":"Taj Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05472c"},"location":{"coordinates":[-73.962367,40.7637492],"type":"Point"},"name":"China Fun"} +,{"_id":{"$oid":"55cba2476c522cafdb05472d"},"location":{"coordinates":[-73.97705599999999,40.752998],"type":"Point"},"name":"Cafe Spice"} +,{"_id":{"$oid":"55cba2476c522cafdb05472e"},"location":{"coordinates":[-73.8786113,40.8502883],"type":"Point"},"name":"Dancing Crane Cafe (Bx Zoo)"} +,{"_id":{"$oid":"55cba2476c522cafdb05472f"},"location":{"coordinates":[-73.87464469999999,40.8233246],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054730"},"location":{"coordinates":[-73.99783219999999,40.5985843],"type":"Point"},"name":"Carvel Ice Cream"} +,{"_id":{"$oid":"55cba2476c522cafdb054731"},"location":{"coordinates":[-73.9782498,40.675698],"type":"Point"},"name":"Rose Water"} +,{"_id":{"$oid":"55cba2476c522cafdb054732"},"location":{"coordinates":[-73.82073319999999,40.6699599],"type":"Point"},"name":"Pizza Port"} +,{"_id":{"$oid":"55cba2476c522cafdb054733"},"location":{"coordinates":[-73.8236189,40.8690061],"type":"Point"},"name":"Burger King"} +,{"_id":{"$oid":"55cba2476c522cafdb054734"},"location":{"coordinates":[-73.971395,40.7626186],"type":"Point"},"name":"Tao Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054735"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"Terminal1 Employee Cafeteria"} +,{"_id":{"$oid":"55cba2476c522cafdb054736"},"location":{"coordinates":[-73.9793564,40.7589426],"type":"Point"},"name":"Nbc-Ge"} +,{"_id":{"$oid":"55cba2476c522cafdb054737"},"location":{"coordinates":[-73.9544181,40.5949216],"type":"Point"},"name":"Anyway Cafe Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054738"},"location":{"coordinates":[-73.94546489999999,40.6512331],"type":"Point"},"name":"D \u0026 P Restaurant \u0026 Cocktail"} +,{"_id":{"$oid":"55cba2476c522cafdb054739"},"location":{"coordinates":[-73.992796,40.6982656],"type":"Point"},"name":"Plymouth Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05473a"},"location":{"coordinates":[-73.88346740000001,40.749622],"type":"Point"},"name":"Picanteria El Austro"} +,{"_id":{"$oid":"55cba2476c522cafdb05473b"},"location":{"coordinates":[-73.9808764,40.7302622],"type":"Point"},"name":"Muzzarella Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05473c"},"location":{"coordinates":[-74.0032641,40.7327911],"type":"Point"},"name":"Sushi Samba #7"} +,{"_id":{"$oid":"55cba2476c522cafdb05473d"},"location":{"coordinates":[-73.9625052,40.7668083],"type":"Point"},"name":"Americas Burger And Wraps"} +,{"_id":{"$oid":"55cba2476c522cafdb05473e"},"location":{"coordinates":[-73.71717149999999,40.72640790000001],"type":"Point"},"name":"Triple Crown Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb05473f"},"location":{"coordinates":[-73.96471199999999,40.801231],"type":"Point"},"name":"Domino'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054740"},"location":{"coordinates":[-74.006193,40.736151],"type":"Point"},"name":"Dublin 6"} +,{"_id":{"$oid":"55cba2476c522cafdb054741"},"location":{"coordinates":[-73.96067500000001,40.7617148],"type":"Point"},"name":"Ritz Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb054742"},"location":{"coordinates":[-73.8057078,40.6948408],"type":"Point"},"name":"Africana Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054743"},"location":{"coordinates":[-73.8950721,40.7021713],"type":"Point"},"name":"La Cabana Jarabacoa Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054744"},"location":{"coordinates":[-73.8177883,40.7081113],"type":"Point"},"name":"Crystal Palace"} +,{"_id":{"$oid":"55cba2476c522cafdb054745"},"location":{"coordinates":[-80.42540369999999,27.7190047],"type":"Point"},"name":"Pasiones Sports-Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054746"},"location":{"coordinates":[-73.9889215,40.7645101],"type":"Point"},"name":"Posh"} +,{"_id":{"$oid":"55cba2476c522cafdb054747"},"location":{"coordinates":[-73.9495523,40.7136216],"type":"Point"},"name":"Metropolitan"} +,{"_id":{"$oid":"55cba2476c522cafdb054748"},"location":{"coordinates":[-73.8225667,40.86530570000001],"type":"Point"},"name":"Section 5 Pizza Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054749"},"location":{"coordinates":[-73.9877276,40.7533511],"type":"Point"},"name":"Abigael'S On Broadway"} +,{"_id":{"$oid":"55cba2476c522cafdb05474a"},"location":{"coordinates":[-73.9758568,40.7544956],"type":"Point"},"name":"Starbucks Coffee (Store #7577)"} +,{"_id":{"$oid":"55cba2476c522cafdb05474b"},"location":{"coordinates":[-73.993155,40.669266],"type":"Point"},"name":"One Deli Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05474c"},"location":{"coordinates":[-73.914852,40.7071747],"type":"Point"},"name":"Bravo Cafe Concert"} +,{"_id":{"$oid":"55cba2476c522cafdb05474d"},"location":{"coordinates":[-74.1574104,40.6117346],"type":"Point"},"name":"La Piazza Pizzeria \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05474e"},"location":{"coordinates":[-74.0059515,40.7452343],"type":"Point"},"name":"The Park"} +,{"_id":{"$oid":"55cba2476c522cafdb05474f"},"location":{"coordinates":[-73.9788067,40.7769826],"type":"Point"},"name":"Cafe Ronda"} +,{"_id":{"$oid":"55cba2476c522cafdb054750"},"location":{"coordinates":[-73.9935596,40.6866665],"type":"Point"},"name":"Joya"} +,{"_id":{"$oid":"55cba2476c522cafdb054751"},"location":{"coordinates":[-73.9855992,40.7279559],"type":"Point"},"name":"La Palapa"} +,{"_id":{"$oid":"55cba2476c522cafdb054752"},"location":{"coordinates":[-73.98952609999999,40.7507917],"type":"Point"},"name":"Mcdonald'S (Macy'S 7Th Fl)"} +,{"_id":{"$oid":"55cba2476c522cafdb054753"},"location":{"coordinates":[-73.984478,40.7251823],"type":"Point"},"name":"Sing Sing Karaoke"} +,{"_id":{"$oid":"55cba2476c522cafdb054754"},"location":{"coordinates":[-74.2295052,40.5469324],"type":"Point"},"name":"Curves Gentleman'S Club"} +,{"_id":{"$oid":"55cba2476c522cafdb054755"},"location":{"coordinates":[-73.9600126,40.7617728],"type":"Point"},"name":"Sutton Pizza \u0026 Gyro"} +,{"_id":{"$oid":"55cba2476c522cafdb054756"},"location":{"coordinates":[-73.9833072,40.7630411],"type":"Point"},"name":"Mayer, Brown \u0026 Platt"} +,{"_id":{"$oid":"55cba2476c522cafdb054757"},"location":{"coordinates":[-74.02685,40.634533],"type":"Point"},"name":"Panda Restuarant"} +,{"_id":{"$oid":"55cba2476c522cafdb054758"},"location":{"coordinates":[-73.9718097,40.7550153],"type":"Point"},"name":"Devon \u0026 Blakely"} +,{"_id":{"$oid":"55cba2476c522cafdb054759"},"location":{"coordinates":[-73.9587426,40.7177225],"type":"Point"},"name":"Surf Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05475a"},"location":{"coordinates":[-73.94830499999999,40.781662],"type":"Point"},"name":"Zebu Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb05475b"},"location":{"coordinates":[-73.9327586,40.8608392],"type":"Point"},"name":"New Leaf Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05475c"},"location":{"coordinates":[-73.8611919,40.83388799999999],"type":"Point"},"name":"Step In Restaurant \u0026 Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb05475d"},"location":{"coordinates":[-73.8680991,40.8559876],"type":"Point"},"name":"Burger King"} +,{"_id":{"$oid":"55cba2476c522cafdb05475e"},"location":{"coordinates":[-74.00998369999999,40.7093625],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb05475f"},"location":{"coordinates":[-73.81514469999999,40.739764],"type":"Point"},"name":"Regina Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054760"},"location":{"coordinates":[-74.0032586,40.7313468],"type":"Point"},"name":"Risotteria"} +,{"_id":{"$oid":"55cba2476c522cafdb054761"},"location":{"coordinates":[-73.98483499999999,40.745689],"type":"Point"},"name":"Tasty Cafe Catering"} +,{"_id":{"$oid":"55cba2476c522cafdb054762"},"location":{"coordinates":[-73.9968939,40.7236789],"type":"Point"},"name":"Hampton Chutney Company"} +,{"_id":{"$oid":"55cba2476c522cafdb054763"},"location":{"coordinates":[-73.8960883,40.86236299999999],"type":"Point"},"name":"Burger King"} +,{"_id":{"$oid":"55cba2476c522cafdb054764"},"location":{"coordinates":[-73.988609,40.738453],"type":"Point"},"name":"Flute"} +,{"_id":{"$oid":"55cba2476c522cafdb054765"},"location":{"coordinates":[-74.002324,40.731146],"type":"Point"},"name":"Palma"} +,{"_id":{"$oid":"55cba2476c522cafdb054766"},"location":{"coordinates":[-73.98416,40.760478],"type":"Point"},"name":"Playwright Celtic Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb054767"},"location":{"coordinates":[-73.9376491,40.8191987],"type":"Point"},"name":"Grini'S Grill \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054768"},"location":{"coordinates":[-73.9476974,40.583783],"type":"Point"},"name":"Randazzo'S Clam Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054769"},"location":{"coordinates":[-73.9597872,40.7620942],"type":"Point"},"name":"Baker Street Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb05476a"},"location":{"coordinates":[-73.9365637,40.8201488],"type":"Point"},"name":"Papa John'S"} +,{"_id":{"$oid":"55cba2476c522cafdb05476b"},"location":{"coordinates":[-74.12057349999999,40.604379],"type":"Point"},"name":"Manor House Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05476c"},"location":{"coordinates":[-73.91637759999999,40.8226814],"type":"Point"},"name":"Kristy'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05476d"},"location":{"coordinates":[-73.9896788,40.6655512],"type":"Point"},"name":"Domino'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05476e"},"location":{"coordinates":[-73.947161,40.784705],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb05476f"},"location":{"coordinates":[-74.16254529999999,40.5922616],"type":"Point"},"name":"Barnes \u0026 Noble Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054770"},"location":{"coordinates":[-73.962943,40.685007],"type":"Point"},"name":"(Lewis Drug Store) Locanda Vini E Olii"} +,{"_id":{"$oid":"55cba2476c522cafdb054771"},"location":{"coordinates":[-73.9614481,40.6044156],"type":"Point"},"name":"Cafe Renaissance"} +,{"_id":{"$oid":"55cba2476c522cafdb054772"},"location":{"coordinates":[-73.984192,40.6712837],"type":"Point"},"name":"Ginger'S Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054773"},"location":{"coordinates":[-73.9981935,40.7165638],"type":"Point"},"name":"Ten Ren'S Tea Time"} +,{"_id":{"$oid":"55cba2476c522cafdb054774"},"location":{"coordinates":[-73.93178859999999,40.8575841],"type":"Point"},"name":"Arka Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb054775"},"location":{"coordinates":[-89.11438419999999,41.5536725],"type":"Point"},"name":"Paul Weiss Rifkin Wharton"} +,{"_id":{"$oid":"55cba2476c522cafdb054776"},"location":{"coordinates":[-73.9728136,40.75546629999999],"type":"Point"},"name":"525 Lex Restaurant \u0026 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054777"},"location":{"coordinates":[-73.99638949999999,40.7247678],"type":"Point"},"name":"Lahore Delicatessen"} +,{"_id":{"$oid":"55cba2476c522cafdb054778"},"location":{"coordinates":[-74.0032177,40.7349339],"type":"Point"},"name":"Mary'S Fish Camp"} +,{"_id":{"$oid":"55cba2476c522cafdb054779"},"location":{"coordinates":[-74.10465599999999,40.58834],"type":"Point"},"name":"Richmond County Country Club - Pool Snack Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05477a"},"location":{"coordinates":[-74.1110561,40.5884772],"type":"Point"},"name":"Richmond County Country Club(10Th Hole)"} +,{"_id":{"$oid":"55cba2476c522cafdb05477b"},"location":{"coordinates":[-74.112758,40.5833299],"type":"Point"},"name":"Richmond County Country Club"} +,{"_id":{"$oid":"55cba2476c522cafdb05477c"},"location":{"coordinates":[-73.9902836,40.6873687],"type":"Point"},"name":"Bar Tabac"} +,{"_id":{"$oid":"55cba2476c522cafdb05477d"},"location":{"coordinates":[-73.995666,40.645013],"type":"Point"},"name":"Fei Teng Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb05477e"},"location":{"coordinates":[-74.1288687,40.6376129],"type":"Point"},"name":"Bermay Luncheonette"} +,{"_id":{"$oid":"55cba2476c522cafdb05477f"},"location":{"coordinates":[-73.8317112,40.7661163],"type":"Point"},"name":"Carom Cafe Billiards"} +,{"_id":{"$oid":"55cba2476c522cafdb054780"},"location":{"coordinates":[-73.8314062,40.7635042],"type":"Point"},"name":"Hot Bagels \u0026 Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054781"},"location":{"coordinates":[-73.91017719999999,40.6450424],"type":"Point"},"name":"9024/Catering By Michael Schick Inc."} +,{"_id":{"$oid":"55cba2476c522cafdb054782"},"location":{"coordinates":[-73.9579583,40.670145],"type":"Point"},"name":"Golden Krust Caribbean Bakery \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb054783"},"location":{"coordinates":[-74.00640299999999,40.628478],"type":"Point"},"name":"La Sorrentina Pizzeria Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054784"},"location":{"coordinates":[-73.8939305,40.7270254],"type":"Point"},"name":"Scala Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb054785"},"location":{"coordinates":[-73.89784999999999,40.67754499999999],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054786"},"location":{"coordinates":[-73.90176029999999,40.7155097],"type":"Point"},"name":"T.J.'S Sports Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054787"},"location":{"coordinates":[-73.8030423,40.7081423],"type":"Point"},"name":"Al-Mehran Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054788"},"location":{"coordinates":[-73.9942049,40.7610193],"type":"Point"},"name":"44 \u0026 X Hell'S Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb054789"},"location":{"coordinates":[-73.9883701,40.7597713],"type":"Point"},"name":"Brasserie Athenee"} +,{"_id":{"$oid":"55cba2476c522cafdb05478a"},"location":{"coordinates":[-73.8916826,40.7113697],"type":"Point"},"name":"Funtopia Usa"} +,{"_id":{"$oid":"55cba2476c522cafdb05478b"},"location":{"coordinates":[-73.8946782,40.8241532],"type":"Point"},"name":"San German Cuchifrito"} +,{"_id":{"$oid":"55cba2476c522cafdb05478c"},"location":{"coordinates":[-73.9905611,40.7619072],"type":"Point"},"name":"Barrage"} +,{"_id":{"$oid":"55cba2476c522cafdb05478d"},"location":{"coordinates":[-73.9739714,40.791121],"type":"Point"},"name":"Carmine'S"} +,{"_id":{"$oid":"55cba2476c522cafdb05478e"},"location":{"coordinates":[-74.015526,40.710651],"type":"Point"},"name":"Au Bon Pain"} +,{"_id":{"$oid":"55cba2476c522cafdb05478f"},"location":{"coordinates":[-89.11422809999999,41.5537779],"type":"Point"},"name":"Au Bon Pain"} +,{"_id":{"$oid":"55cba2476c522cafdb054790"},"location":{"coordinates":[-74.0118361,40.7051454],"type":"Point"},"name":"Au Bon Pain"} +,{"_id":{"$oid":"55cba2476c522cafdb054791"},"location":{"coordinates":[-73.8906059,40.8448685],"type":"Point"},"name":"J \u0026 J Restaurant \u0026 Cuchifritos"} +,{"_id":{"$oid":"55cba2476c522cafdb054792"},"location":{"coordinates":[-73.98361059999999,40.7676901],"type":"Point"},"name":"Sushi Damo"} +,{"_id":{"$oid":"55cba2476c522cafdb054793"},"location":{"coordinates":[-73.9124705,40.7741025],"type":"Point"},"name":"Koliba Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054794"},"location":{"coordinates":[-73.99721699999999,40.720107],"type":"Point"},"name":"Lunella Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054795"},"location":{"coordinates":[-73.96767129999999,40.8005179],"type":"Point"},"name":"Silver Moon Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb054796"},"location":{"coordinates":[-73.97249959999999,40.7488605],"type":"Point"},"name":"Tsukushi Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054797"},"location":{"coordinates":[-73.7899217,40.7266661],"type":"Point"},"name":"Acquista Trattoria"} +,{"_id":{"$oid":"55cba2476c522cafdb054798"},"location":{"coordinates":[-90.9745883,38.3516219],"type":"Point"},"name":"Central Park Boathouse"} +,{"_id":{"$oid":"55cba2476c522cafdb054799"},"location":{"coordinates":[-73.9979159,40.7131857],"type":"Point"},"name":"Everest Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb05479a"},"location":{"coordinates":[-73.99346299999999,40.761925],"type":"Point"},"name":"Queen Of Sheba Ethiopian Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05479b"},"location":{"coordinates":[-73.9582559,40.811355],"type":"Point"},"name":"Max Soha"} +,{"_id":{"$oid":"55cba2476c522cafdb05479c"},"location":{"coordinates":[-73.9770422,40.7503897],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb05479d"},"location":{"coordinates":[-73.97331679999999,40.75482770000001],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb05479e"},"location":{"coordinates":[-73.9613983,40.7603695],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb05479f"},"location":{"coordinates":[-73.95317949999999,40.8231406],"type":"Point"},"name":"Trufa Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0547a0"},"location":{"coordinates":[-73.92227869999999,40.8177664],"type":"Point"},"name":"Carvel Ice Cream"} +,{"_id":{"$oid":"55cba2476c522cafdb0547a1"},"location":{"coordinates":[-73.978636,40.74148],"type":"Point"},"name":"Saharas Turkish Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb0547a2"},"location":{"coordinates":[-74.0053337,40.72619],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0547a3"},"location":{"coordinates":[-73.8687364,40.75229300000001],"type":"Point"},"name":"Charo Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0547a4"},"location":{"coordinates":[-73.99095960000001,40.600513],"type":"Point"},"name":"Bad Boys Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0547a5"},"location":{"coordinates":[-73.99264459999999,40.6971995],"type":"Point"},"name":"Iron Chef House"} +,{"_id":{"$oid":"55cba2476c522cafdb0547a6"},"location":{"coordinates":[-73.99097309999999,40.7372758],"type":"Point"},"name":"Chop'T"} +,{"_id":{"$oid":"55cba2476c522cafdb0547a7"},"location":{"coordinates":[-73.7749235,40.7532457],"type":"Point"},"name":"Constantines Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb0547a8"},"location":{"coordinates":[-73.78472839999999,40.758111],"type":"Point"},"name":"Mythos Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0547a9"},"location":{"coordinates":[-73.94392189999999,40.810025],"type":"Point"},"name":"Jimbo'S Hamburgers"} +,{"_id":{"$oid":"55cba2476c522cafdb0547aa"},"location":{"coordinates":[-73.9824637,40.7463337],"type":"Point"},"name":"Artisanal"} +,{"_id":{"$oid":"55cba2476c522cafdb0547ab"},"location":{"coordinates":[-73.827316,40.833101],"type":"Point"},"name":"Boulevard Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb0547ac"},"location":{"coordinates":[-73.7861561,40.7393368],"type":"Point"},"name":"Applebee'S Neighborhood Grill \u0026 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0547ad"},"location":{"coordinates":[-73.7765052,40.77898039999999],"type":"Point"},"name":"Applebee'S Neighborhood Grill \u0026 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0547ae"},"location":{"coordinates":[-73.84765279999999,40.8197029],"type":"Point"},"name":"Shore Haven Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb0547af"},"location":{"coordinates":[-74.0746417,40.6252382],"type":"Point"},"name":"Dock Street Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0547b0"},"location":{"coordinates":[-73.9892902,40.7270664],"type":"Point"},"name":"Jewel Bako"} +,{"_id":{"$oid":"55cba2476c522cafdb0547b1"},"location":{"coordinates":[-73.9846676,40.6707717],"type":"Point"},"name":"The Park Slope Chipshop"} +,{"_id":{"$oid":"55cba2476c522cafdb0547b2"},"location":{"coordinates":[-73.98229409999999,40.7521152],"type":"Point"},"name":"Hsbc Bank"} +,{"_id":{"$oid":"55cba2476c522cafdb0547b3"},"location":{"coordinates":[-73.80829640000002,40.701938],"type":"Point"},"name":"Dunkin' Donuts/Baskin Robins"} +,{"_id":{"$oid":"55cba2476c522cafdb0547b4"},"location":{"coordinates":[-73.9752701,40.7527506],"type":"Point"},"name":"City Chow Cafe V (Equinox)"} +,{"_id":{"$oid":"55cba2476c522cafdb0547b5"},"location":{"coordinates":[-73.8371099,40.5788556],"type":"Point"},"name":"Tiberio Dimare"} +,{"_id":{"$oid":"55cba2476c522cafdb0547b6"},"location":{"coordinates":[-73.99267259999999,40.6885188],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0547b7"},"location":{"coordinates":[-73.93845040000001,40.85111819999999],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0547b8"},"location":{"coordinates":[-74.0331186,40.619268],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0547b9"},"location":{"coordinates":[-73.8273029,40.7539473],"type":"Point"},"name":"Kabul Kabab House"} +,{"_id":{"$oid":"55cba2476c522cafdb0547ba"},"location":{"coordinates":[-73.90062209999999,40.745679],"type":"Point"},"name":"Bum Bum Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0547bb"},"location":{"coordinates":[-74.0002514,40.7273702],"type":"Point"},"name":"Jane"} +,{"_id":{"$oid":"55cba2476c522cafdb0547bc"},"location":{"coordinates":[-73.97216999999999,40.755584],"type":"Point"},"name":"Caffe Linda"} +,{"_id":{"$oid":"55cba2476c522cafdb0547bd"},"location":{"coordinates":[-73.95036100000002,40.7792109],"type":"Point"},"name":"Rathbones Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb0547be"},"location":{"coordinates":[-73.7620906,40.7611344],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0547bf"},"location":{"coordinates":[-73.9858795,40.7571582],"type":"Point"},"name":"Haru"} +,{"_id":{"$oid":"55cba2476c522cafdb0547c0"},"location":{"coordinates":[-73.955399,40.769063],"type":"Point"},"name":"Banshee Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb0547c1"},"location":{"coordinates":[-73.9642863,40.802973],"type":"Point"},"name":"Bistro Ten-18"} +,{"_id":{"$oid":"55cba2476c522cafdb0547c2"},"location":{"coordinates":[-73.9996999,40.6138655],"type":"Point"},"name":"The Aurora Pizza Caffe"} +,{"_id":{"$oid":"55cba2476c522cafdb0547c3"},"location":{"coordinates":[-73.9921299,40.6908345],"type":"Point"},"name":"Ua Court Street #12"} +,{"_id":{"$oid":"55cba2476c522cafdb0547c4"},"location":{"coordinates":[-73.8976916,40.8916991],"type":"Point"},"name":"Jake'S Steakhouse"} +,{"_id":{"$oid":"55cba2476c522cafdb0547c5"},"location":{"coordinates":[-74.0060767,40.6524197],"type":"Point"},"name":"Domino'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0547c6"},"location":{"coordinates":[-73.83604179999999,40.7867641],"type":"Point"},"name":"7 Stars"} +,{"_id":{"$oid":"55cba2476c522cafdb0547c7"},"location":{"coordinates":[-74.01143259999999,40.708882],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0547c8"},"location":{"coordinates":[-74.239806,40.535467],"type":"Point"},"name":"Columbus House"} +,{"_id":{"$oid":"55cba2476c522cafdb0547c9"},"location":{"coordinates":[-73.94704,40.779526],"type":"Point"},"name":"Sabor A Mexico"} +,{"_id":{"$oid":"55cba2476c522cafdb0547ca"},"location":{"coordinates":[-73.814275,40.736897],"type":"Point"},"name":"Gino'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0547cb"},"location":{"coordinates":[-73.9694147,40.7545605],"type":"Point"},"name":"Seo Japanese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0547cc"},"location":{"coordinates":[-73.971547,40.590622],"type":"Point"},"name":"Manny'S Cafe Family Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0547cd"},"location":{"coordinates":[-73.87829289999999,40.7130641],"type":"Point"},"name":"The Little Sweet Shoppe"} +,{"_id":{"$oid":"55cba2476c522cafdb0547ce"},"location":{"coordinates":[-73.9827901,40.6052742],"type":"Point"},"name":"Homestretch Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0547cf"},"location":{"coordinates":[-73.99444299999999,40.745064],"type":"Point"},"name":"Milanes Spanish Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0547d0"},"location":{"coordinates":[-73.926895,40.759758],"type":"Point"},"name":"El Boqueron Tapas Bar \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0547d1"},"location":{"coordinates":[-73.9040753,40.9069011],"type":"Point"},"name":"Madison'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0547d2"},"location":{"coordinates":[-73.988849,40.769475],"type":"Point"},"name":"Casabianca Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb0547d3"},"location":{"coordinates":[-73.953558,40.774806],"type":"Point"},"name":"Comic Strip"} +,{"_id":{"$oid":"55cba2476c522cafdb0547d4"},"location":{"coordinates":[-73.88385319999999,40.7560052],"type":"Point"},"name":"Uncle Peter'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0547d5"},"location":{"coordinates":[-73.96576259999999,40.80596329999999],"type":"Point"},"name":"Community Food And Juice"} +,{"_id":{"$oid":"55cba2476c522cafdb0547d6"},"location":{"coordinates":[-73.9733026,40.75140690000001],"type":"Point"},"name":"Hale \u0026 Hearty Soups"} +,{"_id":{"$oid":"55cba2476c522cafdb0547d7"},"location":{"coordinates":[-73.95202990000001,40.772737],"type":"Point"},"name":"Italian Village Restaurant Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb0547d8"},"location":{"coordinates":[-73.9246351,40.7435406],"type":"Point"},"name":"La Vienesa Spanish Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0547d9"},"location":{"coordinates":[-73.7942022,40.6672795],"type":"Point"},"name":"Courtyard By Marriott"} +,{"_id":{"$oid":"55cba2476c522cafdb0547da"},"location":{"coordinates":[-73.9405196,40.8191934],"type":"Point"},"name":"Polanco Restaurant Bbq"} +,{"_id":{"$oid":"55cba2476c522cafdb0547db"},"location":{"coordinates":[-73.9800848,40.7561821],"type":"Point"},"name":"Kosher Deluxe"} +,{"_id":{"$oid":"55cba2476c522cafdb0547dc"},"location":{"coordinates":[-73.95052799999999,40.671823],"type":"Point"},"name":"Trinidad Golden Place"} +,{"_id":{"$oid":"55cba2476c522cafdb0547dd"},"location":{"coordinates":[-73.97815299999999,40.745164],"type":"Point"},"name":"Mercury Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0547de"},"location":{"coordinates":[-73.9893594,40.7023755],"type":"Point"},"name":"Front Street Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0547df"},"location":{"coordinates":[-73.9873646,40.7613088],"type":"Point"},"name":"Sombrero Mexican Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0547e0"},"location":{"coordinates":[-73.9799204,40.7578379],"type":"Point"},"name":"Wu Liang Ye Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0547e1"},"location":{"coordinates":[-74.0135268,40.7085198],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0547e2"},"location":{"coordinates":[-73.8914324,40.7482588],"type":"Point"},"name":"Indian Taj"} +,{"_id":{"$oid":"55cba2476c522cafdb0547e3"},"location":{"coordinates":[-73.9985052,40.7141563],"type":"Point"},"name":"Ajisen Ramen"} +,{"_id":{"$oid":"55cba2476c522cafdb0547e4"},"location":{"coordinates":[-73.9822459,40.76189919999999],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0547e5"},"location":{"coordinates":[-73.9502383,40.7761562],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0547e6"},"location":{"coordinates":[-73.8306577,40.8450232],"type":"Point"},"name":"East Dynasty"} +,{"_id":{"$oid":"55cba2476c522cafdb0547e7"},"location":{"coordinates":[-74.15969900000002,40.5451213],"type":"Point"},"name":"Carvel Ice Cream"} +,{"_id":{"$oid":"55cba2476c522cafdb0547e8"},"location":{"coordinates":[-73.91863839999999,40.7653613],"type":"Point"},"name":"Gandhi Indian Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb0547e9"},"location":{"coordinates":[-73.9668646,40.7647778],"type":"Point"},"name":"Society Of Illustrators"} +,{"_id":{"$oid":"55cba2476c522cafdb0547ea"},"location":{"coordinates":[-73.982107,40.755955],"type":"Point"},"name":"Db Bistro Moderne"} +,{"_id":{"$oid":"55cba2476c522cafdb0547eb"},"location":{"coordinates":[-73.8494611,40.9026555],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0547ec"},"location":{"coordinates":[-73.8153481,40.7299783],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0547ed"},"location":{"coordinates":[-73.7587614,40.7385563],"type":"Point"},"name":"The Patio Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0547ee"},"location":{"coordinates":[-73.8171239,40.5887444],"type":"Point"},"name":"Bungalow Bar \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0547ef"},"location":{"coordinates":[-73.94350639999999,40.6513413],"type":"Point"},"name":"Pat'S Palm Tree Inn"} +,{"_id":{"$oid":"55cba2476c522cafdb0547f0"},"location":{"coordinates":[-73.9478,40.775542],"type":"Point"},"name":"Ko-Sushi Japanese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0547f1"},"location":{"coordinates":[-73.9823569,40.6742527],"type":"Point"},"name":"Blue Ribbon Brasserie"} +,{"_id":{"$oid":"55cba2476c522cafdb0547f2"},"location":{"coordinates":[-73.98385669999999,40.7211434],"type":"Point"},"name":"Clinton Street Baking Company"} +,{"_id":{"$oid":"55cba2476c522cafdb0547f3"},"location":{"coordinates":[-74.0004641,40.7117419],"type":"Point"},"name":"Mrs Friggins' Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0547f4"},"location":{"coordinates":[-73.9847552,40.7561241],"type":"Point"},"name":"Heartland Brewery"} +,{"_id":{"$oid":"55cba2476c522cafdb0547f5"},"location":{"coordinates":[-73.959898,40.65711],"type":"Point"},"name":"Errol'S Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0547f6"},"location":{"coordinates":[-74.00844099999999,40.707058],"type":"Point"},"name":"Koyzina Kafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0547f7"},"location":{"coordinates":[-73.9111384,40.7762543],"type":"Point"},"name":"Starbucks Coffee (Store #7555)"} +,{"_id":{"$oid":"55cba2476c522cafdb0547f8"},"location":{"coordinates":[-73.911866,40.774797],"type":"Point"},"name":"Rosario Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb0547f9"},"location":{"coordinates":[-73.968015,40.7560519],"type":"Point"},"name":"Murphy'S Pub \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0547fa"},"location":{"coordinates":[-73.983177,40.765401],"type":"Point"},"name":"East Japanese Restaurant/ Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0547fb"},"location":{"coordinates":[-73.97537299999999,40.675044],"type":"Point"},"name":"Yb Food Market"} +,{"_id":{"$oid":"55cba2476c522cafdb0547fc"},"location":{"coordinates":[-73.9977107,40.713213],"type":"Point"},"name":"Dim Sum Go Go"} +,{"_id":{"$oid":"55cba2476c522cafdb0547fd"},"location":{"coordinates":[-73.966663,40.7617968],"type":"Point"},"name":"Le Train Bleu \u0026 B Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0547fe"},"location":{"coordinates":[-74.0101498,40.718938],"type":"Point"},"name":"The Harrison"} +,{"_id":{"$oid":"55cba2476c522cafdb0547ff"},"location":{"coordinates":[-73.9025083,40.8603246],"type":"Point"},"name":"Ebe Ye Yie African Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054800"},"location":{"coordinates":[-74.0243954,40.6244107],"type":"Point"},"name":"Bull Shots"} +,{"_id":{"$oid":"55cba2476c522cafdb054801"},"location":{"coordinates":[-73.9530867,40.7755882],"type":"Point"},"name":"Firenze"} +,{"_id":{"$oid":"55cba2476c522cafdb054802"},"location":{"coordinates":[-73.8169913,40.7528258],"type":"Point"},"name":"Devasthanam Canteen"} +,{"_id":{"$oid":"55cba2476c522cafdb054803"},"location":{"coordinates":[-73.990428,40.760652],"type":"Point"},"name":"Deacon Brodie'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054804"},"location":{"coordinates":[-73.8923799,40.7488892],"type":"Point"},"name":"Maharaja Quality Sweets"} +,{"_id":{"$oid":"55cba2476c522cafdb054805"},"location":{"coordinates":[-73.9833869,40.7296539],"type":"Point"},"name":"Neptune Polish Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054806"},"location":{"coordinates":[-73.9835994,40.7573439],"type":"Point"},"name":"Connolly'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054807"},"location":{"coordinates":[-73.9884364,40.7573677],"type":"Point"},"name":"Lucky Star Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054808"},"location":{"coordinates":[-73.98095359999999,40.7631351],"type":"Point"},"name":"Old Castle Pub \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054809"},"location":{"coordinates":[-73.9030535,40.8812538],"type":"Point"},"name":"Malecon Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05480a"},"location":{"coordinates":[-73.99513499999999,40.721208],"type":"Point"},"name":"Bread"} +,{"_id":{"$oid":"55cba2476c522cafdb05480b"},"location":{"coordinates":[-73.987785,40.720079],"type":"Point"},"name":"Verlaine"} +,{"_id":{"$oid":"55cba2476c522cafdb05480c"},"location":{"coordinates":[-73.9781495,40.7450577],"type":"Point"},"name":"Pizza 33"} +,{"_id":{"$oid":"55cba2476c522cafdb05480d"},"location":{"coordinates":[-92.73010980000001,41.7461457],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb05480e"},"location":{"coordinates":[-73.9569095,40.7712066],"type":"Point"},"name":"Starbucks Coffee #7682"} +,{"_id":{"$oid":"55cba2476c522cafdb05480f"},"location":{"coordinates":[-73.9710315,40.7587882],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb054810"},"location":{"coordinates":[-73.9472423,40.7791831],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb054811"},"location":{"coordinates":[-73.8167369,40.7014492],"type":"Point"},"name":"Nelly'S Corner Pizzeria Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054812"},"location":{"coordinates":[-73.9844943,40.5748057],"type":"Point"},"name":"Concession # 110"} +,{"_id":{"$oid":"55cba2476c522cafdb054813"},"location":{"coordinates":[-73.9870226,40.7368137],"type":"Point"},"name":"71 Irving Place"} +,{"_id":{"$oid":"55cba2476c522cafdb054814"},"location":{"coordinates":[-73.9844943,40.5748057],"type":"Point"},"name":"Concession # 120/ The Bullpen"} +,{"_id":{"$oid":"55cba2476c522cafdb054815"},"location":{"coordinates":[-74.0085867,40.5797969],"type":"Point"},"name":"Stand # 326"} +,{"_id":{"$oid":"55cba2476c522cafdb054816"},"location":{"coordinates":[-73.9844943,40.5748057],"type":"Point"},"name":"Concession Stand 330"} +,{"_id":{"$oid":"55cba2476c522cafdb054817"},"location":{"coordinates":[-73.78913399999999,40.852584],"type":"Point"},"name":"City Island Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb054818"},"location":{"coordinates":[-73.9844943,40.5748057],"type":"Point"},"name":"Stand # 210"} +,{"_id":{"$oid":"55cba2476c522cafdb054819"},"location":{"coordinates":[-73.95642699999999,40.6838133],"type":"Point"},"name":"Tip-Top Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb05481a"},"location":{"coordinates":[-73.88924,40.853951],"type":"Point"},"name":"Gurra Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05481b"},"location":{"coordinates":[-73.957135,40.6470531],"type":"Point"},"name":"Bally Total Fitness"} +,{"_id":{"$oid":"55cba2476c522cafdb05481c"},"location":{"coordinates":[-73.9438536,40.679826],"type":"Point"},"name":"Popeyes Chicken \u0026 Biscuits"} +,{"_id":{"$oid":"55cba2476c522cafdb05481d"},"location":{"coordinates":[-73.987196,40.7564857],"type":"Point"},"name":"Reuters Executive Dining Room"} +,{"_id":{"$oid":"55cba2476c522cafdb05481e"},"location":{"coordinates":[-74.008314,40.719807],"type":"Point"},"name":"Bubby'S"} +,{"_id":{"$oid":"55cba2476c522cafdb05481f"},"location":{"coordinates":[-73.917091,40.620627],"type":"Point"},"name":"Original Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054820"},"location":{"coordinates":[-73.987196,40.7564857],"type":"Point"},"name":"Reuters Cafeteria"} +,{"_id":{"$oid":"55cba2476c522cafdb054821"},"location":{"coordinates":[-73.89188399999999,40.7282749],"type":"Point"},"name":"Connolly'S Corner"} +,{"_id":{"$oid":"55cba2476c522cafdb054822"},"location":{"coordinates":[-74.0056372,40.7101853],"type":"Point"},"name":"Dante'S Gourmet Food"} +,{"_id":{"$oid":"55cba2476c522cafdb054823"},"location":{"coordinates":[-73.950462,40.672431],"type":"Point"},"name":"Gloria'S In And Out #3"} +,{"_id":{"$oid":"55cba2476c522cafdb054824"},"location":{"coordinates":[-73.9446889,40.8087276],"type":"Point"},"name":"Sylvia'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054825"},"location":{"coordinates":[-73.94985489999999,40.6808053],"type":"Point"},"name":"Abir Halal Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054826"},"location":{"coordinates":[-73.96956589999999,40.7608624],"type":"Point"},"name":"Opia Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054827"},"location":{"coordinates":[-73.9767883,40.749929],"type":"Point"},"name":"Peter Dillon'S Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054828"},"location":{"coordinates":[-73.88703029999999,40.6647634],"type":"Point"},"name":"Nelly'S Cakes \u0026 Party Supplies"} +,{"_id":{"$oid":"55cba2476c522cafdb054829"},"location":{"coordinates":[-73.787962,40.8500199],"type":"Point"},"name":"To Go Express"} +,{"_id":{"$oid":"55cba2476c522cafdb05482a"},"location":{"coordinates":[-73.98717529999999,40.7478688],"type":"Point"},"name":"Tous Les Jours"} +,{"_id":{"$oid":"55cba2476c522cafdb05482b"},"location":{"coordinates":[-74.0281175,40.6312962],"type":"Point"},"name":"Lighthouse Cafe Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05482c"},"location":{"coordinates":[-73.9781737,40.76357489999999],"type":"Point"},"name":"Pazza Notte"} +,{"_id":{"$oid":"55cba2476c522cafdb05482d"},"location":{"coordinates":[-81.22236939999999,33.9925432],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb05482e"},"location":{"coordinates":[-73.81267199999999,40.691695],"type":"Point"},"name":"The Ranch Restaurant \u0026 Bar Of Guyana"} +,{"_id":{"$oid":"55cba2476c522cafdb05482f"},"location":{"coordinates":[-73.9758614,40.7640238],"type":"Point"},"name":"The Great American Health Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054830"},"location":{"coordinates":[-74.0104154,40.6453616],"type":"Point"},"name":"La Isla"} +,{"_id":{"$oid":"55cba2476c522cafdb054831"},"location":{"coordinates":[-73.91225,40.752109],"type":"Point"},"name":"Rocco'S Italian Sausages \u0026 Philly Cheesesteaks"} +,{"_id":{"$oid":"55cba2476c522cafdb054832"},"location":{"coordinates":[-73.98488960000002,40.7623132],"type":"Point"},"name":"Azalea"} +,{"_id":{"$oid":"55cba2476c522cafdb054833"},"location":{"coordinates":[-73.95679249999999,40.7671155],"type":"Point"},"name":"Cilantro"} +,{"_id":{"$oid":"55cba2476c522cafdb054834"},"location":{"coordinates":[-73.9842317,40.6640914],"type":"Point"},"name":"Cafe Steinhof"} +,{"_id":{"$oid":"55cba2476c522cafdb054835"},"location":{"coordinates":[-74.010173,40.703561],"type":"Point"},"name":"All American Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb054836"},"location":{"coordinates":[-73.9815295,40.667258],"type":"Point"},"name":"7Th Avenue Donut Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb054837"},"location":{"coordinates":[-74.003541,40.651179],"type":"Point"},"name":"Sunset Park Diner \u0026 Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb054838"},"location":{"coordinates":[-73.95815700000001,40.5938019],"type":"Point"},"name":"Russian Baths"} +,{"_id":{"$oid":"55cba2476c522cafdb054839"},"location":{"coordinates":[-73.8589302,40.7510904],"type":"Point"},"name":"Polanco'S"} +,{"_id":{"$oid":"55cba2476c522cafdb05483a"},"location":{"coordinates":[-73.9887584,40.7539308],"type":"Point"},"name":"Pret A Manger"} +,{"_id":{"$oid":"55cba2476c522cafdb05483b"},"location":{"coordinates":[-73.9041182,40.8644648],"type":"Point"},"name":"Lin Home Chinese Restaura"} +,{"_id":{"$oid":"55cba2476c522cafdb05483c"},"location":{"coordinates":[-73.8794576,40.6817783],"type":"Point"},"name":"El Pulgarcito De America"} +,{"_id":{"$oid":"55cba2476c522cafdb05483d"},"location":{"coordinates":[-73.9866447,40.7611392],"type":"Point"},"name":"Pigalle"} +,{"_id":{"$oid":"55cba2476c522cafdb05483e"},"location":{"coordinates":[-73.9912645,40.759954],"type":"Point"},"name":"Marseille"} +,{"_id":{"$oid":"55cba2476c522cafdb05483f"},"location":{"coordinates":[-74.1651172,40.54379369999999],"type":"Point"},"name":"Bagel Depot"} +,{"_id":{"$oid":"55cba2476c522cafdb054840"},"location":{"coordinates":[-73.99140249999999,40.69202920000001],"type":"Point"},"name":"O'Keefes Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb054841"},"location":{"coordinates":[-73.8388382,40.6566238],"type":"Point"},"name":"Crossbay Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb054842"},"location":{"coordinates":[-73.8308192,40.84734539999999],"type":"Point"},"name":"Chirping Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb054843"},"location":{"coordinates":[-73.8923056,40.7275114],"type":"Point"},"name":"Wakamatsu Japanese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054844"},"location":{"coordinates":[-73.9200589,40.7141795],"type":"Point"},"name":"Coffee Express"} +,{"_id":{"$oid":"55cba2476c522cafdb054845"},"location":{"coordinates":[-73.9761031,40.7591668],"type":"Point"},"name":"Nba Employer Cafeteria"} +,{"_id":{"$oid":"55cba2476c522cafdb054846"},"location":{"coordinates":[-73.96571399999999,40.765059],"type":"Point"},"name":"Jo Jo"} +,{"_id":{"$oid":"55cba2476c522cafdb054847"},"location":{"coordinates":[-73.958527,40.772126],"type":"Point"},"name":"Haru Sake Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054848"},"location":{"coordinates":[-73.9066601,40.8592187],"type":"Point"},"name":"Peacock Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054849"},"location":{"coordinates":[-73.9388948,40.8433196],"type":"Point"},"name":"Aquamarina"} +,{"_id":{"$oid":"55cba2476c522cafdb05484a"},"location":{"coordinates":[-73.9912342,40.7372808],"type":"Point"},"name":"Ennju"} +,{"_id":{"$oid":"55cba2476c522cafdb05484b"},"location":{"coordinates":[-74.151826,40.536544],"type":"Point"},"name":"Boulevard Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb05484c"},"location":{"coordinates":[-73.91322339999999,40.71505399999999],"type":"Point"},"name":"Cheito Duran Deli Grocery"} +,{"_id":{"$oid":"55cba2476c522cafdb05484d"},"location":{"coordinates":[-73.893123,40.8603811],"type":"Point"},"name":"Domino'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05484e"},"location":{"coordinates":[-74.002376,40.724973],"type":"Point"},"name":"Famous Ben'S Pizza Of Soho"} +,{"_id":{"$oid":"55cba2476c522cafdb05484f"},"location":{"coordinates":[-73.9873077,40.757866],"type":"Point"},"name":"Star Lite Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb054850"},"location":{"coordinates":[-73.967623,40.75892289999999],"type":"Point"},"name":"Debevoise \u0026 Plimpton"} +,{"_id":{"$oid":"55cba2476c522cafdb054851"},"location":{"coordinates":[-73.9886598,40.7565811],"type":"Point"},"name":"Madame Tussaud'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054852"},"location":{"coordinates":[-73.9230272,40.755907],"type":"Point"},"name":"Uno Chicago Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb054853"},"location":{"coordinates":[-73.8881505,40.6554256],"type":"Point"},"name":"Panda Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb054854"},"location":{"coordinates":[-73.9810937,40.7631017],"type":"Point"},"name":"The Irish Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb054855"},"location":{"coordinates":[-73.892089,40.82210389999999],"type":"Point"},"name":"Burger King"} +,{"_id":{"$oid":"55cba2476c522cafdb054856"},"location":{"coordinates":[-73.97896,40.7640254],"type":"Point"},"name":"Starbucks Coffee (Store #7696)"} +,{"_id":{"$oid":"55cba2476c522cafdb054857"},"location":{"coordinates":[-73.9726146,40.7937748],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb054858"},"location":{"coordinates":[-73.987257,40.719923],"type":"Point"},"name":"The Magician"} +,{"_id":{"$oid":"55cba2476c522cafdb054859"},"location":{"coordinates":[-73.96027099999999,40.6176889],"type":"Point"},"name":"Chap A Nosh/Yun Kee"} +,{"_id":{"$oid":"55cba2476c522cafdb05485a"},"location":{"coordinates":[-73.97717999999999,40.762053],"type":"Point"},"name":"Mozzarella \u0026 Vino"} +,{"_id":{"$oid":"55cba2476c522cafdb05485b"},"location":{"coordinates":[-73.7466898,40.6959979],"type":"Point"},"name":"Candies Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05485c"},"location":{"coordinates":[-74.0012519,40.746191],"type":"Point"},"name":"Chelsea Square Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05485d"},"location":{"coordinates":[-73.847821,40.846367],"type":"Point"},"name":"The Williamsbridge Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb05485e"},"location":{"coordinates":[-73.97044389999999,40.7643746],"type":"Point"},"name":"Blanches @ Dkny"} +,{"_id":{"$oid":"55cba2476c522cafdb05485f"},"location":{"coordinates":[-73.924599,40.66349599999999],"type":"Point"},"name":"R.J.'S Place"} +,{"_id":{"$oid":"55cba2476c522cafdb054860"},"location":{"coordinates":[-73.77493799999999,40.71447200000001],"type":"Point"},"name":"La Verite Restaurant Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054861"},"location":{"coordinates":[-73.80919899999999,40.7050553],"type":"Point"},"name":"El Familar Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054862"},"location":{"coordinates":[-73.9753571,40.7867787],"type":"Point"},"name":"Alibaba"} +,{"_id":{"$oid":"55cba2476c522cafdb054863"},"location":{"coordinates":[-73.9939538,40.7030151],"type":"Point"},"name":"Brooklyn Ice Cream Factory"} +,{"_id":{"$oid":"55cba2476c522cafdb054864"},"location":{"coordinates":[-73.93196,40.7443],"type":"Point"},"name":"The New Thompson Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb054865"},"location":{"coordinates":[-73.88128789999999,40.8286566],"type":"Point"},"name":"Vista Hermosa Deli Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054866"},"location":{"coordinates":[-74.0335267,40.617822],"type":"Point"},"name":"Donut Stop"} +,{"_id":{"$oid":"55cba2476c522cafdb054867"},"location":{"coordinates":[-74.1771674,40.6144973],"type":"Point"},"name":"Lorenzos Bar \u0026 Grill (Hilton Garden)"} +,{"_id":{"$oid":"55cba2476c522cafdb054868"},"location":{"coordinates":[-73.9556163,40.7721319],"type":"Point"},"name":"Al Forno"} +,{"_id":{"$oid":"55cba2476c522cafdb054869"},"location":{"coordinates":[-73.9603267,40.781264],"type":"Point"},"name":"Cafe Sabarsky"} +,{"_id":{"$oid":"55cba2476c522cafdb05486a"},"location":{"coordinates":[-73.94780089999999,40.80445700000001],"type":"Point"},"name":"Ristorante Settepani"} +,{"_id":{"$oid":"55cba2476c522cafdb05486b"},"location":{"coordinates":[-73.99226829999999,40.7139989],"type":"Point"},"name":"Manon Cafe / Leonidas"} +,{"_id":{"$oid":"55cba2476c522cafdb05486c"},"location":{"coordinates":[-73.98622879999999,40.750206],"type":"Point"},"name":"Hyo Dong Gak"} +,{"_id":{"$oid":"55cba2476c522cafdb05486d"},"location":{"coordinates":[-73.9710837,40.7647762],"type":"Point"},"name":"Fred'S At Barney'S"} +,{"_id":{"$oid":"55cba2476c522cafdb05486e"},"location":{"coordinates":[-74.00968449999999,40.7145114],"type":"Point"},"name":"New York Dolls"} +,{"_id":{"$oid":"55cba2476c522cafdb05486f"},"location":{"coordinates":[-73.98467300000002,40.729006],"type":"Point"},"name":"Tarallucci E Vino"} +,{"_id":{"$oid":"55cba2476c522cafdb054870"},"location":{"coordinates":[-73.8310178,40.8478553],"type":"Point"},"name":"Vivienne'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054871"},"location":{"coordinates":[-73.8613905,40.83539140000001],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb054872"},"location":{"coordinates":[-73.9458848,40.6921933],"type":"Point"},"name":"Rocco Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054873"},"location":{"coordinates":[-73.9791194,40.7649513],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb054874"},"location":{"coordinates":[-73.9137284,40.6356078],"type":"Point"},"name":"Nicky'S Jamaican Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb054875"},"location":{"coordinates":[-92.73010980000001,41.7461457],"type":"Point"},"name":"Famous Bagel Buffet"} +,{"_id":{"$oid":"55cba2476c522cafdb054876"},"location":{"coordinates":[-73.9405865,40.6003859],"type":"Point"},"name":"Surf \u0026 Turf Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054877"},"location":{"coordinates":[-73.985727,40.7682479],"type":"Point"},"name":"Burrito Box"} +,{"_id":{"$oid":"55cba2476c522cafdb054878"},"location":{"coordinates":[-73.9837352,40.7271072],"type":"Point"},"name":"Crif Dogs / Please Don'T Tell"} +,{"_id":{"$oid":"55cba2476c522cafdb054879"},"location":{"coordinates":[-73.907556,40.7741877],"type":"Point"},"name":"Mccann'S Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb05487a"},"location":{"coordinates":[-73.9384816,40.8050304],"type":"Point"},"name":"Popeyes Chicken \u0026 Biscuits"} +,{"_id":{"$oid":"55cba2476c522cafdb05487b"},"location":{"coordinates":[-73.909629,40.837446],"type":"Point"},"name":"Lin'S Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb05487c"},"location":{"coordinates":[-73.9657703,40.7622135],"type":"Point"},"name":"Dylan'S Candybar"} +,{"_id":{"$oid":"55cba2476c522cafdb05487d"},"location":{"coordinates":[-73.9922464,40.6845004],"type":"Point"},"name":"Cafe Luluc"} +,{"_id":{"$oid":"55cba2476c522cafdb05487e"},"location":{"coordinates":[-74.004346,40.751624],"type":"Point"},"name":"The Eagle"} +,{"_id":{"$oid":"55cba2476c522cafdb05487f"},"location":{"coordinates":[-73.98464469999999,40.6669257],"type":"Point"},"name":"Bar Toto"} +,{"_id":{"$oid":"55cba2476c522cafdb054880"},"location":{"coordinates":[-73.85174599999999,40.726748],"type":"Point"},"name":"Arzu Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054881"},"location":{"coordinates":[-73.9447206,40.7473424],"type":"Point"},"name":"American Hero \u0026 Sub'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054882"},"location":{"coordinates":[-74.0314075,40.6218809],"type":"Point"},"name":"Cebu"} +,{"_id":{"$oid":"55cba2476c522cafdb054883"},"location":{"coordinates":[-73.7379586,40.7683337],"type":"Point"},"name":"Conti'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054884"},"location":{"coordinates":[-73.958928,40.716498],"type":"Point"},"name":"Fabiane'S Cafe \u0026 Pastry"} +,{"_id":{"$oid":"55cba2476c522cafdb054885"},"location":{"coordinates":[-73.89531989999999,40.7007151],"type":"Point"},"name":"The Original Sal'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb054886"},"location":{"coordinates":[-74.13441329999999,40.6362457],"type":"Point"},"name":"Goody'S Spanish Food"} +,{"_id":{"$oid":"55cba2476c522cafdb054887"},"location":{"coordinates":[-73.9624826,40.6723542],"type":"Point"},"name":"The Islands"} +,{"_id":{"$oid":"55cba2476c522cafdb054888"},"location":{"coordinates":[-74.03352699999999,40.618115],"type":"Point"},"name":"Kimchee Korean Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054889"},"location":{"coordinates":[-73.95623719999999,40.7761697],"type":"Point"},"name":"Mad River Bar \u0026 Grille"} +,{"_id":{"$oid":"55cba2476c522cafdb05488a"},"location":{"coordinates":[-73.966993,40.764309],"type":"Point"},"name":"Burger Heaven"} +,{"_id":{"$oid":"55cba2476c522cafdb05488b"},"location":{"coordinates":[-73.96356589999999,40.6251713],"type":"Point"},"name":"Estihaya Asian Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05488c"},"location":{"coordinates":[-73.949938,40.812365],"type":"Point"},"name":"Hong Cheong"} +,{"_id":{"$oid":"55cba2476c522cafdb05488d"},"location":{"coordinates":[-73.9674852,40.5766524],"type":"Point"},"name":"Rocco'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb05488e"},"location":{"coordinates":[-73.87224379999999,40.7535827],"type":"Point"},"name":"Barranquilla Bakery \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05488f"},"location":{"coordinates":[-74.0068388,40.73962110000001],"type":"Point"},"name":"Paradou"} +,{"_id":{"$oid":"55cba2476c522cafdb054890"},"location":{"coordinates":[-73.9880216,40.76167179999999],"type":"Point"},"name":"Belvedere Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054891"},"location":{"coordinates":[-74.1374915,40.6258454],"type":"Point"},"name":"La Bella Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054892"},"location":{"coordinates":[-73.73992679999999,40.7253564],"type":"Point"},"name":"Rice \u0026 Beans Lechonera"} +,{"_id":{"$oid":"55cba2476c522cafdb054893"},"location":{"coordinates":[-73.80485999999999,40.6955943],"type":"Point"},"name":"Carmine'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054894"},"location":{"coordinates":[-73.9804194,40.6679108],"type":"Point"},"name":"Purity Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb054895"},"location":{"coordinates":[-73.7352867,40.6649107],"type":"Point"},"name":"Mario'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054896"},"location":{"coordinates":[-74.0004534,40.7311503],"type":"Point"},"name":"Red Bamboo"} +,{"_id":{"$oid":"55cba2476c522cafdb054897"},"location":{"coordinates":[-74.0212549,40.6188953],"type":"Point"},"name":"Bella Luna"} +,{"_id":{"$oid":"55cba2476c522cafdb054898"},"location":{"coordinates":[-73.9200109,40.8260811],"type":"Point"},"name":"Burger King"} +,{"_id":{"$oid":"55cba2476c522cafdb054899"},"location":{"coordinates":[-73.9832519,40.742624],"type":"Point"},"name":"The Black Duck Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05489a"},"location":{"coordinates":[-73.90407979999999,40.8464484],"type":"Point"},"name":"Casa Promesa"} +,{"_id":{"$oid":"55cba2476c522cafdb05489b"},"location":{"coordinates":[-73.9790246,40.6702673],"type":"Point"},"name":"Mr Falafael Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05489c"},"location":{"coordinates":[-74.00911909999999,40.6459807],"type":"Point"},"name":"New Victory Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05489d"},"location":{"coordinates":[-73.9885286,40.7236057],"type":"Point"},"name":"Lil Frankie'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05489e"},"location":{"coordinates":[-73.99431630000001,40.7213003],"type":"Point"},"name":"Sweet \u0026 Vicious"} +,{"_id":{"$oid":"55cba2476c522cafdb05489f"},"location":{"coordinates":[-73.98519780000001,40.7229268],"type":"Point"},"name":"Supper"} +,{"_id":{"$oid":"55cba2476c522cafdb0548a0"},"location":{"coordinates":[-73.950204,40.599742],"type":"Point"},"name":"Spiros Restautrant"} +,{"_id":{"$oid":"55cba2476c522cafdb0548a1"},"location":{"coordinates":[-73.8826735,40.881086],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0548a2"},"location":{"coordinates":[-73.9446972,40.615578],"type":"Point"},"name":"Nosh Express"} +,{"_id":{"$oid":"55cba2476c522cafdb0548a3"},"location":{"coordinates":[-73.92369219999999,40.7547674],"type":"Point"},"name":"Ua Kaufman Astoria #14"} +,{"_id":{"$oid":"55cba2476c522cafdb0548a4"},"location":{"coordinates":[-73.8959725,40.8689085],"type":"Point"},"name":"Shalon Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0548a5"},"location":{"coordinates":[-73.9268419,40.656616],"type":"Point"},"name":"Ritz West Indian Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb0548a6"},"location":{"coordinates":[-73.9042465,40.8788681],"type":"Point"},"name":"Broadway Pizza \u0026 Pasta"} +,{"_id":{"$oid":"55cba2476c522cafdb0548a7"},"location":{"coordinates":[-73.93379130000001,40.8492875],"type":"Point"},"name":"Burger King"} +,{"_id":{"$oid":"55cba2476c522cafdb0548a8"},"location":{"coordinates":[-73.9865052,40.7634955],"type":"Point"},"name":"Maria Pia"} +,{"_id":{"$oid":"55cba2476c522cafdb0548a9"},"location":{"coordinates":[-74.0006679,40.731432],"type":"Point"},"name":"Washington Square Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb0548aa"},"location":{"coordinates":[-74.1104599,40.62959800000001],"type":"Point"},"name":"Moretti Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0548ab"},"location":{"coordinates":[-73.9854798,40.7568793],"type":"Point"},"name":"Times Deli \u0026 Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0548ac"},"location":{"coordinates":[-73.8793002,40.9003007],"type":"Point"},"name":"Burger King"} +,{"_id":{"$oid":"55cba2476c522cafdb0548ad"},"location":{"coordinates":[-73.9177011,40.8396192],"type":"Point"},"name":"Burger King"} +,{"_id":{"$oid":"55cba2476c522cafdb0548ae"},"location":{"coordinates":[-73.9334101,40.85583279999999],"type":"Point"},"name":"Chan'S Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0548af"},"location":{"coordinates":[-74.0041969,40.7305724],"type":"Point"},"name":"The Village Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb0548b0"},"location":{"coordinates":[-73.92748700000001,40.745175],"type":"Point"},"name":"Gallagher'S 2000"} +,{"_id":{"$oid":"55cba2476c522cafdb0548b1"},"location":{"coordinates":[-73.9883734,40.7581681],"type":"Point"},"name":"Cafe Angus"} +,{"_id":{"$oid":"55cba2476c522cafdb0548b2"},"location":{"coordinates":[-73.98613999999999,40.7268881],"type":"Point"},"name":"Ginger"} +,{"_id":{"$oid":"55cba2476c522cafdb0548b3"},"location":{"coordinates":[-73.98917449999999,40.7026637],"type":"Point"},"name":"Almar"} +,{"_id":{"$oid":"55cba2476c522cafdb0548b4"},"location":{"coordinates":[-73.9125464,40.7745706],"type":"Point"},"name":"Igloo Ice Cream Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0548b5"},"location":{"coordinates":[-73.992255,40.749712],"type":"Point"},"name":"Nathan'S Famous"} +,{"_id":{"$oid":"55cba2476c522cafdb0548b6"},"location":{"coordinates":[-73.992255,40.749712],"type":"Point"},"name":"T.G.I. Fridays"} +,{"_id":{"$oid":"55cba2476c522cafdb0548b7"},"location":{"coordinates":[-73.992255,40.749712],"type":"Point"},"name":"Pizza Hut (Store #825)"} +,{"_id":{"$oid":"55cba2476c522cafdb0548b8"},"location":{"coordinates":[-73.8040169,40.7615797],"type":"Point"},"name":"Fratelli Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0548b9"},"location":{"coordinates":[-74.16819339999999,40.5595547],"type":"Point"},"name":"Euro Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0548ba"},"location":{"coordinates":[-73.919421,40.6333335],"type":"Point"},"name":"Domino'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0548bb"},"location":{"coordinates":[-73.91255459999999,40.766484],"type":"Point"},"name":"Domino'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0548bc"},"location":{"coordinates":[-73.9968751,40.6808809],"type":"Point"},"name":"Fragole"} +,{"_id":{"$oid":"55cba2476c522cafdb0548bd"},"location":{"coordinates":[-73.856904,40.8336516],"type":"Point"},"name":"Domino'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0548be"},"location":{"coordinates":[-73.9243146,40.8360568],"type":"Point"},"name":"Domino'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0548bf"},"location":{"coordinates":[-73.9936506,40.7475513],"type":"Point"},"name":"Cavallo'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb0548c0"},"location":{"coordinates":[-73.90814370000001,40.835339],"type":"Point"},"name":"Domino'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0548c1"},"location":{"coordinates":[-74.0071428,40.7265334],"type":"Point"},"name":"Cafe Mae Mae"} +,{"_id":{"$oid":"55cba2476c522cafdb0548c2"},"location":{"coordinates":[-73.992255,40.749712],"type":"Point"},"name":"Kfc/Taco Bell"} +,{"_id":{"$oid":"55cba2476c522cafdb0548c3"},"location":{"coordinates":[-73.90768609999999,40.8628447],"type":"Point"},"name":"Mi Sueno Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0548c4"},"location":{"coordinates":[-73.98559709999999,40.7594462],"type":"Point"},"name":"Blue Fin"} +,{"_id":{"$oid":"55cba2476c522cafdb0548c5"},"location":{"coordinates":[-73.96099989999999,40.8062595],"type":"Point"},"name":"Warren Hall Coffee Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0548c6"},"location":{"coordinates":[-73.9033031,40.7410572],"type":"Point"},"name":"Gina'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0548c7"},"location":{"coordinates":[-73.9295169,40.7534602],"type":"Point"},"name":"Sarajevo Fast Food"} +,{"_id":{"$oid":"55cba2476c522cafdb0548c8"},"location":{"coordinates":[-73.992471,40.7511286],"type":"Point"},"name":"Columbo Yogurt/ Taco Bell/ Nathans/ Tim Horton/Pizza Hut"} +,{"_id":{"$oid":"55cba2476c522cafdb0548c9"},"location":{"coordinates":[-73.992255,40.749712],"type":"Point"},"name":"Tim Hortons"} +,{"_id":{"$oid":"55cba2476c522cafdb0548ca"},"location":{"coordinates":[-73.992471,40.7511286],"type":"Point"},"name":"Kentucky Fried Chicken/ Island Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb0548cb"},"location":{"coordinates":[-73.9989789,40.619988],"type":"Point"},"name":"Rubens Pizzeria-El Pollo Peruvian Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb0548cc"},"location":{"coordinates":[-73.9880886,40.7651331],"type":"Point"},"name":"Ariana Kebab House"} +,{"_id":{"$oid":"55cba2476c522cafdb0548cd"},"location":{"coordinates":[-73.99529919999999,40.7542811],"type":"Point"},"name":"Burgers \u0026 Cupcakes"} +,{"_id":{"$oid":"55cba2476c522cafdb0548ce"},"location":{"coordinates":[-73.90492309999999,40.6961923],"type":"Point"},"name":"Bill'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0548cf"},"location":{"coordinates":[-73.8938125,40.6649757],"type":"Point"},"name":"Crown Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb0548d0"},"location":{"coordinates":[-73.9981786,40.7457472],"type":"Point"},"name":"Pita Pan Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0548d1"},"location":{"coordinates":[-73.97869399999999,40.778003],"type":"Point"},"name":"Alice'S Tea Cup"} +,{"_id":{"$oid":"55cba2476c522cafdb0548d2"},"location":{"coordinates":[-74.0024128,40.7347641],"type":"Point"},"name":"Agave"} +,{"_id":{"$oid":"55cba2476c522cafdb0548d3"},"location":{"coordinates":[-73.9128746,40.69959739999999],"type":"Point"},"name":"White Castle"} +,{"_id":{"$oid":"55cba2476c522cafdb0548d4"},"location":{"coordinates":[-73.7958416,40.7072905],"type":"Point"},"name":"Taj Donut Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb0548d5"},"location":{"coordinates":[-73.8914831,40.82257999999999],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0548d6"},"location":{"coordinates":[-73.8925071,40.8169236],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0548d7"},"location":{"coordinates":[-73.9041388,40.8794904],"type":"Point"},"name":"Mr Mcgoo'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0548d8"},"location":{"coordinates":[-73.98559709999999,40.7594462],"type":"Point"},"name":"W Times Square"} +,{"_id":{"$oid":"55cba2476c522cafdb0548d9"},"location":{"coordinates":[-73.9528696,40.7675092],"type":"Point"},"name":"Finestra"} +,{"_id":{"$oid":"55cba2476c522cafdb0548da"},"location":{"coordinates":[-74.0975809,40.63187569999999],"type":"Point"},"name":"The Black Dog Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0548db"},"location":{"coordinates":[-73.9503386,40.8116759],"type":"Point"},"name":"Harlem Bar-B-Q"} +,{"_id":{"$oid":"55cba2476c522cafdb0548dc"},"location":{"coordinates":[-73.89178629999999,40.8704249],"type":"Point"},"name":"El Buen Ambiente"} +,{"_id":{"$oid":"55cba2476c522cafdb0548dd"},"location":{"coordinates":[-73.9177011,40.8396192],"type":"Point"},"name":"Popeyes Chicken \u0026 Biscuits"} +,{"_id":{"$oid":"55cba2476c522cafdb0548de"},"location":{"coordinates":[-73.988168,40.614617],"type":"Point"},"name":"Gioiosa Caffe Expresso"} +,{"_id":{"$oid":"55cba2476c522cafdb0548df"},"location":{"coordinates":[-73.90522729999999,40.887228],"type":"Point"},"name":"New Kam Sheng Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0548e0"},"location":{"coordinates":[-73.9381738,40.8224212],"type":"Point"},"name":"Red Star Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0548e1"},"location":{"coordinates":[-73.8265961,40.7716279],"type":"Point"},"name":"Namudol"} +,{"_id":{"$oid":"55cba2476c522cafdb0548e2"},"location":{"coordinates":[-73.98397539999999,40.75796880000001],"type":"Point"},"name":"Minar Indian Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0548e3"},"location":{"coordinates":[-73.97125299999999,40.793391],"type":"Point"},"name":"Acqua"} +,{"_id":{"$oid":"55cba2476c522cafdb0548e4"},"location":{"coordinates":[-74.00880699999999,40.710119],"type":"Point"},"name":"Brasserie Les Halles"} +,{"_id":{"$oid":"55cba2476c522cafdb0548e5"},"location":{"coordinates":[-74.10499469999999,40.6309326],"type":"Point"},"name":"S \u0026 T Bagels \u0026 Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb0548e6"},"location":{"coordinates":[-73.97229949999999,40.7637256],"type":"Point"},"name":"Sodexo"} +,{"_id":{"$oid":"55cba2476c522cafdb0548e7"},"location":{"coordinates":[-73.6830521,40.7466623],"type":"Point"},"name":"Jian On Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0548e8"},"location":{"coordinates":[-73.9805116,40.7522241],"type":"Point"},"name":"Cafe Zaiya"} +,{"_id":{"$oid":"55cba2476c522cafdb0548e9"},"location":{"coordinates":[-73.9020967,40.81298],"type":"Point"},"name":"Wilbel Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0548ea"},"location":{"coordinates":[-73.991072,40.643075],"type":"Point"},"name":"El Aguila Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0548eb"},"location":{"coordinates":[-73.93124,40.670202],"type":"Point"},"name":"Tota'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0548ec"},"location":{"coordinates":[-74.00074099999999,40.7213629],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0548ed"},"location":{"coordinates":[-73.99755499999999,40.741997],"type":"Point"},"name":"Elmo"} +,{"_id":{"$oid":"55cba2476c522cafdb0548ee"},"location":{"coordinates":[-73.9875078,40.7659352],"type":"Point"},"name":"Wondee Siam Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb0548ef"},"location":{"coordinates":[-73.944699,40.718326],"type":"Point"},"name":"La Piazzetta"} +,{"_id":{"$oid":"55cba2476c522cafdb0548f0"},"location":{"coordinates":[-73.98121979999999,40.7509706],"type":"Point"},"name":"Cafe Bonjour"} +,{"_id":{"$oid":"55cba2476c522cafdb0548f1"},"location":{"coordinates":[-73.9453752,40.828686],"type":"Point"},"name":"Wimpy'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0548f2"},"location":{"coordinates":[-73.9865473,40.737027],"type":"Point"},"name":"Craft"} +,{"_id":{"$oid":"55cba2476c522cafdb0548f3"},"location":{"coordinates":[-73.9040182,40.8585804],"type":"Point"},"name":"Liberato Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0548f4"},"location":{"coordinates":[-73.83142099999999,40.688142],"type":"Point"},"name":"Luigi'S Catering"} +,{"_id":{"$oid":"55cba2476c522cafdb0548f5"},"location":{"coordinates":[-73.9809046,40.7639595],"type":"Point"},"name":"Fluffy'S Cafe \u0026 Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0548f6"},"location":{"coordinates":[-73.88047089999999,40.6794273],"type":"Point"},"name":"Dunkin' Donuts, Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb0548f7"},"location":{"coordinates":[-73.979783,40.5753293],"type":"Point"},"name":"Sideshows By The Seashore"} +,{"_id":{"$oid":"55cba2476c522cafdb0548f8"},"location":{"coordinates":[-73.81771479999999,40.70759959999999],"type":"Point"},"name":"Alba Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0548f9"},"location":{"coordinates":[-73.9708163,40.7577483],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0548fa"},"location":{"coordinates":[-73.8855919,40.8618662],"type":"Point"},"name":"Fordham University - Mcginley Center"} +,{"_id":{"$oid":"55cba2476c522cafdb0548fb"},"location":{"coordinates":[-73.8855919,40.8618662],"type":"Point"},"name":"Fordham University/Mcginley Center/Ramskeller Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0548fc"},"location":{"coordinates":[-73.99167299999999,40.7257],"type":"Point"},"name":"Bowery Eletric"} +,{"_id":{"$oid":"55cba2476c522cafdb0548fd"},"location":{"coordinates":[-74.00325409999999,40.7300906],"type":"Point"},"name":"Numero 28 Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb0548fe"},"location":{"coordinates":[-73.98497119999999,40.7705011],"type":"Point"},"name":"Fordham University - Ram Cafeteria"} +,{"_id":{"$oid":"55cba2476c522cafdb0548ff"},"location":{"coordinates":[-73.7897247,40.8509777],"type":"Point"},"name":"Seafood City"} +,{"_id":{"$oid":"55cba2476c522cafdb054900"},"location":{"coordinates":[-73.9465592,40.8165415],"type":"Point"},"name":"Yvonne Yvonne Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054901"},"location":{"coordinates":[-73.87207699999999,40.7511107],"type":"Point"},"name":"Don Alex Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054902"},"location":{"coordinates":[-73.997415,40.7272948],"type":"Point"},"name":"Cafe Angelique"} +,{"_id":{"$oid":"55cba2476c522cafdb054903"},"location":{"coordinates":[-73.9833072,40.7630411],"type":"Point"},"name":"Re: Sources"} +,{"_id":{"$oid":"55cba2476c522cafdb054904"},"location":{"coordinates":[-73.9772294,40.7527262],"type":"Point"},"name":"Cipriani Dolci"} +,{"_id":{"$oid":"55cba2476c522cafdb054905"},"location":{"coordinates":[-73.9192924,40.6988809],"type":"Point"},"name":"El Charro Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb054906"},"location":{"coordinates":[-73.96485870000001,40.6407293],"type":"Point"},"name":"San Remo Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb054907"},"location":{"coordinates":[-73.8969097,40.7058161],"type":"Point"},"name":"Corato I Pizza \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054908"},"location":{"coordinates":[-84.9751215,45.4713351],"type":"Point"},"name":"Bijan'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054909"},"location":{"coordinates":[-73.7706254,40.7112028],"type":"Point"},"name":"Crystal Curry House"} +,{"_id":{"$oid":"55cba2476c522cafdb05490a"},"location":{"coordinates":[-73.9756857,40.7558198],"type":"Point"},"name":"Chase Edr"} +,{"_id":{"$oid":"55cba2476c522cafdb05490b"},"location":{"coordinates":[-73.914368,40.68478899999999],"type":"Point"},"name":"Cherokee Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb05490c"},"location":{"coordinates":[-74.07526600000001,40.62646],"type":"Point"},"name":"Jerry'S 637 Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb05490d"},"location":{"coordinates":[-73.89208789999999,40.760344],"type":"Point"},"name":"Carvel"} +,{"_id":{"$oid":"55cba2476c522cafdb05490e"},"location":{"coordinates":[-73.86007239999999,40.7464538],"type":"Point"},"name":"Tony'S Pizzeria \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05490f"},"location":{"coordinates":[-73.8855919,40.8618662],"type":"Point"},"name":"Fordham University - Millenium Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb054910"},"location":{"coordinates":[-73.88541699999999,40.82766],"type":"Point"},"name":"La Nueva Giralda Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb054911"},"location":{"coordinates":[-73.949413,40.730884],"type":"Point"},"name":"Point View Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb054912"},"location":{"coordinates":[-73.8855919,40.8618662],"type":"Point"},"name":"Fordham University - Student Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb054913"},"location":{"coordinates":[-73.91337299999999,40.775064],"type":"Point"},"name":"Zorba'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054914"},"location":{"coordinates":[-73.9452549,40.7182168],"type":"Point"},"name":"Daddy'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054915"},"location":{"coordinates":[-73.9987505,40.73985880000001],"type":"Point"},"name":"J 'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054916"},"location":{"coordinates":[-74.0085142,40.7480556],"type":"Point"},"name":"Sports Center Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054917"},"location":{"coordinates":[-73.9586478,40.8008307],"type":"Point"},"name":"Papa John'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054918"},"location":{"coordinates":[-73.9861119,40.6301407],"type":"Point"},"name":"Moti'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054919"},"location":{"coordinates":[-73.98604499999999,40.718518],"type":"Point"},"name":"Soy"} +,{"_id":{"$oid":"55cba2476c522cafdb05491a"},"location":{"coordinates":[-73.94434059999999,40.7053605],"type":"Point"},"name":"Don Pedro Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05491b"},"location":{"coordinates":[-73.98330790000001,40.760053],"type":"Point"},"name":"Sapporo Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05491c"},"location":{"coordinates":[-73.95814829999999,40.8112234],"type":"Point"},"name":"Kitchenette Uptown"} +,{"_id":{"$oid":"55cba2476c522cafdb05491d"},"location":{"coordinates":[-73.9830374,40.760636],"type":"Point"},"name":"Barclay'S Capital"} +,{"_id":{"$oid":"55cba2476c522cafdb05491e"},"location":{"coordinates":[-73.833825,40.699117],"type":"Point"},"name":"Girasol Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb05491f"},"location":{"coordinates":[-73.9772294,40.7527262],"type":"Point"},"name":"Grand Hyatt New York Hotel"} +,{"_id":{"$oid":"55cba2476c522cafdb054920"},"location":{"coordinates":[-88.0778799,42.4154769],"type":"Point"},"name":"Hyatt, Ny Central/Room Service"} +,{"_id":{"$oid":"55cba2476c522cafdb054921"},"location":{"coordinates":[-73.8170153,40.7654127],"type":"Point"},"name":"Domino'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054922"},"location":{"coordinates":[-73.9405439,40.7984414],"type":"Point"},"name":"Taco Bell Pizza Hut Express"} +,{"_id":{"$oid":"55cba2476c522cafdb054923"},"location":{"coordinates":[-73.9544796,40.7423946],"type":"Point"},"name":"Tournesol"} +,{"_id":{"$oid":"55cba2476c522cafdb054924"},"location":{"coordinates":[-73.95177190000001,40.77745609999999],"type":"Point"},"name":"Heidelberg Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054925"},"location":{"coordinates":[-73.99845119999999,40.7294458],"type":"Point"},"name":"Negril"} +,{"_id":{"$oid":"55cba2476c522cafdb054926"},"location":{"coordinates":[-73.848359,40.694873],"type":"Point"},"name":"Tavern Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb054927"},"location":{"coordinates":[-73.9910143,40.7448595],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb054928"},"location":{"coordinates":[-73.9999275,40.718362],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb054929"},"location":{"coordinates":[-73.9838259,40.742158],"type":"Point"},"name":"Blue Smoke"} +,{"_id":{"$oid":"55cba2476c522cafdb05492a"},"location":{"coordinates":[-73.9542902,40.7322304],"type":"Point"},"name":"Ott Thai Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb05492b"},"location":{"coordinates":[-73.95012249999999,40.6712248],"type":"Point"},"name":"Q'S Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb05492c"},"location":{"coordinates":[-73.9588656,40.71325940000001],"type":"Point"},"name":"The Trash Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05492d"},"location":{"coordinates":[-73.968349,40.6781528],"type":"Point"},"name":"Soda Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05492e"},"location":{"coordinates":[-73.99147959999999,40.7145559],"type":"Point"},"name":"Ling Kee Beef Jerky"} +,{"_id":{"$oid":"55cba2476c522cafdb05492f"},"location":{"coordinates":[-73.987657,40.737832],"type":"Point"},"name":"Big Daddy'S Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb054930"},"location":{"coordinates":[-73.7151808,40.7456966],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054931"},"location":{"coordinates":[-74.0228301,40.6454704],"type":"Point"},"name":"Bari Sandwich Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb054932"},"location":{"coordinates":[-73.9766459,40.7602745],"type":"Point"},"name":"Digby'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054933"},"location":{"coordinates":[-73.97922439999999,40.7780226],"type":"Point"},"name":"Juice Generation"} +,{"_id":{"$oid":"55cba2476c522cafdb054934"},"location":{"coordinates":[-73.98096269999999,40.7499818],"type":"Point"},"name":"Whaler Bar, Cafe Buon Giorno"} +,{"_id":{"$oid":"55cba2476c522cafdb054935"},"location":{"coordinates":[-73.95437849999999,40.7070204],"type":"Point"},"name":"Moto"} +,{"_id":{"$oid":"55cba2476c522cafdb054936"},"location":{"coordinates":[-73.9881647,40.73351170000001],"type":"Point"},"name":"New York University - Palladium Food Court"} +,{"_id":{"$oid":"55cba2476c522cafdb054937"},"location":{"coordinates":[-111.9975205,42.0970258],"type":"Point"},"name":"Sports Center At Chelsea Piers (Sushi Bar)"} +,{"_id":{"$oid":"55cba2476c522cafdb054938"},"location":{"coordinates":[-73.86895249999999,40.7491981],"type":"Point"},"name":"El Hornero Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb054939"},"location":{"coordinates":[-73.8087319,40.7015862],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb05493a"},"location":{"coordinates":[-73.9739523,40.749524],"type":"Point"},"name":"Jones Reavis \u0026 Pague Llp"} +,{"_id":{"$oid":"55cba2476c522cafdb05493b"},"location":{"coordinates":[-73.9836648,40.6183406],"type":"Point"},"name":"Verona Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05493c"},"location":{"coordinates":[-73.98608,40.7497601],"type":"Point"},"name":"Brendan'S"} +,{"_id":{"$oid":"55cba2476c522cafdb05493d"},"location":{"coordinates":[-74.0664876,40.6152616],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb05493e"},"location":{"coordinates":[-73.8893885,40.872716],"type":"Point"},"name":"Sheas Emerald"} +,{"_id":{"$oid":"55cba2476c522cafdb05493f"},"location":{"coordinates":[-73.9683376,40.8004902],"type":"Point"},"name":"Toast"} +,{"_id":{"$oid":"55cba2476c522cafdb054940"},"location":{"coordinates":[-74.0154858,40.7130392],"type":"Point"},"name":"American Express"} +,{"_id":{"$oid":"55cba2476c522cafdb054941"},"location":{"coordinates":[-73.928805,40.642426],"type":"Point"},"name":"Joyce'S West Indies Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054942"},"location":{"coordinates":[-73.8442761,40.86981919999999],"type":"Point"},"name":"Memories Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb054943"},"location":{"coordinates":[-73.95648,40.778657],"type":"Point"},"name":"Carlow East"} +,{"_id":{"$oid":"55cba2476c522cafdb054944"},"location":{"coordinates":[-73.9775172,40.7771001],"type":"Point"},"name":"Dallas Bbq"} +,{"_id":{"$oid":"55cba2476c522cafdb054945"},"location":{"coordinates":[-74.0154858,40.7130392],"type":"Point"},"name":"Eurest Dining Service (American Express)"} +,{"_id":{"$oid":"55cba2476c522cafdb054946"},"location":{"coordinates":[-73.7582954,40.7403191],"type":"Point"},"name":"Yao Wah Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb054947"},"location":{"coordinates":[-73.862466,40.743504],"type":"Point"},"name":"El Cuencanito"} +,{"_id":{"$oid":"55cba2476c522cafdb054948"},"location":{"coordinates":[-73.95936979999999,40.7641412],"type":"Point"},"name":"Java Girl"} +,{"_id":{"$oid":"55cba2476c522cafdb054949"},"location":{"coordinates":[-73.7889689,40.6433507],"type":"Point"},"name":"111 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05494a"},"location":{"coordinates":[-73.9421413,40.68020020000001],"type":"Point"},"name":"Domino'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05494b"},"location":{"coordinates":[-73.965369,40.75871799999999],"type":"Point"},"name":"Ny Hot Jumbo Bagels"} +,{"_id":{"$oid":"55cba2476c522cafdb05494c"},"location":{"coordinates":[-73.960341,40.71978],"type":"Point"},"name":"Doc Wine Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05494d"},"location":{"coordinates":[-73.9213737,40.7522923],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb05494e"},"location":{"coordinates":[-73.978567,40.741603],"type":"Point"},"name":"Dolcino Trattoria Toscana"} +,{"_id":{"$oid":"55cba2476c522cafdb05494f"},"location":{"coordinates":[-73.9378643,40.8034962],"type":"Point"},"name":"Jimbos Hamburger Palace"} +,{"_id":{"$oid":"55cba2476c522cafdb054950"},"location":{"coordinates":[-73.7822056,40.6434612],"type":"Point"},"name":"Swiss International Airlines Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb054951"},"location":{"coordinates":[-73.9657247,40.7617851],"type":"Point"},"name":"Patsy'S Pizzeria Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054952"},"location":{"coordinates":[-73.8630457,40.8825598],"type":"Point"},"name":"Roca Tone Seafood Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054953"},"location":{"coordinates":[-73.9057995,40.7455967],"type":"Point"},"name":"Rico Pan Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb054954"},"location":{"coordinates":[-73.9432808,40.5839513],"type":"Point"},"name":"Applebee'S Neighborhood Grill \u0026 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054955"},"location":{"coordinates":[-73.96878889999999,40.7554855],"type":"Point"},"name":"Amma"} +,{"_id":{"$oid":"55cba2476c522cafdb054956"},"location":{"coordinates":[-73.985843,40.759476],"type":"Point"},"name":"Danny'S Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb054957"},"location":{"coordinates":[-73.9860655,40.7477154],"type":"Point"},"name":"Kunjip Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054958"},"location":{"coordinates":[-73.9171896,40.8158252],"type":"Point"},"name":"The Best Italian Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054959"},"location":{"coordinates":[-73.9863762,40.69270050000001],"type":"Point"},"name":"Harry'O"} +,{"_id":{"$oid":"55cba2476c522cafdb05495a"},"location":{"coordinates":[-73.84988249999999,40.73422840000001],"type":"Point"},"name":"D'Angelo'S Pizzeria And Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05495b"},"location":{"coordinates":[-74.0021519,40.685552],"type":"Point"},"name":"Alma"} +,{"_id":{"$oid":"55cba2476c522cafdb05495c"},"location":{"coordinates":[-74.0230023,40.6291133],"type":"Point"},"name":"Johnny Pumps"} +,{"_id":{"$oid":"55cba2476c522cafdb05495d"},"location":{"coordinates":[-73.9838642,40.6677603],"type":"Point"},"name":"Barbes"} +,{"_id":{"$oid":"55cba2476c522cafdb05495e"},"location":{"coordinates":[-73.9954688,40.7605803],"type":"Point"},"name":"Canard Inc"} +,{"_id":{"$oid":"55cba2476c522cafdb05495f"},"location":{"coordinates":[-73.80379440000002,40.7074876],"type":"Point"},"name":"Jennifer'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054960"},"location":{"coordinates":[-73.9932443,40.7344736],"type":"Point"},"name":"Marquet Fine Pastry"} +,{"_id":{"$oid":"55cba2476c522cafdb054961"},"location":{"coordinates":[-73.957302,40.729759],"type":"Point"},"name":"Pencil Factory"} +,{"_id":{"$oid":"55cba2476c522cafdb054962"},"location":{"coordinates":[-73.9840536,40.73834189999999],"type":"Point"},"name":"Lamarca Pasta Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054963"},"location":{"coordinates":[-74.0106824,40.7024877],"type":"Point"},"name":"Sullivan \u0026 Cromwell"} +,{"_id":{"$oid":"55cba2476c522cafdb054964"},"location":{"coordinates":[-73.9398247,40.7076864],"type":"Point"},"name":"Danny'S Pizzeria \u0026 Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054965"},"location":{"coordinates":[-73.9922551,40.6892272],"type":"Point"},"name":"Yemen Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb054966"},"location":{"coordinates":[-73.9874729,40.7210093],"type":"Point"},"name":"San Loco"} +,{"_id":{"$oid":"55cba2476c522cafdb054967"},"location":{"coordinates":[-73.96117559999999,40.6081619],"type":"Point"},"name":"Amazon Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054968"},"location":{"coordinates":[-73.8799049,40.74807819999999],"type":"Point"},"name":"Uno Cafe \u0026 Billiards"} +,{"_id":{"$oid":"55cba2476c522cafdb054969"},"location":{"coordinates":[-73.79800329999999,40.7061372],"type":"Point"},"name":"New China Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb05496a"},"location":{"coordinates":[-73.736481,40.7177976],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb05496b"},"location":{"coordinates":[-73.94865949999999,40.8018106],"type":"Point"},"name":"Popeyes Chicken \u0026 Biscuits"} +,{"_id":{"$oid":"55cba2476c522cafdb05496c"},"location":{"coordinates":[-73.9781038,40.74521499999999],"type":"Point"},"name":"Ethos Greek Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb05496d"},"location":{"coordinates":[-73.990494,40.7569545],"type":"Point"},"name":"Casa Java"} +,{"_id":{"$oid":"55cba2476c522cafdb05496e"},"location":{"coordinates":[-73.973204,40.754619],"type":"Point"},"name":"Snafu"} +,{"_id":{"$oid":"55cba2476c522cafdb05496f"},"location":{"coordinates":[-73.8703834,40.825129],"type":"Point"},"name":"Cea Lo Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054970"},"location":{"coordinates":[-73.9296582,40.6160532],"type":"Point"},"name":"China New Star"} +,{"_id":{"$oid":"55cba2476c522cafdb054971"},"location":{"coordinates":[-73.8858529,40.8572014],"type":"Point"},"name":"Mug-Z'S Sports Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054972"},"location":{"coordinates":[-73.96299309999999,40.7742972],"type":"Point"},"name":"Hotel Carlyle"} +,{"_id":{"$oid":"55cba2476c522cafdb054973"},"location":{"coordinates":[-73.8658389,40.8597684],"type":"Point"},"name":"J.E. Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb054974"},"location":{"coordinates":[-92.71992259999999,41.7458688],"type":"Point"},"name":"White \u0026 Case"} +,{"_id":{"$oid":"55cba2476c522cafdb054975"},"location":{"coordinates":[-74.0158213,40.7149813],"type":"Point"},"name":"Regal Entertainment Group"} +,{"_id":{"$oid":"55cba2476c522cafdb054976"},"location":{"coordinates":[-73.810936,40.674944],"type":"Point"},"name":"A \u0026 B Deli \u0026 Catering"} +,{"_id":{"$oid":"55cba2476c522cafdb054977"},"location":{"coordinates":[-73.813255,40.765479],"type":"Point"},"name":"Park'S Snack"} +,{"_id":{"$oid":"55cba2476c522cafdb054978"},"location":{"coordinates":[-73.924643,40.658507],"type":"Point"},"name":"New No 1 Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054979"},"location":{"coordinates":[-73.968432,40.6779539],"type":"Point"},"name":"The Usual Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05497a"},"location":{"coordinates":[-73.9885862,40.7295327],"type":"Point"},"name":"Yakiniku West Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05497b"},"location":{"coordinates":[-73.9645915,40.6832138],"type":"Point"},"name":"Happy Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05497c"},"location":{"coordinates":[-73.98837499999999,40.725499],"type":"Point"},"name":"Euzkadi"} +,{"_id":{"$oid":"55cba2476c522cafdb05497d"},"location":{"coordinates":[-73.98751539999999,40.7559449],"type":"Point"},"name":"Ernst \u0026 Young Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05497e"},"location":{"coordinates":[-73.8359724,40.8436302],"type":"Point"},"name":"Frank'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb05497f"},"location":{"coordinates":[-73.9650518,40.6066146],"type":"Point"},"name":"Mirage Diner Restauraunt"} +,{"_id":{"$oid":"55cba2476c522cafdb054980"},"location":{"coordinates":[-73.9159998,40.6550235],"type":"Point"},"name":"Jojo'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054981"},"location":{"coordinates":[-73.99102859999999,40.7365123],"type":"Point"},"name":"Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb054982"},"location":{"coordinates":[-73.98892409999999,40.7553756],"type":"Point"},"name":"Domino'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054983"},"location":{"coordinates":[-73.8218322,40.7259548],"type":"Point"},"name":"Annie'S Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb054984"},"location":{"coordinates":[-73.9796956,40.7224776],"type":"Point"},"name":"Nublu"} +,{"_id":{"$oid":"55cba2476c522cafdb054985"},"location":{"coordinates":[-73.9822418,40.7612824],"type":"Point"},"name":"Ruth'S Chris Steak House"} +,{"_id":{"$oid":"55cba2476c522cafdb054986"},"location":{"coordinates":[-73.94474699999999,40.791945],"type":"Point"},"name":"Blimpie"} +,{"_id":{"$oid":"55cba2476c522cafdb054987"},"location":{"coordinates":[-74.013222,40.70122],"type":"Point"},"name":"The Liberty Cafe (S.I. Newhouse)"} +,{"_id":{"$oid":"55cba2476c522cafdb054988"},"location":{"coordinates":[-74.013222,40.70122],"type":"Point"},"name":"Eat-A-Bagel (Andrew J. Barbery Ferry Boat)"} +,{"_id":{"$oid":"55cba2476c522cafdb054989"},"location":{"coordinates":[-73.9410809,40.7036157],"type":"Point"},"name":"Ramonita'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05498a"},"location":{"coordinates":[-73.99136870000001,40.6923048],"type":"Point"},"name":"Court Order"} +,{"_id":{"$oid":"55cba2476c522cafdb05498b"},"location":{"coordinates":[-73.9197389,40.83489170000001],"type":"Point"},"name":"Nb. National Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb05498c"},"location":{"coordinates":[-73.98571,40.732974],"type":"Point"},"name":"Beauty Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05498d"},"location":{"coordinates":[-73.8002842,40.70256759999999],"type":"Point"},"name":"Golden Krust Caribbean Bakery \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb05498e"},"location":{"coordinates":[-73.9838059,40.7598196],"type":"Point"},"name":"Tsq Brasserie"} +,{"_id":{"$oid":"55cba2476c522cafdb05498f"},"location":{"coordinates":[-73.98457189999999,40.759637],"type":"Point"},"name":"Renaissance Hotel"} +,{"_id":{"$oid":"55cba2476c522cafdb054990"},"location":{"coordinates":[-73.9710315,40.7587882],"type":"Point"},"name":"Hale \u0026 Hearty Soups"} +,{"_id":{"$oid":"55cba2476c522cafdb054991"},"location":{"coordinates":[-74.01065899999999,40.7082118],"type":"Point"},"name":"Ashby'S Specialty"} +,{"_id":{"$oid":"55cba2476c522cafdb054992"},"location":{"coordinates":[-73.8612466,40.8858379],"type":"Point"},"name":"New Rainbow Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054993"},"location":{"coordinates":[-73.9584625,40.59879660000001],"type":"Point"},"name":"La Villita Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054994"},"location":{"coordinates":[-73.986544,40.7337697],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb054995"},"location":{"coordinates":[-73.9462238,40.656571],"type":"Point"},"name":"Andy'S Cafeteria"} +,{"_id":{"$oid":"55cba2476c522cafdb054996"},"location":{"coordinates":[-73.98394379999999,40.75611139999999],"type":"Point"},"name":"Sushi Zen"} +,{"_id":{"$oid":"55cba2476c522cafdb054997"},"location":{"coordinates":[-73.9866522,40.7536411],"type":"Point"},"name":"Europa Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054998"},"location":{"coordinates":[-73.9772294,40.7527262],"type":"Point"},"name":"Dishes"} +,{"_id":{"$oid":"55cba2476c522cafdb054999"},"location":{"coordinates":[-74.02521709999999,40.6224629],"type":"Point"},"name":"Chopstix Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05499a"},"location":{"coordinates":[-74.159154,40.611611],"type":"Point"},"name":"Chili'S Grill \u0026 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05499b"},"location":{"coordinates":[-73.8982961,40.8215606],"type":"Point"},"name":"Casa Promesa"} +,{"_id":{"$oid":"55cba2476c522cafdb05499c"},"location":{"coordinates":[-74.0010291,40.7296283],"type":"Point"},"name":"The Kati Roll Company"} +,{"_id":{"$oid":"55cba2476c522cafdb05499d"},"location":{"coordinates":[-73.95707399999999,40.7777403],"type":"Point"},"name":"Tal Bagels"} +,{"_id":{"$oid":"55cba2476c522cafdb05499e"},"location":{"coordinates":[-73.909217,40.7753227],"type":"Point"},"name":"Taverna Kyclades"} +,{"_id":{"$oid":"55cba2476c522cafdb05499f"},"location":{"coordinates":[-74.0096302,40.7208395],"type":"Point"},"name":"Beach Street Eatery"} +,{"_id":{"$oid":"55cba2476c522cafdb0549a0"},"location":{"coordinates":[-74.013222,40.70122],"type":"Point"},"name":"Liberty Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0549a1"},"location":{"coordinates":[-73.8552722,40.7520333],"type":"Point"},"name":"Victora'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb0549a2"},"location":{"coordinates":[-74.0025903,40.7443077],"type":"Point"},"name":"O-Mai"} +,{"_id":{"$oid":"55cba2476c522cafdb0549a3"},"location":{"coordinates":[-73.98827000000001,40.74912],"type":"Point"},"name":"Tracks Raw Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0549a4"},"location":{"coordinates":[-73.7211162,40.74237249999999],"type":"Point"},"name":"Bellerose Famous Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0549a5"},"location":{"coordinates":[-74.00178400000001,40.73912],"type":"Point"},"name":"Crispo"} +,{"_id":{"$oid":"55cba2476c522cafdb0549a6"},"location":{"coordinates":[-73.990495,40.725212],"type":"Point"},"name":"Cafiero Lussier"} +,{"_id":{"$oid":"55cba2476c522cafdb0549a7"},"location":{"coordinates":[-73.90543,40.71081],"type":"Point"},"name":"Il Gusto"} +,{"_id":{"$oid":"55cba2476c522cafdb0549a8"},"location":{"coordinates":[-73.9941635,40.7261256],"type":"Point"},"name":"Bite"} +,{"_id":{"$oid":"55cba2476c522cafdb0549a9"},"location":{"coordinates":[-73.97927469999999,40.683535],"type":"Point"},"name":"Don Pepe Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0549aa"},"location":{"coordinates":[-73.9988889,40.7477778],"type":"Point"},"name":"Hot \u0026 Crusty"} +,{"_id":{"$oid":"55cba2476c522cafdb0549ab"},"location":{"coordinates":[-73.99853700000001,40.7456282],"type":"Point"},"name":"Dallas Bbq"} +,{"_id":{"$oid":"55cba2476c522cafdb0549ac"},"location":{"coordinates":[-73.9877458,40.7276903],"type":"Point"},"name":"Via Della Pace"} +,{"_id":{"$oid":"55cba2476c522cafdb0549ad"},"location":{"coordinates":[-73.99869199999999,40.7325],"type":"Point"},"name":"Washington Square Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0549ae"},"location":{"coordinates":[-73.9938875,40.7458452],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0549af"},"location":{"coordinates":[-73.977987,40.6355629],"type":"Point"},"name":"Gabby'S Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb0549b0"},"location":{"coordinates":[-73.9942386,40.7521985],"type":"Point"},"name":"Stage Door"} +,{"_id":{"$oid":"55cba2476c522cafdb0549b1"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"Galleries Lounge British Airways"} +,{"_id":{"$oid":"55cba2476c522cafdb0549b2"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"Concorde Room"} +,{"_id":{"$oid":"55cba2476c522cafdb0549b3"},"location":{"coordinates":[-73.918094,40.742654],"type":"Point"},"name":"Cafe Colombia"} +,{"_id":{"$oid":"55cba2476c522cafdb0549b4"},"location":{"coordinates":[-73.837397,40.7186211],"type":"Point"},"name":"Tasty Fast Food"} +,{"_id":{"$oid":"55cba2476c522cafdb0549b5"},"location":{"coordinates":[-73.97612699999999,40.74886],"type":"Point"},"name":"Cafe Trend"} +,{"_id":{"$oid":"55cba2476c522cafdb0549b6"},"location":{"coordinates":[-74.02672299999999,40.634845],"type":"Point"},"name":"Fuel"} +,{"_id":{"$oid":"55cba2476c522cafdb0549b7"},"location":{"coordinates":[-73.896784,40.705517],"type":"Point"},"name":"Taste Of China"} +,{"_id":{"$oid":"55cba2476c522cafdb0549b8"},"location":{"coordinates":[-73.9869859,40.7386377],"type":"Point"},"name":"Bravo Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0549b9"},"location":{"coordinates":[-73.9887456,40.7362911],"type":"Point"},"name":"Union Square Theater"} +,{"_id":{"$oid":"55cba2476c522cafdb0549ba"},"location":{"coordinates":[-74.0011895,40.7304676],"type":"Point"},"name":"Minetta Lane Theater"} +,{"_id":{"$oid":"55cba2476c522cafdb0549bb"},"location":{"coordinates":[-74.0039391,40.7196291],"type":"Point"},"name":"Macao Restuarant And Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0549bc"},"location":{"coordinates":[-73.9978577,40.7452791],"type":"Point"},"name":"Trailer Park Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb0549bd"},"location":{"coordinates":[-73.9697795,40.7519846],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0549be"},"location":{"coordinates":[-73.870862,40.749246],"type":"Point"},"name":"Puebla Seafood"} +,{"_id":{"$oid":"55cba2476c522cafdb0549bf"},"location":{"coordinates":[-73.8591532,40.8243496],"type":"Point"},"name":"Jr Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0549c0"},"location":{"coordinates":[-73.9844943,40.5748057],"type":"Point"},"name":"Peggy O'Neill'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0549c1"},"location":{"coordinates":[-73.9248489,40.8624016],"type":"Point"},"name":"Jimbo'S Hamburger Palace"} +,{"_id":{"$oid":"55cba2476c522cafdb0549c2"},"location":{"coordinates":[-74.008348,40.726144],"type":"Point"},"name":"Sway Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb0549c3"},"location":{"coordinates":[-74.1326405,40.6119973],"type":"Point"},"name":"Paesano'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0549c4"},"location":{"coordinates":[-73.9797059,40.7577],"type":"Point"},"name":"Scott'S Food \u0026 Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb0549c5"},"location":{"coordinates":[-73.96061399999999,40.761981],"type":"Point"},"name":"Sushi Seki"} +,{"_id":{"$oid":"55cba2476c522cafdb0549c6"},"location":{"coordinates":[-73.97246249999999,40.7618787],"type":"Point"},"name":"Kmr"} +,{"_id":{"$oid":"55cba2476c522cafdb0549c7"},"location":{"coordinates":[-74.0087694,40.70776619999999],"type":"Point"},"name":"Milbank Tweed Hadley \u0026 Mccloy"} +,{"_id":{"$oid":"55cba2476c522cafdb0549c8"},"location":{"coordinates":[-73.97765389999999,40.75451169999999],"type":"Point"},"name":"Cosi Downtown"} +,{"_id":{"$oid":"55cba2476c522cafdb0549c9"},"location":{"coordinates":[-73.972308,40.761132],"type":"Point"},"name":"Cosi Sandwich Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0549ca"},"location":{"coordinates":[-73.8950685,40.8275743],"type":"Point"},"name":"La Morena Food"} +,{"_id":{"$oid":"55cba2476c522cafdb0549cb"},"location":{"coordinates":[-73.9807455,40.7585161],"type":"Point"},"name":"Cosi"} +,{"_id":{"$oid":"55cba2476c522cafdb0549cc"},"location":{"coordinates":[-73.9845362,40.7620434],"type":"Point"},"name":"Cosi"} +,{"_id":{"$oid":"55cba2476c522cafdb0549cd"},"location":{"coordinates":[-73.9705382,40.7593494],"type":"Point"},"name":"Health King"} +,{"_id":{"$oid":"55cba2476c522cafdb0549ce"},"location":{"coordinates":[-74.2386259,40.5241378],"type":"Point"},"name":"Nucci'S South"} +,{"_id":{"$oid":"55cba2476c522cafdb0549cf"},"location":{"coordinates":[-74.1150201,40.6252881],"type":"Point"},"name":"Staten Island Zoo Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0549d0"},"location":{"coordinates":[-73.944074,40.6618786],"type":"Point"},"name":"Bension Kohen"} +,{"_id":{"$oid":"55cba2476c522cafdb0549d1"},"location":{"coordinates":[-73.97946499999999,40.751758],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0549d2"},"location":{"coordinates":[-73.9896167,40.727297],"type":"Point"},"name":"Podunk"} +,{"_id":{"$oid":"55cba2476c522cafdb0549d3"},"location":{"coordinates":[-73.9724105,40.7566789],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0549d4"},"location":{"coordinates":[-74.00838089999999,40.70677209999999],"type":"Point"},"name":"Ise Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0549d5"},"location":{"coordinates":[-74.0010011,40.7306066],"type":"Point"},"name":"Village Underground"} +,{"_id":{"$oid":"55cba2476c522cafdb0549d6"},"location":{"coordinates":[-74.11044840000001,40.5705923],"type":"Point"},"name":"Sushi Excellent Asian Fusion \u0026 Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb0549d7"},"location":{"coordinates":[-73.97125539999999,40.7928951],"type":"Point"},"name":"Pio Pio"} +,{"_id":{"$oid":"55cba2476c522cafdb0549d8"},"location":{"coordinates":[-73.9211031,40.756152],"type":"Point"},"name":"El Foruma Night Club And Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0549d9"},"location":{"coordinates":[-73.9808063,40.6895078],"type":"Point"},"name":"Applebee'S Neighborhood Grill \u0026 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0549da"},"location":{"coordinates":[-73.9660208,40.8003949],"type":"Point"},"name":"Acosta Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0549db"},"location":{"coordinates":[-74.1969871,40.5877316],"type":"Point"},"name":"Da Noi Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0549dc"},"location":{"coordinates":[-73.736304,40.7132],"type":"Point"},"name":"Belvedere Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0549dd"},"location":{"coordinates":[-73.99424800000001,40.721761],"type":"Point"},"name":"Lovely Day"} +,{"_id":{"$oid":"55cba2476c522cafdb0549de"},"location":{"coordinates":[-73.8747611,40.7353074],"type":"Point"},"name":"Mrs. Fields, Tcby"} +,{"_id":{"$oid":"55cba2476c522cafdb0549df"},"location":{"coordinates":[-73.8875834,40.855108],"type":"Point"},"name":"M\u0026G Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0549e0"},"location":{"coordinates":[-83.8833466,30.6928655],"type":"Point"},"name":"Key Club"} +,{"_id":{"$oid":"55cba2476c522cafdb0549e1"},"location":{"coordinates":[-74.00689489999999,40.6556606],"type":"Point"},"name":"Cafe La Morena \u0026 Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb0549e2"},"location":{"coordinates":[-73.9968817,40.6720903],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0549e3"},"location":{"coordinates":[-73.87392,40.743265],"type":"Point"},"name":"S.R. Deli Grocery"} +,{"_id":{"$oid":"55cba2476c522cafdb0549e4"},"location":{"coordinates":[-73.93564119999999,40.6774698],"type":"Point"},"name":"Essence Bar \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0549e5"},"location":{"coordinates":[-73.9217829,40.7605421],"type":"Point"},"name":"Brooklyn Coffee \u0026 Bagels"} +,{"_id":{"$oid":"55cba2476c522cafdb0549e6"},"location":{"coordinates":[-73.8465497,40.8770026],"type":"Point"},"name":"Food Hut Restaurant \u0026 Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0549e7"},"location":{"coordinates":[-73.943074,40.6048523],"type":"Point"},"name":"Buckley'S Bar \u0026 Restauran"} +,{"_id":{"$oid":"55cba2476c522cafdb0549e8"},"location":{"coordinates":[-73.9162759,40.6191741],"type":"Point"},"name":"Bon Soir Caterers"} +,{"_id":{"$oid":"55cba2476c522cafdb0549e9"},"location":{"coordinates":[-73.9856152,40.661703],"type":"Point"},"name":"Friend'S Pizza Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0549ea"},"location":{"coordinates":[-73.840193,40.679613],"type":"Point"},"name":"Cozy Bowl Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb0549eb"},"location":{"coordinates":[-73.9611013,40.7614664],"type":"Point"},"name":"Neely'S Barbecue Parlor/Merchants"} +,{"_id":{"$oid":"55cba2476c522cafdb0549ec"},"location":{"coordinates":[-73.9845816,40.7421034],"type":"Point"},"name":"Hotel Giraffe"} +,{"_id":{"$oid":"55cba2476c522cafdb0549ed"},"location":{"coordinates":[-73.9207004,40.7437901],"type":"Point"},"name":"The Gaslight Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0549ee"},"location":{"coordinates":[-73.9608319,40.711337],"type":"Point"},"name":"Dram"} +,{"_id":{"$oid":"55cba2476c522cafdb0549ef"},"location":{"coordinates":[-73.9747277,40.7536114],"type":"Point"},"name":"Hale \u0026 Hearty Soups"} +,{"_id":{"$oid":"55cba2476c522cafdb0549f0"},"location":{"coordinates":[-73.990494,40.7569545],"type":"Point"},"name":"Mc Ann'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0549f1"},"location":{"coordinates":[-73.96031169999999,40.81420200000001],"type":"Point"},"name":"Pisticci Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0549f2"},"location":{"coordinates":[-73.98404359999999,40.7603823],"type":"Point"},"name":"Famous Ray'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0549f3"},"location":{"coordinates":[-74.0083234,40.7124877],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0549f4"},"location":{"coordinates":[-73.9773144,40.7798655],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0549f5"},"location":{"coordinates":[-73.87664470000001,40.829254],"type":"Point"},"name":"Edison Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0549f6"},"location":{"coordinates":[-92.7182167,41.7467777],"type":"Point"},"name":"Cafe Metro"} +,{"_id":{"$oid":"55cba2476c522cafdb0549f7"},"location":{"coordinates":[-73.92060099999999,40.766763],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0549f8"},"location":{"coordinates":[-73.9483236,40.6387106],"type":"Point"},"name":"Kenny'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0549f9"},"location":{"coordinates":[-73.9910744,40.7343495],"type":"Point"},"name":"Cosi"} +,{"_id":{"$oid":"55cba2476c522cafdb0549fa"},"location":{"coordinates":[-74.0108765,40.7052927],"type":"Point"},"name":"Cosi Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0549fb"},"location":{"coordinates":[-73.98220839999999,40.7636789],"type":"Point"},"name":"Europa Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0549fc"},"location":{"coordinates":[-73.9101472,40.8748245],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0549fd"},"location":{"coordinates":[-73.9845407,40.74224299999999],"type":"Point"},"name":"Dos Caminos"} +,{"_id":{"$oid":"55cba2476c522cafdb0549fe"},"location":{"coordinates":[-74.0227956,40.62827790000001],"type":"Point"},"name":"The Royal Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0549ff"},"location":{"coordinates":[-73.8294449,40.7604418],"type":"Point"},"name":"Joong Han Boon Sik"} +,{"_id":{"$oid":"55cba2476c522cafdb054a00"},"location":{"coordinates":[-73.98571299999999,40.76234300000001],"type":"Point"},"name":"Sosa Borella"} +,{"_id":{"$oid":"55cba2476c522cafdb054a01"},"location":{"coordinates":[-73.9902686,40.7217265],"type":"Point"},"name":"Apizz Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054a02"},"location":{"coordinates":[-73.99654199999999,40.722324],"type":"Point"},"name":"Gatsby'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054a03"},"location":{"coordinates":[-73.85348499999999,40.71109300000001],"type":"Point"},"name":"Alberto'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054a04"},"location":{"coordinates":[-73.879436,40.8819159],"type":"Point"},"name":"Rochambeau West Indian \u0026 American Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054a05"},"location":{"coordinates":[-74.008437,40.726152],"type":"Point"},"name":"Giorgione"} +,{"_id":{"$oid":"55cba2476c522cafdb054a06"},"location":{"coordinates":[-73.9547012,40.7692672],"type":"Point"},"name":"Domino'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054a07"},"location":{"coordinates":[-73.8739659,40.7769271],"type":"Point"},"name":"Nysb"} +,{"_id":{"$oid":"55cba2476c522cafdb054a08"},"location":{"coordinates":[-73.8739659,40.7769271],"type":"Point"},"name":"Metro Burger"} +,{"_id":{"$oid":"55cba2476c522cafdb054a09"},"location":{"coordinates":[-73.960026,40.718055],"type":"Point"},"name":"Sea"} +,{"_id":{"$oid":"55cba2476c522cafdb054a0a"},"location":{"coordinates":[-73.9392196,40.7978358],"type":"Point"},"name":"El Tapatio Mexican Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054a0b"},"location":{"coordinates":[-73.91442270000002,40.7460179],"type":"Point"},"name":"Aubergine Caffe"} +,{"_id":{"$oid":"55cba2476c522cafdb054a0c"},"location":{"coordinates":[-73.9784952,40.7834267],"type":"Point"},"name":"Nice Matin"} +,{"_id":{"$oid":"55cba2476c522cafdb054a0d"},"location":{"coordinates":[-73.9823145,40.7452477],"type":"Point"},"name":"Cosi"} +,{"_id":{"$oid":"55cba2476c522cafdb054a0e"},"location":{"coordinates":[-73.95233999999999,40.78048829999999],"type":"Point"},"name":"Domino'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054a0f"},"location":{"coordinates":[-73.9277649,40.81103],"type":"Point"},"name":"African Maquis La Plantation"} +,{"_id":{"$oid":"55cba2476c522cafdb054a10"},"location":{"coordinates":[-73.912723,40.715126],"type":"Point"},"name":"D'Oasis Bar Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054a11"},"location":{"coordinates":[-73.82101999999999,40.679139],"type":"Point"},"name":"Eclipse On The Boulevard"} +,{"_id":{"$oid":"55cba2476c522cafdb054a12"},"location":{"coordinates":[-92.719402,41.746106],"type":"Point"},"name":"Big Apple Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb054a13"},"location":{"coordinates":[-73.97656909999999,40.7535209],"type":"Point"},"name":"Barclays"} +,{"_id":{"$oid":"55cba2476c522cafdb054a14"},"location":{"coordinates":[-73.9402489,40.8358318],"type":"Point"},"name":"Jimbo'S Hamburger Palace"} +,{"_id":{"$oid":"55cba2476c522cafdb054a15"},"location":{"coordinates":[-73.9032196,40.7074994],"type":"Point"},"name":"Joe'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054a16"},"location":{"coordinates":[-73.96451119999999,40.8015048],"type":"Point"},"name":"Mini Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054a17"},"location":{"coordinates":[-73.9949405,40.7258921],"type":"Point"},"name":"Temple Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054a18"},"location":{"coordinates":[-73.99241339999999,40.7454879],"type":"Point"},"name":"Black Door"} +,{"_id":{"$oid":"55cba2476c522cafdb054a19"},"location":{"coordinates":[-73.9127397,40.6454086],"type":"Point"},"name":"Lorri'S Bikini Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb054a1a"},"location":{"coordinates":[-73.9733026,40.75140690000001],"type":"Point"},"name":"Cosi Downtown"} +,{"_id":{"$oid":"55cba2476c522cafdb054a1b"},"location":{"coordinates":[-73.91984819999999,40.6831745],"type":"Point"},"name":"Xing Lung Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054a1c"},"location":{"coordinates":[-74.23443499999999,40.523651],"type":"Point"},"name":"Cafe Luna"} +,{"_id":{"$oid":"55cba2476c522cafdb054a1d"},"location":{"coordinates":[-73.9651248,40.7110674],"type":"Point"},"name":"Bembe"} +,{"_id":{"$oid":"55cba2476c522cafdb054a1e"},"location":{"coordinates":[-73.95388919999999,40.7442709],"type":"Point"},"name":"Bella Via"} +,{"_id":{"$oid":"55cba2476c522cafdb054a1f"},"location":{"coordinates":[-73.9823413,40.761032],"type":"Point"},"name":"Pret A Manger"} +,{"_id":{"$oid":"55cba2476c522cafdb054a20"},"location":{"coordinates":[-73.9793564,40.7589426],"type":"Point"},"name":"Pret A Manger"} +,{"_id":{"$oid":"55cba2476c522cafdb054a21"},"location":{"coordinates":[-73.9723698,40.7600967],"type":"Point"},"name":"Pret A Manger"} +,{"_id":{"$oid":"55cba2476c522cafdb054a22"},"location":{"coordinates":[-73.9818586,40.7541476],"type":"Point"},"name":"Pret A Manger"} +,{"_id":{"$oid":"55cba2476c522cafdb054a23"},"location":{"coordinates":[-73.8578884,40.7282638],"type":"Point"},"name":"Emerald Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054a24"},"location":{"coordinates":[-73.9129074,40.8463301],"type":"Point"},"name":"La Moneda Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054a25"},"location":{"coordinates":[-73.9770839,40.7268765],"type":"Point"},"name":"Cafecito"} +,{"_id":{"$oid":"55cba2476c522cafdb054a26"},"location":{"coordinates":[-73.832079,40.75933],"type":"Point"},"name":"White Bear"} +,{"_id":{"$oid":"55cba2476c522cafdb054a27"},"location":{"coordinates":[-73.8526993,40.71094919999999],"type":"Point"},"name":"La Vigna"} +,{"_id":{"$oid":"55cba2476c522cafdb054a28"},"location":{"coordinates":[-73.931319,40.8501974],"type":"Point"},"name":"67 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054a29"},"location":{"coordinates":[-73.97995689999999,40.7496785],"type":"Point"},"name":"Hakubai And Jazz At Kitano"} +,{"_id":{"$oid":"55cba2476c522cafdb054a2a"},"location":{"coordinates":[-73.9961919,40.731903],"type":"Point"},"name":"Otto Enoteca Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb054a2b"},"location":{"coordinates":[-73.9464974,40.8261207],"type":"Point"},"name":"Classic Pizza \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054a2c"},"location":{"coordinates":[-73.799213,40.70333720000001],"type":"Point"},"name":"Bally Total Fitness"} +,{"_id":{"$oid":"55cba2476c522cafdb054a2d"},"location":{"coordinates":[-73.9992607,40.753271],"type":"Point"},"name":"Starbucks Coffee #7826"} +,{"_id":{"$oid":"55cba2476c522cafdb054a2e"},"location":{"coordinates":[-73.9687161,40.7550732],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb054a2f"},"location":{"coordinates":[-73.8638636,40.8326052],"type":"Point"},"name":"Isla Of Verde"} +,{"_id":{"$oid":"55cba2476c522cafdb054a30"},"location":{"coordinates":[-73.9047258,40.88709890000001],"type":"Point"},"name":"Yokohama Japanese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054a31"},"location":{"coordinates":[-73.94919349999999,40.6407695],"type":"Point"},"name":"Sip N Chat Cocktail"} +,{"_id":{"$oid":"55cba2476c522cafdb054a32"},"location":{"coordinates":[-73.84318019999999,40.8243179],"type":"Point"},"name":"Teddy'S Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054a33"},"location":{"coordinates":[-73.9929719,40.7422884],"type":"Point"},"name":"Olive Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb054a34"},"location":{"coordinates":[-73.988995,40.729423],"type":"Point"},"name":"Veniero'S Pasticceria \u0026 Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054a35"},"location":{"coordinates":[-73.9769924,40.68196],"type":"Point"},"name":"El Viejo Yayo Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054a36"},"location":{"coordinates":[-73.94263219999999,40.8324796],"type":"Point"},"name":"Sister'S Uptown Bookstore"} +,{"_id":{"$oid":"55cba2476c522cafdb054a37"},"location":{"coordinates":[-73.985383,40.7565079],"type":"Point"},"name":"Tony'S Di Napoli"} +,{"_id":{"$oid":"55cba2476c522cafdb054a38"},"location":{"coordinates":[-73.99674879999999,40.7633589],"type":"Point"},"name":"Daisy May'S Bbq"} +,{"_id":{"$oid":"55cba2476c522cafdb054a39"},"location":{"coordinates":[-73.90178039999999,40.74562419999999],"type":"Point"},"name":"La Fina Bakery \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054a3a"},"location":{"coordinates":[-73.7674491,40.7563346],"type":"Point"},"name":"Elite Pastries Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054a3b"},"location":{"coordinates":[-73.973266,40.678852],"type":"Point"},"name":"Joy Indian Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054a3c"},"location":{"coordinates":[-73.977031,40.746573],"type":"Point"},"name":"Wild Edibles"} +,{"_id":{"$oid":"55cba2476c522cafdb054a3d"},"location":{"coordinates":[-73.9957822,40.7219213],"type":"Point"},"name":"Rice To Riches"} +,{"_id":{"$oid":"55cba2476c522cafdb054a3e"},"location":{"coordinates":[-74.00954209999999,40.7193048],"type":"Point"},"name":"Thalassa"} +,{"_id":{"$oid":"55cba2476c522cafdb054a3f"},"location":{"coordinates":[-73.9949422,40.7188561],"type":"Point"},"name":"Capitale"} +,{"_id":{"$oid":"55cba2476c522cafdb054a40"},"location":{"coordinates":[-73.94824320000001,40.5841685],"type":"Point"},"name":"Baku Palace"} +,{"_id":{"$oid":"55cba2476c522cafdb054a41"},"location":{"coordinates":[-73.78913969999999,40.7122951],"type":"Point"},"name":"Para Ti Colombia Con Sabo"} +,{"_id":{"$oid":"55cba2476c522cafdb054a42"},"location":{"coordinates":[-73.9793564,40.7589426],"type":"Point"},"name":"Hale \u0026 Hearty Soups"} +,{"_id":{"$oid":"55cba2476c522cafdb054a43"},"location":{"coordinates":[-73.97705599999999,40.752998],"type":"Point"},"name":"Hale \u0026 Hearty Soups"} +,{"_id":{"$oid":"55cba2476c522cafdb054a44"},"location":{"coordinates":[-73.91485519999999,40.76442369999999],"type":"Point"},"name":"Sampan Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054a45"},"location":{"coordinates":[-73.9877377,40.7210244],"type":"Point"},"name":"Pianos"} +,{"_id":{"$oid":"55cba2476c522cafdb054a46"},"location":{"coordinates":[-73.9277011,40.6521334],"type":"Point"},"name":"New Hong Kong Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb054a47"},"location":{"coordinates":[-73.99099149999999,40.7499318],"type":"Point"},"name":"Hotel Pennsylvania"} +,{"_id":{"$oid":"55cba2476c522cafdb054a48"},"location":{"coordinates":[-74.1278913,40.5755285],"type":"Point"},"name":"Classic Pizza \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054a49"},"location":{"coordinates":[-73.99243539999999,40.7254802],"type":"Point"},"name":"Agozar"} +,{"_id":{"$oid":"55cba2476c522cafdb054a4a"},"location":{"coordinates":[-73.79363339999999,40.7385154],"type":"Point"},"name":"Arby'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054a4b"},"location":{"coordinates":[-73.9649876,40.64066830000001],"type":"Point"},"name":"New Neighbor Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054a4c"},"location":{"coordinates":[-73.9027065,40.6802437],"type":"Point"},"name":"Popeyes Chicken \u0026 Biscuits"} +,{"_id":{"$oid":"55cba2476c522cafdb054a4d"},"location":{"coordinates":[-73.9838661,40.7214228],"type":"Point"},"name":"Sunshine Cinema"} +,{"_id":{"$oid":"55cba2476c522cafdb054a4e"},"location":{"coordinates":[-92.7226963,41.7461352],"type":"Point"},"name":"Jimmys American Grill \u0026 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054a4f"},"location":{"coordinates":[-73.97450649999999,40.7579878],"type":"Point"},"name":"Sushiann"} +,{"_id":{"$oid":"55cba2476c522cafdb054a50"},"location":{"coordinates":[-73.926917,40.771502],"type":"Point"},"name":"Renaissance"} +,{"_id":{"$oid":"55cba2476c522cafdb054a51"},"location":{"coordinates":[-73.9747101,40.6321325],"type":"Point"},"name":"Cafe K"} +,{"_id":{"$oid":"55cba2476c522cafdb054a52"},"location":{"coordinates":[-73.98833510000001,40.7596624],"type":"Point"},"name":"A Slice Of New York"} +,{"_id":{"$oid":"55cba2476c522cafdb054a53"},"location":{"coordinates":[-74.0077498,40.7169449],"type":"Point"},"name":"The Odeon"} +,{"_id":{"$oid":"55cba2476c522cafdb054a54"},"location":{"coordinates":[-73.9832349,40.72103],"type":"Point"},"name":"Parkside Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb054a55"},"location":{"coordinates":[-73.985433,40.74574],"type":"Point"},"name":"Ravagh Persian Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb054a56"},"location":{"coordinates":[-73.86931799999999,40.651444],"type":"Point"},"name":"Olive Garden Italian Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054a57"},"location":{"coordinates":[-73.94780399999999,40.782703],"type":"Point"},"name":"Nick'S Restaurant Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb054a58"},"location":{"coordinates":[-73.946996,40.779584],"type":"Point"},"name":"Pio Pio Express"} +,{"_id":{"$oid":"55cba2476c522cafdb054a59"},"location":{"coordinates":[-73.9680336,40.7589148],"type":"Point"},"name":"P.J. Clarke'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054a5a"},"location":{"coordinates":[-73.8570022,40.8935097],"type":"Point"},"name":"Joe'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054a5b"},"location":{"coordinates":[-73.97377469999999,40.7598045],"type":"Point"},"name":"Europa Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054a5c"},"location":{"coordinates":[-73.96856559999999,40.6932772],"type":"Point"},"name":"Connecticut Muffin"} +,{"_id":{"$oid":"55cba2476c522cafdb054a5d"},"location":{"coordinates":[-73.989662,40.7527648],"type":"Point"},"name":"Cosi"} +,{"_id":{"$oid":"55cba2476c522cafdb054a5e"},"location":{"coordinates":[-73.95612299999999,40.717611],"type":"Point"},"name":"Fada"} +,{"_id":{"$oid":"55cba2476c522cafdb054a5f"},"location":{"coordinates":[-73.8799185,40.7478161],"type":"Point"},"name":"El Pequeno Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb054a60"},"location":{"coordinates":[-73.9174237,40.76524939999999],"type":"Point"},"name":"Avenue Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054a61"},"location":{"coordinates":[-73.9961543,40.7601242],"type":"Point"},"name":"Broadway Deli \u0026 Bagel'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054a62"},"location":{"coordinates":[-73.98103189999999,40.78070659999999],"type":"Point"},"name":"Viand Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054a63"},"location":{"coordinates":[-73.99414039999999,40.7138356],"type":"Point"},"name":"88 Palace Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054a64"},"location":{"coordinates":[-74.0091255,40.720799],"type":"Point"},"name":"Zoie'S Cafe And Delicatessen"} +,{"_id":{"$oid":"55cba2476c522cafdb054a65"},"location":{"coordinates":[-73.976112,40.786714],"type":"Point"},"name":"Celeste"} +,{"_id":{"$oid":"55cba2476c522cafdb054a66"},"location":{"coordinates":[-74.0011067,40.7365117],"type":"Point"},"name":"Fiddlesticks"} +,{"_id":{"$oid":"55cba2476c522cafdb054a67"},"location":{"coordinates":[-73.984917,40.7508297],"type":"Point"},"name":"Frankie \u0026 Johnnie'S Steakhouse"} +,{"_id":{"$oid":"55cba2476c522cafdb054a68"},"location":{"coordinates":[-73.8931363,40.7275365],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb054a69"},"location":{"coordinates":[-73.901431,40.855905],"type":"Point"},"name":"Popeyes Chicken \u0026 Biscuits"} +,{"_id":{"$oid":"55cba2476c522cafdb054a6a"},"location":{"coordinates":[-73.94707989999999,40.7847818],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb054a6b"},"location":{"coordinates":[-73.8324571,40.6839898],"type":"Point"},"name":"New Chinese Garden Of Guyana"} +,{"_id":{"$oid":"55cba2476c522cafdb054a6c"},"location":{"coordinates":[-74.16251799999999,40.5291179],"type":"Point"},"name":"Mike'S Place"} +,{"_id":{"$oid":"55cba2476c522cafdb054a6d"},"location":{"coordinates":[-73.9768121,40.7507385],"type":"Point"},"name":"Cafe Metro"} +,{"_id":{"$oid":"55cba2476c522cafdb054a6e"},"location":{"coordinates":[-74.0033788,40.7398291],"type":"Point"},"name":"Istanbul Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb054a6f"},"location":{"coordinates":[-73.8670844,40.8984987],"type":"Point"},"name":"Rambling House"} +,{"_id":{"$oid":"55cba2476c522cafdb054a70"},"location":{"coordinates":[-73.96299309999999,40.7742972],"type":"Point"},"name":"Hotel Carlyle Employee Cafeteria"} +,{"_id":{"$oid":"55cba2476c522cafdb054a71"},"location":{"coordinates":[-73.840773,40.6900203],"type":"Point"},"name":"Luigi'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054a72"},"location":{"coordinates":[-73.9218903,40.689058],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054a73"},"location":{"coordinates":[-74.01014839999999,40.7086662],"type":"Point"},"name":"Brown Brothers Cafeteria"} +,{"_id":{"$oid":"55cba2476c522cafdb054a74"},"location":{"coordinates":[-73.91179799999999,40.6367255],"type":"Point"},"name":"De Islands"} +,{"_id":{"$oid":"55cba2476c522cafdb054a75"},"location":{"coordinates":[-73.9578598,40.6942064],"type":"Point"},"name":"Ganni'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb054a76"},"location":{"coordinates":[-73.96912200000001,40.639138],"type":"Point"},"name":"Visions Cocktail Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb054a77"},"location":{"coordinates":[-73.78965070000001,40.7069809],"type":"Point"},"name":"Kassim'S Bakery \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054a78"},"location":{"coordinates":[-73.9803757,40.7430748],"type":"Point"},"name":"The Hill"} +,{"_id":{"$oid":"55cba2476c522cafdb054a79"},"location":{"coordinates":[-73.97248189999999,40.7861614],"type":"Point"},"name":"Pizza Pete'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054a7a"},"location":{"coordinates":[-73.92687169999999,40.8642916],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb054a7b"},"location":{"coordinates":[-73.967524,40.752579],"type":"Point"},"name":"The World Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054a7c"},"location":{"coordinates":[-74.00191559999999,40.7264308],"type":"Point"},"name":"Spice"} +,{"_id":{"$oid":"55cba2476c522cafdb054a7d"},"location":{"coordinates":[-73.9689253,40.7914849],"type":"Point"},"name":"Mila Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054a7e"},"location":{"coordinates":[-73.9755346,40.7496967],"type":"Point"},"name":"Cafe O'"} +,{"_id":{"$oid":"55cba2476c522cafdb054a7f"},"location":{"coordinates":[-73.961088,40.7686791],"type":"Point"},"name":"Caffe Bacio"} +,{"_id":{"$oid":"55cba2476c522cafdb054a80"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"Jikji Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054a81"},"location":{"coordinates":[-74.1917203,40.5326206],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb054a82"},"location":{"coordinates":[-73.99645319999999,40.7364462],"type":"Point"},"name":"The New School"} +,{"_id":{"$oid":"55cba2476c522cafdb054a83"},"location":{"coordinates":[-73.98883339999999,40.7377915],"type":"Point"},"name":"Grand Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054a84"},"location":{"coordinates":[-73.998521,40.7368818],"type":"Point"},"name":"Chartwells"} +,{"_id":{"$oid":"55cba2476c522cafdb054a85"},"location":{"coordinates":[-73.99750829999999,40.7352563],"type":"Point"},"name":"Chartwells"} +,{"_id":{"$oid":"55cba2476c522cafdb054a86"},"location":{"coordinates":[-74.0097971,40.7044862],"type":"Point"},"name":"Financier Patisserie"} +,{"_id":{"$oid":"55cba2476c522cafdb054a87"},"location":{"coordinates":[-73.9218015,40.6603067],"type":"Point"},"name":"Happy Garden Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054a88"},"location":{"coordinates":[-73.8311942,40.8685791],"type":"Point"},"name":"Popeyes Chicken \u0026 Biscuits"} +,{"_id":{"$oid":"55cba2476c522cafdb054a89"},"location":{"coordinates":[-73.9759768,40.6872512],"type":"Point"},"name":"Scopello"} +,{"_id":{"$oid":"55cba2476c522cafdb054a8a"},"location":{"coordinates":[-73.73608399999999,40.674133],"type":"Point"},"name":"Twin Ponds Bakery/Upper Deck Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb054a8b"},"location":{"coordinates":[-73.993543,40.762758],"type":"Point"},"name":"Tulcingo Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054a8c"},"location":{"coordinates":[-73.9812048,40.7543438],"type":"Point"},"name":"Simply Natural"} +,{"_id":{"$oid":"55cba2476c522cafdb054a8d"},"location":{"coordinates":[-74.01174999999999,40.70214],"type":"Point"},"name":"Fried Frank Cafeteria"} +,{"_id":{"$oid":"55cba2476c522cafdb054a8e"},"location":{"coordinates":[-73.9884908,40.7270128],"type":"Point"},"name":"Mermaid Inn"} +,{"_id":{"$oid":"55cba2476c522cafdb054a8f"},"location":{"coordinates":[-92.7272868,41.7461408],"type":"Point"},"name":"Cosi"} +,{"_id":{"$oid":"55cba2476c522cafdb054a90"},"location":{"coordinates":[-73.982112,40.73968600000001],"type":"Point"},"name":"Baluchi'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054a91"},"location":{"coordinates":[-73.8257521,40.74574339999999],"type":"Point"},"name":"Yeh'S Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb054a92"},"location":{"coordinates":[-73.98630899999999,40.669523],"type":"Point"},"name":"Smith Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb054a93"},"location":{"coordinates":[-73.898455,40.8609147],"type":"Point"},"name":"Mom'S Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb054a94"},"location":{"coordinates":[-73.81545299999999,40.689328],"type":"Point"},"name":"Beni'S Restaurant \u0026 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054a95"},"location":{"coordinates":[-73.986953,40.74833],"type":"Point"},"name":"Jack Demsey'S Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb054a96"},"location":{"coordinates":[-73.88048669999999,40.7563362],"type":"Point"},"name":"El Paisa Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054a97"},"location":{"coordinates":[-73.9543666,40.7426623],"type":"Point"},"name":"P. J. Leahy'S Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb054a98"},"location":{"coordinates":[-73.805741,40.697759],"type":"Point"},"name":"A. Churrasqueira Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054a99"},"location":{"coordinates":[-73.9825022,40.7652098],"type":"Point"},"name":"Random House"} +,{"_id":{"$oid":"55cba2476c522cafdb054a9a"},"location":{"coordinates":[-73.873818,40.741985],"type":"Point"},"name":"La Monita Juice Snack Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054a9b"},"location":{"coordinates":[-73.97996289999999,40.7460581],"type":"Point"},"name":"Penelope"} +,{"_id":{"$oid":"55cba2476c522cafdb054a9c"},"location":{"coordinates":[-73.9889144,40.7580412],"type":"Point"},"name":"Famous Famiglia Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054a9d"},"location":{"coordinates":[-74.00536090000001,40.708721],"type":"Point"},"name":"Ruben'S Empanadas"} +,{"_id":{"$oid":"55cba2476c522cafdb054a9e"},"location":{"coordinates":[-73.938746,40.8460486],"type":"Point"},"name":"Hua Yung Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb054a9f"},"location":{"coordinates":[-73.988705,40.769381],"type":"Point"},"name":"Jake'S Saloon"} +,{"_id":{"$oid":"55cba2476c522cafdb054aa0"},"location":{"coordinates":[-74.07683999999999,40.626335],"type":"Point"},"name":"Garibaldi Deli Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054aa1"},"location":{"coordinates":[-73.91647739999999,40.8414854],"type":"Point"},"name":"Estrella Bar \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054aa2"},"location":{"coordinates":[-73.9777507,40.7566005],"type":"Point"},"name":"Cafe Alice"} +,{"_id":{"$oid":"55cba2476c522cafdb054aa3"},"location":{"coordinates":[-73.8372546,40.8402773],"type":"Point"},"name":"The Tremont Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb054aa4"},"location":{"coordinates":[-73.9294299,40.6793054],"type":"Point"},"name":"Two Scoops Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054aa5"},"location":{"coordinates":[-73.95350599999999,40.806289],"type":"Point"},"name":"Moca Bar \u0026 Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb054aa6"},"location":{"coordinates":[-73.83597,40.7690669],"type":"Point"},"name":"King'S Chef"} +,{"_id":{"$oid":"55cba2476c522cafdb054aa7"},"location":{"coordinates":[-73.9902141,40.7330887],"type":"Point"},"name":"Pie"} +,{"_id":{"$oid":"55cba2476c522cafdb054aa8"},"location":{"coordinates":[-73.992471,40.7511286],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb054aa9"},"location":{"coordinates":[-73.98089399999999,40.7331356],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb054aaa"},"location":{"coordinates":[-73.9749464,40.68035270000001],"type":"Point"},"name":"Sugarcane"} +,{"_id":{"$oid":"55cba2476c522cafdb054aab"},"location":{"coordinates":[-73.8233477,40.7648968],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054aac"},"location":{"coordinates":[-73.987848,40.760824],"type":"Point"},"name":"Blarney Stone Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb054aad"},"location":{"coordinates":[-74.00702179999999,40.7397342],"type":"Point"},"name":"Cielo"} +,{"_id":{"$oid":"55cba2476c522cafdb054aae"},"location":{"coordinates":[-73.99318819999999,40.7217158],"type":"Point"},"name":"Katra"} +,{"_id":{"$oid":"55cba2476c522cafdb054aaf"},"location":{"coordinates":[-73.83030959999999,40.7090661],"type":"Point"},"name":"Great Taystee Gardens Chinese Food"} +,{"_id":{"$oid":"55cba2476c522cafdb054ab0"},"location":{"coordinates":[-74.0145586,40.6345774],"type":"Point"},"name":"Dunkin Donuts \u0026 Baskin Robins"} +,{"_id":{"$oid":"55cba2476c522cafdb054ab1"},"location":{"coordinates":[-74.009407,40.7088048],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb054ab2"},"location":{"coordinates":[-73.97713159999999,40.6719848],"type":"Point"},"name":"Pita Pan"} +,{"_id":{"$oid":"55cba2476c522cafdb054ab3"},"location":{"coordinates":[-74.01448359999999,40.7096119],"type":"Point"},"name":"Banquet Kitchen (Marriott)"} +,{"_id":{"$oid":"55cba2476c522cafdb054ab4"},"location":{"coordinates":[-73.97331679999999,40.75482770000001],"type":"Point"},"name":"Raffles"} +,{"_id":{"$oid":"55cba2476c522cafdb054ab5"},"location":{"coordinates":[-73.9808565,40.7810244],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb054ab6"},"location":{"coordinates":[-73.9739992,40.7623675],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb054ab7"},"location":{"coordinates":[-74.01448359999999,40.7096119],"type":"Point"},"name":"Starbucks/New York Marriott Financial Center"} +,{"_id":{"$oid":"55cba2476c522cafdb054ab8"},"location":{"coordinates":[-73.87424299999999,40.742345],"type":"Point"},"name":"Domino'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054ab9"},"location":{"coordinates":[-73.7899255,40.7004685],"type":"Point"},"name":"Domino'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054aba"},"location":{"coordinates":[-73.8885355,40.8541665],"type":"Point"},"name":"Mario'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054abb"},"location":{"coordinates":[-73.8747611,40.7353074],"type":"Point"},"name":"Red Lobster"} +,{"_id":{"$oid":"55cba2476c522cafdb054abc"},"location":{"coordinates":[-73.80386779999999,40.7612647],"type":"Point"},"name":"Somoon"} +,{"_id":{"$oid":"55cba2476c522cafdb054abd"},"location":{"coordinates":[-73.94333689999999,40.8156297],"type":"Point"},"name":"Cafe 22"} +,{"_id":{"$oid":"55cba2476c522cafdb054abe"},"location":{"coordinates":[-73.962486,40.598411],"type":"Point"},"name":"Taam Mevorach"} +,{"_id":{"$oid":"55cba2476c522cafdb054abf"},"location":{"coordinates":[-73.98232399999999,40.6824901],"type":"Point"},"name":"New Sing Wah Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb054ac0"},"location":{"coordinates":[-73.8743553,40.75810269999999],"type":"Point"},"name":"Domino'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054ac1"},"location":{"coordinates":[-73.92330419999999,40.83573620000001],"type":"Point"},"name":"Xin Hing Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054ac2"},"location":{"coordinates":[-73.99693520000001,40.6618321],"type":"Point"},"name":"China Delight"} +,{"_id":{"$oid":"55cba2476c522cafdb054ac3"},"location":{"coordinates":[-74.0031818,40.7246842],"type":"Point"},"name":"Hiroko'S Place"} +,{"_id":{"$oid":"55cba2476c522cafdb054ac4"},"location":{"coordinates":[-73.99709,40.763015],"type":"Point"},"name":"The Penthouse Executive Club/Robert'S Steakhouse"} +,{"_id":{"$oid":"55cba2476c522cafdb054ac5"},"location":{"coordinates":[-73.98135049999999,40.7734944],"type":"Point"},"name":"Europan Bakery And Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054ac6"},"location":{"coordinates":[-74.00381999999999,40.7424579],"type":"Point"},"name":"La Bottega"} +,{"_id":{"$oid":"55cba2476c522cafdb054ac7"},"location":{"coordinates":[-73.9917217,40.75636799999999],"type":"Point"},"name":"Croton Reservoir Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb054ac8"},"location":{"coordinates":[-73.9800659,40.75591],"type":"Point"},"name":"Re Sette"} +,{"_id":{"$oid":"55cba2476c522cafdb054ac9"},"location":{"coordinates":[-73.9122443,40.6991777],"type":"Point"},"name":"Cibao Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054aca"},"location":{"coordinates":[-73.9848986,40.7681686],"type":"Point"},"name":"Sky Terrace Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054acb"},"location":{"coordinates":[-73.98705989999999,40.7635179],"type":"Point"},"name":"Larry Flynt'S Hustler Club"} +,{"_id":{"$oid":"55cba2476c522cafdb054acc"},"location":{"coordinates":[-73.97721779999999,40.7628745],"type":"Point"},"name":"Cassidy'S Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb054acd"},"location":{"coordinates":[-74.0080115,40.6476595],"type":"Point"},"name":"La Gran Via Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb054ace"},"location":{"coordinates":[-73.9853258,40.767942],"type":"Point"},"name":"Half And Half"} +,{"_id":{"$oid":"55cba2476c522cafdb054acf"},"location":{"coordinates":[-73.9853258,40.767942],"type":"Point"},"name":"Library Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054ad0"},"location":{"coordinates":[-73.9681967,40.8027629],"type":"Point"},"name":"107 West Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054ad1"},"location":{"coordinates":[-73.975526,40.68380579999999],"type":"Point"},"name":"Bony'S Bagels"} +,{"_id":{"$oid":"55cba2476c522cafdb054ad2"},"location":{"coordinates":[-74.00484329999999,40.7310188],"type":"Point"},"name":"Snack Taverna"} +,{"_id":{"$oid":"55cba2476c522cafdb054ad3"},"location":{"coordinates":[-73.8332597,40.8632002],"type":"Point"},"name":"Chuck E Cheese'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054ad4"},"location":{"coordinates":[-73.9978275,40.72993659999999],"type":"Point"},"name":"New York University - Kimmel Student Center Cafeteria"} +,{"_id":{"$oid":"55cba2476c522cafdb054ad5"},"location":{"coordinates":[-73.9978275,40.72993659999999],"type":"Point"},"name":"New York University - Kimmel Student Center (Catering Kitchen)"} +,{"_id":{"$oid":"55cba2476c522cafdb054ad6"},"location":{"coordinates":[-73.968428,40.754453],"type":"Point"},"name":"The Press Box"} +,{"_id":{"$oid":"55cba2476c522cafdb054ad7"},"location":{"coordinates":[-73.93415700000001,40.651817],"type":"Point"},"name":"Best-Bites Restaurant \u0026 Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb054ad8"},"location":{"coordinates":[-73.9584339,40.81088889999999],"type":"Point"},"name":"Max Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054ad9"},"location":{"coordinates":[-73.97682069999999,40.7631825],"type":"Point"},"name":"Printon 56"} +,{"_id":{"$oid":"55cba2476c522cafdb054ada"},"location":{"coordinates":[-73.78897189999999,40.7578327],"type":"Point"},"name":"Yiyi Rang"} +,{"_id":{"$oid":"55cba2476c522cafdb054adb"},"location":{"coordinates":[-73.907212,40.85438509999999],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054adc"},"location":{"coordinates":[-73.98735789999999,40.7022521],"type":"Point"},"name":"Superfine"} +,{"_id":{"$oid":"55cba2476c522cafdb054add"},"location":{"coordinates":[-73.95073219999999,40.7111946],"type":"Point"},"name":"Redd'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054ade"},"location":{"coordinates":[-73.9786838,40.7294475],"type":"Point"},"name":"Otto'S Shrunken Head"} +,{"_id":{"$oid":"55cba2476c522cafdb054adf"},"location":{"coordinates":[-74.0004782,40.7181456],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb054ae0"},"location":{"coordinates":[-73.9819567,40.7471609],"type":"Point"},"name":"Gigi Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054ae1"},"location":{"coordinates":[-73.98360219999999,40.7510744],"type":"Point"},"name":"Blaggard'S Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb054ae2"},"location":{"coordinates":[-73.99050510000001,40.6870239],"type":"Point"},"name":"Britain Indian Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054ae3"},"location":{"coordinates":[-73.98970469999999,40.743112],"type":"Point"},"name":"40/40 Club"} +,{"_id":{"$oid":"55cba2476c522cafdb054ae4"},"location":{"coordinates":[-73.9545988,40.8212513],"type":"Point"},"name":"New Good Taste Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054ae5"},"location":{"coordinates":[-74.0095256,40.7107975],"type":"Point"},"name":"B \u0026 Co Baguettes \u0026 Company"} +,{"_id":{"$oid":"55cba2476c522cafdb054ae6"},"location":{"coordinates":[-73.8665421,40.6755027],"type":"Point"},"name":"Popeyes Chicken \u0026 Biscuits"} +,{"_id":{"$oid":"55cba2476c522cafdb054ae7"},"location":{"coordinates":[-73.83429840000001,40.6831865],"type":"Point"},"name":"3 Sisters' \u0026 Shanta'S Restaurant \u0026 Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb054ae8"},"location":{"coordinates":[-73.96016,40.690584],"type":"Point"},"name":"Tony'S Pizza Spot"} +,{"_id":{"$oid":"55cba2476c522cafdb054ae9"},"location":{"coordinates":[-74.00450119999999,40.7417806],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb054aea"},"location":{"coordinates":[-73.987196,40.7564857],"type":"Point"},"name":"Europa Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054aeb"},"location":{"coordinates":[-73.9938754,40.7586513],"type":"Point"},"name":"Little Shubert Theatre"} +,{"_id":{"$oid":"55cba2476c522cafdb054aec"},"location":{"coordinates":[-73.8977485,40.89155119999999],"type":"Point"},"name":"Santa Fe Grill \u0026 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054aed"},"location":{"coordinates":[-73.8381575,40.5809871],"type":"Point"},"name":"Kam Tung Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054aee"},"location":{"coordinates":[-73.9822459,40.76189919999999],"type":"Point"},"name":"Europa Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054aef"},"location":{"coordinates":[-73.8173876,40.818701],"type":"Point"},"name":"Frank'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054af0"},"location":{"coordinates":[-73.916297,40.702171],"type":"Point"},"name":"Calibella Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb054af1"},"location":{"coordinates":[-73.973626,40.7535539],"type":"Point"},"name":"Joy Curry \u0026 Tandoor"} +,{"_id":{"$oid":"55cba2476c522cafdb054af2"},"location":{"coordinates":[-73.9716742,40.7584999],"type":"Point"},"name":"Brasserie"} +,{"_id":{"$oid":"55cba2476c522cafdb054af3"},"location":{"coordinates":[-74.00363779999999,40.7161361],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb054af4"},"location":{"coordinates":[-74.106072,40.630363],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb054af5"},"location":{"coordinates":[-73.98952609999999,40.7507917],"type":"Point"},"name":"Cucina \u0026 Co"} +,{"_id":{"$oid":"55cba2476c522cafdb054af6"},"location":{"coordinates":[-73.9225428,40.6773249],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054af7"},"location":{"coordinates":[-73.9789792,40.7284492],"type":"Point"},"name":"B-Side"} +,{"_id":{"$oid":"55cba2476c522cafdb054af8"},"location":{"coordinates":[-73.9932303,40.75105970000001],"type":"Point"},"name":"Nick \u0026 Stef'S Steakhouse"} +,{"_id":{"$oid":"55cba2476c522cafdb054af9"},"location":{"coordinates":[-73.99094339999999,40.71476],"type":"Point"},"name":"Skal Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054afa"},"location":{"coordinates":[-73.9704345,40.7550546],"type":"Point"},"name":"Pampano"} +,{"_id":{"$oid":"55cba2476c522cafdb054afb"},"location":{"coordinates":[-73.9161079,40.6770127],"type":"Point"},"name":"Dunkin' Donuts, Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb054afc"},"location":{"coordinates":[-73.9165397,40.6198201],"type":"Point"},"name":"Mill Basin Bagel Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054afd"},"location":{"coordinates":[-73.823009,40.6839159],"type":"Point"},"name":"Popeyes Chicken \u0026 Biscuits"} +,{"_id":{"$oid":"55cba2476c522cafdb054afe"},"location":{"coordinates":[-73.89807160000001,40.7088587],"type":"Point"},"name":"European Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054aff"},"location":{"coordinates":[-73.999915,40.7266115],"type":"Point"},"name":"Dos Caminos Soho"} +,{"_id":{"$oid":"55cba2476c522cafdb054b00"},"location":{"coordinates":[-73.8491683,40.7599407],"type":"Point"},"name":"World Fair Marina Restaurant \u0026 Banquet"} +,{"_id":{"$oid":"55cba2476c522cafdb054b01"},"location":{"coordinates":[-73.8668038,40.8712861],"type":"Point"},"name":"K \u0026 Q Restaruant"} +,{"_id":{"$oid":"55cba2476c522cafdb054b02"},"location":{"coordinates":[-73.8791397,40.8816195],"type":"Point"},"name":"V.I.P.'S Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054b03"},"location":{"coordinates":[-73.97696479999999,40.6810951],"type":"Point"},"name":"Blue Sky Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb054b04"},"location":{"coordinates":[-73.98978799999999,40.721203],"type":"Point"},"name":"People"} +,{"_id":{"$oid":"55cba2476c522cafdb054b05"},"location":{"coordinates":[-73.8513981,40.8344605],"type":"Point"},"name":"China One"} +,{"_id":{"$oid":"55cba2476c522cafdb054b06"},"location":{"coordinates":[-73.9920178,40.69516429999999],"type":"Point"},"name":"Wd-50"} +,{"_id":{"$oid":"55cba2476c522cafdb054b07"},"location":{"coordinates":[-73.98137109999999,40.7476039],"type":"Point"},"name":"Franchia"} +,{"_id":{"$oid":"55cba2476c522cafdb054b08"},"location":{"coordinates":[-73.96766149999999,40.6837999],"type":"Point"},"name":"New Country House"} +,{"_id":{"$oid":"55cba2476c522cafdb054b09"},"location":{"coordinates":[-73.985646,40.61640939999999],"type":"Point"},"name":"Europa Bakery \u0026 Pastry Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb054b0a"},"location":{"coordinates":[-73.9191268,40.6303261],"type":"Point"},"name":"Golden Krust Caribbean Bakery \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb054b0b"},"location":{"coordinates":[-74.0085357,40.70620539999999],"type":"Point"},"name":"Deutsche Bank"} +,{"_id":{"$oid":"55cba2476c522cafdb054b0c"},"location":{"coordinates":[-73.9867043,40.6932639],"type":"Point"},"name":"National Grid"} +,{"_id":{"$oid":"55cba2476c522cafdb054b0d"},"location":{"coordinates":[-73.9777004,40.7587372],"type":"Point"},"name":"Summer Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb054b0e"},"location":{"coordinates":[-73.98528999999999,40.728169],"type":"Point"},"name":"Paquitos"} +,{"_id":{"$oid":"55cba2476c522cafdb054b0f"},"location":{"coordinates":[-73.85586219999999,40.8559515],"type":"Point"},"name":"Fresh Tortillas \u0026 Japanese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054b10"},"location":{"coordinates":[-73.814121,40.7875934],"type":"Point"},"name":"Salerno Pastry Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054b11"},"location":{"coordinates":[-73.9845338,40.7203841],"type":"Point"},"name":"Thelma On Clinton"} +,{"_id":{"$oid":"55cba2476c522cafdb054b12"},"location":{"coordinates":[-73.9780165,40.7582432],"type":"Point"},"name":"Rock Center Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054b13"},"location":{"coordinates":[-73.9785267,40.75829470000001],"type":"Point"},"name":"Sea Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb054b14"},"location":{"coordinates":[-73.97480159999999,40.76366770000001],"type":"Point"},"name":"Brasserie 8 1/2"} +,{"_id":{"$oid":"55cba2476c522cafdb054b15"},"location":{"coordinates":[-73.98919099999999,40.736902],"type":"Point"},"name":"Naples 45 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054b16"},"location":{"coordinates":[-73.98919099999999,40.736902],"type":"Point"},"name":"Cucina \u0026 Company"} +,{"_id":{"$oid":"55cba2476c522cafdb054b17"},"location":{"coordinates":[-73.9598132,40.6539719],"type":"Point"},"name":"Bamboo Express Restaurant \u0026 Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb054b18"},"location":{"coordinates":[-73.97656909999999,40.7535209],"type":"Point"},"name":"Cafe Centro"} +,{"_id":{"$oid":"55cba2476c522cafdb054b19"},"location":{"coordinates":[-73.96954819999999,40.7971965],"type":"Point"},"name":"Cheesy Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054b1a"},"location":{"coordinates":[-74.01482500000002,40.630632],"type":"Point"},"name":"Spartan Souvlaki"} +,{"_id":{"$oid":"55cba2476c522cafdb054b1b"},"location":{"coordinates":[-122.3870832,37.7606086],"type":"Point"},"name":"Domino'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054b1c"},"location":{"coordinates":[-73.9939727,40.7146718],"type":"Point"},"name":"Ka Wah Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb054b1d"},"location":{"coordinates":[-73.974643,40.597046],"type":"Point"},"name":"Joe'S Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb054b1e"},"location":{"coordinates":[-73.9308765,40.74524479999999],"type":"Point"},"name":"Coffee Shop Beer Sandwiches"} +,{"_id":{"$oid":"55cba2476c522cafdb054b1f"},"location":{"coordinates":[-73.802357,40.760627],"type":"Point"},"name":"Mani Mani Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054b20"},"location":{"coordinates":[-73.9552271,40.7343059],"type":"Point"},"name":"Tommy'S Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb054b21"},"location":{"coordinates":[-73.96943759999999,40.7572813],"type":"Point"},"name":"Gourmet 53"} +,{"_id":{"$oid":"55cba2476c522cafdb054b22"},"location":{"coordinates":[-73.88318319999999,40.7496447],"type":"Point"},"name":"Pollos A La Brasa Mario"} +,{"_id":{"$oid":"55cba2476c522cafdb054b23"},"location":{"coordinates":[-73.939948,40.797536],"type":"Point"},"name":"Kahlua'S Cafe \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054b24"},"location":{"coordinates":[-73.97852,40.755251],"type":"Point"},"name":"Eamonn'S Bar And Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb054b25"},"location":{"coordinates":[-73.9793564,40.7589426],"type":"Point"},"name":"Yummy Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb054b26"},"location":{"coordinates":[-73.976451,40.7518315],"type":"Point"},"name":"Eata Pita"} +,{"_id":{"$oid":"55cba2476c522cafdb054b27"},"location":{"coordinates":[-73.9758689,40.7570036],"type":"Point"},"name":"Bread \u0026 Company"} +,{"_id":{"$oid":"55cba2476c522cafdb054b28"},"location":{"coordinates":[-73.8983258,40.67809099999999],"type":"Point"},"name":"Dunkin' Donuts, Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb054b29"},"location":{"coordinates":[-73.8699847,40.6509132],"type":"Point"},"name":"Red Lobster"} +,{"_id":{"$oid":"55cba2476c522cafdb054b2a"},"location":{"coordinates":[-73.98339829999999,40.7239094],"type":"Point"},"name":"In Vino"} +,{"_id":{"$oid":"55cba2476c522cafdb054b2b"},"location":{"coordinates":[-74.00791699999999,40.716593],"type":"Point"},"name":"Takahachi Tribeca"} +,{"_id":{"$oid":"55cba2476c522cafdb054b2c"},"location":{"coordinates":[-74.00424699999999,40.7236143],"type":"Point"},"name":"Mooncake Foods"} +,{"_id":{"$oid":"55cba2476c522cafdb054b2d"},"location":{"coordinates":[-73.8491481,40.7327145],"type":"Point"},"name":"Bagelicious"} +,{"_id":{"$oid":"55cba2476c522cafdb054b2e"},"location":{"coordinates":[-73.9027904,40.831415],"type":"Point"},"name":"Fulton Ave Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054b2f"},"location":{"coordinates":[-92.7224099,41.7461242],"type":"Point"},"name":"Guy \u0026 Gallard"} +,{"_id":{"$oid":"55cba2476c522cafdb054b30"},"location":{"coordinates":[-73.97737130000002,40.7515595],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb054b31"},"location":{"coordinates":[-73.9869279,40.7640466],"type":"Point"},"name":"Therapy"} +,{"_id":{"$oid":"55cba2476c522cafdb054b32"},"location":{"coordinates":[-74.0067882,40.7060144],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb054b33"},"location":{"coordinates":[-73.978498,40.776961],"type":"Point"},"name":"Le Pain Quotidien"} +,{"_id":{"$oid":"55cba2476c522cafdb054b34"},"location":{"coordinates":[-73.977761,40.750229],"type":"Point"},"name":"Blimpie"} +,{"_id":{"$oid":"55cba2476c522cafdb054b35"},"location":{"coordinates":[-73.9010311,40.8310108],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb054b36"},"location":{"coordinates":[-73.8958595,40.7541052],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb054b37"},"location":{"coordinates":[-73.9867428,40.6691015],"type":"Point"},"name":"La Villa"} +,{"_id":{"$oid":"55cba2476c522cafdb054b38"},"location":{"coordinates":[-73.8361941,40.6821637],"type":"Point"},"name":"Long Hing Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb054b39"},"location":{"coordinates":[-73.978256,40.782798],"type":"Point"},"name":"Emack \u0026 Bolio'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054b3a"},"location":{"coordinates":[-73.97831409999999,40.7576057],"type":"Point"},"name":"Cucina And Co."} +,{"_id":{"$oid":"55cba2476c522cafdb054b3b"},"location":{"coordinates":[-73.9178665,40.7809771],"type":"Point"},"name":"Agnanti Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054b3c"},"location":{"coordinates":[-73.9995414,40.6248077],"type":"Point"},"name":"China Royal"} +,{"_id":{"$oid":"55cba2476c522cafdb054b3d"},"location":{"coordinates":[-74.0062921,40.7444729],"type":"Point"},"name":"Star On 18Th Diner Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054b3e"},"location":{"coordinates":[-73.84516599999999,40.8462736],"type":"Point"},"name":"Eastchester Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054b3f"},"location":{"coordinates":[-73.9808681,40.7523419],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb054b40"},"location":{"coordinates":[-73.83116439999999,40.7137862],"type":"Point"},"name":"Bally Total Fitness"} +,{"_id":{"$oid":"55cba2476c522cafdb054b41"},"location":{"coordinates":[-73.95658929999999,40.7784846],"type":"Point"},"name":"Mimi'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054b42"},"location":{"coordinates":[-73.9360119,40.6371479],"type":"Point"},"name":"Farragut Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054b43"},"location":{"coordinates":[-73.98189700000002,40.7445947],"type":"Point"},"name":"Umi Sushi Japanese Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb054b44"},"location":{"coordinates":[-74.11508669999999,40.5733609],"type":"Point"},"name":"Bagels On The Lane"} +,{"_id":{"$oid":"55cba2476c522cafdb054b45"},"location":{"coordinates":[-73.97906739999999,40.764092],"type":"Point"},"name":"City Center"} +,{"_id":{"$oid":"55cba2476c522cafdb054b46"},"location":{"coordinates":[-73.9495365,40.6520059],"type":"Point"},"name":"Immaculee Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb054b47"},"location":{"coordinates":[-73.9779721,40.6796949],"type":"Point"},"name":"Gorilla Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb054b48"},"location":{"coordinates":[-73.8495835,40.5783868],"type":"Point"},"name":"East Meets West"} +,{"_id":{"$oid":"55cba2476c522cafdb054b49"},"location":{"coordinates":[-74.0827953,40.57613509999999],"type":"Point"},"name":"Joe \u0026 John Toto'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054b4a"},"location":{"coordinates":[-73.9648709,40.8073298],"type":"Point"},"name":"M2M Mart"} +,{"_id":{"$oid":"55cba2476c522cafdb054b4b"},"location":{"coordinates":[-73.993163,40.74007],"type":"Point"},"name":"Flatiron Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb054b4c"},"location":{"coordinates":[-73.97794669999999,40.7484054],"type":"Point"},"name":"Rare Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb054b4d"},"location":{"coordinates":[-74.00052079999999,40.7333235],"type":"Point"},"name":"Joe"} +,{"_id":{"$oid":"55cba2476c522cafdb054b4e"},"location":{"coordinates":[-73.98879389999999,40.7194443],"type":"Point"},"name":"Kuma Inn"} +,{"_id":{"$oid":"55cba2476c522cafdb054b4f"},"location":{"coordinates":[-73.986863,40.71882],"type":"Point"},"name":"Lulu'S Nurse Bettie"} +,{"_id":{"$oid":"55cba2476c522cafdb054b50"},"location":{"coordinates":[-73.9092703,40.7521103],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb054b51"},"location":{"coordinates":[-73.8739659,40.7769271],"type":"Point"},"name":"Nysb"} +,{"_id":{"$oid":"55cba2476c522cafdb054b52"},"location":{"coordinates":[-73.7794049,40.6787259],"type":"Point"},"name":"The Door"} +,{"_id":{"$oid":"55cba2476c522cafdb054b53"},"location":{"coordinates":[-73.952384,40.586155],"type":"Point"},"name":"Delmar Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb054b54"},"location":{"coordinates":[-73.9748245,40.7911059],"type":"Point"},"name":"City Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb054b55"},"location":{"coordinates":[-74.00649949999999,40.7398326],"type":"Point"},"name":"Soho House"} +,{"_id":{"$oid":"55cba2476c522cafdb054b56"},"location":{"coordinates":[-73.98519780000001,40.7221462],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb054b57"},"location":{"coordinates":[-73.8739659,40.7769271],"type":"Point"},"name":"Jet Rock Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb054b58"},"location":{"coordinates":[-73.9920185,40.7345809],"type":"Point"},"name":"Bar 13"} +,{"_id":{"$oid":"55cba2476c522cafdb054b59"},"location":{"coordinates":[-73.995452,40.750028],"type":"Point"},"name":"Tempest Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054b5a"},"location":{"coordinates":[-73.926650,40.762809],"type":"Point"},"name":"Fratelli'S Market Place"} +,{"_id":{"$oid":"55cba2476c522cafdb054b5b"},"location":{"coordinates":[-73.9996977,40.6452763],"type":"Point"},"name":"Ba Xuyen"} +,{"_id":{"$oid":"55cba2476c522cafdb054b5c"},"location":{"coordinates":[-73.95597010000002,40.7143141],"type":"Point"},"name":"Spuyten Duyvul"} +,{"_id":{"$oid":"55cba2476c522cafdb054b5d"},"location":{"coordinates":[-73.9830374,40.760636],"type":"Point"},"name":"Hale \u0026 Hearty Soups"} +,{"_id":{"$oid":"55cba2476c522cafdb054b5e"},"location":{"coordinates":[-73.75260469999999,40.6040565],"type":"Point"},"name":"Corner Donut Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb054b5f"},"location":{"coordinates":[-73.9829,40.720935],"type":"Point"},"name":"El Maguey Y La Tuna"} +,{"_id":{"$oid":"55cba2476c522cafdb054b60"},"location":{"coordinates":[-73.85453079999999,40.8491916],"type":"Point"},"name":"Enrico'S Pastry Shop \u0026 Caffe"} +,{"_id":{"$oid":"55cba2476c522cafdb054b61"},"location":{"coordinates":[-74.0138182,40.6415097],"type":"Point"},"name":"El Sol Migueleno Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054b62"},"location":{"coordinates":[-73.87990909999999,40.7480778],"type":"Point"},"name":"Scorpion"} +,{"_id":{"$oid":"55cba2476c522cafdb054b63"},"location":{"coordinates":[-73.97267049999999,40.5797664],"type":"Point"},"name":"Eastern Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054b64"},"location":{"coordinates":[-73.9985481,40.7404798],"type":"Point"},"name":"Merchants Ny"} +,{"_id":{"$oid":"55cba2476c522cafdb054b65"},"location":{"coordinates":[-73.9265431,40.7655738],"type":"Point"},"name":"Kellys Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054b66"},"location":{"coordinates":[-73.9281163,40.6336165],"type":"Point"},"name":"Wendy'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054b67"},"location":{"coordinates":[-73.9629278,40.7791655],"type":"Point"},"name":"Metropolitan Museum Of Art"} +,{"_id":{"$oid":"55cba2476c522cafdb054b68"},"location":{"coordinates":[-73.9765819,40.7572029],"type":"Point"},"name":"Liberty Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb054b69"},"location":{"coordinates":[-73.989693,40.760276],"type":"Point"},"name":"Meson Sevilla Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054b6a"},"location":{"coordinates":[-73.939885,40.79940879999999],"type":"Point"},"name":"Pipo'S No 2 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054b6b"},"location":{"coordinates":[-73.9106254,40.7448391],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb054b6c"},"location":{"coordinates":[-73.722511,40.7614159],"type":"Point"},"name":"Saidy'S Cafe/Deepdale Gardens Community"} +,{"_id":{"$oid":"55cba2476c522cafdb054b6d"},"location":{"coordinates":[-73.96006229999999,40.6557787],"type":"Point"},"name":"Popeyes Chicken \u0026 Biscuits"} +,{"_id":{"$oid":"55cba2476c522cafdb054b6e"},"location":{"coordinates":[-73.82659559999999,40.7715643],"type":"Point"},"name":"Jk Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb054b6f"},"location":{"coordinates":[-73.9699438,40.7978173],"type":"Point"},"name":"Flor De Mayo Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054b70"},"location":{"coordinates":[-73.9084374,40.7132341],"type":"Point"},"name":"Rarytas Manor"} +,{"_id":{"$oid":"55cba2476c522cafdb054b71"},"location":{"coordinates":[-74.10290859999999,40.6310607],"type":"Point"},"name":"Cafe Milano"} +,{"_id":{"$oid":"55cba2476c522cafdb054b72"},"location":{"coordinates":[-74.1667278,40.5887574],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb054b73"},"location":{"coordinates":[-73.9888517,40.6882484],"type":"Point"},"name":"The Soul Spot"} +,{"_id":{"$oid":"55cba2476c522cafdb054b74"},"location":{"coordinates":[-73.8821102,40.8685226],"type":"Point"},"name":"Great Wall"} +,{"_id":{"$oid":"55cba2476c522cafdb054b75"},"location":{"coordinates":[-73.8636734,40.7310956],"type":"Point"},"name":"Applebee'S Neighborhood Grill \u0026 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054b76"},"location":{"coordinates":[-73.97988939999999,40.7802763],"type":"Point"},"name":"Cesca"} +,{"_id":{"$oid":"55cba2476c522cafdb054b77"},"location":{"coordinates":[-73.9390504,40.7915893],"type":"Point"},"name":"Papa John'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054b78"},"location":{"coordinates":[-73.962819,40.798787],"type":"Point"},"name":"The Ding Dong Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb054b79"},"location":{"coordinates":[-74.0061578,40.6090905],"type":"Point"},"name":"Carvel Ice Cream"} +,{"_id":{"$oid":"55cba2476c522cafdb054b7a"},"location":{"coordinates":[-73.99950319999999,40.6247845],"type":"Point"},"name":"Mario'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054b7b"},"location":{"coordinates":[-73.95863179999999,40.7132015],"type":"Point"},"name":"Clem'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054b7c"},"location":{"coordinates":[-73.8627399,40.7507594],"type":"Point"},"name":"Tipico Dominicano Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054b7d"},"location":{"coordinates":[-73.7577288,40.7182966],"type":"Point"},"name":"Elena-43- Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054b7e"},"location":{"coordinates":[-73.8317631,40.7068072],"type":"Point"},"name":"Village Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb054b7f"},"location":{"coordinates":[-73.85703029999999,40.6701023],"type":"Point"},"name":"Jade Linden Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054b80"},"location":{"coordinates":[-73.9153367,40.7443454],"type":"Point"},"name":"El Rey De Los Tacos"} +,{"_id":{"$oid":"55cba2476c522cafdb054b81"},"location":{"coordinates":[-73.98964099999999,40.664741],"type":"Point"},"name":"Buttermilk Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054b82"},"location":{"coordinates":[-73.981183,40.6676881],"type":"Point"},"name":"Old Carriage Inn"} +,{"_id":{"$oid":"55cba2476c522cafdb054b83"},"location":{"coordinates":[-74.01010440000002,40.7041181],"type":"Point"},"name":"Ulysses"} +,{"_id":{"$oid":"55cba2476c522cafdb054b84"},"location":{"coordinates":[-73.9908556,40.6857721],"type":"Point"},"name":"Boat Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054b85"},"location":{"coordinates":[-73.9864939,40.7547571],"type":"Point"},"name":"Cafe Duke"} +,{"_id":{"$oid":"55cba2476c522cafdb054b86"},"location":{"coordinates":[-73.9462238,40.656571],"type":"Point"},"name":"Kings County Cafeteria"} +,{"_id":{"$oid":"55cba2476c522cafdb054b87"},"location":{"coordinates":[-73.93369899999999,40.602265],"type":"Point"},"name":"Uncle Louie G'S Italian Ices \u0026 Ice Cream"} +,{"_id":{"$oid":"55cba2476c522cafdb054b88"},"location":{"coordinates":[-74.0065922,40.7319077],"type":"Point"},"name":"Hudson Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb054b89"},"location":{"coordinates":[-74.0041141,40.73275340000001],"type":"Point"},"name":"L'Aile Ou La Cuisse (L'A.O.C)"} +,{"_id":{"$oid":"55cba2476c522cafdb054b8a"},"location":{"coordinates":[-73.9198364,40.8348717],"type":"Point"},"name":"Cornerstyle"} +,{"_id":{"$oid":"55cba2476c522cafdb054b8b"},"location":{"coordinates":[-73.9961854,40.7174595],"type":"Point"},"name":"Ho Won Bake Shoppe Inc."} +,{"_id":{"$oid":"55cba2476c522cafdb054b8c"},"location":{"coordinates":[-73.8777594,40.7504548],"type":"Point"},"name":"La Gata Golosa #2"} +,{"_id":{"$oid":"55cba2476c522cafdb054b8d"},"location":{"coordinates":[-73.9573289,40.5987264],"type":"Point"},"name":"Dunkin' Donuts, Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb054b8e"},"location":{"coordinates":[-73.97076919999999,40.7954433],"type":"Point"},"name":"Cafe Viva"} +,{"_id":{"$oid":"55cba2476c522cafdb054b8f"},"location":{"coordinates":[-73.9887419,40.7400847],"type":"Point"},"name":"Almond"} +,{"_id":{"$oid":"55cba2476c522cafdb054b90"},"location":{"coordinates":[-73.96348669999999,40.7039844],"type":"Point"},"name":"Ateres Avrohom"} +,{"_id":{"$oid":"55cba2476c522cafdb054b91"},"location":{"coordinates":[-73.9873574,40.71956249999999],"type":"Point"},"name":"Welcome To The Johnson'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054b92"},"location":{"coordinates":[-74.00435999999999,40.738323],"type":"Point"},"name":"Bonsignour"} +,{"_id":{"$oid":"55cba2476c522cafdb054b93"},"location":{"coordinates":[-74.0841949,40.598206],"type":"Point"},"name":"Cange'S Italian Ices"} +,{"_id":{"$oid":"55cba2476c522cafdb054b94"},"location":{"coordinates":[-73.95377049999999,40.5874759],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb054b95"},"location":{"coordinates":[-73.98751539999999,40.7559449],"type":"Point"},"name":"Red Lobster"} +,{"_id":{"$oid":"55cba2476c522cafdb054b96"},"location":{"coordinates":[-73.9998681,40.7162087],"type":"Point"},"name":"Pongsri Thai Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054b97"},"location":{"coordinates":[-73.9145999,40.775243],"type":"Point"},"name":"Andrew \u0026 Frank'S Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb054b98"},"location":{"coordinates":[-73.98146740000001,40.75023590000001],"type":"Point"},"name":"Moonstruck"} +,{"_id":{"$oid":"55cba2476c522cafdb054b99"},"location":{"coordinates":[-73.91018439999999,40.8308968],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb054b9a"},"location":{"coordinates":[-73.9736995,40.7507837],"type":"Point"},"name":"Pret A Manger"} +,{"_id":{"$oid":"55cba2476c522cafdb054b9b"},"location":{"coordinates":[-73.8468717,40.7100543],"type":"Point"},"name":"Theater Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054b9c"},"location":{"coordinates":[-74.0782899,40.6383524],"type":"Point"},"name":"Island Roti Shop \u0026 Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb054b9d"},"location":{"coordinates":[-73.87993990000001,40.7480746],"type":"Point"},"name":"Los Cuencanitos"} +,{"_id":{"$oid":"55cba2476c522cafdb054b9e"},"location":{"coordinates":[-74.0045873,40.7298397],"type":"Point"},"name":"Mr. Dennehy'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054b9f"},"location":{"coordinates":[-73.940978,40.5942756],"type":"Point"},"name":"Pia Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb054ba0"},"location":{"coordinates":[-73.9980432,40.74528],"type":"Point"},"name":"Boston Market"} +,{"_id":{"$oid":"55cba2476c522cafdb054ba1"},"location":{"coordinates":[-73.8492959,40.7099957],"type":"Point"},"name":"Star Of Siam"} +,{"_id":{"$oid":"55cba2476c522cafdb054ba2"},"location":{"coordinates":[-73.9854223,40.7269655],"type":"Point"},"name":"Caracas Arepa /To Go"} +,{"_id":{"$oid":"55cba2476c522cafdb054ba3"},"location":{"coordinates":[-73.9529445,40.7470487],"type":"Point"},"name":"L. I. C. Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054ba4"},"location":{"coordinates":[-73.8527703,40.726212],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb054ba5"},"location":{"coordinates":[-74.00480569999999,40.6545595],"type":"Point"},"name":"La Guarida Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054ba6"},"location":{"coordinates":[-73.9812525,40.7280546],"type":"Point"},"name":"510 11St Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054ba7"},"location":{"coordinates":[-73.7682949,40.7552375],"type":"Point"},"name":"Cana Restaurant \u0026 Catering"} +,{"_id":{"$oid":"55cba2476c522cafdb054ba8"},"location":{"coordinates":[-73.8536827,40.8344702],"type":"Point"},"name":"Evo Cocktail Lounge \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054ba9"},"location":{"coordinates":[-73.9885482,40.7570301],"type":"Point"},"name":"Cold Stone Creamery"} +,{"_id":{"$oid":"55cba2476c522cafdb054baa"},"location":{"coordinates":[-73.80572699999999,40.694783],"type":"Point"},"name":"Bamboo Garden Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054bab"},"location":{"coordinates":[-73.76095029999999,40.6790788],"type":"Point"},"name":"Carvel Ice Cream"} +,{"_id":{"$oid":"55cba2476c522cafdb054bac"},"location":{"coordinates":[-74.0307352,40.6248996],"type":"Point"},"name":"Sofia"} +,{"_id":{"$oid":"55cba2476c522cafdb054bad"},"location":{"coordinates":[-73.8651843,40.7574466],"type":"Point"},"name":"Pico Rico"} +,{"_id":{"$oid":"55cba2476c522cafdb054bae"},"location":{"coordinates":[-73.80637569999999,40.9694808],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb054baf"},"location":{"coordinates":[-73.9472917,40.7835743],"type":"Point"},"name":"Merrion Square"} +,{"_id":{"$oid":"55cba2476c522cafdb054bb0"},"location":{"coordinates":[-73.9891267,40.729435],"type":"Point"},"name":"Oh Taisho"} +,{"_id":{"$oid":"55cba2476c522cafdb054bb1"},"location":{"coordinates":[-73.996099,40.7429424],"type":"Point"},"name":"Bocca Di Bacco"} +,{"_id":{"$oid":"55cba2476c522cafdb054bb2"},"location":{"coordinates":[-74.0007959,40.729197],"type":"Point"},"name":"Bar 1849 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb054bb3"},"location":{"coordinates":[-73.9210275,40.6413138],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb054bb4"},"location":{"coordinates":[-73.7483769,40.7352055],"type":"Point"},"name":"Anthony'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054bb5"},"location":{"coordinates":[-73.9243979,40.7612179],"type":"Point"},"name":"Break Bar \u0026 Billards"} +,{"_id":{"$oid":"55cba2476c522cafdb054bb6"},"location":{"coordinates":[-73.91115280000001,40.7754551],"type":"Point"},"name":"Soho Cafe And Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb054bb7"},"location":{"coordinates":[-73.72778,40.690544],"type":"Point"},"name":"Golden Krust Caribbean Bakery \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb054bb8"},"location":{"coordinates":[-73.9596404,40.7178952],"type":"Point"},"name":"Chai Thai Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054bb9"},"location":{"coordinates":[-74.0277011,40.6320906],"type":"Point"},"name":"Carvel Ice Cream"} +,{"_id":{"$oid":"55cba2476c522cafdb054bba"},"location":{"coordinates":[-73.914487,40.6988429],"type":"Point"},"name":"Tropical Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054bbb"},"location":{"coordinates":[-73.9976111,40.7223394],"type":"Point"},"name":"Vosges Haut-Chocolat"} +,{"_id":{"$oid":"55cba2476c522cafdb054bbc"},"location":{"coordinates":[-73.87813799999999,40.681694],"type":"Point"},"name":"Gate Way Beer Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb054bbd"},"location":{"coordinates":[-73.9891559,40.7571932],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb054bbe"},"location":{"coordinates":[-73.986687,40.719347],"type":"Point"},"name":"Schiller'S Liquor Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054bbf"},"location":{"coordinates":[-74.0083173,40.7148709],"type":"Point"},"name":"The Patriot Saloon"} +,{"_id":{"$oid":"55cba2476c522cafdb054bc0"},"location":{"coordinates":[-74.001491,40.728041],"type":"Point"},"name":"Ushi Wakamaru"} +,{"_id":{"$oid":"55cba2476c522cafdb054bc1"},"location":{"coordinates":[-73.8594916,40.8890208],"type":"Point"},"name":"The Pizza Place"} +,{"_id":{"$oid":"55cba2476c522cafdb054bc2"},"location":{"coordinates":[-73.9010977,40.856359],"type":"Point"},"name":"Carvel Ice Cream"} +,{"_id":{"$oid":"55cba2476c522cafdb054bc3"},"location":{"coordinates":[-73.9791994,40.7823356],"type":"Point"},"name":"Bagel Talk"} +,{"_id":{"$oid":"55cba2476c522cafdb054bc4"},"location":{"coordinates":[-115.2372343,36.1836718],"type":"Point"},"name":"Angelo \u0026 Al'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb054bc5"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"Star Mountain Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb054bc6"},"location":{"coordinates":[-73.9631966,40.8079381],"type":"Point"},"name":"Blue Java Coffee Bar - Dodge Hall"} +,{"_id":{"$oid":"55cba2476c522cafdb054bc7"},"location":{"coordinates":[-73.92664110000001,40.8636451],"type":"Point"},"name":"Ceci Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054bc8"},"location":{"coordinates":[-74.0683798,40.6168076],"type":"Point"},"name":"Bayou"} +,{"_id":{"$oid":"55cba2476c522cafdb054bc9"},"location":{"coordinates":[-73.9466958,40.5840221],"type":"Point"},"name":"Xo Creperie"} +,{"_id":{"$oid":"55cba2476c522cafdb054bca"},"location":{"coordinates":[-73.97895620000001,40.7369038],"type":"Point"},"name":"Eastside Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054bcb"},"location":{"coordinates":[-73.98632649999999,40.7296961],"type":"Point"},"name":"Chikalicious Dessert Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054bcc"},"location":{"coordinates":[-73.909849,40.775858],"type":"Point"},"name":"Les Amis"} +,{"_id":{"$oid":"55cba2476c522cafdb054bcd"},"location":{"coordinates":[-73.7947559,40.7334906],"type":"Point"},"name":"Fu Long Food Products"} +,{"_id":{"$oid":"55cba2476c522cafdb054bce"},"location":{"coordinates":[-73.99004579999999,40.718014],"type":"Point"},"name":"Barrio Chino"} +,{"_id":{"$oid":"55cba2476c522cafdb054bcf"},"location":{"coordinates":[-73.9808427,40.6148178],"type":"Point"},"name":"Golden Dynasty Rest"} +,{"_id":{"$oid":"55cba2476c522cafdb054bd0"},"location":{"coordinates":[-74.0034447,40.7384402],"type":"Point"},"name":"Art Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054bd1"},"location":{"coordinates":[-73.98030589999999,40.6053167],"type":"Point"},"name":"Mona'S Bakery \u0026 Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054bd2"},"location":{"coordinates":[-73.97424629999999,40.7521067],"type":"Point"},"name":"Chipotle Mexican Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb054bd3"},"location":{"coordinates":[-70.8071997,41.6661815],"type":"Point"},"name":"Bay Club Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054bd4"},"location":{"coordinates":[-73.8632839,40.75157],"type":"Point"},"name":"El Pasillo Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054bd5"},"location":{"coordinates":[-74.0062401,40.7397546],"type":"Point"},"name":"Waverly Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054bd6"},"location":{"coordinates":[-73.945829,40.7196209],"type":"Point"},"name":"R Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054bd7"},"location":{"coordinates":[-73.90950099999999,40.90614],"type":"Point"},"name":"The John J O'Connor Residence"} +,{"_id":{"$oid":"55cba2476c522cafdb054bd8"},"location":{"coordinates":[-73.913619,40.883266],"type":"Point"},"name":"Consolation Residence"} +,{"_id":{"$oid":"55cba2476c522cafdb054bd9"},"location":{"coordinates":[-73.98632769999999,40.7194306],"type":"Point"},"name":"La Caverna"} +,{"_id":{"$oid":"55cba2476c522cafdb054bda"},"location":{"coordinates":[-73.8499439,40.679658],"type":"Point"},"name":"Mike'S Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb054bdb"},"location":{"coordinates":[-73.97094899999999,40.759345],"type":"Point"},"name":"Bobby Van'S Steakhouse"} +,{"_id":{"$oid":"55cba2476c522cafdb054bdc"},"location":{"coordinates":[-73.95007919999999,40.7222032],"type":"Point"},"name":"Bar Matchless"} +,{"_id":{"$oid":"55cba2476c522cafdb054bdd"},"location":{"coordinates":[-73.958731,40.774625],"type":"Point"},"name":"Candle 79 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054bde"},"location":{"coordinates":[-73.9721594,40.7920758],"type":"Point"},"name":"Talia'S Steakhouse"} +,{"_id":{"$oid":"55cba2476c522cafdb054bdf"},"location":{"coordinates":[-73.824834,40.7037772],"type":"Point"},"name":"Paul Michael'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054be0"},"location":{"coordinates":[-74.01099169999999,40.7151804],"type":"Point"},"name":"Baluchi'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054be1"},"location":{"coordinates":[-73.97579120000002,40.6236144],"type":"Point"},"name":"Starlite Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb054be2"},"location":{"coordinates":[-73.8959276,40.6790922],"type":"Point"},"name":"El Nuevo Bonao Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054be3"},"location":{"coordinates":[-73.9551106,40.7339695],"type":"Point"},"name":"The Mark Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054be4"},"location":{"coordinates":[-73.9868281,40.7028722],"type":"Point"},"name":"68 Jay Street Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054be5"},"location":{"coordinates":[-73.9830695,40.730644],"type":"Point"},"name":"Mug M Lounge Nyc"} +,{"_id":{"$oid":"55cba2476c522cafdb054be6"},"location":{"coordinates":[-74.07740559999999,40.6438111],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb054be7"},"location":{"coordinates":[-73.9132432,40.7562983],"type":"Point"},"name":"Bai Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb054be8"},"location":{"coordinates":[-73.8878704,40.7435875],"type":"Point"},"name":"Spicy Shallot"} +,{"_id":{"$oid":"55cba2476c522cafdb054be9"},"location":{"coordinates":[-73.8849836,40.8133771],"type":"Point"},"name":"Mr. Wedge"} +,{"_id":{"$oid":"55cba2476c522cafdb054bea"},"location":{"coordinates":[-74.00059519999999,40.7344591],"type":"Point"},"name":"Jack'S Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb054beb"},"location":{"coordinates":[-73.761355,40.748094],"type":"Point"},"name":"L'Italiano Trattoria"} +,{"_id":{"$oid":"55cba2476c522cafdb054bec"},"location":{"coordinates":[-73.87330879999999,40.8789712],"type":"Point"},"name":"John'S Luncheonette"} +,{"_id":{"$oid":"55cba2476c522cafdb054bed"},"location":{"coordinates":[-74.12065419999999,40.6132091],"type":"Point"},"name":"Tokyo Sushi Japanese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054bee"},"location":{"coordinates":[-74.002714,40.7311167],"type":"Point"},"name":"Sushi Mambo"} +,{"_id":{"$oid":"55cba2476c522cafdb054bef"},"location":{"coordinates":[-73.7894214,40.7865697],"type":"Point"},"name":"Clearview Park (Golf Course)"} +,{"_id":{"$oid":"55cba2476c522cafdb054bf0"},"location":{"coordinates":[-73.977021,40.6507397],"type":"Point"},"name":"Little Tonino'S Pizza \u0026 Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054bf1"},"location":{"coordinates":[-73.9851944,40.7271858],"type":"Point"},"name":"Lunasa"} +,{"_id":{"$oid":"55cba2476c522cafdb054bf2"},"location":{"coordinates":[-73.980096,40.77763900000001],"type":"Point"},"name":"72Nd Street Bagel"} +,{"_id":{"$oid":"55cba2476c522cafdb054bf3"},"location":{"coordinates":[-73.8097636,40.7199334],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb054bf4"},"location":{"coordinates":[-73.9462889,40.624629],"type":"Point"},"name":"Isaacs Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb054bf5"},"location":{"coordinates":[-73.9300844,40.7542483],"type":"Point"},"name":"System"} +,{"_id":{"$oid":"55cba2476c522cafdb054bf6"},"location":{"coordinates":[-73.78491559999999,40.7887735],"type":"Point"},"name":"Bayside Marina Snack Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054bf7"},"location":{"coordinates":[-73.8345874,40.7699357],"type":"Point"},"name":"Grill Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb054bf8"},"location":{"coordinates":[-73.81756759999999,40.76527979999999],"type":"Point"},"name":"Dynasty Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054bf9"},"location":{"coordinates":[-74.0002545,40.7285176],"type":"Point"},"name":"Falucka"} +,{"_id":{"$oid":"55cba2476c522cafdb054bfa"},"location":{"coordinates":[-73.8863178,40.7494074],"type":"Point"},"name":"Seba Seba"} +,{"_id":{"$oid":"55cba2476c522cafdb054bfb"},"location":{"coordinates":[-73.790887,40.6430002],"type":"Point"},"name":"Panini Express(Gate 8)/Martini Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054bfc"},"location":{"coordinates":[-73.9898506,40.6191542],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb054bfd"},"location":{"coordinates":[-74.0130866,40.7045399],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb054bfe"},"location":{"coordinates":[-73.8882687,40.7494896],"type":"Point"},"name":"City Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb054bff"},"location":{"coordinates":[-73.9775997,40.757691],"type":"Point"},"name":"American Girl Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054c00"},"location":{"coordinates":[-73.9647303,40.7156863],"type":"Point"},"name":"Aurora"} +,{"_id":{"$oid":"55cba2476c522cafdb054c01"},"location":{"coordinates":[-74.0085357,40.70620539999999],"type":"Point"},"name":"Deutsche Bank- Exec Dining Room"} +,{"_id":{"$oid":"55cba2476c522cafdb054c02"},"location":{"coordinates":[-73.9836212,40.7262059],"type":"Point"},"name":"Yuca Bar \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054c03"},"location":{"coordinates":[-74.0085357,40.70620539999999],"type":"Point"},"name":"Deutsche Bank- Conference Center"} +,{"_id":{"$oid":"55cba2476c522cafdb054c04"},"location":{"coordinates":[-89.1143199,41.5537159],"type":"Point"},"name":"Time Conference Center"} +,{"_id":{"$oid":"55cba2476c522cafdb054c05"},"location":{"coordinates":[-73.7536695,40.7469886],"type":"Point"},"name":"Sweet Treats Pastry Shoppe"} +,{"_id":{"$oid":"55cba2476c522cafdb054c06"},"location":{"coordinates":[-73.7407738,40.7171318],"type":"Point"},"name":"Labadee Manoir"} +,{"_id":{"$oid":"55cba2476c522cafdb054c07"},"location":{"coordinates":[-92.72302119999999,41.7461362],"type":"Point"},"name":"Herald Square Market"} +,{"_id":{"$oid":"55cba2476c522cafdb054c08"},"location":{"coordinates":[-73.9808893,40.6905175],"type":"Point"},"name":"Long Island University - Blackbird Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054c09"},"location":{"coordinates":[-73.9808893,40.6905175],"type":"Point"},"name":"Long Island University - Luntey Commons"} +,{"_id":{"$oid":"55cba2476c522cafdb054c0a"},"location":{"coordinates":[-74.0797582,40.6287346],"type":"Point"},"name":"Vida"} +,{"_id":{"$oid":"55cba2476c522cafdb054c0b"},"location":{"coordinates":[-74.09471599999999,40.58379],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb054c0c"},"location":{"coordinates":[-73.87989449999999,40.7480793],"type":"Point"},"name":"Guadalajara De Noche"} +,{"_id":{"$oid":"55cba2476c522cafdb054c0d"},"location":{"coordinates":[-73.990866,40.6865968],"type":"Point"},"name":"Sample"} +,{"_id":{"$oid":"55cba2476c522cafdb054c0e"},"location":{"coordinates":[-73.9874778,40.7481797],"type":"Point"},"name":"Gahm Mi Oak Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054c0f"},"location":{"coordinates":[-73.80936899999999,40.694406],"type":"Point"},"name":"O Lavrador Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054c10"},"location":{"coordinates":[-73.9958541,40.6038381],"type":"Point"},"name":"No. 1 Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054c11"},"location":{"coordinates":[-73.9693213,40.76024570000001],"type":"Point"},"name":"T.G.I. Friday'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054c12"},"location":{"coordinates":[-73.9928722,40.7212079],"type":"Point"},"name":"Loreley Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054c13"},"location":{"coordinates":[-74.0274914,40.6315357],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb054c14"},"location":{"coordinates":[-74.00812189999999,40.7095929],"type":"Point"},"name":"Zaitzeff"} +,{"_id":{"$oid":"55cba2476c522cafdb054c15"},"location":{"coordinates":[-73.906581,40.75048],"type":"Point"},"name":"Fancy Food Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb054c16"},"location":{"coordinates":[-73.90969969999999,40.8854948],"type":"Point"},"name":"Liebman'S Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb054c17"},"location":{"coordinates":[-73.988545,40.7578407],"type":"Point"},"name":"Green Symphony"} +,{"_id":{"$oid":"55cba2476c522cafdb054c18"},"location":{"coordinates":[-73.97601999999999,40.674948],"type":"Point"},"name":"Tea Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb054c19"},"location":{"coordinates":[-73.9554279,40.6098401],"type":"Point"},"name":"Vesuvios Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054c1a"},"location":{"coordinates":[-73.988165,40.75656130000001],"type":"Point"},"name":"Pax Wholesome Foods"} +,{"_id":{"$oid":"55cba2476c522cafdb054c1b"},"location":{"coordinates":[-73.9894664,40.5996664],"type":"Point"},"name":"Wasabi Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb054c1c"},"location":{"coordinates":[-73.95506019999999,40.7685945],"type":"Point"},"name":"Delizia Ristorante"} +,{"_id":{"$oid":"55cba2476c522cafdb054c1d"},"location":{"coordinates":[-73.980401,40.755543],"type":"Point"},"name":"Ambrosia"} +,{"_id":{"$oid":"55cba2476c522cafdb054c1e"},"location":{"coordinates":[-73.82872809999999,40.7570297],"type":"Point"},"name":"Tong'S Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054c1f"},"location":{"coordinates":[-73.9235643,40.7762625],"type":"Point"},"name":"Dunkin' Donuts, Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb054c20"},"location":{"coordinates":[-73.896913,40.70696909999999],"type":"Point"},"name":"Dunkin' Donuts, Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb054c21"},"location":{"coordinates":[-73.99708199999999,40.7202733],"type":"Point"},"name":"Grotta Azzurra"} +,{"_id":{"$oid":"55cba2476c522cafdb054c22"},"location":{"coordinates":[-73.9747277,40.7536114],"type":"Point"},"name":"Bistro Caterers"} +,{"_id":{"$oid":"55cba2476c522cafdb054c23"},"location":{"coordinates":[-73.8640607,40.7273517],"type":"Point"},"name":"Shalimar Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb054c24"},"location":{"coordinates":[-73.9863568,40.7266041],"type":"Point"},"name":"Mancora"} +,{"_id":{"$oid":"55cba2476c522cafdb054c25"},"location":{"coordinates":[-74.0067882,40.7060144],"type":"Point"},"name":"Hale \u0026 Hearty Soups"} +,{"_id":{"$oid":"55cba2476c522cafdb054c26"},"location":{"coordinates":[-73.94897809999999,40.7810144],"type":"Point"},"name":"Biddy'S Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb054c27"},"location":{"coordinates":[-73.9703086,40.7559254],"type":"Point"},"name":"Liberty Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054c28"},"location":{"coordinates":[-73.9782123,40.7288975],"type":"Point"},"name":"Revision"} +,{"_id":{"$oid":"55cba2476c522cafdb054c29"},"location":{"coordinates":[-73.9995941,40.6378452],"type":"Point"},"name":"La Strada Pizzeria Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054c2a"},"location":{"coordinates":[-73.9781458,40.7562236],"type":"Point"},"name":"Loreal"} +,{"_id":{"$oid":"55cba2476c522cafdb054c2b"},"location":{"coordinates":[-89.11438419999999,41.5536725],"type":"Point"},"name":"Union Bank Of Switzerland"} +,{"_id":{"$oid":"55cba2476c522cafdb054c2c"},"location":{"coordinates":[-73.9781458,40.7562236],"type":"Point"},"name":"Le Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054c2d"},"location":{"coordinates":[-89.11438419999999,41.5536725],"type":"Point"},"name":"Ubs"} +,{"_id":{"$oid":"55cba2476c522cafdb054c2e"},"location":{"coordinates":[-73.886467,40.738907],"type":"Point"},"name":"Play"} +,{"_id":{"$oid":"55cba2476c522cafdb054c2f"},"location":{"coordinates":[-73.81800299999999,40.83579599999999],"type":"Point"},"name":"Loretta'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054c30"},"location":{"coordinates":[-73.9743641,40.7560493],"type":"Point"},"name":"Ubs Cafe (27 Fl.)"} +,{"_id":{"$oid":"55cba2476c522cafdb054c31"},"location":{"coordinates":[-73.98672499999999,40.760379],"type":"Point"},"name":"The Friedman Theatre"} +,{"_id":{"$oid":"55cba2476c522cafdb054c32"},"location":{"coordinates":[-73.99961909999999,40.7167408],"type":"Point"},"name":"Nha Trang Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054c33"},"location":{"coordinates":[-73.82508469999999,40.8669438],"type":"Point"},"name":"Amc Theatres Bay Plaza"} +,{"_id":{"$oid":"55cba2476c522cafdb054c34"},"location":{"coordinates":[-73.94579270000001,40.7905455],"type":"Point"},"name":"Burger King"} +,{"_id":{"$oid":"55cba2476c522cafdb054c35"},"location":{"coordinates":[-73.8013625,40.7605922],"type":"Point"},"name":"Nolbu Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054c36"},"location":{"coordinates":[-73.9496679,40.6809428],"type":"Point"},"name":"A \u0026 A Bake Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb054c37"},"location":{"coordinates":[-73.99419449999999,40.7222724],"type":"Point"},"name":"Public Restaurant/The Daily"} +,{"_id":{"$oid":"55cba2476c522cafdb054c38"},"location":{"coordinates":[-73.7536776,40.7246793],"type":"Point"},"name":"Elegant Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054c39"},"location":{"coordinates":[-73.9587506,40.7171418],"type":"Point"},"name":"Tai Thai"} +,{"_id":{"$oid":"55cba2476c522cafdb054c3a"},"location":{"coordinates":[-73.9879322,40.7232248],"type":"Point"},"name":"Tai Thai Thailand"} +,{"_id":{"$oid":"55cba2476c522cafdb054c3b"},"location":{"coordinates":[-73.9847422,40.747743],"type":"Point"},"name":"Wendy'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054c3c"},"location":{"coordinates":[-73.9660287,40.6309077],"type":"Point"},"name":"Bukhari Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054c3d"},"location":{"coordinates":[-73.82686319999999,40.75781449999999],"type":"Point"},"name":"Time Warner Employee Cafeteria"} +,{"_id":{"$oid":"55cba2476c522cafdb054c3e"},"location":{"coordinates":[-73.95196299999999,40.776507],"type":"Point"},"name":"Italianissimo Ristorante"} +,{"_id":{"$oid":"55cba2476c522cafdb054c3f"},"location":{"coordinates":[-73.994405,40.718029],"type":"Point"},"name":"Nam Son Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054c40"},"location":{"coordinates":[-73.9583377,40.7693069],"type":"Point"},"name":"Cafe Mingala"} +,{"_id":{"$oid":"55cba2476c522cafdb054c41"},"location":{"coordinates":[-73.963585,40.762102],"type":"Point"},"name":"Cozy Corner"} +,{"_id":{"$oid":"55cba2476c522cafdb054c42"},"location":{"coordinates":[-73.9633875,40.8064022],"type":"Point"},"name":"Blue Java Coffee Bar - Butler Library"} +,{"_id":{"$oid":"55cba2476c522cafdb054c43"},"location":{"coordinates":[-73.8962007,40.81592],"type":"Point"},"name":"El Valle Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054c44"},"location":{"coordinates":[-73.99548290000001,40.753666],"type":"Point"},"name":"Uncle Jack'S Steakhouse"} +,{"_id":{"$oid":"55cba2476c522cafdb054c45"},"location":{"coordinates":[-73.9917281,40.7401974],"type":"Point"},"name":"Aleo"} +,{"_id":{"$oid":"55cba2476c522cafdb054c46"},"location":{"coordinates":[-73.89005709999999,40.8253222],"type":"Point"},"name":"Antillana Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb054c47"},"location":{"coordinates":[-74.2347826,40.5177273],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054c48"},"location":{"coordinates":[-73.9777052,40.6864624],"type":"Point"},"name":"B.A.M. Cafe/Great Performances"} +,{"_id":{"$oid":"55cba2476c522cafdb054c49"},"location":{"coordinates":[-73.9399004,40.8414858],"type":"Point"},"name":"Famous Famiglia Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054c4a"},"location":{"coordinates":[-73.8646677,40.8768356],"type":"Point"},"name":"Bright Star Chinese Food"} +,{"_id":{"$oid":"55cba2476c522cafdb054c4b"},"location":{"coordinates":[-73.96280399999999,40.6248437],"type":"Point"},"name":"Jerusalem Ii Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054c4c"},"location":{"coordinates":[-73.99175679999999,40.7587671],"type":"Point"},"name":"The Bread Factory"} +,{"_id":{"$oid":"55cba2476c522cafdb054c4d"},"location":{"coordinates":[-73.9535614,40.7435389],"type":"Point"},"name":"Dominie'S Hoek"} +,{"_id":{"$oid":"55cba2476c522cafdb054c4e"},"location":{"coordinates":[-73.91901829999999,40.7584594],"type":"Point"},"name":"Basurero"} +,{"_id":{"$oid":"55cba2476c522cafdb054c4f"},"location":{"coordinates":[-74.0031463,40.73542],"type":"Point"},"name":"Sant Ambroeus"} +,{"_id":{"$oid":"55cba2476c522cafdb054c50"},"location":{"coordinates":[-73.9740765,40.6046247],"type":"Point"},"name":"Knapp Pizza Iii"} +,{"_id":{"$oid":"55cba2476c522cafdb054c51"},"location":{"coordinates":[-73.99417009999999,40.7567387],"type":"Point"},"name":"Hells Kitchen Cafe/Hk Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb054c52"},"location":{"coordinates":[-73.9871555,40.7444051],"type":"Point"},"name":"Cafe 28"} +,{"_id":{"$oid":"55cba2476c522cafdb054c53"},"location":{"coordinates":[-74.145935,40.541928],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb054c54"},"location":{"coordinates":[-74.01212939999999,40.7095448],"type":"Point"},"name":"Essex World Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054c55"},"location":{"coordinates":[-73.989493,40.729617],"type":"Point"},"name":"Continental"} +,{"_id":{"$oid":"55cba2476c522cafdb054c56"},"location":{"coordinates":[-73.82725599999999,40.686001],"type":"Point"},"name":"Los Girasoles Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054c57"},"location":{"coordinates":[-74.0085268,40.71196399999999],"type":"Point"},"name":"Oliva Gourmet"} +,{"_id":{"$oid":"55cba2476c522cafdb054c58"},"location":{"coordinates":[-73.9906369,40.7417363],"type":"Point"},"name":"Mangia"} +,{"_id":{"$oid":"55cba2476c522cafdb054c59"},"location":{"coordinates":[-74.0758105,40.6266358],"type":"Point"},"name":"Macumba Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054c5a"},"location":{"coordinates":[-73.98357779999999,40.7613731],"type":"Point"},"name":"Applebee'S Neighborhood Grill \u0026 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054c5b"},"location":{"coordinates":[-73.9797212,40.7664066],"type":"Point"},"name":"Le Pain Quotidien"} +,{"_id":{"$oid":"55cba2476c522cafdb054c5c"},"location":{"coordinates":[-74.03425639999999,40.6163778],"type":"Point"},"name":"Fontana Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb054c5d"},"location":{"coordinates":[-73.98187349999999,40.7299217],"type":"Point"},"name":"Key Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054c5e"},"location":{"coordinates":[-73.9985468,40.7174309],"type":"Point"},"name":"Sambuca'S Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054c5f"},"location":{"coordinates":[-73.98334969999999,40.76756049999999],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb054c60"},"location":{"coordinates":[-73.8497471,40.9037053],"type":"Point"},"name":"Golden Krust Caribbean Bakery \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb054c61"},"location":{"coordinates":[-73.9201825,40.7591708],"type":"Point"},"name":"Tacos Mexicos"} +,{"_id":{"$oid":"55cba2476c522cafdb054c62"},"location":{"coordinates":[-73.9380171,40.8481895],"type":"Point"},"name":"El Guanaco Restaurant \u0026 Pupuseria"} +,{"_id":{"$oid":"55cba2476c522cafdb054c63"},"location":{"coordinates":[-73.97411,40.789457],"type":"Point"},"name":"Caridad"} +,{"_id":{"$oid":"55cba2476c522cafdb054c64"},"location":{"coordinates":[-73.9910064,40.7662319],"type":"Point"},"name":"Taboon"} +,{"_id":{"$oid":"55cba2476c522cafdb054c65"},"location":{"coordinates":[-73.9929028,40.7255235],"type":"Point"},"name":"Quartino Bottega Organica"} +,{"_id":{"$oid":"55cba2476c522cafdb054c66"},"location":{"coordinates":[-73.80285599999999,40.674758],"type":"Point"},"name":"Legend Cookhouse"} +,{"_id":{"$oid":"55cba2476c522cafdb054c67"},"location":{"coordinates":[-74.142939,40.554101],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb054c68"},"location":{"coordinates":[-73.86970699999999,40.684126],"type":"Point"},"name":"The New Santiago Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054c69"},"location":{"coordinates":[-74.00515639999999,40.7063764],"type":"Point"},"name":"Flavors Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054c6a"},"location":{"coordinates":[-73.743456,40.6968662],"type":"Point"},"name":"Vito'S Pizzeria/Mama Lina'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054c6b"},"location":{"coordinates":[-73.94308199999999,40.600541],"type":"Point"},"name":"N \u0026 D Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054c6c"},"location":{"coordinates":[-73.98325899999999,40.741154],"type":"Point"},"name":"Popeyes Chicken \u0026 Biscuits"} +,{"_id":{"$oid":"55cba2476c522cafdb054c6d"},"location":{"coordinates":[-74.0013616,40.7321516],"type":"Point"},"name":"The Four Faced Liar"} +,{"_id":{"$oid":"55cba2476c522cafdb054c6e"},"location":{"coordinates":[-73.98449769999999,40.7453186],"type":"Point"},"name":"Keko Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054c6f"},"location":{"coordinates":[-73.8369805,40.6822413],"type":"Point"},"name":"Oxford Bake Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb054c70"},"location":{"coordinates":[-73.9829479,40.73032],"type":"Point"},"name":"Gena'S Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb054c71"},"location":{"coordinates":[-74.135423,40.635703],"type":"Point"},"name":"Recuerdos Mexicanos"} +,{"_id":{"$oid":"55cba2476c522cafdb054c72"},"location":{"coordinates":[-73.892191,40.7008211],"type":"Point"},"name":"Celtic Gasthaus"} +,{"_id":{"$oid":"55cba2476c522cafdb054c73"},"location":{"coordinates":[-73.8661213,40.74298659999999],"type":"Point"},"name":"Don Alex Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054c74"},"location":{"coordinates":[-73.80571239999999,40.7207932],"type":"Point"},"name":"Manny'S Bakery \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054c75"},"location":{"coordinates":[-74.0113978,40.7206627],"type":"Point"},"name":"Citi Employee Cafeteria"} +,{"_id":{"$oid":"55cba2476c522cafdb054c76"},"location":{"coordinates":[-74.0113978,40.7206627],"type":"Point"},"name":"Citigroup Conference Dining"} +,{"_id":{"$oid":"55cba2476c522cafdb054c77"},"location":{"coordinates":[-73.9210275,40.6413138],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054c78"},"location":{"coordinates":[-73.9892156,40.75342149999999],"type":"Point"},"name":"Ginger"} +,{"_id":{"$oid":"55cba2476c522cafdb054c79"},"location":{"coordinates":[-73.9690789,40.7594184],"type":"Point"},"name":"Midtown Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054c7a"},"location":{"coordinates":[-73.8885474,40.8529022],"type":"Point"},"name":"Libero Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054c7b"},"location":{"coordinates":[-73.87177799999999,40.666295],"type":"Point"},"name":"American Hero Express"} +,{"_id":{"$oid":"55cba2476c522cafdb054c7c"},"location":{"coordinates":[-73.98033,40.7532415],"type":"Point"},"name":"Cafe Metro"} +,{"_id":{"$oid":"55cba2476c522cafdb054c7d"},"location":{"coordinates":[-73.9492277,40.7116897],"type":"Point"},"name":"Gimme Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb054c7e"},"location":{"coordinates":[-73.9886504,40.72923189999999],"type":"Point"},"name":"Chipotle Mexican Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb054c7f"},"location":{"coordinates":[-73.7704454,40.7618454],"type":"Point"},"name":"Mr Wasabi"} +,{"_id":{"$oid":"55cba2476c522cafdb054c80"},"location":{"coordinates":[-74.0060373,40.739646],"type":"Point"},"name":"Bagatelle"} +,{"_id":{"$oid":"55cba2476c522cafdb054c81"},"location":{"coordinates":[-73.9736927,40.6794123],"type":"Point"},"name":"Kombit Kreyol"} +,{"_id":{"$oid":"55cba2476c522cafdb054c82"},"location":{"coordinates":[-73.9580745,40.6502759],"type":"Point"},"name":"Temptations"} +,{"_id":{"$oid":"55cba2476c522cafdb054c83"},"location":{"coordinates":[-73.93692659999999,40.8025939],"type":"Point"},"name":"Andy'S Restauraunt"} +,{"_id":{"$oid":"55cba2476c522cafdb054c84"},"location":{"coordinates":[-73.9831883,40.7300263],"type":"Point"},"name":"Hearth"} +,{"_id":{"$oid":"55cba2476c522cafdb054c85"},"location":{"coordinates":[-73.9739992,40.7623675],"type":"Point"},"name":"Trump Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054c86"},"location":{"coordinates":[-73.9739992,40.7623675],"type":"Point"},"name":"Trump Cafe \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb054c87"},"location":{"coordinates":[-73.9748695,40.6874188],"type":"Point"},"name":"Stonehome Wine Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054c88"},"location":{"coordinates":[-73.98698999999999,40.71984399999999],"type":"Point"},"name":"Sugar Sweet Sunshine"} +,{"_id":{"$oid":"55cba2476c522cafdb054c89"},"location":{"coordinates":[-73.986223,40.7529899],"type":"Point"},"name":"China Sun"} +,{"_id":{"$oid":"55cba2476c522cafdb054c8a"},"location":{"coordinates":[-73.9871361,40.7358936],"type":"Point"},"name":"Casa Mono/Bar Jamon (Next Door)"} +,{"_id":{"$oid":"55cba2476c522cafdb054c8b"},"location":{"coordinates":[-73.9489404,40.7138895],"type":"Point"},"name":"Alligator Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb054c8c"},"location":{"coordinates":[-74.0023578,40.5996908],"type":"Point"},"name":"T \u0026 L Luncheonette"} +,{"_id":{"$oid":"55cba2476c522cafdb054c8d"},"location":{"coordinates":[-73.95370989999999,40.7662584],"type":"Point"},"name":"Sotheby'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054c8e"},"location":{"coordinates":[-73.9697065,40.796989],"type":"Point"},"name":"Indus Valley"} +,{"_id":{"$oid":"55cba2476c522cafdb054c8f"},"location":{"coordinates":[-73.9594433,40.7677359],"type":"Point"},"name":"Ko Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb054c90"},"location":{"coordinates":[-74.16399229999999,40.5912228],"type":"Point"},"name":"Heartland Bagels"} +,{"_id":{"$oid":"55cba2476c522cafdb054c91"},"location":{"coordinates":[-73.82099099999999,40.691103],"type":"Point"},"name":"Hibiscus Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054c92"},"location":{"coordinates":[-73.99747810000001,40.6121845],"type":"Point"},"name":"Il Colosseo"} +,{"_id":{"$oid":"55cba2476c522cafdb054c93"},"location":{"coordinates":[-73.99776100000001,40.612018],"type":"Point"},"name":"Sorrento"} +,{"_id":{"$oid":"55cba2476c522cafdb054c94"},"location":{"coordinates":[-73.8750038,40.7415066],"type":"Point"},"name":"La Esquina Criolla"} +,{"_id":{"$oid":"55cba2476c522cafdb054c95"},"location":{"coordinates":[-74.0077958,40.7329613],"type":"Point"},"name":"Gaetana'S Cucina Italiana"} +,{"_id":{"$oid":"55cba2476c522cafdb054c96"},"location":{"coordinates":[-73.9985124,40.7457569],"type":"Point"},"name":"Dunkin' Donuts/Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb054c97"},"location":{"coordinates":[-73.9654429,40.758619],"type":"Point"},"name":"Plaza Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb054c98"},"location":{"coordinates":[-73.949023,40.777924],"type":"Point"},"name":"Guo'S Garden Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054c99"},"location":{"coordinates":[-73.9898,40.726589],"type":"Point"},"name":"Kgb Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054c9a"},"location":{"coordinates":[-73.920481,40.7600746],"type":"Point"},"name":"Winegasm"} +,{"_id":{"$oid":"55cba2476c522cafdb054c9b"},"location":{"coordinates":[-73.991309,40.75190600000001],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb054c9c"},"location":{"coordinates":[-73.97775159999999,40.7510553],"type":"Point"},"name":"Cafe 101"} +,{"_id":{"$oid":"55cba2476c522cafdb054c9d"},"location":{"coordinates":[-73.97331679999999,40.75482770000001],"type":"Point"},"name":"L Q 511"} +,{"_id":{"$oid":"55cba2476c522cafdb054c9e"},"location":{"coordinates":[-73.87990769999999,40.7480779],"type":"Point"},"name":"Romanticos"} +,{"_id":{"$oid":"55cba2476c522cafdb054c9f"},"location":{"coordinates":[-73.9870801,40.7487723],"type":"Point"},"name":"Kito Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb054ca0"},"location":{"coordinates":[-73.9841161,40.7317696],"type":"Point"},"name":"Nowhere"} +,{"_id":{"$oid":"55cba2476c522cafdb054ca1"},"location":{"coordinates":[-74.00337499999999,40.7322097],"type":"Point"},"name":"Bleeker Street Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054ca2"},"location":{"coordinates":[-73.9820939,40.7467444],"type":"Point"},"name":"Wolfgang'S Steak House"} +,{"_id":{"$oid":"55cba2476c522cafdb054ca3"},"location":{"coordinates":[-73.812828,40.587608],"type":"Point"},"name":"La Playa Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054ca4"},"location":{"coordinates":[-73.9764033,40.6251837],"type":"Point"},"name":"Ocean Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb054ca5"},"location":{"coordinates":[-73.9211528,40.7665665],"type":"Point"},"name":"Subway, Carvel Ice Cream"} +,{"_id":{"$oid":"55cba2476c522cafdb054ca6"},"location":{"coordinates":[-73.9660571,40.804378],"type":"Point"},"name":"Koronet Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054ca7"},"location":{"coordinates":[-73.97335199999999,40.679001],"type":"Point"},"name":"Marco'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054ca8"},"location":{"coordinates":[-74.001429,40.72152],"type":"Point"},"name":"Antique Garage"} +,{"_id":{"$oid":"55cba2476c522cafdb054ca9"},"location":{"coordinates":[-73.92749839999999,40.6923592],"type":"Point"},"name":"Yankari Square Soul 2 Soul"} +,{"_id":{"$oid":"55cba2476c522cafdb054caa"},"location":{"coordinates":[-73.9837737,40.5960915],"type":"Point"},"name":"King'S Buffet"} +,{"_id":{"$oid":"55cba2476c522cafdb054cab"},"location":{"coordinates":[-73.9857881,40.7560982],"type":"Point"},"name":"Conde Nast"} +,{"_id":{"$oid":"55cba2476c522cafdb054cac"},"location":{"coordinates":[-73.9074138,40.8873203],"type":"Point"},"name":"Ginger Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb054cad"},"location":{"coordinates":[-73.860027,40.746029],"type":"Point"},"name":"Mama'S Backyard"} +,{"_id":{"$oid":"55cba2476c522cafdb054cae"},"location":{"coordinates":[-92.72296209999999,41.746136],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054caf"},"location":{"coordinates":[-73.99026889999999,40.7494021],"type":"Point"},"name":"Bally'S Sport Club"} +,{"_id":{"$oid":"55cba2476c522cafdb054cb0"},"location":{"coordinates":[-73.91935409999999,40.7302689],"type":"Point"},"name":"Marchinis Homestyle Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb054cb1"},"location":{"coordinates":[-74.01533719999999,40.6406624],"type":"Point"},"name":"Sunset Ridge Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb054cb2"},"location":{"coordinates":[-73.9690707,40.7598169],"type":"Point"},"name":"Bumble \u0026 Bumble Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054cb3"},"location":{"coordinates":[-73.906622,40.7003879],"type":"Point"},"name":"Fresh Taco"} +,{"_id":{"$oid":"55cba2476c522cafdb054cb4"},"location":{"coordinates":[-73.9877719,40.6679969],"type":"Point"},"name":"Cafe Regular"} +,{"_id":{"$oid":"55cba2476c522cafdb054cb5"},"location":{"coordinates":[-74.00308129999999,40.68470800000001],"type":"Point"},"name":"Teeda Thai Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb054cb6"},"location":{"coordinates":[-74.1601481,40.5448741],"type":"Point"},"name":"Kingdom Cafe \u0026 Ristorante"} +,{"_id":{"$oid":"55cba2476c522cafdb054cb7"},"location":{"coordinates":[-73.8673587,40.7217882],"type":"Point"},"name":"Woodhaven House"} +,{"_id":{"$oid":"55cba2476c522cafdb054cb8"},"location":{"coordinates":[-73.9409297,40.698919],"type":"Point"},"name":"Peking Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb054cb9"},"location":{"coordinates":[-73.88069999999999,40.676949],"type":"Point"},"name":"China Sun"} +,{"_id":{"$oid":"55cba2476c522cafdb054cba"},"location":{"coordinates":[-74.0108765,40.7052927],"type":"Point"},"name":"Hale \u0026 Hearty Soups"} +,{"_id":{"$oid":"55cba2476c522cafdb054cbb"},"location":{"coordinates":[-73.7345981,40.7718142],"type":"Point"},"name":"Good Company Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb054cbc"},"location":{"coordinates":[-77.340572,40.1112976],"type":"Point"},"name":"Primo Cappuccino"} +,{"_id":{"$oid":"55cba2476c522cafdb054cbd"},"location":{"coordinates":[-73.87911249999999,40.8815584],"type":"Point"},"name":"Golden Krust Caribbean Bakery \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb054cbe"},"location":{"coordinates":[-73.8495835,40.5783868],"type":"Point"},"name":"Jamesons Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb054cbf"},"location":{"coordinates":[-73.9758614,40.7640238],"type":"Point"},"name":"Cafe Classico"} +,{"_id":{"$oid":"55cba2476c522cafdb054cc0"},"location":{"coordinates":[-73.93870319999999,40.8508873],"type":"Point"},"name":"Fort Washington Bakery And Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb054cc1"},"location":{"coordinates":[-74.14710000000001,40.540487],"type":"Point"},"name":"Luigi'S Dolceria"} +,{"_id":{"$oid":"55cba2476c522cafdb054cc2"},"location":{"coordinates":[-74.0004998,40.7316042],"type":"Point"},"name":"Galanga Thai Cooking"} +,{"_id":{"$oid":"55cba2476c522cafdb054cc3"},"location":{"coordinates":[-73.861355,40.692453],"type":"Point"},"name":"La Flor Del Paraiso Francy Restaurant #4"} +,{"_id":{"$oid":"55cba2476c522cafdb054cc4"},"location":{"coordinates":[-73.98782489999999,40.6666864],"type":"Point"},"name":"Lucky 13 Saloon"} +,{"_id":{"$oid":"55cba2476c522cafdb054cc5"},"location":{"coordinates":[-73.9782929,40.78373],"type":"Point"},"name":"Bettola"} +,{"_id":{"$oid":"55cba2476c522cafdb054cc6"},"location":{"coordinates":[-73.7029951,40.7521758],"type":"Point"},"name":"Mr. Lo Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb054cc7"},"location":{"coordinates":[-73.95896599999999,40.77148680000001],"type":"Point"},"name":"Bistro Le Steak"} +,{"_id":{"$oid":"55cba2476c522cafdb054cc8"},"location":{"coordinates":[-73.9378898,40.8472423],"type":"Point"},"name":"Floridita Restaurant Uptown"} +,{"_id":{"$oid":"55cba2476c522cafdb054cc9"},"location":{"coordinates":[-73.9308781,40.7660597],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb054cca"},"location":{"coordinates":[-74.1599138,40.5450843],"type":"Point"},"name":"Aka Sushi Japanese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054ccb"},"location":{"coordinates":[-73.8194893,40.70227089999999],"type":"Point"},"name":"Hong Kong Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054ccc"},"location":{"coordinates":[-73.9829104,40.7420053],"type":"Point"},"name":"Roomali"} +,{"_id":{"$oid":"55cba2476c522cafdb054ccd"},"location":{"coordinates":[-73.9944853,40.7522148],"type":"Point"},"name":"Chipotle Mexican Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb054cce"},"location":{"coordinates":[-73.94246729999999,40.7703199],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb054ccf"},"location":{"coordinates":[-74.10387589999999,40.6165153],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb054cd0"},"location":{"coordinates":[-74.1942382,40.5891765],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb054cd1"},"location":{"coordinates":[-74.2159118,40.5222021],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb054cd2"},"location":{"coordinates":[-73.9950167,40.7212855],"type":"Point"},"name":"Mother'S Ruin"} +,{"_id":{"$oid":"55cba2476c522cafdb054cd3"},"location":{"coordinates":[-73.936825,40.7261529],"type":"Point"},"name":"K \u0026 H Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb054cd4"},"location":{"coordinates":[-73.9774317,40.7568556],"type":"Point"},"name":"Cafe K"} +,{"_id":{"$oid":"55cba2476c522cafdb054cd5"},"location":{"coordinates":[-73.99862900000001,40.7158191],"type":"Point"},"name":"New Bo Ky Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054cd6"},"location":{"coordinates":[-73.937983,40.8438161],"type":"Point"},"name":"Elsa La Reyna Del Chicharron"} +,{"_id":{"$oid":"55cba2476c522cafdb054cd7"},"location":{"coordinates":[-74.1331891,40.56415930000001],"type":"Point"},"name":"Mike'S Oakwood Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb054cd8"},"location":{"coordinates":[-74.0040389,40.6508464],"type":"Point"},"name":"Viva Mexico"} +,{"_id":{"$oid":"55cba2476c522cafdb054cd9"},"location":{"coordinates":[-73.9670527,40.6934496],"type":"Point"},"name":"The Five Spot"} +,{"_id":{"$oid":"55cba2476c522cafdb054cda"},"location":{"coordinates":[-73.9189064,40.8654529],"type":"Point"},"name":"Tette Club"} +,{"_id":{"$oid":"55cba2476c522cafdb054cdb"},"location":{"coordinates":[-73.969594,40.765025],"type":"Point"},"name":"Links Club"} +,{"_id":{"$oid":"55cba2476c522cafdb054cdc"},"location":{"coordinates":[-74.00238949999999,40.7275178],"type":"Point"},"name":"12 Chairs"} +,{"_id":{"$oid":"55cba2476c522cafdb054cdd"},"location":{"coordinates":[-73.97226859999999,40.7518562],"type":"Point"},"name":"Overlook"} +,{"_id":{"$oid":"55cba2476c522cafdb054cde"},"location":{"coordinates":[-73.99371909999999,40.68145980000001],"type":"Point"},"name":"Kittery"} +,{"_id":{"$oid":"55cba2476c522cafdb054cdf"},"location":{"coordinates":[-73.984144,40.7260744],"type":"Point"},"name":"Pylos"} +,{"_id":{"$oid":"55cba2476c522cafdb054ce0"},"location":{"coordinates":[-73.9972213,40.7159365],"type":"Point"},"name":"Oriental Garden Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054ce1"},"location":{"coordinates":[-73.80530929999999,40.7209556],"type":"Point"},"name":"Papa John'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054ce2"},"location":{"coordinates":[-73.948306,40.809688],"type":"Point"},"name":"The Alhambra Ball Room"} +,{"_id":{"$oid":"55cba2476c522cafdb054ce3"},"location":{"coordinates":[-73.9884568,40.7291409],"type":"Point"},"name":"Kenka"} +,{"_id":{"$oid":"55cba2476c522cafdb054ce4"},"location":{"coordinates":[-74.23458339999999,40.5219301],"type":"Point"},"name":"Brothers Pizza Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb054ce5"},"location":{"coordinates":[-74.00725299999999,40.718485],"type":"Point"},"name":"Square Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb054ce6"},"location":{"coordinates":[-73.9871338,40.7605783],"type":"Point"},"name":"Starbucks Coffee (#2785)"} +,{"_id":{"$oid":"55cba2476c522cafdb054ce7"},"location":{"coordinates":[-74.00545799999999,40.7404266],"type":"Point"},"name":"Dos Caminos"} +,{"_id":{"$oid":"55cba2476c522cafdb054ce8"},"location":{"coordinates":[-73.85414899999999,40.754572],"type":"Point"},"name":"Pine Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054ce9"},"location":{"coordinates":[-73.97945949999999,40.6782989],"type":"Point"},"name":"Los Pollitos Restaurant Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb054cea"},"location":{"coordinates":[-73.854432,40.743127],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb054ceb"},"location":{"coordinates":[-73.9734521,40.7930483],"type":"Point"},"name":"Europan Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054cec"},"location":{"coordinates":[-73.988226,40.724635],"type":"Point"},"name":"Umi No Ie"} +,{"_id":{"$oid":"55cba2476c522cafdb054ced"},"location":{"coordinates":[-73.95805639999999,40.7178223],"type":"Point"},"name":"Spike Hill"} +,{"_id":{"$oid":"55cba2476c522cafdb054cee"},"location":{"coordinates":[-73.9827037,40.7684141],"type":"Point"},"name":"Jamba Juice"} +,{"_id":{"$oid":"55cba2476c522cafdb054cef"},"location":{"coordinates":[-73.8966524,40.8162031],"type":"Point"},"name":"New Red Star"} +,{"_id":{"$oid":"55cba2476c522cafdb054cf0"},"location":{"coordinates":[-73.9827037,40.7684141],"type":"Point"},"name":"Barmasa / Masa"} +,{"_id":{"$oid":"55cba2476c522cafdb054cf1"},"location":{"coordinates":[-73.9919802,40.7535985],"type":"Point"},"name":"Pax Wholesome Foods"} +,{"_id":{"$oid":"55cba2476c522cafdb054cf2"},"location":{"coordinates":[-73.990494,40.7569545],"type":"Point"},"name":"Frames Bowling Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb054cf3"},"location":{"coordinates":[-74.00829399999999,40.650109],"type":"Point"},"name":"Sunset Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb054cf4"},"location":{"coordinates":[-73.9319127,40.851428],"type":"Point"},"name":"Marisco Centro Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054cf5"},"location":{"coordinates":[-73.9827037,40.7684141],"type":"Point"},"name":"Stone Rose Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb054cf6"},"location":{"coordinates":[-73.8789604,40.8286012],"type":"Point"},"name":"National Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb054cf7"},"location":{"coordinates":[-74.007054,40.717897],"type":"Point"},"name":"Landmarc"} +,{"_id":{"$oid":"55cba2476c522cafdb054cf8"},"location":{"coordinates":[-73.9369043,40.8429045],"type":"Point"},"name":"Tu Sonrisa"} +,{"_id":{"$oid":"55cba2476c522cafdb054cf9"},"location":{"coordinates":[-73.986565,40.7307119],"type":"Point"},"name":"Kanoyama"} +,{"_id":{"$oid":"55cba2476c522cafdb054cfa"},"location":{"coordinates":[-73.7863205,40.7273097],"type":"Point"},"name":"Benny'S Kosher Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054cfb"},"location":{"coordinates":[-73.9827037,40.7684141],"type":"Point"},"name":"Per Se"} +,{"_id":{"$oid":"55cba2476c522cafdb054cfc"},"location":{"coordinates":[-73.764453,40.700457],"type":"Point"},"name":"Kriss West Indian Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054cfd"},"location":{"coordinates":[-73.8495236,40.7327464],"type":"Point"},"name":"Fortuna"} +,{"_id":{"$oid":"55cba2476c522cafdb054cfe"},"location":{"coordinates":[-74.23595399999999,40.514565],"type":"Point"},"name":"Aloysia'S Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb054cff"},"location":{"coordinates":[-73.9180155,40.7427742],"type":"Point"},"name":"Mangal Kebab Turkish Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054d00"},"location":{"coordinates":[-73.8436368,40.6846444],"type":"Point"},"name":"El Viejo Yayo Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054d01"},"location":{"coordinates":[-73.7436361,40.6968778],"type":"Point"},"name":"Hot Pot Jamaican \u0026 American Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb054d02"},"location":{"coordinates":[-73.878599,40.6815349],"type":"Point"},"name":"Alice'S Palace"} +,{"_id":{"$oid":"55cba2476c522cafdb054d03"},"location":{"coordinates":[-74.0046663,40.7294869],"type":"Point"},"name":"Cafe Espanol"} +,{"_id":{"$oid":"55cba2476c522cafdb054d04"},"location":{"coordinates":[-74.009745,40.7048088],"type":"Point"},"name":"Underground Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054d05"},"location":{"coordinates":[-73.790887,40.6430002],"type":"Point"},"name":"Panini Express Gate 2"} +,{"_id":{"$oid":"55cba2476c522cafdb054d06"},"location":{"coordinates":[-73.9411366,40.5835326],"type":"Point"},"name":"Liman Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054d07"},"location":{"coordinates":[-74.0032257,40.7191286],"type":"Point"},"name":"M1-5"} +,{"_id":{"$oid":"55cba2476c522cafdb054d08"},"location":{"coordinates":[-73.98712499999999,40.639446],"type":"Point"},"name":"Nesher Fine Foods"} +,{"_id":{"$oid":"55cba2476c522cafdb054d09"},"location":{"coordinates":[-73.995442,40.720966],"type":"Point"},"name":"Lasso"} +,{"_id":{"$oid":"55cba2476c522cafdb054d0a"},"location":{"coordinates":[-73.97073379999999,40.7571834],"type":"Point"},"name":"Chipotle Mexican Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb054d0b"},"location":{"coordinates":[-73.91544309999999,40.7460806],"type":"Point"},"name":"Murphy'S Bar/Sea Food House"} +,{"_id":{"$oid":"55cba2476c522cafdb054d0c"},"location":{"coordinates":[-73.8174255,40.7184524],"type":"Point"},"name":"Bellerose Famous Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054d0d"},"location":{"coordinates":[-73.965332,40.758768],"type":"Point"},"name":"Cafe Daniellos Pizzeria Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054d0e"},"location":{"coordinates":[-73.9750229,40.639262],"type":"Point"},"name":"Minca"} +,{"_id":{"$oid":"55cba2476c522cafdb054d0f"},"location":{"coordinates":[-73.8316954,40.7149853],"type":"Point"},"name":"L'Amour"} +,{"_id":{"$oid":"55cba2476c522cafdb054d10"},"location":{"coordinates":[-73.965671,40.710686],"type":"Point"},"name":"Marlow And Sons"} +,{"_id":{"$oid":"55cba2476c522cafdb054d11"},"location":{"coordinates":[-73.9440848,40.8194187],"type":"Point"},"name":"Londel'S Supper Club"} +,{"_id":{"$oid":"55cba2476c522cafdb054d12"},"location":{"coordinates":[-74.1622795,40.6263419],"type":"Point"},"name":"Dominican Food R. A. Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb054d13"},"location":{"coordinates":[-73.978337,40.783671],"type":"Point"},"name":"Tolani"} +,{"_id":{"$oid":"55cba2476c522cafdb054d14"},"location":{"coordinates":[-73.9530791,40.7806007],"type":"Point"},"name":"Uptown"} +,{"_id":{"$oid":"55cba2476c522cafdb054d15"},"location":{"coordinates":[-73.91690109999999,40.7672356],"type":"Point"},"name":"Rapture Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb054d16"},"location":{"coordinates":[-73.9774978,40.7471304],"type":"Point"},"name":"Barbes"} +,{"_id":{"$oid":"55cba2476c522cafdb054d17"},"location":{"coordinates":[-73.9874464,40.6908383],"type":"Point"},"name":"The Brooklyn Tabernacle"} +,{"_id":{"$oid":"55cba2476c522cafdb054d18"},"location":{"coordinates":[-73.9534644,40.77834989999999],"type":"Point"},"name":"East 86 Cinemas"} +,{"_id":{"$oid":"55cba2476c522cafdb054d19"},"location":{"coordinates":[-73.9783656,40.7619177],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb054d1a"},"location":{"coordinates":[-73.968717,40.7995038],"type":"Point"},"name":"Yakitori Sun-Chan"} +,{"_id":{"$oid":"55cba2476c522cafdb054d1b"},"location":{"coordinates":[-73.8692402,40.7488564],"type":"Point"},"name":"Tulcingo Deli 111"} +,{"_id":{"$oid":"55cba2476c522cafdb054d1c"},"location":{"coordinates":[-73.98443,40.725358],"type":"Point"},"name":"Drom"} +,{"_id":{"$oid":"55cba2476c522cafdb054d1d"},"location":{"coordinates":[-73.7822056,40.6434612],"type":"Point"},"name":"Virgin Atlantic Club House"} +,{"_id":{"$oid":"55cba2476c522cafdb054d1e"},"location":{"coordinates":[-73.8776973,40.872353],"type":"Point"},"name":"Mexicana Deli Grocery"} +,{"_id":{"$oid":"55cba2476c522cafdb054d1f"},"location":{"coordinates":[-73.86827989999999,40.7420176],"type":"Point"},"name":"Mini Picanteria El Guayaquileno Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054d20"},"location":{"coordinates":[-73.8657891,40.69172],"type":"Point"},"name":"New Lane Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb054d21"},"location":{"coordinates":[-74.0066567,40.7356332],"type":"Point"},"name":"The Spotted Pig"} +,{"_id":{"$oid":"55cba2476c522cafdb054d22"},"location":{"coordinates":[-74.000663,40.735351],"type":"Point"},"name":"Wogies"} +,{"_id":{"$oid":"55cba2476c522cafdb054d23"},"location":{"coordinates":[-73.987443,40.74033499999999],"type":"Point"},"name":"Mozzarelli'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054d24"},"location":{"coordinates":[-74.0080128,40.737826],"type":"Point"},"name":"Barbuto"} +,{"_id":{"$oid":"55cba2476c522cafdb054d25"},"location":{"coordinates":[-73.9644017,40.6938548],"type":"Point"},"name":"Castro'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054d26"},"location":{"coordinates":[-73.950973,40.6636776],"type":"Point"},"name":"Golden Krust Caribbean Bakery \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb054d27"},"location":{"coordinates":[-73.9924381,40.738917],"type":"Point"},"name":"The City Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb054d28"},"location":{"coordinates":[-73.9308027,40.6745298],"type":"Point"},"name":"China Garden Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054d29"},"location":{"coordinates":[-73.9674558,40.6736505],"type":"Point"},"name":"Bar Sepia"} +,{"_id":{"$oid":"55cba2476c522cafdb054d2a"},"location":{"coordinates":[-73.81701699999999,40.754444],"type":"Point"},"name":"Yummy House"} +,{"_id":{"$oid":"55cba2476c522cafdb054d2b"},"location":{"coordinates":[-73.9513659,40.6426492],"type":"Point"},"name":"Chez Macoule Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054d2c"},"location":{"coordinates":[-73.99283199999999,40.724811],"type":"Point"},"name":"Slainte"} +,{"_id":{"$oid":"55cba2476c522cafdb054d2d"},"location":{"coordinates":[-73.9855741,40.7623091],"type":"Point"},"name":"Toloache Mexican Bistro"} +,{"_id":{"$oid":"55cba2476c522cafdb054d2e"},"location":{"coordinates":[-73.992171,40.740424],"type":"Point"},"name":"Tbsp"} +,{"_id":{"$oid":"55cba2476c522cafdb054d2f"},"location":{"coordinates":[-73.9831882,40.7684252],"type":"Point"},"name":"Time Warner(Cafeteria)"} +,{"_id":{"$oid":"55cba2476c522cafdb054d30"},"location":{"coordinates":[-73.91670189999999,40.8323228],"type":"Point"},"name":"Halal Coffee Shop Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054d31"},"location":{"coordinates":[-73.9652929,40.8004778],"type":"Point"},"name":"Mama'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb054d32"},"location":{"coordinates":[-73.9167878,40.7649767],"type":"Point"},"name":"Era Cafe And Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb054d33"},"location":{"coordinates":[-73.9583105,40.7173302],"type":"Point"},"name":"New York Muffins"} +,{"_id":{"$oid":"55cba2476c522cafdb054d34"},"location":{"coordinates":[-73.8799003,40.7480787],"type":"Point"},"name":"La Casa Del Pollo Peruano"} +,{"_id":{"$oid":"55cba2476c522cafdb054d35"},"location":{"coordinates":[-73.9839779,40.765709],"type":"Point"},"name":"Rumours"} +,{"_id":{"$oid":"55cba2476c522cafdb054d36"},"location":{"coordinates":[-73.90384639999999,40.622173],"type":"Point"},"name":"Billiard Club"} +,{"_id":{"$oid":"55cba2476c522cafdb054d37"},"location":{"coordinates":[-74.236158,40.5179157],"type":"Point"},"name":"Docks Clam Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054d38"},"location":{"coordinates":[-73.86176999999999,40.826315],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054d39"},"location":{"coordinates":[-73.9862536,40.7585799],"type":"Point"},"name":"Starbucks Coffee (@ The Marriott)"} +,{"_id":{"$oid":"55cba2476c522cafdb054d3a"},"location":{"coordinates":[-73.8280729,40.8777171],"type":"Point"},"name":"Gourmet To Go"} +,{"_id":{"$oid":"55cba2476c522cafdb054d3b"},"location":{"coordinates":[-73.9838072,40.7599711],"type":"Point"},"name":"Tonic Times Square"} +,{"_id":{"$oid":"55cba2476c522cafdb054d3c"},"location":{"coordinates":[-73.9004573,40.9053626],"type":"Point"},"name":"Beccofino"} +,{"_id":{"$oid":"55cba2476c522cafdb054d3d"},"location":{"coordinates":[-73.9804528,40.7213786],"type":"Point"},"name":"Yoli Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054d3e"},"location":{"coordinates":[-73.98185029999999,40.7143046],"type":"Point"},"name":"El Castillo De Jagua #2"} +,{"_id":{"$oid":"55cba2476c522cafdb054d3f"},"location":{"coordinates":[-73.8706606,40.7342757],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb054d40"},"location":{"coordinates":[-73.982908,40.767363],"type":"Point"},"name":"Starbucks Coffee (Store #8614)"} +,{"_id":{"$oid":"55cba2476c522cafdb054d41"},"location":{"coordinates":[-73.9612503,40.5779152],"type":"Point"},"name":"Starbucks Coffee #3438"} +,{"_id":{"$oid":"55cba2476c522cafdb054d42"},"location":{"coordinates":[-73.9190555,40.7414223],"type":"Point"},"name":"Reyes Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054d43"},"location":{"coordinates":[-74.02749399999999,40.617387],"type":"Point"},"name":"Landy Pizzeria Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054d44"},"location":{"coordinates":[-73.868657,40.757586],"type":"Point"},"name":"Pariscien Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb054d45"},"location":{"coordinates":[-74.00325389999999,40.7336708],"type":"Point"},"name":"Fat Cat Billiards"} +,{"_id":{"$oid":"55cba2476c522cafdb054d46"},"location":{"coordinates":[-74.0135458,40.7034442],"type":"Point"},"name":"Battery Gardens Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054d47"},"location":{"coordinates":[-73.9804846,40.7645475],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb054d48"},"location":{"coordinates":[-73.818654,40.7506126],"type":"Point"},"name":"Carnation Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb054d49"},"location":{"coordinates":[-74.0039219,40.7293287],"type":"Point"},"name":"Mas (Farmhouse)"} +,{"_id":{"$oid":"55cba2476c522cafdb054d4a"},"location":{"coordinates":[-74.008369,40.647392],"type":"Point"},"name":"El Castillo De Jaque Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054d4b"},"location":{"coordinates":[-73.94423119999999,40.7149741],"type":"Point"},"name":"Carmine'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054d4c"},"location":{"coordinates":[-73.963032,40.69217],"type":"Point"},"name":"Pratt Institute North"} +,{"_id":{"$oid":"55cba2476c522cafdb054d4d"},"location":{"coordinates":[-74.109179,40.569069],"type":"Point"},"name":"Applebee'S Neighborhood Grill \u0026 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054d4e"},"location":{"coordinates":[-73.9829934,40.7579008],"type":"Point"},"name":"Harold \u0026 Miriam Steinberg Center For Theatre"} +,{"_id":{"$oid":"55cba2476c522cafdb054d4f"},"location":{"coordinates":[-74.00386680000001,40.7141052],"type":"Point"},"name":"Corte Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054d50"},"location":{"coordinates":[-73.977402,40.747221],"type":"Point"},"name":"Ethos Meze"} +,{"_id":{"$oid":"55cba2476c522cafdb054d51"},"location":{"coordinates":[-73.8827981,40.6807538],"type":"Point"},"name":"Caterina Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054d52"},"location":{"coordinates":[-73.9979815,40.7145966],"type":"Point"},"name":"Sanur Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054d53"},"location":{"coordinates":[-74.0277717,40.6221135],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054d54"},"location":{"coordinates":[-73.9575618,40.712827],"type":"Point"},"name":"Bozu"} +,{"_id":{"$oid":"55cba2476c522cafdb054d55"},"location":{"coordinates":[-73.71409589999999,40.7357386],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb054d56"},"location":{"coordinates":[-73.7840789,40.8376345],"type":"Point"},"name":"Morris Yacht \u0026 Beach Club"} +,{"_id":{"$oid":"55cba2476c522cafdb054d57"},"location":{"coordinates":[-73.753568,40.678901],"type":"Point"},"name":"Jamaican Flavors"} +,{"_id":{"$oid":"55cba2476c522cafdb054d58"},"location":{"coordinates":[-73.9996702,40.7578724],"type":"Point"},"name":"Hq Club"} +,{"_id":{"$oid":"55cba2476c522cafdb054d59"},"location":{"coordinates":[-73.9646151,40.7109088],"type":"Point"},"name":"East River"} +,{"_id":{"$oid":"55cba2476c522cafdb054d5a"},"location":{"coordinates":[-73.8599831,40.8880664],"type":"Point"},"name":"New Lin'S Garden Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054d5b"},"location":{"coordinates":[-73.8032065,40.674532],"type":"Point"},"name":"Satguru Sweets \u0026 Catering"} +,{"_id":{"$oid":"55cba2476c522cafdb054d5c"},"location":{"coordinates":[-73.95251999999999,40.5772469],"type":"Point"},"name":"Anyway Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054d5d"},"location":{"coordinates":[-73.9779183,40.7782965],"type":"Point"},"name":"Tenzan Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb054d5e"},"location":{"coordinates":[-73.8706606,40.7342757],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054d5f"},"location":{"coordinates":[-73.9585074,40.7437268],"type":"Point"},"name":"Riverview Restaurant \u0026 Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb054d60"},"location":{"coordinates":[-73.99509019999999,40.6835769],"type":"Point"},"name":"Sal'S Pizza \u0026 Mamma Maria Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054d61"},"location":{"coordinates":[-73.9891847,40.7576269],"type":"Point"},"name":"Europan Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054d62"},"location":{"coordinates":[-74.00208219999999,40.7076928],"type":"Point"},"name":"Jeremy'S Ale House"} +,{"_id":{"$oid":"55cba2476c522cafdb054d63"},"location":{"coordinates":[-73.8268925,40.7607315],"type":"Point"},"name":"Kimganae Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054d64"},"location":{"coordinates":[-73.99873319999999,40.7292418],"type":"Point"},"name":"The Dove Parlour"} +,{"_id":{"$oid":"55cba2476c522cafdb054d65"},"location":{"coordinates":[-73.8706606,40.7342757],"type":"Point"},"name":"Big Easy Cajun"} +,{"_id":{"$oid":"55cba2476c522cafdb054d66"},"location":{"coordinates":[-73.969642,40.6904512],"type":"Point"},"name":"Graziella'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054d67"},"location":{"coordinates":[-73.8785529,40.7637805],"type":"Point"},"name":"Airways Pizza \u0026 Gyro Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054d68"},"location":{"coordinates":[-73.9344242,40.8480328],"type":"Point"},"name":"El Panadero Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb054d69"},"location":{"coordinates":[-73.9816227,40.6878034],"type":"Point"},"name":"Angelica Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb054d6a"},"location":{"coordinates":[-73.92955239999999,40.7374789],"type":"Point"},"name":"Tropical Ii Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054d6b"},"location":{"coordinates":[-73.994547,40.722619],"type":"Point"},"name":"Jacques 1534"} +,{"_id":{"$oid":"55cba2476c522cafdb054d6c"},"location":{"coordinates":[-74.14248049999999,40.5426895],"type":"Point"},"name":"Coles Dock Side Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054d6d"},"location":{"coordinates":[-73.97635,40.762504],"type":"Point"},"name":"The Shoreham Hotel"} +,{"_id":{"$oid":"55cba2476c522cafdb054d6e"},"location":{"coordinates":[-74.0037835,40.733008],"type":"Point"},"name":"Cafe Angelique"} +,{"_id":{"$oid":"55cba2476c522cafdb054d6f"},"location":{"coordinates":[-73.95805899999999,40.769701],"type":"Point"},"name":"Bounce Restaurant\u0026Sports Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb054d70"},"location":{"coordinates":[-73.8217281,40.7264518],"type":"Point"},"name":"Sushi Metsuyan"} +,{"_id":{"$oid":"55cba2476c522cafdb054d71"},"location":{"coordinates":[-73.9598948,40.6549662],"type":"Point"},"name":"Peppas Jerk Chicken Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054d72"},"location":{"coordinates":[-74.0287156,40.6298587],"type":"Point"},"name":"Peppino'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054d73"},"location":{"coordinates":[-73.9981203,40.6049577],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054d74"},"location":{"coordinates":[-73.9944094,40.6804241],"type":"Point"},"name":"Brooklyn Social"} +,{"_id":{"$oid":"55cba2476c522cafdb054d75"},"location":{"coordinates":[-73.9289222,40.6150406],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054d76"},"location":{"coordinates":[-73.98896979999999,40.5993181],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054d77"},"location":{"coordinates":[-73.983334,40.74599],"type":"Point"},"name":"Captain'S Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054d78"},"location":{"coordinates":[-73.857496,40.8865989],"type":"Point"},"name":"Blue Horizon Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb054d79"},"location":{"coordinates":[-73.9634899,40.677599],"type":"Point"},"name":"Gen Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054d7a"},"location":{"coordinates":[-74.01143259999999,40.708882],"type":"Point"},"name":"Panini \u0026 Co"} +,{"_id":{"$oid":"55cba2476c522cafdb054d7b"},"location":{"coordinates":[-74.006624,40.740834],"type":"Point"},"name":"Bumble And Bumble"} +,{"_id":{"$oid":"55cba2476c522cafdb054d7c"},"location":{"coordinates":[-73.729096,40.6738969],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054d7d"},"location":{"coordinates":[-74.0103057,40.7044404],"type":"Point"},"name":"Smorgas Chef/ Crepes Du Nord"} +,{"_id":{"$oid":"55cba2476c522cafdb054d7e"},"location":{"coordinates":[-73.83460149999999,40.7695368],"type":"Point"},"name":"Uncle Bill'S Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb054d7f"},"location":{"coordinates":[-73.98433,40.689988],"type":"Point"},"name":"Fulton Hot Dog King"} +,{"_id":{"$oid":"55cba2476c522cafdb054d80"},"location":{"coordinates":[-73.9814849,40.7564835],"type":"Point"},"name":"Little Italy Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054d81"},"location":{"coordinates":[-73.990022,40.76092],"type":"Point"},"name":"The House Of Brews"} +,{"_id":{"$oid":"55cba2476c522cafdb054d82"},"location":{"coordinates":[-73.99217589999999,40.7554779],"type":"Point"},"name":"Sharan Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb054d83"},"location":{"coordinates":[-74.1114451,40.5813032],"type":"Point"},"name":"Cucina Fresca"} +,{"_id":{"$oid":"55cba2476c522cafdb054d84"},"location":{"coordinates":[-73.8706606,40.7342757],"type":"Point"},"name":"Haagen-Dazs"} +,{"_id":{"$oid":"55cba2476c522cafdb054d85"},"location":{"coordinates":[-74.00343,40.737976],"type":"Point"},"name":"Grounded"} +,{"_id":{"$oid":"55cba2476c522cafdb054d86"},"location":{"coordinates":[-73.9992659,40.7221438],"type":"Point"},"name":"Forty Carrots"} +,{"_id":{"$oid":"55cba2476c522cafdb054d87"},"location":{"coordinates":[-73.96932029999999,40.6892884],"type":"Point"},"name":"Ici"} +,{"_id":{"$oid":"55cba2476c522cafdb054d88"},"location":{"coordinates":[-73.9888296,40.7591212],"type":"Point"},"name":"Lybane Bar Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054d89"},"location":{"coordinates":[-73.96353500000001,40.7612039],"type":"Point"},"name":"Blue Room"} +,{"_id":{"$oid":"55cba2476c522cafdb054d8a"},"location":{"coordinates":[-74.02729819999999,40.6331883],"type":"Point"},"name":"Polonica Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054d8b"},"location":{"coordinates":[-73.8317632,40.7068069],"type":"Point"},"name":"Homestead Gourmet Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb054d8c"},"location":{"coordinates":[-74.00002099999999,40.728844],"type":"Point"},"name":"Fiore'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054d8d"},"location":{"coordinates":[-73.82240270000001,40.7572504],"type":"Point"},"name":"Venice Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054d8e"},"location":{"coordinates":[-73.8204162,40.724246],"type":"Point"},"name":"Grill Point"} +,{"_id":{"$oid":"55cba2476c522cafdb054d8f"},"location":{"coordinates":[-74.00172409999999,40.7360403],"type":"Point"},"name":"Village Vanguard"} +,{"_id":{"$oid":"55cba2476c522cafdb054d90"},"location":{"coordinates":[-74.1211864,40.6128461],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb054d91"},"location":{"coordinates":[-73.8542579,40.8544876],"type":"Point"},"name":"Sorrento'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb054d92"},"location":{"coordinates":[-73.958015,40.765515],"type":"Point"},"name":"Le Gourmet"} +,{"_id":{"$oid":"55cba2476c522cafdb054d93"},"location":{"coordinates":[-74.0031463,40.73542],"type":"Point"},"name":"Extra Virgin"} +,{"_id":{"$oid":"55cba2476c522cafdb054d94"},"location":{"coordinates":[-73.9531148,40.7764372],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb054d95"},"location":{"coordinates":[-73.9802208,40.760996],"type":"Point"},"name":"Mastro'S Steakhouse"} +,{"_id":{"$oid":"55cba2476c522cafdb054d96"},"location":{"coordinates":[-73.98728899999999,40.7621772],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb054d97"},"location":{"coordinates":[-73.9904423,40.66876389999999],"type":"Point"},"name":"Cantina"} +,{"_id":{"$oid":"55cba2476c522cafdb054d98"},"location":{"coordinates":[-73.998391,40.7450103],"type":"Point"},"name":"The Fork Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb054d99"},"location":{"coordinates":[-73.90699400000001,40.82779],"type":"Point"},"name":"Jalloh Family Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054d9a"},"location":{"coordinates":[-73.9080479,40.7045944],"type":"Point"},"name":"La Canoa"} +,{"_id":{"$oid":"55cba2476c522cafdb054d9b"},"location":{"coordinates":[-73.9779135,40.7555489],"type":"Point"},"name":"Food World"} +,{"_id":{"$oid":"55cba2476c522cafdb054d9c"},"location":{"coordinates":[-74.10148199999999,40.588875],"type":"Point"},"name":"5 Th \u0026 Vine"} +,{"_id":{"$oid":"55cba2476c522cafdb054d9d"},"location":{"coordinates":[-73.9957094,40.6908241],"type":"Point"},"name":"Floyd, Ny"} +,{"_id":{"$oid":"55cba2476c522cafdb054d9e"},"location":{"coordinates":[-73.9367092,40.6928844],"type":"Point"},"name":"Great Wall Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb054d9f"},"location":{"coordinates":[-73.8087286,40.7639199],"type":"Point"},"name":"Mekong Thai And Vietnamese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054da0"},"location":{"coordinates":[-73.9833874,40.6730075],"type":"Point"},"name":"Stone Park Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054da1"},"location":{"coordinates":[-74.009407,40.7088048],"type":"Point"},"name":"Pound And Pence"} +,{"_id":{"$oid":"55cba2476c522cafdb054da2"},"location":{"coordinates":[-73.9567587,40.8020314],"type":"Point"},"name":"Szechuan Garden Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb054da3"},"location":{"coordinates":[-73.9599035,40.7184748],"type":"Point"},"name":"Zablozkis"} +,{"_id":{"$oid":"55cba2476c522cafdb054da4"},"location":{"coordinates":[-73.99503949999999,40.7195657],"type":"Point"},"name":"The Randolph At Broome"} +,{"_id":{"$oid":"55cba2476c522cafdb054da5"},"location":{"coordinates":[-73.841836,40.6954769],"type":"Point"},"name":"Bicheiro'S Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054da6"},"location":{"coordinates":[-73.9986093,40.7170734],"type":"Point"},"name":"Mulberry Street Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054da7"},"location":{"coordinates":[-73.982804,40.734828],"type":"Point"},"name":"Posto"} +,{"_id":{"$oid":"55cba2476c522cafdb054da8"},"location":{"coordinates":[-73.9186543,40.7702297],"type":"Point"},"name":"Jimbo'S Bar \u0026 Restauraunt"} +,{"_id":{"$oid":"55cba2476c522cafdb054da9"},"location":{"coordinates":[-73.9704993,40.7634424],"type":"Point"},"name":"59E59 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054daa"},"location":{"coordinates":[-73.8942781,40.7267985],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054dab"},"location":{"coordinates":[-73.9097001,40.71333449999999],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054dac"},"location":{"coordinates":[-73.82399,40.686568],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054dad"},"location":{"coordinates":[-73.993076,40.74444099999999],"type":"Point"},"name":"Johny'S Luncheonette"} +,{"_id":{"$oid":"55cba2476c522cafdb054dae"},"location":{"coordinates":[-74.07586599999999,40.6321422],"type":"Point"},"name":"Karl'S Klipper"} +,{"_id":{"$oid":"55cba2476c522cafdb054daf"},"location":{"coordinates":[-73.81472409999999,40.7023339],"type":"Point"},"name":"Subway/Carvel"} +,{"_id":{"$oid":"55cba2476c522cafdb054db0"},"location":{"coordinates":[-73.98849,40.726909],"type":"Point"},"name":"Kabin Bar \u0026 Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb054db1"},"location":{"coordinates":[-73.9550194,40.7695105],"type":"Point"},"name":"Good Health Natural Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054db2"},"location":{"coordinates":[-73.936071,40.7955789],"type":"Point"},"name":"Camaradas El Barrio"} +,{"_id":{"$oid":"55cba2476c522cafdb054db3"},"location":{"coordinates":[-73.983729,40.732073],"type":"Point"},"name":"Crocodile Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb054db4"},"location":{"coordinates":[-73.9980537,40.6773756],"type":"Point"},"name":"Frankies 457"} +,{"_id":{"$oid":"55cba2476c522cafdb054db5"},"location":{"coordinates":[-73.98476889999999,40.6939693],"type":"Point"},"name":"Luciano'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054db6"},"location":{"coordinates":[-73.96299499999999,40.768901],"type":"Point"},"name":"Neil'S Cofee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb054db7"},"location":{"coordinates":[-74.008443,40.740766],"type":"Point"},"name":"Brass Monkey"} +,{"_id":{"$oid":"55cba2476c522cafdb054db8"},"location":{"coordinates":[-73.87818539999999,40.8286589],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054db9"},"location":{"coordinates":[-73.9536999,40.7425499],"type":"Point"},"name":"Cafe Henri"} +,{"_id":{"$oid":"55cba2476c522cafdb054dba"},"location":{"coordinates":[-73.9834336,40.7476755],"type":"Point"},"name":"Guy \u0026 Gallard 8"} +,{"_id":{"$oid":"55cba2476c522cafdb054dbb"},"location":{"coordinates":[-73.9862038,40.747189],"type":"Point"},"name":"Pho 32 \u0026 Shabu"} +,{"_id":{"$oid":"55cba2476c522cafdb054dbc"},"location":{"coordinates":[-73.9848465,40.7614796],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb054dbd"},"location":{"coordinates":[-73.8807514,40.7019497],"type":"Point"},"name":"Dunkin' Donuts, Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb054dbe"},"location":{"coordinates":[-73.940676,40.793522],"type":"Point"},"name":"Ricardo Steak House"} +,{"_id":{"$oid":"55cba2476c522cafdb054dbf"},"location":{"coordinates":[-73.99640219999999,40.7223027],"type":"Point"},"name":"Ruby'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054dc0"},"location":{"coordinates":[-73.82768949999999,40.8863622],"type":"Point"},"name":"Cozy Cottage Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054dc1"},"location":{"coordinates":[-74.0020749,40.6251782],"type":"Point"},"name":"Meze"} +,{"_id":{"$oid":"55cba2476c522cafdb054dc2"},"location":{"coordinates":[-73.9881175,40.7529827],"type":"Point"},"name":"Shamas Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb054dc3"},"location":{"coordinates":[-73.9848427,40.7286337],"type":"Point"},"name":"Luzzo'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054dc4"},"location":{"coordinates":[-73.994126,40.6865809],"type":"Point"},"name":"Lobo"} +,{"_id":{"$oid":"55cba2476c522cafdb054dc5"},"location":{"coordinates":[-73.9406401,40.75412],"type":"Point"},"name":"New Dawn Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054dc6"},"location":{"coordinates":[-73.81217649999999,40.7900876],"type":"Point"},"name":"Caffe Italia"} +,{"_id":{"$oid":"55cba2476c522cafdb054dc7"},"location":{"coordinates":[-73.99953599999999,40.732092],"type":"Point"},"name":"Progressive Era Association"} +,{"_id":{"$oid":"55cba2476c522cafdb054dc8"},"location":{"coordinates":[-73.9539762,40.8056949],"type":"Point"},"name":"Lee Lee'S Baked Goods"} +,{"_id":{"$oid":"55cba2476c522cafdb054dc9"},"location":{"coordinates":[-73.9845234,40.6947698],"type":"Point"},"name":"Cafe Metro"} +,{"_id":{"$oid":"55cba2476c522cafdb054dca"},"location":{"coordinates":[-73.988694,40.760354],"type":"Point"},"name":"Bistecca Fiorentina Steak"} +,{"_id":{"$oid":"55cba2476c522cafdb054dcb"},"location":{"coordinates":[-74.005501,40.632799],"type":"Point"},"name":"Sai'S Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054dcc"},"location":{"coordinates":[-73.86035470000002,40.8751911],"type":"Point"},"name":"D'Angelo'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054dcd"},"location":{"coordinates":[-73.979547,40.755885],"type":"Point"},"name":"Smilers"} +,{"_id":{"$oid":"55cba2476c522cafdb054dce"},"location":{"coordinates":[-74.09208439999999,40.5860792],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb054dcf"},"location":{"coordinates":[-73.9933012,40.7482087],"type":"Point"},"name":"Swagat Indian Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054dd0"},"location":{"coordinates":[-73.8584103,40.86306039999999],"type":"Point"},"name":"Pregos Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054dd1"},"location":{"coordinates":[-73.9989464,40.7452401],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb054dd2"},"location":{"coordinates":[-73.90317499999999,40.7653177],"type":"Point"},"name":"Bulova"} +,{"_id":{"$oid":"55cba2476c522cafdb054dd3"},"location":{"coordinates":[-73.9810495,40.7539609],"type":"Point"},"name":"Jamba Juice"} +,{"_id":{"$oid":"55cba2476c522cafdb054dd4"},"location":{"coordinates":[-73.985012,40.7596817],"type":"Point"},"name":"Jamba Juice"} +,{"_id":{"$oid":"55cba2476c522cafdb054dd5"},"location":{"coordinates":[-73.984763,40.72712],"type":"Point"},"name":"Dumpling Man"} +,{"_id":{"$oid":"55cba2476c522cafdb054dd6"},"location":{"coordinates":[-73.99572400000001,40.737207],"type":"Point"},"name":"Golden Krust Caribbean Bakery \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb054dd7"},"location":{"coordinates":[-74.147398,40.6253249],"type":"Point"},"name":"Wendy'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054dd8"},"location":{"coordinates":[-74.0024718,40.7337833],"type":"Point"},"name":"The Duplex"} +,{"_id":{"$oid":"55cba2476c522cafdb054dd9"},"location":{"coordinates":[-73.98789959999999,40.7511902],"type":"Point"},"name":"Pronto Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054dda"},"location":{"coordinates":[-73.988466,40.669916],"type":"Point"},"name":"Barbara Blum Residence / Good Shepherd Services"} +,{"_id":{"$oid":"55cba2476c522cafdb054ddb"},"location":{"coordinates":[-73.8988686,40.701741],"type":"Point"},"name":"Cozy Corner Bar \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054ddc"},"location":{"coordinates":[-73.85143889999999,40.6939421],"type":"Point"},"name":"D'Aleo'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb054ddd"},"location":{"coordinates":[-73.98196209999999,40.7645483],"type":"Point"},"name":"Serafina"} +,{"_id":{"$oid":"55cba2476c522cafdb054dde"},"location":{"coordinates":[-73.82065709999999,40.6702327],"type":"Point"},"name":"Shun Foo Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054ddf"},"location":{"coordinates":[-73.953126,40.771259],"type":"Point"},"name":"La Mia Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054de0"},"location":{"coordinates":[-73.9020103,40.8845708],"type":"Point"},"name":"Christos Gyro \u0026 Souvlaki"} +,{"_id":{"$oid":"55cba2476c522cafdb054de1"},"location":{"coordinates":[-73.9984648,40.67747809999999],"type":"Point"},"name":"Mini Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054de2"},"location":{"coordinates":[-73.9807427,40.7298287],"type":"Point"},"name":"Fat Buddha"} +,{"_id":{"$oid":"55cba2476c522cafdb054de3"},"location":{"coordinates":[-73.98582350000001,40.756661],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb054de4"},"location":{"coordinates":[-74.03061509999999,40.61800119999999],"type":"Point"},"name":"First Oasis"} +,{"_id":{"$oid":"55cba2476c522cafdb054de5"},"location":{"coordinates":[-73.968417,40.757043],"type":"Point"},"name":"Ariyoshi Japanese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054de6"},"location":{"coordinates":[-73.9932709,40.68230490000001],"type":"Point"},"name":"Zaytoons Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054de7"},"location":{"coordinates":[-73.980227,40.774924],"type":"Point"},"name":"La Boite En Bois"} +,{"_id":{"$oid":"55cba2476c522cafdb054de8"},"location":{"coordinates":[-74.0071016,40.7199226],"type":"Point"},"name":"Brandy Library Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb054de9"},"location":{"coordinates":[-73.908365,40.774802],"type":"Point"},"name":"Brooklyn Bagel \u0026 Coffee Company"} +,{"_id":{"$oid":"55cba2476c522cafdb054dea"},"location":{"coordinates":[-73.9813399,40.7244757],"type":"Point"},"name":"Horus Kabab House"} +,{"_id":{"$oid":"55cba2476c522cafdb054deb"},"location":{"coordinates":[-73.9780115,40.7609062],"type":"Point"},"name":"Clifford Chance Cafeteria"} +,{"_id":{"$oid":"55cba2476c522cafdb054dec"},"location":{"coordinates":[-73.97338529999999,40.761523],"type":"Point"},"name":"Butterfish"} +,{"_id":{"$oid":"55cba2476c522cafdb054ded"},"location":{"coordinates":[-74.1900589,40.5922995],"type":"Point"},"name":"Better Gourmet Health Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb054dee"},"location":{"coordinates":[-73.9814409,40.7454323],"type":"Point"},"name":"Dons Bogam"} +,{"_id":{"$oid":"55cba2476c522cafdb054def"},"location":{"coordinates":[-73.9919302,40.68420649999999],"type":"Point"},"name":"Chance"} +,{"_id":{"$oid":"55cba2476c522cafdb054df0"},"location":{"coordinates":[-74.09107,40.5882746],"type":"Point"},"name":"Wendy'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054df1"},"location":{"coordinates":[-74.1138381,40.5660448],"type":"Point"},"name":"Wendy'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054df2"},"location":{"coordinates":[-74.19167449999999,40.5890043],"type":"Point"},"name":"Wendy'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054df3"},"location":{"coordinates":[-74.216763,40.521183],"type":"Point"},"name":"Wendy'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054df4"},"location":{"coordinates":[-74.00238569999999,40.73380299999999],"type":"Point"},"name":"Kettle Of Fish"} +,{"_id":{"$oid":"55cba2476c522cafdb054df5"},"location":{"coordinates":[-73.919511,40.852859],"type":"Point"},"name":"Eat Like Me Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054df6"},"location":{"coordinates":[-73.8607984,40.8757708],"type":"Point"},"name":"Golden China Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054df7"},"location":{"coordinates":[-73.9833101,40.7263245],"type":"Point"},"name":"Cafe Pick Me Up"} +,{"_id":{"$oid":"55cba2476c522cafdb054df8"},"location":{"coordinates":[-73.9936638,40.7387377],"type":"Point"},"name":"One 7 Karaoke"} +,{"_id":{"$oid":"55cba2476c522cafdb054df9"},"location":{"coordinates":[-73.9908107,40.6932942],"type":"Point"},"name":"One Way Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb054dfa"},"location":{"coordinates":[-73.8796042,40.7482456],"type":"Point"},"name":"Pollos Mario"} +,{"_id":{"$oid":"55cba2476c522cafdb054dfb"},"location":{"coordinates":[-73.9590742,40.7713507],"type":"Point"},"name":"Mckeown'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054dfc"},"location":{"coordinates":[-92.7291836,41.74614709999999],"type":"Point"},"name":"Hollywood Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb054dfd"},"location":{"coordinates":[-73.96830659999999,40.6800301],"type":"Point"},"name":"Le Gamin"} +,{"_id":{"$oid":"55cba2476c522cafdb054dfe"},"location":{"coordinates":[-74.03156849999999,40.622893],"type":"Point"},"name":"The Kettle Black"} +,{"_id":{"$oid":"55cba2476c522cafdb054dff"},"location":{"coordinates":[-73.9899057,40.7290645],"type":"Point"},"name":"Menkui Tei"} +,{"_id":{"$oid":"55cba2476c522cafdb054e00"},"location":{"coordinates":[-73.996585,40.732486],"type":"Point"},"name":"Le Pain Quotidien"} +,{"_id":{"$oid":"55cba2476c522cafdb054e01"},"location":{"coordinates":[-73.9498709,40.7722128],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb054e02"},"location":{"coordinates":[-73.99256679999999,40.7524562],"type":"Point"},"name":"Favorite Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054e03"},"location":{"coordinates":[-73.99707839999999,40.7426032],"type":"Point"},"name":"Bar Veloce"} +,{"_id":{"$oid":"55cba2476c522cafdb054e04"},"location":{"coordinates":[-74.0219164,40.6304958],"type":"Point"},"name":"China One Fresh Taco"} +,{"_id":{"$oid":"55cba2476c522cafdb054e05"},"location":{"coordinates":[-73.9525628,40.6466493],"type":"Point"},"name":"Frankie'S Cocktail Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb054e06"},"location":{"coordinates":[-73.917332,40.742435],"type":"Point"},"name":"Paddy Duggans Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb054e07"},"location":{"coordinates":[-73.9870354,40.73600709999999],"type":"Point"},"name":"Pure Food \u0026 Wine"} +,{"_id":{"$oid":"55cba2476c522cafdb054e08"},"location":{"coordinates":[-73.891881,40.662612],"type":"Point"},"name":"La Lechonera #2 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054e09"},"location":{"coordinates":[-73.8931209,40.8196273],"type":"Point"},"name":"Huntspoint Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054e0a"},"location":{"coordinates":[-74.16386580000001,40.5598468],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb054e0b"},"location":{"coordinates":[-73.9046286,40.8125363],"type":"Point"},"name":"Popeyes Chicken \u0026 Biscuits"} +,{"_id":{"$oid":"55cba2476c522cafdb054e0c"},"location":{"coordinates":[-74.24660039999999,40.5092869],"type":"Point"},"name":"Villaggio Pizzeria Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054e0d"},"location":{"coordinates":[-73.9793904,40.7349974],"type":"Point"},"name":"Petite Abeille"} +,{"_id":{"$oid":"55cba2476c522cafdb054e0e"},"location":{"coordinates":[-73.960243,40.65913],"type":"Point"},"name":"Trinidad Ali'S Roti Shop #2"} +,{"_id":{"$oid":"55cba2476c522cafdb054e0f"},"location":{"coordinates":[-73.9944821,40.74467629999999],"type":"Point"},"name":"Xes Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb054e10"},"location":{"coordinates":[-73.986987,40.759642],"type":"Point"},"name":"Paramount Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb054e11"},"location":{"coordinates":[-73.95729759999999,40.7656818],"type":"Point"},"name":"Famous Famiglia Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054e12"},"location":{"coordinates":[-73.8651089,40.710613],"type":"Point"},"name":"Leone'S Pizzeria \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054e13"},"location":{"coordinates":[-74.0168872,40.6756643],"type":"Point"},"name":"Sunny'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054e14"},"location":{"coordinates":[-73.91965429999999,40.8459646],"type":"Point"},"name":"El Nuevo Yoly Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054e15"},"location":{"coordinates":[-73.83146099999999,40.70628300000001],"type":"Point"},"name":"Tu Casa Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054e16"},"location":{"coordinates":[-73.98668649999999,40.7299351],"type":"Point"},"name":"Ukrainian Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054e17"},"location":{"coordinates":[-73.979916,40.756666],"type":"Point"},"name":"Akdeniz"} +,{"_id":{"$oid":"55cba2476c522cafdb054e18"},"location":{"coordinates":[-73.9811299,40.755025],"type":"Point"},"name":"The Mansfield Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054e19"},"location":{"coordinates":[-73.83444899999999,40.7692443],"type":"Point"},"name":"Domand'S Italian Gourmet Deli \u0026 Caterers"} +,{"_id":{"$oid":"55cba2476c522cafdb054e1a"},"location":{"coordinates":[-73.8781558,40.872868],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb054e1b"},"location":{"coordinates":[-73.976451,40.7518315],"type":"Point"},"name":"Mendy'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054e1c"},"location":{"coordinates":[-73.9426319,40.8373749],"type":"Point"},"name":"La Terraza Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054e1d"},"location":{"coordinates":[-73.9660238,40.6932746],"type":"Point"},"name":"Liberty Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054e1e"},"location":{"coordinates":[-73.987977,40.75519500000001],"type":"Point"},"name":"Midtown Buffet"} +,{"_id":{"$oid":"55cba2476c522cafdb054e1f"},"location":{"coordinates":[-73.987034,40.754712],"type":"Point"},"name":"Abitino'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054e20"},"location":{"coordinates":[-73.92259659999999,40.7434474],"type":"Point"},"name":"Dunkin' Donuts, Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb054e21"},"location":{"coordinates":[-73.9775028,40.7451605],"type":"Point"},"name":"Ali Baba Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054e22"},"location":{"coordinates":[-73.968502,40.754336],"type":"Point"},"name":"Sip Sak"} +,{"_id":{"$oid":"55cba2476c522cafdb054e23"},"location":{"coordinates":[-73.7395327,40.7666584],"type":"Point"},"name":"Aegea Gyros And Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054e24"},"location":{"coordinates":[-73.9531695,40.6550579],"type":"Point"},"name":"Paradise Venus Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054e25"},"location":{"coordinates":[-73.9797524,40.7498316],"type":"Point"},"name":"Silver Leaf Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb054e26"},"location":{"coordinates":[-73.7393994,40.70659759999999],"type":"Point"},"name":"Crown Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb054e27"},"location":{"coordinates":[-73.9768727,40.6845666],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb054e28"},"location":{"coordinates":[-73.9742229,40.7584214],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb054e29"},"location":{"coordinates":[-73.790688,40.7257013],"type":"Point"},"name":"Barnes \u0026 Noble Booksellers"} +,{"_id":{"$oid":"55cba2476c522cafdb054e2a"},"location":{"coordinates":[-73.9716827,40.6086369],"type":"Point"},"name":"Falafel Off The Korner"} +,{"_id":{"$oid":"55cba2476c522cafdb054e2b"},"location":{"coordinates":[-73.9995648,40.7265272],"type":"Point"},"name":"Emack \u0026 Bolio'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054e2c"},"location":{"coordinates":[-73.99892400000002,40.730124],"type":"Point"},"name":"New York University - Law School Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054e2d"},"location":{"coordinates":[-73.8647956,40.6915025],"type":"Point"},"name":"El Rinconcito De Nagua"} +,{"_id":{"$oid":"55cba2476c522cafdb054e2e"},"location":{"coordinates":[-73.99883899999999,40.7245064],"type":"Point"},"name":"Fanelli Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054e2f"},"location":{"coordinates":[-73.8646818,40.8497364],"type":"Point"},"name":"The Grill House"} +,{"_id":{"$oid":"55cba2476c522cafdb054e30"},"location":{"coordinates":[-73.9768727,40.6845666],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054e31"},"location":{"coordinates":[-73.9046315,40.7647951],"type":"Point"},"name":"25Th Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb054e32"},"location":{"coordinates":[-73.9789103,40.7548711],"type":"Point"},"name":"Dishes"} +,{"_id":{"$oid":"55cba2476c522cafdb054e33"},"location":{"coordinates":[-92.72646619999999,41.7461691],"type":"Point"},"name":"Rogue"} +,{"_id":{"$oid":"55cba2476c522cafdb054e34"},"location":{"coordinates":[-73.92516189999999,40.8284252],"type":"Point"},"name":"The Dugout"} +,{"_id":{"$oid":"55cba2476c522cafdb054e35"},"location":{"coordinates":[-73.946698,40.627623],"type":"Point"},"name":"Bingo Bingo Bingo"} +,{"_id":{"$oid":"55cba2476c522cafdb054e36"},"location":{"coordinates":[-73.9578707,40.7175673],"type":"Point"},"name":"Bagelsmith"} +,{"_id":{"$oid":"55cba2476c522cafdb054e37"},"location":{"coordinates":[-73.8792543,40.72472],"type":"Point"},"name":"Andrew'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb054e38"},"location":{"coordinates":[-74.004801,40.7473],"type":"Point"},"name":"Tia Pol"} +,{"_id":{"$oid":"55cba2476c522cafdb054e39"},"location":{"coordinates":[-73.8279022,40.7626274],"type":"Point"},"name":"Canaan Cake House"} +,{"_id":{"$oid":"55cba2476c522cafdb054e3a"},"location":{"coordinates":[-73.73499799999999,40.716748],"type":"Point"},"name":"Pates Plus Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb054e3b"},"location":{"coordinates":[-73.9809983,40.7253563],"type":"Point"},"name":"Mama'S Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054e3c"},"location":{"coordinates":[-73.91629999999999,40.607952],"type":"Point"},"name":"Sunrise Of Mill Basin"} +,{"_id":{"$oid":"55cba2476c522cafdb054e3d"},"location":{"coordinates":[-73.8146146,40.702732],"type":"Point"},"name":"El Dorado Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054e3e"},"location":{"coordinates":[-73.98615699999999,40.7309294],"type":"Point"},"name":"Village East Cinemas"} +,{"_id":{"$oid":"55cba2476c522cafdb054e3f"},"location":{"coordinates":[-73.9660305,40.7618383],"type":"Point"},"name":"Cinema 1, 2, \u0026 3"} +,{"_id":{"$oid":"55cba2476c522cafdb054e40"},"location":{"coordinates":[-73.829696,40.5814329],"type":"Point"},"name":"Boardwalk Bagel"} +,{"_id":{"$oid":"55cba2476c522cafdb054e41"},"location":{"coordinates":[-73.826331,40.7595468],"type":"Point"},"name":"Canaan Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb054e42"},"location":{"coordinates":[-73.9978127,40.718834],"type":"Point"},"name":"Il Piccolo Bufalo"} +,{"_id":{"$oid":"55cba2476c522cafdb054e43"},"location":{"coordinates":[-73.9164158,40.8485293],"type":"Point"},"name":"Hing Wong"} +,{"_id":{"$oid":"55cba2476c522cafdb054e44"},"location":{"coordinates":[-73.9817091,40.7710093],"type":"Point"},"name":"Breadsoul Cafe/ Lincoln Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054e45"},"location":{"coordinates":[-73.982767,40.72081499999999],"type":"Point"},"name":"Special Attention"} +,{"_id":{"$oid":"55cba2476c522cafdb054e46"},"location":{"coordinates":[-73.9240788,40.5860339],"type":"Point"},"name":"Gerrittsen Beach Property Owners Association"} +,{"_id":{"$oid":"55cba2476c522cafdb054e47"},"location":{"coordinates":[-73.982444,40.761422],"type":"Point"},"name":"The Michelangelo"} +,{"_id":{"$oid":"55cba2476c522cafdb054e48"},"location":{"coordinates":[-73.9804462,40.7655657],"type":"Point"},"name":"Lili'S 57"} +,{"_id":{"$oid":"55cba2476c522cafdb054e49"},"location":{"coordinates":[-73.983875,40.727229],"type":"Point"},"name":"Hummus Place"} +,{"_id":{"$oid":"55cba2476c522cafdb054e4a"},"location":{"coordinates":[-73.92251259999999,40.7406462],"type":"Point"},"name":"Mamas Empanadas"} +,{"_id":{"$oid":"55cba2476c522cafdb054e4b"},"location":{"coordinates":[-73.8637495,40.7372662],"type":"Point"},"name":"Grand China"} +,{"_id":{"$oid":"55cba2476c522cafdb054e4c"},"location":{"coordinates":[-73.90905649999999,40.8738244],"type":"Point"},"name":"Applebee'S Neighborhood Grill \u0026 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054e4d"},"location":{"coordinates":[-73.9047859,40.8125519],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb054e4e"},"location":{"coordinates":[-73.9848403,40.73994640000001],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb054e4f"},"location":{"coordinates":[-73.9221448,40.74387],"type":"Point"},"name":"Turkish Grill Restaurant \u0026 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054e50"},"location":{"coordinates":[-73.9177799,40.703107],"type":"Point"},"name":"El Dorado Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054e51"},"location":{"coordinates":[-73.94005299999999,40.593596],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb054e52"},"location":{"coordinates":[-74.126328,40.612596],"type":"Point"},"name":"Cool Ice"} +,{"_id":{"$oid":"55cba2476c522cafdb054e53"},"location":{"coordinates":[-73.9253161,40.744353],"type":"Point"},"name":"Great Dragon Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054e54"},"location":{"coordinates":[-73.9868924,40.7264833],"type":"Point"},"name":"Awash Ethiopian Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054e55"},"location":{"coordinates":[-73.98467300000002,40.729006],"type":"Point"},"name":"Momofuku Ko"} +,{"_id":{"$oid":"55cba2476c522cafdb054e56"},"location":{"coordinates":[-73.9573216,40.7130584],"type":"Point"},"name":"Larry And Lawrence"} +,{"_id":{"$oid":"55cba2476c522cafdb054e57"},"location":{"coordinates":[-73.8706606,40.7342757],"type":"Point"},"name":"Pretzel Maker"} +,{"_id":{"$oid":"55cba2476c522cafdb054e58"},"location":{"coordinates":[-73.94310449999999,40.8108763],"type":"Point"},"name":"Golden Krust Caribbean Bakery \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb054e59"},"location":{"coordinates":[-73.880501,40.741805],"type":"Point"},"name":"Winners Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054e5a"},"location":{"coordinates":[-73.9768727,40.6845666],"type":"Point"},"name":"Chuck E Cheese'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054e5b"},"location":{"coordinates":[-73.9532215,40.6751474],"type":"Point"},"name":"Brooklyn Exposure"} +,{"_id":{"$oid":"55cba2476c522cafdb054e5c"},"location":{"coordinates":[-73.94759669999999,40.7114747],"type":"Point"},"name":"Lily Thai Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054e5d"},"location":{"coordinates":[-73.992272,40.721989],"type":"Point"},"name":"Freemans"} +,{"_id":{"$oid":"55cba2476c522cafdb054e5e"},"location":{"coordinates":[-74.00243739999999,40.7070522],"type":"Point"},"name":"Fresh Salt"} +,{"_id":{"$oid":"55cba2476c522cafdb054e5f"},"location":{"coordinates":[-74.0133214,40.7068236],"type":"Point"},"name":"Cafe Exchange"} +,{"_id":{"$oid":"55cba2476c522cafdb054e60"},"location":{"coordinates":[-73.97352649999999,40.753517],"type":"Point"},"name":"1 Darbar"} +,{"_id":{"$oid":"55cba2476c522cafdb054e61"},"location":{"coordinates":[-74.09285299999999,40.61512099999999],"type":"Point"},"name":"Wagner College - Hawk' Nest"} +,{"_id":{"$oid":"55cba2476c522cafdb054e62"},"location":{"coordinates":[-74.00780999999999,40.725708],"type":"Point"},"name":"Ellen Deli \u0026 Grocery"} +,{"_id":{"$oid":"55cba2476c522cafdb054e63"},"location":{"coordinates":[-73.9618311,40.8010518],"type":"Point"},"name":"Crepes On Columbus"} +,{"_id":{"$oid":"55cba2476c522cafdb054e64"},"location":{"coordinates":[-73.9747229,40.751244],"type":"Point"},"name":"Capital Grille"} +,{"_id":{"$oid":"55cba2476c522cafdb054e65"},"location":{"coordinates":[-73.9593807,40.7005598],"type":"Point"},"name":"The Continental"} +,{"_id":{"$oid":"55cba2476c522cafdb054e66"},"location":{"coordinates":[-73.9632554,40.769437],"type":"Point"},"name":"Sicaffe"} +,{"_id":{"$oid":"55cba2476c522cafdb054e67"},"location":{"coordinates":[-73.9772876,40.7473057],"type":"Point"},"name":"Libretto'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb054e68"},"location":{"coordinates":[-73.7554976,40.7137828],"type":"Point"},"name":"Naz Bakery \u0026 Roti Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb054e69"},"location":{"coordinates":[-73.796857,40.76259],"type":"Point"},"name":"Breifne Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb054e6a"},"location":{"coordinates":[-73.987292,40.725414],"type":"Point"},"name":"Jennifer Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054e6b"},"location":{"coordinates":[-73.9600189,40.7184736],"type":"Point"},"name":"Sweetwater Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb054e6c"},"location":{"coordinates":[-73.9947959,40.7498794],"type":"Point"},"name":"The Blarney Stone Pub \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054e6d"},"location":{"coordinates":[-73.98232999999999,40.62651899999999],"type":"Point"},"name":"Glatt Ala Carte"} +,{"_id":{"$oid":"55cba2476c522cafdb054e6e"},"location":{"coordinates":[-73.9713079,40.6896898],"type":"Point"},"name":"Sushi D"} +,{"_id":{"$oid":"55cba2476c522cafdb054e6f"},"location":{"coordinates":[-74.0130866,40.7045399],"type":"Point"},"name":"Chipotle Mexican Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb054e70"},"location":{"coordinates":[-73.9917967,40.6942297],"type":"Point"},"name":"Chipotle Mexican Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb054e71"},"location":{"coordinates":[-73.96358599999999,40.59778499999999],"type":"Point"},"name":"Fontana Di Trevi"} +,{"_id":{"$oid":"55cba2476c522cafdb054e72"},"location":{"coordinates":[-74.097056,40.6445371],"type":"Point"},"name":"Ruth M Liedys Shore Inn"} +,{"_id":{"$oid":"55cba2476c522cafdb054e73"},"location":{"coordinates":[-73.9419869,40.8175016],"type":"Point"},"name":"Ihop"} +,{"_id":{"$oid":"55cba2476c522cafdb054e74"},"location":{"coordinates":[-73.897266,40.82124290000001],"type":"Point"},"name":"Kennedy Chicken And Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054e75"},"location":{"coordinates":[-73.98945379999999,40.7571014],"type":"Point"},"name":"Villa"} +,{"_id":{"$oid":"55cba2476c522cafdb054e76"},"location":{"coordinates":[-73.951003,40.705582],"type":"Point"},"name":"Sheli Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054e77"},"location":{"coordinates":[-74.165217,40.544664],"type":"Point"},"name":"Mini - Mart"} +,{"_id":{"$oid":"55cba2476c522cafdb054e78"},"location":{"coordinates":[-73.8376928,40.581304],"type":"Point"},"name":"Belle Harbor Steakhouse"} +,{"_id":{"$oid":"55cba2476c522cafdb054e79"},"location":{"coordinates":[-74.09285299999999,40.61512099999999],"type":"Point"},"name":"Wagner College - Main Dining Hall"} +,{"_id":{"$oid":"55cba2476c522cafdb054e7a"},"location":{"coordinates":[-73.9876917,40.6671919],"type":"Point"},"name":"Commonwealth"} +,{"_id":{"$oid":"55cba2476c522cafdb054e7b"},"location":{"coordinates":[-73.99882,40.729081],"type":"Point"},"name":"Cuba"} +,{"_id":{"$oid":"55cba2476c522cafdb054e7c"},"location":{"coordinates":[-73.9143955,40.7602845],"type":"Point"},"name":"Stop Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb054e7d"},"location":{"coordinates":[-92.71942399999999,41.7460966],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054e7e"},"location":{"coordinates":[-73.90407130000001,40.7022528],"type":"Point"},"name":"Domino'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054e7f"},"location":{"coordinates":[-74.1630826,40.62618459999999],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb054e80"},"location":{"coordinates":[-73.9209911,40.8270836],"type":"Point"},"name":"Chris Super Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb054e81"},"location":{"coordinates":[-73.9198267,40.7593872],"type":"Point"},"name":"D-Lite Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb054e82"},"location":{"coordinates":[-73.9692622,40.7626978],"type":"Point"},"name":"Oxford Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054e83"},"location":{"coordinates":[-73.9373291,40.8206458],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb054e84"},"location":{"coordinates":[-73.9835497,40.7270085],"type":"Point"},"name":"Luca Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054e85"},"location":{"coordinates":[-73.91476329999999,40.7656836],"type":"Point"},"name":"Irish Rover"} +,{"_id":{"$oid":"55cba2476c522cafdb054e86"},"location":{"coordinates":[-74.1424576,40.54287619999999],"type":"Point"},"name":"Fiore Dimare"} +,{"_id":{"$oid":"55cba2476c522cafdb054e87"},"location":{"coordinates":[-92.7169017,41.7461981],"type":"Point"},"name":"Pret A Manger"} +,{"_id":{"$oid":"55cba2476c522cafdb054e88"},"location":{"coordinates":[-74.00514249999999,40.7275977],"type":"Point"},"name":"Little Italy Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054e89"},"location":{"coordinates":[-73.95364,40.7876366],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb054e8a"},"location":{"coordinates":[-73.9784962,40.6788476],"type":"Point"},"name":"El Pollito Mexicano"} +,{"_id":{"$oid":"55cba2476c522cafdb054e8b"},"location":{"coordinates":[-74.0226371,40.6286752],"type":"Point"},"name":"Bean Post Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb054e8c"},"location":{"coordinates":[-73.99451499999999,40.6633179],"type":"Point"},"name":"Brothers Pizza Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054e8d"},"location":{"coordinates":[-74.0074023,40.7358481],"type":"Point"},"name":"Turks \u0026 Frogs"} +,{"_id":{"$oid":"55cba2476c522cafdb054e8e"},"location":{"coordinates":[-73.9827037,40.7684141],"type":"Point"},"name":"Dizzy'S Club Coca-Cola (Entrance At 20 W60 St-Stage Door)"} +,{"_id":{"$oid":"55cba2476c522cafdb054e8f"},"location":{"coordinates":[-73.993481,40.661537],"type":"Point"},"name":"Girasol Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb054e90"},"location":{"coordinates":[-73.78311459999999,40.7127727],"type":"Point"},"name":"Golden Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb054e91"},"location":{"coordinates":[-73.8578884,40.7282638],"type":"Point"},"name":"Rego Pita"} +,{"_id":{"$oid":"55cba2476c522cafdb054e92"},"location":{"coordinates":[-74.14372929999999,40.6341737],"type":"Point"},"name":"Lacey'S Bridge Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb054e93"},"location":{"coordinates":[-73.9847446,40.7575195],"type":"Point"},"name":"Bond 45 Italian Kitchen Steak \u0026 Seafood"} +,{"_id":{"$oid":"55cba2476c522cafdb054e94"},"location":{"coordinates":[-73.8325716,40.8473713],"type":"Point"},"name":"Genio'S Trattoria"} +,{"_id":{"$oid":"55cba2476c522cafdb054e95"},"location":{"coordinates":[-73.9873013,40.6676071],"type":"Point"},"name":"Joe'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054e96"},"location":{"coordinates":[-73.9886454,40.7296611],"type":"Point"},"name":"La Paella"} +,{"_id":{"$oid":"55cba2476c522cafdb054e97"},"location":{"coordinates":[-73.9913095,40.7268002],"type":"Point"},"name":"Phebes"} +,{"_id":{"$oid":"55cba2476c522cafdb054e98"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"Grove Smoothie King/ Red Mango / Illy"} +,{"_id":{"$oid":"55cba2476c522cafdb054e99"},"location":{"coordinates":[-73.9791516,40.7506861],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb054e9a"},"location":{"coordinates":[-73.98545159999999,40.7573853],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb054e9b"},"location":{"coordinates":[-74.1325817,40.612214],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb054e9c"},"location":{"coordinates":[-73.9820419,40.76425080000001],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb054e9d"},"location":{"coordinates":[-73.95278820000001,40.8227038],"type":"Point"},"name":"Picante Bar And Grill Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054e9e"},"location":{"coordinates":[-73.97729919999999,40.7524958],"type":"Point"},"name":"Ciao Bella Gelateria"} +,{"_id":{"$oid":"55cba2476c522cafdb054e9f"},"location":{"coordinates":[-73.94871909999999,40.64491659999999],"type":"Point"},"name":"Blake Bakery \u0026 Take Out Food"} +,{"_id":{"$oid":"55cba2476c522cafdb054ea0"},"location":{"coordinates":[-73.8909764,40.7470862],"type":"Point"},"name":"Dunkin' Donuts, Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb054ea1"},"location":{"coordinates":[-73.8688859,40.7621479],"type":"Point"},"name":"Baskin Robbins/Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb054ea2"},"location":{"coordinates":[-73.986814,40.7184765],"type":"Point"},"name":"Dunkin' Donuts, Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb054ea3"},"location":{"coordinates":[-73.999482,40.730538],"type":"Point"},"name":"New York University Law School - Vanderbilt Hall"} +,{"_id":{"$oid":"55cba2476c522cafdb054ea4"},"location":{"coordinates":[-73.98380999999999,40.72672],"type":"Point"},"name":"Bua"} +,{"_id":{"$oid":"55cba2476c522cafdb054ea5"},"location":{"coordinates":[-73.98844,40.761637],"type":"Point"},"name":"La Masseria"} +,{"_id":{"$oid":"55cba2476c522cafdb054ea6"},"location":{"coordinates":[-73.98580299999999,40.73058899999999],"type":"Point"},"name":"Cacio \u0026 Pepe"} +,{"_id":{"$oid":"55cba2476c522cafdb054ea7"},"location":{"coordinates":[-73.86522800000002,40.747684],"type":"Point"},"name":"Delicias Cuencanas Bar-Restaurant Deli,"} +,{"_id":{"$oid":"55cba2476c522cafdb054ea8"},"location":{"coordinates":[-73.988467,40.76358099999999],"type":"Point"},"name":"Nook Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054ea9"},"location":{"coordinates":[-73.90109269999999,40.7153374],"type":"Point"},"name":"New Panda"} +,{"_id":{"$oid":"55cba2476c522cafdb054eaa"},"location":{"coordinates":[-73.83850269999999,40.7859697],"type":"Point"},"name":"Benateri'S Italian Gourmet Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb054eab"},"location":{"coordinates":[-74.0024339,40.655702],"type":"Point"},"name":"Uncle Sam'S Bar \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054eac"},"location":{"coordinates":[-73.9448376,40.8240638],"type":"Point"},"name":"New Millenium Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb054ead"},"location":{"coordinates":[-73.948859,40.781339],"type":"Point"},"name":"Dunkin Donuts \u0026 Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb054eae"},"location":{"coordinates":[-73.9744668,40.731155],"type":"Point"},"name":"A \u0026 C Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb054eaf"},"location":{"coordinates":[-73.9662665,40.8037972],"type":"Point"},"name":"The School At Columbia University"} +,{"_id":{"$oid":"55cba2476c522cafdb054eb0"},"location":{"coordinates":[-73.9638184,40.8083435],"type":"Point"},"name":"Ollies Noodle Shop \u0026 Grille"} +,{"_id":{"$oid":"55cba2476c522cafdb054eb1"},"location":{"coordinates":[-72.4751457,43.2956803],"type":"Point"},"name":"Fino Ristorante"} +,{"_id":{"$oid":"55cba2476c522cafdb054eb2"},"location":{"coordinates":[-73.9515265,40.7252939],"type":"Point"},"name":"Krolewskie Jadlo"} +,{"_id":{"$oid":"55cba2476c522cafdb054eb3"},"location":{"coordinates":[-73.8706606,40.7342757],"type":"Point"},"name":"Mrs. Fields"} +,{"_id":{"$oid":"55cba2476c522cafdb054eb4"},"location":{"coordinates":[-73.8697944,40.7261818],"type":"Point"},"name":"Barosa Brick Oven"} +,{"_id":{"$oid":"55cba2476c522cafdb054eb5"},"location":{"coordinates":[-73.76127090000001,40.695757],"type":"Point"},"name":"Farmer Sports \u0026 Social Club"} +,{"_id":{"$oid":"55cba2476c522cafdb054eb6"},"location":{"coordinates":[-73.987646,40.7628267],"type":"Point"},"name":"The Green Room"} +,{"_id":{"$oid":"55cba2476c522cafdb054eb7"},"location":{"coordinates":[-73.919253,40.668191],"type":"Point"},"name":"Crown Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb054eb8"},"location":{"coordinates":[-73.993848,40.601536],"type":"Point"},"name":"Istanbul"} +,{"_id":{"$oid":"55cba2476c522cafdb054eb9"},"location":{"coordinates":[-73.98813679999999,40.7294445],"type":"Point"},"name":"Cha-An Teahouse"} +,{"_id":{"$oid":"55cba2476c522cafdb054eba"},"location":{"coordinates":[-73.9510134,40.7120412],"type":"Point"},"name":"Barcade"} +,{"_id":{"$oid":"55cba2476c522cafdb054ebb"},"location":{"coordinates":[-73.9393888,40.74982540000001],"type":"Point"},"name":"Gotham Fresh Foods, Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb054ebc"},"location":{"coordinates":[-73.8202587,40.7096644],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb054ebd"},"location":{"coordinates":[-73.9833115,40.7671561],"type":"Point"},"name":"Providence"} +,{"_id":{"$oid":"55cba2476c522cafdb054ebe"},"location":{"coordinates":[-73.87327719999999,40.878589],"type":"Point"},"name":"La Familia Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054ebf"},"location":{"coordinates":[-73.9920507,40.7150656],"type":"Point"},"name":"Upstairs Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054ec0"},"location":{"coordinates":[-73.8758608,40.748728],"type":"Point"},"name":"Baires Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb054ec1"},"location":{"coordinates":[-73.81107899999999,40.674953],"type":"Point"},"name":"Dan'S Bakery \u0026 Roti House"} +,{"_id":{"$oid":"55cba2476c522cafdb054ec2"},"location":{"coordinates":[-73.9210222,40.8353882],"type":"Point"},"name":"Dunkin' Donuts, Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb054ec3"},"location":{"coordinates":[-73.8462392,40.7209094],"type":"Point"},"name":"Corfu Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb054ec4"},"location":{"coordinates":[-73.8716991,40.6751937],"type":"Point"},"name":"Star Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb054ec5"},"location":{"coordinates":[-74.0072168,40.7304988],"type":"Point"},"name":"En Japanese Brasserie"} +,{"_id":{"$oid":"55cba2476c522cafdb054ec6"},"location":{"coordinates":[-73.9302453,40.6536438],"type":"Point"},"name":"Telfer Jamaican West Indian \u0026 American Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054ec7"},"location":{"coordinates":[-73.8630678,40.7087629],"type":"Point"},"name":"Amici Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054ec8"},"location":{"coordinates":[-73.9869382,40.6679967],"type":"Point"},"name":"Kinara Indian Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054ec9"},"location":{"coordinates":[-74.0082771,40.7130634],"type":"Point"},"name":"Best Of The Best Delicatessen"} +,{"_id":{"$oid":"55cba2476c522cafdb054eca"},"location":{"coordinates":[-73.98949979999999,40.6918744],"type":"Point"},"name":"Brooklyn Law School"} +,{"_id":{"$oid":"55cba2476c522cafdb054ecb"},"location":{"coordinates":[-77.340572,40.1112976],"type":"Point"},"name":"Primo Coffee Cart"} +,{"_id":{"$oid":"55cba2476c522cafdb054ecc"},"location":{"coordinates":[-73.9210589,40.7360035],"type":"Point"},"name":"Chipichape Colombian Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb054ecd"},"location":{"coordinates":[-73.9090363,40.8447202],"type":"Point"},"name":"El Timbirichi Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054ece"},"location":{"coordinates":[-73.814818,40.690305],"type":"Point"},"name":"Pearl Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054ecf"},"location":{"coordinates":[-73.9777786,40.7250221],"type":"Point"},"name":"Ninth Street Espresso"} +,{"_id":{"$oid":"55cba2476c522cafdb054ed0"},"location":{"coordinates":[-73.9777797,40.78348580000001],"type":"Point"},"name":"T \u0026 R Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054ed1"},"location":{"coordinates":[-73.9852669,40.7180048],"type":"Point"},"name":"The Delancey"} +,{"_id":{"$oid":"55cba2476c522cafdb054ed2"},"location":{"coordinates":[-73.982067,40.665686],"type":"Point"},"name":"Applewood"} +,{"_id":{"$oid":"55cba2476c522cafdb054ed3"},"location":{"coordinates":[-74.2121682,40.5518281],"type":"Point"},"name":"Pino'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb054ed4"},"location":{"coordinates":[-74.0023197,40.7325291],"type":"Point"},"name":"Rockmeisha"} +,{"_id":{"$oid":"55cba2476c522cafdb054ed5"},"location":{"coordinates":[-73.823043,40.686379],"type":"Point"},"name":"Burger King"} +,{"_id":{"$oid":"55cba2476c522cafdb054ed6"},"location":{"coordinates":[-73.8866535,40.755667],"type":"Point"},"name":"Lenos Bar Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054ed7"},"location":{"coordinates":[-73.9553506,40.77742360000001],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb054ed8"},"location":{"coordinates":[-73.99098699999999,40.70266710000001],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb054ed9"},"location":{"coordinates":[-73.92931949999999,40.74603219999999],"type":"Point"},"name":"Blinks Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb054eda"},"location":{"coordinates":[-73.9851996,40.6710613],"type":"Point"},"name":"Postmark Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054edb"},"location":{"coordinates":[-73.9777309,40.6808268],"type":"Point"},"name":"Peperoncino"} +,{"_id":{"$oid":"55cba2476c522cafdb054edc"},"location":{"coordinates":[-73.9904772,40.7179481],"type":"Point"},"name":"Dudleys"} +,{"_id":{"$oid":"55cba2476c522cafdb054edd"},"location":{"coordinates":[-77.340572,40.1112976],"type":"Point"},"name":"Primo Cappuccino Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb054ede"},"location":{"coordinates":[-74.0037692,40.7330979],"type":"Point"},"name":"49 Grove"} +,{"_id":{"$oid":"55cba2476c522cafdb054edf"},"location":{"coordinates":[-73.92530339999999,40.84105479999999],"type":"Point"},"name":"China Wang"} +,{"_id":{"$oid":"55cba2476c522cafdb054ee0"},"location":{"coordinates":[-73.9870145,40.6898952],"type":"Point"},"name":"Dallas Bbq"} +,{"_id":{"$oid":"55cba2476c522cafdb054ee1"},"location":{"coordinates":[-73.9939602,40.7231618],"type":"Point"},"name":"Barbossa"} +,{"_id":{"$oid":"55cba2476c522cafdb054ee2"},"location":{"coordinates":[-73.9788166,40.7767896],"type":"Point"},"name":"Santa Fe"} +,{"_id":{"$oid":"55cba2476c522cafdb054ee3"},"location":{"coordinates":[-73.7262421,40.7645393],"type":"Point"},"name":"Centre Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054ee4"},"location":{"coordinates":[-73.9317276,40.66189139999999],"type":"Point"},"name":"3 Star Juice Center"} +,{"_id":{"$oid":"55cba2476c522cafdb054ee5"},"location":{"coordinates":[-74.0102595,40.7184972],"type":"Point"},"name":"Viet Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054ee6"},"location":{"coordinates":[-73.97540699999999,40.674994],"type":"Point"},"name":"Park Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054ee7"},"location":{"coordinates":[-73.926784,40.8635826],"type":"Point"},"name":"Betel Party Supply Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb054ee8"},"location":{"coordinates":[-73.766555,40.69224639999999],"type":"Point"},"name":"New Kam Guo 11 Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb054ee9"},"location":{"coordinates":[-73.9922849,40.72720109999999],"type":"Point"},"name":"Aroma"} +,{"_id":{"$oid":"55cba2476c522cafdb054eea"},"location":{"coordinates":[-73.94502899999999,40.7935469],"type":"Point"},"name":"The Jaguar Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054eeb"},"location":{"coordinates":[-74.0022584,40.6839849],"type":"Point"},"name":"House Of Pizza \u0026 Calzones"} +,{"_id":{"$oid":"55cba2476c522cafdb054eec"},"location":{"coordinates":[-73.8583969,40.8334913],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054eed"},"location":{"coordinates":[-73.989708,40.71969070000001],"type":"Point"},"name":"Lucky Jack'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054eee"},"location":{"coordinates":[-73.8933545,40.8467671],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054eef"},"location":{"coordinates":[-73.97993269999999,40.7526122],"type":"Point"},"name":"Price Waterhouse Cafeteria"} +,{"_id":{"$oid":"55cba2476c522cafdb054ef0"},"location":{"coordinates":[-73.9730208,40.7582695],"type":"Point"},"name":"Kpmg Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054ef1"},"location":{"coordinates":[-73.94382759999999,40.7144007],"type":"Point"},"name":"The Bagel Store"} +,{"_id":{"$oid":"55cba2476c522cafdb054ef2"},"location":{"coordinates":[-73.9983278,40.724703],"type":"Point"},"name":"Lure Fishbar"} +,{"_id":{"$oid":"55cba2476c522cafdb054ef3"},"location":{"coordinates":[-73.87765759999999,40.7481135],"type":"Point"},"name":"Tacos Hermanos Rodriguez Mexican Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054ef4"},"location":{"coordinates":[-73.9149429,40.74406889999999],"type":"Point"},"name":"Spin City Cafe \u0026 Billards"} +,{"_id":{"$oid":"55cba2476c522cafdb054ef5"},"location":{"coordinates":[-73.985013,40.597284],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb054ef6"},"location":{"coordinates":[-73.9414178,40.5963741],"type":"Point"},"name":"Carvel Ice Cream"} +,{"_id":{"$oid":"55cba2476c522cafdb054ef7"},"location":{"coordinates":[-73.992285,40.759459],"type":"Point"},"name":"Dalton'S Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb054ef8"},"location":{"coordinates":[-74.021438,40.6452876],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb054ef9"},"location":{"coordinates":[-73.98460949999999,40.7561118],"type":"Point"},"name":"Bxl Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054efa"},"location":{"coordinates":[-73.815421,40.586197],"type":"Point"},"name":"Elegante Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054efb"},"location":{"coordinates":[-73.9829604,40.7474024],"type":"Point"},"name":"Tina'S Cuban Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb054efc"},"location":{"coordinates":[-73.893666,40.676348],"type":"Point"},"name":"Happy Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb054efd"},"location":{"coordinates":[-73.898276,40.709256],"type":"Point"},"name":"Oceans Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb054efe"},"location":{"coordinates":[-73.92953299999999,40.75625],"type":"Point"},"name":"Lic Bagels"} +,{"_id":{"$oid":"55cba2476c522cafdb054eff"},"location":{"coordinates":[-73.9106155,40.7045582],"type":"Point"},"name":"Carlos Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb054f00"},"location":{"coordinates":[-73.99298379999999,40.7415426],"type":"Point"},"name":"Bounce"} +,{"_id":{"$oid":"55cba2476c522cafdb054f01"},"location":{"coordinates":[-73.9776194,40.7614151],"type":"Point"},"name":"The Modern"} +,{"_id":{"$oid":"55cba2476c522cafdb054f02"},"location":{"coordinates":[-73.818713,40.750608],"type":"Point"},"name":"Satay Malaysian"} +,{"_id":{"$oid":"55cba2476c522cafdb054f03"},"location":{"coordinates":[-73.993084,40.740037],"type":"Point"},"name":"Sala One Nine"} +,{"_id":{"$oid":"55cba2476c522cafdb054f04"},"location":{"coordinates":[-73.9013729,40.905055],"type":"Point"},"name":"Dino'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054f05"},"location":{"coordinates":[-73.96929349999999,40.6519616],"type":"Point"},"name":"Parade Grounds Snack Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054f06"},"location":{"coordinates":[-74.0065518,40.7438296],"type":"Point"},"name":"Naka Naka"} +,{"_id":{"$oid":"55cba2476c522cafdb054f07"},"location":{"coordinates":[-73.921543,40.66048199999999],"type":"Point"},"name":"Five-O International Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054f08"},"location":{"coordinates":[-73.8547474,40.7516593],"type":"Point"},"name":"La Ambatenita Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb054f09"},"location":{"coordinates":[-73.9773546,40.7433588],"type":"Point"},"name":"Albion"} +,{"_id":{"$oid":"55cba2476c522cafdb054f0a"},"location":{"coordinates":[-73.8615653,40.7495733],"type":"Point"},"name":"El Encuentro Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054f0b"},"location":{"coordinates":[-74.0085532,40.713676],"type":"Point"},"name":"Remix"} +,{"_id":{"$oid":"55cba2476c522cafdb054f0c"},"location":{"coordinates":[-73.9751738,40.7645527],"type":"Point"},"name":"Green Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054f0d"},"location":{"coordinates":[-73.9722201,40.7642323],"type":"Point"},"name":"Antica Bottega Del Vino"} +,{"_id":{"$oid":"55cba2476c522cafdb054f0e"},"location":{"coordinates":[-73.751952,40.60486100000001],"type":"Point"},"name":"Grand Oasis Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054f0f"},"location":{"coordinates":[-73.9837246,40.7528085],"type":"Point"},"name":"Cellar Bar - The Bryant Park Hotel"} +,{"_id":{"$oid":"55cba2476c522cafdb054f10"},"location":{"coordinates":[-73.9042876,40.8461728],"type":"Point"},"name":"Promesa Cafeteria"} +,{"_id":{"$oid":"55cba2476c522cafdb054f11"},"location":{"coordinates":[-73.9918752,40.7521284],"type":"Point"},"name":"Cafe Nunez"} +,{"_id":{"$oid":"55cba2476c522cafdb054f12"},"location":{"coordinates":[-73.7542244,40.5966144],"type":"Point"},"name":"New Cheung Hing Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb054f13"},"location":{"coordinates":[-74.000736,40.644261],"type":"Point"},"name":"La Nueva Concha"} +,{"_id":{"$oid":"55cba2476c522cafdb054f14"},"location":{"coordinates":[-73.9865666,40.7183138],"type":"Point"},"name":"Burger King"} +,{"_id":{"$oid":"55cba2476c522cafdb054f15"},"location":{"coordinates":[-73.988186,40.72154099999999],"type":"Point"},"name":"The Skinny"} +,{"_id":{"$oid":"55cba2476c522cafdb054f16"},"location":{"coordinates":[-73.8947529,40.6472123],"type":"Point"},"name":"Yard Style Jamaican Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054f17"},"location":{"coordinates":[-73.9014322,40.6774785],"type":"Point"},"name":"Paphos Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb054f18"},"location":{"coordinates":[-73.8719914,40.742259],"type":"Point"},"name":"Toltecamila Taqueria Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054f19"},"location":{"coordinates":[-73.96733429999999,40.8027098],"type":"Point"},"name":"Tara Hill Irish Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb054f1a"},"location":{"coordinates":[-73.9907253,40.7614549],"type":"Point"},"name":"Chelsea Grill Of Hell'S Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb054f1b"},"location":{"coordinates":[-73.89165249999999,40.8614859],"type":"Point"},"name":"Golden Krust Caribbean Bakery \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb054f1c"},"location":{"coordinates":[-74.0902016,40.5881614],"type":"Point"},"name":"Pasticceria Bruno Of Greenwich Village"} +,{"_id":{"$oid":"55cba2476c522cafdb054f1d"},"location":{"coordinates":[-73.944436,40.791151],"type":"Point"},"name":"Bally Total Fitness"} +,{"_id":{"$oid":"55cba2476c522cafdb054f1e"},"location":{"coordinates":[-73.8628914,40.7505993],"type":"Point"},"name":"Angelo'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054f1f"},"location":{"coordinates":[-73.8028308,40.8137006],"type":"Point"},"name":"Locust Point Yacht Club"} +,{"_id":{"$oid":"55cba2476c522cafdb054f20"},"location":{"coordinates":[-73.83814749999999,40.65059129999999],"type":"Point"},"name":"Lenny'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb054f21"},"location":{"coordinates":[-73.98892529999999,40.73717480000001],"type":"Point"},"name":"Haru"} +,{"_id":{"$oid":"55cba2476c522cafdb054f22"},"location":{"coordinates":[-73.97640059999999,40.7811137],"type":"Point"},"name":"Gari"} +,{"_id":{"$oid":"55cba2476c522cafdb054f23"},"location":{"coordinates":[-73.9234638,40.7441008],"type":"Point"},"name":"Burger King"} +,{"_id":{"$oid":"55cba2476c522cafdb054f24"},"location":{"coordinates":[-73.8706606,40.7342757],"type":"Point"},"name":"Applebee'S Neighborhood Grill \u0026 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054f25"},"location":{"coordinates":[-73.88739,40.747508],"type":"Point"},"name":"Amor Karaoke \u0026 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054f26"},"location":{"coordinates":[-73.9342115,40.6637426],"type":"Point"},"name":"Yours \u0026 Mine Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054f27"},"location":{"coordinates":[-73.95414199999999,40.72759],"type":"Point"},"name":"Capri Social Club"} +,{"_id":{"$oid":"55cba2476c522cafdb054f28"},"location":{"coordinates":[-73.9799463,40.7600118],"type":"Point"},"name":"Radio City Music Hall"} +,{"_id":{"$oid":"55cba2476c522cafdb054f29"},"location":{"coordinates":[-73.9373939,40.8190144],"type":"Point"},"name":"Lenox Fast Food"} +,{"_id":{"$oid":"55cba2476c522cafdb054f2a"},"location":{"coordinates":[-73.9726884,40.7601073],"type":"Point"},"name":"Cellini"} +,{"_id":{"$oid":"55cba2476c522cafdb054f2b"},"location":{"coordinates":[-73.98338319999999,40.6773244],"type":"Point"},"name":"Tomato And Basil Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054f2c"},"location":{"coordinates":[-73.86099949999999,40.7478167],"type":"Point"},"name":"Paraiso Azteca Restaurant \u0026 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054f2d"},"location":{"coordinates":[-74.0102885,40.7059882],"type":"Point"},"name":"Cucina Bene Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb054f2e"},"location":{"coordinates":[-74.00566150000002,40.7101176],"type":"Point"},"name":"Rosella'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb054f2f"},"location":{"coordinates":[-74.011161,40.679139],"type":"Point"},"name":"Red Hook Bait And Tackle"} +,{"_id":{"$oid":"55cba2476c522cafdb054f30"},"location":{"coordinates":[-73.9621627,40.7756461],"type":"Point"},"name":"Lady M Confections"} +,{"_id":{"$oid":"55cba2476c522cafdb054f31"},"location":{"coordinates":[-73.98844600000001,40.72042099999999],"type":"Point"},"name":"Libation"} +,{"_id":{"$oid":"55cba2476c522cafdb054f32"},"location":{"coordinates":[-73.8360981,40.682704],"type":"Point"},"name":"On The Rox Lounge \u0026 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054f33"},"location":{"coordinates":[-73.7445977,40.7659707],"type":"Point"},"name":"Douglaston Delicatessen"} +,{"_id":{"$oid":"55cba2476c522cafdb054f34"},"location":{"coordinates":[-74.0797135,40.5982729],"type":"Point"},"name":"Ninos Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054f35"},"location":{"coordinates":[-73.951695,40.7249714],"type":"Point"},"name":"Erb"} +,{"_id":{"$oid":"55cba2476c522cafdb054f36"},"location":{"coordinates":[-73.9110294,40.7617504],"type":"Point"},"name":"The Quays"} +,{"_id":{"$oid":"55cba2476c522cafdb054f37"},"location":{"coordinates":[-73.99753679999999,40.7451707],"type":"Point"},"name":"Big Booty Bread"} +,{"_id":{"$oid":"55cba2476c522cafdb054f38"},"location":{"coordinates":[-73.9186821,40.838522],"type":"Point"},"name":"Olga'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054f39"},"location":{"coordinates":[-73.9901292,40.7153718],"type":"Point"},"name":"Clock Work"} +,{"_id":{"$oid":"55cba2476c522cafdb054f3a"},"location":{"coordinates":[-73.9501418,40.8273182],"type":"Point"},"name":"Mi Tierra Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054f3b"},"location":{"coordinates":[-73.86474869999999,40.71005],"type":"Point"},"name":"Yer Man'S Irish Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb054f3c"},"location":{"coordinates":[-93.2069217,43.14769159999999],"type":"Point"},"name":"Heartland Brewery"} +,{"_id":{"$oid":"55cba2476c522cafdb054f3d"},"location":{"coordinates":[-73.9809135,40.75627069999999],"type":"Point"},"name":"Cafe Manhattan"} +,{"_id":{"$oid":"55cba2476c522cafdb054f3e"},"location":{"coordinates":[-73.9963114,40.7470964],"type":"Point"},"name":"Pars Grill House"} +,{"_id":{"$oid":"55cba2476c522cafdb054f3f"},"location":{"coordinates":[-74.0026804,40.734413],"type":"Point"},"name":"Smalls Jazz Club"} +,{"_id":{"$oid":"55cba2476c522cafdb054f40"},"location":{"coordinates":[-73.95771119999999,40.7175439],"type":"Point"},"name":"Fornino"} +,{"_id":{"$oid":"55cba2476c522cafdb054f41"},"location":{"coordinates":[-73.9904645,40.7187154],"type":"Point"},"name":"Rockwood Music Hall"} +,{"_id":{"$oid":"55cba2476c522cafdb054f42"},"location":{"coordinates":[-73.87680619999999,40.7379944],"type":"Point"},"name":"Fay Da Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb054f43"},"location":{"coordinates":[-74.0101308,40.6114847],"type":"Point"},"name":"Mezcals"} +,{"_id":{"$oid":"55cba2476c522cafdb054f44"},"location":{"coordinates":[-73.97724,40.7654629],"type":"Point"},"name":"Nino Tuscany"} +,{"_id":{"$oid":"55cba2476c522cafdb054f45"},"location":{"coordinates":[-73.99337469999999,40.6976434],"type":"Point"},"name":"Sushi Gallery"} +,{"_id":{"$oid":"55cba2476c522cafdb054f46"},"location":{"coordinates":[-73.8768465,40.7258625],"type":"Point"},"name":"Steve'S Pizza Place"} +,{"_id":{"$oid":"55cba2476c522cafdb054f47"},"location":{"coordinates":[-73.88346299999999,40.8420231],"type":"Point"},"name":"Domino'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054f48"},"location":{"coordinates":[-73.984872,40.7278223],"type":"Point"},"name":"Spanky \u0026 Darla'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054f49"},"location":{"coordinates":[-73.96810169999999,40.7619363],"type":"Point"},"name":"Bloomberg"} +,{"_id":{"$oid":"55cba2476c522cafdb054f4a"},"location":{"coordinates":[-74.0768044,40.6422101],"type":"Point"},"name":"The Gavel Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb054f4b"},"location":{"coordinates":[-73.8308741,40.69938519999999],"type":"Point"},"name":"New Golden Chopstick Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054f4c"},"location":{"coordinates":[-73.976478,40.75040970000001],"type":"Point"},"name":"Sophie'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054f4d"},"location":{"coordinates":[-73.90586619999999,40.7451668],"type":"Point"},"name":"Carvel Ice Cream"} +,{"_id":{"$oid":"55cba2476c522cafdb054f4e"},"location":{"coordinates":[-73.991147,40.759256],"type":"Point"},"name":"Etcetera Etcetera"} +,{"_id":{"$oid":"55cba2476c522cafdb054f4f"},"location":{"coordinates":[-73.987657,40.737832],"type":"Point"},"name":"Azuki Japanese Restaurent"} +,{"_id":{"$oid":"55cba2476c522cafdb054f50"},"location":{"coordinates":[-74.0680076,40.5927938],"type":"Point"},"name":"Chinar On The Island"} +,{"_id":{"$oid":"55cba2476c522cafdb054f51"},"location":{"coordinates":[-73.84441,40.6953869],"type":"Point"},"name":"El Cafetal Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb054f52"},"location":{"coordinates":[-73.9957348,40.6908744],"type":"Point"},"name":"Chip Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb054f53"},"location":{"coordinates":[-73.9620236,40.682852],"type":"Point"},"name":"Hill Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054f54"},"location":{"coordinates":[-73.86066269999999,40.8359645],"type":"Point"},"name":"Golden Krust Caribbean Bakery \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb054f55"},"location":{"coordinates":[-73.8855408,40.8369804],"type":"Point"},"name":"Popeyes Chicken \u0026 Biscuits"} +,{"_id":{"$oid":"55cba2476c522cafdb054f56"},"location":{"coordinates":[-73.9205891,40.86821],"type":"Point"},"name":"Garden Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054f57"},"location":{"coordinates":[-73.936858,40.8047803],"type":"Point"},"name":"Golden Krust Caribbean Bakery \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb054f58"},"location":{"coordinates":[-73.9612859,40.6630911],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb054f59"},"location":{"coordinates":[-73.99002329999999,40.7237251],"type":"Point"},"name":"Cozy Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054f5a"},"location":{"coordinates":[-74.01326259999999,40.67682420000001],"type":"Point"},"name":"Baked"} +,{"_id":{"$oid":"55cba2476c522cafdb054f5b"},"location":{"coordinates":[-73.79358549999999,40.7102647],"type":"Point"},"name":"Dhaka Sweets \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054f5c"},"location":{"coordinates":[-73.993758,40.7499599],"type":"Point"},"name":"City Perk"} +,{"_id":{"$oid":"55cba2476c522cafdb054f5d"},"location":{"coordinates":[-73.956666,40.8031371],"type":"Point"},"name":"Melba'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054f5e"},"location":{"coordinates":[-73.9644394,40.8025791],"type":"Point"},"name":"Roti Roll / Suite"} +,{"_id":{"$oid":"55cba2476c522cafdb054f5f"},"location":{"coordinates":[-73.9949853,40.7441201],"type":"Point"},"name":"Pongsri Thai Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054f60"},"location":{"coordinates":[-73.967817,40.763458],"type":"Point"},"name":"Circus Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054f61"},"location":{"coordinates":[-73.8343762,40.6831668],"type":"Point"},"name":"New Thriving Restaurant Of Guyana"} +,{"_id":{"$oid":"55cba2476c522cafdb054f62"},"location":{"coordinates":[-73.8771277,40.8712034],"type":"Point"},"name":"La Nueva Estrella Bar \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054f63"},"location":{"coordinates":[-74.0087694,40.70776619999999],"type":"Point"},"name":"J P Morgan Chase Cafeteria"} +,{"_id":{"$oid":"55cba2476c522cafdb054f64"},"location":{"coordinates":[-73.9663575,40.7642443],"type":"Point"},"name":"Original Ray'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054f65"},"location":{"coordinates":[-73.8849037,40.74391230000001],"type":"Point"},"name":"Hae Won Dae Restaurant1"} +,{"_id":{"$oid":"55cba2476c522cafdb054f66"},"location":{"coordinates":[-73.98189099999999,40.75495129999999],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb054f67"},"location":{"coordinates":[-73.97747780000002,40.7601109],"type":"Point"},"name":"Cafe Metro"} +,{"_id":{"$oid":"55cba2476c522cafdb054f68"},"location":{"coordinates":[-73.8046492,40.76219450000001],"type":"Point"},"name":"Happy Karaoke"} +,{"_id":{"$oid":"55cba2476c522cafdb054f69"},"location":{"coordinates":[-73.9991553,40.728743],"type":"Point"},"name":"Boyd Thai"} +,{"_id":{"$oid":"55cba2476c522cafdb054f6a"},"location":{"coordinates":[-73.9558144,40.7733804],"type":"Point"},"name":"Sojourn"} +,{"_id":{"$oid":"55cba2476c522cafdb054f6b"},"location":{"coordinates":[-73.873111,40.683619],"type":"Point"},"name":"Dunkin' Donuts, Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb054f6c"},"location":{"coordinates":[-73.990494,40.7569545],"type":"Point"},"name":"Auntie Anne'S Pretzels"} +,{"_id":{"$oid":"55cba2476c522cafdb054f6d"},"location":{"coordinates":[-73.99253890000001,40.758082],"type":"Point"},"name":"Shorty'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054f6e"},"location":{"coordinates":[-73.91906329999999,40.7423459],"type":"Point"},"name":"Riko"} +,{"_id":{"$oid":"55cba2476c522cafdb054f6f"},"location":{"coordinates":[-73.86714,40.6737013],"type":"Point"},"name":"Coco' S Pizza \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054f70"},"location":{"coordinates":[-73.9240736,40.7457138],"type":"Point"},"name":"The Brothers Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054f71"},"location":{"coordinates":[-73.9793564,40.7589426],"type":"Point"},"name":"Liberty Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb054f72"},"location":{"coordinates":[-73.9996862,40.7432275],"type":"Point"},"name":"Lasagna Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054f73"},"location":{"coordinates":[-73.8462225,40.8375586],"type":"Point"},"name":"New Jade Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb054f74"},"location":{"coordinates":[-73.97008559999999,40.7563583],"type":"Point"},"name":"Shimizu Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054f75"},"location":{"coordinates":[-74.02223699999999,40.6312659],"type":"Point"},"name":"Tarboosh Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054f76"},"location":{"coordinates":[-73.8748169,40.7507609],"type":"Point"},"name":"La Ruana Paisa"} +,{"_id":{"$oid":"55cba2476c522cafdb054f77"},"location":{"coordinates":[-73.95549749999999,40.7781595],"type":"Point"},"name":"Kidville Ny"} +,{"_id":{"$oid":"55cba2476c522cafdb054f78"},"location":{"coordinates":[-73.990556,40.749722],"type":"Point"},"name":"Cinnabon World Famous Cinnamon Rolls/Carvel"} +,{"_id":{"$oid":"55cba2476c522cafdb054f79"},"location":{"coordinates":[-74.009823,40.65284399999999],"type":"Point"},"name":"Cousin'S Deli Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054f7a"},"location":{"coordinates":[-73.913923,40.80595599999999],"type":"Point"},"name":"Pio Pio"} +,{"_id":{"$oid":"55cba2476c522cafdb054f7b"},"location":{"coordinates":[-73.9768727,40.6845666],"type":"Point"},"name":"Mrs. Fields, Tcby"} +,{"_id":{"$oid":"55cba2476c522cafdb054f7c"},"location":{"coordinates":[-73.9631035,40.7576523],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb054f7d"},"location":{"coordinates":[-73.8463378,40.8373851],"type":"Point"},"name":"Coconut Palm Bar And Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb054f7e"},"location":{"coordinates":[-73.9697795,40.7519846],"type":"Point"},"name":"Chirping Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb054f7f"},"location":{"coordinates":[-73.988809,40.7216582],"type":"Point"},"name":"Epstein'S Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054f80"},"location":{"coordinates":[-73.9568608,40.7189627],"type":"Point"},"name":"Kasia'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054f81"},"location":{"coordinates":[-73.99206699999999,40.741462],"type":"Point"},"name":"Metropolitan Room"} +,{"_id":{"$oid":"55cba2476c522cafdb054f82"},"location":{"coordinates":[-73.9613037,40.7077281],"type":"Point"},"name":"Gottlieb'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054f83"},"location":{"coordinates":[-73.943236,40.701137],"type":"Point"},"name":"Bed Stuy Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb054f84"},"location":{"coordinates":[-73.95535,40.7128439],"type":"Point"},"name":"Eddie Jr'S Sport Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb054f85"},"location":{"coordinates":[-73.9072651,40.8863452],"type":"Point"},"name":"Riverdale City Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb054f86"},"location":{"coordinates":[-73.8871758,40.8540381],"type":"Point"},"name":"Shila Bar \u0026 Wine"} +,{"_id":{"$oid":"55cba2476c522cafdb054f87"},"location":{"coordinates":[-73.88845049999999,40.7653448],"type":"Point"},"name":"Gotte'S Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054f88"},"location":{"coordinates":[-73.972308,40.761132],"type":"Point"},"name":"Chop'T"} +,{"_id":{"$oid":"55cba2476c522cafdb054f89"},"location":{"coordinates":[-73.99257949999999,40.7308572],"type":"Point"},"name":"Famous Famiglia Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054f8a"},"location":{"coordinates":[-73.92722549999999,40.7552971],"type":"Point"},"name":"Veronica'S Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054f8b"},"location":{"coordinates":[-73.9542333,40.7430108],"type":"Point"},"name":"Butcher Gourmet Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb054f8c"},"location":{"coordinates":[-73.8799016,40.7480786],"type":"Point"},"name":"Pollos Gus Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054f8d"},"location":{"coordinates":[-73.9579626,40.7418339],"type":"Point"},"name":"Sparks Deli Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054f8e"},"location":{"coordinates":[-73.992471,40.7511286],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb054f8f"},"location":{"coordinates":[-73.9885812,40.7224615],"type":"Point"},"name":"Sugar Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054f90"},"location":{"coordinates":[-73.9223974,40.8132581],"type":"Point"},"name":"Subways/Fuller Drug Store"} +,{"_id":{"$oid":"55cba2476c522cafdb054f91"},"location":{"coordinates":[-73.882319,40.7426493],"type":"Point"},"name":"La Gata Golosa"} +,{"_id":{"$oid":"55cba2476c522cafdb054f92"},"location":{"coordinates":[-73.9932592,40.7026052],"type":"Point"},"name":"Grimaldi'S Pizzeria - Front Street Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054f93"},"location":{"coordinates":[-73.924843,40.66397],"type":"Point"},"name":"Trini Roti House And Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb054f94"},"location":{"coordinates":[-73.955265,40.776554],"type":"Point"},"name":"Gael Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb054f95"},"location":{"coordinates":[-73.9773359,40.78498],"type":"Point"},"name":"Land Thai Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb054f96"},"location":{"coordinates":[-74.0061415,40.7328719],"type":"Point"},"name":"Cc'S Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054f97"},"location":{"coordinates":[-73.97893490000001,40.6052466],"type":"Point"},"name":"Italia Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054f98"},"location":{"coordinates":[-73.9184405,40.8381695],"type":"Point"},"name":"Plaza Tulcingo Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054f99"},"location":{"coordinates":[-73.96713299999999,40.632363],"type":"Point"},"name":"Pakiza Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054f9a"},"location":{"coordinates":[-74.0154858,40.7130392],"type":"Point"},"name":"Cadwalader, Wickersham \u0026 Taft"} +,{"_id":{"$oid":"55cba2476c522cafdb054f9b"},"location":{"coordinates":[-73.9883294,40.7341443],"type":"Point"},"name":"Con Edison Cafeteria"} +,{"_id":{"$oid":"55cba2476c522cafdb054f9c"},"location":{"coordinates":[-73.9687162,40.8000584],"type":"Point"},"name":"Cafe Du Soleil"} +,{"_id":{"$oid":"55cba2476c522cafdb054f9d"},"location":{"coordinates":[-73.98720999999999,40.72553],"type":"Point"},"name":"Pukk"} +,{"_id":{"$oid":"55cba2476c522cafdb054f9e"},"location":{"coordinates":[-74.0138541,40.7038704],"type":"Point"},"name":"The Liberty Cafe (On The Guy V. Molinari Ferry)"} +,{"_id":{"$oid":"55cba2476c522cafdb054f9f"},"location":{"coordinates":[-73.8571544,40.82295500000001],"type":"Point"},"name":"Fancy Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb054fa0"},"location":{"coordinates":[-73.955558,40.772152],"type":"Point"},"name":"Uva"} +,{"_id":{"$oid":"55cba2476c522cafdb054fa1"},"location":{"coordinates":[-73.9862038,40.747189],"type":"Point"},"name":"Oz Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb054fa2"},"location":{"coordinates":[-73.8640794,40.8544429],"type":"Point"},"name":"Panda Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054fa3"},"location":{"coordinates":[-92.7276799,41.746142],"type":"Point"},"name":"Chipotle Mexican Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb054fa4"},"location":{"coordinates":[-74.004537,40.732957],"type":"Point"},"name":"Lederhosen Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054fa5"},"location":{"coordinates":[-73.961635,40.716347],"type":"Point"},"name":"The Levee"} +,{"_id":{"$oid":"55cba2476c522cafdb054fa6"},"location":{"coordinates":[-73.98560599999999,40.7223511],"type":"Point"},"name":"Open House"} +,{"_id":{"$oid":"55cba2476c522cafdb054fa7"},"location":{"coordinates":[-74.0078192,40.7146326],"type":"Point"},"name":"Dunkin' Donuts, Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb054fa8"},"location":{"coordinates":[-73.99836479999999,40.7147547],"type":"Point"},"name":"Joe'S Ginger Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054fa9"},"location":{"coordinates":[-74.006992,40.73140799999999],"type":"Point"},"name":"Alexandra"} +,{"_id":{"$oid":"55cba2476c522cafdb054faa"},"location":{"coordinates":[-73.98799129999999,40.6216665],"type":"Point"},"name":"A\u0026L Pizza Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054fab"},"location":{"coordinates":[-73.96005819999999,40.8130823],"type":"Point"},"name":"Broadway Au Lait"} +,{"_id":{"$oid":"55cba2476c522cafdb054fac"},"location":{"coordinates":[-73.98829599999999,40.726747],"type":"Point"},"name":"Soba-Koh"} +,{"_id":{"$oid":"55cba2476c522cafdb054fad"},"location":{"coordinates":[-74.004519,40.65463],"type":"Point"},"name":"Ines' Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb054fae"},"location":{"coordinates":[-73.9492762,40.7724962],"type":"Point"},"name":"Gracie'S Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054faf"},"location":{"coordinates":[-73.7517434,40.6663811],"type":"Point"},"name":"Patmar Bake Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb054fb0"},"location":{"coordinates":[-73.950639,40.671162],"type":"Point"},"name":"Cock'S Bajan Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054fb1"},"location":{"coordinates":[-74.0030587,40.730947],"type":"Point"},"name":"Amy'S Bread"} +,{"_id":{"$oid":"55cba2476c522cafdb054fb2"},"location":{"coordinates":[-73.9928781,40.6879885],"type":"Point"},"name":"Court Street Bagels"} +,{"_id":{"$oid":"55cba2476c522cafdb054fb3"},"location":{"coordinates":[-73.860472,40.749927],"type":"Point"},"name":"Luz De America Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054fb4"},"location":{"coordinates":[-73.8456437,40.7831039],"type":"Point"},"name":"Las Delicias"} +,{"_id":{"$oid":"55cba2476c522cafdb054fb5"},"location":{"coordinates":[-73.90669559999999,40.8771301],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb054fb6"},"location":{"coordinates":[-73.9604454,40.6581204],"type":"Point"},"name":"Scoops"} +,{"_id":{"$oid":"55cba2476c522cafdb054fb7"},"location":{"coordinates":[-73.9691552,40.6775578],"type":"Point"},"name":"Amorina"} +,{"_id":{"$oid":"55cba2476c522cafdb054fb8"},"location":{"coordinates":[-73.9912111,40.7540394],"type":"Point"},"name":"Stitch Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054fb9"},"location":{"coordinates":[-73.7466833,40.6959997],"type":"Point"},"name":"Tien Chu Chinese Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb054fba"},"location":{"coordinates":[-73.7927457,40.7529952],"type":"Point"},"name":"New Moon Star Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054fbb"},"location":{"coordinates":[-74.14326799999999,40.625175],"type":"Point"},"name":"Mikes Olympic Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb054fbc"},"location":{"coordinates":[-73.936713,40.736041],"type":"Point"},"name":"Van Dam Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb054fbd"},"location":{"coordinates":[-73.9813838,40.7540452],"type":"Point"},"name":"Chipotle Mexican Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb054fbe"},"location":{"coordinates":[-73.9230293,40.74383479999999],"type":"Point"},"name":"Maggie Mae'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054fbf"},"location":{"coordinates":[-73.9714731,40.7567935],"type":"Point"},"name":"Cafe Metro"} +,{"_id":{"$oid":"55cba2476c522cafdb054fc0"},"location":{"coordinates":[-73.9799732,40.7639907],"type":"Point"},"name":"Between The Bread"} +,{"_id":{"$oid":"55cba2476c522cafdb054fc1"},"location":{"coordinates":[-73.98809299999999,40.719762],"type":"Point"},"name":"Co-Op At Hotel Rivington"} +,{"_id":{"$oid":"55cba2476c522cafdb054fc2"},"location":{"coordinates":[-73.98311799999999,40.7449579],"type":"Point"},"name":"Ps 450"} +,{"_id":{"$oid":"55cba2476c522cafdb054fc3"},"location":{"coordinates":[-73.9310449,40.8681918],"type":"Point"},"name":"Il Sole"} +,{"_id":{"$oid":"55cba2476c522cafdb054fc4"},"location":{"coordinates":[-73.9346892,40.6631248],"type":"Point"},"name":"Bajan Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054fc5"},"location":{"coordinates":[-73.9672964,40.7569576],"type":"Point"},"name":"Redemption Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb054fc6"},"location":{"coordinates":[-73.95088799999999,40.783614],"type":"Point"},"name":"Isohama"} +,{"_id":{"$oid":"55cba2476c522cafdb054fc7"},"location":{"coordinates":[-73.9903192,40.7490067],"type":"Point"},"name":"Arome Cafe 32"} +,{"_id":{"$oid":"55cba2476c522cafdb054fc8"},"location":{"coordinates":[-73.95895,40.774469],"type":"Point"},"name":"Hale \u0026 Hearty Soups"} +,{"_id":{"$oid":"55cba2476c522cafdb054fc9"},"location":{"coordinates":[-73.9922069,40.763599],"type":"Point"},"name":"Perdition"} +,{"_id":{"$oid":"55cba2476c522cafdb054fca"},"location":{"coordinates":[-73.9881783,40.732355],"type":"Point"},"name":"99 Miles To Philly"} +,{"_id":{"$oid":"55cba2476c522cafdb054fcb"},"location":{"coordinates":[-73.9414634,40.6178124],"type":"Point"},"name":"Mr.Nosh"} +,{"_id":{"$oid":"55cba2476c522cafdb054fcc"},"location":{"coordinates":[-73.8971244,40.8627713],"type":"Point"},"name":"Bally Total Fitness"} +,{"_id":{"$oid":"55cba2476c522cafdb054fcd"},"location":{"coordinates":[-73.993302,40.73511610000001],"type":"Point"},"name":"Joe-The Art Of Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb054fce"},"location":{"coordinates":[-78.3976915,40.5106544],"type":"Point"},"name":"Manhattan Gourmet Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb054fcf"},"location":{"coordinates":[-73.9566536,40.7125087],"type":"Point"},"name":"Lodge"} +,{"_id":{"$oid":"55cba2476c522cafdb054fd0"},"location":{"coordinates":[-73.9420116,40.6689584],"type":"Point"},"name":"Mendys Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054fd1"},"location":{"coordinates":[-73.9622863,40.7126207],"type":"Point"},"name":"Pt Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054fd2"},"location":{"coordinates":[-73.9096718,40.7041011],"type":"Point"},"name":"Seneca Fiesta Coffee Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054fd3"},"location":{"coordinates":[-73.8433617,40.68057090000001],"type":"Point"},"name":"Soon Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb054fd4"},"location":{"coordinates":[-73.9049483,40.70251349999999],"type":"Point"},"name":"Mn Scorpion Cafe Club"} +,{"_id":{"$oid":"55cba2476c522cafdb054fd5"},"location":{"coordinates":[-73.9763569,40.78638900000001],"type":"Point"},"name":"Le Pain Quotidien"} +,{"_id":{"$oid":"55cba2476c522cafdb054fd6"},"location":{"coordinates":[-73.9986005,40.7574648],"type":"Point"},"name":"Best Western Convention Center"} +,{"_id":{"$oid":"55cba2476c522cafdb054fd7"},"location":{"coordinates":[-73.947102,40.62698899999999],"type":"Point"},"name":"No.1 Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054fd8"},"location":{"coordinates":[-73.7822056,40.6434612],"type":"Point"},"name":"Panini Express"} +,{"_id":{"$oid":"55cba2476c522cafdb054fd9"},"location":{"coordinates":[-73.99334999999999,40.738622],"type":"Point"},"name":"Blt Fish"} +,{"_id":{"$oid":"55cba2476c522cafdb054fda"},"location":{"coordinates":[-73.9118304,40.8037517],"type":"Point"},"name":"Rincon Ecuatoriano"} +,{"_id":{"$oid":"55cba2476c522cafdb054fdb"},"location":{"coordinates":[-73.957407,40.7142487],"type":"Point"},"name":"Roebling Tea Room"} +,{"_id":{"$oid":"55cba2476c522cafdb054fdc"},"location":{"coordinates":[-73.950333,40.674468],"type":"Point"},"name":"Exquisite Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054fdd"},"location":{"coordinates":[-73.94988169999999,40.6509254],"type":"Point"},"name":"Exquisite Express Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054fde"},"location":{"coordinates":[-74.066487,40.5892032],"type":"Point"},"name":"South Fin Grill/The Vanderbilt"} +,{"_id":{"$oid":"55cba2476c522cafdb054fdf"},"location":{"coordinates":[-73.9802946,40.7460436],"type":"Point"},"name":"Murray Hill Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb054fe0"},"location":{"coordinates":[-73.9757133,40.7651683],"type":"Point"},"name":"Sarabeth'S"} +,{"_id":{"$oid":"55cba2476c522cafdb054fe1"},"location":{"coordinates":[-73.9163186,40.6194163],"type":"Point"},"name":"Bill'S Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054fe2"},"location":{"coordinates":[-73.939621,40.708255],"type":"Point"},"name":"Jessi Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb054fe3"},"location":{"coordinates":[-74.028695,40.628364],"type":"Point"},"name":"The Pour House Of Bayridge"} +,{"_id":{"$oid":"55cba2476c522cafdb054fe4"},"location":{"coordinates":[-73.790882,40.853253],"type":"Point"},"name":"Portofino Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054fe5"},"location":{"coordinates":[-73.9845338,40.7203841],"type":"Point"},"name":"Tapeo 29"} +,{"_id":{"$oid":"55cba2476c522cafdb054fe6"},"location":{"coordinates":[-73.98612,40.727385],"type":"Point"},"name":"Krystal'S Cafe 81"} +,{"_id":{"$oid":"55cba2476c522cafdb054fe7"},"location":{"coordinates":[-73.7822056,40.6434612],"type":"Point"},"name":"Hudson News/Euro Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054fe8"},"location":{"coordinates":[-73.9890616,40.7186876],"type":"Point"},"name":"Dark Room"} +,{"_id":{"$oid":"55cba2476c522cafdb054fe9"},"location":{"coordinates":[-73.8060892,40.7207343],"type":"Point"},"name":"Carvel Ice Cream"} +,{"_id":{"$oid":"55cba2476c522cafdb054fea"},"location":{"coordinates":[-74.0045715,40.718911],"type":"Point"},"name":"Petrarca"} +,{"_id":{"$oid":"55cba2476c522cafdb054feb"},"location":{"coordinates":[-73.9046345,40.8552448],"type":"Point"},"name":"El Jobo Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb054fec"},"location":{"coordinates":[-74.009796,40.734459],"type":"Point"},"name":"Perry Street"} +,{"_id":{"$oid":"55cba2476c522cafdb054fed"},"location":{"coordinates":[-73.984262,40.7576226],"type":"Point"},"name":"O'Lunney'S Times Square Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb054fee"},"location":{"coordinates":[-73.94387689999999,40.8255961],"type":"Point"},"name":"Texas Star Snack Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb054fef"},"location":{"coordinates":[-74.000146,40.730021],"type":"Point"},"name":"Luxor Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054ff0"},"location":{"coordinates":[-73.90503199999999,40.879323],"type":"Point"},"name":"Popeyes Chicken \u0026 Biscuits"} +,{"_id":{"$oid":"55cba2476c522cafdb054ff1"},"location":{"coordinates":[-73.9924742,40.7490266],"type":"Point"},"name":"Harrington'S Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb054ff2"},"location":{"coordinates":[-73.8922316,40.86112019999999],"type":"Point"},"name":"Parrilla Latina"} +,{"_id":{"$oid":"55cba2476c522cafdb054ff3"},"location":{"coordinates":[-74.109837,40.566729],"type":"Point"},"name":"Carvel Ice Cream"} +,{"_id":{"$oid":"55cba2476c522cafdb054ff4"},"location":{"coordinates":[-73.9820093,40.7407064],"type":"Point"},"name":"Manhattan Brew House"} +,{"_id":{"$oid":"55cba2476c522cafdb054ff5"},"location":{"coordinates":[-74.0062401,40.7397546],"type":"Point"},"name":"Papaya Dog"} +,{"_id":{"$oid":"55cba2476c522cafdb054ff6"},"location":{"coordinates":[-74.0062847,40.7215904],"type":"Point"},"name":"Tribeca Cinemas"} +,{"_id":{"$oid":"55cba2476c522cafdb054ff7"},"location":{"coordinates":[-73.95631089999999,40.7194675],"type":"Point"},"name":"Soft Spot"} +,{"_id":{"$oid":"55cba2476c522cafdb054ff8"},"location":{"coordinates":[-73.9675579,40.7606438],"type":"Point"},"name":"Gigi Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb054ff9"},"location":{"coordinates":[-73.9659113,40.7650768],"type":"Point"},"name":"Eat Here Now"} +,{"_id":{"$oid":"55cba2476c522cafdb054ffa"},"location":{"coordinates":[-73.9720839,40.7608582],"type":"Point"},"name":"Aquavit"} +,{"_id":{"$oid":"55cba2476c522cafdb054ffb"},"location":{"coordinates":[-73.96162559999999,40.8125696],"type":"Point"},"name":"Chartwells @ Manhattan School Of Music"} +,{"_id":{"$oid":"55cba2476c522cafdb054ffc"},"location":{"coordinates":[-73.96255599999999,40.598404],"type":"Point"},"name":"Stolovaya"} +,{"_id":{"$oid":"55cba2476c522cafdb054ffd"},"location":{"coordinates":[-74.0054833,40.745519],"type":"Point"},"name":"10Th Avenue Cookshop"} +,{"_id":{"$oid":"55cba2476c522cafdb054ffe"},"location":{"coordinates":[-73.9481771,40.5839596],"type":"Point"},"name":"Yiasou"} +,{"_id":{"$oid":"55cba2476c522cafdb054fff"},"location":{"coordinates":[-73.9783387,40.7627874],"type":"Point"},"name":"Alliance Capital"} +,{"_id":{"$oid":"55cba2476c522cafdb055000"},"location":{"coordinates":[-73.9890844,40.7483602],"type":"Point"},"name":"Star Gourmet Deli \u0026 Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb055001"},"location":{"coordinates":[-73.982529,40.741611],"type":"Point"},"name":"Stone Creek"} +,{"_id":{"$oid":"55cba2476c522cafdb055002"},"location":{"coordinates":[-74.00066120000001,40.7283483],"type":"Point"},"name":"Florencia 13"} +,{"_id":{"$oid":"55cba2476c522cafdb055003"},"location":{"coordinates":[-74.0770079,40.6374389],"type":"Point"},"name":"M \u0026 K Spanish Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055004"},"location":{"coordinates":[-74.109837,40.566729],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb055005"},"location":{"coordinates":[-73.868831,40.7424673],"type":"Point"},"name":"Betty'S Total Events Betty'S Catering"} +,{"_id":{"$oid":"55cba2476c522cafdb055006"},"location":{"coordinates":[-73.98324439999999,40.5757445],"type":"Point"},"name":"Footprints Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055007"},"location":{"coordinates":[-73.9158723,40.8197105],"type":"Point"},"name":"Jimbo'S Hamburger Place"} +,{"_id":{"$oid":"55cba2476c522cafdb055008"},"location":{"coordinates":[-73.9694657,40.6926394],"type":"Point"},"name":"Luz Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055009"},"location":{"coordinates":[-73.8493237,40.73174849999999],"type":"Point"},"name":"Pizza \u0026 Pasta City"} +,{"_id":{"$oid":"55cba2476c522cafdb05500a"},"location":{"coordinates":[-73.9195567,40.7017733],"type":"Point"},"name":"Carrera Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb05500b"},"location":{"coordinates":[-73.94195599999999,40.823392],"type":"Point"},"name":"Peoples Choice Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb05500c"},"location":{"coordinates":[-73.9002194,40.8314954],"type":"Point"},"name":"Golden Krust Caribbean Bakery \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb05500d"},"location":{"coordinates":[-73.932558,40.618279],"type":"Point"},"name":"Mcmahon'S Irish Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb05500e"},"location":{"coordinates":[-73.7353782,40.7711931],"type":"Point"},"name":"Greek Islands"} +,{"_id":{"$oid":"55cba2476c522cafdb05500f"},"location":{"coordinates":[-73.8089136,40.7056941],"type":"Point"},"name":"Punto Rojo Bakery \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055010"},"location":{"coordinates":[-73.99564099999999,40.749688],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb055011"},"location":{"coordinates":[-73.9602876,40.6818584],"type":"Point"},"name":"Outpost"} +,{"_id":{"$oid":"55cba2476c522cafdb055012"},"location":{"coordinates":[-74.0024547,40.7454104],"type":"Point"},"name":"Le Grainne Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055013"},"location":{"coordinates":[-73.973663,40.590702],"type":"Point"},"name":"Skyline Billard"} +,{"_id":{"$oid":"55cba2476c522cafdb055014"},"location":{"coordinates":[-73.9837246,40.7528085],"type":"Point"},"name":"Koi"} +,{"_id":{"$oid":"55cba2476c522cafdb055015"},"location":{"coordinates":[-74.01386719999999,40.6420185],"type":"Point"},"name":"Tulcingo"} +,{"_id":{"$oid":"55cba2476c522cafdb055016"},"location":{"coordinates":[-73.96821179999999,40.7672541],"type":"Point"},"name":"Match 65"} +,{"_id":{"$oid":"55cba2476c522cafdb055017"},"location":{"coordinates":[-73.865882,40.8454332],"type":"Point"},"name":"Dunkin' Donuts, Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb055018"},"location":{"coordinates":[-74.0214364,40.6330014],"type":"Point"},"name":"Carvel Ice Cream"} +,{"_id":{"$oid":"55cba2476c522cafdb055019"},"location":{"coordinates":[-73.876057,40.895807],"type":"Point"},"name":"Kelly'S Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb05501a"},"location":{"coordinates":[-73.9962038,40.744116],"type":"Point"},"name":"Jake'S Saloon"} +,{"_id":{"$oid":"55cba2476c522cafdb05501b"},"location":{"coordinates":[-73.9709831,40.7963676],"type":"Point"},"name":"Regional"} +,{"_id":{"$oid":"55cba2476c522cafdb05501c"},"location":{"coordinates":[-73.93805429999999,40.8287532],"type":"Point"},"name":"Jimbo'S Hamburger Place"} +,{"_id":{"$oid":"55cba2476c522cafdb05501d"},"location":{"coordinates":[-74.009407,40.7168467],"type":"Point"},"name":"Ninja Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05501e"},"location":{"coordinates":[-73.9400963,40.8412554],"type":"Point"},"name":"New University Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb05501f"},"location":{"coordinates":[-74.10333829999999,40.5762537],"type":"Point"},"name":"Go-Go'S Deli \u0026 Convenience"} +,{"_id":{"$oid":"55cba2476c522cafdb055020"},"location":{"coordinates":[-73.953769,40.77037],"type":"Point"},"name":"Three Star Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb055021"},"location":{"coordinates":[-73.91061309999999,40.6779982],"type":"Point"},"name":"Jay'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055022"},"location":{"coordinates":[-73.9054874,40.7003308],"type":"Point"},"name":"La Flor Del Paraiso Restauraunt"} +,{"_id":{"$oid":"55cba2476c522cafdb055023"},"location":{"coordinates":[-73.9835112,40.7408627],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb055024"},"location":{"coordinates":[-73.90410229999999,40.7007117],"type":"Point"},"name":"Ridgewood Eats"} +,{"_id":{"$oid":"55cba2476c522cafdb055025"},"location":{"coordinates":[-73.96504519999999,40.7599803],"type":"Point"},"name":"Moonstruck Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb055026"},"location":{"coordinates":[-73.9534074,40.7286334],"type":"Point"},"name":"Cafe Riviera"} +,{"_id":{"$oid":"55cba2476c522cafdb055027"},"location":{"coordinates":[-74.003282,40.729171],"type":"Point"},"name":"Blue Ribbon Bakery Market"} +,{"_id":{"$oid":"55cba2476c522cafdb055028"},"location":{"coordinates":[-73.9898656,40.7499664],"type":"Point"},"name":"Stout"} +,{"_id":{"$oid":"55cba2476c522cafdb055029"},"location":{"coordinates":[-73.9693213,40.76024570000001],"type":"Point"},"name":"Fusia"} +,{"_id":{"$oid":"55cba2476c522cafdb05502a"},"location":{"coordinates":[-74.1630826,40.62618459999999],"type":"Point"},"name":"Planet Wings"} +,{"_id":{"$oid":"55cba2476c522cafdb05502b"},"location":{"coordinates":[-73.9989693,40.6846665],"type":"Point"},"name":"Cobble Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb05502c"},"location":{"coordinates":[-74.0097825,40.72060090000001],"type":"Point"},"name":"Wichcraft"} +,{"_id":{"$oid":"55cba2476c522cafdb05502d"},"location":{"coordinates":[-73.99955770000001,40.7296503],"type":"Point"},"name":"Sacred Chow"} +,{"_id":{"$oid":"55cba2476c522cafdb05502e"},"location":{"coordinates":[-73.8956433,40.6381519],"type":"Point"},"name":"Dougie'S Jamaican Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb05502f"},"location":{"coordinates":[-73.978819,40.76564],"type":"Point"},"name":"Red 58"} +,{"_id":{"$oid":"55cba2476c522cafdb055030"},"location":{"coordinates":[-73.9927809,40.7451239],"type":"Point"},"name":"Tre Dici"} +,{"_id":{"$oid":"55cba2476c522cafdb055031"},"location":{"coordinates":[-74.011933,40.710409],"type":"Point"},"name":"George'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055032"},"location":{"coordinates":[-73.8180619,40.7506631],"type":"Point"},"name":"Fay Da Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb055033"},"location":{"coordinates":[-73.9511668,40.7258355],"type":"Point"},"name":"Antek Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055034"},"location":{"coordinates":[-74.0051398,40.7281648],"type":"Point"},"name":"Chipotle Mexican Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb055035"},"location":{"coordinates":[-73.9934292,40.7311439],"type":"Point"},"name":"Chipotle Mexican Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb055036"},"location":{"coordinates":[-73.8716925,40.8791901],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055037"},"location":{"coordinates":[-73.8523307,40.8726201],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055038"},"location":{"coordinates":[-74.0789643,40.6384205],"type":"Point"},"name":"Golden Pastry Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb055039"},"location":{"coordinates":[-73.816423,40.688971],"type":"Point"},"name":"Marhaba Halal Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb05503a"},"location":{"coordinates":[-73.822981,40.686402],"type":"Point"},"name":"Kaieteur Express Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05503b"},"location":{"coordinates":[-73.99862519999999,40.7292862],"type":"Point"},"name":"Pluck U"} +,{"_id":{"$oid":"55cba2476c522cafdb05503c"},"location":{"coordinates":[-73.85336939999999,40.8535072],"type":"Point"},"name":"Kiraku Sushi Japanese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05503d"},"location":{"coordinates":[-73.8885928,40.8731713],"type":"Point"},"name":"Maddens Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb05503e"},"location":{"coordinates":[-73.88868099999999,40.8539214],"type":"Point"},"name":"Estrellita Poblana Iii"} +,{"_id":{"$oid":"55cba2476c522cafdb05503f"},"location":{"coordinates":[-73.9811847,40.7465582],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb055040"},"location":{"coordinates":[-74.0283535,40.622403],"type":"Point"},"name":"Plaka Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055041"},"location":{"coordinates":[-73.904128,40.70931],"type":"Point"},"name":"Rogner Cafe \u0026 Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb055042"},"location":{"coordinates":[-74.0060815,40.7334327],"type":"Point"},"name":"Employee'S Only"} +,{"_id":{"$oid":"55cba2476c522cafdb055043"},"location":{"coordinates":[-73.94964019999999,40.7142433],"type":"Point"},"name":"San Marco Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb055044"},"location":{"coordinates":[-73.87991339999999,40.7480773],"type":"Point"},"name":"Himalayan Yak Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055045"},"location":{"coordinates":[-73.97131259999999,40.7922143],"type":"Point"},"name":"Gan Asia"} +,{"_id":{"$oid":"55cba2476c522cafdb055046"},"location":{"coordinates":[-73.8390414,40.6552611],"type":"Point"},"name":"Brothers Ravioli"} +,{"_id":{"$oid":"55cba2476c522cafdb055047"},"location":{"coordinates":[-73.8694225,40.733699],"type":"Point"},"name":"Mamas Empanadas"} +,{"_id":{"$oid":"55cba2476c522cafdb055048"},"location":{"coordinates":[-73.9452417,40.6552388],"type":"Point"},"name":"Cafe 101"} +,{"_id":{"$oid":"55cba2476c522cafdb055049"},"location":{"coordinates":[-73.8294614,40.693372],"type":"Point"},"name":"Papa John'S"} +,{"_id":{"$oid":"55cba2476c522cafdb05504a"},"location":{"coordinates":[-73.9128814,40.6991042],"type":"Point"},"name":"La Caleta Manabita Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05504b"},"location":{"coordinates":[-73.9896311,40.7388288],"type":"Point"},"name":"Craftbar"} +,{"_id":{"$oid":"55cba2476c522cafdb05504c"},"location":{"coordinates":[-73.9792519,40.7764593],"type":"Point"},"name":"Bin 71"} +,{"_id":{"$oid":"55cba2476c522cafdb05504d"},"location":{"coordinates":[-73.916062,40.764138],"type":"Point"},"name":"Flo"} +,{"_id":{"$oid":"55cba2476c522cafdb05504e"},"location":{"coordinates":[-73.9883615,40.7203348],"type":"Point"},"name":"Creperie"} +,{"_id":{"$oid":"55cba2476c522cafdb05504f"},"location":{"coordinates":[-73.9820129,40.7617085],"type":"Point"},"name":"Bar Americain"} +,{"_id":{"$oid":"55cba2476c522cafdb055050"},"location":{"coordinates":[-74.0069718,40.7522691],"type":"Point"},"name":"Wichcraft"} +,{"_id":{"$oid":"55cba2476c522cafdb055051"},"location":{"coordinates":[-73.98853729999999,40.7697239],"type":"Point"},"name":"Boston Market"} +,{"_id":{"$oid":"55cba2476c522cafdb055052"},"location":{"coordinates":[-73.9829735,40.7638045],"type":"Point"},"name":"Angelo'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb055053"},"location":{"coordinates":[-74.02372299999999,40.63495899999999],"type":"Point"},"name":"Emphasis"} +,{"_id":{"$oid":"55cba2476c522cafdb055054"},"location":{"coordinates":[-73.89340899999999,40.82346],"type":"Point"},"name":"El Valle Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055055"},"location":{"coordinates":[-73.92122429999999,40.7438551],"type":"Point"},"name":"Biriyani House"} +,{"_id":{"$oid":"55cba2476c522cafdb055056"},"location":{"coordinates":[-74.00568299999999,40.71959349999999],"type":"Point"},"name":"Cercle Rouge"} +,{"_id":{"$oid":"55cba2476c522cafdb055057"},"location":{"coordinates":[-73.9890844,40.7483602],"type":"Point"},"name":"Starbucks Coffee #9722"} +,{"_id":{"$oid":"55cba2476c522cafdb055058"},"location":{"coordinates":[-74.16403500000001,40.5781824],"type":"Point"},"name":"T.G.I. Friday'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055059"},"location":{"coordinates":[-73.9402246,40.593644],"type":"Point"},"name":"New Great Wall"} +,{"_id":{"$oid":"55cba2476c522cafdb05505a"},"location":{"coordinates":[-73.95512420000001,40.7187637],"type":"Point"},"name":"Mymoon"} +,{"_id":{"$oid":"55cba2476c522cafdb05505b"},"location":{"coordinates":[-73.8441435,40.6765888],"type":"Point"},"name":"Josephine'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05505c"},"location":{"coordinates":[-74.1662872,40.5598088],"type":"Point"},"name":"Amici Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb05505d"},"location":{"coordinates":[-74.0017841,40.7289707],"type":"Point"},"name":"Camaje"} +,{"_id":{"$oid":"55cba2476c522cafdb05505e"},"location":{"coordinates":[-73.9582278,40.7295177],"type":"Point"},"name":"Coco 66"} +,{"_id":{"$oid":"55cba2476c522cafdb05505f"},"location":{"coordinates":[-73.99291389999999,40.7410036],"type":"Point"},"name":"Taj Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb055060"},"location":{"coordinates":[-73.81642699999999,40.69239],"type":"Point"},"name":"Mixx Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb055061"},"location":{"coordinates":[-73.98155109999999,40.7442397],"type":"Point"},"name":"Saburi Jun Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055062"},"location":{"coordinates":[-74.0014594,40.6567251],"type":"Point"},"name":"La Parada Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055063"},"location":{"coordinates":[-73.94456269999999,40.7943036],"type":"Point"},"name":"Mercado'S Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb055064"},"location":{"coordinates":[-73.96692399999999,40.7644049],"type":"Point"},"name":"Fig \u0026 Olive"} +,{"_id":{"$oid":"55cba2476c522cafdb055065"},"location":{"coordinates":[-73.916229,40.7648046],"type":"Point"},"name":"Grand Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055066"},"location":{"coordinates":[-73.9164116,40.7727726],"type":"Point"},"name":"The Sparrow Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb055067"},"location":{"coordinates":[-73.8080143,40.7024353],"type":"Point"},"name":"Queens Concession Stand"} +,{"_id":{"$oid":"55cba2476c522cafdb055068"},"location":{"coordinates":[-74.03403639999999,40.61549979999999],"type":"Point"},"name":"Pipin'S Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb055069"},"location":{"coordinates":[-73.98022379999999,40.6772664],"type":"Point"},"name":"Lobo"} +,{"_id":{"$oid":"55cba2476c522cafdb05506a"},"location":{"coordinates":[-73.9927108,40.7455136],"type":"Point"},"name":"Helen Mills Event Space And Theater"} +,{"_id":{"$oid":"55cba2476c522cafdb05506b"},"location":{"coordinates":[-74.0119117,40.7096373],"type":"Point"},"name":"Burger King"} +,{"_id":{"$oid":"55cba2476c522cafdb05506c"},"location":{"coordinates":[-73.98300449999999,40.7499898],"type":"Point"},"name":"Burger King"} +,{"_id":{"$oid":"55cba2476c522cafdb05506d"},"location":{"coordinates":[-73.9899211,40.7520443],"type":"Point"},"name":"Burger King"} +,{"_id":{"$oid":"55cba2476c522cafdb05506e"},"location":{"coordinates":[-73.9530228,40.7780962],"type":"Point"},"name":"Burger King"} +,{"_id":{"$oid":"55cba2476c522cafdb05506f"},"location":{"coordinates":[-73.990914,40.7580219],"type":"Point"},"name":"Burger King"} +,{"_id":{"$oid":"55cba2476c522cafdb055070"},"location":{"coordinates":[-73.79941149999999,40.7039009],"type":"Point"},"name":"Burger King"} +,{"_id":{"$oid":"55cba2476c522cafdb055071"},"location":{"coordinates":[-73.988152,40.750155],"type":"Point"},"name":"Burger King"} +,{"_id":{"$oid":"55cba2476c522cafdb055072"},"location":{"coordinates":[-73.92637870000001,40.8255594],"type":"Point"},"name":"Stadium Pizza Bar Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055073"},"location":{"coordinates":[-73.9526379,40.777145],"type":"Point"},"name":"Andre'S Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055074"},"location":{"coordinates":[-74.00074169999999,40.7426012],"type":"Point"},"name":"Gym Sports Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb055075"},"location":{"coordinates":[-73.98684220000001,40.756867],"type":"Point"},"name":"Bella Vita Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb055076"},"location":{"coordinates":[-73.99053099999999,40.60031300000001],"type":"Point"},"name":"Yu King Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb055077"},"location":{"coordinates":[-73.9832326,40.7535965],"type":"Point"},"name":"Wichcraft Sandwiches"} +,{"_id":{"$oid":"55cba2476c522cafdb055078"},"location":{"coordinates":[-73.9746849,40.78868500000001],"type":"Point"},"name":"Indian Tanpura"} +,{"_id":{"$oid":"55cba2476c522cafdb055079"},"location":{"coordinates":[-73.974326,40.760342],"type":"Point"},"name":"Papillon Bistro \u0026 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05507a"},"location":{"coordinates":[-73.9766743,40.596836],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb05507b"},"location":{"coordinates":[-73.9598256,40.6178456],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb05507c"},"location":{"coordinates":[-73.9782152,40.7379477],"type":"Point"},"name":"New York University - College Of Dentistry"} +,{"_id":{"$oid":"55cba2476c522cafdb05507d"},"location":{"coordinates":[-73.962888,40.610871],"type":"Point"},"name":"Joseph Dream Burgers"} +,{"_id":{"$oid":"55cba2476c522cafdb05507e"},"location":{"coordinates":[-73.91147590000001,40.6726124],"type":"Point"},"name":"Dunkin' Donuts/Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb05507f"},"location":{"coordinates":[-73.8911708,40.8641461],"type":"Point"},"name":"Crown Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb055080"},"location":{"coordinates":[-73.88229799999999,40.6482078],"type":"Point"},"name":"Golden Krust Caribbean Bakery \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb055081"},"location":{"coordinates":[-73.7193255,40.7258382],"type":"Point"},"name":"Trattoria Lucia"} +,{"_id":{"$oid":"55cba2476c522cafdb055082"},"location":{"coordinates":[-73.8822022,40.7559499],"type":"Point"},"name":"Kabu Bar \u0026 Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb055083"},"location":{"coordinates":[-73.9878434,40.7208425],"type":"Point"},"name":"Cake Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb055084"},"location":{"coordinates":[-73.9414616,40.7980887],"type":"Point"},"name":"El Barrio Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055085"},"location":{"coordinates":[-73.9860901,40.7393879],"type":"Point"},"name":"Blt Prime"} +,{"_id":{"$oid":"55cba2476c522cafdb055086"},"location":{"coordinates":[-74.09531299999999,40.643233],"type":"Point"},"name":"Adobe Blues"} +,{"_id":{"$oid":"55cba2476c522cafdb055087"},"location":{"coordinates":[-73.9908677,40.7382464],"type":"Point"},"name":"Rosa Mexicano"} +,{"_id":{"$oid":"55cba2476c522cafdb055088"},"location":{"coordinates":[-73.9032005,40.7465439],"type":"Point"},"name":"Masala"} +,{"_id":{"$oid":"55cba2476c522cafdb055089"},"location":{"coordinates":[-73.9958875,40.691006],"type":"Point"},"name":"Tazza"} +,{"_id":{"$oid":"55cba2476c522cafdb05508a"},"location":{"coordinates":[-73.874466,40.7504938],"type":"Point"},"name":"Barzola'S Restaurant Iii"} +,{"_id":{"$oid":"55cba2476c522cafdb05508b"},"location":{"coordinates":[-73.96717199999999,40.76405],"type":"Point"},"name":"Ginza"} +,{"_id":{"$oid":"55cba2476c522cafdb05508c"},"location":{"coordinates":[-74.1481402,40.62462439999999],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb05508d"},"location":{"coordinates":[-73.9924904,40.75900960000001],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb05508e"},"location":{"coordinates":[-73.9230272,40.755907],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb05508f"},"location":{"coordinates":[-73.9789705,40.678166],"type":"Point"},"name":"Bogota Latin Bistro"} +,{"_id":{"$oid":"55cba2476c522cafdb055090"},"location":{"coordinates":[-73.9487767,40.6322318],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb055091"},"location":{"coordinates":[-73.8830144,40.880756],"type":"Point"},"name":"M \u0026 R Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb055092"},"location":{"coordinates":[-73.93466719999999,40.7357842],"type":"Point"},"name":"Bantry Bay Publick House"} +,{"_id":{"$oid":"55cba2476c522cafdb055093"},"location":{"coordinates":[-73.8375765,40.7182211],"type":"Point"},"name":"Buenos Aires Tango"} +,{"_id":{"$oid":"55cba2476c522cafdb055094"},"location":{"coordinates":[-73.9416921,40.7546673],"type":"Point"},"name":"Big Ny Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb055095"},"location":{"coordinates":[-73.9866668,40.6691609],"type":"Point"},"name":"Dunkin' Donuts/ Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb055096"},"location":{"coordinates":[-73.77037290000001,40.6727142],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb055097"},"location":{"coordinates":[-73.953108,40.778134],"type":"Point"},"name":"Tasti D-Lite"} +,{"_id":{"$oid":"55cba2476c522cafdb055098"},"location":{"coordinates":[-73.797263,40.7040122],"type":"Point"},"name":"Los Rancheros"} +,{"_id":{"$oid":"55cba2476c522cafdb055099"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"Brooklyn National Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb05509a"},"location":{"coordinates":[-73.8219299,40.7867417],"type":"Point"},"name":"Pearl Garden Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05509b"},"location":{"coordinates":[-73.74975599999999,40.7074605],"type":"Point"},"name":"Silver Spoon Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05509c"},"location":{"coordinates":[-73.81838599999999,40.7022],"type":"Point"},"name":"Jophsua 19"} +,{"_id":{"$oid":"55cba2476c522cafdb05509d"},"location":{"coordinates":[-73.979784,40.7634619],"type":"Point"},"name":"Abboccato Ristorante"} +,{"_id":{"$oid":"55cba2476c522cafdb05509e"},"location":{"coordinates":[-73.88623900000002,40.866101],"type":"Point"},"name":"Webster Halal Food"} +,{"_id":{"$oid":"55cba2476c522cafdb05509f"},"location":{"coordinates":[-73.9230037,40.7716661],"type":"Point"},"name":"Papa John'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0550a0"},"location":{"coordinates":[-73.99272119999999,40.6986157],"type":"Point"},"name":"Siggy'S Good Food"} +,{"_id":{"$oid":"55cba2476c522cafdb0550a1"},"location":{"coordinates":[-73.7822056,40.6434612],"type":"Point"},"name":"Soho Bistro"} +,{"_id":{"$oid":"55cba2476c522cafdb0550a2"},"location":{"coordinates":[-73.7822056,40.6434612],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0550a3"},"location":{"coordinates":[-73.9940866,40.7611108],"type":"Point"},"name":"44 1/2 Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0550a4"},"location":{"coordinates":[-73.947934,40.5999989],"type":"Point"},"name":"Omiya Sushi Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb0550a5"},"location":{"coordinates":[-73.9436863,40.7084962],"type":"Point"},"name":"New Mexico Place"} +,{"_id":{"$oid":"55cba2476c522cafdb0550a6"},"location":{"coordinates":[-73.8794672,40.7124324],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0550a7"},"location":{"coordinates":[-73.98857989999999,40.7223506],"type":"Point"},"name":"Pala"} +,{"_id":{"$oid":"55cba2476c522cafdb0550a8"},"location":{"coordinates":[-73.9489724,40.646772],"type":"Point"},"name":"H.Q. Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb0550a9"},"location":{"coordinates":[-74.0327743,40.6199697],"type":"Point"},"name":"Little Cupcake Bakeshop"} +,{"_id":{"$oid":"55cba2476c522cafdb0550aa"},"location":{"coordinates":[-73.93795159999999,40.823376],"type":"Point"},"name":"Domino'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0550ab"},"location":{"coordinates":[-73.99395799999999,40.7586716],"type":"Point"},"name":"Theater Row Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb0550ac"},"location":{"coordinates":[-73.9890844,40.7483602],"type":"Point"},"name":"Waldy'S Wood Fired Pizza \u0026 Penne"} +,{"_id":{"$oid":"55cba2476c522cafdb0550ad"},"location":{"coordinates":[-73.9954673,40.7447069],"type":"Point"},"name":"Jamba Juice"} +,{"_id":{"$oid":"55cba2476c522cafdb0550ae"},"location":{"coordinates":[-73.786619,40.8469114],"type":"Point"},"name":"Lickety Split"} +,{"_id":{"$oid":"55cba2476c522cafdb0550af"},"location":{"coordinates":[-73.86554509999999,40.736939],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0550b0"},"location":{"coordinates":[-74.0070552,40.6376465],"type":"Point"},"name":"Jia Xiang Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0550b1"},"location":{"coordinates":[-73.9580572,40.7086812],"type":"Point"},"name":"Zocalo"} +,{"_id":{"$oid":"55cba2476c522cafdb0550b2"},"location":{"coordinates":[-74.0056771,40.7330757],"type":"Point"},"name":"Lima'S Taste"} +,{"_id":{"$oid":"55cba2476c522cafdb0550b3"},"location":{"coordinates":[-73.9380442,40.7442821],"type":"Point"},"name":"Mbj Food Service"} +,{"_id":{"$oid":"55cba2476c522cafdb0550b4"},"location":{"coordinates":[-74.01238599999999,40.7048158],"type":"Point"},"name":"Yip'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0550b5"},"location":{"coordinates":[-74.0664785,40.5982668],"type":"Point"},"name":"J \u0026 R Pizzeria No. 2"} +,{"_id":{"$oid":"55cba2476c522cafdb0550b6"},"location":{"coordinates":[-73.9769029,40.631151],"type":"Point"},"name":"Pizza Central Of Brooklyn"} +,{"_id":{"$oid":"55cba2476c522cafdb0550b7"},"location":{"coordinates":[-74.2189044,40.5521991],"type":"Point"},"name":"Mollie Ryan'S Publick House"} +,{"_id":{"$oid":"55cba2476c522cafdb0550b8"},"location":{"coordinates":[-73.8776611,40.6822214],"type":"Point"},"name":"El Gran Mar De Plata"} +,{"_id":{"$oid":"55cba2476c522cafdb0550b9"},"location":{"coordinates":[-74.011642,40.646959],"type":"Point"},"name":"Colombian Restaurant \u0026 Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0550ba"},"location":{"coordinates":[-73.98237999999999,40.7208361],"type":"Point"},"name":"The Raging Skillet"} +,{"_id":{"$oid":"55cba2476c522cafdb0550bb"},"location":{"coordinates":[-73.9993396,40.72788010000001],"type":"Point"},"name":"Le Souk"} +,{"_id":{"$oid":"55cba2476c522cafdb0550bc"},"location":{"coordinates":[-74.013222,40.70122],"type":"Point"},"name":"Eat-A-Bagel--John Marchi Ferry"} +,{"_id":{"$oid":"55cba2476c522cafdb0550bd"},"location":{"coordinates":[-73.9996434,40.6295045],"type":"Point"},"name":"100 Fun"} +,{"_id":{"$oid":"55cba2476c522cafdb0550be"},"location":{"coordinates":[-73.89528159999999,40.7007182],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0550bf"},"location":{"coordinates":[-74.01017329999999,40.7043362],"type":"Point"},"name":"Adrienne'S Pizza Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0550c0"},"location":{"coordinates":[-73.992941,40.669538],"type":"Point"},"name":"Villa Mia Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0550c1"},"location":{"coordinates":[-74.16386580000001,40.5598468],"type":"Point"},"name":"Atrium Cinemas"} +,{"_id":{"$oid":"55cba2476c522cafdb0550c2"},"location":{"coordinates":[-73.9941142,40.6809716],"type":"Point"},"name":"Bagels Cafe/Gowanus Yacht Club"} +,{"_id":{"$oid":"55cba2476c522cafdb0550c3"},"location":{"coordinates":[-73.95018859999999,40.825959],"type":"Point"},"name":"El Morocco"} +,{"_id":{"$oid":"55cba2476c522cafdb0550c4"},"location":{"coordinates":[-73.9832326,40.7535965],"type":"Point"},"name":"Wichcraft Coffee, Espresso \u0026 Pastry"} +,{"_id":{"$oid":"55cba2476c522cafdb0550c5"},"location":{"coordinates":[-73.9832326,40.7535965],"type":"Point"},"name":"Wichcraft Express"} +,{"_id":{"$oid":"55cba2476c522cafdb0550c6"},"location":{"coordinates":[-73.9781572,40.596631],"type":"Point"},"name":"Elegante Pastry Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb0550c7"},"location":{"coordinates":[-73.9826951,40.6734753],"type":"Point"},"name":"Song"} +,{"_id":{"$oid":"55cba2476c522cafdb0550c8"},"location":{"coordinates":[-73.8374742,40.6815799],"type":"Point"},"name":"S \u0026 A West Indian Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0550c9"},"location":{"coordinates":[-73.986215,40.7330791],"type":"Point"},"name":"Bite"} +,{"_id":{"$oid":"55cba2476c522cafdb0550ca"},"location":{"coordinates":[-74.001271,40.74596700000001],"type":"Point"},"name":"Famous Original Ray'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0550cb"},"location":{"coordinates":[-73.923199,40.701863],"type":"Point"},"name":"Fortunata'S Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb0550cc"},"location":{"coordinates":[-73.9474499,40.7110923],"type":"Point"},"name":"Bushwick Country Club"} +,{"_id":{"$oid":"55cba2476c522cafdb0550cd"},"location":{"coordinates":[-73.988033,40.71952],"type":"Point"},"name":"Boss Tweed'S Saloon"} +,{"_id":{"$oid":"55cba2476c522cafdb0550ce"},"location":{"coordinates":[-73.9497164,40.8012942],"type":"Point"},"name":"New No. 1 Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0550cf"},"location":{"coordinates":[-73.940704,40.6830896],"type":"Point"},"name":"Royal Rib House"} +,{"_id":{"$oid":"55cba2476c522cafdb0550d0"},"location":{"coordinates":[-73.8893834,40.8725968],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0550d1"},"location":{"coordinates":[-74.009079,40.7185429],"type":"Point"},"name":"Puffy'S Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb0550d2"},"location":{"coordinates":[-73.9087876,40.8585358],"type":"Point"},"name":"Good Shepherd Services Bronx Djj"} +,{"_id":{"$oid":"55cba2476c522cafdb0550d3"},"location":{"coordinates":[-74.1307921,40.6125504],"type":"Point"},"name":"Waterfalls Italian Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb0550d4"},"location":{"coordinates":[-73.9452103,40.74575400000001],"type":"Point"},"name":"Quiznos Subs"} +,{"_id":{"$oid":"55cba2476c522cafdb0550d5"},"location":{"coordinates":[-74.02979410000002,40.617883],"type":"Point"},"name":"Uno Chicago Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0550d6"},"location":{"coordinates":[-73.9453601,40.61734999999999],"type":"Point"},"name":"Cafe Hadar"} +,{"_id":{"$oid":"55cba2476c522cafdb0550d7"},"location":{"coordinates":[-73.7940921,40.7106657],"type":"Point"},"name":"Tierra'S Centro Americanas Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0550d8"},"location":{"coordinates":[-73.9577776,40.7132278],"type":"Point"},"name":"Maracuja"} +,{"_id":{"$oid":"55cba2476c522cafdb0550d9"},"location":{"coordinates":[-73.9856777,40.6703096],"type":"Point"},"name":"Rachel'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0550da"},"location":{"coordinates":[-73.7543142,40.6779808],"type":"Point"},"name":"Spring Gardens Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0550db"},"location":{"coordinates":[-73.9962906,40.7425285],"type":"Point"},"name":"Momoya"} +,{"_id":{"$oid":"55cba2476c522cafdb0550dc"},"location":{"coordinates":[-74.0139114,40.7053128],"type":"Point"},"name":"Cafe Plaza Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb0550dd"},"location":{"coordinates":[-73.9823921,40.7476953],"type":"Point"},"name":"Eden Wok"} +,{"_id":{"$oid":"55cba2476c522cafdb0550de"},"location":{"coordinates":[-73.93670399999999,40.666003],"type":"Point"},"name":"Crown Heights Bunch-O-Bagels And More"} +,{"_id":{"$oid":"55cba2476c522cafdb0550df"},"location":{"coordinates":[-73.98056249999999,40.7577855],"type":"Point"},"name":"Taam- Tov Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0550e0"},"location":{"coordinates":[-73.9247149,40.8662471],"type":"Point"},"name":"Elsa La Reina Del Chicharron"} +,{"_id":{"$oid":"55cba2476c522cafdb0550e1"},"location":{"coordinates":[-74.01550999999999,40.640517],"type":"Point"},"name":"Generoso Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0550e2"},"location":{"coordinates":[-73.986863,40.71882],"type":"Point"},"name":"Sunita"} +,{"_id":{"$oid":"55cba2476c522cafdb0550e3"},"location":{"coordinates":[-73.847275,40.710099],"type":"Point"},"name":"Eddie'S Sweet Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb0550e4"},"location":{"coordinates":[-73.95694700000001,40.77267],"type":"Point"},"name":"Sabor A Mexico"} +,{"_id":{"$oid":"55cba2476c522cafdb0550e5"},"location":{"coordinates":[-73.945194,40.717638],"type":"Point"},"name":"Fanny"} +,{"_id":{"$oid":"55cba2476c522cafdb0550e6"},"location":{"coordinates":[-73.8913558,40.8546067],"type":"Point"},"name":"Rb Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0550e7"},"location":{"coordinates":[-73.7468716,40.7281312],"type":"Point"},"name":"Popeyes Chicken \u0026 Biscuits"} +,{"_id":{"$oid":"55cba2476c522cafdb0550e8"},"location":{"coordinates":[-73.995363,40.721185],"type":"Point"},"name":"Epistrophy Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0550e9"},"location":{"coordinates":[-73.9704301,40.6456391],"type":"Point"},"name":"Mexico Lindo Y ! Q Rico! Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb0550ea"},"location":{"coordinates":[-73.92198789999999,40.7555831],"type":"Point"},"name":"Riviera"} +,{"_id":{"$oid":"55cba2476c522cafdb0550eb"},"location":{"coordinates":[-73.9177984,40.8405324],"type":"Point"},"name":"Wendy'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0550ec"},"location":{"coordinates":[-73.9848497,40.7635438],"type":"Point"},"name":"Cosmic Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb0550ed"},"location":{"coordinates":[-73.8636961,40.8410413],"type":"Point"},"name":"Pizza Italia"} +,{"_id":{"$oid":"55cba2476c522cafdb0550ee"},"location":{"coordinates":[-73.9840955,40.7584583],"type":"Point"},"name":"Havana Central"} +,{"_id":{"$oid":"55cba2476c522cafdb0550ef"},"location":{"coordinates":[-73.8677329,40.770493],"type":"Point"},"name":"Samuel Adams"} +,{"_id":{"$oid":"55cba2476c522cafdb0550f0"},"location":{"coordinates":[-73.8677329,40.770493],"type":"Point"},"name":"Go Natural"} +,{"_id":{"$oid":"55cba2476c522cafdb0550f1"},"location":{"coordinates":[-74.0096516,40.7154091],"type":"Point"},"name":"Jamba Juice"} +,{"_id":{"$oid":"55cba2476c522cafdb0550f2"},"location":{"coordinates":[-73.7354656,40.7134496],"type":"Point"},"name":"Golden Krust Caribbean Bakery \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0550f3"},"location":{"coordinates":[-73.9805339,40.7629624],"type":"Point"},"name":"Remi"} +,{"_id":{"$oid":"55cba2476c522cafdb0550f4"},"location":{"coordinates":[-73.9564595,40.7720616],"type":"Point"},"name":"Le Pain Quotidien"} +,{"_id":{"$oid":"55cba2476c522cafdb0550f5"},"location":{"coordinates":[-73.81396699999999,40.690881],"type":"Point"},"name":"Veggie Castle"} +,{"_id":{"$oid":"55cba2476c522cafdb0550f6"},"location":{"coordinates":[-73.98003039999999,40.742636],"type":"Point"},"name":"28 Noodles"} +,{"_id":{"$oid":"55cba2476c522cafdb0550f7"},"location":{"coordinates":[-73.930548,40.6637106],"type":"Point"},"name":"Tamaras Jamaican Lounge \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0550f8"},"location":{"coordinates":[-73.7671853,40.76028650000001],"type":"Point"},"name":"Quiznos Subs"} +,{"_id":{"$oid":"55cba2476c522cafdb0550f9"},"location":{"coordinates":[-73.8965138,40.8212482],"type":"Point"},"name":"National Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0550fa"},"location":{"coordinates":[-73.9096118,40.7006261],"type":"Point"},"name":"Arena"} +,{"_id":{"$oid":"55cba2476c522cafdb0550fb"},"location":{"coordinates":[-74.0878388,40.6089351],"type":"Point"},"name":"My Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0550fc"},"location":{"coordinates":[-73.84246499999999,40.6809129],"type":"Point"},"name":"La Libertad Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0550fd"},"location":{"coordinates":[-73.954239,40.743221],"type":"Point"},"name":"Tuk Tuk"} +,{"_id":{"$oid":"55cba2476c522cafdb0550fe"},"location":{"coordinates":[-73.9764605,40.7636961],"type":"Point"},"name":"Nobu Fifty Seven"} +,{"_id":{"$oid":"55cba2476c522cafdb0550ff"},"location":{"coordinates":[-73.9157532,40.7024376],"type":"Point"},"name":"Taqueria Cocoyoc"} +,{"_id":{"$oid":"55cba2476c522cafdb055100"},"location":{"coordinates":[-73.97909109999999,40.7275885],"type":"Point"},"name":"Mercadito"} +,{"_id":{"$oid":"55cba2476c522cafdb055101"},"location":{"coordinates":[-73.8739659,40.7769271],"type":"Point"},"name":"Cibo Express Gourmet Market"} +,{"_id":{"$oid":"55cba2476c522cafdb055102"},"location":{"coordinates":[-73.85135919999999,40.9017392],"type":"Point"},"name":"Pepper'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055103"},"location":{"coordinates":[-73.8284668,40.693852],"type":"Point"},"name":"Royal India Palace And Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055104"},"location":{"coordinates":[-73.7840126,40.7122327],"type":"Point"},"name":"Burger King"} +,{"_id":{"$oid":"55cba2476c522cafdb055105"},"location":{"coordinates":[-73.8655388,40.85431519999999],"type":"Point"},"name":"Dukagjini Burektore"} +,{"_id":{"$oid":"55cba2476c522cafdb055106"},"location":{"coordinates":[-74.00304489999999,40.734258],"type":"Point"},"name":"Diablo Royale"} +,{"_id":{"$oid":"55cba2476c522cafdb055107"},"location":{"coordinates":[-73.98505639999999,40.7492649],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb055108"},"location":{"coordinates":[-73.96300099999999,40.7754061],"type":"Point"},"name":"Sant Ambroeus"} +,{"_id":{"$oid":"55cba2476c522cafdb055109"},"location":{"coordinates":[-73.99764499999999,40.7214489],"type":"Point"},"name":"La Esquina ''The Corner''"} +,{"_id":{"$oid":"55cba2476c522cafdb05510a"},"location":{"coordinates":[-73.986747,40.60282600000001],"type":"Point"},"name":"Stillwell Soccer Sports"} +,{"_id":{"$oid":"55cba2476c522cafdb05510b"},"location":{"coordinates":[-73.8382137,40.8817824],"type":"Point"},"name":"Klassique"} +,{"_id":{"$oid":"55cba2476c522cafdb05510c"},"location":{"coordinates":[-73.9886485,40.7643934],"type":"Point"},"name":"Empanada Mama"} +,{"_id":{"$oid":"55cba2476c522cafdb05510d"},"location":{"coordinates":[-73.901856,40.883713],"type":"Point"},"name":"Carvel Ice Cream"} +,{"_id":{"$oid":"55cba2476c522cafdb05510e"},"location":{"coordinates":[-73.9213351,40.7707509],"type":"Point"},"name":"Bz Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb05510f"},"location":{"coordinates":[-73.7941783,40.68669089999999],"type":"Point"},"name":"Port Royal Jamaican Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055110"},"location":{"coordinates":[-73.95237019999999,40.8026229],"type":"Point"},"name":"Hai Cheng Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055111"},"location":{"coordinates":[-73.99624899999999,40.763153],"type":"Point"},"name":"Landmark Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb055112"},"location":{"coordinates":[-73.93994789999999,40.8155067],"type":"Point"},"name":"Jimbo'S Burger Palace"} +,{"_id":{"$oid":"55cba2476c522cafdb055113"},"location":{"coordinates":[-73.9473395,40.6511079],"type":"Point"},"name":"Trini Breakfast Shed Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb055114"},"location":{"coordinates":[-73.9510198,40.7076924],"type":"Point"},"name":"Sazon Perez Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055115"},"location":{"coordinates":[-74.0088627,40.7092384],"type":"Point"},"name":"Friendly Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb055116"},"location":{"coordinates":[-74.01486899999999,40.70803],"type":"Point"},"name":"Clinton Hall"} +,{"_id":{"$oid":"55cba2476c522cafdb055117"},"location":{"coordinates":[-74.109617,40.63491459999999],"type":"Point"},"name":"Nurnberger Bierhaus"} +,{"_id":{"$oid":"55cba2476c522cafdb055118"},"location":{"coordinates":[-74.1630826,40.62618459999999],"type":"Point"},"name":"J And B Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb055119"},"location":{"coordinates":[-74.1351911,40.6264188],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb05511a"},"location":{"coordinates":[-73.7582628,40.7406023],"type":"Point"},"name":"Taco King"} +,{"_id":{"$oid":"55cba2476c522cafdb05511b"},"location":{"coordinates":[-73.8637959,40.730194],"type":"Point"},"name":"Domino'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05511c"},"location":{"coordinates":[-74.00197,40.7359853],"type":"Point"},"name":"Taim"} +,{"_id":{"$oid":"55cba2476c522cafdb05511d"},"location":{"coordinates":[-73.7353785,40.712915],"type":"Point"},"name":"China Delight Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05511e"},"location":{"coordinates":[-73.9566536,40.7125087],"type":"Point"},"name":"Taco Chulo"} +,{"_id":{"$oid":"55cba2476c522cafdb05511f"},"location":{"coordinates":[-73.8627284,40.833022],"type":"Point"},"name":"Burger Hut"} +,{"_id":{"$oid":"55cba2476c522cafdb055120"},"location":{"coordinates":[-73.83154549999999,40.88800519999999],"type":"Point"},"name":"Dyre Avenue Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb055121"},"location":{"coordinates":[-73.8138348,40.7648944],"type":"Point"},"name":"Seoul Korean Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055122"},"location":{"coordinates":[-74.01209399999999,40.704208],"type":"Point"},"name":"Nebraska Steakhouse"} +,{"_id":{"$oid":"55cba2476c522cafdb055123"},"location":{"coordinates":[-73.9180092,40.743253],"type":"Point"},"name":"El Pilon Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb055124"},"location":{"coordinates":[-73.9308423,40.63655079999999],"type":"Point"},"name":"C-Pac/Pulse 48"} +,{"_id":{"$oid":"55cba2476c522cafdb055125"},"location":{"coordinates":[-74.00722669999999,40.7075608],"type":"Point"},"name":"Giardino D'Oro"} +,{"_id":{"$oid":"55cba2476c522cafdb055126"},"location":{"coordinates":[-73.98807470000001,40.7628948],"type":"Point"},"name":"Bann"} +,{"_id":{"$oid":"55cba2476c522cafdb055127"},"location":{"coordinates":[-73.98159960000001,40.7726479],"type":"Point"},"name":"Le Pain Quotidien"} +,{"_id":{"$oid":"55cba2476c522cafdb055128"},"location":{"coordinates":[-73.87704099999999,40.760397],"type":"Point"},"name":"Gilda'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055129"},"location":{"coordinates":[-73.87699470000001,40.7131462],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb05512a"},"location":{"coordinates":[-73.974198,40.686558],"type":"Point"},"name":"Cafe Lafayette"} +,{"_id":{"$oid":"55cba2476c522cafdb05512b"},"location":{"coordinates":[-73.92661799999999,40.698079],"type":"Point"},"name":"Gotham City Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb05512c"},"location":{"coordinates":[-73.982858,40.731722],"type":"Point"},"name":"O'Hanlon'S Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05512d"},"location":{"coordinates":[-73.989604,40.718132],"type":"Point"},"name":"Babycakes Nyc"} +,{"_id":{"$oid":"55cba2476c522cafdb05512e"},"location":{"coordinates":[-74.0050466,40.73011160000001],"type":"Point"},"name":"Little Branch"} +,{"_id":{"$oid":"55cba2476c522cafdb05512f"},"location":{"coordinates":[-74.1362625,40.5731836],"type":"Point"},"name":"Richmondtown Bagel Depot"} +,{"_id":{"$oid":"55cba2476c522cafdb055130"},"location":{"coordinates":[-73.91405499999999,40.76541599999999],"type":"Point"},"name":"Jour Et Nuit Cafe And Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055131"},"location":{"coordinates":[-73.9735141,40.7901608],"type":"Point"},"name":"The Bagel Basket"} +,{"_id":{"$oid":"55cba2476c522cafdb055132"},"location":{"coordinates":[-73.9663863,40.6932311],"type":"Point"},"name":"Zaytoons Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055133"},"location":{"coordinates":[-74.005757,40.622284],"type":"Point"},"name":"Jimmy'S Place"} +,{"_id":{"$oid":"55cba2476c522cafdb055134"},"location":{"coordinates":[-73.9868161,40.7554006],"type":"Point"},"name":"Ann Taylor"} +,{"_id":{"$oid":"55cba2476c522cafdb055135"},"location":{"coordinates":[-74.00663960000001,40.7514867],"type":"Point"},"name":"Tommy Hilfiger"} +,{"_id":{"$oid":"55cba2476c522cafdb055136"},"location":{"coordinates":[-73.9749375,40.7522452],"type":"Point"},"name":"Market Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055137"},"location":{"coordinates":[-73.960467,40.7138769],"type":"Point"},"name":"Baci \u0026 Abbracci"} +,{"_id":{"$oid":"55cba2476c522cafdb055138"},"location":{"coordinates":[-73.9280339,40.8665242],"type":"Point"},"name":"Mamajuana Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055139"},"location":{"coordinates":[-73.9098472,40.8370775],"type":"Point"},"name":"Ecua Villa Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb05513a"},"location":{"coordinates":[-73.972445,40.677162],"type":"Point"},"name":"Burrito Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05513b"},"location":{"coordinates":[-73.771751,40.76446900000001],"type":"Point"},"name":"Okinawa"} +,{"_id":{"$oid":"55cba2476c522cafdb05513c"},"location":{"coordinates":[-73.866978,40.865969],"type":"Point"},"name":"El Rey De Copas Restaurant \u0026 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05513d"},"location":{"coordinates":[-73.9801725,40.73587149999999],"type":"Point"},"name":"Grill 21"} +,{"_id":{"$oid":"55cba2476c522cafdb05513e"},"location":{"coordinates":[-73.9601795,40.6582206],"type":"Point"},"name":"Blue Nile Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05513f"},"location":{"coordinates":[-73.98879699999999,40.723711],"type":"Point"},"name":"Tuck Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb055140"},"location":{"coordinates":[-73.9858795,40.7571582],"type":"Point"},"name":"Hard Rock Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055141"},"location":{"coordinates":[-73.90099790000001,40.8624363],"type":"Point"},"name":"El Valle Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055142"},"location":{"coordinates":[-73.9810269,40.7329163],"type":"Point"},"name":"Bruno Ravioli"} +,{"_id":{"$oid":"55cba2476c522cafdb055143"},"location":{"coordinates":[-73.99751069999999,40.7184971],"type":"Point"},"name":"La Nonna"} +,{"_id":{"$oid":"55cba2476c522cafdb055144"},"location":{"coordinates":[-73.993276,40.72122299999999],"type":"Point"},"name":"Congee Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055145"},"location":{"coordinates":[-73.834498,40.837066],"type":"Point"},"name":"Sapito'S Sports Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb055146"},"location":{"coordinates":[-73.9125458,40.7745712],"type":"Point"},"name":"Wave Thai"} +,{"_id":{"$oid":"55cba2476c522cafdb055147"},"location":{"coordinates":[-74.1574104,40.6117346],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb055148"},"location":{"coordinates":[-74.16526089999999,40.5879905],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb055149"},"location":{"coordinates":[-73.9532739,40.81688399999999],"type":"Point"},"name":"Great China"} +,{"_id":{"$oid":"55cba2476c522cafdb05514a"},"location":{"coordinates":[-73.97757399999999,40.67127],"type":"Point"},"name":"Pino'S La Forchetta"} +,{"_id":{"$oid":"55cba2476c522cafdb05514b"},"location":{"coordinates":[-73.79278699999999,40.710536],"type":"Point"},"name":"Richie'S Place"} +,{"_id":{"$oid":"55cba2476c522cafdb05514c"},"location":{"coordinates":[-73.9947268,40.72386789999999],"type":"Point"},"name":"Sakura Sushi And Thai"} +,{"_id":{"$oid":"55cba2476c522cafdb05514d"},"location":{"coordinates":[-73.9732559,40.7523766],"type":"Point"},"name":"Cafe Basil Gourmet"} +,{"_id":{"$oid":"55cba2476c522cafdb05514e"},"location":{"coordinates":[-73.9859869,40.6779477],"type":"Point"},"name":"Canal Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05514f"},"location":{"coordinates":[-78.3969541,40.5114481],"type":"Point"},"name":"Ra @ Barclays"} +,{"_id":{"$oid":"55cba2476c522cafdb055150"},"location":{"coordinates":[-73.981898,40.613727],"type":"Point"},"name":"Carvel Ice Cream"} +,{"_id":{"$oid":"55cba2476c522cafdb055151"},"location":{"coordinates":[-73.9866861,40.6027318],"type":"Point"},"name":"La Boheme Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb055152"},"location":{"coordinates":[-74.0077069,40.6313054],"type":"Point"},"name":"David Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb055153"},"location":{"coordinates":[-73.8332089,40.8838004],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb055154"},"location":{"coordinates":[-73.9325435,40.7542392],"type":"Point"},"name":"Rosa'S Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055155"},"location":{"coordinates":[-73.765654,40.692322],"type":"Point"},"name":"Deja Vu Lounge \u0026 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb055156"},"location":{"coordinates":[-73.9906087,40.7381848],"type":"Point"},"name":"Tarallucci E Vino"} +,{"_id":{"$oid":"55cba2476c522cafdb055157"},"location":{"coordinates":[-73.9867714,40.7594681],"type":"Point"},"name":"Patzeria'S Perfect Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb055158"},"location":{"coordinates":[-73.9193265,40.6390006],"type":"Point"},"name":"Dunkin' Donuts, Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb055159"},"location":{"coordinates":[-73.924891,40.744276],"type":"Point"},"name":"Tangra"} +,{"_id":{"$oid":"55cba2476c522cafdb05515a"},"location":{"coordinates":[-73.9830659,40.742643],"type":"Point"},"name":"Copper Chimney"} +,{"_id":{"$oid":"55cba2476c522cafdb05515b"},"location":{"coordinates":[-73.89517020000001,40.72622399999999],"type":"Point"},"name":"Joey'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb05515c"},"location":{"coordinates":[-73.9908335,40.6901289],"type":"Point"},"name":"Brooklyn Law School - Feil Hall"} +,{"_id":{"$oid":"55cba2476c522cafdb05515d"},"location":{"coordinates":[-73.730885,40.7123149],"type":"Point"},"name":"The Pour House"} +,{"_id":{"$oid":"55cba2476c522cafdb05515e"},"location":{"coordinates":[-73.9975487,40.7636971],"type":"Point"},"name":"Pacha"} +,{"_id":{"$oid":"55cba2476c522cafdb05515f"},"location":{"coordinates":[-73.92893810000001,40.6838788],"type":"Point"},"name":"Kings Men"} +,{"_id":{"$oid":"55cba2476c522cafdb055160"},"location":{"coordinates":[-73.84970849999999,40.8830261],"type":"Point"},"name":"Blue Mountain Cuisine Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055161"},"location":{"coordinates":[-74.0069028,40.7396492],"type":"Point"},"name":"Revel Itm Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb055162"},"location":{"coordinates":[-73.8672952,40.8579768],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb055163"},"location":{"coordinates":[-73.8549075,40.89847200000001],"type":"Point"},"name":"Domino'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb055164"},"location":{"coordinates":[-73.9841993,40.7653375],"type":"Point"},"name":"Barcelona Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb055165"},"location":{"coordinates":[-73.9851764,40.7526057],"type":"Point"},"name":"Curry Dream"} +,{"_id":{"$oid":"55cba2476c522cafdb055166"},"location":{"coordinates":[-73.8481623,40.88627290000001],"type":"Point"},"name":"Kennedy Chicken \u0026 Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb055167"},"location":{"coordinates":[-73.97147850000002,40.7558797],"type":"Point"},"name":"Mint"} +,{"_id":{"$oid":"55cba2476c522cafdb055168"},"location":{"coordinates":[-73.948741,40.7286258],"type":"Point"},"name":"Cafe Grumpy"} +,{"_id":{"$oid":"55cba2476c522cafdb055169"},"location":{"coordinates":[-74.1175674,40.5738007],"type":"Point"},"name":"Nori Sushi Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05516a"},"location":{"coordinates":[-73.99969399999999,40.726712],"type":"Point"},"name":"Pegu Club"} +,{"_id":{"$oid":"55cba2476c522cafdb05516b"},"location":{"coordinates":[-74.00704379999999,40.7143089],"type":"Point"},"name":"Bluespoon Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb05516c"},"location":{"coordinates":[-73.956192,40.676332],"type":"Point"},"name":"B \u0026 B Sports Club"} +,{"_id":{"$oid":"55cba2476c522cafdb05516d"},"location":{"coordinates":[-73.7988459,40.7042638],"type":"Point"},"name":"Express Pizza And Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb05516e"},"location":{"coordinates":[-73.831122,40.6997438],"type":"Point"},"name":"Happy Days Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb05516f"},"location":{"coordinates":[-78.39773029999999,40.51061259999999],"type":"Point"},"name":"Jamba Juice"} +,{"_id":{"$oid":"55cba2476c522cafdb055170"},"location":{"coordinates":[-73.96347659999999,40.671151],"type":"Point"},"name":"Museum Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055171"},"location":{"coordinates":[-73.898991,40.746466],"type":"Point"},"name":"Ovidio'S Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb055172"},"location":{"coordinates":[-73.70262989999999,40.7522879],"type":"Point"},"name":"Golden Krust Caribbean Bakery \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb055173"},"location":{"coordinates":[-73.9807021,40.7294269],"type":"Point"},"name":"Common Ground"} +,{"_id":{"$oid":"55cba2476c522cafdb055174"},"location":{"coordinates":[-73.8962848,40.7046237],"type":"Point"},"name":"Shqiperia Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055175"},"location":{"coordinates":[-73.9513248,40.5855637],"type":"Point"},"name":"Fuel"} +,{"_id":{"$oid":"55cba2476c522cafdb055176"},"location":{"coordinates":[-74.1728327,40.6259233],"type":"Point"},"name":"Staten Island 16 Theatre"} +,{"_id":{"$oid":"55cba2476c522cafdb055177"},"location":{"coordinates":[-74.07676239999999,40.6369346],"type":"Point"},"name":"Everything Goes Book Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055178"},"location":{"coordinates":[-73.9879553,40.7484187],"type":"Point"},"name":"Martinique Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055179"},"location":{"coordinates":[-73.95370989999999,40.7662584],"type":"Point"},"name":"Sotheby'S Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05517a"},"location":{"coordinates":[-73.904523,40.77029530000001],"type":"Point"},"name":"Dunkin' Donuts, Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb05517b"},"location":{"coordinates":[-73.9331608,40.6744168],"type":"Point"},"name":"New Heights Bar And Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05517c"},"location":{"coordinates":[-73.870802,40.742123],"type":"Point"},"name":"El Sonador Cafe Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05517d"},"location":{"coordinates":[-73.99078089999999,40.7147533],"type":"Point"},"name":"Clandestino Cafe And Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05517e"},"location":{"coordinates":[-73.92856720000002,40.8190635],"type":"Point"},"name":"Glacken Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05517f"},"location":{"coordinates":[-73.9939535,40.7460757],"type":"Point"},"name":"Chipotle Mexican Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb055180"},"location":{"coordinates":[-73.9314318,40.6613561],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb055181"},"location":{"coordinates":[-73.9987594,40.65948119999999],"type":"Point"},"name":"Tasty Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb055182"},"location":{"coordinates":[-73.90935,40.761501],"type":"Point"},"name":"Dillingers Pub \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb055183"},"location":{"coordinates":[-73.9451437,40.8344],"type":"Point"},"name":"Lin'S Flavor House"} +,{"_id":{"$oid":"55cba2476c522cafdb055184"},"location":{"coordinates":[-73.994584,40.717339],"type":"Point"},"name":"Wah Fung 1 Fast Food"} +,{"_id":{"$oid":"55cba2476c522cafdb055185"},"location":{"coordinates":[-73.77548709999999,40.7673549],"type":"Point"},"name":"Deli Express"} +,{"_id":{"$oid":"55cba2476c522cafdb055186"},"location":{"coordinates":[-73.83175299999999,40.763671],"type":"Point"},"name":"Joo Mak Gol Korean Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055187"},"location":{"coordinates":[-73.745029,40.716367],"type":"Point"},"name":"Victor'S Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb055188"},"location":{"coordinates":[-73.8922719,40.6573468],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb055189"},"location":{"coordinates":[-73.92284939999999,40.81682259999999],"type":"Point"},"name":"Janeydi Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb05518a"},"location":{"coordinates":[-73.843308,40.8793577],"type":"Point"},"name":"Xpressions"} +,{"_id":{"$oid":"55cba2476c522cafdb05518b"},"location":{"coordinates":[-73.9688623,40.7622651],"type":"Point"},"name":"Uja Federation"} +,{"_id":{"$oid":"55cba2476c522cafdb05518c"},"location":{"coordinates":[-73.990539,40.636119],"type":"Point"},"name":"Meal Mart"} +,{"_id":{"$oid":"55cba2476c522cafdb05518d"},"location":{"coordinates":[-73.9892246,40.7380502],"type":"Point"},"name":"Abc Cocina"} +,{"_id":{"$oid":"55cba2476c522cafdb05518e"},"location":{"coordinates":[-73.95839529999999,40.6702664],"type":"Point"},"name":"Sal'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05518f"},"location":{"coordinates":[-73.913276,40.7563134],"type":"Point"},"name":"Dandana"} +,{"_id":{"$oid":"55cba2476c522cafdb055190"},"location":{"coordinates":[-92.72770670000001,41.7461421],"type":"Point"},"name":"New York Burger Co"} +,{"_id":{"$oid":"55cba2476c522cafdb055191"},"location":{"coordinates":[-73.9719684,40.7871628],"type":"Point"},"name":"Colombus Ave Deli \u0026 Cofe"} +,{"_id":{"$oid":"55cba2476c522cafdb055192"},"location":{"coordinates":[-73.92129899999999,40.7409739],"type":"Point"},"name":"Mi Nuevo Rancho Bar \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055193"},"location":{"coordinates":[-73.97203979999999,40.7651281],"type":"Point"},"name":"Sirio"} +,{"_id":{"$oid":"55cba2476c522cafdb055194"},"location":{"coordinates":[-73.97203979999999,40.7651281],"type":"Point"},"name":"Hotel Pierre-Banquet Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb055195"},"location":{"coordinates":[-73.981882,40.687886],"type":"Point"},"name":"Patty Plus Bakery \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055196"},"location":{"coordinates":[-73.97203979999999,40.7651281],"type":"Point"},"name":"Hotel Pierre-Main Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb055197"},"location":{"coordinates":[-73.9024073,40.744736],"type":"Point"},"name":"Tio Pollo"} +,{"_id":{"$oid":"55cba2476c522cafdb055198"},"location":{"coordinates":[-74.00775209999999,40.7271799],"type":"Point"},"name":"Hudson Food Court"} +,{"_id":{"$oid":"55cba2476c522cafdb055199"},"location":{"coordinates":[-73.83861739999999,40.7186007],"type":"Point"},"name":"The Family Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05519a"},"location":{"coordinates":[-73.9126575,40.7663249],"type":"Point"},"name":"Hallal Sandwich Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb05519b"},"location":{"coordinates":[-73.9178238,40.7389738],"type":"Point"},"name":"The Haab"} +,{"_id":{"$oid":"55cba2476c522cafdb05519c"},"location":{"coordinates":[-73.9602839,40.71421400000001],"type":"Point"},"name":"Dokebi Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb05519d"},"location":{"coordinates":[-73.98662000000002,40.7598],"type":"Point"},"name":"Scarlatto"} +,{"_id":{"$oid":"55cba2476c522cafdb05519e"},"location":{"coordinates":[-73.808793,40.7062839],"type":"Point"},"name":"Taj Mahal Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05519f"},"location":{"coordinates":[-73.9959233,40.72081910000001],"type":"Point"},"name":"Mott Corner"} +,{"_id":{"$oid":"55cba2476c522cafdb0551a0"},"location":{"coordinates":[-74.002359,40.7455179],"type":"Point"},"name":"Blossom"} +,{"_id":{"$oid":"55cba2476c522cafdb0551a1"},"location":{"coordinates":[-73.9400543,40.6998615],"type":"Point"},"name":"Jk \u0026 Sons Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb0551a2"},"location":{"coordinates":[-74.018399,40.6404],"type":"Point"},"name":"Koong Wing Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0551a3"},"location":{"coordinates":[-73.7889349,40.8522629],"type":"Point"},"name":"Ohana Japanese Hibachi Seafood \u0026 Steak"} +,{"_id":{"$oid":"55cba2476c522cafdb0551a4"},"location":{"coordinates":[-74.0048657,40.7410115],"type":"Point"},"name":"The Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb0551a5"},"location":{"coordinates":[-73.9809661,40.7647373],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0551a6"},"location":{"coordinates":[-73.998015,40.6384269],"type":"Point"},"name":"3 In 1 Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0551a7"},"location":{"coordinates":[-73.90848729999999,40.8625887],"type":"Point"},"name":"New No.8 Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0551a8"},"location":{"coordinates":[-73.896602,40.70515700000001],"type":"Point"},"name":"Fresh Pond Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb0551a9"},"location":{"coordinates":[-73.8148435,40.7623536],"type":"Point"},"name":"Nol Bu Food"} +,{"_id":{"$oid":"55cba2476c522cafdb0551aa"},"location":{"coordinates":[-74.0092784,40.7060535],"type":"Point"},"name":"Cipriani"} +,{"_id":{"$oid":"55cba2476c522cafdb0551ab"},"location":{"coordinates":[-74.0085713,40.7098097],"type":"Point"},"name":"Toasties"} +,{"_id":{"$oid":"55cba2476c522cafdb0551ac"},"location":{"coordinates":[-73.9152771,40.6584025],"type":"Point"},"name":"Bunny'S West Indian Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0551ad"},"location":{"coordinates":[-73.9383446,40.71269119999999],"type":"Point"},"name":"Freddy'S Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb0551ae"},"location":{"coordinates":[-73.7914657,40.7110493],"type":"Point"},"name":"Jade Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb0551af"},"location":{"coordinates":[-73.95375159999999,40.6809466],"type":"Point"},"name":"Bushbaby"} +,{"_id":{"$oid":"55cba2476c522cafdb0551b0"},"location":{"coordinates":[-73.8739659,40.7769271],"type":"Point"},"name":"Cibo Express Gourmet Markets"} +,{"_id":{"$oid":"55cba2476c522cafdb0551b1"},"location":{"coordinates":[-73.9921648,40.6931467],"type":"Point"},"name":"St. Francis Acquista Food Service"} +,{"_id":{"$oid":"55cba2476c522cafdb0551b2"},"location":{"coordinates":[-73.8032578,40.6745361],"type":"Point"},"name":"Wing Wah Kitchen I"} +,{"_id":{"$oid":"55cba2476c522cafdb0551b3"},"location":{"coordinates":[-73.9673071,40.6930917],"type":"Point"},"name":"El Cofre Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0551b4"},"location":{"coordinates":[-94.66995709999999,39.0040503],"type":"Point"},"name":"Telepan"} +,{"_id":{"$oid":"55cba2476c522cafdb0551b5"},"location":{"coordinates":[-73.98815379999999,40.7382357],"type":"Point"},"name":"Barbounia"} +,{"_id":{"$oid":"55cba2476c522cafdb0551b6"},"location":{"coordinates":[-73.9131534,40.7628952],"type":"Point"},"name":"Ukus Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0551b7"},"location":{"coordinates":[-73.9510841,40.7791721],"type":"Point"},"name":"Cafe D'Alsace"} +,{"_id":{"$oid":"55cba2476c522cafdb0551b8"},"location":{"coordinates":[-73.985529,40.74182],"type":"Point"},"name":"Taza Cafe And Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb0551b9"},"location":{"coordinates":[-73.9847763,40.76143680000001],"type":"Point"},"name":"Emmett O'Lunney'S Irish Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb0551ba"},"location":{"coordinates":[-73.922838,40.706419],"type":"Point"},"name":"Northeast Kingdom"} +,{"_id":{"$oid":"55cba2476c522cafdb0551bb"},"location":{"coordinates":[-73.980852,40.723903],"type":"Point"},"name":"Grape And Grain"} +,{"_id":{"$oid":"55cba2476c522cafdb0551bc"},"location":{"coordinates":[-73.66037349999999,42.4476886],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0551bd"},"location":{"coordinates":[-73.978743,40.678508],"type":"Point"},"name":"Mulino"} +,{"_id":{"$oid":"55cba2476c522cafdb0551be"},"location":{"coordinates":[-73.9899284,40.7291392],"type":"Point"},"name":"Cafe Zaiya"} +,{"_id":{"$oid":"55cba2476c522cafdb0551bf"},"location":{"coordinates":[-74.004713,40.640491],"type":"Point"},"name":"Gao Ming Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0551c0"},"location":{"coordinates":[-73.9898599,40.719354],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0551c1"},"location":{"coordinates":[-73.97747869999999,40.7547501],"type":"Point"},"name":"The Roosevelt Hotel"} +,{"_id":{"$oid":"55cba2476c522cafdb0551c2"},"location":{"coordinates":[-73.8639468,40.7373421],"type":"Point"},"name":"Vinny'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0551c3"},"location":{"coordinates":[-73.7708808,40.7639473],"type":"Point"},"name":"Press 195"} +,{"_id":{"$oid":"55cba2476c522cafdb0551c4"},"location":{"coordinates":[-74.0018769,40.726489],"type":"Point"},"name":"Nagomi"} +,{"_id":{"$oid":"55cba2476c522cafdb0551c5"},"location":{"coordinates":[-78.6706471,35.7875831],"type":"Point"},"name":"Dunkin' Donuts, Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb0551c6"},"location":{"coordinates":[-73.91823099999999,40.806821],"type":"Point"},"name":"Cervantes Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0551c7"},"location":{"coordinates":[-92.7278937,41.7461429],"type":"Point"},"name":"Ridgeway Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb0551c8"},"location":{"coordinates":[-73.9492355,40.82571799999999],"type":"Point"},"name":"Jimbo'S Hamburger Palace"} +,{"_id":{"$oid":"55cba2476c522cafdb0551c9"},"location":{"coordinates":[-74.0111372,40.7060887],"type":"Point"},"name":"Bobby Van'S Steakhouse"} +,{"_id":{"$oid":"55cba2476c522cafdb0551ca"},"location":{"coordinates":[-73.85788930000001,40.7282641],"type":"Point"},"name":"Tropix Bar \u0026 Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb0551cb"},"location":{"coordinates":[-73.9838285,40.76430269999999],"type":"Point"},"name":"Studio 54 (Theatre)"} +,{"_id":{"$oid":"55cba2476c522cafdb0551cc"},"location":{"coordinates":[-74.01198939999999,40.6438485],"type":"Point"},"name":"Burger King"} +,{"_id":{"$oid":"55cba2476c522cafdb0551cd"},"location":{"coordinates":[-73.95785200000002,40.6478935],"type":"Point"},"name":"Burger King"} +,{"_id":{"$oid":"55cba2476c522cafdb0551ce"},"location":{"coordinates":[-73.99347,40.616191],"type":"Point"},"name":"Jade Star Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0551cf"},"location":{"coordinates":[-73.9991706,40.6247783],"type":"Point"},"name":"Burger King"} +,{"_id":{"$oid":"55cba2476c522cafdb0551d0"},"location":{"coordinates":[-73.8946577,40.823814],"type":"Point"},"name":"Caribe Restaurant Bar \u0026 Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb0551d1"},"location":{"coordinates":[-73.8162457,42.7025194],"type":"Point"},"name":"New Beijing Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0551d2"},"location":{"coordinates":[-73.9910084,40.68569249999999],"type":"Point"},"name":"Camp"} +,{"_id":{"$oid":"55cba2476c522cafdb0551d3"},"location":{"coordinates":[-73.835875,40.7077219],"type":"Point"},"name":"L'Angolo Pizza \u0026 Pasta"} +,{"_id":{"$oid":"55cba2476c522cafdb0551d4"},"location":{"coordinates":[-73.990066,40.7675883],"type":"Point"},"name":"Dunkin' Donuts, Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb0551d5"},"location":{"coordinates":[-73.95318089999999,40.7831672],"type":"Point"},"name":"Dunkin' Donuts, Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb0551d6"},"location":{"coordinates":[-73.9892102,40.7317679],"type":"Point"},"name":"Webster Hall Studio"} +,{"_id":{"$oid":"55cba2476c522cafdb0551d7"},"location":{"coordinates":[-73.93169499999999,40.694714],"type":"Point"},"name":"Nuevo Canario Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0551d8"},"location":{"coordinates":[-73.8293161,40.7583823],"type":"Point"},"name":"Pho Bang Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0551d9"},"location":{"coordinates":[-73.8986327,40.861424],"type":"Point"},"name":"Szechuan Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb0551da"},"location":{"coordinates":[-73.8814448,40.7421683],"type":"Point"},"name":"Pizza Bella"} +,{"_id":{"$oid":"55cba2476c522cafdb0551db"},"location":{"coordinates":[-74.0852984,40.6342088],"type":"Point"},"name":"New Asha Sri Lankan Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0551dc"},"location":{"coordinates":[-73.7299431,40.7547659],"type":"Point"},"name":"Douglaston Manor"} +,{"_id":{"$oid":"55cba2476c522cafdb0551dd"},"location":{"coordinates":[-73.9801979,40.7137799],"type":"Point"},"name":"Wa Lung Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0551de"},"location":{"coordinates":[-73.99149450000002,40.7492981],"type":"Point"},"name":"Europa Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0551df"},"location":{"coordinates":[-92.71646349999999,41.7461966],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0551e0"},"location":{"coordinates":[-74.1660553,40.5823983],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0551e1"},"location":{"coordinates":[-73.97724670000001,40.7541977],"type":"Point"},"name":"Blake \u0026 Todd"} +,{"_id":{"$oid":"55cba2476c522cafdb0551e2"},"location":{"coordinates":[-73.979291,40.745913],"type":"Point"},"name":"Barking Dog"} +,{"_id":{"$oid":"55cba2476c522cafdb0551e3"},"location":{"coordinates":[-74.00024599999999,40.729905],"type":"Point"},"name":"Rabbit Club"} +,{"_id":{"$oid":"55cba2476c522cafdb0551e4"},"location":{"coordinates":[-74.017173,40.638094],"type":"Point"},"name":"Feeney'S Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb0551e5"},"location":{"coordinates":[-73.9379921,40.7646939],"type":"Point"},"name":"Hunan Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0551e6"},"location":{"coordinates":[-73.90876860000002,40.7662845],"type":"Point"},"name":"Ani Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0551e7"},"location":{"coordinates":[-74.00184089999999,40.6839076],"type":"Point"},"name":"The Flying Lobster"} +,{"_id":{"$oid":"55cba2476c522cafdb0551e8"},"location":{"coordinates":[-74.007334,40.70554],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0551e9"},"location":{"coordinates":[-73.992284,40.718105],"type":"Point"},"name":"Fontana''S"} +,{"_id":{"$oid":"55cba2476c522cafdb0551ea"},"location":{"coordinates":[-73.89653899999999,40.821321],"type":"Point"},"name":"El Castillo Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0551eb"},"location":{"coordinates":[-73.9452,40.79028],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0551ec"},"location":{"coordinates":[-73.7143663,40.74581630000001],"type":"Point"},"name":"What A Bagel Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0551ed"},"location":{"coordinates":[-73.9405155,40.5914025],"type":"Point"},"name":"Tokyo Boy Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb0551ee"},"location":{"coordinates":[-73.965885,40.760184],"type":"Point"},"name":"Yuva Frontier Indian Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0551ef"},"location":{"coordinates":[-73.98416399999999,40.7395281],"type":"Point"},"name":"Hidden City Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0551f0"},"location":{"coordinates":[-73.79427199999999,40.68631999999999],"type":"Point"},"name":"Loong Hing Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0551f1"},"location":{"coordinates":[-73.80373829999999,40.762049],"type":"Point"},"name":"M \u0026 Y Entertainment"} +,{"_id":{"$oid":"55cba2476c522cafdb0551f2"},"location":{"coordinates":[-74.0178269,40.7149764],"type":"Point"},"name":"P.J. Clarke'S On The Hudson"} +,{"_id":{"$oid":"55cba2476c522cafdb0551f3"},"location":{"coordinates":[-73.828262,40.7642181],"type":"Point"},"name":"Sushi Family Express"} +,{"_id":{"$oid":"55cba2476c522cafdb0551f4"},"location":{"coordinates":[-73.950513,40.784115],"type":"Point"},"name":"Barking Dog Luncheonette"} +,{"_id":{"$oid":"55cba2476c522cafdb0551f5"},"location":{"coordinates":[-74.0861942,40.645795],"type":"Point"},"name":"D \u0026 B Double Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0551f6"},"location":{"coordinates":[-74.0079542,40.7432086],"type":"Point"},"name":"Del Posto Ristorante"} +,{"_id":{"$oid":"55cba2476c522cafdb0551f7"},"location":{"coordinates":[-73.99244519999999,40.617238],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0551f8"},"location":{"coordinates":[-73.9593708,40.71767800000001],"type":"Point"},"name":"Tacu Tacu Restuarant"} +,{"_id":{"$oid":"55cba2476c522cafdb0551f9"},"location":{"coordinates":[-74.00399700000001,40.737713],"type":"Point"},"name":"Blenheim"} +,{"_id":{"$oid":"55cba2476c522cafdb0551fa"},"location":{"coordinates":[-73.8929345,40.7489614],"type":"Point"},"name":"Raja Sweets \u0026 Fast Food"} +,{"_id":{"$oid":"55cba2476c522cafdb0551fb"},"location":{"coordinates":[-73.9939053,40.664856],"type":"Point"},"name":"El Nuevo Sabor Latino"} +,{"_id":{"$oid":"55cba2476c522cafdb0551fc"},"location":{"coordinates":[-73.86407,40.746597],"type":"Point"},"name":"Papa John'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0551fd"},"location":{"coordinates":[-73.973642,40.756571],"type":"Point"},"name":"Peacock Alley Restaurant And Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0551fe"},"location":{"coordinates":[-73.9819961,40.7611196],"type":"Point"},"name":"Cafe Duke"} +,{"_id":{"$oid":"55cba2476c522cafdb0551ff"},"location":{"coordinates":[-73.99255099999999,40.7365449],"type":"Point"},"name":"Tocqueville Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055200"},"location":{"coordinates":[-73.94179749999999,40.5984241],"type":"Point"},"name":"Domino'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb055201"},"location":{"coordinates":[-73.7822056,40.6434612],"type":"Point"},"name":"Emirates Vip Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb055202"},"location":{"coordinates":[-73.9455421,40.8340361],"type":"Point"},"name":"Tropical Spanish Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055203"},"location":{"coordinates":[-73.977502,40.762192],"type":"Point"},"name":"Connolly'S Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb055204"},"location":{"coordinates":[-73.966663,40.7617968],"type":"Point"},"name":"David Burke At Bloomingdale'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055205"},"location":{"coordinates":[-73.912436,40.699681],"type":"Point"},"name":"La Fogata"} +,{"_id":{"$oid":"55cba2476c522cafdb055206"},"location":{"coordinates":[-73.87504419999999,40.80317890000001],"type":"Point"},"name":"Fulton Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055207"},"location":{"coordinates":[-73.981973,40.741028],"type":"Point"},"name":"Mad Hatter Saloon"} +,{"_id":{"$oid":"55cba2476c522cafdb055208"},"location":{"coordinates":[-74.0038177,40.7087043],"type":"Point"},"name":"Squire Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb055209"},"location":{"coordinates":[-73.9800884,40.77527],"type":"Point"},"name":"Empire Szechuan Kyoto"} +,{"_id":{"$oid":"55cba2476c522cafdb05520a"},"location":{"coordinates":[-73.9936759,40.758556],"type":"Point"},"name":"Playwrights Horizons"} +,{"_id":{"$oid":"55cba2476c522cafdb05520b"},"location":{"coordinates":[-73.9414251,40.6752534],"type":"Point"},"name":"Cas' West Indian \u0026 American Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05520c"},"location":{"coordinates":[-73.9776225,40.7591122],"type":"Point"},"name":"Brasserie Ruhlmann"} +,{"_id":{"$oid":"55cba2476c522cafdb05520d"},"location":{"coordinates":[-73.983953,40.75785],"type":"Point"},"name":"O'Briens"} +,{"_id":{"$oid":"55cba2476c522cafdb05520e"},"location":{"coordinates":[-73.8434039,40.8623051],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb05520f"},"location":{"coordinates":[-73.8203769,40.825311],"type":"Point"},"name":"Jun Bo Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055210"},"location":{"coordinates":[-73.97889459999999,40.7556905],"type":"Point"},"name":"Barnes \u0026 Noble Booksellers"} +,{"_id":{"$oid":"55cba2476c522cafdb055211"},"location":{"coordinates":[-73.9870224,40.6880911],"type":"Point"},"name":"Fast \u0026 Fresh Burrito"} +,{"_id":{"$oid":"55cba2476c522cafdb055212"},"location":{"coordinates":[-73.9263517,40.61278739999999],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb055213"},"location":{"coordinates":[-73.891015,40.650129],"type":"Point"},"name":"Chen'S Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb055214"},"location":{"coordinates":[-73.983842,40.751181],"type":"Point"},"name":"Cafe Bonjour Deli \u0026 Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb055215"},"location":{"coordinates":[-73.91935409999999,40.7302689],"type":"Point"},"name":"Rudy'S Deli Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055216"},"location":{"coordinates":[-73.91744659999999,40.7653045],"type":"Point"},"name":"Billiard Room"} +,{"_id":{"$oid":"55cba2476c522cafdb055217"},"location":{"coordinates":[-74.2021817,40.5260403],"type":"Point"},"name":"Domenicos Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb055218"},"location":{"coordinates":[-73.99091,40.761228],"type":"Point"},"name":"Galaxy Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb055219"},"location":{"coordinates":[-73.9225749,40.8373731],"type":"Point"},"name":"Eye Adom African \u0026 Spanish Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05521a"},"location":{"coordinates":[-73.83173699999999,40.7150181],"type":"Point"},"name":"Midori Matsu"} +,{"_id":{"$oid":"55cba2476c522cafdb05521b"},"location":{"coordinates":[-73.957458,40.6451149],"type":"Point"},"name":"Delroy'S Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05521c"},"location":{"coordinates":[-73.97395569999999,40.7635384],"type":"Point"},"name":"Bg Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05521d"},"location":{"coordinates":[-73.97395569999999,40.7635384],"type":"Point"},"name":"Good Dish Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05521e"},"location":{"coordinates":[-73.8679193,40.6787243],"type":"Point"},"name":"Joe'S Pizzeria Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05521f"},"location":{"coordinates":[-73.937936,40.8432575],"type":"Point"},"name":"Wimpy'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055220"},"location":{"coordinates":[-73.954099,40.7746583],"type":"Point"},"name":"Antonucci"} +,{"_id":{"$oid":"55cba2476c522cafdb055221"},"location":{"coordinates":[-73.98267779999999,40.7316471],"type":"Point"},"name":"Papaya Dog"} +,{"_id":{"$oid":"55cba2476c522cafdb055222"},"location":{"coordinates":[-73.936735,40.651675],"type":"Point"},"name":"Blake'S International Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055223"},"location":{"coordinates":[-73.986913,40.718723],"type":"Point"},"name":"The Back Room"} +,{"_id":{"$oid":"55cba2476c522cafdb055224"},"location":{"coordinates":[-74.0041454,40.7304065],"type":"Point"},"name":"Daddy-O"} +,{"_id":{"$oid":"55cba2476c522cafdb055225"},"location":{"coordinates":[-73.9591559,40.7673034],"type":"Point"},"name":"Beach Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055226"},"location":{"coordinates":[-73.88871520000001,40.6337296],"type":"Point"},"name":"Win Hing Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055227"},"location":{"coordinates":[-74.0103468,40.6550053],"type":"Point"},"name":"Peyton'S All Nude Play Pen"} +,{"_id":{"$oid":"55cba2476c522cafdb055228"},"location":{"coordinates":[-73.9927144,40.7475683],"type":"Point"},"name":"Guy \u0026 Gallard"} +,{"_id":{"$oid":"55cba2476c522cafdb055229"},"location":{"coordinates":[-74.007847,40.637452],"type":"Point"},"name":"Lucky Zhang'S Family"} +,{"_id":{"$oid":"55cba2476c522cafdb05522a"},"location":{"coordinates":[-73.983396,40.765544],"type":"Point"},"name":"Luigis Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05522b"},"location":{"coordinates":[-74.16386580000001,40.5598468],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb05522c"},"location":{"coordinates":[-74.0215321,40.6335302],"type":"Point"},"name":"Meena House Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05522d"},"location":{"coordinates":[-73.9694852,40.75588940000001],"type":"Point"},"name":"Tanaka"} +,{"_id":{"$oid":"55cba2476c522cafdb05522e"},"location":{"coordinates":[-74.00029599999999,40.72984599999999],"type":"Point"},"name":"Macdougal Street Ale House"} +,{"_id":{"$oid":"55cba2476c522cafdb05522f"},"location":{"coordinates":[-74.1211853,40.6046525],"type":"Point"},"name":"Tack'S Chinese Take Out"} +,{"_id":{"$oid":"55cba2476c522cafdb055230"},"location":{"coordinates":[-73.8548496,40.7211998],"type":"Point"},"name":"Red House Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb055231"},"location":{"coordinates":[-73.9506998,40.8021536],"type":"Point"},"name":"Jumbos Hamburger"} +,{"_id":{"$oid":"55cba2476c522cafdb055232"},"location":{"coordinates":[-73.930043,40.670255],"type":"Point"},"name":"Happiness Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb055233"},"location":{"coordinates":[-73.9132856,40.8140722],"type":"Point"},"name":"Fresco Pizza And Pasta"} +,{"_id":{"$oid":"55cba2476c522cafdb055234"},"location":{"coordinates":[-73.9618467,40.7136684],"type":"Point"},"name":"Dumont Burger"} +,{"_id":{"$oid":"55cba2476c522cafdb055235"},"location":{"coordinates":[-74.132595,40.611797],"type":"Point"},"name":"Mezculeros Mexican Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055236"},"location":{"coordinates":[-73.9133049,40.700994],"type":"Point"},"name":"Ambar"} +,{"_id":{"$oid":"55cba2476c522cafdb055237"},"location":{"coordinates":[-73.9986575,40.6761357],"type":"Point"},"name":"Naturally Delicious Caterers"} +,{"_id":{"$oid":"55cba2476c522cafdb055238"},"location":{"coordinates":[-74.0016887,40.7320243],"type":"Point"},"name":"Las Ramblas"} +,{"_id":{"$oid":"55cba2476c522cafdb055239"},"location":{"coordinates":[-73.937771,40.698115],"type":"Point"},"name":"Little Italy M \u0026 O Pizza Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05523a"},"location":{"coordinates":[-73.9072411,40.7704001],"type":"Point"},"name":"Christos Steakhouse"} +,{"_id":{"$oid":"55cba2476c522cafdb05523b"},"location":{"coordinates":[-73.98013999999999,40.67600100000001],"type":"Point"},"name":"Union Hall"} +,{"_id":{"$oid":"55cba2476c522cafdb05523c"},"location":{"coordinates":[-73.9467767,40.7759621],"type":"Point"},"name":"The Mansion"} +,{"_id":{"$oid":"55cba2476c522cafdb05523d"},"location":{"coordinates":[-73.99121889999999,40.7033761],"type":"Point"},"name":"Almondine"} +,{"_id":{"$oid":"55cba2476c522cafdb05523e"},"location":{"coordinates":[-73.9350963,40.6636204],"type":"Point"},"name":"Exquisite Catering"} +,{"_id":{"$oid":"55cba2476c522cafdb05523f"},"location":{"coordinates":[-73.7383717,40.6690782],"type":"Point"},"name":"Henrica'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055240"},"location":{"coordinates":[-73.8802254,40.7416282],"type":"Point"},"name":"Chao Thai"} +,{"_id":{"$oid":"55cba2476c522cafdb055241"},"location":{"coordinates":[-73.91522069999999,40.7523626],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb055242"},"location":{"coordinates":[-73.9819605,40.750808],"type":"Point"},"name":"Butterfiled 8"} +,{"_id":{"$oid":"55cba2476c522cafdb055243"},"location":{"coordinates":[-73.97582919999999,40.6872881],"type":"Point"},"name":"67 Burger"} +,{"_id":{"$oid":"55cba2476c522cafdb055244"},"location":{"coordinates":[-73.8833173,40.742996],"type":"Point"},"name":"Ye Mei Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb055245"},"location":{"coordinates":[-73.984717,40.639033],"type":"Point"},"name":"The Side Dish"} +,{"_id":{"$oid":"55cba2476c522cafdb055246"},"location":{"coordinates":[-74.0076277,40.71650760000001],"type":"Point"},"name":"Blaue Gans"} +,{"_id":{"$oid":"55cba2476c522cafdb055247"},"location":{"coordinates":[-73.85452599999999,40.89775590000001],"type":"Point"},"name":"Pauls Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb055248"},"location":{"coordinates":[-73.9769331,40.7854107],"type":"Point"},"name":"Hampton Chutney, Co."} +,{"_id":{"$oid":"55cba2476c522cafdb055249"},"location":{"coordinates":[-73.86988459999999,40.6781467],"type":"Point"},"name":"El Rey Ii Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05524a"},"location":{"coordinates":[-73.9915288,40.7594973],"type":"Point"},"name":"Chipotle Mexican Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb05524b"},"location":{"coordinates":[-73.96247530000001,40.7686363],"type":"Point"},"name":"Butterfield Market"} +,{"_id":{"$oid":"55cba2476c522cafdb05524c"},"location":{"coordinates":[-73.98481199999999,40.7191785],"type":"Point"},"name":"Cibao Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05524d"},"location":{"coordinates":[-74.0044983,40.63427129999999],"type":"Point"},"name":"38 Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb05524e"},"location":{"coordinates":[-73.9210801,40.8669368],"type":"Point"},"name":"Amy'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05524f"},"location":{"coordinates":[-73.7965328,40.7034697],"type":"Point"},"name":"Crown Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb055250"},"location":{"coordinates":[-74.0763523,40.6299351],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055251"},"location":{"coordinates":[-73.98279339999999,40.6129606],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055252"},"location":{"coordinates":[-74.0860804,40.5946377],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055253"},"location":{"coordinates":[-73.98105009999999,40.6852772],"type":"Point"},"name":"Hanks Saloon"} +,{"_id":{"$oid":"55cba2476c522cafdb055254"},"location":{"coordinates":[-73.9080019,40.8537082],"type":"Point"},"name":"Liberato Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055255"},"location":{"coordinates":[-73.989757,40.61913699999999],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055256"},"location":{"coordinates":[-73.923215,40.6643789],"type":"Point"},"name":"Tasty Delicious Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb055257"},"location":{"coordinates":[-73.9882878,40.7222596],"type":"Point"},"name":"The Sixth Ward"} +,{"_id":{"$oid":"55cba2476c522cafdb055258"},"location":{"coordinates":[-73.9877204,40.720036],"type":"Point"},"name":"Fat Baby"} +,{"_id":{"$oid":"55cba2476c522cafdb055259"},"location":{"coordinates":[-73.98849,40.726909],"type":"Point"},"name":"Local 92"} +,{"_id":{"$oid":"55cba2476c522cafdb05525a"},"location":{"coordinates":[-73.9954729,40.6953106],"type":"Point"},"name":"Lantern"} +,{"_id":{"$oid":"55cba2476c522cafdb05525b"},"location":{"coordinates":[-73.9403339,40.8348627],"type":"Point"},"name":"L'Fonda"} +,{"_id":{"$oid":"55cba2476c522cafdb05525c"},"location":{"coordinates":[-73.9902492,40.7555838],"type":"Point"},"name":"Teleon Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05525d"},"location":{"coordinates":[-73.9110002,40.7766793],"type":"Point"},"name":"La Guli Pastry Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb05525e"},"location":{"coordinates":[-73.98403,40.618599],"type":"Point"},"name":"Cafe Bar Navruz"} +,{"_id":{"$oid":"55cba2476c522cafdb05525f"},"location":{"coordinates":[-73.99466939999999,40.7210013],"type":"Point"},"name":"Cafe El Portal"} +,{"_id":{"$oid":"55cba2476c522cafdb055260"},"location":{"coordinates":[-73.9257314,40.7566539],"type":"Point"},"name":"Sunswick"} +,{"_id":{"$oid":"55cba2476c522cafdb055261"},"location":{"coordinates":[-73.9658199,40.765106],"type":"Point"},"name":"Alices Tea Cup Chapter 2"} +,{"_id":{"$oid":"55cba2476c522cafdb055262"},"location":{"coordinates":[-73.73685739999999,40.6938914],"type":"Point"},"name":"Exclusive Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb055263"},"location":{"coordinates":[-73.9565946,40.8022824],"type":"Point"},"name":"Zoma"} +,{"_id":{"$oid":"55cba2476c522cafdb055264"},"location":{"coordinates":[-73.98651799999999,40.714128],"type":"Point"},"name":"Woolworth Tower Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb055265"},"location":{"coordinates":[-73.9546127,40.7170353],"type":"Point"},"name":"Roebling Sporting Club"} +,{"_id":{"$oid":"55cba2476c522cafdb055266"},"location":{"coordinates":[-73.80625599999999,40.66575],"type":"Point"},"name":"Hilton Garden Inn"} +,{"_id":{"$oid":"55cba2476c522cafdb055267"},"location":{"coordinates":[-73.9852329,40.745971],"type":"Point"},"name":"Juni"} +,{"_id":{"$oid":"55cba2476c522cafdb055268"},"location":{"coordinates":[-74.0068885,40.74091809999999],"type":"Point"},"name":"Valbella N.Y."} +,{"_id":{"$oid":"55cba2476c522cafdb055269"},"location":{"coordinates":[-74.0026804,40.734413],"type":"Point"},"name":"Cafe Condesa"} +,{"_id":{"$oid":"55cba2476c522cafdb05526a"},"location":{"coordinates":[-73.869353,40.7491818],"type":"Point"},"name":"Seba-Seba"} +,{"_id":{"$oid":"55cba2476c522cafdb05526b"},"location":{"coordinates":[-74.00316959999999,40.7329892],"type":"Point"},"name":"Garage"} +,{"_id":{"$oid":"55cba2476c522cafdb05526c"},"location":{"coordinates":[-73.9176179,40.7462597],"type":"Point"},"name":"Quaint"} +,{"_id":{"$oid":"55cba2476c522cafdb05526d"},"location":{"coordinates":[-73.9849492,40.7599577],"type":"Point"},"name":"Morgan Stanley"} +,{"_id":{"$oid":"55cba2476c522cafdb05526e"},"location":{"coordinates":[-73.92681739999999,40.8659424],"type":"Point"},"name":"Tony'S Pizza Pasta \u0026 Gyro"} +,{"_id":{"$oid":"55cba2476c522cafdb05526f"},"location":{"coordinates":[-73.9958288,40.7165916],"type":"Point"},"name":"Golden King Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb055270"},"location":{"coordinates":[-73.90506789999999,40.8789126],"type":"Point"},"name":"La Tia Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055271"},"location":{"coordinates":[-73.9305894,40.65681439999999],"type":"Point"},"name":"Domino'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb055272"},"location":{"coordinates":[-74.008068,40.653475],"type":"Point"},"name":"Rose Quartz Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb055273"},"location":{"coordinates":[-73.8914027,40.67234010000001],"type":"Point"},"name":"Domino'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb055274"},"location":{"coordinates":[-73.934011,40.651824],"type":"Point"},"name":"You Yi Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055275"},"location":{"coordinates":[-73.8272719,40.75983799999999],"type":"Point"},"name":"Maxin Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb055276"},"location":{"coordinates":[-73.9922173,40.72857270000001],"type":"Point"},"name":"Colors Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055277"},"location":{"coordinates":[-73.9904115,40.6864007],"type":"Point"},"name":"Carroll Gardens Classic Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb055278"},"location":{"coordinates":[-73.894707,40.768662],"type":"Point"},"name":"Nick'S Gourmet Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb055279"},"location":{"coordinates":[-73.903418,40.8561258],"type":"Point"},"name":"Golden Horse Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05527a"},"location":{"coordinates":[-73.9808434,40.60505939999999],"type":"Point"},"name":"Dejavu Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05527b"},"location":{"coordinates":[-73.953124,40.7448336],"type":"Point"},"name":"Masso"} +,{"_id":{"$oid":"55cba2476c522cafdb05527c"},"location":{"coordinates":[-74.0079564,40.7128255],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb05527d"},"location":{"coordinates":[-73.726467,40.7639451],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb05527e"},"location":{"coordinates":[-73.86488949999999,40.8597459],"type":"Point"},"name":"Side By Side Pizza \u0026 Burek"} +,{"_id":{"$oid":"55cba2476c522cafdb05527f"},"location":{"coordinates":[-73.9609881,40.6500657],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb055280"},"location":{"coordinates":[-73.8456101,40.8699545],"type":"Point"},"name":"Golden Star Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb055281"},"location":{"coordinates":[-73.93117099999999,40.769702],"type":"Point"},"name":"Brothers Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb055282"},"location":{"coordinates":[-74.02958029999999,40.6261949],"type":"Point"},"name":"The Pearl Room"} +,{"_id":{"$oid":"55cba2476c522cafdb055283"},"location":{"coordinates":[-73.98297,40.746644],"type":"Point"},"name":"Sushi Sen-Nin"} +,{"_id":{"$oid":"55cba2476c522cafdb055284"},"location":{"coordinates":[-73.95861599999999,40.5987922],"type":"Point"},"name":"Pho Viet-Nam Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055285"},"location":{"coordinates":[-73.8747617,40.8292019],"type":"Point"},"name":"New Yankee Sk Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb055286"},"location":{"coordinates":[-73.985563,40.732086],"type":"Point"},"name":"Professor Thom'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055287"},"location":{"coordinates":[-73.9792219,40.783842],"type":"Point"},"name":"Dublin House"} +,{"_id":{"$oid":"55cba2476c522cafdb055288"},"location":{"coordinates":[-85.65917499999999,30.1751962],"type":"Point"},"name":"Shades Of Green"} +,{"_id":{"$oid":"55cba2476c522cafdb055289"},"location":{"coordinates":[-73.9813957,40.7416758],"type":"Point"},"name":"Tavern On The Third"} +,{"_id":{"$oid":"55cba2476c522cafdb05528a"},"location":{"coordinates":[-74.0073429,40.7432177],"type":"Point"},"name":"Morimoto Ny"} +,{"_id":{"$oid":"55cba2476c522cafdb05528b"},"location":{"coordinates":[-73.7688515,40.6640596],"type":"Point"},"name":"Crown Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb05528c"},"location":{"coordinates":[-74.00489689999999,40.7419343],"type":"Point"},"name":"Buddakan"} +,{"_id":{"$oid":"55cba2476c522cafdb05528d"},"location":{"coordinates":[-73.97490979999999,40.7827624],"type":"Point"},"name":"World Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb05528e"},"location":{"coordinates":[-73.8497782,40.9050431],"type":"Point"},"name":"Cheffy Two Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05528f"},"location":{"coordinates":[-73.98089089999999,40.7534991],"type":"Point"},"name":"Wichcraft"} +,{"_id":{"$oid":"55cba2476c522cafdb055290"},"location":{"coordinates":[-73.99096899999999,40.721072],"type":"Point"},"name":"Jadis Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055291"},"location":{"coordinates":[-73.8624509,40.746744],"type":"Point"},"name":"Catacocha Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055292"},"location":{"coordinates":[-74.1483472,40.5388851],"type":"Point"},"name":"La Bella"} +,{"_id":{"$oid":"55cba2476c522cafdb055293"},"location":{"coordinates":[-73.9671821,40.6327118],"type":"Point"},"name":"Papa John'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb055294"},"location":{"coordinates":[-73.8706606,40.7342757],"type":"Point"},"name":"Charley'S Grilled Subs"} +,{"_id":{"$oid":"55cba2476c522cafdb055295"},"location":{"coordinates":[-73.9793609,40.7604055],"type":"Point"},"name":"Teresa'S Gourmet"} +,{"_id":{"$oid":"55cba2476c522cafdb055296"},"location":{"coordinates":[-73.970443,40.75844],"type":"Point"},"name":"Kirkland \u0026 Ellis Llp"} +,{"_id":{"$oid":"55cba2476c522cafdb055297"},"location":{"coordinates":[-73.9984927,40.7142315],"type":"Point"},"name":"Hop Lee Restarant"} +,{"_id":{"$oid":"55cba2476c522cafdb055298"},"location":{"coordinates":[-74.0681246,40.6164543],"type":"Point"},"name":"Jackie'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055299"},"location":{"coordinates":[-73.9502289,40.77939],"type":"Point"},"name":"Genesis Bar \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05529a"},"location":{"coordinates":[-73.9453249,40.7456985],"type":"Point"},"name":"Gaw Gai"} +,{"_id":{"$oid":"55cba2476c522cafdb05529b"},"location":{"coordinates":[-73.897899,40.905219],"type":"Point"},"name":"Jay'S Place"} +,{"_id":{"$oid":"55cba2476c522cafdb05529c"},"location":{"coordinates":[-73.8470944,40.7165087],"type":"Point"},"name":"Gotta Getta Bagel Of Queens"} +,{"_id":{"$oid":"55cba2476c522cafdb05529d"},"location":{"coordinates":[-73.9425023,40.721548],"type":"Point"},"name":"Boulevard Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb05529e"},"location":{"coordinates":[-74.00738249999999,40.7285348],"type":"Point"},"name":"Saatchi \u0026 Saatchi"} +,{"_id":{"$oid":"55cba2476c522cafdb05529f"},"location":{"coordinates":[-73.9948354,40.7280233],"type":"Point"},"name":"Le Basket"} +,{"_id":{"$oid":"55cba2476c522cafdb0552a0"},"location":{"coordinates":[-73.9950932,40.71412369999999],"type":"Point"},"name":"Yi Mei Yum Gourmet"} +,{"_id":{"$oid":"55cba2476c522cafdb0552a1"},"location":{"coordinates":[-73.94743470000002,40.7478127],"type":"Point"},"name":"Kitchen Door"} +,{"_id":{"$oid":"55cba2476c522cafdb0552a2"},"location":{"coordinates":[-73.9721844,40.6897531],"type":"Point"},"name":"Smooch"} +,{"_id":{"$oid":"55cba2476c522cafdb0552a3"},"location":{"coordinates":[-73.98445880000001,40.7022407],"type":"Point"},"name":"Bridge Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb0552a4"},"location":{"coordinates":[-73.8259127,40.7433016],"type":"Point"},"name":"Tea Shop 168 \u0026 Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0552a5"},"location":{"coordinates":[-73.9464942,40.6801253],"type":"Point"},"name":"Applebee'S Neighborhood Grill \u0026 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0552a6"},"location":{"coordinates":[-73.9919802,40.7535985],"type":"Point"},"name":"Chef Yu / Azuki"} +,{"_id":{"$oid":"55cba2476c522cafdb0552a7"},"location":{"coordinates":[-73.9788356,40.6895988],"type":"Point"},"name":"Pipitones Pizzeria \u0026 Pasta"} +,{"_id":{"$oid":"55cba2476c522cafdb0552a8"},"location":{"coordinates":[-73.99730890000001,40.7172096],"type":"Point"},"name":"Grand Harmony Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0552a9"},"location":{"coordinates":[-73.9072741,40.65513989999999],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0552aa"},"location":{"coordinates":[-73.944217,40.806924],"type":"Point"},"name":"Pee Dee"} +,{"_id":{"$oid":"55cba2476c522cafdb0552ab"},"location":{"coordinates":[-73.9895639,40.7377811],"type":"Point"},"name":"Abc Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0552ac"},"location":{"coordinates":[-73.7807918,40.7293783],"type":"Point"},"name":"A\u0026A Gourmet"} +,{"_id":{"$oid":"55cba2476c522cafdb0552ad"},"location":{"coordinates":[-73.9807428,40.758073],"type":"Point"},"name":"Lenny'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0552ae"},"location":{"coordinates":[-73.967736,40.763457],"type":"Point"},"name":"Wajima"} +,{"_id":{"$oid":"55cba2476c522cafdb0552af"},"location":{"coordinates":[-73.9977393,40.6789528],"type":"Point"},"name":"Abilene"} +,{"_id":{"$oid":"55cba2476c522cafdb0552b0"},"location":{"coordinates":[-74.029061,40.629117],"type":"Point"},"name":"Med East Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0552b1"},"location":{"coordinates":[-73.92232899999999,40.760819],"type":"Point"},"name":"Tippin Inn"} +,{"_id":{"$oid":"55cba2476c522cafdb0552b2"},"location":{"coordinates":[-73.99599529999999,40.7397106],"type":"Point"},"name":"Crema"} +,{"_id":{"$oid":"55cba2476c522cafdb0552b3"},"location":{"coordinates":[-73.9472436,40.8303448],"type":"Point"},"name":"Taqueria San Pedro"} +,{"_id":{"$oid":"55cba2476c522cafdb0552b4"},"location":{"coordinates":[-73.9125463,40.7745707],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0552b5"},"location":{"coordinates":[-73.9651337,40.6937213],"type":"Point"},"name":"Los Pollitos Iii"} +,{"_id":{"$oid":"55cba2476c522cafdb0552b6"},"location":{"coordinates":[-73.79914,40.7039929],"type":"Point"},"name":"Taco Bell/Pizza Hut"} +,{"_id":{"$oid":"55cba2476c522cafdb0552b7"},"location":{"coordinates":[-73.9776486,40.6801214],"type":"Point"},"name":"Miriam"} +,{"_id":{"$oid":"55cba2476c522cafdb0552b8"},"location":{"coordinates":[-73.9294644,40.8558529],"type":"Point"},"name":"Popeyes Chicken \u0026 Biscuits"} +,{"_id":{"$oid":"55cba2476c522cafdb0552b9"},"location":{"coordinates":[-73.9786864,40.723821],"type":"Point"},"name":"Alphabet Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb0552ba"},"location":{"coordinates":[-73.8514391,40.6939421],"type":"Point"},"name":"Lucky Thailand Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0552bb"},"location":{"coordinates":[-73.98965919999999,40.746619],"type":"Point"},"name":"Island Glen Usa"} +,{"_id":{"$oid":"55cba2476c522cafdb0552bc"},"location":{"coordinates":[-73.9771678,40.6307209],"type":"Point"},"name":"U \u0026 I Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0552bd"},"location":{"coordinates":[-73.9812463,40.724671],"type":"Point"},"name":"Manitoba'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0552be"},"location":{"coordinates":[-73.89678649999999,40.8624744],"type":"Point"},"name":"Best Italian Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0552bf"},"location":{"coordinates":[-73.9200467,40.8655438],"type":"Point"},"name":"Restaurante Ecuatoriano Genesis"} +,{"_id":{"$oid":"55cba2476c522cafdb0552c0"},"location":{"coordinates":[-73.926851,40.8112389],"type":"Point"},"name":"Angie'S Cafe Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0552c1"},"location":{"coordinates":[-73.97377469999999,40.7598045],"type":"Point"},"name":"Caffe Action"} +,{"_id":{"$oid":"55cba2476c522cafdb0552c2"},"location":{"coordinates":[-73.7909614,40.695804],"type":"Point"},"name":"Yogi Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0552c3"},"location":{"coordinates":[-73.8452595,40.7097536],"type":"Point"},"name":"Dee'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0552c4"},"location":{"coordinates":[-73.983029,40.725314],"type":"Point"},"name":"Buenos Aires"} +,{"_id":{"$oid":"55cba2476c522cafdb0552c5"},"location":{"coordinates":[-73.98375709999999,40.7578802],"type":"Point"},"name":"Nios Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0552c6"},"location":{"coordinates":[-73.94262290000002,40.8366155],"type":"Point"},"name":"Tu Sabor Latino"} +,{"_id":{"$oid":"55cba2476c522cafdb0552c7"},"location":{"coordinates":[-73.9929789,40.75285700000001],"type":"Point"},"name":"35 Duet"} +,{"_id":{"$oid":"55cba2476c522cafdb0552c8"},"location":{"coordinates":[-73.9809475,40.7751046],"type":"Point"},"name":"La Traviata Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0552c9"},"location":{"coordinates":[-73.814351,40.764824],"type":"Point"},"name":"Dae Dong Manor"} +,{"_id":{"$oid":"55cba2476c522cafdb0552ca"},"location":{"coordinates":[-73.954488,40.7070708],"type":"Point"},"name":"Pica Pica Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0552cb"},"location":{"coordinates":[-73.89356649999999,40.8598975],"type":"Point"},"name":"3 Way Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0552cc"},"location":{"coordinates":[-73.9706034,40.7613519],"type":"Point"},"name":"Blt Steak"} +,{"_id":{"$oid":"55cba2476c522cafdb0552cd"},"location":{"coordinates":[-73.8895569,40.6764483],"type":"Point"},"name":"Papa John'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0552ce"},"location":{"coordinates":[-73.890003,40.7458972],"type":"Point"},"name":"Midang"} +,{"_id":{"$oid":"55cba2476c522cafdb0552cf"},"location":{"coordinates":[-73.99420239999999,40.73011260000001],"type":"Point"},"name":"Pizza Mercato"} +,{"_id":{"$oid":"55cba2476c522cafdb0552d0"},"location":{"coordinates":[-73.99135799999999,40.6858235],"type":"Point"},"name":"Pane E Vino"} +,{"_id":{"$oid":"55cba2476c522cafdb0552d1"},"location":{"coordinates":[-73.9995531,40.73001199999999],"type":"Point"},"name":"Peanut Butter \u0026 Co."} +,{"_id":{"$oid":"55cba2476c522cafdb0552d2"},"location":{"coordinates":[-73.8961719,40.7465274],"type":"Point"},"name":"Pollos A La Brasa Marion"} +,{"_id":{"$oid":"55cba2476c522cafdb0552d3"},"location":{"coordinates":[-73.959204,40.768135],"type":"Point"},"name":"Per Lei"} +,{"_id":{"$oid":"55cba2476c522cafdb0552d4"},"location":{"coordinates":[-78.39776909999999,40.5105708],"type":"Point"},"name":"Zibetto Espresso Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0552d5"},"location":{"coordinates":[-73.9911006,40.76503719999999],"type":"Point"},"name":"Cakes 'N Shapes"} +,{"_id":{"$oid":"55cba2476c522cafdb0552d6"},"location":{"coordinates":[-73.92958329999999,40.7562767],"type":"Point"},"name":"Quijote"} +,{"_id":{"$oid":"55cba2476c522cafdb0552d7"},"location":{"coordinates":[-73.9571467,40.6816328],"type":"Point"},"name":"Papa John'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0552d8"},"location":{"coordinates":[-73.9891116,40.7338531],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0552d9"},"location":{"coordinates":[-73.987551,40.764835],"type":"Point"},"name":"Q2 Thai Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0552da"},"location":{"coordinates":[-73.963707,40.6789225],"type":"Point"},"name":"Washington Bagel Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0552db"},"location":{"coordinates":[-73.929805,40.7570059],"type":"Point"},"name":"Tantra Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb0552dc"},"location":{"coordinates":[-73.80552899999999,40.697463],"type":"Point"},"name":"Sangria Tapas Bar \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0552dd"},"location":{"coordinates":[-73.85920380000002,40.8454296],"type":"Point"},"name":"Maestro Caterers"} +,{"_id":{"$oid":"55cba2476c522cafdb0552de"},"location":{"coordinates":[-73.943305,40.836915],"type":"Point"},"name":"5 Estrella Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0552df"},"location":{"coordinates":[-74.19167449999999,40.5890043],"type":"Point"},"name":"Tutto L'Italiano"} +,{"_id":{"$oid":"55cba2476c522cafdb0552e0"},"location":{"coordinates":[-73.9902989,40.7411818],"type":"Point"},"name":"Eisenberg'S Sandwich Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb0552e1"},"location":{"coordinates":[-73.8690285,40.7235745],"type":"Point"},"name":"Bridies Bar And Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0552e2"},"location":{"coordinates":[-73.8615655,40.7495738],"type":"Point"},"name":"La Oficina Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0552e3"},"location":{"coordinates":[-74.0082771,40.7069901],"type":"Point"},"name":"Pita Press"} +,{"_id":{"$oid":"55cba2476c522cafdb0552e4"},"location":{"coordinates":[-74.00663960000001,40.7514867],"type":"Point"},"name":"Eat On 8Th"} +,{"_id":{"$oid":"55cba2476c522cafdb0552e5"},"location":{"coordinates":[-73.9892156,40.75342149999999],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0552e6"},"location":{"coordinates":[-73.9006141,40.8680429],"type":"Point"},"name":"El Mangu Sabroso Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0552e7"},"location":{"coordinates":[-73.91983379999999,40.6099681],"type":"Point"},"name":"The Cookie House"} +,{"_id":{"$oid":"55cba2476c522cafdb0552e8"},"location":{"coordinates":[-120.4599938,36.8606752],"type":"Point"},"name":"Megu Midtown"} +,{"_id":{"$oid":"55cba2476c522cafdb0552e9"},"location":{"coordinates":[-73.8510005,40.8722143],"type":"Point"},"name":"Whisper Inn Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb0552ea"},"location":{"coordinates":[-74.0071785,40.7056884],"type":"Point"},"name":"Cafe Water"} +,{"_id":{"$oid":"55cba2476c522cafdb0552eb"},"location":{"coordinates":[-74.07818759999999,40.63787019999999],"type":"Point"},"name":"Poco Loco Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0552ec"},"location":{"coordinates":[-73.9073923,40.83139389999999],"type":"Point"},"name":"Grin African American Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0552ed"},"location":{"coordinates":[-73.9441678,40.7147944],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0552ee"},"location":{"coordinates":[-73.971007,40.7524],"type":"Point"},"name":"Ristorante Grifone"} +,{"_id":{"$oid":"55cba2476c522cafdb0552ef"},"location":{"coordinates":[-73.981972,40.727915],"type":"Point"},"name":"Horus Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0552f0"},"location":{"coordinates":[-73.7897211,40.7264728],"type":"Point"},"name":"Muscat Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0552f1"},"location":{"coordinates":[-73.9963885,40.7440072],"type":"Point"},"name":"Gotham Comedy Club"} +,{"_id":{"$oid":"55cba2476c522cafdb0552f2"},"location":{"coordinates":[-74.0100468,40.7099269],"type":"Point"},"name":"Bento Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb0552f3"},"location":{"coordinates":[-74.002354,40.739448],"type":"Point"},"name":"North Village Deli Emporium"} +,{"_id":{"$oid":"55cba2476c522cafdb0552f4"},"location":{"coordinates":[-73.9058167,40.8318562],"type":"Point"},"name":"King House Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0552f5"},"location":{"coordinates":[-73.9877276,40.7533511],"type":"Point"},"name":"Bento Nouveau"} +,{"_id":{"$oid":"55cba2476c522cafdb0552f6"},"location":{"coordinates":[-74.0127775,40.7058397],"type":"Point"},"name":"Bento Nouveau"} +,{"_id":{"$oid":"55cba2476c522cafdb0552f7"},"location":{"coordinates":[-73.826931,40.685572],"type":"Point"},"name":"New Oriental Guyana Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0552f8"},"location":{"coordinates":[-73.9983822,40.7140583],"type":"Point"},"name":"Chatham Square Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0552f9"},"location":{"coordinates":[-73.8921025,40.8165807],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0552fa"},"location":{"coordinates":[-73.869945,40.7704394],"type":"Point"},"name":"Bp / Turkam"} +,{"_id":{"$oid":"55cba2476c522cafdb0552fb"},"location":{"coordinates":[-73.95497630000001,40.5877337],"type":"Point"},"name":"Tete-A-Tete"} +,{"_id":{"$oid":"55cba2476c522cafdb0552fc"},"location":{"coordinates":[-73.8696811,40.6732385],"type":"Point"},"name":"Original Napoli'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0552fd"},"location":{"coordinates":[-73.98093779999999,40.7554425],"type":"Point"},"name":"Kellari Taverna"} +,{"_id":{"$oid":"55cba2476c522cafdb0552fe"},"location":{"coordinates":[-74.08558649999999,40.5955159],"type":"Point"},"name":"Royal Cucina"} +,{"_id":{"$oid":"55cba2476c522cafdb0552ff"},"location":{"coordinates":[-74.0088049,40.7046907],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb055300"},"location":{"coordinates":[-73.96810169999999,40.7619363],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb055301"},"location":{"coordinates":[-73.9656308,40.7624276],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb055302"},"location":{"coordinates":[-73.9886598,40.7565811],"type":"Point"},"name":"Dave \u0026 Buster'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055303"},"location":{"coordinates":[-73.9952862,40.7283378],"type":"Point"},"name":"Think Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb055304"},"location":{"coordinates":[-73.9864666,40.7424033],"type":"Point"},"name":"A Voce"} +,{"_id":{"$oid":"55cba2476c522cafdb055305"},"location":{"coordinates":[-73.9522759,40.76940680000001],"type":"Point"},"name":"Beanocchios Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055306"},"location":{"coordinates":[-73.988914,40.726326],"type":"Point"},"name":"Bistro Nomad"} +,{"_id":{"$oid":"55cba2476c522cafdb055307"},"location":{"coordinates":[-73.990494,40.7569545],"type":"Point"},"name":"Jamba Juice"} +,{"_id":{"$oid":"55cba2476c522cafdb055308"},"location":{"coordinates":[-74.00343160000001,40.748382],"type":"Point"},"name":"Trestle On Tenth"} +,{"_id":{"$oid":"55cba2476c522cafdb055309"},"location":{"coordinates":[-73.9201583,40.66154179999999],"type":"Point"},"name":"Domino'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05530a"},"location":{"coordinates":[-73.911678,40.7675709],"type":"Point"},"name":"Caffe Borbone"} +,{"_id":{"$oid":"55cba2476c522cafdb05530b"},"location":{"coordinates":[-73.95367399999999,40.775774],"type":"Point"},"name":"Jack Russell'S Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb05530c"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"Star Mountain Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb05530d"},"location":{"coordinates":[-73.9811908,40.7633215],"type":"Point"},"name":"Cafe Metro"} +,{"_id":{"$oid":"55cba2476c522cafdb05530e"},"location":{"coordinates":[-73.96888659999999,40.7548982],"type":"Point"},"name":"Lasagna Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05530f"},"location":{"coordinates":[-73.9314385,40.6673091],"type":"Point"},"name":"Tony'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb055310"},"location":{"coordinates":[-73.8040658,40.7576104],"type":"Point"},"name":"El Vincentino Restaurante Salvadoreno"} +,{"_id":{"$oid":"55cba2476c522cafdb055311"},"location":{"coordinates":[-73.947464,40.628901],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb055312"},"location":{"coordinates":[-73.9709085,40.78824729999999],"type":"Point"},"name":"Domino'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb055313"},"location":{"coordinates":[-73.9113752,40.7680135],"type":"Point"},"name":"Little Morocco Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055314"},"location":{"coordinates":[-73.88947449999999,40.6495701],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb055315"},"location":{"coordinates":[-73.9166856,40.8180478],"type":"Point"},"name":"Gar Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb055316"},"location":{"coordinates":[-73.9504812,40.7767146],"type":"Point"},"name":"Poke Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055317"},"location":{"coordinates":[-74.0229319,40.6350677],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb055318"},"location":{"coordinates":[-73.9827037,40.7684141],"type":"Point"},"name":"Bouchon Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb055319"},"location":{"coordinates":[-73.774872,40.7096779],"type":"Point"},"name":"Macumba Bar \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05531a"},"location":{"coordinates":[-73.9545813,40.7793648],"type":"Point"},"name":"East Side Billard"} +,{"_id":{"$oid":"55cba2476c522cafdb05531b"},"location":{"coordinates":[-73.9289,40.755959],"type":"Point"},"name":"Escolas"} +,{"_id":{"$oid":"55cba2476c522cafdb05531c"},"location":{"coordinates":[-73.8561962,40.8833543],"type":"Point"},"name":"Mystique"} +,{"_id":{"$oid":"55cba2476c522cafdb05531d"},"location":{"coordinates":[-73.9897597,40.7139068],"type":"Point"},"name":"169 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05531e"},"location":{"coordinates":[-73.86468099999999,40.865699],"type":"Point"},"name":"National Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb05531f"},"location":{"coordinates":[-73.9945228,40.7314208],"type":"Point"},"name":"Cafetasia"} +,{"_id":{"$oid":"55cba2476c522cafdb055320"},"location":{"coordinates":[-73.9218952,40.8682491],"type":"Point"},"name":"Angel Candy Store"} +,{"_id":{"$oid":"55cba2476c522cafdb055321"},"location":{"coordinates":[-73.9307085,40.7656679],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb055322"},"location":{"coordinates":[-74.022981,40.63463],"type":"Point"},"name":"Arabesq"} +,{"_id":{"$oid":"55cba2476c522cafdb055323"},"location":{"coordinates":[-73.75380609999999,40.6043643],"type":"Point"},"name":"Sissy'S Restaurant And Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb055324"},"location":{"coordinates":[-73.990456,40.741602],"type":"Point"},"name":"Lenny'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055325"},"location":{"coordinates":[-74.0855519,40.5955738],"type":"Point"},"name":"Royal Crown Bakery Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055326"},"location":{"coordinates":[-74.0079542,40.7432086],"type":"Point"},"name":"Colicchio \u0026 Sons"} +,{"_id":{"$oid":"55cba2476c522cafdb055327"},"location":{"coordinates":[-73.9205449,40.7597256],"type":"Point"},"name":"New Ho Wah Chinese Take Out"} +,{"_id":{"$oid":"55cba2476c522cafdb055328"},"location":{"coordinates":[-73.99917549999999,40.7298293],"type":"Point"},"name":"Masa Moto Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb055329"},"location":{"coordinates":[-73.9873883,40.7600723],"type":"Point"},"name":"Carve Unique Sandwiches"} +,{"_id":{"$oid":"55cba2476c522cafdb05532a"},"location":{"coordinates":[-76.7967716,37.3767434],"type":"Point"},"name":"El Pollo Restaurant And Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05532b"},"location":{"coordinates":[-74.0056761,40.7427881],"type":"Point"},"name":"Bowery Eats (Bowery Kitchen Appliance)"} +,{"_id":{"$oid":"55cba2476c522cafdb05532c"},"location":{"coordinates":[-73.9110307,40.7683047],"type":"Point"},"name":"Sabry'S Seafood Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05532d"},"location":{"coordinates":[-73.9819625,40.6767713],"type":"Point"},"name":"Palo Santo"} +,{"_id":{"$oid":"55cba2476c522cafdb05532e"},"location":{"coordinates":[-73.9914135,40.756058],"type":"Point"},"name":"Weng'S Palace"} +,{"_id":{"$oid":"55cba2476c522cafdb05532f"},"location":{"coordinates":[-74.1660553,40.5823983],"type":"Point"},"name":"Greenleaf'S Grille"} +,{"_id":{"$oid":"55cba2476c522cafdb055330"},"location":{"coordinates":[-73.98606649999999,40.7579328],"type":"Point"},"name":"Junior'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055331"},"location":{"coordinates":[-73.96907999999999,40.7912788],"type":"Point"},"name":"Gabriela'S Restaurante"} +,{"_id":{"$oid":"55cba2476c522cafdb055332"},"location":{"coordinates":[-73.96813809999999,40.6963574],"type":"Point"},"name":"Body By Brooklyn"} +,{"_id":{"$oid":"55cba2476c522cafdb055333"},"location":{"coordinates":[-74.03141219999999,40.615995],"type":"Point"},"name":"Fort Hamilton Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb055334"},"location":{"coordinates":[-73.885007,40.680012],"type":"Point"},"name":"Long Cheng Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055335"},"location":{"coordinates":[-73.8667012,40.8319631],"type":"Point"},"name":"Dragon Village"} +,{"_id":{"$oid":"55cba2476c522cafdb055336"},"location":{"coordinates":[-73.915639,40.7575197],"type":"Point"},"name":"Chian Federation"} +,{"_id":{"$oid":"55cba2476c522cafdb055337"},"location":{"coordinates":[-73.9169041,40.7808503],"type":"Point"},"name":"New Astoria Park Pizzeria \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055338"},"location":{"coordinates":[-74.0939289,40.5845021],"type":"Point"},"name":"Aladdin Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb055339"},"location":{"coordinates":[-73.85972149999999,40.7287589],"type":"Point"},"name":"Mr. Tong'S"} +,{"_id":{"$oid":"55cba2476c522cafdb05533a"},"location":{"coordinates":[-73.8292981,40.7132776],"type":"Point"},"name":"La Rondine Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05533b"},"location":{"coordinates":[-73.9927625,40.6985599],"type":"Point"},"name":"Heights Falafel"} +,{"_id":{"$oid":"55cba2476c522cafdb05533c"},"location":{"coordinates":[-73.9813735,40.7491583],"type":"Point"},"name":"Morgan Library"} +,{"_id":{"$oid":"55cba2476c522cafdb05533d"},"location":{"coordinates":[-73.80476019999999,40.7623597],"type":"Point"},"name":"Cheogajip"} +,{"_id":{"$oid":"55cba2476c522cafdb05533e"},"location":{"coordinates":[-73.9886248,40.7570673],"type":"Point"},"name":"Dallas Bbq"} +,{"_id":{"$oid":"55cba2476c522cafdb05533f"},"location":{"coordinates":[-73.9838089,40.7259627],"type":"Point"},"name":"Kazuza"} +,{"_id":{"$oid":"55cba2476c522cafdb055340"},"location":{"coordinates":[-73.993267,40.72693719999999],"type":"Point"},"name":"Great Jones Juice Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb055341"},"location":{"coordinates":[-73.78616199999999,40.707684],"type":"Point"},"name":"Tu Casa Bar \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055342"},"location":{"coordinates":[-74.0037923,40.7291902],"type":"Point"},"name":"Ditch Plains"} +,{"_id":{"$oid":"55cba2476c522cafdb055343"},"location":{"coordinates":[-74.00973630000001,40.7208529],"type":"Point"},"name":"Greenwich St Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb055344"},"location":{"coordinates":[-73.94879399999999,40.724222],"type":"Point"},"name":"Pyza Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055345"},"location":{"coordinates":[-73.83603699999999,40.707268],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb055346"},"location":{"coordinates":[-73.7959975,40.7375165],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb055347"},"location":{"coordinates":[-73.8698419,40.7494103],"type":"Point"},"name":"Dunkin' Donuts/Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb055348"},"location":{"coordinates":[-73.82032199999999,40.7096948],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb055349"},"location":{"coordinates":[-73.97076919999999,40.7954433],"type":"Point"},"name":"Blimpie"} +,{"_id":{"$oid":"55cba2476c522cafdb05534a"},"location":{"coordinates":[-73.87085019999999,40.7624907],"type":"Point"},"name":"Cafe Y Algo Mas"} +,{"_id":{"$oid":"55cba2476c522cafdb05534b"},"location":{"coordinates":[-73.9774178,40.7632429],"type":"Point"},"name":"K-Bap"} +,{"_id":{"$oid":"55cba2476c522cafdb05534c"},"location":{"coordinates":[-73.9033133,40.8587917],"type":"Point"},"name":"Elsa La Reina Del Chicharron 3"} +,{"_id":{"$oid":"55cba2476c522cafdb05534d"},"location":{"coordinates":[-73.9823739,40.7782086],"type":"Point"},"name":"Cafe 71"} +,{"_id":{"$oid":"55cba2476c522cafdb05534e"},"location":{"coordinates":[-73.986763,40.6697257],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb05534f"},"location":{"coordinates":[-73.915956,40.757788],"type":"Point"},"name":"Luna'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055350"},"location":{"coordinates":[-73.8077582,40.7633975],"type":"Point"},"name":"Mad For Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb055351"},"location":{"coordinates":[-74.0090051,40.7093658],"type":"Point"},"name":"Papa John'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055352"},"location":{"coordinates":[-73.869839,40.684074],"type":"Point"},"name":"New Peking House"} +,{"_id":{"$oid":"55cba2476c522cafdb055353"},"location":{"coordinates":[-74.18406,40.5655247],"type":"Point"},"name":"Tony'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb055354"},"location":{"coordinates":[-73.7149982,40.7457029],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb055355"},"location":{"coordinates":[-73.9782259,40.7785377],"type":"Point"},"name":"Wine And Roses Bar And Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055356"},"location":{"coordinates":[-73.9899806,40.6835987],"type":"Point"},"name":"Mario'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb055357"},"location":{"coordinates":[-73.92957,40.640676],"type":"Point"},"name":"Rag Top"} +,{"_id":{"$oid":"55cba2476c522cafdb055358"},"location":{"coordinates":[-74.01143259999999,40.708882],"type":"Point"},"name":"Trinity Place Bar \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055359"},"location":{"coordinates":[-73.7561702,40.747426],"type":"Point"},"name":"Dunkin Donuts, Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb05535a"},"location":{"coordinates":[-73.7862866,40.7633479],"type":"Point"},"name":"Dunkin' Donuts, Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb05535b"},"location":{"coordinates":[-73.7994769,40.7229711],"type":"Point"},"name":"Dunkin' Donuts, Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb05535c"},"location":{"coordinates":[-73.730986,40.727562],"type":"Point"},"name":"By The Slice"} +,{"_id":{"$oid":"55cba2476c522cafdb05535d"},"location":{"coordinates":[-73.98267779999999,40.7316471],"type":"Point"},"name":"Salt \u0026 Pepper"} +,{"_id":{"$oid":"55cba2476c522cafdb05535e"},"location":{"coordinates":[-73.955432,40.772306],"type":"Point"},"name":"Vermicelli Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05535f"},"location":{"coordinates":[-73.73662390000001,40.7177555],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb055360"},"location":{"coordinates":[-74.0057191,40.7391397],"type":"Point"},"name":"Fatty Crab"} +,{"_id":{"$oid":"55cba2476c522cafdb055361"},"location":{"coordinates":[-73.9077587,40.757493],"type":"Point"},"name":"Globe Coffee Shop \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055362"},"location":{"coordinates":[-73.74535329999999,40.7298671],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb055363"},"location":{"coordinates":[-73.8555068,40.7513578],"type":"Point"},"name":"Taste Of Dolly'S Pizzeria \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055364"},"location":{"coordinates":[-74.1598231,40.5457057],"type":"Point"},"name":"China Chalet"} +,{"_id":{"$oid":"55cba2476c522cafdb055365"},"location":{"coordinates":[-73.9804,40.663908],"type":"Point"},"name":"12Th Street Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb055366"},"location":{"coordinates":[-73.9434227,40.7148095],"type":"Point"},"name":"Harefield Road Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb055367"},"location":{"coordinates":[-73.9814119,40.7444978],"type":"Point"},"name":"Vezzo"} +,{"_id":{"$oid":"55cba2476c522cafdb055368"},"location":{"coordinates":[-73.9838781,40.7258509],"type":"Point"},"name":"Hayaty"} +,{"_id":{"$oid":"55cba2476c522cafdb055369"},"location":{"coordinates":[-73.8126238,40.7921643],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb05536a"},"location":{"coordinates":[-73.9717285,40.7917717],"type":"Point"},"name":"Gennaro Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05536b"},"location":{"coordinates":[-73.9908861,40.7611817],"type":"Point"},"name":"Riposo 46"} +,{"_id":{"$oid":"55cba2476c522cafdb05536c"},"location":{"coordinates":[-73.866097,40.831649],"type":"Point"},"name":"Las Camelias Bar \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05536d"},"location":{"coordinates":[-74.11229569999999,40.5718411],"type":"Point"},"name":"Fresh Tortillas \u0026 Tacos"} +,{"_id":{"$oid":"55cba2476c522cafdb05536e"},"location":{"coordinates":[-73.8333313,40.7156771],"type":"Point"},"name":"Queen'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05536f"},"location":{"coordinates":[-73.8082507,40.7026151],"type":"Point"},"name":"El Sol De Mexico Deli Grocery"} +,{"_id":{"$oid":"55cba2476c522cafdb055370"},"location":{"coordinates":[-73.980167,40.742358],"type":"Point"},"name":"Tonic East"} +,{"_id":{"$oid":"55cba2476c522cafdb055371"},"location":{"coordinates":[-73.8673895,40.8547917],"type":"Point"},"name":"Dunkin' Donuts, Pizza Hut, Taco Bell"} +,{"_id":{"$oid":"55cba2476c522cafdb055372"},"location":{"coordinates":[-73.9020779,40.8185592],"type":"Point"},"name":"Kaylah'S Hut"} +,{"_id":{"$oid":"55cba2476c522cafdb055373"},"location":{"coordinates":[-73.762739,40.761623],"type":"Point"},"name":"Sam Won Gahk"} +,{"_id":{"$oid":"55cba2476c522cafdb055374"},"location":{"coordinates":[-73.7078381,40.7370838],"type":"Point"},"name":"Taco Bell"} +,{"_id":{"$oid":"55cba2476c522cafdb055375"},"location":{"coordinates":[-73.9838469,40.7304796],"type":"Point"},"name":"S'Mac"} +,{"_id":{"$oid":"55cba2476c522cafdb055376"},"location":{"coordinates":[-73.96852799999999,40.753806],"type":"Point"},"name":"Yama"} +,{"_id":{"$oid":"55cba2476c522cafdb055377"},"location":{"coordinates":[-74.0174973,40.641357],"type":"Point"},"name":"El Yayo Nuevo Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055378"},"location":{"coordinates":[-74.0024316,40.7075873],"type":"Point"},"name":"Bin No 220"} +,{"_id":{"$oid":"55cba2476c522cafdb055379"},"location":{"coordinates":[-73.991753,40.71884499999999],"type":"Point"},"name":"Panade"} +,{"_id":{"$oid":"55cba2476c522cafdb05537a"},"location":{"coordinates":[-73.9886598,40.7565811],"type":"Point"},"name":"Hilton Times Square"} +,{"_id":{"$oid":"55cba2476c522cafdb05537b"},"location":{"coordinates":[-73.9282399,40.8513871],"type":"Point"},"name":"Lake Como Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05537c"},"location":{"coordinates":[-73.9834817,40.7666805],"type":"Point"},"name":"Cafe 57"} +,{"_id":{"$oid":"55cba2476c522cafdb05537d"},"location":{"coordinates":[-73.8289595,40.7562013],"type":"Point"},"name":"Fay Da Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb05537e"},"location":{"coordinates":[-73.9831882,40.7684252],"type":"Point"},"name":"Time Warner Conference Center"} +,{"_id":{"$oid":"55cba2476c522cafdb05537f"},"location":{"coordinates":[-73.94632659999999,40.7115979],"type":"Point"},"name":"Jerry'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb055380"},"location":{"coordinates":[-73.94650109999999,40.680409],"type":"Point"},"name":"Tastee Pattee"} +,{"_id":{"$oid":"55cba2476c522cafdb055381"},"location":{"coordinates":[-73.9930526,40.7305539],"type":"Point"},"name":"Wichcraft"} +,{"_id":{"$oid":"55cba2476c522cafdb055382"},"location":{"coordinates":[-74.0080725,40.7073797],"type":"Point"},"name":"Financier Patisserie"} +,{"_id":{"$oid":"55cba2476c522cafdb055383"},"location":{"coordinates":[-74.0097248,40.704597],"type":"Point"},"name":"Harry'S Cafe/Harry'S Steak"} +,{"_id":{"$oid":"55cba2476c522cafdb055384"},"location":{"coordinates":[-73.9773439,40.7590054],"type":"Point"},"name":"Bessemer Trust Co"} +,{"_id":{"$oid":"55cba2476c522cafdb055385"},"location":{"coordinates":[-73.8484462,40.8208964],"type":"Point"},"name":"Golden Palace Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055386"},"location":{"coordinates":[-73.97889459999999,40.7556905],"type":"Point"},"name":"Wichcraft"} +,{"_id":{"$oid":"55cba2476c522cafdb055387"},"location":{"coordinates":[-74.0077336,40.7165655],"type":"Point"},"name":"Rosan Jin"} +,{"_id":{"$oid":"55cba2476c522cafdb055388"},"location":{"coordinates":[-73.917464,40.809948],"type":"Point"},"name":"Brook Avenue Deli \u0026 Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb055389"},"location":{"coordinates":[-73.999757,40.645246],"type":"Point"},"name":"Great Dragon Shao"} +,{"_id":{"$oid":"55cba2476c522cafdb05538a"},"location":{"coordinates":[-73.9201583,40.66154179999999],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb05538b"},"location":{"coordinates":[-73.8620717,40.8309484],"type":"Point"},"name":"New General Tsos Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05538c"},"location":{"coordinates":[-73.83770919999999,40.766091],"type":"Point"},"name":"Sparky'S Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb05538d"},"location":{"coordinates":[-74.0247845,40.6236868],"type":"Point"},"name":"Le Sajj Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05538e"},"location":{"coordinates":[-73.8491672,40.8468095],"type":"Point"},"name":"Quality Chef"} +,{"_id":{"$oid":"55cba2476c522cafdb05538f"},"location":{"coordinates":[-74.0096645,40.72125190000001],"type":"Point"},"name":"Wolfgang'S Steakhouse"} +,{"_id":{"$oid":"55cba2476c522cafdb055390"},"location":{"coordinates":[-73.9700383,40.7594916],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb055391"},"location":{"coordinates":[-73.9526052,40.7592235],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb055392"},"location":{"coordinates":[-73.9398839,40.84143539999999],"type":"Point"},"name":"Mike'S Bagels"} +,{"_id":{"$oid":"55cba2476c522cafdb055393"},"location":{"coordinates":[-73.83825,40.580973],"type":"Point"},"name":"O'Sake Japanese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055394"},"location":{"coordinates":[-73.9137513,40.7748233],"type":"Point"},"name":"Bangkok Tasty"} +,{"_id":{"$oid":"55cba2476c522cafdb055395"},"location":{"coordinates":[-73.985129,40.617573],"type":"Point"},"name":"Jj Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb055396"},"location":{"coordinates":[-73.9263368,40.6628648],"type":"Point"},"name":"Jam Rock"} +,{"_id":{"$oid":"55cba2476c522cafdb055397"},"location":{"coordinates":[-74.000534,40.738596],"type":"Point"},"name":"Dirty Bird To-Go"} +,{"_id":{"$oid":"55cba2476c522cafdb055398"},"location":{"coordinates":[-73.7701396,40.6835894],"type":"Point"},"name":"Farm Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb055399"},"location":{"coordinates":[-73.90172199999999,40.8201806],"type":"Point"},"name":"El Despertar Marlene"} +,{"_id":{"$oid":"55cba2476c522cafdb05539a"},"location":{"coordinates":[-73.8472371,40.8879388],"type":"Point"},"name":"Mandarin House I"} +,{"_id":{"$oid":"55cba2476c522cafdb05539b"},"location":{"coordinates":[-73.96269,40.6068852],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb05539c"},"location":{"coordinates":[-73.96548899999999,40.76632],"type":"Point"},"name":"Gourmet Bagel"} +,{"_id":{"$oid":"55cba2476c522cafdb05539d"},"location":{"coordinates":[-73.9908027,40.715502],"type":"Point"},"name":"Benton"} +,{"_id":{"$oid":"55cba2476c522cafdb05539e"},"location":{"coordinates":[-73.993053,40.68253199999999],"type":"Point"},"name":"Zombie Hut"} +,{"_id":{"$oid":"55cba2476c522cafdb05539f"},"location":{"coordinates":[-73.8544477,40.7112971],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0553a0"},"location":{"coordinates":[-73.99928609999999,40.7145687],"type":"Point"},"name":"Shan Dong Dumpling"} +,{"_id":{"$oid":"55cba2476c522cafdb0553a1"},"location":{"coordinates":[-74.1645272,40.5908495],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0553a2"},"location":{"coordinates":[-73.869945,40.7704394],"type":"Point"},"name":"Figs Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0553a3"},"location":{"coordinates":[-73.9586455,40.7716175],"type":"Point"},"name":"Fulton"} +,{"_id":{"$oid":"55cba2476c522cafdb0553a4"},"location":{"coordinates":[-73.8707505,40.7517612],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb0553a5"},"location":{"coordinates":[-74.1660553,40.5823983],"type":"Point"},"name":"Sarku Japan"} +,{"_id":{"$oid":"55cba2476c522cafdb0553a6"},"location":{"coordinates":[-73.8198685,40.6060537],"type":"Point"},"name":"Ruffles Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0553a7"},"location":{"coordinates":[-73.9244643,40.8279347],"type":"Point"},"name":"Vega Alta Sports Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0553a8"},"location":{"coordinates":[-73.7732238,40.7671285],"type":"Point"},"name":"Sushi Bell"} +,{"_id":{"$oid":"55cba2476c522cafdb0553a9"},"location":{"coordinates":[-74.0125284,40.6426331],"type":"Point"},"name":"Cafe Con Pan Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0553aa"},"location":{"coordinates":[-73.9868053,40.7639648],"type":"Point"},"name":"Bamboo 52"} +,{"_id":{"$oid":"55cba2476c522cafdb0553ab"},"location":{"coordinates":[-73.967902,40.7615678],"type":"Point"},"name":"Le Cirque"} +,{"_id":{"$oid":"55cba2476c522cafdb0553ac"},"location":{"coordinates":[-73.84893029999999,40.7099794],"type":"Point"},"name":"Danny Brown Wine Bar \u0026 Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0553ad"},"location":{"coordinates":[-73.9252192,40.8619743],"type":"Point"},"name":"809 Grill \u0026 Bar Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0553ae"},"location":{"coordinates":[-73.8739659,40.7769271],"type":"Point"},"name":"Taste Of Artichoke"} +,{"_id":{"$oid":"55cba2476c522cafdb0553af"},"location":{"coordinates":[-73.8739659,40.7769271],"type":"Point"},"name":"Cibo Express Gourmet Markets 2"} +,{"_id":{"$oid":"55cba2476c522cafdb0553b0"},"location":{"coordinates":[-73.8739659,40.7769271],"type":"Point"},"name":"Xun Su"} +,{"_id":{"$oid":"55cba2476c522cafdb0553b1"},"location":{"coordinates":[-73.897071,40.82223889999999],"type":"Point"},"name":"Distribuidora San Marcos"} +,{"_id":{"$oid":"55cba2476c522cafdb0553b2"},"location":{"coordinates":[-73.90234319999999,40.7048719],"type":"Point"},"name":"Bosna Express"} +,{"_id":{"$oid":"55cba2476c522cafdb0553b3"},"location":{"coordinates":[-74.0105051,40.7040805],"type":"Point"},"name":"Ruben'S Empanadas"} +,{"_id":{"$oid":"55cba2476c522cafdb0553b4"},"location":{"coordinates":[-74.03461829999999,40.6386249],"type":"Point"},"name":"Bay Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb0553b5"},"location":{"coordinates":[-73.9075318,40.7600855],"type":"Point"},"name":"Kings Wok I"} +,{"_id":{"$oid":"55cba2476c522cafdb0553b6"},"location":{"coordinates":[-73.9951705,40.7195173],"type":"Point"},"name":"Tropical 128"} +,{"_id":{"$oid":"55cba2476c522cafdb0553b7"},"location":{"coordinates":[-74.0135458,40.7034442],"type":"Point"},"name":"Hughes Hubbard \u0026 Reed Llp"} +,{"_id":{"$oid":"55cba2476c522cafdb0553b8"},"location":{"coordinates":[-74.00422569999999,40.6813194],"type":"Point"},"name":"Jalopy"} +,{"_id":{"$oid":"55cba2476c522cafdb0553b9"},"location":{"coordinates":[-74.22928100000001,40.5300991],"type":"Point"},"name":"Applebee'S Neighborhood Grill \u0026 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0553ba"},"location":{"coordinates":[-73.829437,40.757178],"type":"Point"},"name":"Chen Du Tian Fu"} +,{"_id":{"$oid":"55cba2476c522cafdb0553bb"},"location":{"coordinates":[-73.9819344,40.7512565],"type":"Point"},"name":"Berger'S On The Go"} +,{"_id":{"$oid":"55cba2476c522cafdb0553bc"},"location":{"coordinates":[-73.9807393,40.7557625],"type":"Point"},"name":"Milk N' Honey"} +,{"_id":{"$oid":"55cba2476c522cafdb0553bd"},"location":{"coordinates":[-73.87443999999999,40.763095],"type":"Point"},"name":"Lucky Star Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0553be"},"location":{"coordinates":[-73.95155799999999,40.78722399999999],"type":"Point"},"name":"Winston \u0026 Tee Express Jerk Chicken And Caribbean"} +,{"_id":{"$oid":"55cba2476c522cafdb0553bf"},"location":{"coordinates":[-73.8690515,40.7094364],"type":"Point"},"name":"Regal Cinema 8 (Atlas Park Stadium)"} +,{"_id":{"$oid":"55cba2476c522cafdb0553c0"},"location":{"coordinates":[-73.9572305,40.6875218],"type":"Point"},"name":"Borough Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0553c1"},"location":{"coordinates":[-73.9364406,40.68986280000001],"type":"Point"},"name":"Berts Restaurant \u0026 Catering Services"} +,{"_id":{"$oid":"55cba2476c522cafdb0553c2"},"location":{"coordinates":[-73.98676499999999,40.7479439],"type":"Point"},"name":"Chorus Music Studio/ Chorus Karaoke Lounge Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0553c3"},"location":{"coordinates":[-73.9164153,40.77324230000001],"type":"Point"},"name":"New Good One"} +,{"_id":{"$oid":"55cba2476c522cafdb0553c4"},"location":{"coordinates":[-73.986646,40.7264594],"type":"Point"},"name":"Lan Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0553c5"},"location":{"coordinates":[-73.9342442,40.8486483],"type":"Point"},"name":"La Casa Del Mofongo"} +,{"_id":{"$oid":"55cba2476c522cafdb0553c6"},"location":{"coordinates":[-74.004762,40.707361],"type":"Point"},"name":"Plaza Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb0553c7"},"location":{"coordinates":[-73.8778215,40.7129044],"type":"Point"},"name":"Dolci Bake Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb0553c8"},"location":{"coordinates":[-74.0055508,40.7078424],"type":"Point"},"name":"CafÉ Gusto"} +,{"_id":{"$oid":"55cba2476c522cafdb0553c9"},"location":{"coordinates":[-73.96178090000001,40.6937164],"type":"Point"},"name":"Tepango Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0553ca"},"location":{"coordinates":[-73.9781885,40.57433839999999],"type":"Point"},"name":"Deno'S Sweet Shoppe"} +,{"_id":{"$oid":"55cba2476c522cafdb0553cb"},"location":{"coordinates":[-73.8758026,40.7061056],"type":"Point"},"name":"Johnny Rockets"} +,{"_id":{"$oid":"55cba2476c522cafdb0553cc"},"location":{"coordinates":[-74.0089466,40.7201545],"type":"Point"},"name":"Mr. Chow Tribecca"} +,{"_id":{"$oid":"55cba2476c522cafdb0553cd"},"location":{"coordinates":[-73.9815764,40.7576629],"type":"Point"},"name":"El Rincon Del Sabor"} +,{"_id":{"$oid":"55cba2476c522cafdb0553ce"},"location":{"coordinates":[-73.96061929999999,40.7144582],"type":"Point"},"name":"Snacky"} +,{"_id":{"$oid":"55cba2476c522cafdb0553cf"},"location":{"coordinates":[-73.9863818,40.7477052],"type":"Point"},"name":"Pocha 32"} +,{"_id":{"$oid":"55cba2476c522cafdb0553d0"},"location":{"coordinates":[-73.9894061,40.7310046],"type":"Point"},"name":"Sundaes And Cones"} +,{"_id":{"$oid":"55cba2476c522cafdb0553d1"},"location":{"coordinates":[-74.003145,40.7318988],"type":"Point"},"name":"Blind Tiger"} +,{"_id":{"$oid":"55cba2476c522cafdb0553d2"},"location":{"coordinates":[-73.8683001,40.7094366],"type":"Point"},"name":"California Pizza Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0553d3"},"location":{"coordinates":[-73.92003500000001,40.839911],"type":"Point"},"name":"E.M.E.L.Y Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb0553d4"},"location":{"coordinates":[-73.790688,40.7257013],"type":"Point"},"name":"Cold Stone Creamery"} +,{"_id":{"$oid":"55cba2476c522cafdb0553d5"},"location":{"coordinates":[-73.92072329999999,40.76683010000001],"type":"Point"},"name":"Bagelberry"} +,{"_id":{"$oid":"55cba2476c522cafdb0553d6"},"location":{"coordinates":[-73.96636699999999,40.757361],"type":"Point"},"name":"Lenny'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0553d7"},"location":{"coordinates":[-73.983964,40.667763],"type":"Point"},"name":"Colson Patisserie"} +,{"_id":{"$oid":"55cba2476c522cafdb0553d8"},"location":{"coordinates":[-73.9227456,40.8394499],"type":"Point"},"name":"El Nuevo Encuentro Bar Corp"} +,{"_id":{"$oid":"55cba2476c522cafdb0553d9"},"location":{"coordinates":[-74.1920638,40.5906509],"type":"Point"},"name":"El Pollo Ii Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0553da"},"location":{"coordinates":[-74.0052123,40.7322175],"type":"Point"},"name":"The Little Owl"} +,{"_id":{"$oid":"55cba2476c522cafdb0553db"},"location":{"coordinates":[-73.990844,40.761319],"type":"Point"},"name":"Vintner Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0553dc"},"location":{"coordinates":[-73.8831153,40.74970829999999],"type":"Point"},"name":"Thomas Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0553dd"},"location":{"coordinates":[-73.9076963,40.6686124],"type":"Point"},"name":"New China Pavilion"} +,{"_id":{"$oid":"55cba2476c522cafdb0553de"},"location":{"coordinates":[-73.8677329,40.770493],"type":"Point"},"name":"Figs"} +,{"_id":{"$oid":"55cba2476c522cafdb0553df"},"location":{"coordinates":[-73.8052028,40.7627613],"type":"Point"},"name":"Hansol Nutrition Center"} +,{"_id":{"$oid":"55cba2476c522cafdb0553e0"},"location":{"coordinates":[-73.9779544,40.77824740000001],"type":"Point"},"name":"Indigo Indian Bistro"} +,{"_id":{"$oid":"55cba2476c522cafdb0553e1"},"location":{"coordinates":[-73.8639005,40.8458468],"type":"Point"},"name":"Primavera Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb0553e2"},"location":{"coordinates":[-74.00486300000001,40.720672],"type":"Point"},"name":"Tataki Japanese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0553e3"},"location":{"coordinates":[-73.98788809999999,40.7393757],"type":"Point"},"name":"Via Emilia"} +,{"_id":{"$oid":"55cba2476c522cafdb0553e4"},"location":{"coordinates":[-73.9532758,40.806208],"type":"Point"},"name":"Billie'S Black Bar Lounge And Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0553e5"},"location":{"coordinates":[-73.98363259999999,40.6770708],"type":"Point"},"name":"Yomaris Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0553e6"},"location":{"coordinates":[-74.0036582,40.7221705],"type":"Point"},"name":"Papatzul"} +,{"_id":{"$oid":"55cba2476c522cafdb0553e7"},"location":{"coordinates":[-73.97819539999999,40.6753277],"type":"Point"},"name":"Hunan Delight"} +,{"_id":{"$oid":"55cba2476c522cafdb0553e8"},"location":{"coordinates":[-73.9512757,40.7707045],"type":"Point"},"name":"Hunan Delight Matsuya"} +,{"_id":{"$oid":"55cba2476c522cafdb0553e9"},"location":{"coordinates":[-73.9910744,40.7343495],"type":"Point"},"name":"Max Brenner"} +,{"_id":{"$oid":"55cba2476c522cafdb0553ea"},"location":{"coordinates":[-73.92582759999999,40.8255104],"type":"Point"},"name":"Happy Wok"} +,{"_id":{"$oid":"55cba2476c522cafdb0553eb"},"location":{"coordinates":[-73.9781885,40.57433839999999],"type":"Point"},"name":"Deno'S Snack Bar/Famiglia"} +,{"_id":{"$oid":"55cba2476c522cafdb0553ec"},"location":{"coordinates":[-73.98093010000001,40.7642925],"type":"Point"},"name":"Park Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0553ed"},"location":{"coordinates":[-73.867406,40.68477499999999],"type":"Point"},"name":"Carro Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0553ee"},"location":{"coordinates":[-73.937118,40.750933],"type":"Point"},"name":"Green Tea Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb0553ef"},"location":{"coordinates":[-73.97172789999999,40.749838],"type":"Point"},"name":"Calico Jacks Cantina"} +,{"_id":{"$oid":"55cba2476c522cafdb0553f0"},"location":{"coordinates":[-74.00481479999999,40.7408932],"type":"Point"},"name":"Scarpetta"} +,{"_id":{"$oid":"55cba2476c522cafdb0553f1"},"location":{"coordinates":[-73.95734,40.770682],"type":"Point"},"name":"Zucchero E Pomodori"} +,{"_id":{"$oid":"55cba2476c522cafdb0553f2"},"location":{"coordinates":[-73.9794237,40.7278817],"type":"Point"},"name":"Barbone"} +,{"_id":{"$oid":"55cba2476c522cafdb0553f3"},"location":{"coordinates":[-74.012321,40.678116],"type":"Point"},"name":"A\u0026R Hot Bagels"} +,{"_id":{"$oid":"55cba2476c522cafdb0553f4"},"location":{"coordinates":[-73.9793327,40.7350122],"type":"Point"},"name":"Vamos"} +,{"_id":{"$oid":"55cba2476c522cafdb0553f5"},"location":{"coordinates":[-73.941632,40.798309],"type":"Point"},"name":"Sams Famous Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0553f6"},"location":{"coordinates":[-73.9998506,40.7221381],"type":"Point"},"name":"Drive 495"} +,{"_id":{"$oid":"55cba2476c522cafdb0553f7"},"location":{"coordinates":[-73.98513799999999,40.580302],"type":"Point"},"name":"Pal'S Hero Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb0553f8"},"location":{"coordinates":[-73.9900614,40.6876405],"type":"Point"},"name":"Ki Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb0553f9"},"location":{"coordinates":[-73.8235602,40.7761588],"type":"Point"},"name":"Gino'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb0553fa"},"location":{"coordinates":[-73.9934102,40.75405809999999],"type":"Point"},"name":"Staghorn Steakhouse"} +,{"_id":{"$oid":"55cba2476c522cafdb0553fb"},"location":{"coordinates":[-74.07741659999999,40.6420171],"type":"Point"},"name":"Rispoli Pastry Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb0553fc"},"location":{"coordinates":[-73.92507049999999,40.8642522],"type":"Point"},"name":"El Rancho Los Compadres"} +,{"_id":{"$oid":"55cba2476c522cafdb0553fd"},"location":{"coordinates":[-73.9431166,40.70526419999999],"type":"Point"},"name":"Happy Garden Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0553fe"},"location":{"coordinates":[-73.9693908,40.6772707],"type":"Point"},"name":"Joyce Bakeshop"} +,{"_id":{"$oid":"55cba2476c522cafdb0553ff"},"location":{"coordinates":[-73.88557449999999,40.7121632],"type":"Point"},"name":"Arby'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055400"},"location":{"coordinates":[-73.83056920000001,40.6599069],"type":"Point"},"name":"New Fuleen Palace Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055401"},"location":{"coordinates":[-73.98519809999999,40.7281981],"type":"Point"},"name":"East Village Pizza And Kebab"} +,{"_id":{"$oid":"55cba2476c522cafdb055402"},"location":{"coordinates":[-73.96490399999999,40.756099],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055403"},"location":{"coordinates":[-73.9778118,40.7561728],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055404"},"location":{"coordinates":[-74.00109499999999,40.730751],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055405"},"location":{"coordinates":[-73.9674625,40.673597],"type":"Point"},"name":"Cheryl'S Global Soul"} +,{"_id":{"$oid":"55cba2476c522cafdb055406"},"location":{"coordinates":[-73.87245999999999,40.713021],"type":"Point"},"name":"Uvarara"} +,{"_id":{"$oid":"55cba2476c522cafdb055407"},"location":{"coordinates":[-73.96598139999999,40.6306868],"type":"Point"},"name":"Gourmet Sweets"} +,{"_id":{"$oid":"55cba2476c522cafdb055408"},"location":{"coordinates":[-73.92203359999999,40.8418947],"type":"Point"},"name":"L' Patio Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055409"},"location":{"coordinates":[-73.98177989999999,40.7252895],"type":"Point"},"name":"Caracas Arepa Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05540a"},"location":{"coordinates":[-73.98717649999999,40.7600569],"type":"Point"},"name":"The Mean Fiddler"} +,{"_id":{"$oid":"55cba2476c522cafdb05540b"},"location":{"coordinates":[-73.97877989999999,40.7286618],"type":"Point"},"name":"East Village Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05540c"},"location":{"coordinates":[-73.9231288,40.8176743],"type":"Point"},"name":"Cafe Lincoln"} +,{"_id":{"$oid":"55cba2476c522cafdb05540d"},"location":{"coordinates":[-73.8755829,40.7427526],"type":"Point"},"name":"Jugos Prontito Y Algo Mas"} +,{"_id":{"$oid":"55cba2476c522cafdb05540e"},"location":{"coordinates":[-73.9516932,40.71109080000001],"type":"Point"},"name":"Garden Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb05540f"},"location":{"coordinates":[-73.8321036,40.8845714],"type":"Point"},"name":"Mingles Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055410"},"location":{"coordinates":[-73.95273879999999,40.7276009],"type":"Point"},"name":"Baker'S Dozen"} +,{"_id":{"$oid":"55cba2476c522cafdb055411"},"location":{"coordinates":[-73.92564610000001,40.86259949999999],"type":"Point"},"name":"Dunkin Donuts, Baskins Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb055412"},"location":{"coordinates":[-73.8477116,40.7236856],"type":"Point"},"name":"Forest Hill Bagel"} +,{"_id":{"$oid":"55cba2476c522cafdb055413"},"location":{"coordinates":[-73.9761357,40.7620267],"type":"Point"},"name":"Certe Catering"} +,{"_id":{"$oid":"55cba2476c522cafdb055414"},"location":{"coordinates":[-73.97952959999999,40.5748994],"type":"Point"},"name":"Old Fashion Coney Island Food"} +,{"_id":{"$oid":"55cba2476c522cafdb055415"},"location":{"coordinates":[-73.9162381,40.6194326],"type":"Point"},"name":"Sosaku Japanese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055416"},"location":{"coordinates":[-73.938706,40.797709],"type":"Point"},"name":"Mojito'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055417"},"location":{"coordinates":[-73.994511,40.738636],"type":"Point"},"name":"Petite Abeille"} +,{"_id":{"$oid":"55cba2476c522cafdb055418"},"location":{"coordinates":[-73.9928444,40.6829391],"type":"Point"},"name":"Provence En Boite"} +,{"_id":{"$oid":"55cba2476c522cafdb055419"},"location":{"coordinates":[-73.8252401,40.6899391],"type":"Point"},"name":"Punjabi Dhaba Catering \u0026 Sweets"} +,{"_id":{"$oid":"55cba2476c522cafdb05541a"},"location":{"coordinates":[-73.8739128,40.73324059999999],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb05541b"},"location":{"coordinates":[-73.9930281,40.7481179],"type":"Point"},"name":"Dake Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb05541c"},"location":{"coordinates":[-73.8836348,40.7472426],"type":"Point"},"name":"Tulcingo Restaurant \u0026 Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb05541d"},"location":{"coordinates":[-73.9085175,40.7776319],"type":"Point"},"name":"Thai Elephant Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05541e"},"location":{"coordinates":[-73.9802696,40.7800588],"type":"Point"},"name":"Hummus Place"} +,{"_id":{"$oid":"55cba2476c522cafdb05541f"},"location":{"coordinates":[-74.0313962,40.6235252],"type":"Point"},"name":"Leo Casa Calamari"} +,{"_id":{"$oid":"55cba2476c522cafdb055420"},"location":{"coordinates":[-73.9799736,40.6818287],"type":"Point"},"name":"Flatbush Farms"} +,{"_id":{"$oid":"55cba2476c522cafdb055421"},"location":{"coordinates":[-74.01018429999999,40.7157873],"type":"Point"},"name":"Kitchenette"} +,{"_id":{"$oid":"55cba2476c522cafdb055422"},"location":{"coordinates":[-73.8226588,40.754257],"type":"Point"},"name":"Golden Palace Gourmet"} +,{"_id":{"$oid":"55cba2476c522cafdb055423"},"location":{"coordinates":[-73.9591911,40.7672061],"type":"Point"},"name":"New Beijing Wok"} +,{"_id":{"$oid":"55cba2476c522cafdb055424"},"location":{"coordinates":[-73.8739659,40.7769271],"type":"Point"},"name":"Custom Burgers"} +,{"_id":{"$oid":"55cba2476c522cafdb055425"},"location":{"coordinates":[-73.8739659,40.7769271],"type":"Point"},"name":"Cotto"} +,{"_id":{"$oid":"55cba2476c522cafdb055426"},"location":{"coordinates":[-73.8739659,40.7769271],"type":"Point"},"name":"Victory Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb055427"},"location":{"coordinates":[-73.8739659,40.7769271],"type":"Point"},"name":"Worldbean"} +,{"_id":{"$oid":"55cba2476c522cafdb055428"},"location":{"coordinates":[-73.80226549999999,40.7800736],"type":"Point"},"name":"Aphrodites Sweets"} +,{"_id":{"$oid":"55cba2476c522cafdb055429"},"location":{"coordinates":[-73.8706606,40.7342757],"type":"Point"},"name":"Sarku Japan"} +,{"_id":{"$oid":"55cba2476c522cafdb05542a"},"location":{"coordinates":[-73.8119202,40.6930677],"type":"Point"},"name":"Jamaica Fish Market"} +,{"_id":{"$oid":"55cba2476c522cafdb05542b"},"location":{"coordinates":[-73.938406,40.799584],"type":"Point"},"name":"Polash Indian Cuisine Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05542c"},"location":{"coordinates":[-73.86223269999999,40.8487447],"type":"Point"},"name":"F\u0026J'S Pine Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05542d"},"location":{"coordinates":[-73.98812579999999,40.7440395],"type":"Point"},"name":"230 Fifth"} +,{"_id":{"$oid":"55cba2476c522cafdb05542e"},"location":{"coordinates":[-73.95591399999999,40.7662842],"type":"Point"},"name":"Matsu Ii Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb05542f"},"location":{"coordinates":[-73.93728,40.8491223],"type":"Point"},"name":"Papa John'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055430"},"location":{"coordinates":[-73.8906779,40.6762252],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055431"},"location":{"coordinates":[-73.86980249999999,40.7337861],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055432"},"location":{"coordinates":[-74.0664876,40.6152616],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb055433"},"location":{"coordinates":[-74.0146122,40.64081849999999],"type":"Point"},"name":"Sin Fronteras Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055434"},"location":{"coordinates":[-73.9797456,40.7274188],"type":"Point"},"name":"Eleven B"} +,{"_id":{"$oid":"55cba2476c522cafdb055435"},"location":{"coordinates":[-73.985452,40.5812659],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb055436"},"location":{"coordinates":[-73.983693,40.749076],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb055437"},"location":{"coordinates":[-73.9940816,40.6866724],"type":"Point"},"name":"Layla Jones"} +,{"_id":{"$oid":"55cba2476c522cafdb055438"},"location":{"coordinates":[-73.93467489999999,40.8519104],"type":"Point"},"name":"21 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb055439"},"location":{"coordinates":[-73.988908,40.728814],"type":"Point"},"name":"Mamoun'S Falafel"} +,{"_id":{"$oid":"55cba2476c522cafdb05543a"},"location":{"coordinates":[-73.7787517,40.7794295],"type":"Point"},"name":"Loews Theatres"} +,{"_id":{"$oid":"55cba2476c522cafdb05543b"},"location":{"coordinates":[-73.9774881,40.7867071],"type":"Point"},"name":"Amc Theatres 84Th Street"} +,{"_id":{"$oid":"55cba2476c522cafdb05543c"},"location":{"coordinates":[-73.9816591,40.7747833],"type":"Point"},"name":"Amc Theatres Lincoln Square"} +,{"_id":{"$oid":"55cba2476c522cafdb05543d"},"location":{"coordinates":[-73.981115,40.64234],"type":"Point"},"name":"El Mirador Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05543e"},"location":{"coordinates":[-73.9834817,40.7666805],"type":"Point"},"name":"Hearst Corporation Edr"} +,{"_id":{"$oid":"55cba2476c522cafdb05543f"},"location":{"coordinates":[-73.979112,40.612778],"type":"Point"},"name":"Djerdan"} +,{"_id":{"$oid":"55cba2476c522cafdb055440"},"location":{"coordinates":[-74.014524,40.640676],"type":"Point"},"name":"Taco Matamoros"} +,{"_id":{"$oid":"55cba2476c522cafdb055441"},"location":{"coordinates":[-74.07799700000001,40.6271181],"type":"Point"},"name":"Best Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb055442"},"location":{"coordinates":[-73.9826412,40.7655269],"type":"Point"},"name":"Basso56"} +,{"_id":{"$oid":"55cba2476c522cafdb055443"},"location":{"coordinates":[-73.9080194,40.9113588],"type":"Point"},"name":"Chartwells At College Of Mount St. Vincent-Benedict"} +,{"_id":{"$oid":"55cba2476c522cafdb055444"},"location":{"coordinates":[-73.830612,40.758924],"type":"Point"},"name":"Curry Leaves Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055445"},"location":{"coordinates":[-73.94991,40.65116],"type":"Point"},"name":"Chen Kong Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055446"},"location":{"coordinates":[-73.9834817,40.7666805],"type":"Point"},"name":"Hearst Good Housekeeping Institute"} +,{"_id":{"$oid":"55cba2476c522cafdb055447"},"location":{"coordinates":[-73.9702105,40.7572389],"type":"Point"},"name":"Chop'T"} +,{"_id":{"$oid":"55cba2476c522cafdb055448"},"location":{"coordinates":[-73.97791420000001,40.72582360000001],"type":"Point"},"name":"Royale"} +,{"_id":{"$oid":"55cba2476c522cafdb055449"},"location":{"coordinates":[-73.9813751,40.6755353],"type":"Point"},"name":"5Th Avenue Bageltique Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05544a"},"location":{"coordinates":[-74.0787309,40.6384271],"type":"Point"},"name":"Taqueria El Gallo Azteca"} +,{"_id":{"$oid":"55cba2476c522cafdb05544b"},"location":{"coordinates":[-73.9105762,40.61755309999999],"type":"Point"},"name":"China Kettle Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05544c"},"location":{"coordinates":[-73.99352,40.719504],"type":"Point"},"name":"Home Sweet Home"} +,{"_id":{"$oid":"55cba2476c522cafdb05544d"},"location":{"coordinates":[-73.92299489999999,40.7659337],"type":"Point"},"name":"Athens El Grill Restaurant \u0026 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05544e"},"location":{"coordinates":[-73.9080194,40.9113588],"type":"Point"},"name":"Chartwells @ College Of Mount St. Vincent - Spellman Hall"} +,{"_id":{"$oid":"55cba2476c522cafdb05544f"},"location":{"coordinates":[-73.9744492,40.7527018],"type":"Point"},"name":"Macchiato Espresso Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb055450"},"location":{"coordinates":[-73.9887002,40.72070679999999],"type":"Point"},"name":"Tammany Hall"} +,{"_id":{"$oid":"55cba2476c522cafdb055451"},"location":{"coordinates":[-73.977909,40.6033552],"type":"Point"},"name":"El Charrito Junior"} +,{"_id":{"$oid":"55cba2476c522cafdb055452"},"location":{"coordinates":[-73.9794612,40.6821231],"type":"Point"},"name":"The Cherry Tree Bar/ South Brooklyn Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb055453"},"location":{"coordinates":[-73.973747,40.589926],"type":"Point"},"name":"Downhouse Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb055454"},"location":{"coordinates":[-73.9916629,40.7149795],"type":"Point"},"name":"The Leadbelly"} +,{"_id":{"$oid":"55cba2476c522cafdb055455"},"location":{"coordinates":[-73.9750011,40.7624006],"type":"Point"},"name":"Frederic Fekkai New York"} +,{"_id":{"$oid":"55cba2476c522cafdb055456"},"location":{"coordinates":[-73.8455796,40.7845821],"type":"Point"},"name":"A.R'S Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb055457"},"location":{"coordinates":[-73.9986164,40.7260681],"type":"Point"},"name":"Aroma Espresso Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb055458"},"location":{"coordinates":[-73.90334589999999,40.8118541],"type":"Point"},"name":"Los Amigos Billiards"} +,{"_id":{"$oid":"55cba2476c522cafdb055459"},"location":{"coordinates":[-73.9889218,40.7313146],"type":"Point"},"name":"Village Pourhouse"} +,{"_id":{"$oid":"55cba2476c522cafdb05545a"},"location":{"coordinates":[-73.9901381,40.7625653],"type":"Point"},"name":"The Gaf"} +,{"_id":{"$oid":"55cba2476c522cafdb05545b"},"location":{"coordinates":[-74.1038564,40.5767978],"type":"Point"},"name":"Planet Wings"} +,{"_id":{"$oid":"55cba2476c522cafdb05545c"},"location":{"coordinates":[-73.9674866,40.6395543],"type":"Point"},"name":"The Farm On Adderley"} +,{"_id":{"$oid":"55cba2476c522cafdb05545d"},"location":{"coordinates":[-73.8226664,40.8267929],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb05545e"},"location":{"coordinates":[-74.000661,40.7286951],"type":"Point"},"name":"Bamboleo"} +,{"_id":{"$oid":"55cba2476c522cafdb05545f"},"location":{"coordinates":[-74.0203049,40.633406],"type":"Point"},"name":"Alpine Cinemas"} +,{"_id":{"$oid":"55cba2476c522cafdb055460"},"location":{"coordinates":[-74.00030869999999,40.6818032],"type":"Point"},"name":"Lucali"} +,{"_id":{"$oid":"55cba2476c522cafdb055461"},"location":{"coordinates":[-73.930543,40.671962],"type":"Point"},"name":"Ayana'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055462"},"location":{"coordinates":[-73.9394274,40.8262905],"type":"Point"},"name":"Yong Sheng Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055463"},"location":{"coordinates":[-73.9948113,40.7498189],"type":"Point"},"name":"Famous Amadeus Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb055464"},"location":{"coordinates":[-73.987189,40.748122],"type":"Point"},"name":"Shilla Korean Barbecue House"} +,{"_id":{"$oid":"55cba2476c522cafdb055465"},"location":{"coordinates":[-92.7182167,41.7467777],"type":"Point"},"name":"Chipotle Mexican Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb055466"},"location":{"coordinates":[-73.9745609,40.7903926],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb055467"},"location":{"coordinates":[-73.98584600000001,40.73169],"type":"Point"},"name":"Momofuku Ssam Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb055468"},"location":{"coordinates":[-73.9141693,40.7278235],"type":"Point"},"name":"Maurice Avenue Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb055469"},"location":{"coordinates":[-73.8738589,40.7221013],"type":"Point"},"name":"Golden Harbor Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05546a"},"location":{"coordinates":[-74.0867226,40.5930153],"type":"Point"},"name":"Uncle Louie G'S Italian Ices \u0026 Ice Cream"} +,{"_id":{"$oid":"55cba2476c522cafdb05546b"},"location":{"coordinates":[-73.9808907,40.7607188],"type":"Point"},"name":"Ted'S Montana Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb05546c"},"location":{"coordinates":[-73.8695363,40.7489075],"type":"Point"},"name":"Subway, Carvel Ice Cream"} +,{"_id":{"$oid":"55cba2476c522cafdb05546d"},"location":{"coordinates":[-73.994939,40.69477029999999],"type":"Point"},"name":"Lassen \u0026 Hennigs"} +,{"_id":{"$oid":"55cba2476c522cafdb05546e"},"location":{"coordinates":[-73.95664640000001,40.7668943],"type":"Point"},"name":"The Coffee Inn"} +,{"_id":{"$oid":"55cba2476c522cafdb05546f"},"location":{"coordinates":[-74.0034562,40.7275645],"type":"Point"},"name":"New Mekong Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055470"},"location":{"coordinates":[-73.8902848,40.7489065],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb055471"},"location":{"coordinates":[-73.98632769999999,40.7194306],"type":"Point"},"name":"Marshall Stack"} +,{"_id":{"$oid":"55cba2476c522cafdb055472"},"location":{"coordinates":[-73.9617001,40.7605242],"type":"Point"},"name":"Luscious Thai Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055473"},"location":{"coordinates":[-74.06848389999999,40.6056489],"type":"Point"},"name":"Da Noi Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb055474"},"location":{"coordinates":[-73.81332909999999,40.788226],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb055475"},"location":{"coordinates":[-93.7912769,32.486517],"type":"Point"},"name":"Great Taste Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb055476"},"location":{"coordinates":[-73.9758385,40.7647487],"type":"Point"},"name":"Fika Espresso Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb055477"},"location":{"coordinates":[-73.8747611,40.7353074],"type":"Point"},"name":"Cold Stone Creamery"} +,{"_id":{"$oid":"55cba2476c522cafdb055478"},"location":{"coordinates":[-73.957734,40.770128],"type":"Point"},"name":"Ala Turka"} +,{"_id":{"$oid":"55cba2476c522cafdb055479"},"location":{"coordinates":[-73.91246459999999,40.8432256],"type":"Point"},"name":"King Dragon Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05547a"},"location":{"coordinates":[-95.9220496,36.0912513],"type":"Point"},"name":"A\u0026P Roti \u0026 Pastry Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb05547b"},"location":{"coordinates":[-73.900834,40.8219878],"type":"Point"},"name":"Amor Bakery No 2"} +,{"_id":{"$oid":"55cba2476c522cafdb05547c"},"location":{"coordinates":[-73.9813786,40.6792898],"type":"Point"},"name":"Sheep Station"} +,{"_id":{"$oid":"55cba2476c522cafdb05547d"},"location":{"coordinates":[-73.9167506,40.83122669999999],"type":"Point"},"name":"Tiny'S Pizza \u0026 Pasta"} +,{"_id":{"$oid":"55cba2476c522cafdb05547e"},"location":{"coordinates":[-73.76555499999999,40.68189100000001],"type":"Point"},"name":"Lorna'S"} +,{"_id":{"$oid":"55cba2476c522cafdb05547f"},"location":{"coordinates":[-73.9813233,40.737749],"type":"Point"},"name":"Mc Swiggans"} +,{"_id":{"$oid":"55cba2476c522cafdb055480"},"location":{"coordinates":[-73.8907751,40.7489815],"type":"Point"},"name":"Ricky'S Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055481"},"location":{"coordinates":[-73.7448034,40.7661072],"type":"Point"},"name":"Il Sapore Italiano Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb055482"},"location":{"coordinates":[-74.0039649,40.737379],"type":"Point"},"name":"Cafe Cluny"} +,{"_id":{"$oid":"55cba2476c522cafdb055483"},"location":{"coordinates":[-73.97035629999999,40.69337],"type":"Point"},"name":"Lola"} +,{"_id":{"$oid":"55cba2476c522cafdb055484"},"location":{"coordinates":[-73.7910626,40.7675863],"type":"Point"},"name":"Sushi Village"} +,{"_id":{"$oid":"55cba2476c522cafdb055485"},"location":{"coordinates":[-73.9892847,40.5988445],"type":"Point"},"name":"The Living Room Steak House"} +,{"_id":{"$oid":"55cba2476c522cafdb055486"},"location":{"coordinates":[-73.8978424,40.8428041],"type":"Point"},"name":"Wendy'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055487"},"location":{"coordinates":[-73.8249706,40.8807921],"type":"Point"},"name":"Golden Krust Caribbean Bakery \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb055488"},"location":{"coordinates":[-73.9713979,40.7563419],"type":"Point"},"name":"Upstairs Lounge The Kimberly Hotel"} +,{"_id":{"$oid":"55cba2476c522cafdb055489"},"location":{"coordinates":[-73.9889511,40.72640850000001],"type":"Point"},"name":"Cacio E Vino"} +,{"_id":{"$oid":"55cba2476c522cafdb05548a"},"location":{"coordinates":[-73.95772529999999,40.77087960000001],"type":"Point"},"name":"B Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05548b"},"location":{"coordinates":[-73.790296,40.711356],"type":"Point"},"name":"Guyana Palm Court"} +,{"_id":{"$oid":"55cba2476c522cafdb05548c"},"location":{"coordinates":[-73.91056569999999,40.8310651],"type":"Point"},"name":"Dunkin' Donuts, Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb05548d"},"location":{"coordinates":[-73.8289795,40.7598654],"type":"Point"},"name":"Mr. Tu Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb05548e"},"location":{"coordinates":[-73.983001,40.765643],"type":"Point"},"name":"Joe G Restaurant (Da Vinci Hotel)"} +,{"_id":{"$oid":"55cba2476c522cafdb05548f"},"location":{"coordinates":[-73.9475789,40.6238315],"type":"Point"},"name":"Classic Kosher Catering"} +,{"_id":{"$oid":"55cba2476c522cafdb055490"},"location":{"coordinates":[-73.8032157,40.6745328],"type":"Point"},"name":"Halal Crown Fried Chicken And Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb055491"},"location":{"coordinates":[-73.7615081,40.6793152],"type":"Point"},"name":"New York Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb055492"},"location":{"coordinates":[-73.8676376,40.8572195],"type":"Point"},"name":"Rainbow Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb055493"},"location":{"coordinates":[-73.9628891,40.6883349],"type":"Point"},"name":"Choice Market"} +,{"_id":{"$oid":"55cba2476c522cafdb055494"},"location":{"coordinates":[-73.979839,40.7539103],"type":"Point"},"name":"Sea Level Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055495"},"location":{"coordinates":[-73.903227,40.812695],"type":"Point"},"name":"Lupita Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055496"},"location":{"coordinates":[-73.995662,40.645694],"type":"Point"},"name":"Lung Sing Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb055497"},"location":{"coordinates":[-73.88854839999999,40.8546507],"type":"Point"},"name":"Morrone Pastry Shop \u0026 Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055498"},"location":{"coordinates":[-74.0275964,40.6172021],"type":"Point"},"name":"Papa John'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055499"},"location":{"coordinates":[-74.1674401,40.5769947],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb05549a"},"location":{"coordinates":[-73.9159222,40.7763393],"type":"Point"},"name":"Corner Taverna"} +,{"_id":{"$oid":"55cba2476c522cafdb05549b"},"location":{"coordinates":[-73.9967844,40.7236273],"type":"Point"},"name":"Soho Park"} +,{"_id":{"$oid":"55cba2476c522cafdb05549c"},"location":{"coordinates":[-73.9507989,40.7756479],"type":"Point"},"name":"Nica Trattoria"} +,{"_id":{"$oid":"55cba2476c522cafdb05549d"},"location":{"coordinates":[-73.8827835,40.7560755],"type":"Point"},"name":"Pio Pio To Go"} +,{"_id":{"$oid":"55cba2476c522cafdb05549e"},"location":{"coordinates":[-73.985772,40.738546],"type":"Point"},"name":"Rose \u0026 Jade Bars"} +,{"_id":{"$oid":"55cba2476c522cafdb05549f"},"location":{"coordinates":[-73.91334499999999,40.766307],"type":"Point"},"name":"El Kayam"} +,{"_id":{"$oid":"55cba2476c522cafdb0554a0"},"location":{"coordinates":[-73.934465,40.578349],"type":"Point"},"name":"Kings Brew Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0554a1"},"location":{"coordinates":[-73.934465,40.578349],"type":"Point"},"name":"Mac Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0554a2"},"location":{"coordinates":[-73.9584852,40.6480708],"type":"Point"},"name":"Manna'S Soul Food"} +,{"_id":{"$oid":"55cba2476c522cafdb0554a3"},"location":{"coordinates":[-73.8312,40.758985],"type":"Point"},"name":"Vanilla Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0554a4"},"location":{"coordinates":[-73.927868,40.6253312],"type":"Point"},"name":"Squadz"} +,{"_id":{"$oid":"55cba2476c522cafdb0554a5"},"location":{"coordinates":[-73.76207959999999,40.6920102],"type":"Point"},"name":"Crown Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb0554a6"},"location":{"coordinates":[-73.934465,40.578349],"type":"Point"},"name":"Beach Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0554a7"},"location":{"coordinates":[-73.7585683,40.7407349],"type":"Point"},"name":"Dunkin' Donuts, Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb0554a8"},"location":{"coordinates":[-73.9836013,40.7642999],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0554a9"},"location":{"coordinates":[-74.1203165,40.601962],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0554aa"},"location":{"coordinates":[-74.1127176,40.565634],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0554ab"},"location":{"coordinates":[-74.00440739999999,40.7377048],"type":"Point"},"name":"Kawa Sushi 8 Avenue"} +,{"_id":{"$oid":"55cba2476c522cafdb0554ac"},"location":{"coordinates":[-73.86339,40.8402703],"type":"Point"},"name":"Afrikiko Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb0554ad"},"location":{"coordinates":[-73.99486999999999,40.645487],"type":"Point"},"name":"Julia'S Spanish Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0554ae"},"location":{"coordinates":[-73.774249,40.7690177],"type":"Point"},"name":"Trattoria 35"} +,{"_id":{"$oid":"55cba2476c522cafdb0554af"},"location":{"coordinates":[-73.9831015,40.7228305],"type":"Point"},"name":"Meskel Ethiopian"} +,{"_id":{"$oid":"55cba2476c522cafdb0554b0"},"location":{"coordinates":[-73.86235049999999,40.817101],"type":"Point"},"name":"New Yummy Chinese Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0554b1"},"location":{"coordinates":[-73.9619791,40.7610658],"type":"Point"},"name":"La-New York"} +,{"_id":{"$oid":"55cba2476c522cafdb0554b2"},"location":{"coordinates":[-73.8627527,40.8347455],"type":"Point"},"name":"New Hong Fa"} +,{"_id":{"$oid":"55cba2476c522cafdb0554b3"},"location":{"coordinates":[-73.78607099999999,40.761562],"type":"Point"},"name":"Jade Eatery And Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb0554b4"},"location":{"coordinates":[-73.88269,40.881194],"type":"Point"},"name":"Fresco Tortillas Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0554b5"},"location":{"coordinates":[-73.99143099999999,40.7404],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0554b6"},"location":{"coordinates":[-73.9800858,40.6823025],"type":"Point"},"name":"Fourth Avenue Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb0554b7"},"location":{"coordinates":[-74.16446909999999,40.5594838],"type":"Point"},"name":"All Star Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0554b8"},"location":{"coordinates":[-73.8159809,40.78634700000001],"type":"Point"},"name":"Mike \u0026 Maggie'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb0554b9"},"location":{"coordinates":[-74.0101344,40.7041613],"type":"Point"},"name":"Stone Street Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb0554ba"},"location":{"coordinates":[-73.7817084,40.7051417],"type":"Point"},"name":"Jamao Coffee Shop Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0554bb"},"location":{"coordinates":[-74.1885686,40.6087238],"type":"Point"},"name":"Chelsea Playground"} +,{"_id":{"$oid":"55cba2476c522cafdb0554bc"},"location":{"coordinates":[-73.9687786,40.7679452],"type":"Point"},"name":"Bistro Chat Noir"} +,{"_id":{"$oid":"55cba2476c522cafdb0554bd"},"location":{"coordinates":[-73.967393,40.763715],"type":"Point"},"name":"Brio Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0554be"},"location":{"coordinates":[-73.9615609,40.5999087],"type":"Point"},"name":"Nirvana"} +,{"_id":{"$oid":"55cba2476c522cafdb0554bf"},"location":{"coordinates":[-74.0054827,40.7330986],"type":"Point"},"name":"Karahi Indian Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb0554c0"},"location":{"coordinates":[-73.9115592,40.76245979999999],"type":"Point"},"name":"New China House"} +,{"_id":{"$oid":"55cba2476c522cafdb0554c1"},"location":{"coordinates":[-74.13405460000001,40.6375635],"type":"Point"},"name":"Los Potrillos Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0554c2"},"location":{"coordinates":[-73.95128729999999,40.7240836],"type":"Point"},"name":"Dunkin Donuts/Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb0554c3"},"location":{"coordinates":[-73.9694464,40.7539851],"type":"Point"},"name":"Our Evergreen Shanghai Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0554c4"},"location":{"coordinates":[-73.8549503,40.8362651],"type":"Point"},"name":"Taqueria Tlaxcalli"} +,{"_id":{"$oid":"55cba2476c522cafdb0554c5"},"location":{"coordinates":[-73.8984523,40.8603987],"type":"Point"},"name":"Jimbo'S Hamburger Palace"} +,{"_id":{"$oid":"55cba2476c522cafdb0554c6"},"location":{"coordinates":[-73.9507081,40.6663845],"type":"Point"},"name":"El Dorado"} +,{"_id":{"$oid":"55cba2476c522cafdb0554c7"},"location":{"coordinates":[-73.9855018,40.7359999],"type":"Point"},"name":"Sunburst Espresso Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0554c8"},"location":{"coordinates":[-73.8849371,40.6598554],"type":"Point"},"name":"Three Brothers Pizzeria \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0554c9"},"location":{"coordinates":[-73.9221694,40.8171807],"type":"Point"},"name":"La Isla Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0554ca"},"location":{"coordinates":[-74.007335,40.7399628],"type":"Point"},"name":"Stk"} +,{"_id":{"$oid":"55cba2476c522cafdb0554cb"},"location":{"coordinates":[-73.96758659999999,40.7998912],"type":"Point"},"name":"Mcdonalds"} +,{"_id":{"$oid":"55cba2476c522cafdb0554cc"},"location":{"coordinates":[-73.96464499999999,40.62368],"type":"Point"},"name":"Cafe Venezia"} +,{"_id":{"$oid":"55cba2476c522cafdb0554cd"},"location":{"coordinates":[-73.9853963,40.7266069],"type":"Point"},"name":"Kyo-Ya"} +,{"_id":{"$oid":"55cba2476c522cafdb0554ce"},"location":{"coordinates":[-73.9521989,40.6446029],"type":"Point"},"name":"Gem \u0026 Joe Indian'S Eat And Drink Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0554cf"},"location":{"coordinates":[-73.8628817,40.8404584],"type":"Point"},"name":"Circle Of Fun"} +,{"_id":{"$oid":"55cba2476c522cafdb0554d0"},"location":{"coordinates":[-74.0103666,40.7041612],"type":"Point"},"name":"Beckett'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0554d1"},"location":{"coordinates":[-73.96444559999999,40.64914419999999],"type":"Point"},"name":"Golden Krust"} +,{"_id":{"$oid":"55cba2476c522cafdb0554d2"},"location":{"coordinates":[-73.9953376,40.7423153],"type":"Point"},"name":"Moe'S Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0554d3"},"location":{"coordinates":[-73.9822712,40.7387655],"type":"Point"},"name":"Moe'S Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0554d4"},"location":{"coordinates":[-73.96064059999999,40.8129938],"type":"Point"},"name":"Chokolat Patisserie"} +,{"_id":{"$oid":"55cba2476c522cafdb0554d5"},"location":{"coordinates":[-73.8290172,40.8520758],"type":"Point"},"name":"King Hing Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0554d6"},"location":{"coordinates":[-73.98606649999999,40.7579328],"type":"Point"},"name":"Best Buy Theater"} +,{"_id":{"$oid":"55cba2476c522cafdb0554d7"},"location":{"coordinates":[-73.9794252,40.752316],"type":"Point"},"name":"Pera Mediterranean Brasserie"} +,{"_id":{"$oid":"55cba2476c522cafdb0554d8"},"location":{"coordinates":[-73.8159368,40.7885024],"type":"Point"},"name":"Carvel Ice Cream"} +,{"_id":{"$oid":"55cba2476c522cafdb0554d9"},"location":{"coordinates":[-73.9178936,40.7649972],"type":"Point"},"name":"Golden House Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0554da"},"location":{"coordinates":[-73.9186823,40.765913],"type":"Point"},"name":"Ovelia Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0554db"},"location":{"coordinates":[-73.9950889,40.760717],"type":"Point"},"name":"Landsdowne Road"} +,{"_id":{"$oid":"55cba2476c522cafdb0554dc"},"location":{"coordinates":[-73.9974325,40.7185309],"type":"Point"},"name":"Paesano'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0554dd"},"location":{"coordinates":[-73.9612844,40.607719],"type":"Point"},"name":"Luna Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0554de"},"location":{"coordinates":[-73.9894278,40.7165914],"type":"Point"},"name":"Vic'S Pizza On Essex"} +,{"_id":{"$oid":"55cba2476c522cafdb0554df"},"location":{"coordinates":[-73.99524389999999,40.6402736],"type":"Point"},"name":"D \u0026 D Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb0554e0"},"location":{"coordinates":[-74.0121273,40.713351],"type":"Point"},"name":"N.Y. Academy Of Science"} +,{"_id":{"$oid":"55cba2476c522cafdb0554e1"},"location":{"coordinates":[-74.00450119999999,40.7417806],"type":"Point"},"name":"Google 5Bb"} +,{"_id":{"$oid":"55cba2476c522cafdb0554e2"},"location":{"coordinates":[-73.988579,40.7283142],"type":"Point"},"name":"Standings"} +,{"_id":{"$oid":"55cba2476c522cafdb0554e3"},"location":{"coordinates":[-73.9886296,40.7282926],"type":"Point"},"name":"Burp Castle"} +,{"_id":{"$oid":"55cba2476c522cafdb0554e4"},"location":{"coordinates":[-73.921352,40.7674057],"type":"Point"},"name":"Astoria Brewhouse"} +,{"_id":{"$oid":"55cba2476c522cafdb0554e5"},"location":{"coordinates":[-73.94265100000001,40.793812],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0554e6"},"location":{"coordinates":[-73.79923459999999,40.5924947],"type":"Point"},"name":"China Kings"} +,{"_id":{"$oid":"55cba2476c522cafdb0554e7"},"location":{"coordinates":[-73.9640299,40.807001],"type":"Point"},"name":"Cafe East - Alfred Lerner Hall"} +,{"_id":{"$oid":"55cba2476c522cafdb0554e8"},"location":{"coordinates":[-73.9754454,40.6873045],"type":"Point"},"name":"Mullanes Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0554e9"},"location":{"coordinates":[-73.942212,40.721647],"type":"Point"},"name":"Sunset Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb0554ea"},"location":{"coordinates":[-73.988579,40.7283142],"type":"Point"},"name":"Jimmy'S On 7Th Street"} +,{"_id":{"$oid":"55cba2476c522cafdb0554eb"},"location":{"coordinates":[-73.9202961,40.7392859],"type":"Point"},"name":"De Mole"} +,{"_id":{"$oid":"55cba2476c522cafdb0554ec"},"location":{"coordinates":[-73.8459424,40.7787216],"type":"Point"},"name":"Martiniello'S Iv"} +,{"_id":{"$oid":"55cba2476c522cafdb0554ed"},"location":{"coordinates":[-73.902048,40.868898],"type":"Point"},"name":"Popeyes Chicken \u0026 Biscuits"} +,{"_id":{"$oid":"55cba2476c522cafdb0554ee"},"location":{"coordinates":[-73.9176851,40.8063147],"type":"Point"},"name":"Jalisco Taco'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0554ef"},"location":{"coordinates":[-73.9917206,40.6914469],"type":"Point"},"name":"Popeyes Chicken \u0026 Biscuits"} +,{"_id":{"$oid":"55cba2476c522cafdb0554f0"},"location":{"coordinates":[-73.9827037,40.7684141],"type":"Point"},"name":"Porter House New York"} +,{"_id":{"$oid":"55cba2476c522cafdb0554f1"},"location":{"coordinates":[-73.9705784,40.7554676],"type":"Point"},"name":"Gyu-Kaku"} +,{"_id":{"$oid":"55cba2476c522cafdb0554f2"},"location":{"coordinates":[-73.95308399999999,40.803731],"type":"Point"},"name":"Make My Cake"} +,{"_id":{"$oid":"55cba2476c522cafdb0554f3"},"location":{"coordinates":[-73.993438,40.682616],"type":"Point"},"name":"Cubana Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0554f4"},"location":{"coordinates":[-73.9028293,40.86256849999999],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0554f5"},"location":{"coordinates":[-73.881135,40.8564977],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0554f6"},"location":{"coordinates":[-73.909454,40.659827],"type":"Point"},"name":"Dj'S Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0554f7"},"location":{"coordinates":[-73.8267863,40.7714994],"type":"Point"},"name":"Ga Hwa Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0554f8"},"location":{"coordinates":[-74.0121932,40.704813],"type":"Point"},"name":"Trader'S Express Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb0554f9"},"location":{"coordinates":[-73.99457509999999,40.7356175],"type":"Point"},"name":"Mapi"} +,{"_id":{"$oid":"55cba2476c522cafdb0554fa"},"location":{"coordinates":[-73.98743859999999,40.7294075],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0554fb"},"location":{"coordinates":[-73.8821937,40.7016792],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0554fc"},"location":{"coordinates":[-73.98337,40.7254412],"type":"Point"},"name":"Eastern Bloc"} +,{"_id":{"$oid":"55cba2476c522cafdb0554fd"},"location":{"coordinates":[-73.9719807,40.7590251],"type":"Point"},"name":"Bingham Mccutchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0554fe"},"location":{"coordinates":[-73.9890813,40.7530156],"type":"Point"},"name":"Zaro'S Bread Basket"} +,{"_id":{"$oid":"55cba2476c522cafdb0554ff"},"location":{"coordinates":[-73.90169399999999,40.7048289],"type":"Point"},"name":"Old World Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb055500"},"location":{"coordinates":[-73.8792148,40.87510109999999],"type":"Point"},"name":"New Star Coffee Shop \u0026 Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb055501"},"location":{"coordinates":[-73.9643924,40.7122598],"type":"Point"},"name":"South 4Th Bar \u0026 Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055502"},"location":{"coordinates":[-73.9224979,40.7060648],"type":"Point"},"name":"Wyckoff Starr"} +,{"_id":{"$oid":"55cba2476c522cafdb055503"},"location":{"coordinates":[-73.7711985,40.7645521],"type":"Point"},"name":"Brian Dempsey'S Ale House"} +,{"_id":{"$oid":"55cba2476c522cafdb055504"},"location":{"coordinates":[-73.9229321,40.8093475],"type":"Point"},"name":"Santa Clarita Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055505"},"location":{"coordinates":[-74.00761659999999,40.7358505],"type":"Point"},"name":"11 Street Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055506"},"location":{"coordinates":[-73.971424,40.6930054],"type":"Point"},"name":"Kinaras Indian Food"} +,{"_id":{"$oid":"55cba2476c522cafdb055507"},"location":{"coordinates":[-73.81558989999999,40.6893448],"type":"Point"},"name":"Liberty Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055508"},"location":{"coordinates":[-73.8690842,40.7491834],"type":"Point"},"name":"Taco Veloz"} +,{"_id":{"$oid":"55cba2476c522cafdb055509"},"location":{"coordinates":[-73.9236596,40.6357097],"type":"Point"},"name":"Island Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb05550a"},"location":{"coordinates":[-73.9579686,40.7698226],"type":"Point"},"name":"Persepolis"} +,{"_id":{"$oid":"55cba2476c522cafdb05550b"},"location":{"coordinates":[-73.95665149999999,40.6872696],"type":"Point"},"name":"Heavenly Crumbs"} +,{"_id":{"$oid":"55cba2476c522cafdb05550c"},"location":{"coordinates":[-74.0656966,40.5986368],"type":"Point"},"name":"Italianissimo Restaurant Cafe Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05550d"},"location":{"coordinates":[-74.0023126,40.7075822],"type":"Point"},"name":"Jack'S Stir Brew Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb05550e"},"location":{"coordinates":[-73.8924904,40.86167469999999],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb05550f"},"location":{"coordinates":[-73.8667396,40.8780002],"type":"Point"},"name":"Benny'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb055510"},"location":{"coordinates":[-74.000395,40.729731],"type":"Point"},"name":"Luxor Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb055511"},"location":{"coordinates":[-73.99468159999999,40.7285789],"type":"Point"},"name":"Little Atlas Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055512"},"location":{"coordinates":[-73.992694,40.717292],"type":"Point"},"name":"S. Wan Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055513"},"location":{"coordinates":[-74.00558199999999,40.639668],"type":"Point"},"name":"Noodle Station"} +,{"_id":{"$oid":"55cba2476c522cafdb055514"},"location":{"coordinates":[-73.9977804,40.7210382],"type":"Point"},"name":"Brinkley'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055515"},"location":{"coordinates":[-73.90093999999999,40.8379163],"type":"Point"},"name":"Red House Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055516"},"location":{"coordinates":[-73.98996199999999,40.73731],"type":"Point"},"name":"Chipotle Mexican Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb055517"},"location":{"coordinates":[-73.71672149999999,40.7266618],"type":"Point"},"name":"King Rice"} +,{"_id":{"$oid":"55cba2476c522cafdb055518"},"location":{"coordinates":[-73.791716,40.7024684],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb055519"},"location":{"coordinates":[-73.9823926,40.7783797],"type":"Point"},"name":"Gigi Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05551a"},"location":{"coordinates":[-73.99328969999999,40.6872565],"type":"Point"},"name":"Cobblestone Food"} +,{"_id":{"$oid":"55cba2476c522cafdb05551b"},"location":{"coordinates":[-73.8179959,40.688878],"type":"Point"},"name":"Carifesta Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05551c"},"location":{"coordinates":[-73.89134229999999,40.7586892],"type":"Point"},"name":"Plaka Estiatorio"} +,{"_id":{"$oid":"55cba2476c522cafdb05551d"},"location":{"coordinates":[-73.91831909999999,40.7034828],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb05551e"},"location":{"coordinates":[-73.9598292,40.6178442],"type":"Point"},"name":"V J Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb05551f"},"location":{"coordinates":[-74.000252,40.7356228],"type":"Point"},"name":"Greenwich Treehouse"} +,{"_id":{"$oid":"55cba2476c522cafdb055520"},"location":{"coordinates":[-74.002274,40.7369036],"type":"Point"},"name":"The Waverly Inn"} +,{"_id":{"$oid":"55cba2476c522cafdb055521"},"location":{"coordinates":[-73.97570800000001,40.7630679],"type":"Point"},"name":"Tina'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055522"},"location":{"coordinates":[-73.8204183,40.72425],"type":"Point"},"name":"Main Street Cinema"} +,{"_id":{"$oid":"55cba2476c522cafdb055523"},"location":{"coordinates":[-73.9197641,40.8651547],"type":"Point"},"name":"Claro De Luna Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055524"},"location":{"coordinates":[-73.9830132,40.749605],"type":"Point"},"name":"Galway Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb055525"},"location":{"coordinates":[-73.9608301,40.7189722],"type":"Point"},"name":"Zenkichi"} +,{"_id":{"$oid":"55cba2476c522cafdb055526"},"location":{"coordinates":[-73.86913249999999,40.68434],"type":"Point"},"name":"Mariachi Taco"} +,{"_id":{"$oid":"55cba2476c522cafdb055527"},"location":{"coordinates":[-73.9834788,40.6861644],"type":"Point"},"name":"Betty Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb055528"},"location":{"coordinates":[-73.9573939,40.765318],"type":"Point"},"name":"Le Pain Quotidien"} +,{"_id":{"$oid":"55cba2476c522cafdb055529"},"location":{"coordinates":[-74.001941,40.7078836],"type":"Point"},"name":"Suteishi"} +,{"_id":{"$oid":"55cba2476c522cafdb05552a"},"location":{"coordinates":[-73.998397,40.74089],"type":"Point"},"name":"Le Pain Quotidien"} +,{"_id":{"$oid":"55cba2476c522cafdb05552b"},"location":{"coordinates":[-73.98582350000001,40.756661],"type":"Point"},"name":"Brooklyn Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb05552c"},"location":{"coordinates":[-73.9589033,40.7085205],"type":"Point"},"name":"Emperador Elias Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05552d"},"location":{"coordinates":[-74.0130887,40.7080331],"type":"Point"},"name":"Masterpiece Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05552e"},"location":{"coordinates":[-73.93722749999999,40.8549581],"type":"Point"},"name":"The Monkey Room"} +,{"_id":{"$oid":"55cba2476c522cafdb05552f"},"location":{"coordinates":[-73.874033,40.742474],"type":"Point"},"name":"La Antioquena Bakery # 1"} +,{"_id":{"$oid":"55cba2476c522cafdb055530"},"location":{"coordinates":[-73.7556659,40.605155],"type":"Point"},"name":"Magic Wok"} +,{"_id":{"$oid":"55cba2476c522cafdb055531"},"location":{"coordinates":[-74.1217934,40.6087393],"type":"Point"},"name":"Carvel"} +,{"_id":{"$oid":"55cba2476c522cafdb055532"},"location":{"coordinates":[-73.90298849999999,40.858496],"type":"Point"},"name":"New Peking Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055533"},"location":{"coordinates":[-73.945223,40.651269],"type":"Point"},"name":"Reflection Manor"} +,{"_id":{"$oid":"55cba2476c522cafdb055534"},"location":{"coordinates":[-73.98956,40.760724],"type":"Point"},"name":"Sushi Of Gari 46"} +,{"_id":{"$oid":"55cba2476c522cafdb055535"},"location":{"coordinates":[-74.06940569999999,40.6188443],"type":"Point"},"name":"Zest"} +,{"_id":{"$oid":"55cba2476c522cafdb055536"},"location":{"coordinates":[-73.98574099999999,40.722516],"type":"Point"},"name":"Double Down Saloon"} +,{"_id":{"$oid":"55cba2476c522cafdb055537"},"location":{"coordinates":[-73.8915947,40.746408],"type":"Point"},"name":"Thai Son"} +,{"_id":{"$oid":"55cba2476c522cafdb055538"},"location":{"coordinates":[-73.888975,40.747318],"type":"Point"},"name":"Panaderia Coatzingo"} +,{"_id":{"$oid":"55cba2476c522cafdb055539"},"location":{"coordinates":[-73.981751,40.7763588],"type":"Point"},"name":"Baracibo Enoteca"} +,{"_id":{"$oid":"55cba2476c522cafdb05553a"},"location":{"coordinates":[-73.8953135,40.7007156],"type":"Point"},"name":"International Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb05553b"},"location":{"coordinates":[-73.97024920000001,40.7557918],"type":"Point"},"name":"Dos Caminos Third"} +,{"_id":{"$oid":"55cba2476c522cafdb05553c"},"location":{"coordinates":[-73.9244796,40.8270316],"type":"Point"},"name":"Court Deli Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05553d"},"location":{"coordinates":[-73.91054179999999,40.67784899999999],"type":"Point"},"name":"Wah Sing Resturant"} +,{"_id":{"$oid":"55cba2476c522cafdb05553e"},"location":{"coordinates":[-73.9983173,40.7426659],"type":"Point"},"name":"Cafe Grumpy"} +,{"_id":{"$oid":"55cba2476c522cafdb05553f"},"location":{"coordinates":[-74.0062949,40.7485981],"type":"Point"},"name":"Brownstein Caterers"} +,{"_id":{"$oid":"55cba2476c522cafdb055540"},"location":{"coordinates":[-73.9576891,40.7181637],"type":"Point"},"name":"Charleston"} +,{"_id":{"$oid":"55cba2476c522cafdb055541"},"location":{"coordinates":[-73.9930485,40.7589531],"type":"Point"},"name":"Ollies 42Nd"} +,{"_id":{"$oid":"55cba2476c522cafdb055542"},"location":{"coordinates":[-73.9937096,40.7574461],"type":"Point"},"name":"Cupcake Cafe Casa"} +,{"_id":{"$oid":"55cba2476c522cafdb055543"},"location":{"coordinates":[-73.968193,40.756127],"type":"Point"},"name":"Hide Chan Ramen"} +,{"_id":{"$oid":"55cba2476c522cafdb055544"},"location":{"coordinates":[-73.9915678,40.7487393],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb055545"},"location":{"coordinates":[-73.9163219,40.699196],"type":"Point"},"name":"Ny Pizza Cafe \u0026 Spanish Food Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055546"},"location":{"coordinates":[-73.931337,40.6580775],"type":"Point"},"name":"Mike'S Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb055547"},"location":{"coordinates":[-73.9768964,40.7628093],"type":"Point"},"name":"Dunkin' Donuts/Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb055548"},"location":{"coordinates":[-73.9856733,40.7643449],"type":"Point"},"name":"Broadway Comedy Club"} +,{"_id":{"$oid":"55cba2476c522cafdb055549"},"location":{"coordinates":[-73.8546914,40.8491229],"type":"Point"},"name":"Emilio'S Pizza \u0026 Pasta"} +,{"_id":{"$oid":"55cba2476c522cafdb05554a"},"location":{"coordinates":[-73.8120977,40.7646289],"type":"Point"},"name":"Bonjuk"} +,{"_id":{"$oid":"55cba2476c522cafdb05554b"},"location":{"coordinates":[-73.9550312,40.7684175],"type":"Point"},"name":"Sushi Sasabune New York"} +,{"_id":{"$oid":"55cba2476c522cafdb05554c"},"location":{"coordinates":[-73.8951861,40.6379216],"type":"Point"},"name":"Burger King"} +,{"_id":{"$oid":"55cba2476c522cafdb05554d"},"location":{"coordinates":[-73.967288,40.76386000000001],"type":"Point"},"name":"Lilli And Loo"} +,{"_id":{"$oid":"55cba2476c522cafdb05554e"},"location":{"coordinates":[-74.010501,40.616969],"type":"Point"},"name":"Sirico'S Catering"} +,{"_id":{"$oid":"55cba2476c522cafdb05554f"},"location":{"coordinates":[-73.9577307,40.7314762],"type":"Point"},"name":"Brooklyn Label"} +,{"_id":{"$oid":"55cba2476c522cafdb055550"},"location":{"coordinates":[-73.9836866,40.7550567],"type":"Point"},"name":"The Bistro (Hbo Cafeteria)"} +,{"_id":{"$oid":"55cba2476c522cafdb055551"},"location":{"coordinates":[-74.00450119999999,40.7417806],"type":"Point"},"name":"Google Cafeteria"} +,{"_id":{"$oid":"55cba2476c522cafdb055552"},"location":{"coordinates":[-73.9836904,40.7573863],"type":"Point"},"name":"The Perfect Pint"} +,{"_id":{"$oid":"55cba2476c522cafdb055553"},"location":{"coordinates":[-74.0035291,40.7328667],"type":"Point"},"name":"Panca"} +,{"_id":{"$oid":"55cba2476c522cafdb055554"},"location":{"coordinates":[-73.979046,40.781586],"type":"Point"},"name":"Chirping Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb055555"},"location":{"coordinates":[-73.77159999999999,40.764184],"type":"Point"},"name":"Uncle Jacks Steakhouse"} +,{"_id":{"$oid":"55cba2476c522cafdb055556"},"location":{"coordinates":[-73.98187450000002,40.6667638],"type":"Point"},"name":"Brooklyn Flipster'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055557"},"location":{"coordinates":[-93.2069217,43.14769159999999],"type":"Point"},"name":"Chipotle Mexican Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb055558"},"location":{"coordinates":[-73.87527,40.87992800000001],"type":"Point"},"name":"Sing Fei Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055559"},"location":{"coordinates":[-73.902012,40.8196782],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb05555a"},"location":{"coordinates":[-73.90663239999999,40.71277509999999],"type":"Point"},"name":"Carvel Ice Cream"} +,{"_id":{"$oid":"55cba2476c522cafdb05555b"},"location":{"coordinates":[-73.90580829999999,40.7451539],"type":"Point"},"name":"Engeline'S"} +,{"_id":{"$oid":"55cba2476c522cafdb05555c"},"location":{"coordinates":[-73.9768727,40.6845666],"type":"Point"},"name":"Buffalo Wild Wings Grill \u0026 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05555d"},"location":{"coordinates":[-73.98978300000002,40.665398],"type":"Point"},"name":"Sidecar"} +,{"_id":{"$oid":"55cba2476c522cafdb05555e"},"location":{"coordinates":[-73.9886423,40.7346219],"type":"Point"},"name":"Side Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05555f"},"location":{"coordinates":[-73.8758026,40.7061056],"type":"Point"},"name":"Shiro Of Japan (At Atlas Mall)"} +,{"_id":{"$oid":"55cba2476c522cafdb055560"},"location":{"coordinates":[-73.991249,40.760816],"type":"Point"},"name":"La Carafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055561"},"location":{"coordinates":[-73.9836866,40.7550567],"type":"Point"},"name":"Hbo Executive Dining Room"} +,{"_id":{"$oid":"55cba2476c522cafdb055562"},"location":{"coordinates":[-73.9435068,40.7483375],"type":"Point"},"name":"U.N. Federal Credit Union"} +,{"_id":{"$oid":"55cba2476c522cafdb055563"},"location":{"coordinates":[-73.98413459999999,40.7654447],"type":"Point"},"name":"Hale \u0026 Hearty Soups"} +,{"_id":{"$oid":"55cba2476c522cafdb055564"},"location":{"coordinates":[-73.98459,40.7291219],"type":"Point"},"name":"Ashiya Ii Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb055565"},"location":{"coordinates":[-73.9979147,40.6748974],"type":"Point"},"name":"Line Bagels"} +,{"_id":{"$oid":"55cba2476c522cafdb055566"},"location":{"coordinates":[-73.91592299999999,40.65569],"type":"Point"},"name":"Azylum Bar \u0026 Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb055567"},"location":{"coordinates":[-73.8849036,40.74391230000001],"type":"Point"},"name":"Sabay Thai"} +,{"_id":{"$oid":"55cba2476c522cafdb055568"},"location":{"coordinates":[-73.9790474,40.7517244],"type":"Point"},"name":"Benjamin Steak House"} +,{"_id":{"$oid":"55cba2476c522cafdb055569"},"location":{"coordinates":[-73.9182956,40.7435331],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb05556a"},"location":{"coordinates":[-73.9785867,40.7537762],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb05556b"},"location":{"coordinates":[-74.007695,40.727752],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb05556c"},"location":{"coordinates":[-73.99026889999999,40.7326746],"type":"Point"},"name":"Paradis To Go"} +,{"_id":{"$oid":"55cba2476c522cafdb05556d"},"location":{"coordinates":[-73.9719807,40.7590251],"type":"Point"},"name":"Dishes"} +,{"_id":{"$oid":"55cba2476c522cafdb05556e"},"location":{"coordinates":[-73.9721349,40.7504379],"type":"Point"},"name":"Patsy'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb05556f"},"location":{"coordinates":[-73.96943759999999,40.7572813],"type":"Point"},"name":"Fusion Grills"} +,{"_id":{"$oid":"55cba2476c522cafdb055570"},"location":{"coordinates":[-73.9860376,40.6917951],"type":"Point"},"name":"Golden Krust Caribbean Bakery \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb055571"},"location":{"coordinates":[-74.0064238,40.734305],"type":"Point"},"name":"Bayard'S Alehouse"} +,{"_id":{"$oid":"55cba2476c522cafdb055572"},"location":{"coordinates":[-73.98335349999999,40.7309328],"type":"Point"},"name":"The Redhead"} +,{"_id":{"$oid":"55cba2476c522cafdb055573"},"location":{"coordinates":[-73.9656049,40.5764791],"type":"Point"},"name":"Sachiko"} +,{"_id":{"$oid":"55cba2476c522cafdb055574"},"location":{"coordinates":[-73.9218327,40.74369530000001],"type":"Point"},"name":"Sunnyside Movie Theater"} +,{"_id":{"$oid":"55cba2476c522cafdb055575"},"location":{"coordinates":[-73.96864459999999,40.7632701],"type":"Point"},"name":"Amali"} +,{"_id":{"$oid":"55cba2476c522cafdb055576"},"location":{"coordinates":[-73.84479999999999,40.684833],"type":"Point"},"name":"The Quiet Man Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb055577"},"location":{"coordinates":[-73.9694973,40.6896621],"type":"Point"},"name":"Roman'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055578"},"location":{"coordinates":[-73.9859077,40.6002321],"type":"Point"},"name":"Wild Bagels"} +,{"_id":{"$oid":"55cba2476c522cafdb055579"},"location":{"coordinates":[-73.78566649999999,40.7124075],"type":"Point"},"name":"Benny'S Pizza Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05557a"},"location":{"coordinates":[-73.8690694,40.6847149],"type":"Point"},"name":"Angela'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb05557b"},"location":{"coordinates":[-73.94994,40.776589],"type":"Point"},"name":"Danny \u0026 Eddies"} +,{"_id":{"$oid":"55cba2476c522cafdb05557c"},"location":{"coordinates":[-73.9906166,40.7677131],"type":"Point"},"name":"Ars Nova Theater"} +,{"_id":{"$oid":"55cba2476c522cafdb05557d"},"location":{"coordinates":[-73.9132494,40.7563012],"type":"Point"},"name":"Las Magaritas"} +,{"_id":{"$oid":"55cba2476c522cafdb05557e"},"location":{"coordinates":[-73.9583641,40.7083971],"type":"Point"},"name":"Sabrina'S Broadway Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb05557f"},"location":{"coordinates":[-74.00783539999999,40.647824],"type":"Point"},"name":"Tacos Matamoros Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055580"},"location":{"coordinates":[-73.843547,40.6724279],"type":"Point"},"name":"Rosies Place"} +,{"_id":{"$oid":"55cba2476c522cafdb055581"},"location":{"coordinates":[-73.99161169999999,40.7367151],"type":"Point"},"name":"University Market Place"} +,{"_id":{"$oid":"55cba2476c522cafdb055582"},"location":{"coordinates":[-73.9208909,40.7628596],"type":"Point"},"name":"Il Bambino"} +,{"_id":{"$oid":"55cba2476c522cafdb055583"},"location":{"coordinates":[-73.9682436,40.7676417],"type":"Point"},"name":"Nespresso"} +,{"_id":{"$oid":"55cba2476c522cafdb055584"},"location":{"coordinates":[-73.8993323,40.6421041],"type":"Point"},"name":"Delicious Chinese"} +,{"_id":{"$oid":"55cba2476c522cafdb055585"},"location":{"coordinates":[-73.8758026,40.7061056],"type":"Point"},"name":"Manor Octoberfest"} +,{"_id":{"$oid":"55cba2476c522cafdb055586"},"location":{"coordinates":[-73.9434885,40.6319235],"type":"Point"},"name":"David'S Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb055587"},"location":{"coordinates":[-73.8092297,40.78766890000001],"type":"Point"},"name":"Lollipops"} +,{"_id":{"$oid":"55cba2476c522cafdb055588"},"location":{"coordinates":[-73.9596636,40.7631869],"type":"Point"},"name":"Torishin"} +,{"_id":{"$oid":"55cba2476c522cafdb055589"},"location":{"coordinates":[-73.980852,40.723903],"type":"Point"},"name":"Against The Grain"} +,{"_id":{"$oid":"55cba2476c522cafdb05558a"},"location":{"coordinates":[-73.95400149999999,40.7753074],"type":"Point"},"name":"Pinkberry"} +,{"_id":{"$oid":"55cba2476c522cafdb05558b"},"location":{"coordinates":[-73.864133,40.7276033],"type":"Point"},"name":"Cheburechnaya"} +,{"_id":{"$oid":"55cba2476c522cafdb05558c"},"location":{"coordinates":[-73.89148560000001,40.7488496],"type":"Point"},"name":"Kabir'S Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb05558d"},"location":{"coordinates":[-73.8270899,40.7080753],"type":"Point"},"name":"New Shanghai Chinese \u0026 Japanese Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb05558e"},"location":{"coordinates":[-73.7938357,40.6858641],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb05558f"},"location":{"coordinates":[-73.9904772,40.7179481],"type":"Point"},"name":"Sticky Rice"} +,{"_id":{"$oid":"55cba2476c522cafdb055590"},"location":{"coordinates":[-73.887027,40.8118378],"type":"Point"},"name":"Americo Food Market"} +,{"_id":{"$oid":"55cba2476c522cafdb055591"},"location":{"coordinates":[-73.9141274,40.7787669],"type":"Point"},"name":"Crescent \u0026 Vine"} +,{"_id":{"$oid":"55cba2476c522cafdb055592"},"location":{"coordinates":[-73.95910169999999,40.7169856],"type":"Point"},"name":"Juliette"} +,{"_id":{"$oid":"55cba2476c522cafdb055593"},"location":{"coordinates":[-74.0262307,40.6346307],"type":"Point"},"name":"Yellow Hook Grille"} +,{"_id":{"$oid":"55cba2476c522cafdb055594"},"location":{"coordinates":[-73.9600098,40.720264],"type":"Point"},"name":"Nita Nita"} +,{"_id":{"$oid":"55cba2476c522cafdb055595"},"location":{"coordinates":[-73.9890116,40.7574173],"type":"Point"},"name":"Regal Cinemas E-Walk Stadium13"} +,{"_id":{"$oid":"55cba2476c522cafdb055596"},"location":{"coordinates":[-73.912601,40.614741],"type":"Point"},"name":"Pizza D'Amore"} +,{"_id":{"$oid":"55cba2476c522cafdb055597"},"location":{"coordinates":[-73.962106,40.693697],"type":"Point"},"name":"Ruthie'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055598"},"location":{"coordinates":[-73.8942174,40.72630119999999],"type":"Point"},"name":"Good Eats"} +,{"_id":{"$oid":"55cba2476c522cafdb055599"},"location":{"coordinates":[-73.8792094,40.8748458],"type":"Point"},"name":"Nicky'S Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb05559a"},"location":{"coordinates":[-73.906924,40.7604781],"type":"Point"},"name":"Papa John'S"} +,{"_id":{"$oid":"55cba2476c522cafdb05559b"},"location":{"coordinates":[-73.9852527,40.7617382],"type":"Point"},"name":"Natsumi"} +,{"_id":{"$oid":"55cba2476c522cafdb05559c"},"location":{"coordinates":[-73.94946,40.7803979],"type":"Point"},"name":"Papa John'S"} +,{"_id":{"$oid":"55cba2476c522cafdb05559d"},"location":{"coordinates":[-73.9902074,40.7609535],"type":"Point"},"name":"The Ritz Bar \u0026 Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb05559e"},"location":{"coordinates":[-73.94841319999999,40.7819184],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb05559f"},"location":{"coordinates":[-73.9815239,40.73056630000001],"type":"Point"},"name":"Akina Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb0555a0"},"location":{"coordinates":[-74.0078645,40.7157322],"type":"Point"},"name":"Tribeca Treats"} +,{"_id":{"$oid":"55cba2476c522cafdb0555a1"},"location":{"coordinates":[-73.988615,40.726809],"type":"Point"},"name":"Moon Struck On 2Nd"} +,{"_id":{"$oid":"55cba2476c522cafdb0555a2"},"location":{"coordinates":[-73.81420109999999,40.7657754],"type":"Point"},"name":"Seven Billiards"} +,{"_id":{"$oid":"55cba2476c522cafdb0555a3"},"location":{"coordinates":[-73.7560398,40.7486486],"type":"Point"},"name":"Subway/Nathan'S Famous"} +,{"_id":{"$oid":"55cba2476c522cafdb0555a4"},"location":{"coordinates":[-74.026234,40.6360529],"type":"Point"},"name":"Donut Connection"} +,{"_id":{"$oid":"55cba2476c522cafdb0555a5"},"location":{"coordinates":[-73.916752,40.780724],"type":"Point"},"name":"Bistro 33"} +,{"_id":{"$oid":"55cba2476c522cafdb0555a6"},"location":{"coordinates":[-73.9291305,40.7078784],"type":"Point"},"name":"Brooklyn Fire Proof East"} +,{"_id":{"$oid":"55cba2476c522cafdb0555a7"},"location":{"coordinates":[-73.9435973,40.7942203],"type":"Point"},"name":"Cafe Savoy Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0555a8"},"location":{"coordinates":[-73.98075,40.775237],"type":"Point"},"name":"Francesco Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb0555a9"},"location":{"coordinates":[-73.9543887,40.8205758],"type":"Point"},"name":"Las Americas Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0555aa"},"location":{"coordinates":[-73.99138239999999,40.7512902],"type":"Point"},"name":"Garrett Popcorn Shops"} +,{"_id":{"$oid":"55cba2476c522cafdb0555ab"},"location":{"coordinates":[-73.9942851,40.6607347],"type":"Point"},"name":"Milan'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0555ac"},"location":{"coordinates":[-73.9716904,40.6765152],"type":"Point"},"name":"Prospect Perk Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0555ad"},"location":{"coordinates":[-93.2069217,43.14769159999999],"type":"Point"},"name":"Europa Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0555ae"},"location":{"coordinates":[-73.9425368,40.8378087],"type":"Point"},"name":"First Choice Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0555af"},"location":{"coordinates":[-73.98145439999999,40.7407268],"type":"Point"},"name":"Sunflower Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb0555b0"},"location":{"coordinates":[-73.7800756,40.7530715],"type":"Point"},"name":"Bkny Thai Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0555b1"},"location":{"coordinates":[-73.9859541,40.6895316],"type":"Point"},"name":"Bella Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0555b2"},"location":{"coordinates":[-73.98562799999999,40.73293899999999],"type":"Point"},"name":"Blind Pig"} +,{"_id":{"$oid":"55cba2476c522cafdb0555b3"},"location":{"coordinates":[-73.9992986,40.7283881],"type":"Point"},"name":"Wicked Willy'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0555b4"},"location":{"coordinates":[-73.9841411,40.7451987],"type":"Point"},"name":"The Crooked Knife"} +,{"_id":{"$oid":"55cba2476c522cafdb0555b5"},"location":{"coordinates":[-73.99224199999999,40.759519],"type":"Point"},"name":"Lenny'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0555b6"},"location":{"coordinates":[-73.9955348,40.5945272],"type":"Point"},"name":"Orange Grill Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0555b7"},"location":{"coordinates":[-73.9836495,40.6120362],"type":"Point"},"name":"Torres Italian Resturant"} +,{"_id":{"$oid":"55cba2476c522cafdb0555b8"},"location":{"coordinates":[-73.95421019999999,40.7425807],"type":"Point"},"name":"Domaine Wine Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0555b9"},"location":{"coordinates":[-74.0029641,40.6849631],"type":"Point"},"name":"Mazzat"} +,{"_id":{"$oid":"55cba2476c522cafdb0555ba"},"location":{"coordinates":[-74.00370819999999,40.6414357],"type":"Point"},"name":"Great Wall Chinese Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb0555bb"},"location":{"coordinates":[-73.949001,40.781107],"type":"Point"},"name":"Buddha B Beeq"} +,{"_id":{"$oid":"55cba2476c522cafdb0555bc"},"location":{"coordinates":[-73.8689473,40.7489047],"type":"Point"},"name":"Mama Leti'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0555bd"},"location":{"coordinates":[-74.012778,40.710278],"type":"Point"},"name":"Ho Yip Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0555be"},"location":{"coordinates":[-73.8215566,40.82646949999999],"type":"Point"},"name":"Pete'S Restaurant \u0026 Donut Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb0555bf"},"location":{"coordinates":[-73.98939779999999,40.7166456],"type":"Point"},"name":"Flowers Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0555c0"},"location":{"coordinates":[-73.9614187,40.6609931],"type":"Point"},"name":"Lincoln Park Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb0555c1"},"location":{"coordinates":[-74.00068999999999,40.643611],"type":"Point"},"name":"China One Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0555c2"},"location":{"coordinates":[-73.982128,40.7284549],"type":"Point"},"name":"Westville"} +,{"_id":{"$oid":"55cba2476c522cafdb0555c3"},"location":{"coordinates":[-73.886055,40.84244899999999],"type":"Point"},"name":"Anthony \u0026 Joe'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0555c4"},"location":{"coordinates":[-73.9294293,40.6460989],"type":"Point"},"name":"All Nations"} +,{"_id":{"$oid":"55cba2476c522cafdb0555c5"},"location":{"coordinates":[-73.8683001,40.7094366],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0555c6"},"location":{"coordinates":[-74.0260583,40.621005],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0555c7"},"location":{"coordinates":[-73.94456269999999,40.7943036],"type":"Point"},"name":"New China King Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0555c8"},"location":{"coordinates":[-74.147217,40.631098],"type":"Point"},"name":"La Campena Pizzeria \u0026 Taqueria"} +,{"_id":{"$oid":"55cba2476c522cafdb0555c9"},"location":{"coordinates":[-73.96894,40.762954],"type":"Point"},"name":"Lighthouse International"} +,{"_id":{"$oid":"55cba2476c522cafdb0555ca"},"location":{"coordinates":[-73.892579,40.7273815],"type":"Point"},"name":"Hush Cafe Lounge \u0026 Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb0555cb"},"location":{"coordinates":[-73.99901129999999,40.7198596],"type":"Point"},"name":"Parigot"} +,{"_id":{"$oid":"55cba2476c522cafdb0555cc"},"location":{"coordinates":[-73.891607,40.8745275],"type":"Point"},"name":"Las Maravillas De Mexico Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0555cd"},"location":{"coordinates":[-74.002642,40.707451],"type":"Point"},"name":"Il Brigante"} +,{"_id":{"$oid":"55cba2476c522cafdb0555ce"},"location":{"coordinates":[-73.97338529999999,40.761523],"type":"Point"},"name":"Sony Club"} +,{"_id":{"$oid":"55cba2476c522cafdb0555cf"},"location":{"coordinates":[-73.9926363,40.7538399],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0555d0"},"location":{"coordinates":[-73.96102359999999,40.6298789],"type":"Point"},"name":"Kam Shing Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0555d1"},"location":{"coordinates":[-73.985477,40.728972],"type":"Point"},"name":"Dieci"} +,{"_id":{"$oid":"55cba2476c522cafdb0555d2"},"location":{"coordinates":[-73.8597082,40.7369904],"type":"Point"},"name":"Wing Lee Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0555d3"},"location":{"coordinates":[-73.95276489999999,40.8101402],"type":"Point"},"name":"Chuck E Cheese'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0555d4"},"location":{"coordinates":[-73.98103499999999,40.742178],"type":"Point"},"name":"Thainy"} +,{"_id":{"$oid":"55cba2476c522cafdb0555d5"},"location":{"coordinates":[-73.83212499999999,40.7145222],"type":"Point"},"name":"Thai Boulevard"} +,{"_id":{"$oid":"55cba2476c522cafdb0555d6"},"location":{"coordinates":[-73.9628321,40.70990250000001],"type":"Point"},"name":"Velvet Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb0555d7"},"location":{"coordinates":[-73.9102458,40.8856382],"type":"Point"},"name":"Pizza Chef"} +,{"_id":{"$oid":"55cba2476c522cafdb0555d8"},"location":{"coordinates":[-73.8926915,40.6622273],"type":"Point"},"name":"Hong Cheung Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0555d9"},"location":{"coordinates":[-74.00713809999999,40.7405525],"type":"Point"},"name":"Fig And Olive"} +,{"_id":{"$oid":"55cba2476c522cafdb0555da"},"location":{"coordinates":[-73.9046047,40.9067926],"type":"Point"},"name":"Dunkin' Donuts, Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb0555db"},"location":{"coordinates":[-73.85003019999999,40.9044494],"type":"Point"},"name":"New Red Flower Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0555dc"},"location":{"coordinates":[-73.93686699999999,40.802698],"type":"Point"},"name":"Hang Chou Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0555dd"},"location":{"coordinates":[-73.98879389999999,40.7194443],"type":"Point"},"name":"Bg Bar/Mehanata"} +,{"_id":{"$oid":"55cba2476c522cafdb0555de"},"location":{"coordinates":[-73.9855898,40.7503011],"type":"Point"},"name":"Tio Pio West"} +,{"_id":{"$oid":"55cba2476c522cafdb0555df"},"location":{"coordinates":[-73.9191522,40.8166525],"type":"Point"},"name":"Grill 149 Plus"} +,{"_id":{"$oid":"55cba2476c522cafdb0555e0"},"location":{"coordinates":[-74.1660553,40.5823983],"type":"Point"},"name":"Auntie Anne'S Pretzels"} +,{"_id":{"$oid":"55cba2476c522cafdb0555e1"},"location":{"coordinates":[-73.938251,40.84772],"type":"Point"},"name":"Mambi Steak House"} +,{"_id":{"$oid":"55cba2476c522cafdb0555e2"},"location":{"coordinates":[-73.8120227,40.76461279999999],"type":"Point"},"name":"Geo Si Gi"} +,{"_id":{"$oid":"55cba2476c522cafdb0555e3"},"location":{"coordinates":[-73.97166039999999,40.764832],"type":"Point"},"name":"Metropolitan Club"} +,{"_id":{"$oid":"55cba2476c522cafdb0555e4"},"location":{"coordinates":[-73.8056498,40.6975536],"type":"Point"},"name":"Shanghai Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0555e5"},"location":{"coordinates":[-73.8869325,40.8757178],"type":"Point"},"name":"La Cabana Salvadorena"} +,{"_id":{"$oid":"55cba2476c522cafdb0555e6"},"location":{"coordinates":[-74.012872,40.703472],"type":"Point"},"name":"Flavors"} +,{"_id":{"$oid":"55cba2476c522cafdb0555e7"},"location":{"coordinates":[-73.95972060000001,40.8077432],"type":"Point"},"name":"Alice'S Int'L Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0555e8"},"location":{"coordinates":[-73.873195,40.661631],"type":"Point"},"name":"556 El Cafe International"} +,{"_id":{"$oid":"55cba2476c522cafdb0555e9"},"location":{"coordinates":[-73.81072600000002,40.764891],"type":"Point"},"name":"Korean Bbq Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0555ea"},"location":{"coordinates":[-73.95440099999999,40.776198],"type":"Point"},"name":"Shiraz Nyc"} +,{"_id":{"$oid":"55cba2476c522cafdb0555eb"},"location":{"coordinates":[-73.8842031,40.8665358],"type":"Point"},"name":"Tequila Song"} +,{"_id":{"$oid":"55cba2476c522cafdb0555ec"},"location":{"coordinates":[-73.976489,40.786207],"type":"Point"},"name":"Alachi Masala Indian Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0555ed"},"location":{"coordinates":[-73.9937565,40.7402297],"type":"Point"},"name":"Boqueria"} +,{"_id":{"$oid":"55cba2476c522cafdb0555ee"},"location":{"coordinates":[-73.82866489999999,40.8677019],"type":"Point"},"name":"Panera Bread"} +,{"_id":{"$oid":"55cba2476c522cafdb0555ef"},"location":{"coordinates":[-73.8286346,40.8382652],"type":"Point"},"name":"Louie \u0026 Ernie'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0555f0"},"location":{"coordinates":[-73.9973581,40.6746533],"type":"Point"},"name":"9Th Street Luncheonette"} +,{"_id":{"$oid":"55cba2476c522cafdb0555f1"},"location":{"coordinates":[-74.0101342,40.7175552],"type":"Point"},"name":"Max Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0555f2"},"location":{"coordinates":[-73.9835068,40.729623],"type":"Point"},"name":"Tree"} +,{"_id":{"$oid":"55cba2476c522cafdb0555f3"},"location":{"coordinates":[-73.9948735,40.7441334],"type":"Point"},"name":"Malibu Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb0555f4"},"location":{"coordinates":[-73.8935493,40.7480732],"type":"Point"},"name":"Talk Of The Town Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0555f5"},"location":{"coordinates":[-73.87990479999999,40.74807819999999],"type":"Point"},"name":"La Escuelita Nueva Bar Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb0555f6"},"location":{"coordinates":[-73.981409,40.741829],"type":"Point"},"name":"Whitman And Bloom"} +,{"_id":{"$oid":"55cba2476c522cafdb0555f7"},"location":{"coordinates":[-73.9541584,40.71050169999999],"type":"Point"},"name":"Wow Bridge Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0555f8"},"location":{"coordinates":[-73.9914601,40.728255],"type":"Point"},"name":"Gyu-Kaku"} +,{"_id":{"$oid":"55cba2476c522cafdb0555f9"},"location":{"coordinates":[-73.964693,40.693787],"type":"Point"},"name":"Pillow"} +,{"_id":{"$oid":"55cba2476c522cafdb0555fa"},"location":{"coordinates":[-73.867552,40.89785],"type":"Point"},"name":"Celtic House"} +,{"_id":{"$oid":"55cba2476c522cafdb0555fb"},"location":{"coordinates":[-74.00363779999999,40.7161361],"type":"Point"},"name":"Civic Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb0555fc"},"location":{"coordinates":[-73.9271442,40.81938170000001],"type":"Point"},"name":"Giovanni'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0555fd"},"location":{"coordinates":[-73.98852699999999,40.752344],"type":"Point"},"name":"Just Salad"} +,{"_id":{"$oid":"55cba2476c522cafdb0555fe"},"location":{"coordinates":[-73.869945,40.7704394],"type":"Point"},"name":"Auntie Anne'S Pretzels"} +,{"_id":{"$oid":"55cba2476c522cafdb0555ff"},"location":{"coordinates":[-73.869945,40.7704394],"type":"Point"},"name":"Auntie Anne'S Pretzels"} +,{"_id":{"$oid":"55cba2476c522cafdb055600"},"location":{"coordinates":[-73.869123,40.7714584],"type":"Point"},"name":"Auntie Anne'S Pretzels"} +,{"_id":{"$oid":"55cba2476c522cafdb055601"},"location":{"coordinates":[-73.869123,40.7714584],"type":"Point"},"name":"Auntie Anne'S Pretzels"} +,{"_id":{"$oid":"55cba2476c522cafdb055602"},"location":{"coordinates":[-73.869945,40.7704394],"type":"Point"},"name":"Auntie Anne'S Pretzels"} +,{"_id":{"$oid":"55cba2476c522cafdb055603"},"location":{"coordinates":[-73.94966699999999,40.714173],"type":"Point"},"name":"Jr \u0026 Son"} +,{"_id":{"$oid":"55cba2476c522cafdb055604"},"location":{"coordinates":[-74.00014709999999,40.7307088],"type":"Point"},"name":"La Lanterna Di Vittorio"} +,{"_id":{"$oid":"55cba2476c522cafdb055605"},"location":{"coordinates":[-73.99798539999999,40.71835009999999],"type":"Point"},"name":"Da Gennaro"} +,{"_id":{"$oid":"55cba2476c522cafdb055606"},"location":{"coordinates":[-73.9829462,40.7222599],"type":"Point"},"name":"Solo Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb055607"},"location":{"coordinates":[-73.9914953,40.7599713],"type":"Point"},"name":"Nizza"} +,{"_id":{"$oid":"55cba2476c522cafdb055608"},"location":{"coordinates":[-73.9449224,40.8072813],"type":"Point"},"name":"Manna'S Soul Food"} +,{"_id":{"$oid":"55cba2476c522cafdb055609"},"location":{"coordinates":[-73.9183094,40.8150432],"type":"Point"},"name":"Sunlight Pizza Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb05560a"},"location":{"coordinates":[-73.916676,40.8176569],"type":"Point"},"name":"Parrilla Latina"} +,{"_id":{"$oid":"55cba2476c522cafdb05560b"},"location":{"coordinates":[-73.91802170000001,40.7672664],"type":"Point"},"name":"Favela"} +,{"_id":{"$oid":"55cba2476c522cafdb05560c"},"location":{"coordinates":[-73.982709,40.7713759],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb05560d"},"location":{"coordinates":[-74.126327,40.613065],"type":"Point"},"name":"Staten Island Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb05560e"},"location":{"coordinates":[-73.9937528,40.6366357],"type":"Point"},"name":"Orchidea Restaurant \u0026 Catering"} +,{"_id":{"$oid":"55cba2476c522cafdb05560f"},"location":{"coordinates":[-73.88313889999999,40.8380259],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb055610"},"location":{"coordinates":[-73.9186927,40.8641934],"type":"Point"},"name":"Jimbos Hamburger"} +,{"_id":{"$oid":"55cba2476c522cafdb055611"},"location":{"coordinates":[-73.9613169,40.68461],"type":"Point"},"name":"Blue Ribbon Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb055612"},"location":{"coordinates":[-73.8344941,40.8380223],"type":"Point"},"name":"La Salle Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb055613"},"location":{"coordinates":[-73.9681059,40.6353],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb055614"},"location":{"coordinates":[-73.9584155,40.6084617],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb055615"},"location":{"coordinates":[-73.731122,40.727582],"type":"Point"},"name":"Pickles"} +,{"_id":{"$oid":"55cba2476c522cafdb055616"},"location":{"coordinates":[-73.8316974,40.7149869],"type":"Point"},"name":"Troyka/Da Mikelle Palace/Mikelle Corner/Sushi \u0026 Steak House"} +,{"_id":{"$oid":"55cba2476c522cafdb055617"},"location":{"coordinates":[-73.902483,40.8583238],"type":"Point"},"name":"Tropical Bar Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055618"},"location":{"coordinates":[-73.9741202,40.7440132],"type":"Point"},"name":"Pizza \u0026 Pita"} +,{"_id":{"$oid":"55cba2476c522cafdb055619"},"location":{"coordinates":[-74.03024700000002,40.6171836],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb05561a"},"location":{"coordinates":[-73.9375563,40.6226175],"type":"Point"},"name":"Dunkin Donuts/Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb05561b"},"location":{"coordinates":[-73.9093809,40.6171757],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb05561c"},"location":{"coordinates":[-74.0265979,40.633868],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb05561d"},"location":{"coordinates":[-73.95749409999999,40.6084638],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb05561e"},"location":{"coordinates":[-73.9470037,40.6325052],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb05561f"},"location":{"coordinates":[-74.0021385,40.6074187],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb055620"},"location":{"coordinates":[-74.0226138,40.6287925],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb055621"},"location":{"coordinates":[-73.99050299999999,40.761854],"type":"Point"},"name":"Pietrasanta"} +,{"_id":{"$oid":"55cba2476c522cafdb055622"},"location":{"coordinates":[-74.0045899,40.721644],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb055623"},"location":{"coordinates":[-73.9069899,40.7025174],"type":"Point"},"name":"International Bake Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb055624"},"location":{"coordinates":[-74.0000854,40.7293879],"type":"Point"},"name":"Food In Motion"} +,{"_id":{"$oid":"55cba2476c522cafdb055625"},"location":{"coordinates":[-73.8316859,40.7149778],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb055626"},"location":{"coordinates":[-73.958392,40.8010699],"type":"Point"},"name":"Cafe Amrita"} +,{"_id":{"$oid":"55cba2476c522cafdb055627"},"location":{"coordinates":[-74.1502065,40.5511846],"type":"Point"},"name":"Benvenuti Pizzeria \u0026 Trattoria"} +,{"_id":{"$oid":"55cba2476c522cafdb055628"},"location":{"coordinates":[-73.97577,40.748385],"type":"Point"},"name":"Wharf Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb055629"},"location":{"coordinates":[-73.959606,40.5817637],"type":"Point"},"name":"Neptune Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05562a"},"location":{"coordinates":[-73.75354200000001,40.60204],"type":"Point"},"name":"Classic Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb05562b"},"location":{"coordinates":[-73.9823413,40.761032],"type":"Point"},"name":"Bobby Van'S Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb05562c"},"location":{"coordinates":[-73.98942679999999,40.7395115],"type":"Point"},"name":"Zaro'S Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb05562d"},"location":{"coordinates":[-73.80197,40.76055849999999],"type":"Point"},"name":"Cafe Minto"} +,{"_id":{"$oid":"55cba2476c522cafdb05562e"},"location":{"coordinates":[-73.8831292,40.6468766],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb05562f"},"location":{"coordinates":[-73.987714,40.72184],"type":"Point"},"name":"Tre"} +,{"_id":{"$oid":"55cba2476c522cafdb055630"},"location":{"coordinates":[-73.9954072,40.7402183],"type":"Point"},"name":"Telegraphe Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055631"},"location":{"coordinates":[-73.91867599999999,40.6353781],"type":"Point"},"name":"Papa John'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055632"},"location":{"coordinates":[-73.8690515,40.7094364],"type":"Point"},"name":"Cold Stone Creamery"} +,{"_id":{"$oid":"55cba2476c522cafdb055633"},"location":{"coordinates":[-73.9732006,40.78465720000001],"type":"Point"},"name":"Cilantro"} +,{"_id":{"$oid":"55cba2476c522cafdb055634"},"location":{"coordinates":[-73.806759,40.762885],"type":"Point"},"name":"Cosmos Room Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055635"},"location":{"coordinates":[-73.7822056,40.6434612],"type":"Point"},"name":"Tuscany Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055636"},"location":{"coordinates":[-74.0077811,40.7110299],"type":"Point"},"name":"Pita Express"} +,{"_id":{"$oid":"55cba2476c522cafdb055637"},"location":{"coordinates":[-73.8119146,40.7051677],"type":"Point"},"name":"Pupuseria El Comal"} +,{"_id":{"$oid":"55cba2476c522cafdb055638"},"location":{"coordinates":[-74.10327,40.615571],"type":"Point"},"name":"New Win Hing Iii Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055639"},"location":{"coordinates":[-73.9771001,40.7515617],"type":"Point"},"name":"Cipriani 42Nd Street"} +,{"_id":{"$oid":"55cba2476c522cafdb05563a"},"location":{"coordinates":[-73.9560854,40.7785511],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb05563b"},"location":{"coordinates":[-73.9815467,40.7584118],"type":"Point"},"name":"Ropes \u0026 Gray Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05563c"},"location":{"coordinates":[-73.953991,40.774227],"type":"Point"},"name":"Johnny Foxes"} +,{"_id":{"$oid":"55cba2476c522cafdb05563d"},"location":{"coordinates":[-73.9487778,40.7223583],"type":"Point"},"name":"Uro Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05563e"},"location":{"coordinates":[-74.0274041,40.6243774],"type":"Point"},"name":"Best Western Gregory Hotel"} +,{"_id":{"$oid":"55cba2476c522cafdb05563f"},"location":{"coordinates":[-73.855994,40.7067069],"type":"Point"},"name":"Pizza Classica"} +,{"_id":{"$oid":"55cba2476c522cafdb055640"},"location":{"coordinates":[-73.80334599999999,40.7181659],"type":"Point"},"name":"J \u0026 Joe Deli \u0026 Grocery"} +,{"_id":{"$oid":"55cba2476c522cafdb055641"},"location":{"coordinates":[-73.9240962,40.817374],"type":"Point"},"name":"Lincoln Towers Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055642"},"location":{"coordinates":[-73.9402712,40.8147746],"type":"Point"},"name":"Tower'S Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055643"},"location":{"coordinates":[-73.8812856,40.88064869999999],"type":"Point"},"name":"Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb055644"},"location":{"coordinates":[-94.8123284,36.9581032],"type":"Point"},"name":"New Malaysia Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055645"},"location":{"coordinates":[-73.98974,40.5998328],"type":"Point"},"name":"Kowloon Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055646"},"location":{"coordinates":[-74.0012674,40.7352797],"type":"Point"},"name":"Morandi"} +,{"_id":{"$oid":"55cba2476c522cafdb055647"},"location":{"coordinates":[-73.9911039,40.6862784],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb055648"},"location":{"coordinates":[-74.0060471,40.7336781],"type":"Point"},"name":"Starbucks Coffee (Store#11650)"} +,{"_id":{"$oid":"55cba2476c522cafdb055649"},"location":{"coordinates":[-74.00263389999999,40.71897389999999],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb05564a"},"location":{"coordinates":[-73.9005129,40.6763243],"type":"Point"},"name":"Goldenkrust Carribbean Bakery \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb05564b"},"location":{"coordinates":[-73.83350999999999,40.7687122],"type":"Point"},"name":"Papa Johns Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05564c"},"location":{"coordinates":[-73.9540407,40.7303531],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb05564d"},"location":{"coordinates":[-73.9613743,40.598088],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb05564e"},"location":{"coordinates":[-73.98908089999999,40.7361008],"type":"Point"},"name":"Maoz Vegetarian"} +,{"_id":{"$oid":"55cba2476c522cafdb05564f"},"location":{"coordinates":[-74.0054827,40.7330986],"type":"Point"},"name":"Pinto"} +,{"_id":{"$oid":"55cba2476c522cafdb055650"},"location":{"coordinates":[-73.9740994,40.7893346],"type":"Point"},"name":"Bodrum"} +,{"_id":{"$oid":"55cba2476c522cafdb055651"},"location":{"coordinates":[-73.8649315,40.8320367],"type":"Point"},"name":"Willie'S Steak House"} +,{"_id":{"$oid":"55cba2476c522cafdb055652"},"location":{"coordinates":[-73.869255,40.7488819],"type":"Point"},"name":"Cafe 2000 Corona"} +,{"_id":{"$oid":"55cba2476c522cafdb055653"},"location":{"coordinates":[-73.8671664,40.7671571],"type":"Point"},"name":"Laguardia Plaza Hotel/Pavillion Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb055654"},"location":{"coordinates":[-73.87863759999999,40.7397117],"type":"Point"},"name":"Dubois Pastry"} +,{"_id":{"$oid":"55cba2476c522cafdb055655"},"location":{"coordinates":[-73.9830119,40.7492418],"type":"Point"},"name":"Slattery'S Midtown Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb055656"},"location":{"coordinates":[-73.9141319,40.7009654],"type":"Point"},"name":"Cholula Deli Grocery"} +,{"_id":{"$oid":"55cba2476c522cafdb055657"},"location":{"coordinates":[-73.9988916,40.7339373],"type":"Point"},"name":"Lenny'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055658"},"location":{"coordinates":[-73.8838823,40.85383179999999],"type":"Point"},"name":"Angel'S Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb055659"},"location":{"coordinates":[-73.939025,40.837532],"type":"Point"},"name":"Don Panchito Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05565a"},"location":{"coordinates":[-73.97658489999999,40.7511352],"type":"Point"},"name":"Pret A Manger"} +,{"_id":{"$oid":"55cba2476c522cafdb05565b"},"location":{"coordinates":[-73.952434,40.77741],"type":"Point"},"name":"Molly Pitchers Ale House"} +,{"_id":{"$oid":"55cba2476c522cafdb05565c"},"location":{"coordinates":[-73.9904798,40.74408330000001],"type":"Point"},"name":"Hill Country"} +,{"_id":{"$oid":"55cba2476c522cafdb05565d"},"location":{"coordinates":[-73.9912025,40.6851884],"type":"Point"},"name":"Ceol"} +,{"_id":{"$oid":"55cba2476c522cafdb05565e"},"location":{"coordinates":[-73.9859173,40.7633466],"type":"Point"},"name":"Hampton Inn"} +,{"_id":{"$oid":"55cba2476c522cafdb05565f"},"location":{"coordinates":[-73.82887699999999,40.71255499999999],"type":"Point"},"name":"China Garden Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055660"},"location":{"coordinates":[-74.07734719999999,40.6420544],"type":"Point"},"name":"Enoteca Maria"} +,{"_id":{"$oid":"55cba2476c522cafdb055661"},"location":{"coordinates":[-73.99401999999999,40.713393],"type":"Point"},"name":"East Market Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055662"},"location":{"coordinates":[-73.983256,40.728521],"type":"Point"},"name":"Quintessence Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055663"},"location":{"coordinates":[-74.16403500000001,40.5781824],"type":"Point"},"name":"Panera Bread"} +,{"_id":{"$oid":"55cba2476c522cafdb055664"},"location":{"coordinates":[-73.942364,40.8014545],"type":"Point"},"name":"New Ivoire"} +,{"_id":{"$oid":"55cba2476c522cafdb055665"},"location":{"coordinates":[-73.8327345,40.7599528],"type":"Point"},"name":"Canton Gourmet Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055666"},"location":{"coordinates":[-73.926993,40.697699],"type":"Point"},"name":"Christopher'S Palace"} +,{"_id":{"$oid":"55cba2476c522cafdb055667"},"location":{"coordinates":[-73.9879141,40.7223554],"type":"Point"},"name":"200 Orchard Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb055668"},"location":{"coordinates":[-73.98219399999999,40.60516],"type":"Point"},"name":"234 China City"} +,{"_id":{"$oid":"55cba2476c522cafdb055669"},"location":{"coordinates":[-73.7550385,40.7001533],"type":"Point"},"name":"Jamaican Rose Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb05566a"},"location":{"coordinates":[-73.9447083,40.8137377],"type":"Point"},"name":"Rusty'S Flavor"} +,{"_id":{"$oid":"55cba2476c522cafdb05566b"},"location":{"coordinates":[-73.9970041,40.6806091],"type":"Point"},"name":"World Pie"} +,{"_id":{"$oid":"55cba2476c522cafdb05566c"},"location":{"coordinates":[-73.977329,40.783994],"type":"Point"},"name":"Momoya Amsterdam"} +,{"_id":{"$oid":"55cba2476c522cafdb05566d"},"location":{"coordinates":[-73.9773584,40.6813676],"type":"Point"},"name":"Alchemy"} +,{"_id":{"$oid":"55cba2476c522cafdb05566e"},"location":{"coordinates":[-73.9534173,40.7821886],"type":"Point"},"name":"Peri Ela"} +,{"_id":{"$oid":"55cba2476c522cafdb05566f"},"location":{"coordinates":[-73.9061522,40.879579],"type":"Point"},"name":"Golden City Chinese Takeout"} +,{"_id":{"$oid":"55cba2476c522cafdb055670"},"location":{"coordinates":[-73.9852499,40.75177300000001],"type":"Point"},"name":"Olympic Pita"} +,{"_id":{"$oid":"55cba2476c522cafdb055671"},"location":{"coordinates":[-73.9398709,40.7986343],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055672"},"location":{"coordinates":[-73.953137,40.822226],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055673"},"location":{"coordinates":[-73.9505921,40.826938],"type":"Point"},"name":"Mcdonalds"} +,{"_id":{"$oid":"55cba2476c522cafdb055674"},"location":{"coordinates":[-73.9471828,40.83043139999999],"type":"Point"},"name":"El Nuevo Amanecer Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055675"},"location":{"coordinates":[-73.9917634,40.7643026],"type":"Point"},"name":"Desi Deli Punjabi Dhaba"} +,{"_id":{"$oid":"55cba2476c522cafdb055676"},"location":{"coordinates":[-73.96543299999999,40.801375],"type":"Point"},"name":"Thai Market"} +,{"_id":{"$oid":"55cba2476c522cafdb055677"},"location":{"coordinates":[-73.915266,40.6035714],"type":"Point"},"name":"Nick'S Live Lobsters"} +,{"_id":{"$oid":"55cba2476c522cafdb055678"},"location":{"coordinates":[-73.91212039999999,40.6134896],"type":"Point"},"name":"King'S Wok"} +,{"_id":{"$oid":"55cba2476c522cafdb055679"},"location":{"coordinates":[-73.9034959,40.7448834],"type":"Point"},"name":"The Cuckoo'S Nest"} +,{"_id":{"$oid":"55cba2476c522cafdb05567a"},"location":{"coordinates":[-73.967985,40.757365],"type":"Point"},"name":"Hakata"} +,{"_id":{"$oid":"55cba2476c522cafdb05567b"},"location":{"coordinates":[-74.0036229,40.7391073],"type":"Point"},"name":"Zampa"} +,{"_id":{"$oid":"55cba2476c522cafdb05567c"},"location":{"coordinates":[-73.9939169,40.71370719999999],"type":"Point"},"name":"Jin Feng"} +,{"_id":{"$oid":"55cba2476c522cafdb05567d"},"location":{"coordinates":[-73.9863984,40.7535778],"type":"Point"},"name":"Gabby O'Haras"} +,{"_id":{"$oid":"55cba2476c522cafdb05567e"},"location":{"coordinates":[-73.97724649999999,40.7266747],"type":"Point"},"name":"Matilda"} +,{"_id":{"$oid":"55cba2476c522cafdb05567f"},"location":{"coordinates":[-73.947887,40.781805],"type":"Point"},"name":"Koito Japanese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055680"},"location":{"coordinates":[-73.9963808,40.6901494],"type":"Point"},"name":"Hibino"} +,{"_id":{"$oid":"55cba2476c522cafdb055681"},"location":{"coordinates":[-73.9936124,40.7312238],"type":"Point"},"name":"Cosi"} +,{"_id":{"$oid":"55cba2476c522cafdb055682"},"location":{"coordinates":[-73.91615399999999,40.8501446],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055683"},"location":{"coordinates":[-73.9809786,40.7780386],"type":"Point"},"name":"Seven Turkish Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb055684"},"location":{"coordinates":[-73.88713059999999,40.7470867],"type":"Point"},"name":"Mangos"} +,{"_id":{"$oid":"55cba2476c522cafdb055685"},"location":{"coordinates":[-73.99135199999999,40.755652],"type":"Point"},"name":"Golden Krust Caribbean Bakery \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb055686"},"location":{"coordinates":[-73.981843,40.741207],"type":"Point"},"name":"East Japanese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055687"},"location":{"coordinates":[-73.97472990000001,40.75703],"type":"Point"},"name":"Colgate Palmolive"} +,{"_id":{"$oid":"55cba2476c522cafdb055688"},"location":{"coordinates":[-73.94440449999999,40.6844458],"type":"Point"},"name":"Common Grounds Coffee House"} +,{"_id":{"$oid":"55cba2476c522cafdb055689"},"location":{"coordinates":[-73.94745999999999,40.80923],"type":"Point"},"name":"Tropical Grill \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05568a"},"location":{"coordinates":[-73.9779667,40.7870598],"type":"Point"},"name":"Ouest"} +,{"_id":{"$oid":"55cba2476c522cafdb05568b"},"location":{"coordinates":[-73.9253475,40.5927188],"type":"Point"},"name":"Beach Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05568c"},"location":{"coordinates":[-73.9234825,40.8643445],"type":"Point"},"name":"Maracas Steakhouse"} +,{"_id":{"$oid":"55cba2476c522cafdb05568d"},"location":{"coordinates":[-73.788325,40.752124],"type":"Point"},"name":"Michael \u0026 Sons Italian Food \u0026 Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05568e"},"location":{"coordinates":[-73.92377789999999,40.8426183],"type":"Point"},"name":"El Aguila Bar Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05568f"},"location":{"coordinates":[-73.933629,40.702537],"type":"Point"},"name":"940 Flushing Lounge/Arancini Bros"} +,{"_id":{"$oid":"55cba2476c522cafdb055690"},"location":{"coordinates":[-73.8505914,40.8299432],"type":"Point"},"name":"Cross Bronx Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb055691"},"location":{"coordinates":[-73.980583,40.758071],"type":"Point"},"name":"Pig 'N' Whistle"} +,{"_id":{"$oid":"55cba2476c522cafdb055692"},"location":{"coordinates":[-73.882857,40.666044],"type":"Point"},"name":"York Chan Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055693"},"location":{"coordinates":[-74.0027657,40.7270337],"type":"Point"},"name":"Hundred Acres"} +,{"_id":{"$oid":"55cba2476c522cafdb055694"},"location":{"coordinates":[-73.9041884,40.9056123],"type":"Point"},"name":"Golden Phoenix"} +,{"_id":{"$oid":"55cba2476c522cafdb055695"},"location":{"coordinates":[-73.94180709999999,40.8429016],"type":"Point"},"name":"Shangri-La Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb055696"},"location":{"coordinates":[-73.989566,40.755211],"type":"Point"},"name":"Dunkin' Donuts, Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb055697"},"location":{"coordinates":[-73.83165079999999,40.7648952],"type":"Point"},"name":"Debasaki"} +,{"_id":{"$oid":"55cba2476c522cafdb055698"},"location":{"coordinates":[-73.986284,40.727445],"type":"Point"},"name":"Klimat"} +,{"_id":{"$oid":"55cba2476c522cafdb055699"},"location":{"coordinates":[-73.96294929999999,40.7124896],"type":"Point"},"name":"Simple Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05569a"},"location":{"coordinates":[-73.880875,40.8822962],"type":"Point"},"name":"Little Michaels Deli And Sald Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05569b"},"location":{"coordinates":[-73.94627899999999,40.800386],"type":"Point"},"name":"Empire Corner Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb05569c"},"location":{"coordinates":[-73.95756639999999,40.7196912],"type":"Point"},"name":"Cafe Colette"} +,{"_id":{"$oid":"55cba2476c522cafdb05569d"},"location":{"coordinates":[-73.770297,40.7639],"type":"Point"},"name":"Monahan \u0026 Fitzgerald"} +,{"_id":{"$oid":"55cba2476c522cafdb05569e"},"location":{"coordinates":[-73.9513575,40.7724868],"type":"Point"},"name":"Caedmon School Winstead Caterers"} +,{"_id":{"$oid":"55cba2476c522cafdb05569f"},"location":{"coordinates":[-73.9827037,40.7684141],"type":"Point"},"name":"Landmarc"} +,{"_id":{"$oid":"55cba2476c522cafdb0556a0"},"location":{"coordinates":[-73.81930600000001,40.688403],"type":"Point"},"name":"Anil'S Roti Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb0556a1"},"location":{"coordinates":[-73.8141255,40.6903658],"type":"Point"},"name":"Singh'S Roti Shop \u0026 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0556a2"},"location":{"coordinates":[-73.79003349999999,40.6732502],"type":"Point"},"name":"Papa John'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0556a3"},"location":{"coordinates":[-74.0021628,40.7338144],"type":"Point"},"name":"The Stonewall Inn"} +,{"_id":{"$oid":"55cba2476c522cafdb0556a4"},"location":{"coordinates":[-73.85312069999999,40.83404600000001],"type":"Point"},"name":"Estrellita Poblana # 1"} +,{"_id":{"$oid":"55cba2476c522cafdb0556a5"},"location":{"coordinates":[-73.8815718,40.7020579],"type":"Point"},"name":"Glendale Bagels"} +,{"_id":{"$oid":"55cba2476c522cafdb0556a6"},"location":{"coordinates":[-73.92907199999999,40.69330799999999],"type":"Point"},"name":"Broadway Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0556a7"},"location":{"coordinates":[-73.9439178,40.8156066],"type":"Point"},"name":"Popeyes Chicken \u0026 Biscuits"} +,{"_id":{"$oid":"55cba2476c522cafdb0556a8"},"location":{"coordinates":[-73.992255,40.749712],"type":"Point"},"name":"Coco Moka Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0556a9"},"location":{"coordinates":[-73.8896221,40.701014],"type":"Point"},"name":"New York Grill Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0556aa"},"location":{"coordinates":[-73.965024,40.625966],"type":"Point"},"name":"Schnitzi Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0556ab"},"location":{"coordinates":[-73.7545706,40.6047881],"type":"Point"},"name":"Ralphs'S Coffee Shop \u0026 Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb0556ac"},"location":{"coordinates":[-74.0001954,40.7306014],"type":"Point"},"name":"Groove"} +,{"_id":{"$oid":"55cba2476c522cafdb0556ad"},"location":{"coordinates":[-73.9736745,40.7589832],"type":"Point"},"name":"Mckinsey \u0026 Company Cafeteria"} +,{"_id":{"$oid":"55cba2476c522cafdb0556ae"},"location":{"coordinates":[-74.00184089999999,40.6839076],"type":"Point"},"name":"Petit Crevette"} +,{"_id":{"$oid":"55cba2476c522cafdb0556af"},"location":{"coordinates":[-73.802077,40.694239],"type":"Point"},"name":"Lynx Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0556b0"},"location":{"coordinates":[-73.85243229999999,40.6933349],"type":"Point"},"name":"Popeyes Chicken \u0026 Biscuits"} +,{"_id":{"$oid":"55cba2476c522cafdb0556b1"},"location":{"coordinates":[-73.9857229,40.6691999],"type":"Point"},"name":"El Viejo Yayo Rest Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb0556b2"},"location":{"coordinates":[-73.8031268,40.7077805],"type":"Point"},"name":"Pio Pio Riko"} +,{"_id":{"$oid":"55cba2476c522cafdb0556b3"},"location":{"coordinates":[-73.978509,40.724974],"type":"Point"},"name":"Babel"} +,{"_id":{"$oid":"55cba2476c522cafdb0556b4"},"location":{"coordinates":[-73.919367,40.6390298],"type":"Point"},"name":"Fu Sing Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0556b5"},"location":{"coordinates":[-73.9517051,40.7699713],"type":"Point"},"name":"Gotham Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0556b6"},"location":{"coordinates":[-73.9414927,40.8228713],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0556b7"},"location":{"coordinates":[-73.9929451,40.6011022],"type":"Point"},"name":"Tortillas King 86"} +,{"_id":{"$oid":"55cba2476c522cafdb0556b8"},"location":{"coordinates":[-73.95796059999999,40.7655954],"type":"Point"},"name":"Lenny'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0556b9"},"location":{"coordinates":[-73.87291379999999,40.7422712],"type":"Point"},"name":"La Union Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0556ba"},"location":{"coordinates":[-74.0033022,40.7235057],"type":"Point"},"name":"Aurora Soho"} +,{"_id":{"$oid":"55cba2476c522cafdb0556bb"},"location":{"coordinates":[-73.85506,40.885775],"type":"Point"},"name":"New Taste West Indian Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0556bc"},"location":{"coordinates":[-73.9564981,40.7139033],"type":"Point"},"name":"Fette Sau"} +,{"_id":{"$oid":"55cba2476c522cafdb0556bd"},"location":{"coordinates":[-73.990101,40.7395518],"type":"Point"},"name":"Wichcraft"} +,{"_id":{"$oid":"55cba2476c522cafdb0556be"},"location":{"coordinates":[-73.980025,40.777609],"type":"Point"},"name":"Lime Leaf"} +,{"_id":{"$oid":"55cba2476c522cafdb0556bf"},"location":{"coordinates":[-73.9500058,40.7061857],"type":"Point"},"name":"Evilolive Pizza Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0556c0"},"location":{"coordinates":[-73.988545,40.7578407],"type":"Point"},"name":"Top Of The Times"} +,{"_id":{"$oid":"55cba2476c522cafdb0556c1"},"location":{"coordinates":[-73.95653399999999,40.776257],"type":"Point"},"name":"Flex Mussels"} +,{"_id":{"$oid":"55cba2476c522cafdb0556c2"},"location":{"coordinates":[-73.912685,40.837999],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb0556c3"},"location":{"coordinates":[-73.9448148,40.7153863],"type":"Point"},"name":"Oak Wine Bar \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0556c4"},"location":{"coordinates":[-73.92245900000002,40.808622],"type":"Point"},"name":"414 Latino Restaurant Sports Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0556c5"},"location":{"coordinates":[-73.9975828,40.7220725],"type":"Point"},"name":"Ed'S Lobster Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0556c6"},"location":{"coordinates":[-73.8362306,40.7868594],"type":"Point"},"name":"Five Guys Burgers And Fries"} +,{"_id":{"$oid":"55cba2476c522cafdb0556c7"},"location":{"coordinates":[-73.963886,40.708999],"type":"Point"},"name":"Avenue Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0556c8"},"location":{"coordinates":[-73.9011132,40.7153923],"type":"Point"},"name":"La Bella Mariella"} +,{"_id":{"$oid":"55cba2476c522cafdb0556c9"},"location":{"coordinates":[-74.0020555,40.727089],"type":"Point"},"name":"Local Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb0556ca"},"location":{"coordinates":[-73.9418626,40.6708492],"type":"Point"},"name":"Kingston Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0556cb"},"location":{"coordinates":[-73.87260409999999,40.6837512],"type":"Point"},"name":"Original Mike'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0556cc"},"location":{"coordinates":[-73.9859171,40.7397459],"type":"Point"},"name":"Organique"} +,{"_id":{"$oid":"55cba2476c522cafdb0556cd"},"location":{"coordinates":[-73.92261289999999,40.8171303],"type":"Point"},"name":"Dunkin' Donuts/Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb0556ce"},"location":{"coordinates":[-73.9827825,40.7437194],"type":"Point"},"name":"Resto"} +,{"_id":{"$oid":"55cba2476c522cafdb0556cf"},"location":{"coordinates":[-73.8884427,40.7432428],"type":"Point"},"name":"Woodside Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0556d0"},"location":{"coordinates":[-73.9827085,40.7715082],"type":"Point"},"name":"P.J. Clarke'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0556d1"},"location":{"coordinates":[-73.9476379,40.7150599],"type":"Point"},"name":"Destefano'S Steakhouse"} +,{"_id":{"$oid":"55cba2476c522cafdb0556d2"},"location":{"coordinates":[-73.94227169999999,40.6670155],"type":"Point"},"name":"Mermelstein Caterers"} +,{"_id":{"$oid":"55cba2476c522cafdb0556d3"},"location":{"coordinates":[-74.00892189999999,40.6467494],"type":"Point"},"name":"Luigi'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0556d4"},"location":{"coordinates":[-73.92804579999999,40.7555927],"type":"Point"},"name":"Cafe Triskell"} +,{"_id":{"$oid":"55cba2476c522cafdb0556d5"},"location":{"coordinates":[-73.98273999999999,40.742976],"type":"Point"},"name":"Chennai Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb0556d6"},"location":{"coordinates":[-73.9373485,40.8386931],"type":"Point"},"name":"The Third Palm Tree"} +,{"_id":{"$oid":"55cba2476c522cafdb0556d7"},"location":{"coordinates":[-73.956518,40.675341],"type":"Point"},"name":"Bombay Masala"} +,{"_id":{"$oid":"55cba2476c522cafdb0556d8"},"location":{"coordinates":[-73.92014999999999,40.754381],"type":"Point"},"name":"Delicias Manabitas Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0556d9"},"location":{"coordinates":[-73.9206184,40.6193242],"type":"Point"},"name":"Vikki Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0556da"},"location":{"coordinates":[-73.889582,40.8691728],"type":"Point"},"name":"My Place Family Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0556db"},"location":{"coordinates":[-73.84688919999999,40.8540686],"type":"Point"},"name":"Au Bon Pain"} +,{"_id":{"$oid":"55cba2476c522cafdb0556dc"},"location":{"coordinates":[-73.8992435,40.8676981],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0556dd"},"location":{"coordinates":[-73.8739659,40.7769271],"type":"Point"},"name":"Au Bon Pain"} +,{"_id":{"$oid":"55cba2476c522cafdb0556de"},"location":{"coordinates":[-73.8739659,40.7769271],"type":"Point"},"name":"Au Bon Pain"} +,{"_id":{"$oid":"55cba2476c522cafdb0556df"},"location":{"coordinates":[-73.94220279999999,40.7278983],"type":"Point"},"name":"The Place Bar \u0026 Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb0556e0"},"location":{"coordinates":[-73.983497,40.765407],"type":"Point"},"name":"Chai Thai Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0556e1"},"location":{"coordinates":[-73.8739659,40.7769271],"type":"Point"},"name":"Au Bon Pain"} +,{"_id":{"$oid":"55cba2476c522cafdb0556e2"},"location":{"coordinates":[-73.8739659,40.7769271],"type":"Point"},"name":"Au Bon Pain"} +,{"_id":{"$oid":"55cba2476c522cafdb0556e3"},"location":{"coordinates":[-73.8739659,40.7769271],"type":"Point"},"name":"Au Bon Pain"} +,{"_id":{"$oid":"55cba2476c522cafdb0556e4"},"location":{"coordinates":[-73.9949086,40.7497108],"type":"Point"},"name":"Gardenia Grocery \u0026 Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb0556e5"},"location":{"coordinates":[-73.8682449,40.7570462],"type":"Point"},"name":"Caridad Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0556e6"},"location":{"coordinates":[-73.96337989999999,40.7623739],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0556e7"},"location":{"coordinates":[-73.95785699999999,40.7699336],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0556e8"},"location":{"coordinates":[-73.986094,40.766907],"type":"Point"},"name":"Route 66 Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0556e9"},"location":{"coordinates":[-73.9899143,40.7562054],"type":"Point"},"name":"New York Times Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0556ea"},"location":{"coordinates":[-73.98295379999999,40.7690781],"type":"Point"},"name":"Mandarin Oriental Hotel"} +,{"_id":{"$oid":"55cba2476c522cafdb0556eb"},"location":{"coordinates":[-73.9934526,40.6880327],"type":"Point"},"name":"Cafe Chili"} +,{"_id":{"$oid":"55cba2476c522cafdb0556ec"},"location":{"coordinates":[-73.9462197,40.8169283],"type":"Point"},"name":"Baraka Buffet"} +,{"_id":{"$oid":"55cba2476c522cafdb0556ed"},"location":{"coordinates":[-73.8672423,40.8545681],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb0556ee"},"location":{"coordinates":[-73.870481,40.678412],"type":"Point"},"name":"Imperial Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0556ef"},"location":{"coordinates":[-73.868284,40.708464],"type":"Point"},"name":"Nysc/Mix Stirs"} +,{"_id":{"$oid":"55cba2476c522cafdb0556f0"},"location":{"coordinates":[-74.004755,40.718536],"type":"Point"},"name":"B Flat"} +,{"_id":{"$oid":"55cba2476c522cafdb0556f1"},"location":{"coordinates":[-73.973911,40.7532719],"type":"Point"},"name":"Uncle Charlie"} +,{"_id":{"$oid":"55cba2476c522cafdb0556f2"},"location":{"coordinates":[-73.94061200000002,40.806219],"type":"Point"},"name":"Charlie'S Place"} +,{"_id":{"$oid":"55cba2476c522cafdb0556f3"},"location":{"coordinates":[-73.9867065,40.6940105],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0556f4"},"location":{"coordinates":[-73.9758689,40.7570036],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0556f5"},"location":{"coordinates":[-74.1660553,40.5823983],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0556f6"},"location":{"coordinates":[-73.99057499999999,40.71775239999999],"type":"Point"},"name":"Roasting Plant"} +,{"_id":{"$oid":"55cba2476c522cafdb0556f7"},"location":{"coordinates":[-73.99319899999999,40.7337952],"type":"Point"},"name":"The Grey Dog'S Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0556f8"},"location":{"coordinates":[-73.9765845,40.763336],"type":"Point"},"name":"Benihana Of Tokyo"} +,{"_id":{"$oid":"55cba2476c522cafdb0556f9"},"location":{"coordinates":[-73.9734971,40.7569979],"type":"Point"},"name":"Inside Park At St. Bart'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0556fa"},"location":{"coordinates":[-74.2369855,40.5204892],"type":"Point"},"name":"Rollerjam Usa"} +,{"_id":{"$oid":"55cba2476c522cafdb0556fb"},"location":{"coordinates":[-73.856735,40.830626],"type":"Point"},"name":"D'Angelo'S Pizza And Pancho'S Mexican Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0556fc"},"location":{"coordinates":[-73.83225829999999,40.8470096],"type":"Point"},"name":"Georges Family Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0556fd"},"location":{"coordinates":[-73.96772899999999,40.757256],"type":"Point"},"name":"Tomi Jazz"} +,{"_id":{"$oid":"55cba2476c522cafdb0556fe"},"location":{"coordinates":[-73.8789931,40.7125555],"type":"Point"},"name":"New Toyo Japanese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0556ff"},"location":{"coordinates":[-73.7822056,40.6434612],"type":"Point"},"name":"Sbarro/Greenwich Village Bistro"} +,{"_id":{"$oid":"55cba2476c522cafdb055700"},"location":{"coordinates":[-73.7822056,40.6434612],"type":"Point"},"name":"Idlewild Wine Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb055701"},"location":{"coordinates":[-73.922063,40.680996],"type":"Point"},"name":"New Great Taste Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055702"},"location":{"coordinates":[-73.9958132,40.7134595],"type":"Point"},"name":"Yung Sun Seafood Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055703"},"location":{"coordinates":[-73.7562452,40.74869899999999],"type":"Point"},"name":"Empire Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb055704"},"location":{"coordinates":[-73.8135166,40.718924],"type":"Point"},"name":"New Peter'S Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb055705"},"location":{"coordinates":[-73.96215,40.610809],"type":"Point"},"name":"Huka Tel Aviv Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055706"},"location":{"coordinates":[-73.92381739999999,40.6643117],"type":"Point"},"name":"Crown Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb055707"},"location":{"coordinates":[-73.95690139999999,40.71891350000001],"type":"Point"},"name":"Vinnie'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb055708"},"location":{"coordinates":[-73.90966639999999,40.8519914],"type":"Point"},"name":"No. 1 Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055709"},"location":{"coordinates":[-73.9286147,40.8104204],"type":"Point"},"name":"Los Choritos Sports Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05570a"},"location":{"coordinates":[-73.98545299999999,40.740927],"type":"Point"},"name":"Gregory'S Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb05570b"},"location":{"coordinates":[-73.9945985,40.7246247],"type":"Point"},"name":"Milano'S Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05570c"},"location":{"coordinates":[-73.92432819999999,40.7616898],"type":"Point"},"name":"Gilbey'S"} +,{"_id":{"$oid":"55cba2476c522cafdb05570d"},"location":{"coordinates":[-73.9554136,40.7750972],"type":"Point"},"name":"Alice'S Tea Cup"} +,{"_id":{"$oid":"55cba2476c522cafdb05570e"},"location":{"coordinates":[-73.9488935,40.7973765],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb05570f"},"location":{"coordinates":[-73.99454999999999,40.760336],"type":"Point"},"name":"Claudio Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb055710"},"location":{"coordinates":[-74.00571599999999,40.74307],"type":"Point"},"name":"Highline Ballroom"} +,{"_id":{"$oid":"55cba2476c522cafdb055711"},"location":{"coordinates":[-73.9805403,40.7389145],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb055712"},"location":{"coordinates":[-73.98508690000001,40.71941899999999],"type":"Point"},"name":"Barramundi"} +,{"_id":{"$oid":"55cba2476c522cafdb055713"},"location":{"coordinates":[-73.9867446,40.7599473],"type":"Point"},"name":"Trattoria Tre Colori"} +,{"_id":{"$oid":"55cba2476c522cafdb055714"},"location":{"coordinates":[-73.906219,40.7051832],"type":"Point"},"name":"Paradise Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb055715"},"location":{"coordinates":[-73.8330519,40.7587756],"type":"Point"},"name":"Di Yuan Karaoke"} +,{"_id":{"$oid":"55cba2476c522cafdb055716"},"location":{"coordinates":[-73.967969,40.797821],"type":"Point"},"name":"Cafe Roma Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb055717"},"location":{"coordinates":[-73.907247,40.7001909],"type":"Point"},"name":"Rico Pollo"} +,{"_id":{"$oid":"55cba2476c522cafdb055718"},"location":{"coordinates":[-73.8339515,40.6921481],"type":"Point"},"name":"Atlantic Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb055719"},"location":{"coordinates":[-73.8174674,40.818788],"type":"Point"},"name":"Bridges Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05571a"},"location":{"coordinates":[-73.9426888,40.6277417],"type":"Point"},"name":"Kreyol Flavor"} +,{"_id":{"$oid":"55cba2476c522cafdb05571b"},"location":{"coordinates":[-73.8204109,40.68723],"type":"Point"},"name":"Underground Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb05571c"},"location":{"coordinates":[-73.9512295,40.6411268],"type":"Point"},"name":"C \u0026 C West Indian American Food"} +,{"_id":{"$oid":"55cba2476c522cafdb05571d"},"location":{"coordinates":[-73.9988558,40.7130979],"type":"Point"},"name":"Luna Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05571e"},"location":{"coordinates":[-73.8884834,40.7493344],"type":"Point"},"name":"Lety Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb05571f"},"location":{"coordinates":[-73.9594497,40.57904120000001],"type":"Point"},"name":"Glechik"} +,{"_id":{"$oid":"55cba2476c522cafdb055720"},"location":{"coordinates":[-73.994419,40.6848592],"type":"Point"},"name":"Cobble Hill Cinemas"} +,{"_id":{"$oid":"55cba2476c522cafdb055721"},"location":{"coordinates":[-92.72773339999999,41.7461423],"type":"Point"},"name":"Markt Cafe Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055722"},"location":{"coordinates":[-73.9808221,40.78314080000001],"type":"Point"},"name":"Europan Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055723"},"location":{"coordinates":[-73.97211,40.677102],"type":"Point"},"name":"Wing Wagon"} +,{"_id":{"$oid":"55cba2476c522cafdb055724"},"location":{"coordinates":[-73.8132761,40.7880986],"type":"Point"},"name":"Il Nocello Ristorante Italiano"} +,{"_id":{"$oid":"55cba2476c522cafdb055725"},"location":{"coordinates":[-74.00860759999999,40.7256964],"type":"Point"},"name":"Anchor"} +,{"_id":{"$oid":"55cba2476c522cafdb055726"},"location":{"coordinates":[-73.989165,40.72595200000001],"type":"Point"},"name":"The Boiler Room"} +,{"_id":{"$oid":"55cba2476c522cafdb055727"},"location":{"coordinates":[-74.0062401,40.7397546],"type":"Point"},"name":"Soto Japanese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055728"},"location":{"coordinates":[-73.9866445,40.72631579999999],"type":"Point"},"name":"Royal Bangladesh Indian Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055729"},"location":{"coordinates":[-73.7914066,40.7074244],"type":"Point"},"name":"Dmv News"} +,{"_id":{"$oid":"55cba2476c522cafdb05572a"},"location":{"coordinates":[-73.795637,40.707553],"type":"Point"},"name":"Y J Fried Fish"} +,{"_id":{"$oid":"55cba2476c522cafdb05572b"},"location":{"coordinates":[-73.9879693,40.7221447],"type":"Point"},"name":"Georgia'S Eastside Bbq"} +,{"_id":{"$oid":"55cba2476c522cafdb05572c"},"location":{"coordinates":[-73.9882477,40.7649675],"type":"Point"},"name":"Casellula Cheese \u0026 Wine Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05572d"},"location":{"coordinates":[-73.9975448,40.687995],"type":"Point"},"name":"Bocca Lupo"} +,{"_id":{"$oid":"55cba2476c522cafdb05572e"},"location":{"coordinates":[-73.88040699999999,40.756348],"type":"Point"},"name":"El Sol Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05572f"},"location":{"coordinates":[-73.879373,40.7246681],"type":"Point"},"name":"Village Gourmet"} +,{"_id":{"$oid":"55cba2476c522cafdb055730"},"location":{"coordinates":[-74.0320368,40.6216254],"type":"Point"},"name":"H\u0026L Bagel"} +,{"_id":{"$oid":"55cba2476c522cafdb055731"},"location":{"coordinates":[-74.005195,40.730322],"type":"Point"},"name":"Better Being"} +,{"_id":{"$oid":"55cba2476c522cafdb055732"},"location":{"coordinates":[-74.021902,40.6302594],"type":"Point"},"name":"Alkoura Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055733"},"location":{"coordinates":[-73.9817832,40.66638380000001],"type":"Point"},"name":"Scalino"} +,{"_id":{"$oid":"55cba2476c522cafdb055734"},"location":{"coordinates":[-73.986178,40.630093],"type":"Point"},"name":"Hungarian Kosher"} +,{"_id":{"$oid":"55cba2476c522cafdb055735"},"location":{"coordinates":[-73.983565,40.7444077],"type":"Point"},"name":"California Pizza Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb055736"},"location":{"coordinates":[-73.8060182,40.7536821],"type":"Point"},"name":"Punjabi Deli \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055737"},"location":{"coordinates":[-73.831035,40.699533],"type":"Point"},"name":"Kaieteur Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055738"},"location":{"coordinates":[-73.90988759999999,40.8749574],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb055739"},"location":{"coordinates":[-73.9942471,40.7357314],"type":"Point"},"name":"U Way"} +,{"_id":{"$oid":"55cba2476c522cafdb05573a"},"location":{"coordinates":[-73.9868161,40.7554006],"type":"Point"},"name":"Ruby Tuesday"} +,{"_id":{"$oid":"55cba2476c522cafdb05573b"},"location":{"coordinates":[-73.9898656,40.7499664],"type":"Point"},"name":"Feile"} +,{"_id":{"$oid":"55cba2476c522cafdb05573c"},"location":{"coordinates":[-73.9038625,40.7449459],"type":"Point"},"name":"Bagel'S Plus"} +,{"_id":{"$oid":"55cba2476c522cafdb05573d"},"location":{"coordinates":[-74.00840099999999,40.709871],"type":"Point"},"name":"The Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb05573e"},"location":{"coordinates":[-74.0016978,40.7075433],"type":"Point"},"name":"Nelson Blue"} +,{"_id":{"$oid":"55cba2476c522cafdb05573f"},"location":{"coordinates":[-74.00222099999999,40.732343],"type":"Point"},"name":"Perilla"} +,{"_id":{"$oid":"55cba2476c522cafdb055740"},"location":{"coordinates":[-74.2149562,40.5238761],"type":"Point"},"name":"Ralph'S Famous Italian Ices"} +,{"_id":{"$oid":"55cba2476c522cafdb055741"},"location":{"coordinates":[-73.9500742,40.711237],"type":"Point"},"name":"Le Barricou"} +,{"_id":{"$oid":"55cba2476c522cafdb055742"},"location":{"coordinates":[-73.97265150000001,40.6774176],"type":"Point"},"name":"Ocean 8 At Brownstone Billiards"} +,{"_id":{"$oid":"55cba2476c522cafdb055743"},"location":{"coordinates":[-73.9678531,40.6794698],"type":"Point"},"name":"Pequena"} +,{"_id":{"$oid":"55cba2476c522cafdb055744"},"location":{"coordinates":[-73.995712,40.6028151],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb055745"},"location":{"coordinates":[-74.0116385,40.707491],"type":"Point"},"name":"The Bank Of New York"} +,{"_id":{"$oid":"55cba2476c522cafdb055746"},"location":{"coordinates":[-73.9959432,40.7200254],"type":"Point"},"name":"Saigon Vietnamese Sandwich"} +,{"_id":{"$oid":"55cba2476c522cafdb055747"},"location":{"coordinates":[-73.9869164,40.7471264],"type":"Point"},"name":"Ayza Cafe \u0026 Wine Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb055748"},"location":{"coordinates":[-73.8879723,40.75553],"type":"Point"},"name":"Cafe Salamanca Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055749"},"location":{"coordinates":[-73.90576,40.85605],"type":"Point"},"name":"Morena Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05574a"},"location":{"coordinates":[-74.00357,40.640896],"type":"Point"},"name":"New Line Internet Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05574b"},"location":{"coordinates":[-74.03037119999999,40.6162912],"type":"Point"},"name":"Espresso Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb05574c"},"location":{"coordinates":[-73.9471418,40.711536],"type":"Point"},"name":"Willburg Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05574d"},"location":{"coordinates":[-73.9153942,40.844623],"type":"Point"},"name":"27 Sports Bar \u0026 Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05574e"},"location":{"coordinates":[-74.015526,40.710651],"type":"Point"},"name":"Willis North America"} +,{"_id":{"$oid":"55cba2476c522cafdb05574f"},"location":{"coordinates":[-73.991151,40.663753],"type":"Point"},"name":"Bagel Factory"} +,{"_id":{"$oid":"55cba2476c522cafdb055750"},"location":{"coordinates":[-73.983206,40.723004],"type":"Point"},"name":"No Malice Palace"} +,{"_id":{"$oid":"55cba2476c522cafdb055751"},"location":{"coordinates":[-73.9564137,40.6098698],"type":"Point"},"name":"Sushi Meshuga"} +,{"_id":{"$oid":"55cba2476c522cafdb055752"},"location":{"coordinates":[-73.959661,40.814513],"type":"Point"},"name":"El Porton Bar \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055753"},"location":{"coordinates":[-73.7718386,40.765746],"type":"Point"},"name":"Avli The Little Greek Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb055754"},"location":{"coordinates":[-73.9656615,40.6897275],"type":"Point"},"name":"Bittersweet"} +,{"_id":{"$oid":"55cba2476c522cafdb055755"},"location":{"coordinates":[-73.85956469999999,40.6804024],"type":"Point"},"name":"El Pollo Inka Peru"} +,{"_id":{"$oid":"55cba2476c522cafdb055756"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055757"},"location":{"coordinates":[-73.85584589999999,40.7433478],"type":"Point"},"name":"Panda Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb055758"},"location":{"coordinates":[-74.00708139999999,40.7073324],"type":"Point"},"name":"Harry'S Italian"} +,{"_id":{"$oid":"55cba2476c522cafdb055759"},"location":{"coordinates":[-73.9625202,40.8055078],"type":"Point"},"name":"Artopolis Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05575a"},"location":{"coordinates":[-73.992921,40.71684399999999],"type":"Point"},"name":"Best Fuzhou Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05575b"},"location":{"coordinates":[-73.9442933,40.725813],"type":"Point"},"name":"Park Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb05575c"},"location":{"coordinates":[-74.07979999999999,40.637517],"type":"Point"},"name":"Panaderia La Mixteca Poblana \u0026 Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb05575d"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"Abitino'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05575e"},"location":{"coordinates":[-73.82751390000001,40.7604789],"type":"Point"},"name":"Jr Restaurant At Jamaicia"} +,{"_id":{"$oid":"55cba2476c522cafdb05575f"},"location":{"coordinates":[-73.7764224,40.6634487],"type":"Point"},"name":"L'Amici"} +,{"_id":{"$oid":"55cba2476c522cafdb055760"},"location":{"coordinates":[-73.9492271,40.5838777],"type":"Point"},"name":"Masal Cafe \u0026 Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb055761"},"location":{"coordinates":[-73.9885413,40.6858466],"type":"Point"},"name":"The Brooklyn Inn"} +,{"_id":{"$oid":"55cba2476c522cafdb055762"},"location":{"coordinates":[-73.8376656,40.8769383],"type":"Point"},"name":"Country Thyme Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb055763"},"location":{"coordinates":[-74.1317554,40.6267086],"type":"Point"},"name":"Papa John'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb055764"},"location":{"coordinates":[-73.7915694,40.7025424],"type":"Point"},"name":"Papa John'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055765"},"location":{"coordinates":[-74.1351911,40.6264188],"type":"Point"},"name":"Popeyes Chicken \u0026 Biscuits"} +,{"_id":{"$oid":"55cba2476c522cafdb055766"},"location":{"coordinates":[-73.997152,40.732822],"type":"Point"},"name":"Eva'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055767"},"location":{"coordinates":[-73.9829084,40.771793],"type":"Point"},"name":"Metropolitan Opera House 6Th Fl"} +,{"_id":{"$oid":"55cba2476c522cafdb055768"},"location":{"coordinates":[-73.9829084,40.771793],"type":"Point"},"name":"Metropolitan Opera"} +,{"_id":{"$oid":"55cba2476c522cafdb055769"},"location":{"coordinates":[-74.0978695,40.6223903],"type":"Point"},"name":"Silver Lake Golf Course"} +,{"_id":{"$oid":"55cba2476c522cafdb05576a"},"location":{"coordinates":[-73.94146529999999,40.7982969],"type":"Point"},"name":"Burger King"} +,{"_id":{"$oid":"55cba2476c522cafdb05576b"},"location":{"coordinates":[-73.947994,40.632331],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb05576c"},"location":{"coordinates":[-74.000883,40.746008],"type":"Point"},"name":"Tequila Chito'S Mexican Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb05576d"},"location":{"coordinates":[-73.97514129999999,40.5795658],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb05576e"},"location":{"coordinates":[-73.9474658,40.7832796],"type":"Point"},"name":"New Five Luck Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05576f"},"location":{"coordinates":[-73.848076,40.7235176],"type":"Point"},"name":"Sushi Koi"} +,{"_id":{"$oid":"55cba2476c522cafdb055770"},"location":{"coordinates":[-73.94164669999999,40.5974875],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055771"},"location":{"coordinates":[-73.956611,40.730212],"type":"Point"},"name":"Black Rabbit Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb055772"},"location":{"coordinates":[-73.9662709,40.6400825],"type":"Point"},"name":"New Hong Kong Restaurant Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb055773"},"location":{"coordinates":[-73.9155248,40.6337297],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055774"},"location":{"coordinates":[-73.9541086,40.73051359999999],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb055775"},"location":{"coordinates":[-74.01778449999999,40.6411056],"type":"Point"},"name":"Full Doe Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb055776"},"location":{"coordinates":[-73.99143649999999,40.7261898],"type":"Point"},"name":"Gemma"} +,{"_id":{"$oid":"55cba2476c522cafdb055777"},"location":{"coordinates":[-73.9526052,40.7592235],"type":"Point"},"name":"Nonno'S Focacceria"} +,{"_id":{"$oid":"55cba2476c522cafdb055778"},"location":{"coordinates":[-73.90961589999999,40.7518599],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb055779"},"location":{"coordinates":[-73.8571197,40.8474902],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb05577a"},"location":{"coordinates":[-73.7822056,40.6434612],"type":"Point"},"name":"Cibo Express Gourmet Market"} +,{"_id":{"$oid":"55cba2476c522cafdb05577b"},"location":{"coordinates":[-73.7822056,40.6434612],"type":"Point"},"name":"Nysb"} +,{"_id":{"$oid":"55cba2476c522cafdb05577c"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"Drink"} +,{"_id":{"$oid":"55cba2476c522cafdb05577d"},"location":{"coordinates":[-74.06651149999999,40.5903351],"type":"Point"},"name":"Boardwalk Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05577e"},"location":{"coordinates":[-73.9428526,40.665678],"type":"Point"},"name":"Kingston Bake Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb05577f"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"O'Neals"} +,{"_id":{"$oid":"55cba2476c522cafdb055780"},"location":{"coordinates":[-73.8617364,40.8325197],"type":"Point"},"name":"Little Caesars"} +,{"_id":{"$oid":"55cba2476c522cafdb055781"},"location":{"coordinates":[-73.9399794,40.7943144],"type":"Point"},"name":"Indo-Pak Halal Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055782"},"location":{"coordinates":[-73.946016,40.790223],"type":"Point"},"name":"Dunkin' Donuts, Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb055783"},"location":{"coordinates":[-73.9755346,40.7496967],"type":"Point"},"name":"Public House"} +,{"_id":{"$oid":"55cba2476c522cafdb055784"},"location":{"coordinates":[-73.9851867,40.67082250000001],"type":"Point"},"name":"Coco Roco Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055785"},"location":{"coordinates":[-74.1351911,40.6264188],"type":"Point"},"name":"Gino'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb055786"},"location":{"coordinates":[-73.9742997,40.7619505],"type":"Point"},"name":"Europa Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055787"},"location":{"coordinates":[-74.0070861,40.7067469],"type":"Point"},"name":"Chipotle Mexican Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb055788"},"location":{"coordinates":[-73.988271,40.7199386],"type":"Point"},"name":"Spitzer'S Corner"} +,{"_id":{"$oid":"55cba2476c522cafdb055789"},"location":{"coordinates":[-73.977288,40.757112],"type":"Point"},"name":"Shinbashi Japanese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05578a"},"location":{"coordinates":[-74.099369,40.620374],"type":"Point"},"name":"Marie'S Gourmet"} +,{"_id":{"$oid":"55cba2476c522cafdb05578b"},"location":{"coordinates":[-73.7864785,40.8408324],"type":"Point"},"name":"City Island Yacht Club"} +,{"_id":{"$oid":"55cba2476c522cafdb05578c"},"location":{"coordinates":[-73.76439599999999,40.6721779],"type":"Point"},"name":"Aso Rock Lounge And Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05578d"},"location":{"coordinates":[-73.96145179999999,40.5986353],"type":"Point"},"name":"Red Karaoke Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb05578e"},"location":{"coordinates":[-73.9083084,40.7030866],"type":"Point"},"name":"Crispy Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05578f"},"location":{"coordinates":[-74.02581599999999,40.6355454],"type":"Point"},"name":"Circles Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055790"},"location":{"coordinates":[-73.8529336,40.6602592],"type":"Point"},"name":"Matteo'S Of Howard Beach"} +,{"_id":{"$oid":"55cba2476c522cafdb055791"},"location":{"coordinates":[-74.10187839999999,40.5663705],"type":"Point"},"name":"658 Kings Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb055792"},"location":{"coordinates":[-73.9085456,40.7034387],"type":"Point"},"name":"Plaza Piaxtla Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb055793"},"location":{"coordinates":[-73.8689176,40.7570118],"type":"Point"},"name":"Manta Llave Del Mar Bar Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055794"},"location":{"coordinates":[-73.91310159999999,40.8382515],"type":"Point"},"name":"El Nuevo Roble Billares Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055795"},"location":{"coordinates":[-73.991072,40.754722],"type":"Point"},"name":"Go Go Curry Usa"} +,{"_id":{"$oid":"55cba2476c522cafdb055796"},"location":{"coordinates":[-73.9785989,40.76340690000001],"type":"Point"},"name":"Stage Star Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb055797"},"location":{"coordinates":[-73.9914063,40.7327205],"type":"Point"},"name":"Le Pain Quotidien"} +,{"_id":{"$oid":"55cba2476c522cafdb055798"},"location":{"coordinates":[-73.916482,40.8182906],"type":"Point"},"name":"El Valle Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055799"},"location":{"coordinates":[-73.93211579999999,40.6090854],"type":"Point"},"name":"Pizza Emporium"} +,{"_id":{"$oid":"55cba2476c522cafdb05579a"},"location":{"coordinates":[-73.9449879,40.8341508],"type":"Point"},"name":"Twin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb05579b"},"location":{"coordinates":[-73.9006903,40.82189290000001],"type":"Point"},"name":"Super Crown Fried Chicken \u0026 Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05579c"},"location":{"coordinates":[-73.93172129999999,40.7445029],"type":"Point"},"name":"Allure"} +,{"_id":{"$oid":"55cba2476c522cafdb05579d"},"location":{"coordinates":[-73.94000559999999,40.6128004],"type":"Point"},"name":"Bullseye Sports Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb05579e"},"location":{"coordinates":[-73.956951,40.765887],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb05579f"},"location":{"coordinates":[-73.9132,40.875991],"type":"Point"},"name":"Terrace View Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb0557a0"},"location":{"coordinates":[-73.972464,40.79443],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0557a1"},"location":{"coordinates":[-73.9741793,40.7575374],"type":"Point"},"name":"Just Salad"} +,{"_id":{"$oid":"55cba2476c522cafdb0557a2"},"location":{"coordinates":[-73.9168376,40.8163156],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0557a3"},"location":{"coordinates":[-73.990802,40.737081],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0557a4"},"location":{"coordinates":[-73.9825668,40.7779191],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0557a5"},"location":{"coordinates":[-73.9858837,40.722567],"type":"Point"},"name":"Kelly'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0557a6"},"location":{"coordinates":[-73.975235,40.762868],"type":"Point"},"name":"The Wellness Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0557a7"},"location":{"coordinates":[-73.9382718,40.8437622],"type":"Point"},"name":"Popeyes Chicken \u0026 Biscuits"} +,{"_id":{"$oid":"55cba2476c522cafdb0557a8"},"location":{"coordinates":[-73.7468716,40.7281312],"type":"Point"},"name":"Burger King"} +,{"_id":{"$oid":"55cba2476c522cafdb0557a9"},"location":{"coordinates":[-73.9207868,40.8357866],"type":"Point"},"name":"Lily'S Cafe Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0557aa"},"location":{"coordinates":[-73.7708157,40.7638172],"type":"Point"},"name":"Mickey'S Place"} +,{"_id":{"$oid":"55cba2476c522cafdb0557ab"},"location":{"coordinates":[-73.87761429999999,40.8722514],"type":"Point"},"name":"Caridad Express Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0557ac"},"location":{"coordinates":[-73.7410811,40.6763901],"type":"Point"},"name":"Crown Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb0557ad"},"location":{"coordinates":[-73.9813276,40.7553163],"type":"Point"},"name":"The Coffee House"} +,{"_id":{"$oid":"55cba2476c522cafdb0557ae"},"location":{"coordinates":[-73.92896259999999,40.6975241],"type":"Point"},"name":"Zefes Mexican Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0557af"},"location":{"coordinates":[-73.99847,40.645731],"type":"Point"},"name":"Huang Jia Seafood Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0557b0"},"location":{"coordinates":[-74.001142,40.73949],"type":"Point"},"name":"La Nacional"} +,{"_id":{"$oid":"55cba2476c522cafdb0557b1"},"location":{"coordinates":[-73.9896868,40.738583],"type":"Point"},"name":"Amc Theatres 19Th Street East"} +,{"_id":{"$oid":"55cba2476c522cafdb0557b2"},"location":{"coordinates":[-73.95169299999999,40.690033],"type":"Point"},"name":"Dunkin' Donuts, Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb0557b3"},"location":{"coordinates":[-73.9235247,40.7530233],"type":"Point"},"name":"Noa Noa Night Club"} +,{"_id":{"$oid":"55cba2476c522cafdb0557b4"},"location":{"coordinates":[-74.00611359999999,40.6090538],"type":"Point"},"name":"Papa John'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0557b5"},"location":{"coordinates":[-73.7768629,40.778454],"type":"Point"},"name":"Terrace Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb0557b6"},"location":{"coordinates":[-73.89780669999999,40.8669311],"type":"Point"},"name":"Mexican Fast Food"} +,{"_id":{"$oid":"55cba2476c522cafdb0557b7"},"location":{"coordinates":[-73.9673723,40.7108854],"type":"Point"},"name":"Patrizia'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0557b8"},"location":{"coordinates":[-73.736722,40.717733],"type":"Point"},"name":"Village Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb0557b9"},"location":{"coordinates":[-73.95618379999999,40.7722542],"type":"Point"},"name":"Lenny'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0557ba"},"location":{"coordinates":[-73.94267230000001,40.6556404],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0557bb"},"location":{"coordinates":[-73.9602845,40.5781293],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0557bc"},"location":{"coordinates":[-73.9492741,40.650388],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0557bd"},"location":{"coordinates":[-73.9986333,40.729471],"type":"Point"},"name":"The Half Pint"} +,{"_id":{"$oid":"55cba2476c522cafdb0557be"},"location":{"coordinates":[-73.9786786,40.684311],"type":"Point"},"name":"Dunkin Donuts/Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb0557bf"},"location":{"coordinates":[-73.99739919999999,40.6605701],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0557c0"},"location":{"coordinates":[-73.9807896,40.7425347],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0557c1"},"location":{"coordinates":[-74.0204493,40.6342049],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0557c2"},"location":{"coordinates":[-73.9800636,40.6881558],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0557c3"},"location":{"coordinates":[-73.98519780000001,40.7221462],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0557c4"},"location":{"coordinates":[-73.9765561,40.604945],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0557c5"},"location":{"coordinates":[-73.98292210000001,40.7224497],"type":"Point"},"name":"Poco"} +,{"_id":{"$oid":"55cba2476c522cafdb0557c6"},"location":{"coordinates":[-73.74636,40.7160749],"type":"Point"},"name":"Heavenly Fritaille Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0557c7"},"location":{"coordinates":[-73.98283359999999,40.7224106],"type":"Point"},"name":"Cafe Cortadito"} +,{"_id":{"$oid":"55cba2476c522cafdb0557c8"},"location":{"coordinates":[-73.9776141,40.7263725],"type":"Point"},"name":"Evelyn"} +,{"_id":{"$oid":"55cba2476c522cafdb0557c9"},"location":{"coordinates":[-73.940843,40.683169],"type":"Point"},"name":"True Taste Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0557ca"},"location":{"coordinates":[-73.993499,40.762817],"type":"Point"},"name":"Bis.Co. Latte"} +,{"_id":{"$oid":"55cba2476c522cafdb0557cb"},"location":{"coordinates":[-73.9891026,40.6198876],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0557cc"},"location":{"coordinates":[-73.8493574,40.6946695],"type":"Point"},"name":"Cuenca Coffee Shop Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0557cd"},"location":{"coordinates":[-73.9608784,40.5978732],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0557ce"},"location":{"coordinates":[-73.9986808,40.6045919],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0557cf"},"location":{"coordinates":[-74.0055725,40.6556053],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0557d0"},"location":{"coordinates":[-73.9625686,40.6351958],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0557d1"},"location":{"coordinates":[-73.99166679999999,40.69055660000001],"type":"Point"},"name":"The Original Fres'Co Tortilla Plus"} +,{"_id":{"$oid":"55cba2476c522cafdb0557d2"},"location":{"coordinates":[-73.987655,40.761556],"type":"Point"},"name":"Maria'S Mont Blanc Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0557d3"},"location":{"coordinates":[-73.9980331,40.7148064],"type":"Point"},"name":"Delight 28 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0557d4"},"location":{"coordinates":[-73.8153339,40.761938],"type":"Point"},"name":"Chinese House Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0557d5"},"location":{"coordinates":[-73.994596,40.750059],"type":"Point"},"name":"Brother Jimmy'S Bbq"} +,{"_id":{"$oid":"55cba2476c522cafdb0557d6"},"location":{"coordinates":[-73.98939800000001,40.758336],"type":"Point"},"name":"Diamond Club"} +,{"_id":{"$oid":"55cba2476c522cafdb0557d7"},"location":{"coordinates":[-73.9724963,40.764332],"type":"Point"},"name":"Harry Cipriani"} +,{"_id":{"$oid":"55cba2476c522cafdb0557d8"},"location":{"coordinates":[-73.86647099999999,40.8546357],"type":"Point"},"name":"Lydig Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb0557d9"},"location":{"coordinates":[-73.92737029999999,40.7632838],"type":"Point"},"name":"Bakeway Nyc"} +,{"_id":{"$oid":"55cba2476c522cafdb0557da"},"location":{"coordinates":[-73.789351,40.7338137],"type":"Point"},"name":"Hong Kong Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb0557db"},"location":{"coordinates":[-91.34808679999999,40.8779317],"type":"Point"},"name":"Bay Terrace Pool Club"} +,{"_id":{"$oid":"55cba2476c522cafdb0557dc"},"location":{"coordinates":[-73.8758026,40.7061056],"type":"Point"},"name":"Chili'S Grill \u0026 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0557dd"},"location":{"coordinates":[-73.98428679999999,40.7564316],"type":"Point"},"name":"Saju Bistro"} +,{"_id":{"$oid":"55cba2476c522cafdb0557de"},"location":{"coordinates":[-73.9564922,40.8140035],"type":"Point"},"name":"Elpuerto"} +,{"_id":{"$oid":"55cba2476c522cafdb0557df"},"location":{"coordinates":[-73.979078,40.78561639999999],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0557e0"},"location":{"coordinates":[-73.88329340000001,40.7557171],"type":"Point"},"name":"Ming Wok Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0557e1"},"location":{"coordinates":[-73.974212,40.6801498],"type":"Point"},"name":"Piquant"} +,{"_id":{"$oid":"55cba2476c522cafdb0557e2"},"location":{"coordinates":[-73.9881736,40.7546571],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0557e3"},"location":{"coordinates":[-73.768108,40.664069],"type":"Point"},"name":"Guy R Cafe Snack Corner"} +,{"_id":{"$oid":"55cba2476c522cafdb0557e4"},"location":{"coordinates":[-73.832079,40.75933],"type":"Point"},"name":"Tian Jin Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0557e5"},"location":{"coordinates":[-73.92483849999999,40.7614524],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0557e6"},"location":{"coordinates":[-73.9615235,40.6062822],"type":"Point"},"name":"Sake"} +,{"_id":{"$oid":"55cba2476c522cafdb0557e7"},"location":{"coordinates":[-73.8887814,40.85436720000001],"type":"Point"},"name":"Parisienne Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0557e8"},"location":{"coordinates":[-74.030284,40.62456],"type":"Point"},"name":"Bunch Of Bagels"} +,{"_id":{"$oid":"55cba2476c522cafdb0557e9"},"location":{"coordinates":[-73.8939424,40.8911192],"type":"Point"},"name":"Van Cortlandt Golf Course"} +,{"_id":{"$oid":"55cba2476c522cafdb0557ea"},"location":{"coordinates":[-73.91437169999999,40.853904],"type":"Point"},"name":"El Sason Ideal Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0557eb"},"location":{"coordinates":[-73.953512,40.745386],"type":"Point"},"name":"Blend"} +,{"_id":{"$oid":"55cba2476c522cafdb0557ec"},"location":{"coordinates":[-73.8132162,40.7648835],"type":"Point"},"name":"Kyedong"} +,{"_id":{"$oid":"55cba2476c522cafdb0557ed"},"location":{"coordinates":[-74.1080484,40.5726865],"type":"Point"},"name":"Moe'S Southwest Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0557ee"},"location":{"coordinates":[-73.7357952,40.6741821],"type":"Point"},"name":"Little Jerk Center"} +,{"_id":{"$oid":"55cba2476c522cafdb0557ef"},"location":{"coordinates":[-93.2069217,43.14769159999999],"type":"Point"},"name":"Ny Skyride"} +,{"_id":{"$oid":"55cba2476c522cafdb0557f0"},"location":{"coordinates":[-73.9817368,40.77763660000001],"type":"Point"},"name":"Tasty Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0557f1"},"location":{"coordinates":[-73.9574945,40.7267672],"type":"Point"},"name":"The Diamond"} +,{"_id":{"$oid":"55cba2476c522cafdb0557f2"},"location":{"coordinates":[-74.00496729999999,40.7358805],"type":"Point"},"name":"Magnolia Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0557f3"},"location":{"coordinates":[-73.9968647,40.7530594],"type":"Point"},"name":"Mcgarry'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0557f4"},"location":{"coordinates":[-73.9041992,40.7257668],"type":"Point"},"name":"Dugout Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb0557f5"},"location":{"coordinates":[-73.99652619999999,40.6585792],"type":"Point"},"name":"X Stasy Bar \u0026 Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb0557f6"},"location":{"coordinates":[-73.9194256,40.7429194],"type":"Point"},"name":"New York Style Eats"} +,{"_id":{"$oid":"55cba2476c522cafdb0557f7"},"location":{"coordinates":[-73.9516822,40.5851716],"type":"Point"},"name":"Tenda Asian Fusion"} +,{"_id":{"$oid":"55cba2476c522cafdb0557f8"},"location":{"coordinates":[-73.9857545,40.7498305],"type":"Point"},"name":"Madangsui"} +,{"_id":{"$oid":"55cba2476c522cafdb0557f9"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"Auntie Anne'S Pretzels"} +,{"_id":{"$oid":"55cba2476c522cafdb0557fa"},"location":{"coordinates":[-74.00801179999999,40.6366779],"type":"Point"},"name":"Everett"} +,{"_id":{"$oid":"55cba2476c522cafdb0557fb"},"location":{"coordinates":[-73.97103299999999,40.794966],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0557fc"},"location":{"coordinates":[-73.9736745,40.7589832],"type":"Point"},"name":"Swiss Re"} +,{"_id":{"$oid":"55cba2476c522cafdb0557fd"},"location":{"coordinates":[-73.8317631,40.7068072],"type":"Point"},"name":"Karp Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb0557fe"},"location":{"coordinates":[-74.0097664,40.7200611],"type":"Point"},"name":"Smith \u0026 Mills"} +,{"_id":{"$oid":"55cba2476c522cafdb0557ff"},"location":{"coordinates":[-73.9869369,40.7669121],"type":"Point"},"name":"Ailey Boutique"} +,{"_id":{"$oid":"55cba2476c522cafdb055800"},"location":{"coordinates":[-73.86270619999999,40.865765],"type":"Point"},"name":"Ihop"} +,{"_id":{"$oid":"55cba2476c522cafdb055801"},"location":{"coordinates":[-73.9769317,40.7749332],"type":"Point"},"name":"Pier I Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055802"},"location":{"coordinates":[-73.9868297,40.7532798],"type":"Point"},"name":"Pret A Manger"} +,{"_id":{"$oid":"55cba2476c522cafdb055803"},"location":{"coordinates":[-74.0007316,40.7629786],"type":"Point"},"name":"P.D. O'Hurley'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055804"},"location":{"coordinates":[-73.844572,40.721231],"type":"Point"},"name":"Fay Da Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb055805"},"location":{"coordinates":[-74.02193489999999,40.6304357],"type":"Point"},"name":"Schnitzel Haus"} +,{"_id":{"$oid":"55cba2476c522cafdb055806"},"location":{"coordinates":[-73.8980263,40.8322977],"type":"Point"},"name":"Empire King Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055807"},"location":{"coordinates":[-74.006176,40.63911299999999],"type":"Point"},"name":"Lai Lai Gourmet"} +,{"_id":{"$oid":"55cba2476c522cafdb055808"},"location":{"coordinates":[-73.9553686,40.7226463],"type":"Point"},"name":"The Gutter Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb055809"},"location":{"coordinates":[-74.0058365,40.70910060000001],"type":"Point"},"name":"Matryoshka"} +,{"_id":{"$oid":"55cba2476c522cafdb05580a"},"location":{"coordinates":[-73.8831572,40.7383112],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb05580b"},"location":{"coordinates":[-73.94177069999999,40.8059148],"type":"Point"},"name":"Taco Bell Pizza Hut"} +,{"_id":{"$oid":"55cba2476c522cafdb05580c"},"location":{"coordinates":[-73.9304259,40.7042296],"type":"Point"},"name":"Rinconcito Sabaneno 2"} +,{"_id":{"$oid":"55cba2476c522cafdb05580d"},"location":{"coordinates":[-73.98245,40.767931],"type":"Point"},"name":"Arte Around The Corner"} +,{"_id":{"$oid":"55cba2476c522cafdb05580e"},"location":{"coordinates":[-73.87052179999999,40.72657179999999],"type":"Point"},"name":"Manny'S Family Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05580f"},"location":{"coordinates":[-73.98704959999999,40.7265425],"type":"Point"},"name":"Mitali East"} +,{"_id":{"$oid":"55cba2476c522cafdb055810"},"location":{"coordinates":[-73.9571134,40.7126968],"type":"Point"},"name":"Mulholland'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055811"},"location":{"coordinates":[-73.802701,40.736441],"type":"Point"},"name":"Millard Fillmores Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb055812"},"location":{"coordinates":[-73.9585872,40.7646091],"type":"Point"},"name":"Cafe Fresco"} +,{"_id":{"$oid":"55cba2476c522cafdb055813"},"location":{"coordinates":[-73.9917475,40.75419],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb055814"},"location":{"coordinates":[-73.9425364,40.7144958],"type":"Point"},"name":"Legion"} +,{"_id":{"$oid":"55cba2476c522cafdb055815"},"location":{"coordinates":[-73.9856736,40.7289903],"type":"Point"},"name":"Graffiti"} +,{"_id":{"$oid":"55cba2476c522cafdb055816"},"location":{"coordinates":[-73.954374,40.777715],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055817"},"location":{"coordinates":[-73.9807053,40.751484],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055818"},"location":{"coordinates":[-73.9192778,40.7396163],"type":"Point"},"name":"Juanita'S Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb055819"},"location":{"coordinates":[-73.98952609999999,40.7507917],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb05581a"},"location":{"coordinates":[-73.7139366,40.7268435],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb05581b"},"location":{"coordinates":[-73.79642199999999,40.707139],"type":"Point"},"name":"Pretzel King"} +,{"_id":{"$oid":"55cba2476c522cafdb05581c"},"location":{"coordinates":[-74.0035309,40.7224306],"type":"Point"},"name":"Sanctuary T"} +,{"_id":{"$oid":"55cba2476c522cafdb05581d"},"location":{"coordinates":[-74.0011942,40.7474561],"type":"Point"},"name":"El Quinto Pino"} +,{"_id":{"$oid":"55cba2476c522cafdb05581e"},"location":{"coordinates":[-73.7585027,40.5955901],"type":"Point"},"name":"New Mandrin Duck"} +,{"_id":{"$oid":"55cba2476c522cafdb05581f"},"location":{"coordinates":[-73.966663,40.7617968],"type":"Point"},"name":"Forty Carrots"} +,{"_id":{"$oid":"55cba2476c522cafdb055820"},"location":{"coordinates":[-73.9614436,40.7140037],"type":"Point"},"name":"L.A. Burrito"} +,{"_id":{"$oid":"55cba2476c522cafdb055821"},"location":{"coordinates":[-73.94201369999999,40.8231374],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb055822"},"location":{"coordinates":[-99.0640336,40.7284015],"type":"Point"},"name":"Fiorini"} +,{"_id":{"$oid":"55cba2476c522cafdb055823"},"location":{"coordinates":[-73.99660109999999,40.6804512],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb055824"},"location":{"coordinates":[-73.9907351,40.6866761],"type":"Point"},"name":"Dunkin' Donuts/ Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb055825"},"location":{"coordinates":[-73.9774721,40.7629568],"type":"Point"},"name":"Whiskey Trader"} +,{"_id":{"$oid":"55cba2476c522cafdb055826"},"location":{"coordinates":[-73.97535719999999,40.6869841],"type":"Point"},"name":"The Smoke Joint"} +,{"_id":{"$oid":"55cba2476c522cafdb055827"},"location":{"coordinates":[-73.9667671,40.804585],"type":"Point"},"name":"Chipotle Mexican Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb055828"},"location":{"coordinates":[-73.83725489999999,40.5803842],"type":"Point"},"name":"Last Stop Gourmet Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb055829"},"location":{"coordinates":[-73.960608,40.7787515],"type":"Point"},"name":"Vosges Chocolate"} +,{"_id":{"$oid":"55cba2476c522cafdb05582a"},"location":{"coordinates":[-73.96069190000001,40.5878335],"type":"Point"},"name":"Nargis Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05582b"},"location":{"coordinates":[-73.9781179,40.758723],"type":"Point"},"name":"Manchu Wok"} +,{"_id":{"$oid":"55cba2476c522cafdb05582c"},"location":{"coordinates":[-73.8888118,40.7495813],"type":"Point"},"name":"Espresso 77"} +,{"_id":{"$oid":"55cba2476c522cafdb05582d"},"location":{"coordinates":[-73.987668,40.6670919],"type":"Point"},"name":"Camelia Cocina Mexicana"} +,{"_id":{"$oid":"55cba2476c522cafdb05582e"},"location":{"coordinates":[-74.0079373,40.620357],"type":"Point"},"name":"Uncle Louie G'S Italian Ices \u0026 Ice Cream"} +,{"_id":{"$oid":"55cba2476c522cafdb05582f"},"location":{"coordinates":[-73.853088,40.8364175],"type":"Point"},"name":"Sabor Latino Seafood Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055830"},"location":{"coordinates":[-73.9290585,40.758585],"type":"Point"},"name":"Rest-Au-Rant"} +,{"_id":{"$oid":"55cba2476c522cafdb055831"},"location":{"coordinates":[-73.9683455,40.7595452],"type":"Point"},"name":"Johnny Rockets"} +,{"_id":{"$oid":"55cba2476c522cafdb055832"},"location":{"coordinates":[-74.00301189999999,40.6414204],"type":"Point"},"name":"Dominicks Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb055833"},"location":{"coordinates":[-73.86613729999999,40.8317407],"type":"Point"},"name":"South Of France"} +,{"_id":{"$oid":"55cba2476c522cafdb055834"},"location":{"coordinates":[-73.97418119999999,40.7533609],"type":"Point"},"name":"Menchanko-Tei 45"} +,{"_id":{"$oid":"55cba2476c522cafdb055835"},"location":{"coordinates":[-73.9775694,40.756539],"type":"Point"},"name":"Katsuhama 47"} +,{"_id":{"$oid":"55cba2476c522cafdb055836"},"location":{"coordinates":[-74.15836019999999,40.6036015],"type":"Point"},"name":"Carousel For All Children"} +,{"_id":{"$oid":"55cba2476c522cafdb055837"},"location":{"coordinates":[-73.9852394,40.766016],"type":"Point"},"name":"Katsuhama Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055838"},"location":{"coordinates":[-73.898245,40.662516],"type":"Point"},"name":"Joy Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb055839"},"location":{"coordinates":[-73.8680431,40.7444983],"type":"Point"},"name":"El Coyote Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05583a"},"location":{"coordinates":[-73.9767193,40.7428896],"type":"Point"},"name":"Amc/Lowes Theatres Kips Bay"} +,{"_id":{"$oid":"55cba2476c522cafdb05583b"},"location":{"coordinates":[-73.779062,40.666296],"type":"Point"},"name":"Kennedy Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb05583c"},"location":{"coordinates":[-74.01138279999999,40.6437518],"type":"Point"},"name":"Pino'S"} +,{"_id":{"$oid":"55cba2476c522cafdb05583d"},"location":{"coordinates":[-73.951408,40.7142989],"type":"Point"},"name":"Macri Park"} +,{"_id":{"$oid":"55cba2476c522cafdb05583e"},"location":{"coordinates":[-73.93010699999999,40.652442],"type":"Point"},"name":"A \u0026 C Guyana Bakery \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05583f"},"location":{"coordinates":[-73.9565545,40.7380541],"type":"Point"},"name":"Brooklyn Ice Cream Factory"} +,{"_id":{"$oid":"55cba2476c522cafdb055840"},"location":{"coordinates":[-73.9194991,40.75586879999999],"type":"Point"},"name":"Ecuadorian Food Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055841"},"location":{"coordinates":[-73.8318808,40.8838613],"type":"Point"},"name":"Pimento Carribean Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055842"},"location":{"coordinates":[-73.8864913,40.85421119999999],"type":"Point"},"name":"Antonio'S Trattoria"} +,{"_id":{"$oid":"55cba2476c522cafdb055843"},"location":{"coordinates":[-73.948154,40.77402],"type":"Point"},"name":"Charley Mom Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb055844"},"location":{"coordinates":[-73.9306939,40.6519362],"type":"Point"},"name":"Golden Krust Caribbean Bakery \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb055845"},"location":{"coordinates":[-74.00788229999999,40.7293605],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb055846"},"location":{"coordinates":[-73.9937284,40.7461154],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb055847"},"location":{"coordinates":[-73.9523339,40.784368],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb055848"},"location":{"coordinates":[-73.8814239,40.7411784],"type":"Point"},"name":"Nusara Thai Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb055849"},"location":{"coordinates":[-73.93887649999999,40.8446994],"type":"Point"},"name":"Tipico Dominicano Bar Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05584a"},"location":{"coordinates":[-73.8950598,40.855793],"type":"Point"},"name":"El Lider Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05584b"},"location":{"coordinates":[-73.9529791,40.6569257],"type":"Point"},"name":"Papa John'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05584c"},"location":{"coordinates":[-74.0051415,40.7160577],"type":"Point"},"name":"Dunkin' Donuts, Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb05584d"},"location":{"coordinates":[-73.95796059999999,40.7655954],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb05584e"},"location":{"coordinates":[-73.949361,40.777384],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb05584f"},"location":{"coordinates":[-74.002618,40.734481],"type":"Point"},"name":"Bobo Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055850"},"location":{"coordinates":[-73.91512,40.7052029],"type":"Point"},"name":"Sicily'S Best Pizzeria \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055851"},"location":{"coordinates":[-73.984577,40.752803],"type":"Point"},"name":"The Kati Roll Company"} +,{"_id":{"$oid":"55cba2476c522cafdb055852"},"location":{"coordinates":[-73.99355280000002,40.6824203],"type":"Point"},"name":"Bar Great Harry"} +,{"_id":{"$oid":"55cba2476c522cafdb055853"},"location":{"coordinates":[-74.236158,40.5179157],"type":"Point"},"name":"E Squared Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055854"},"location":{"coordinates":[-73.99478650000002,40.5910296],"type":"Point"},"name":"Adventures Amusements Park"} +,{"_id":{"$oid":"55cba2476c522cafdb055855"},"location":{"coordinates":[-73.830961,40.889705],"type":"Point"},"name":"Foodz To Go"} +,{"_id":{"$oid":"55cba2476c522cafdb055856"},"location":{"coordinates":[-73.98073339999999,40.7557186],"type":"Point"},"name":"Freefoods"} +,{"_id":{"$oid":"55cba2476c522cafdb055857"},"location":{"coordinates":[-73.89399600000002,40.70060900000001],"type":"Point"},"name":"Ace Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb055858"},"location":{"coordinates":[-73.9770279,40.67206849999999],"type":"Point"},"name":"Rancho Alegre"} +,{"_id":{"$oid":"55cba2476c522cafdb055859"},"location":{"coordinates":[-74.00376109999999,40.71986510000001],"type":"Point"},"name":"La Colombe Torrefaction"} +,{"_id":{"$oid":"55cba2476c522cafdb05585a"},"location":{"coordinates":[-73.997706,40.6049107],"type":"Point"},"name":"La Bella Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb05585b"},"location":{"coordinates":[-74.073156,40.6457369],"type":"Point"},"name":"Wateredge Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05585c"},"location":{"coordinates":[-73.86964800000001,40.690582],"type":"Point"},"name":"Dany'S Pizza Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05585d"},"location":{"coordinates":[-74.0290579,40.6290164],"type":"Point"},"name":"Sapporo Japanese Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb05585e"},"location":{"coordinates":[-73.9972715,40.7378619],"type":"Point"},"name":"Good Stuff Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb05585f"},"location":{"coordinates":[-74.0253807,40.6221519],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb055860"},"location":{"coordinates":[-73.9979098,40.7327221],"type":"Point"},"name":"8Th Street Winecellar"} +,{"_id":{"$oid":"55cba2476c522cafdb055861"},"location":{"coordinates":[-73.79141709999999,40.67352959999999],"type":"Point"},"name":"Dee \u0026 L'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb055862"},"location":{"coordinates":[-73.8697004,40.7421466],"type":"Point"},"name":"Sarita'S Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb055863"},"location":{"coordinates":[-73.726467,40.7639451],"type":"Point"},"name":"Ocean Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055864"},"location":{"coordinates":[-74.0044657,40.6504657],"type":"Point"},"name":"Angel'S 1 Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb055865"},"location":{"coordinates":[-73.9085607,40.8528055],"type":"Point"},"name":"Diego'S Pizza \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055866"},"location":{"coordinates":[-73.956344,40.68098699999999],"type":"Point"},"name":"New Imperial Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb055867"},"location":{"coordinates":[-73.9517041,40.7432457],"type":"Point"},"name":"The Creek And The Cave"} +,{"_id":{"$oid":"55cba2476c522cafdb055868"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"Juan Valdez Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055869"},"location":{"coordinates":[-73.9132654,40.7655526],"type":"Point"},"name":"Melody Cafe \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05586a"},"location":{"coordinates":[-73.8317608,40.7150367],"type":"Point"},"name":"Fresco Tortilleria"} +,{"_id":{"$oid":"55cba2476c522cafdb05586b"},"location":{"coordinates":[-73.8811551,40.7639337],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb05586c"},"location":{"coordinates":[-73.74303929999999,40.6966342],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb05586d"},"location":{"coordinates":[-73.79326999999999,40.686146],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb05586e"},"location":{"coordinates":[-73.9465567,40.8085797],"type":"Point"},"name":"Fishers Of Men Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb05586f"},"location":{"coordinates":[-73.9403541,40.5910032],"type":"Point"},"name":"Bahbka Bctahbka"} +,{"_id":{"$oid":"55cba2476c522cafdb055870"},"location":{"coordinates":[-73.97908400000001,40.744974],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055871"},"location":{"coordinates":[-74.001164,40.7185119],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055872"},"location":{"coordinates":[-73.99021309999999,40.7258509],"type":"Point"},"name":"Whiskey Town"} +,{"_id":{"$oid":"55cba2476c522cafdb055873"},"location":{"coordinates":[-73.8727646,40.7181302],"type":"Point"},"name":"Jade Bamboo"} +,{"_id":{"$oid":"55cba2476c522cafdb055874"},"location":{"coordinates":[-73.978321,40.6426433],"type":"Point"},"name":"To Be Thai"} +,{"_id":{"$oid":"55cba2476c522cafdb055875"},"location":{"coordinates":[-73.9899143,40.7562054],"type":"Point"},"name":"Covington \u0026 Burling"} +,{"_id":{"$oid":"55cba2476c522cafdb055876"},"location":{"coordinates":[-73.8916826,40.7113697],"type":"Point"},"name":"Bloomberg"} +,{"_id":{"$oid":"55cba2476c522cafdb055877"},"location":{"coordinates":[-73.9067963,40.7689007],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb055878"},"location":{"coordinates":[-73.9440841,40.6802938],"type":"Point"},"name":"King Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb055879"},"location":{"coordinates":[-73.8830306,40.7467682],"type":"Point"},"name":"El Tequila"} +,{"_id":{"$oid":"55cba2476c522cafdb05587a"},"location":{"coordinates":[-73.88681679999999,40.8431514],"type":"Point"},"name":"North Star Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05587b"},"location":{"coordinates":[-73.990556,40.749722],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb05587c"},"location":{"coordinates":[-73.9059085,40.8794584],"type":"Point"},"name":"Sam'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05587d"},"location":{"coordinates":[-73.9140877,40.7653145],"type":"Point"},"name":"Fayrooz"} +,{"_id":{"$oid":"55cba2476c522cafdb05587e"},"location":{"coordinates":[-73.9000208,40.7460606],"type":"Point"},"name":"La Fe Bakery \u0026 Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb05587f"},"location":{"coordinates":[-73.99243129999999,40.6620181],"type":"Point"},"name":"Korzo"} +,{"_id":{"$oid":"55cba2476c522cafdb055880"},"location":{"coordinates":[-73.9778947,40.7542963],"type":"Point"},"name":"Rosens Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055881"},"location":{"coordinates":[-73.864609,40.865699],"type":"Point"},"name":"Pizza Corner \u0026 Pasta"} +,{"_id":{"$oid":"55cba2476c522cafdb055882"},"location":{"coordinates":[-74.13565,40.56089],"type":"Point"},"name":"Domenico'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb055883"},"location":{"coordinates":[-73.9802204,40.6821219],"type":"Point"},"name":"Pacific Standard"} +,{"_id":{"$oid":"55cba2476c522cafdb055884"},"location":{"coordinates":[-73.98645739999999,40.7489646],"type":"Point"},"name":"Paul'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055885"},"location":{"coordinates":[-74.00539959999999,40.65019059999999],"type":"Point"},"name":"Super Pollo"} +,{"_id":{"$oid":"55cba2476c522cafdb055886"},"location":{"coordinates":[-73.94837129999999,40.8241999],"type":"Point"},"name":"Ecuatoriana Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055887"},"location":{"coordinates":[-73.98392609999999,40.7511857],"type":"Point"},"name":"The Australian"} +,{"_id":{"$oid":"55cba2476c522cafdb055888"},"location":{"coordinates":[-73.961784,40.719133],"type":"Point"},"name":"Music Hall Of Williamsburg"} +,{"_id":{"$oid":"55cba2476c522cafdb055889"},"location":{"coordinates":[-73.9846809,40.7478677],"type":"Point"},"name":"5Th Avenue Empire Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05588a"},"location":{"coordinates":[-119.565005,36.3924905],"type":"Point"},"name":"Widdi Hall"} +,{"_id":{"$oid":"55cba2476c522cafdb05588b"},"location":{"coordinates":[-73.8658705,40.6786341],"type":"Point"},"name":"Grant Ca"} +,{"_id":{"$oid":"55cba2476c522cafdb05588c"},"location":{"coordinates":[-73.9669124,40.7570449],"type":"Point"},"name":"Martier Caffe"} +,{"_id":{"$oid":"55cba2476c522cafdb05588d"},"location":{"coordinates":[-73.9398001,40.5900883],"type":"Point"},"name":"Connies Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb05588e"},"location":{"coordinates":[-74.0264856,40.635739],"type":"Point"},"name":"Petit Oven"} +,{"_id":{"$oid":"55cba2476c522cafdb05588f"},"location":{"coordinates":[-73.98521769999999,40.754149],"type":"Point"},"name":"Cafe Zaiya"} +,{"_id":{"$oid":"55cba2476c522cafdb055890"},"location":{"coordinates":[-73.9758689,40.7570036],"type":"Point"},"name":"Pret A Manger"} +,{"_id":{"$oid":"55cba2476c522cafdb055891"},"location":{"coordinates":[-73.9830803,40.66542],"type":"Point"},"name":"Naidre'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055892"},"location":{"coordinates":[-74.0037193,40.7297746],"type":"Point"},"name":"Market Table"} +,{"_id":{"$oid":"55cba2476c522cafdb055893"},"location":{"coordinates":[-73.99308769999999,40.7469064],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb055894"},"location":{"coordinates":[-73.9160818,40.8341025],"type":"Point"},"name":"Antonio'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055895"},"location":{"coordinates":[-73.8841109,40.7474111],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb055896"},"location":{"coordinates":[-73.9851138,40.7473557],"type":"Point"},"name":"Jamba Juice"} +,{"_id":{"$oid":"55cba2476c522cafdb055897"},"location":{"coordinates":[-73.8780165,40.8337981],"type":"Point"},"name":"China House"} +,{"_id":{"$oid":"55cba2476c522cafdb055898"},"location":{"coordinates":[-73.957195,40.642584],"type":"Point"},"name":"Breeze'S Jamaican Restaurant \u0026 Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb055899"},"location":{"coordinates":[-73.8775064,40.76307389999999],"type":"Point"},"name":"Burger King"} +,{"_id":{"$oid":"55cba2476c522cafdb05589a"},"location":{"coordinates":[-73.9217967,40.8677162],"type":"Point"},"name":"Papa Johns"} +,{"_id":{"$oid":"55cba2476c522cafdb05589b"},"location":{"coordinates":[-73.71394,40.7268432],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb05589c"},"location":{"coordinates":[-74.01381169999999,40.6336821],"type":"Point"},"name":"Swedish Football Club"} +,{"_id":{"$oid":"55cba2476c522cafdb05589d"},"location":{"coordinates":[-73.8784849,40.71265220000001],"type":"Point"},"name":"Metro Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb05589e"},"location":{"coordinates":[-73.9794933,40.7649085],"type":"Point"},"name":"The Russian Tea Room"} +,{"_id":{"$oid":"55cba2476c522cafdb05589f"},"location":{"coordinates":[-73.7822056,40.6434612],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0558a0"},"location":{"coordinates":[-74.009407,40.7088048],"type":"Point"},"name":"Koodo Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb0558a1"},"location":{"coordinates":[-73.9940015,40.7146063],"type":"Point"},"name":"A San Fuzhou Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0558a2"},"location":{"coordinates":[-73.9657203,40.6403171],"type":"Point"},"name":"Picket Fence"} +,{"_id":{"$oid":"55cba2476c522cafdb0558a3"},"location":{"coordinates":[-73.953159,40.744471],"type":"Point"},"name":"New City Kitchen Express"} +,{"_id":{"$oid":"55cba2476c522cafdb0558a4"},"location":{"coordinates":[-73.9155098,40.850765],"type":"Point"},"name":"Great Wall Nyc"} +,{"_id":{"$oid":"55cba2476c522cafdb0558a5"},"location":{"coordinates":[-73.8331427,40.7637339],"type":"Point"},"name":"Bodhi Fitness Center"} +,{"_id":{"$oid":"55cba2476c522cafdb0558a6"},"location":{"coordinates":[-73.9838469,40.7304796],"type":"Point"},"name":"Pata Negra"} +,{"_id":{"$oid":"55cba2476c522cafdb0558a7"},"location":{"coordinates":[-73.9793365,40.7280362],"type":"Point"},"name":"Back Forty"} +,{"_id":{"$oid":"55cba2476c522cafdb0558a8"},"location":{"coordinates":[-73.9578614,40.7811731],"type":"Point"},"name":"Newman And Leventhal Caterers"} +,{"_id":{"$oid":"55cba2476c522cafdb0558a9"},"location":{"coordinates":[-73.8228292,40.75417830000001],"type":"Point"},"name":"Singas Famous Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0558aa"},"location":{"coordinates":[-73.9527334,40.5989699],"type":"Point"},"name":"East Sushi Bistro"} +,{"_id":{"$oid":"55cba2476c522cafdb0558ab"},"location":{"coordinates":[-73.93444649999999,40.6019043],"type":"Point"},"name":"Sakura Japanese Restaurant 3118"} +,{"_id":{"$oid":"55cba2476c522cafdb0558ac"},"location":{"coordinates":[-73.96253399999999,40.759319],"type":"Point"},"name":"Real Thai Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0558ad"},"location":{"coordinates":[-73.98318019999999,40.7675702],"type":"Point"},"name":"Blue Ribbon Sushi Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0558ae"},"location":{"coordinates":[-73.9662891,40.8054834],"type":"Point"},"name":"Pinkberry"} +,{"_id":{"$oid":"55cba2476c522cafdb0558af"},"location":{"coordinates":[-73.9588378,40.7105746],"type":"Point"},"name":"Cafe El Puente Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0558b0"},"location":{"coordinates":[-73.9691283,40.7557713],"type":"Point"},"name":"Pod Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0558b1"},"location":{"coordinates":[-73.9446632,40.7148876],"type":"Point"},"name":"Mother'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0558b2"},"location":{"coordinates":[-73.981059,40.738568],"type":"Point"},"name":"Limon"} +,{"_id":{"$oid":"55cba2476c522cafdb0558b3"},"location":{"coordinates":[-73.9883255,40.732713],"type":"Point"},"name":"Everyman Espresso"} +,{"_id":{"$oid":"55cba2476c522cafdb0558b4"},"location":{"coordinates":[-73.91085129999999,40.7045542],"type":"Point"},"name":"Guadalajara De Dia No. 2"} +,{"_id":{"$oid":"55cba2476c522cafdb0558b5"},"location":{"coordinates":[-73.92245,40.7556299],"type":"Point"},"name":"Panera Bread"} +,{"_id":{"$oid":"55cba2476c522cafdb0558b6"},"location":{"coordinates":[-73.978139,40.760081],"type":"Point"},"name":"Johnny Utahs"} +,{"_id":{"$oid":"55cba2476c522cafdb0558b7"},"location":{"coordinates":[-73.8375948,40.8402914],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0558b8"},"location":{"coordinates":[-73.83598409999999,40.8477779],"type":"Point"},"name":"Dunkin' Donuts (South Highway)"} +,{"_id":{"$oid":"55cba2476c522cafdb0558b9"},"location":{"coordinates":[-73.9728246,40.6325367],"type":"Point"},"name":"Great Wall Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0558ba"},"location":{"coordinates":[-73.9057297,40.8779057],"type":"Point"},"name":"Land \u0026 Sea Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0558bb"},"location":{"coordinates":[-73.81670520000002,40.8188751],"type":"Point"},"name":"New Green Dragon"} +,{"_id":{"$oid":"55cba2476c522cafdb0558bc"},"location":{"coordinates":[-73.9922751,40.7218798],"type":"Point"},"name":"The Box"} +,{"_id":{"$oid":"55cba2476c522cafdb0558bd"},"location":{"coordinates":[-73.8635077,40.7615688],"type":"Point"},"name":"El Carriel Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0558be"},"location":{"coordinates":[-73.9802675,40.75292210000001],"type":"Point"},"name":"Cafe 42"} +,{"_id":{"$oid":"55cba2476c522cafdb0558bf"},"location":{"coordinates":[-73.95876299999999,40.71704990000001],"type":"Point"},"name":"Red Bowl Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0558c0"},"location":{"coordinates":[-74.0121273,40.713351],"type":"Point"},"name":"Moody'S Cafeteria"} +,{"_id":{"$oid":"55cba2476c522cafdb0558c1"},"location":{"coordinates":[-73.9882665,40.7282464],"type":"Point"},"name":"Sushi Park"} +,{"_id":{"$oid":"55cba2476c522cafdb0558c2"},"location":{"coordinates":[-74.006554,40.730384],"type":"Point"},"name":"Lelabar"} +,{"_id":{"$oid":"55cba2476c522cafdb0558c3"},"location":{"coordinates":[-73.9568352,40.7669824],"type":"Point"},"name":"Fratellis"} +,{"_id":{"$oid":"55cba2476c522cafdb0558c4"},"location":{"coordinates":[-73.8676418,40.900102],"type":"Point"},"name":"The Coachman 'S Inn Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0558c5"},"location":{"coordinates":[-73.9947229,40.7226969],"type":"Point"},"name":"Prince St. Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0558c6"},"location":{"coordinates":[-73.85506459999999,40.7515552],"type":"Point"},"name":"Los Tres Potrillos Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0558c7"},"location":{"coordinates":[-73.8194884,40.7022711],"type":"Point"},"name":"Vincent \u0026 Andre'S Pizzeria Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0558c8"},"location":{"coordinates":[-73.98031639999999,40.7756773],"type":"Point"},"name":"Magnolia Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0558c9"},"location":{"coordinates":[-73.9916463,40.6903491],"type":"Point"},"name":"New Side Street Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb0558ca"},"location":{"coordinates":[-73.88971719999999,40.844997],"type":"Point"},"name":"El Valle Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0558cb"},"location":{"coordinates":[-73.9483056,40.7109259],"type":"Point"},"name":"Huckleberry Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0558cc"},"location":{"coordinates":[-73.922798,40.76726],"type":"Point"},"name":"Happy Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb0558cd"},"location":{"coordinates":[-73.9879192,40.744406],"type":"Point"},"name":"Ilili Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0558ce"},"location":{"coordinates":[-73.98759810000001,40.736068],"type":"Point"},"name":"Pierre Loti Cafe Wine Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0558cf"},"location":{"coordinates":[-73.9499706,40.7725726],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0558d0"},"location":{"coordinates":[-73.9184619,40.7394659],"type":"Point"},"name":"La Bamba Restaurant \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0558d1"},"location":{"coordinates":[-73.97114619999999,40.7936326],"type":"Point"},"name":"Buceo 95"} +,{"_id":{"$oid":"55cba2476c522cafdb0558d2"},"location":{"coordinates":[-73.955103,40.729873],"type":"Point"},"name":"Karczma"} +,{"_id":{"$oid":"55cba2476c522cafdb0558d3"},"location":{"coordinates":[-73.950923,40.777209],"type":"Point"},"name":"Sotto Cinque"} +,{"_id":{"$oid":"55cba2476c522cafdb0558d4"},"location":{"coordinates":[-73.754424,40.7134835],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0558d5"},"location":{"coordinates":[-74.13015399999999,40.626663],"type":"Point"},"name":"Drunken Monkey Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0558d6"},"location":{"coordinates":[-73.97435469999999,40.7646095],"type":"Point"},"name":"Cps Events At The Plaza"} +,{"_id":{"$oid":"55cba2476c522cafdb0558d7"},"location":{"coordinates":[-74.00078599999999,40.734397],"type":"Point"},"name":"Louro"} +,{"_id":{"$oid":"55cba2476c522cafdb0558d8"},"location":{"coordinates":[-73.9891267,40.729435],"type":"Point"},"name":"Sing Sing Karaoke"} +,{"_id":{"$oid":"55cba2476c522cafdb0558d9"},"location":{"coordinates":[-74.000366,40.735797],"type":"Point"},"name":"Gottino"} +,{"_id":{"$oid":"55cba2476c522cafdb0558da"},"location":{"coordinates":[-74.015377,40.6406162],"type":"Point"},"name":"Papa Johns"} +,{"_id":{"$oid":"55cba2476c522cafdb0558db"},"location":{"coordinates":[-74.0760945,40.6386606],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0558dc"},"location":{"coordinates":[-74.00489689999999,40.7419343],"type":"Point"},"name":"Ninth Street Espresso"} +,{"_id":{"$oid":"55cba2476c522cafdb0558dd"},"location":{"coordinates":[-73.88165649999999,40.76376279999999],"type":"Point"},"name":"Panorama Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0558de"},"location":{"coordinates":[-74.00398,40.651517],"type":"Point"},"name":"Maria'S Bistro Mexicano"} +,{"_id":{"$oid":"55cba2476c522cafdb0558df"},"location":{"coordinates":[-73.9524577,40.7176969],"type":"Point"},"name":"Jimmy'S Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb0558e0"},"location":{"coordinates":[-73.9953508,40.7140216],"type":"Point"},"name":"Hong Kong Station"} +,{"_id":{"$oid":"55cba2476c522cafdb0558e1"},"location":{"coordinates":[-73.9370804,40.80449960000001],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0558e2"},"location":{"coordinates":[-73.9868297,40.7532798],"type":"Point"},"name":"Hale \u0026 Hearty Soups"} +,{"_id":{"$oid":"55cba2476c522cafdb0558e3"},"location":{"coordinates":[-73.86959399999999,40.6769624],"type":"Point"},"name":"Panda House I"} +,{"_id":{"$oid":"55cba2476c522cafdb0558e4"},"location":{"coordinates":[-74.1851231,40.6374543],"type":"Point"},"name":"Hook Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0558e5"},"location":{"coordinates":[-73.9741682,40.59044799999999],"type":"Point"},"name":"Mike'S Cafeteria"} +,{"_id":{"$oid":"55cba2476c522cafdb0558e6"},"location":{"coordinates":[-73.9815591,40.7783191],"type":"Point"},"name":"Grandaisy Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0558e7"},"location":{"coordinates":[-73.87962689999999,40.6614295],"type":"Point"},"name":"Anthony'S Restaurant \u0026 Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb0558e8"},"location":{"coordinates":[-73.9915661,40.7259621],"type":"Point"},"name":"The Bowery Hotel Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0558e9"},"location":{"coordinates":[-73.91940129999999,40.7015751],"type":"Point"},"name":"Chimu"} +,{"_id":{"$oid":"55cba2476c522cafdb0558ea"},"location":{"coordinates":[-73.883438,40.849101],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0558eb"},"location":{"coordinates":[-73.9854704,40.7217131],"type":"Point"},"name":"Remedy Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb0558ec"},"location":{"coordinates":[-73.96319799999999,40.7694587],"type":"Point"},"name":"Hunter Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb0558ed"},"location":{"coordinates":[-73.8846284,40.85405009999999],"type":"Point"},"name":"No 1 Luck Sung Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0558ee"},"location":{"coordinates":[-73.89264279999999,40.8652471],"type":"Point"},"name":"Blanquita Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0558ef"},"location":{"coordinates":[-73.9668233,40.6398618],"type":"Point"},"name":"Cinco De Mayo Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0558f0"},"location":{"coordinates":[-73.9506723,40.6806812],"type":"Point"},"name":"Ali'S Trinidad Roti Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb0558f1"},"location":{"coordinates":[-73.9570037,40.71268389999999],"type":"Point"},"name":"Atlas Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0558f2"},"location":{"coordinates":[-73.9687482,40.6787181],"type":"Point"},"name":"Zaytoons Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0558f3"},"location":{"coordinates":[-73.9614872,40.716613],"type":"Point"},"name":"Radegast Hall \u0026 Biergarten"} +,{"_id":{"$oid":"55cba2476c522cafdb0558f4"},"location":{"coordinates":[-73.99059559999999,40.7177239],"type":"Point"},"name":"Cafe Katja"} +,{"_id":{"$oid":"55cba2476c522cafdb0558f5"},"location":{"coordinates":[-73.83369400000001,40.8686791],"type":"Point"},"name":"Pizza Hut"} +,{"_id":{"$oid":"55cba2476c522cafdb0558f6"},"location":{"coordinates":[-73.8921605,40.8243428],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0558f7"},"location":{"coordinates":[-73.9866285,40.7415086],"type":"Point"},"name":"Credit Suisse B-2= Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0558f8"},"location":{"coordinates":[-73.986569,40.747356],"type":"Point"},"name":"Woorijip"} +,{"_id":{"$oid":"55cba2476c522cafdb0558f9"},"location":{"coordinates":[-73.8911916,40.8540977],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0558fa"},"location":{"coordinates":[-73.9731882,40.7604954],"type":"Point"},"name":"Park Tower Management"} +,{"_id":{"$oid":"55cba2476c522cafdb0558fb"},"location":{"coordinates":[-73.9823998,40.7662723],"type":"Point"},"name":"Manhattan Bridge Club"} +,{"_id":{"$oid":"55cba2476c522cafdb0558fc"},"location":{"coordinates":[-73.7961523,40.6683302],"type":"Point"},"name":"Hilton Hotel Jfk Airport"} +,{"_id":{"$oid":"55cba2476c522cafdb0558fd"},"location":{"coordinates":[-74.001226,40.739528],"type":"Point"},"name":"Norwood"} +,{"_id":{"$oid":"55cba2476c522cafdb0558fe"},"location":{"coordinates":[-74.0043993,40.7318082],"type":"Point"},"name":"Milk \u0026 Cookies Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0558ff"},"location":{"coordinates":[-74.00629200000002,40.73525799999999],"type":"Point"},"name":"Cafe Panino Mucho Gusto"} +,{"_id":{"$oid":"55cba2476c522cafdb055900"},"location":{"coordinates":[-74.0092784,40.7060535],"type":"Point"},"name":"Cipriani Club 55"} +,{"_id":{"$oid":"55cba2476c522cafdb055901"},"location":{"coordinates":[-73.949349,40.64597],"type":"Point"},"name":"Caribbean \u0026 American Entertainment Bar Lounge \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055902"},"location":{"coordinates":[-73.7121228,40.73669820000001],"type":"Point"},"name":"Joe'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb055903"},"location":{"coordinates":[-73.96061399999999,40.657557],"type":"Point"},"name":"Sushi Tatsu Japanese Restaurant Iii"} +,{"_id":{"$oid":"55cba2476c522cafdb055904"},"location":{"coordinates":[-74.0265378,40.6207152],"type":"Point"},"name":"Grand Sichuan House"} +,{"_id":{"$oid":"55cba2476c522cafdb055905"},"location":{"coordinates":[-73.83076,40.7079839],"type":"Point"},"name":"New Jade Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055906"},"location":{"coordinates":[-73.86090329999999,40.6844505],"type":"Point"},"name":"Bicheiros Place"} +,{"_id":{"$oid":"55cba2476c522cafdb055907"},"location":{"coordinates":[-73.7897655,40.76685080000001],"type":"Point"},"name":"Yamato Japanese Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb055908"},"location":{"coordinates":[-73.97922439999999,40.74513049999999],"type":"Point"},"name":"2Nd Avenue Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb055909"},"location":{"coordinates":[-73.989099,40.76383999999999],"type":"Point"},"name":"Basera Indian Bistro"} +,{"_id":{"$oid":"55cba2476c522cafdb05590a"},"location":{"coordinates":[-73.9556255,40.7729687],"type":"Point"},"name":"Hi-Life Restaurant \u0026 Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb05590b"},"location":{"coordinates":[-73.9372964,40.6511697],"type":"Point"},"name":"Rose Garden Catering"} +,{"_id":{"$oid":"55cba2476c522cafdb05590c"},"location":{"coordinates":[-73.9914056,40.765347],"type":"Point"},"name":"Il Melograno"} +,{"_id":{"$oid":"55cba2476c522cafdb05590d"},"location":{"coordinates":[-73.9399403,40.8413998],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb05590e"},"location":{"coordinates":[-73.96754,40.6395136],"type":"Point"},"name":"Connecticut Muffin"} +,{"_id":{"$oid":"55cba2476c522cafdb05590f"},"location":{"coordinates":[-73.9875866,40.74099349999999],"type":"Point"},"name":"Credit Suisse"} +,{"_id":{"$oid":"55cba2476c522cafdb055910"},"location":{"coordinates":[-73.9927335,40.7697795],"type":"Point"},"name":"Terminal 5"} +,{"_id":{"$oid":"55cba2476c522cafdb055911"},"location":{"coordinates":[-73.9875866,40.74099349999999],"type":"Point"},"name":"Credit Suisse"} +,{"_id":{"$oid":"55cba2476c522cafdb055912"},"location":{"coordinates":[-73.91658919999999,40.8187038],"type":"Point"},"name":"Xochimilco Family Rest"} +,{"_id":{"$oid":"55cba2476c522cafdb055913"},"location":{"coordinates":[-73.9866285,40.7415086],"type":"Point"},"name":"Credit Suisse"} +,{"_id":{"$oid":"55cba2476c522cafdb055914"},"location":{"coordinates":[-73.98868150000001,40.71972299999999],"type":"Point"},"name":"Hi Thai"} +,{"_id":{"$oid":"55cba2476c522cafdb055915"},"location":{"coordinates":[-73.9507689,40.774453],"type":"Point"},"name":"Chicken Festival"} +,{"_id":{"$oid":"55cba2476c522cafdb055916"},"location":{"coordinates":[-73.861317,40.7502198],"type":"Point"},"name":"Los Mismo Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055917"},"location":{"coordinates":[-73.9523102,40.823386],"type":"Point"},"name":"Tanto Dulce Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055918"},"location":{"coordinates":[-73.9294314,40.8552474],"type":"Point"},"name":"West 190 Street Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb055919"},"location":{"coordinates":[-74.00947699999999,40.648986],"type":"Point"},"name":"Savoy Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb05591a"},"location":{"coordinates":[-73.9925837,40.7358334],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb05591b"},"location":{"coordinates":[-73.9758531,40.7895403],"type":"Point"},"name":"Hot \u0026 Crusty"} +,{"_id":{"$oid":"55cba2476c522cafdb05591c"},"location":{"coordinates":[-73.98635399999999,40.63673199999999],"type":"Point"},"name":"Bagels 'N More"} +,{"_id":{"$oid":"55cba2476c522cafdb05591d"},"location":{"coordinates":[-73.958263,40.717662],"type":"Point"},"name":"Mizu Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb05591e"},"location":{"coordinates":[-73.991719,40.759222],"type":"Point"},"name":"Patron Mexican Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb05591f"},"location":{"coordinates":[-73.958733,40.7066051],"type":"Point"},"name":"Green And Ackerman Kosher Dairy Restaurant \u0026 Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb055920"},"location":{"coordinates":[-73.9819129,40.77151449999999],"type":"Point"},"name":"Bar Boulud"} +,{"_id":{"$oid":"55cba2476c522cafdb055921"},"location":{"coordinates":[-73.99869199999999,40.7325],"type":"Point"},"name":"North Square"} +,{"_id":{"$oid":"55cba2476c522cafdb055922"},"location":{"coordinates":[-73.8735915,40.7507194],"type":"Point"},"name":"Delicias Tropical Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055923"},"location":{"coordinates":[-73.965034,40.8007716],"type":"Point"},"name":"Blockheads Burritos"} +,{"_id":{"$oid":"55cba2476c522cafdb055924"},"location":{"coordinates":[-73.8292163,40.7603288],"type":"Point"},"name":"Jade Asian Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055925"},"location":{"coordinates":[-73.90776,40.70011],"type":"Point"},"name":"El Montanero Bakery And Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055926"},"location":{"coordinates":[-73.94083060000001,40.7985629],"type":"Point"},"name":"La Preciosa China Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055927"},"location":{"coordinates":[-73.969911,40.795201],"type":"Point"},"name":"Chicojulio"} +,{"_id":{"$oid":"55cba2476c522cafdb055928"},"location":{"coordinates":[-73.8497699,40.733227],"type":"Point"},"name":"Dunkin' Donuts, Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb055929"},"location":{"coordinates":[-73.8106789,40.705155],"type":"Point"},"name":"Doll'S"} +,{"_id":{"$oid":"55cba2476c522cafdb05592a"},"location":{"coordinates":[-73.9861623,40.7270499],"type":"Point"},"name":"Abraco"} +,{"_id":{"$oid":"55cba2476c522cafdb05592b"},"location":{"coordinates":[-73.98139259999999,40.7581047],"type":"Point"},"name":"Pret A Manger"} +,{"_id":{"$oid":"55cba2476c522cafdb05592c"},"location":{"coordinates":[-74.00985849999999,40.7155442],"type":"Point"},"name":"Zucker'S Bagels And Smoked Fish"} +,{"_id":{"$oid":"55cba2476c522cafdb05592d"},"location":{"coordinates":[-73.80225899999999,40.6741699],"type":"Point"},"name":"G'S Restaurant \u0026 Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb05592e"},"location":{"coordinates":[-74.19138149999999,40.5879498],"type":"Point"},"name":"Nrgize Life Style Cafe (La Fitness)"} +,{"_id":{"$oid":"55cba2476c522cafdb05592f"},"location":{"coordinates":[-73.8321443,40.8465858],"type":"Point"},"name":"K Love Q Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055930"},"location":{"coordinates":[-73.976669,40.785962],"type":"Point"},"name":"Soldier Mcgee Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb055931"},"location":{"coordinates":[-73.7452239,40.6373634],"type":"Point"},"name":"Bayhouse"} +,{"_id":{"$oid":"55cba2476c522cafdb055932"},"location":{"coordinates":[-73.923789,40.701614],"type":"Point"},"name":"Mi Bella Dama Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055933"},"location":{"coordinates":[-73.9824347,40.7578271],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb055934"},"location":{"coordinates":[-73.9190679,40.8177865],"type":"Point"},"name":"Huaxcuaxtla Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055935"},"location":{"coordinates":[-73.990382,40.741571],"type":"Point"},"name":"Starbucks Coffee (Store #13539)"} +,{"_id":{"$oid":"55cba2476c522cafdb055936"},"location":{"coordinates":[-73.9525805,40.7811959],"type":"Point"},"name":"Naruto Ramen"} +,{"_id":{"$oid":"55cba2476c522cafdb055937"},"location":{"coordinates":[-74.000281,40.726866],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb055938"},"location":{"coordinates":[-73.98952609999999,40.7507917],"type":"Point"},"name":"Starbucks Coffee Macy'S 6Th Floor"} +,{"_id":{"$oid":"55cba2476c522cafdb055939"},"location":{"coordinates":[-73.98952609999999,40.7507917],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb05593a"},"location":{"coordinates":[-73.8328336,40.7150471],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb05593b"},"location":{"coordinates":[-73.80327659999999,40.6745376],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb05593c"},"location":{"coordinates":[-73.8318055,40.8477],"type":"Point"},"name":"Lucca Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05593d"},"location":{"coordinates":[-73.878861,40.7129296],"type":"Point"},"name":"Pat'S Sports Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05593e"},"location":{"coordinates":[-73.973978,40.78964000000001],"type":"Point"},"name":"Papa John'S/Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb05593f"},"location":{"coordinates":[-73.8999717,40.7006471],"type":"Point"},"name":"Mr Chen Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055940"},"location":{"coordinates":[-73.98464369999999,40.6707851],"type":"Point"},"name":"Corner Burger"} +,{"_id":{"$oid":"55cba2476c522cafdb055941"},"location":{"coordinates":[-73.957082,40.598991],"type":"Point"},"name":"L \u0026 U Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055942"},"location":{"coordinates":[-73.9916637,40.7184537],"type":"Point"},"name":"Duo Tian Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb055943"},"location":{"coordinates":[-73.92566980000001,40.7026931],"type":"Point"},"name":"Gaby'S Bakeryw"} +,{"_id":{"$oid":"55cba2476c522cafdb055944"},"location":{"coordinates":[-73.84304480000002,40.862238],"type":"Point"},"name":"Villa Maria Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb055945"},"location":{"coordinates":[-73.9019952,40.7028082],"type":"Point"},"name":"Super Pollo Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055946"},"location":{"coordinates":[-73.9673569,40.762712],"type":"Point"},"name":"Green Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055947"},"location":{"coordinates":[-73.993146,40.661888],"type":"Point"},"name":"Quarter"} +,{"_id":{"$oid":"55cba2476c522cafdb055948"},"location":{"coordinates":[-73.9897601,40.7228168],"type":"Point"},"name":"Lounge 247 I M O K"} +,{"_id":{"$oid":"55cba2476c522cafdb055949"},"location":{"coordinates":[-73.9822449,40.6127274],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb05594a"},"location":{"coordinates":[-73.9183395,40.6294478],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb05594b"},"location":{"coordinates":[-73.8811546,40.8824542],"type":"Point"},"name":"Caribe Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05594c"},"location":{"coordinates":[-73.8167149,40.7545994],"type":"Point"},"name":"Happy Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb05594d"},"location":{"coordinates":[-73.7703099,40.7635331],"type":"Point"},"name":"Donovan'S Grill \u0026 Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb05594e"},"location":{"coordinates":[-73.9207236,40.8357678],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb05594f"},"location":{"coordinates":[-73.81519399999999,40.761977],"type":"Point"},"name":"Ouh Mou Na Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055950"},"location":{"coordinates":[-73.97661660000001,40.7626955],"type":"Point"},"name":"Five Guys Burgers And Fries"} +,{"_id":{"$oid":"55cba2476c522cafdb055951"},"location":{"coordinates":[-73.95790749999999,40.7198938],"type":"Point"},"name":"Miranda Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055952"},"location":{"coordinates":[-73.95512660000001,40.7335301],"type":"Point"},"name":"Cafecito Bogota"} +,{"_id":{"$oid":"55cba2476c522cafdb055953"},"location":{"coordinates":[-73.96842769999999,40.7545327],"type":"Point"},"name":"Abitino'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb055954"},"location":{"coordinates":[-73.8499318,40.8758594],"type":"Point"},"name":"Prime Time Caribbean Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb055955"},"location":{"coordinates":[-74.00283209999999,40.6416128],"type":"Point"},"name":"T Baar"} +,{"_id":{"$oid":"55cba2476c522cafdb055956"},"location":{"coordinates":[-73.9400606,40.8057466],"type":"Point"},"name":"A Taste Of Sea Food"} +,{"_id":{"$oid":"55cba2476c522cafdb055957"},"location":{"coordinates":[-73.9016061,40.8555109],"type":"Point"},"name":"Tacos Puebla Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055958"},"location":{"coordinates":[-73.99025979999999,40.7591385],"type":"Point"},"name":"Gallo Nero"} +,{"_id":{"$oid":"55cba2476c522cafdb055959"},"location":{"coordinates":[-73.987768,40.765661],"type":"Point"},"name":"Limon Jungle"} +,{"_id":{"$oid":"55cba2476c522cafdb05595a"},"location":{"coordinates":[-73.9867853,40.7661302],"type":"Point"},"name":"Bocca Di Bacco"} +,{"_id":{"$oid":"55cba2476c522cafdb05595b"},"location":{"coordinates":[-73.8570955,40.8432408],"type":"Point"},"name":"Mix Stirs"} +,{"_id":{"$oid":"55cba2476c522cafdb05595c"},"location":{"coordinates":[-73.9757635,40.7544736],"type":"Point"},"name":"Wichcraft"} +,{"_id":{"$oid":"55cba2476c522cafdb05595d"},"location":{"coordinates":[-73.978859,40.7580598],"type":"Point"},"name":"Wichcraft"} +,{"_id":{"$oid":"55cba2476c522cafdb05595e"},"location":{"coordinates":[-73.9714209,40.7922221],"type":"Point"},"name":"Kouzan"} +,{"_id":{"$oid":"55cba2476c522cafdb05595f"},"location":{"coordinates":[-73.95447639999999,40.5876076],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb055960"},"location":{"coordinates":[-74.029026,40.621969],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb055961"},"location":{"coordinates":[-73.9683478,40.7988742],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb055962"},"location":{"coordinates":[-73.883495,40.816652],"type":"Point"},"name":"Zone Culinaire"} +,{"_id":{"$oid":"55cba2476c522cafdb055963"},"location":{"coordinates":[-73.9246501,40.8405779],"type":"Point"},"name":"Whitson'S At Sharp House-Good Shepherd"} +,{"_id":{"$oid":"55cba2476c522cafdb055964"},"location":{"coordinates":[-73.8140576,40.79005170000001],"type":"Point"},"name":"Mr. Pollo Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb055965"},"location":{"coordinates":[-73.988846,40.738266],"type":"Point"},"name":"Bocca"} +,{"_id":{"$oid":"55cba2476c522cafdb055966"},"location":{"coordinates":[-74.0016516,40.7288433],"type":"Point"},"name":"Mermaid Oyster Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb055967"},"location":{"coordinates":[-73.8531249,40.74031470000001],"type":"Point"},"name":"Empanadas Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055968"},"location":{"coordinates":[-73.8548437,40.7434575],"type":"Point"},"name":"Corona Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb055969"},"location":{"coordinates":[-73.9827415,40.7776562],"type":"Point"},"name":"Pinkberry"} +,{"_id":{"$oid":"55cba2476c522cafdb05596a"},"location":{"coordinates":[-73.8837989,40.733217],"type":"Point"},"name":"Li Li Chinese Food"} +,{"_id":{"$oid":"55cba2476c522cafdb05596b"},"location":{"coordinates":[-73.77585289999999,40.7052258],"type":"Point"},"name":"Lirr Employee Cafeteria"} +,{"_id":{"$oid":"55cba2476c522cafdb05596c"},"location":{"coordinates":[-73.833541,40.759974],"type":"Point"},"name":"Deli Manjoo Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb05596d"},"location":{"coordinates":[-74.13449609999999,40.6360332],"type":"Point"},"name":"No. 1 Chinese Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb05596e"},"location":{"coordinates":[-74.0009847,40.7279278],"type":"Point"},"name":"Sullivan Bistro"} +,{"_id":{"$oid":"55cba2476c522cafdb05596f"},"location":{"coordinates":[-74.0012835,40.7178239],"type":"Point"},"name":"Santos Party House"} +,{"_id":{"$oid":"55cba2476c522cafdb055970"},"location":{"coordinates":[-73.9984465,40.6049853],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb055971"},"location":{"coordinates":[-73.98451,40.729233],"type":"Point"},"name":"Momofuku Noodle Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb055972"},"location":{"coordinates":[-73.96738189999999,40.792522],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb055973"},"location":{"coordinates":[-73.8888522,40.76505110000001],"type":"Point"},"name":"Starlight Grill Restaurant \u0026 Sweets"} +,{"_id":{"$oid":"55cba2476c522cafdb055974"},"location":{"coordinates":[-73.952961,40.775701],"type":"Point"},"name":"Big Daddy'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055975"},"location":{"coordinates":[-73.9842543,40.7398336],"type":"Point"},"name":"Gramercy Star Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055976"},"location":{"coordinates":[-73.91937899999999,40.814447],"type":"Point"},"name":"Papa John'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055977"},"location":{"coordinates":[-73.902408,40.8361251],"type":"Point"},"name":"Papa John'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055978"},"location":{"coordinates":[-73.8518098,40.8353217],"type":"Point"},"name":"Canoa"} +,{"_id":{"$oid":"55cba2476c522cafdb055979"},"location":{"coordinates":[-73.84820049999999,40.876147],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb05597a"},"location":{"coordinates":[-73.97768099999999,40.745241],"type":"Point"},"name":"Pio Pio"} +,{"_id":{"$oid":"55cba2476c522cafdb05597b"},"location":{"coordinates":[-73.998325,40.638213],"type":"Point"},"name":"J \u0026 J Hot Food And Salad"} +,{"_id":{"$oid":"55cba2476c522cafdb05597c"},"location":{"coordinates":[-73.8273172,40.6944985],"type":"Point"},"name":"Villa Garden Famous Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05597d"},"location":{"coordinates":[-73.97669499999999,40.762982],"type":"Point"},"name":"Uncle Jack'S Steakhouse"} +,{"_id":{"$oid":"55cba2476c522cafdb05597e"},"location":{"coordinates":[-73.9064696,40.7131406],"type":"Point"},"name":"Pollo A La Brasa"} +,{"_id":{"$oid":"55cba2476c522cafdb05597f"},"location":{"coordinates":[-73.9798747,40.7642459],"type":"Point"},"name":"Dean \u0026 Deluca"} +,{"_id":{"$oid":"55cba2476c522cafdb055980"},"location":{"coordinates":[-73.978859,40.7580598],"type":"Point"},"name":"Dean \u0026 Deluca"} +,{"_id":{"$oid":"55cba2476c522cafdb055981"},"location":{"coordinates":[-74.234447,40.523559],"type":"Point"},"name":"The Bake Shoppe"} +,{"_id":{"$oid":"55cba2476c522cafdb055982"},"location":{"coordinates":[-74.1787487,40.6131202],"type":"Point"},"name":"Hampton Inn \u0026 Suites"} +,{"_id":{"$oid":"55cba2476c522cafdb055983"},"location":{"coordinates":[-73.98905280000001,40.7522021],"type":"Point"},"name":"Macaron Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055984"},"location":{"coordinates":[-74.0091285,40.7091424],"type":"Point"},"name":"22 Thai Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb055985"},"location":{"coordinates":[-73.828243,40.763042],"type":"Point"},"name":"Oriental Glamour"} +,{"_id":{"$oid":"55cba2476c522cafdb055986"},"location":{"coordinates":[-73.987364,40.740301],"type":"Point"},"name":"Hale \u0026 Hearty Soups"} +,{"_id":{"$oid":"55cba2476c522cafdb055987"},"location":{"coordinates":[-73.960308,40.718229],"type":"Point"},"name":"This \u0026 That"} +,{"_id":{"$oid":"55cba2476c522cafdb055988"},"location":{"coordinates":[-73.8888699,40.6573999],"type":"Point"},"name":"Papa John'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055989"},"location":{"coordinates":[-73.9453636,40.778846],"type":"Point"},"name":"Timmy'S By The River"} +,{"_id":{"$oid":"55cba2476c522cafdb05598a"},"location":{"coordinates":[-73.9575687,40.7183236],"type":"Point"},"name":"Peter'S Since 1969"} +,{"_id":{"$oid":"55cba2476c522cafdb05598b"},"location":{"coordinates":[-73.8631953,40.87115190000001],"type":"Point"},"name":"Lash West Indian And American Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb05598c"},"location":{"coordinates":[-73.9421332,40.7143375],"type":"Point"},"name":"Il Passatore"} +,{"_id":{"$oid":"55cba2476c522cafdb05598d"},"location":{"coordinates":[-73.81455079999999,40.7043111],"type":"Point"},"name":"New Joy Kitchen Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05598e"},"location":{"coordinates":[-73.9915638,40.71453109999999],"type":"Point"},"name":"Bacaro"} +,{"_id":{"$oid":"55cba2476c522cafdb05598f"},"location":{"coordinates":[-74.1164189,40.573557],"type":"Point"},"name":"Los 2 Potrillos Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055990"},"location":{"coordinates":[-73.985096,40.7683543],"type":"Point"},"name":"Europan Bakery Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055991"},"location":{"coordinates":[-73.9625702,40.63437709999999],"type":"Point"},"name":"Pablo'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055992"},"location":{"coordinates":[-73.9957198,40.6821269],"type":"Point"},"name":"Enoteca On Court"} +,{"_id":{"$oid":"55cba2476c522cafdb055993"},"location":{"coordinates":[-73.9580029,40.7333365],"type":"Point"},"name":"Tbd Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb055994"},"location":{"coordinates":[-73.9920678,40.6005966],"type":"Point"},"name":"Chikurin"} +,{"_id":{"$oid":"55cba2476c522cafdb055995"},"location":{"coordinates":[-73.964998,40.800841],"type":"Point"},"name":"Tropical Sensation"} +,{"_id":{"$oid":"55cba2476c522cafdb055996"},"location":{"coordinates":[-73.9808463,40.7301708],"type":"Point"},"name":"Planet Rose"} +,{"_id":{"$oid":"55cba2476c522cafdb055997"},"location":{"coordinates":[-74.009064,40.618362],"type":"Point"},"name":"Taste Of China"} +,{"_id":{"$oid":"55cba2476c522cafdb055998"},"location":{"coordinates":[-74.0171246,40.6389032],"type":"Point"},"name":"New Long River"} +,{"_id":{"$oid":"55cba2476c522cafdb055999"},"location":{"coordinates":[-73.9852664,40.7630794],"type":"Point"},"name":"Chipotle Mexican Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb05599a"},"location":{"coordinates":[-73.96585979999999,40.7605794],"type":"Point"},"name":"Evolve"} +,{"_id":{"$oid":"55cba2476c522cafdb05599b"},"location":{"coordinates":[-73.98639969999999,40.7294468],"type":"Point"},"name":"Dessert Club, Chikalicious"} +,{"_id":{"$oid":"55cba2476c522cafdb05599c"},"location":{"coordinates":[-73.99709059999999,40.7370788],"type":"Point"},"name":"Gustorganics"} +,{"_id":{"$oid":"55cba2476c522cafdb05599d"},"location":{"coordinates":[-73.9926938,40.7279823],"type":"Point"},"name":"Astor Center"} +,{"_id":{"$oid":"55cba2476c522cafdb05599e"},"location":{"coordinates":[-73.8172931,40.8185973],"type":"Point"},"name":"New Hawaii Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05599f"},"location":{"coordinates":[-73.9613646,40.8089292],"type":"Point"},"name":"Cafe East - Uris Hall"} +,{"_id":{"$oid":"55cba2476c522cafdb0559a0"},"location":{"coordinates":[-73.94352959999999,40.8361392],"type":"Point"},"name":"Brothers Fish Market"} +,{"_id":{"$oid":"55cba2476c522cafdb0559a1"},"location":{"coordinates":[-73.9774372,40.6722031],"type":"Point"},"name":"Tutta Pasta"} +,{"_id":{"$oid":"55cba2476c522cafdb0559a2"},"location":{"coordinates":[-74.0067457,40.6213332],"type":"Point"},"name":"Chef Andrea"} +,{"_id":{"$oid":"55cba2476c522cafdb0559a3"},"location":{"coordinates":[-74.234561,40.522514],"type":"Point"},"name":"Page Plaza Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb0559a4"},"location":{"coordinates":[-73.9791846,40.72746],"type":"Point"},"name":"Spina"} +,{"_id":{"$oid":"55cba2476c522cafdb0559a5"},"location":{"coordinates":[-73.9862747,40.7267315],"type":"Point"},"name":"Ugly Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0559a6"},"location":{"coordinates":[-73.9680532,40.7569459],"type":"Point"},"name":"Club Gera Gera"} +,{"_id":{"$oid":"55cba2476c522cafdb0559a7"},"location":{"coordinates":[-73.968576,40.75528],"type":"Point"},"name":"Pig \u0026 Whistle"} +,{"_id":{"$oid":"55cba2476c522cafdb0559a8"},"location":{"coordinates":[-73.87882119999999,40.8703011],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0559a9"},"location":{"coordinates":[-73.79125570000001,40.8554913],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0559aa"},"location":{"coordinates":[-73.84187639999999,40.7587464],"type":"Point"},"name":"Juanita National Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0559ab"},"location":{"coordinates":[-73.8293716,40.76020889999999],"type":"Point"},"name":"Fay Da Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0559ac"},"location":{"coordinates":[-73.8252432,40.6859776],"type":"Point"},"name":"Chopsticks"} +,{"_id":{"$oid":"55cba2476c522cafdb0559ad"},"location":{"coordinates":[-73.9863996,40.7282746],"type":"Point"},"name":"Ramen Setagaya"} +,{"_id":{"$oid":"55cba2476c522cafdb0559ae"},"location":{"coordinates":[-73.9708163,40.7577483],"type":"Point"},"name":"Reed Smith"} +,{"_id":{"$oid":"55cba2476c522cafdb0559af"},"location":{"coordinates":[-73.9782702,40.689628],"type":"Point"},"name":"Caffe E Vino"} +,{"_id":{"$oid":"55cba2476c522cafdb0559b0"},"location":{"coordinates":[-73.93501309999999,40.6022075],"type":"Point"},"name":"Donut Connection/Hershey'S Ice Cream"} +,{"_id":{"$oid":"55cba2476c522cafdb0559b1"},"location":{"coordinates":[-73.9439866,40.83553],"type":"Point"},"name":"La Guadalupana Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0559b2"},"location":{"coordinates":[-73.7822056,40.6434612],"type":"Point"},"name":"Wolfgang Puck Express"} +,{"_id":{"$oid":"55cba2476c522cafdb0559b3"},"location":{"coordinates":[-73.89135540000001,40.821037],"type":"Point"},"name":"Kennedy'S Chicken \u0026 Sandwichs"} +,{"_id":{"$oid":"55cba2476c522cafdb0559b4"},"location":{"coordinates":[-73.954388,40.7749032],"type":"Point"},"name":"Balon"} +,{"_id":{"$oid":"55cba2476c522cafdb0559b5"},"location":{"coordinates":[-73.9884998,40.731068],"type":"Point"},"name":"The Smith"} +,{"_id":{"$oid":"55cba2476c522cafdb0559b6"},"location":{"coordinates":[-73.93523499999999,40.845282],"type":"Point"},"name":"Marilu \u0026 Deysi Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0559b7"},"location":{"coordinates":[-73.99748,40.746108],"type":"Point"},"name":"Brooklyn Bagel \u0026 Coffee Company"} +,{"_id":{"$oid":"55cba2476c522cafdb0559b8"},"location":{"coordinates":[-72.4751457,43.2956803],"type":"Point"},"name":"Haru"} +,{"_id":{"$oid":"55cba2476c522cafdb0559b9"},"location":{"coordinates":[-74.005802,40.735052],"type":"Point"},"name":"Le Pain Quotidien"} +,{"_id":{"$oid":"55cba2476c522cafdb0559ba"},"location":{"coordinates":[-73.754424,40.7134835],"type":"Point"},"name":"Popeyes Chicken \u0026 Biscuits"} +,{"_id":{"$oid":"55cba2476c522cafdb0559bb"},"location":{"coordinates":[-73.9846026,40.753209],"type":"Point"},"name":"Le Pain Quotidien"} +,{"_id":{"$oid":"55cba2476c522cafdb0559bc"},"location":{"coordinates":[-73.9854778,40.7610164],"type":"Point"},"name":"Serafina At Time Hotel"} +,{"_id":{"$oid":"55cba2476c522cafdb0559bd"},"location":{"coordinates":[-73.9557042,40.7078844],"type":"Point"},"name":"Trophy"} +,{"_id":{"$oid":"55cba2476c522cafdb0559be"},"location":{"coordinates":[-73.8628755,40.8273417],"type":"Point"},"name":"Burger King"} +,{"_id":{"$oid":"55cba2476c522cafdb0559bf"},"location":{"coordinates":[-73.98352770000001,40.6885355],"type":"Point"},"name":"Ihop"} +,{"_id":{"$oid":"55cba2476c522cafdb0559c0"},"location":{"coordinates":[-73.9999734,40.7268357],"type":"Point"},"name":"Jivamuktea Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0559c1"},"location":{"coordinates":[-73.84170900000001,40.7578729],"type":"Point"},"name":"Master Express Deli \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0559c2"},"location":{"coordinates":[-73.97998869999999,40.66035900000001],"type":"Point"},"name":"The Dub Pie Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb0559c3"},"location":{"coordinates":[-74.1660553,40.5823983],"type":"Point"},"name":"Gloria Jeans Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0559c4"},"location":{"coordinates":[-73.985501,40.731012],"type":"Point"},"name":"12 Street Ale House"} +,{"_id":{"$oid":"55cba2476c522cafdb0559c5"},"location":{"coordinates":[-74.134597,40.6369649],"type":"Point"},"name":"La Buena Vida Tropical"} +,{"_id":{"$oid":"55cba2476c522cafdb0559c6"},"location":{"coordinates":[-73.9798129,40.5757419],"type":"Point"},"name":"Foxy Gentlemen'S Club"} +,{"_id":{"$oid":"55cba2476c522cafdb0559c7"},"location":{"coordinates":[-73.9426919,40.794768],"type":"Point"},"name":"Amor Cubano"} +,{"_id":{"$oid":"55cba2476c522cafdb0559c8"},"location":{"coordinates":[-73.9732203,40.7498855],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0559c9"},"location":{"coordinates":[-73.996408,40.720042],"type":"Point"},"name":"Oro Bakery And Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0559ca"},"location":{"coordinates":[-73.7822056,40.6434612],"type":"Point"},"name":"The Medalist Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0559cb"},"location":{"coordinates":[-73.9101203,40.8858697],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0559cc"},"location":{"coordinates":[-73.9832,40.6652905],"type":"Point"},"name":"Little Purity"} +,{"_id":{"$oid":"55cba2476c522cafdb0559cd"},"location":{"coordinates":[-73.9279189,40.7695189],"type":"Point"},"name":"Club 21 Bar \u0026 Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb0559ce"},"location":{"coordinates":[-73.98814,40.728511],"type":"Point"},"name":"Miso-Ya"} +,{"_id":{"$oid":"55cba2476c522cafdb0559cf"},"location":{"coordinates":[-73.9243078,40.756529],"type":"Point"},"name":"Psari"} +,{"_id":{"$oid":"55cba2476c522cafdb0559d0"},"location":{"coordinates":[-74.0061937,40.7439952],"type":"Point"},"name":"1 Oak"} +,{"_id":{"$oid":"55cba2476c522cafdb0559d1"},"location":{"coordinates":[-73.974594,40.788813],"type":"Point"},"name":"The Mermaid Inn"} +,{"_id":{"$oid":"55cba2476c522cafdb0559d2"},"location":{"coordinates":[-73.9528705,40.7717378],"type":"Point"},"name":"Sedutto"} +,{"_id":{"$oid":"55cba2476c522cafdb0559d3"},"location":{"coordinates":[-73.8269499,40.7607984],"type":"Point"},"name":"Chung Moo Roll Rice \u0026 Dongas"} +,{"_id":{"$oid":"55cba2476c522cafdb0559d4"},"location":{"coordinates":[-73.88936799999999,40.8534836],"type":"Point"},"name":"Las Chatas Taqueria \u0026 Deli Grocery"} +,{"_id":{"$oid":"55cba2476c522cafdb0559d5"},"location":{"coordinates":[-73.9988889,40.7477778],"type":"Point"},"name":"Au Bon Pain"} +,{"_id":{"$oid":"55cba2476c522cafdb0559d6"},"location":{"coordinates":[-73.98325919999999,40.7572833],"type":"Point"},"name":"Cranberry Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0559d7"},"location":{"coordinates":[-73.9050913,40.8793648],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0559d8"},"location":{"coordinates":[-73.85878439999999,40.69272520000001],"type":"Point"},"name":"Sal'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb0559d9"},"location":{"coordinates":[-73.9020941,40.6451631],"type":"Point"},"name":"Tastee Pattee Bakery And Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0559da"},"location":{"coordinates":[-73.97645969999999,40.7864263],"type":"Point"},"name":"Spiga Ristorante"} +,{"_id":{"$oid":"55cba2476c522cafdb0559db"},"location":{"coordinates":[-73.8993571,40.8577583],"type":"Point"},"name":"Reposteria Nitin"} +,{"_id":{"$oid":"55cba2476c522cafdb0559dc"},"location":{"coordinates":[-73.9763511,40.7804818],"type":"Point"},"name":"Isabella'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0559dd"},"location":{"coordinates":[-73.9261085,40.7626515],"type":"Point"},"name":"New York Pao De Queijo"} +,{"_id":{"$oid":"55cba2476c522cafdb0559de"},"location":{"coordinates":[-73.8664015,40.7425916],"type":"Point"},"name":"Amanecer Latino Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0559df"},"location":{"coordinates":[-73.86711670000001,40.8222267],"type":"Point"},"name":"New Kee Hing Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0559e0"},"location":{"coordinates":[-73.97050920000001,40.6467119],"type":"Point"},"name":"Shayna'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0559e1"},"location":{"coordinates":[-73.85857639999999,40.8634811],"type":"Point"},"name":"Li'S Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0559e2"},"location":{"coordinates":[-73.98681499999999,40.668137],"type":"Point"},"name":"Peppino'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0559e3"},"location":{"coordinates":[-73.9831834,40.7308927],"type":"Point"},"name":"Senor Pollo"} +,{"_id":{"$oid":"55cba2476c522cafdb0559e4"},"location":{"coordinates":[-73.9880156,40.7285229],"type":"Point"},"name":"Pauls Da Burger Joint"} +,{"_id":{"$oid":"55cba2476c522cafdb0559e5"},"location":{"coordinates":[-73.9828726,40.7454761],"type":"Point"},"name":"Chipotle Mexican Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0559e6"},"location":{"coordinates":[-74.1305995,40.6261618],"type":"Point"},"name":"Cookie Jar"} +,{"_id":{"$oid":"55cba2476c522cafdb0559e7"},"location":{"coordinates":[-73.8310924,40.8476756],"type":"Point"},"name":"Honey'S Thai Pavilion"} +,{"_id":{"$oid":"55cba2476c522cafdb0559e8"},"location":{"coordinates":[-73.982286,40.6585982],"type":"Point"},"name":"Dice Thai Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb0559e9"},"location":{"coordinates":[-74.007378,40.725323],"type":"Point"},"name":"Tauro Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0559ea"},"location":{"coordinates":[-73.8663981,40.7577684],"type":"Point"},"name":"King Tacos Mexico"} +,{"_id":{"$oid":"55cba2476c522cafdb0559eb"},"location":{"coordinates":[-73.9194553,40.75841],"type":"Point"},"name":"La Fonda Antioquena"} +,{"_id":{"$oid":"55cba2476c522cafdb0559ec"},"location":{"coordinates":[-74.07682439999999,40.6422972],"type":"Point"},"name":"Jimmie Steiny'S Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb0559ed"},"location":{"coordinates":[-73.9819813,40.6784299],"type":"Point"},"name":"Lin'S Garden Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0559ee"},"location":{"coordinates":[-73.96297849999999,40.7123055],"type":"Point"},"name":"The Rabbit Hole"} +,{"_id":{"$oid":"55cba2476c522cafdb0559ef"},"location":{"coordinates":[-73.9255831,40.7435522],"type":"Point"},"name":"Pete'S Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0559f0"},"location":{"coordinates":[-73.89093299999999,40.8571882],"type":"Point"},"name":"Fiesta Cafe Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0559f1"},"location":{"coordinates":[-73.86882500000002,40.74762],"type":"Point"},"name":"Don Francisco Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0559f2"},"location":{"coordinates":[-73.9936244,40.7139327],"type":"Point"},"name":"East Broadway Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0559f3"},"location":{"coordinates":[-73.986026,40.731382],"type":"Point"},"name":"Shoolbred'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0559f4"},"location":{"coordinates":[-73.848049,40.710215],"type":"Point"},"name":"Pampas Argentinas"} +,{"_id":{"$oid":"55cba2476c522cafdb0559f5"},"location":{"coordinates":[-73.978498,40.776961],"type":"Point"},"name":"Riposo 72"} +,{"_id":{"$oid":"55cba2476c522cafdb0559f6"},"location":{"coordinates":[-73.984229,40.726099],"type":"Point"},"name":"Giano"} +,{"_id":{"$oid":"55cba2476c522cafdb0559f7"},"location":{"coordinates":[-74.01175099999999,40.7156001],"type":"Point"},"name":"Barnes And Noble Booksellers"} +,{"_id":{"$oid":"55cba2476c522cafdb0559f8"},"location":{"coordinates":[-73.84292429999999,40.6750427],"type":"Point"},"name":"Golden Way Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0559f9"},"location":{"coordinates":[-74.0006118,40.6760972],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0559fa"},"location":{"coordinates":[-73.9338727,40.67701710000001],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0559fb"},"location":{"coordinates":[-74.0040068,40.7379545],"type":"Point"},"name":"Dell'Anima"} +,{"_id":{"$oid":"55cba2476c522cafdb0559fc"},"location":{"coordinates":[-73.9527836,40.8237879],"type":"Point"},"name":"Burger King"} +,{"_id":{"$oid":"55cba2476c522cafdb0559fd"},"location":{"coordinates":[-73.98443999999999,40.72666299999999],"type":"Point"},"name":"Bourgeois Pig North"} +,{"_id":{"$oid":"55cba2476c522cafdb0559fe"},"location":{"coordinates":[-73.8309488,40.8473091],"type":"Point"},"name":"Top Tortillas"} +,{"_id":{"$oid":"55cba2476c522cafdb0559ff"},"location":{"coordinates":[-73.9113194,40.7689037],"type":"Point"},"name":"San Antonio Bakery #2"} +,{"_id":{"$oid":"55cba2476c522cafdb055a00"},"location":{"coordinates":[-73.7938875,40.7707511],"type":"Point"},"name":"Carvel Ice Cream"} +,{"_id":{"$oid":"55cba2476c522cafdb055a01"},"location":{"coordinates":[-73.9936274,40.689799],"type":"Point"},"name":"Eventfull Nyc"} +,{"_id":{"$oid":"55cba2476c522cafdb055a02"},"location":{"coordinates":[-73.9026454,40.6456823],"type":"Point"},"name":"Armondo'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb055a03"},"location":{"coordinates":[-73.9960985,40.7346403],"type":"Point"},"name":"Larchmont Hotel"} +,{"_id":{"$oid":"55cba2476c522cafdb055a04"},"location":{"coordinates":[-73.9210346,40.6103453],"type":"Point"},"name":"Pretzel Maker @ Kings Plaza"} +,{"_id":{"$oid":"55cba2476c522cafdb055a05"},"location":{"coordinates":[-73.8194887,40.702271],"type":"Point"},"name":"Armando'S Pollo Rico Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055a06"},"location":{"coordinates":[-73.8478974,40.7818178],"type":"Point"},"name":"By The Water Piu Di Prima Ristorante"} +,{"_id":{"$oid":"55cba2476c522cafdb055a07"},"location":{"coordinates":[-73.923703,40.707988],"type":"Point"},"name":"Nealtican Deli Antojitos Mexicanos"} +,{"_id":{"$oid":"55cba2476c522cafdb055a08"},"location":{"coordinates":[-73.97165559999999,40.6040389],"type":"Point"},"name":"Enzo'S Pizzeria \u0026 Italian Specialties"} +,{"_id":{"$oid":"55cba2476c522cafdb055a09"},"location":{"coordinates":[-73.9886918,40.7384504],"type":"Point"},"name":"Trattoria Il Mulino"} +,{"_id":{"$oid":"55cba2476c522cafdb055a0a"},"location":{"coordinates":[-73.986256,40.687174],"type":"Point"},"name":"Deity"} +,{"_id":{"$oid":"55cba2476c522cafdb055a0b"},"location":{"coordinates":[-73.9808893,40.6905175],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb055a0c"},"location":{"coordinates":[-74.0070141,40.7069044],"type":"Point"},"name":"Just Salad"} +,{"_id":{"$oid":"55cba2476c522cafdb055a0d"},"location":{"coordinates":[-73.950397,40.673568],"type":"Point"},"name":"Jc Mar Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055a0e"},"location":{"coordinates":[-73.8832051,40.88142250000001],"type":"Point"},"name":"Oasis Restaurant \u0026 Sports Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb055a0f"},"location":{"coordinates":[-73.9579526,40.8215728],"type":"Point"},"name":"Covo"} +,{"_id":{"$oid":"55cba2476c522cafdb055a10"},"location":{"coordinates":[-73.94310449999999,40.8108763],"type":"Point"},"name":"Island Salad"} +,{"_id":{"$oid":"55cba2476c522cafdb055a11"},"location":{"coordinates":[-73.9232439,40.7612213],"type":"Point"},"name":"Leng Authentic Thai Asian"} +,{"_id":{"$oid":"55cba2476c522cafdb055a12"},"location":{"coordinates":[-73.86635199999999,40.844909],"type":"Point"},"name":"Golden Eagle Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb055a13"},"location":{"coordinates":[-74.0057044,40.7313438],"type":"Point"},"name":"Commerce"} +,{"_id":{"$oid":"55cba2476c522cafdb055a14"},"location":{"coordinates":[-73.9777211,40.7625245],"type":"Point"},"name":"Bistro Milano"} +,{"_id":{"$oid":"55cba2476c522cafdb055a15"},"location":{"coordinates":[-73.937266,40.8552732],"type":"Point"},"name":"Vicky'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055a16"},"location":{"coordinates":[-73.9768727,40.6845666],"type":"Point"},"name":"Cold Stone Creamery"} +,{"_id":{"$oid":"55cba2476c522cafdb055a17"},"location":{"coordinates":[-73.9180837,40.6513943],"type":"Point"},"name":"Silver Krust West Indian Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055a18"},"location":{"coordinates":[-74.0768379,40.6299324],"type":"Point"},"name":"Blu On The Bay"} +,{"_id":{"$oid":"55cba2476c522cafdb055a19"},"location":{"coordinates":[-73.8319102,40.7143474],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb055a1a"},"location":{"coordinates":[-73.9977961,40.7355572],"type":"Point"},"name":"Horchata"} +,{"_id":{"$oid":"55cba2476c522cafdb055a1b"},"location":{"coordinates":[-73.9891249,40.69219229999999],"type":"Point"},"name":"Crossroads Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055a1c"},"location":{"coordinates":[-73.89240079999999,40.84628319999999],"type":"Point"},"name":"Little Caesars"} +,{"_id":{"$oid":"55cba2476c522cafdb055a1d"},"location":{"coordinates":[-104.2081266,39.6086401],"type":"Point"},"name":"Rose House"} +,{"_id":{"$oid":"55cba2476c522cafdb055a1e"},"location":{"coordinates":[-73.9528119,40.7191413],"type":"Point"},"name":"Urban Rustic"} +,{"_id":{"$oid":"55cba2476c522cafdb055a1f"},"location":{"coordinates":[-73.98348510000001,40.7258393],"type":"Point"},"name":"Blk Mkt"} +,{"_id":{"$oid":"55cba2476c522cafdb055a20"},"location":{"coordinates":[-73.7822056,40.6434612],"type":"Point"},"name":"Balducci'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055a21"},"location":{"coordinates":[-73.9383129,40.805067],"type":"Point"},"name":"Q \u0026 N Food"} +,{"_id":{"$oid":"55cba2476c522cafdb055a22"},"location":{"coordinates":[-73.7822056,40.6434612],"type":"Point"},"name":"Trafalgar Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb055a23"},"location":{"coordinates":[-73.9402935,40.8058497],"type":"Point"},"name":"Manna'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055a24"},"location":{"coordinates":[-73.96014799999999,40.657577],"type":"Point"},"name":"Hai Sun Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055a25"},"location":{"coordinates":[-73.91254649999999,40.7745706],"type":"Point"},"name":"Mojave"} +,{"_id":{"$oid":"55cba2476c522cafdb055a26"},"location":{"coordinates":[-73.726467,40.7639451],"type":"Point"},"name":"Pine Court Chinese Bistro"} +,{"_id":{"$oid":"55cba2476c522cafdb055a27"},"location":{"coordinates":[-73.97660499999999,40.780946],"type":"Point"},"name":"Dovetail"} +,{"_id":{"$oid":"55cba2476c522cafdb055a28"},"location":{"coordinates":[-73.969083,40.7565359],"type":"Point"},"name":"Niall'S On 52Nd"} +,{"_id":{"$oid":"55cba2476c522cafdb055a29"},"location":{"coordinates":[-73.97357199999999,40.62678400000001],"type":"Point"},"name":"Los 3 Potrillos"} +,{"_id":{"$oid":"55cba2476c522cafdb055a2a"},"location":{"coordinates":[-74.01057829999999,40.6791489],"type":"Point"},"name":"Kevin'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055a2b"},"location":{"coordinates":[-74.0038687,40.6516286],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb055a2c"},"location":{"coordinates":[-73.9909177,40.67119160000001],"type":"Point"},"name":"Bar Tano"} +,{"_id":{"$oid":"55cba2476c522cafdb055a2d"},"location":{"coordinates":[-73.98504199999999,40.668873],"type":"Point"},"name":"Dram Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb055a2e"},"location":{"coordinates":[-73.95402399999999,40.672607],"type":"Point"},"name":"King'S Wok"} +,{"_id":{"$oid":"55cba2476c522cafdb055a2f"},"location":{"coordinates":[-73.8632841,40.7500134],"type":"Point"},"name":"Picardias Mexicanas"} +,{"_id":{"$oid":"55cba2476c522cafdb055a30"},"location":{"coordinates":[-73.958123,40.719767],"type":"Point"},"name":"Hotel Delmano"} +,{"_id":{"$oid":"55cba2476c522cafdb055a31"},"location":{"coordinates":[-73.97943400000001,40.7521259],"type":"Point"},"name":"Madison \u0026 Vine"} +,{"_id":{"$oid":"55cba2476c522cafdb055a32"},"location":{"coordinates":[-73.9847763,40.76143680000001],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb055a33"},"location":{"coordinates":[-73.9645365,40.8084427],"type":"Point"},"name":"Hewitt Dining Hall Barnard College Cafeteria"} +,{"_id":{"$oid":"55cba2476c522cafdb055a34"},"location":{"coordinates":[-73.9077518,40.8158272],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb055a35"},"location":{"coordinates":[-74.2313678,40.5267277],"type":"Point"},"name":"Panera Bread"} +,{"_id":{"$oid":"55cba2476c522cafdb055a36"},"location":{"coordinates":[-73.94495599999999,40.68726400000001],"type":"Point"},"name":"Rowe'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055a37"},"location":{"coordinates":[-73.83390820000001,40.7560273],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb055a38"},"location":{"coordinates":[-73.9180459,40.7434133],"type":"Point"},"name":"Dee Thai Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055a39"},"location":{"coordinates":[-73.8183301,40.7089143],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb055a3a"},"location":{"coordinates":[-73.9916637,40.7184537],"type":"Point"},"name":"Vanessa'S Dumpling House"} +,{"_id":{"$oid":"55cba2476c522cafdb055a3b"},"location":{"coordinates":[-73.993408,40.75679],"type":"Point"},"name":"Casa Di Isacco"} +,{"_id":{"$oid":"55cba2476c522cafdb055a3c"},"location":{"coordinates":[-73.97357199999999,40.62678400000001],"type":"Point"},"name":"Tropicoso Club"} +,{"_id":{"$oid":"55cba2476c522cafdb055a3d"},"location":{"coordinates":[-73.73966,40.704684],"type":"Point"},"name":"St. Best Jerk Spot"} +,{"_id":{"$oid":"55cba2476c522cafdb055a3e"},"location":{"coordinates":[-92.7292894,41.7461747],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055a3f"},"location":{"coordinates":[-74.0791734,40.6245155],"type":"Point"},"name":"Campo Bello Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055a40"},"location":{"coordinates":[-73.9790524,40.745441],"type":"Point"},"name":"Nomado 33"} +,{"_id":{"$oid":"55cba2476c522cafdb055a41"},"location":{"coordinates":[-73.9312305,40.8524539],"type":"Point"},"name":"Bunny Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb055a42"},"location":{"coordinates":[-73.8998991,40.696479],"type":"Point"},"name":"Lugo Lounge \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055a43"},"location":{"coordinates":[-73.87580000000001,40.769494],"type":"Point"},"name":"Clarion Hotel At Laguardia"} +,{"_id":{"$oid":"55cba2476c522cafdb055a44"},"location":{"coordinates":[-73.9036627,40.745414],"type":"Point"},"name":"Stop Inn Restaurant \u0026 Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055a45"},"location":{"coordinates":[-73.93260649999999,40.61838849999999],"type":"Point"},"name":"2 In 1 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055a46"},"location":{"coordinates":[-73.8843905,40.7594318],"type":"Point"},"name":"Cannelle Patisserie"} +,{"_id":{"$oid":"55cba2476c522cafdb055a47"},"location":{"coordinates":[-74.0099809,40.7224304],"type":"Point"},"name":"Daruma-Ya /Sushi Azabu"} +,{"_id":{"$oid":"55cba2476c522cafdb055a48"},"location":{"coordinates":[-73.8674121,40.7229584],"type":"Point"},"name":"Dunkin' Donuts, Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb055a49"},"location":{"coordinates":[-73.97770059999999,40.6355893],"type":"Point"},"name":"Family Garden Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055a4a"},"location":{"coordinates":[-73.96275059999999,40.7579538],"type":"Point"},"name":"Sofrito"} +,{"_id":{"$oid":"55cba2476c522cafdb055a4b"},"location":{"coordinates":[-73.7945861,40.724247],"type":"Point"},"name":"St John'S University Marillac Hall"} +,{"_id":{"$oid":"55cba2476c522cafdb055a4c"},"location":{"coordinates":[-73.7945861,40.724247],"type":"Point"},"name":"St John'S University Montgoris"} +,{"_id":{"$oid":"55cba2476c522cafdb055a4d"},"location":{"coordinates":[-74.003804,40.602358],"type":"Point"},"name":"Mi Bella Piaxtla Deli \u0026 Grocery"} +,{"_id":{"$oid":"55cba2476c522cafdb055a4e"},"location":{"coordinates":[-73.7945861,40.724247],"type":"Point"},"name":"St John'S University Law School"} +,{"_id":{"$oid":"55cba2476c522cafdb055a4f"},"location":{"coordinates":[-73.7945861,40.724247],"type":"Point"},"name":"St John'S University Library Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055a50"},"location":{"coordinates":[-73.965418,40.765589],"type":"Point"},"name":"Sel Et Poivre Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055a51"},"location":{"coordinates":[-73.8171512,40.7024112],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb055a52"},"location":{"coordinates":[-73.90679999999999,40.6902103],"type":"Point"},"name":"Win Xin Kitchen/Taco King"} +,{"_id":{"$oid":"55cba2476c522cafdb055a53"},"location":{"coordinates":[-73.939565,40.7071791],"type":"Point"},"name":"Cafe Los Arcos"} +,{"_id":{"$oid":"55cba2476c522cafdb055a54"},"location":{"coordinates":[-73.7897488,40.6671104],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb055a55"},"location":{"coordinates":[-73.9088336,40.8536452],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb055a56"},"location":{"coordinates":[-73.996582,40.7266024],"type":"Point"},"name":"No Ho Juice Bar \u0026 Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb055a57"},"location":{"coordinates":[-73.8315915,40.7151265],"type":"Point"},"name":"Friends Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb055a58"},"location":{"coordinates":[-73.97083110000001,40.7521679],"type":"Point"},"name":"Sido Gourmet"} +,{"_id":{"$oid":"55cba2476c522cafdb055a59"},"location":{"coordinates":[-73.9068186,40.8868128],"type":"Point"},"name":"Palombo Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb055a5a"},"location":{"coordinates":[-73.8729165,40.6836162],"type":"Point"},"name":"Crescent Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb055a5b"},"location":{"coordinates":[-73.866846,40.832058],"type":"Point"},"name":"El Nuevo Pollo'S Sabroso"} +,{"_id":{"$oid":"55cba2476c522cafdb055a5c"},"location":{"coordinates":[-74.10839779999999,40.5789935],"type":"Point"},"name":"John'S Pizza And Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055a5d"},"location":{"coordinates":[-73.9276386,40.81108400000001],"type":"Point"},"name":"K-Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb055a5e"},"location":{"coordinates":[-73.8493884,40.5783826],"type":"Point"},"name":"Pico"} +,{"_id":{"$oid":"55cba2476c522cafdb055a5f"},"location":{"coordinates":[-73.9526052,40.7592235],"type":"Point"},"name":"Fuji East Japanese Bistro"} +,{"_id":{"$oid":"55cba2476c522cafdb055a60"},"location":{"coordinates":[-73.903263,40.70668999999999],"type":"Point"},"name":"Ero'S Cafe Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb055a61"},"location":{"coordinates":[-73.9267291,40.7625921],"type":"Point"},"name":"Hong Kong Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb055a62"},"location":{"coordinates":[-73.94871789999999,40.8283685],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb055a63"},"location":{"coordinates":[-73.9151071,40.8389153],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb055a64"},"location":{"coordinates":[-73.924313,40.7565225],"type":"Point"},"name":"Sun Wah Chinese Restaurant Of Ny"} +,{"_id":{"$oid":"55cba2476c522cafdb055a65"},"location":{"coordinates":[-73.99996480000001,40.7219904],"type":"Point"},"name":"Soho Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055a66"},"location":{"coordinates":[-73.93778549999999,40.801592],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb055a67"},"location":{"coordinates":[-74.00659399999999,40.642172],"type":"Point"},"name":"New Dong Hai Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055a68"},"location":{"coordinates":[-73.9570576,40.7186663],"type":"Point"},"name":"El Beit"} +,{"_id":{"$oid":"55cba2476c522cafdb055a69"},"location":{"coordinates":[-73.955592,40.7138585],"type":"Point"},"name":"Siam Orchid Thai Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055a6a"},"location":{"coordinates":[-73.93346629999999,40.705108],"type":"Point"},"name":"Roberta'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055a6b"},"location":{"coordinates":[-73.9882918,40.6955017],"type":"Point"},"name":"City Tech Bookstore \u0026 Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055a6c"},"location":{"coordinates":[-73.98746790000001,40.737194],"type":"Point"},"name":"The Watering Hole"} +,{"_id":{"$oid":"55cba2476c522cafdb055a6d"},"location":{"coordinates":[-73.9244744,40.8180032],"type":"Point"},"name":"Jo Jo Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb055a6e"},"location":{"coordinates":[-73.769412,40.75972],"type":"Point"},"name":"Cue Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb055a6f"},"location":{"coordinates":[-73.885915,40.878277],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb055a70"},"location":{"coordinates":[-73.9783387,40.7627874],"type":"Point"},"name":"Linklaters"} +,{"_id":{"$oid":"55cba2476c522cafdb055a71"},"location":{"coordinates":[-73.96243270000001,40.7645239],"type":"Point"},"name":"Relish Concessions (Lasker Rink)"} +,{"_id":{"$oid":"55cba2476c522cafdb055a72"},"location":{"coordinates":[-73.9692252,40.5758984],"type":"Point"},"name":"Gambrinus"} +,{"_id":{"$oid":"55cba2476c522cafdb055a73"},"location":{"coordinates":[-73.9006141,40.8680429],"type":"Point"},"name":"Emilio'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb055a74"},"location":{"coordinates":[-73.99490999999999,40.722332],"type":"Point"},"name":"Gimme Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb055a75"},"location":{"coordinates":[-74.1624854,40.6030982],"type":"Point"},"name":"Oriental Plaza"} +,{"_id":{"$oid":"55cba2476c522cafdb055a76"},"location":{"coordinates":[-74.00489689999999,40.7419343],"type":"Point"},"name":"Friedman'S Lunch"} +,{"_id":{"$oid":"55cba2476c522cafdb055a77"},"location":{"coordinates":[-73.7007387,40.7389555],"type":"Point"},"name":"Flavor Of India"} +,{"_id":{"$oid":"55cba2476c522cafdb055a78"},"location":{"coordinates":[-73.9992141,40.6759857],"type":"Point"},"name":"Buttermilk Channel"} +,{"_id":{"$oid":"55cba2476c522cafdb055a79"},"location":{"coordinates":[-73.92905739999999,40.8561293],"type":"Point"},"name":"Empire Restaurant Of 1635"} +,{"_id":{"$oid":"55cba2476c522cafdb055a7a"},"location":{"coordinates":[-73.77972749999999,40.7675802],"type":"Point"},"name":"J.D.'S Saloon Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb055a7b"},"location":{"coordinates":[-73.872306,40.760412],"type":"Point"},"name":"Pa Donde Tono Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb055a7c"},"location":{"coordinates":[-73.7945861,40.724247],"type":"Point"},"name":"St John'S University Faculty Dining Room"} +,{"_id":{"$oid":"55cba2476c522cafdb055a7d"},"location":{"coordinates":[-73.9413835,40.712114],"type":"Point"},"name":"Lula Bean"} +,{"_id":{"$oid":"55cba2476c522cafdb055a7e"},"location":{"coordinates":[-73.9930232,40.6901085],"type":"Point"},"name":"Damascus Bread \u0026 Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb055a7f"},"location":{"coordinates":[-73.9552131,40.7377683],"type":"Point"},"name":"Ashbox Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055a80"},"location":{"coordinates":[-73.91352119999999,40.7462283],"type":"Point"},"name":"T.J. Asian Bistro"} +,{"_id":{"$oid":"55cba2476c522cafdb055a81"},"location":{"coordinates":[-73.7875262,40.7581231],"type":"Point"},"name":"El Patron Mexican Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb055a82"},"location":{"coordinates":[-74.0103118,40.7042077],"type":"Point"},"name":"Mad Dog \u0026 Beans"} +,{"_id":{"$oid":"55cba2476c522cafdb055a83"},"location":{"coordinates":[-74.0018661,40.7177222],"type":"Point"},"name":"Relish Concessions \u0026 Event Catering"} +,{"_id":{"$oid":"55cba2476c522cafdb055a84"},"location":{"coordinates":[-73.9904645,40.7187154],"type":"Point"},"name":"Mei Sin Deli \u0026 Grocery"} +,{"_id":{"$oid":"55cba2476c522cafdb055a85"},"location":{"coordinates":[-82.48792639999999,29.6892754],"type":"Point"},"name":"Ku Shiang Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055a86"},"location":{"coordinates":[-74.01020729999999,40.7175644],"type":"Point"},"name":"Toyko Bay Japanese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055a87"},"location":{"coordinates":[-73.82737279999999,40.6936343],"type":"Point"},"name":"New Tandoori Hut"} +,{"_id":{"$oid":"55cba2476c522cafdb055a88"},"location":{"coordinates":[-73.98593699999999,40.74713],"type":"Point"},"name":"Empire Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb055a89"},"location":{"coordinates":[-73.98285539999999,40.7427001],"type":"Point"},"name":"Taco Express"} +,{"_id":{"$oid":"55cba2476c522cafdb055a8a"},"location":{"coordinates":[-73.809427,40.70164700000001],"type":"Point"},"name":"El Ok Salvadoreno Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055a8b"},"location":{"coordinates":[-74.02871270000001,40.6226285],"type":"Point"},"name":"86 Noodles"} +,{"_id":{"$oid":"55cba2476c522cafdb055a8c"},"location":{"coordinates":[-73.8769085,40.8714851],"type":"Point"},"name":"Lona Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb055a8d"},"location":{"coordinates":[-73.9604322,40.57810690000001],"type":"Point"},"name":"Royal Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb055a8e"},"location":{"coordinates":[-74.0033119,40.73331700000001],"type":"Point"},"name":"Hakata Ton Ton"} +,{"_id":{"$oid":"55cba2476c522cafdb055a8f"},"location":{"coordinates":[-73.9994757,40.71143740000001],"type":"Point"},"name":"Multi Tastes Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb055a90"},"location":{"coordinates":[-73.9655659,40.7667023],"type":"Point"},"name":"The Cosmopolitan Club"} +,{"_id":{"$oid":"55cba2476c522cafdb055a91"},"location":{"coordinates":[-73.9756445,40.7592919],"type":"Point"},"name":"Fig \u0026 Olive Midtown"} +,{"_id":{"$oid":"55cba2476c522cafdb055a92"},"location":{"coordinates":[-73.929203,40.5867473],"type":"Point"},"name":"Cold Stone Creamery"} +,{"_id":{"$oid":"55cba2476c522cafdb055a93"},"location":{"coordinates":[-73.9839052,40.7316048],"type":"Point"},"name":"Artichoke Pizza \u0026 Brewery"} +,{"_id":{"$oid":"55cba2476c522cafdb055a94"},"location":{"coordinates":[-73.9661854,40.7627222],"type":"Point"},"name":"Cabana"} +,{"_id":{"$oid":"55cba2476c522cafdb055a95"},"location":{"coordinates":[-73.9460591,40.7116727],"type":"Point"},"name":"The Second Chance Saloon"} +,{"_id":{"$oid":"55cba2476c522cafdb055a96"},"location":{"coordinates":[-74.0050268,40.7238104],"type":"Point"},"name":"Kool Bloo"} +,{"_id":{"$oid":"55cba2476c522cafdb055a97"},"location":{"coordinates":[-73.96280759999999,40.6737522],"type":"Point"},"name":"Natural Blend"} +,{"_id":{"$oid":"55cba2476c522cafdb055a98"},"location":{"coordinates":[-73.9578089,40.6719225],"type":"Point"},"name":"95 South"} +,{"_id":{"$oid":"55cba2476c522cafdb055a99"},"location":{"coordinates":[-74.09066899999999,40.621295],"type":"Point"},"name":"St. John'S University Student Center"} +,{"_id":{"$oid":"55cba2476c522cafdb055a9a"},"location":{"coordinates":[-73.9197633,40.7576249],"type":"Point"},"name":"Red Basil Thai Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb055a9b"},"location":{"coordinates":[-73.8952876,40.70071770000001],"type":"Point"},"name":"Royal Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb055a9c"},"location":{"coordinates":[-73.98334,40.735079],"type":"Point"},"name":"Lantern"} +,{"_id":{"$oid":"55cba2476c522cafdb055a9d"},"location":{"coordinates":[-73.91333890000001,40.763393],"type":"Point"},"name":"Blackbird'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055a9e"},"location":{"coordinates":[-73.99307940000001,40.7420013],"type":"Point"},"name":"Ashby'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055a9f"},"location":{"coordinates":[-73.9486759,40.7772528],"type":"Point"},"name":"Eastend Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb055aa0"},"location":{"coordinates":[-73.99099149999999,40.7499318],"type":"Point"},"name":"Lindy'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055aa1"},"location":{"coordinates":[-73.85685099999999,40.746351],"type":"Point"},"name":"Mario Bakery And Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055aa2"},"location":{"coordinates":[-74.00855299999999,40.7464627],"type":"Point"},"name":"Famiglia Of Chelsea Piers"} +,{"_id":{"$oid":"55cba2476c522cafdb055aa3"},"location":{"coordinates":[-95.3356714,37.4710885],"type":"Point"},"name":"Moca Asian Bistro"} +,{"_id":{"$oid":"55cba2476c522cafdb055aa4"},"location":{"coordinates":[-73.86791079999999,40.8234352],"type":"Point"},"name":"Jimbo'S Hamburger Palace"} +,{"_id":{"$oid":"55cba2476c522cafdb055aa5"},"location":{"coordinates":[-73.80903649999999,40.818363],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb055aa6"},"location":{"coordinates":[-73.91701979999999,40.8177418],"type":"Point"},"name":"El Bravo Mexican Bar \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055aa7"},"location":{"coordinates":[-73.97479609999999,40.749761],"type":"Point"},"name":"Docks Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055aa8"},"location":{"coordinates":[-73.81728369999999,40.8196838],"type":"Point"},"name":"The Wicked Wolf"} +,{"_id":{"$oid":"55cba2476c522cafdb055aa9"},"location":{"coordinates":[-73.9030535,40.8812538],"type":"Point"},"name":"Panda Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055aaa"},"location":{"coordinates":[-73.8874087,40.7496231],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb055aab"},"location":{"coordinates":[-73.9888232,40.7589911],"type":"Point"},"name":"Subway/Arthur Treacher'S/Nathan'S/Church'S Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb055aac"},"location":{"coordinates":[-74.006393,40.7524845],"type":"Point"},"name":"Dean \u0026 Deluca New York"} +,{"_id":{"$oid":"55cba2476c522cafdb055aad"},"location":{"coordinates":[-74.0764986,40.6433703],"type":"Point"},"name":"Beso"} +,{"_id":{"$oid":"55cba2476c522cafdb055aae"},"location":{"coordinates":[-73.9445191,40.6847873],"type":"Point"},"name":"The Bush Doctor"} +,{"_id":{"$oid":"55cba2476c522cafdb055aaf"},"location":{"coordinates":[-74.0103305,40.71763320000001],"type":"Point"},"name":"Tribeca'S Cornerstone"} +,{"_id":{"$oid":"55cba2476c522cafdb055ab0"},"location":{"coordinates":[-73.7189973,40.725931],"type":"Point"},"name":"Rollin Greens"} +,{"_id":{"$oid":"55cba2476c522cafdb055ab1"},"location":{"coordinates":[-73.9280411,40.8189109],"type":"Point"},"name":"The News Room Jazz Club"} +,{"_id":{"$oid":"55cba2476c522cafdb055ab2"},"location":{"coordinates":[-73.8438228,40.6790431],"type":"Point"},"name":"Esquire Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb055ab3"},"location":{"coordinates":[-73.8101157,40.7315007],"type":"Point"},"name":"Hersheys Ice Cream"} +,{"_id":{"$oid":"55cba2476c522cafdb055ab4"},"location":{"coordinates":[-73.9684067,40.7633518],"type":"Point"},"name":"Gourmet Park"} +,{"_id":{"$oid":"55cba2476c522cafdb055ab5"},"location":{"coordinates":[-73.94447939999999,40.794992],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb055ab6"},"location":{"coordinates":[-74.0010399,40.6129895],"type":"Point"},"name":"Lulo'S Colombian Restaurant \u0026 Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb055ab7"},"location":{"coordinates":[-73.98810809999999,40.7202233],"type":"Point"},"name":"Downtown Iggy'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055ab8"},"location":{"coordinates":[-73.98061969999999,40.6676787],"type":"Point"},"name":"Happy Fresh Tortilla Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb055ab9"},"location":{"coordinates":[-73.9804462,40.7655657],"type":"Point"},"name":"Fresh \u0026 Co"} +,{"_id":{"$oid":"55cba2476c522cafdb055aba"},"location":{"coordinates":[-77.6873462,43.2236789],"type":"Point"},"name":"Oka Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb055abb"},"location":{"coordinates":[-73.97053149999999,40.6897106],"type":"Point"},"name":"Bagel World"} +,{"_id":{"$oid":"55cba2476c522cafdb055abc"},"location":{"coordinates":[-74.0074297,40.7166702],"type":"Point"},"name":"Megu"} +,{"_id":{"$oid":"55cba2476c522cafdb055abd"},"location":{"coordinates":[-73.940562,40.8393225],"type":"Point"},"name":"X Caffe"} +,{"_id":{"$oid":"55cba2476c522cafdb055abe"},"location":{"coordinates":[-73.77910229999999,40.6336304],"type":"Point"},"name":"Juan Valdez Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055abf"},"location":{"coordinates":[-73.9829827,40.7311945],"type":"Point"},"name":"Big Arc Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb055ac0"},"location":{"coordinates":[-73.84863419999999,40.7318497],"type":"Point"},"name":"Regestan"} +,{"_id":{"$oid":"55cba2476c522cafdb055ac1"},"location":{"coordinates":[-74.0038629,40.7323213],"type":"Point"},"name":"Five Guys Burgers And Fries"} +,{"_id":{"$oid":"55cba2476c522cafdb055ac2"},"location":{"coordinates":[-73.989779,40.760312],"type":"Point"},"name":"Bourbon Street Bar And Grille"} +,{"_id":{"$oid":"55cba2476c522cafdb055ac3"},"location":{"coordinates":[-73.9828813,40.7610785],"type":"Point"},"name":"T.G.I. Friday'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055ac4"},"location":{"coordinates":[-73.992952,40.755519],"type":"Point"},"name":"Carbone Ristorante"} +,{"_id":{"$oid":"55cba2476c522cafdb055ac5"},"location":{"coordinates":[-73.98602799999999,40.7292],"type":"Point"},"name":"Curry Ya"} +,{"_id":{"$oid":"55cba2476c522cafdb055ac6"},"location":{"coordinates":[-74.0304744,40.6183286],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb055ac7"},"location":{"coordinates":[-73.9254721,40.76227009999999],"type":"Point"},"name":"Chirping Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb055ac8"},"location":{"coordinates":[-73.9781384,40.7255285],"type":"Point"},"name":"Louis 649"} +,{"_id":{"$oid":"55cba2476c522cafdb055ac9"},"location":{"coordinates":[-73.9094397,40.6641937],"type":"Point"},"name":"Crown Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb055aca"},"location":{"coordinates":[-73.84622019999999,40.72100469999999],"type":"Point"},"name":"Ripe Juice Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb055acb"},"location":{"coordinates":[-74.0118637,40.6738627],"type":"Point"},"name":"Rocky Sullivan'S Of Red Hook"} +,{"_id":{"$oid":"55cba2476c522cafdb055acc"},"location":{"coordinates":[-73.991064,40.6854623],"type":"Point"},"name":"China Hong Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055acd"},"location":{"coordinates":[-74.0214921,40.6337801],"type":"Point"},"name":"Marina House Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055ace"},"location":{"coordinates":[-73.982595,40.769571],"type":"Point"},"name":"New York Institute Of Technology"} +,{"_id":{"$oid":"55cba2476c522cafdb055acf"},"location":{"coordinates":[-73.9945827,40.7608206],"type":"Point"},"name":"Dunkin' Donuts, Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb055ad0"},"location":{"coordinates":[-73.94283539999999,40.8112503],"type":"Point"},"name":"African American Best Food"} +,{"_id":{"$oid":"55cba2476c522cafdb055ad1"},"location":{"coordinates":[-73.81683620000001,40.6923446],"type":"Point"},"name":"Golden Punjab Indian Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055ad2"},"location":{"coordinates":[-73.9912645,40.759954],"type":"Point"},"name":"Five Napkin Burger"} +,{"_id":{"$oid":"55cba2476c522cafdb055ad3"},"location":{"coordinates":[-74.00325389999999,40.7336708],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb055ad4"},"location":{"coordinates":[-73.97894389999999,40.7401049],"type":"Point"},"name":"Dunkin' Donuts, Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb055ad5"},"location":{"coordinates":[-73.97662129999999,40.7440903],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb055ad6"},"location":{"coordinates":[-73.9731833,40.7485022],"type":"Point"},"name":"Dunkin' Donuts, Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb055ad7"},"location":{"coordinates":[-73.9796343,40.7357938],"type":"Point"},"name":"Dunkin' Donuts, Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb055ad8"},"location":{"coordinates":[-73.970443,40.75844],"type":"Point"},"name":"Dunkin' Donuts, Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb055ad9"},"location":{"coordinates":[-73.9864722,40.7327472],"type":"Point"},"name":"Dunkin' Donuts, Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb055ada"},"location":{"coordinates":[-73.9858182,40.7263679],"type":"Point"},"name":"Dunkin' Donuts, Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb055adb"},"location":{"coordinates":[-73.9763443,40.7478628],"type":"Point"},"name":"Dunkin Donuts/Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb055adc"},"location":{"coordinates":[-73.9816065,40.7405322],"type":"Point"},"name":"Dunkin' Donuts, Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb055add"},"location":{"coordinates":[-73.9826296,40.7448851],"type":"Point"},"name":"Dunkin' Donuts/Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb055ade"},"location":{"coordinates":[-74.00594840000001,40.7274345],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb055adf"},"location":{"coordinates":[-73.984335,40.736764],"type":"Point"},"name":"Dunkin' Donuts, Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb055ae0"},"location":{"coordinates":[-73.970623,40.7592511],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb055ae1"},"location":{"coordinates":[-73.9768121,40.7507385],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb055ae2"},"location":{"coordinates":[-73.7868584,40.84765669999999],"type":"Point"},"name":"Papa John'S Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb055ae3"},"location":{"coordinates":[-73.7007399,40.7389552],"type":"Point"},"name":"Mumbai Xpress"} +,{"_id":{"$oid":"55cba2476c522cafdb055ae4"},"location":{"coordinates":[-73.95096860000001,40.667449],"type":"Point"},"name":"Four Seasons Jamaican Restaurant \u0026 Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb055ae5"},"location":{"coordinates":[-73.95468,40.731406],"type":"Point"},"name":"New Yummy Taco"} +,{"_id":{"$oid":"55cba2476c522cafdb055ae6"},"location":{"coordinates":[-86.0333928,39.9568365],"type":"Point"},"name":"The Kiosk"} +,{"_id":{"$oid":"55cba2476c522cafdb055ae7"},"location":{"coordinates":[-73.95450389999999,40.7328889],"type":"Point"},"name":"The Habitat"} +,{"_id":{"$oid":"55cba2476c522cafdb055ae8"},"location":{"coordinates":[-73.9582716,40.6907796],"type":"Point"},"name":"Rustik 471"} +,{"_id":{"$oid":"55cba2476c522cafdb055ae9"},"location":{"coordinates":[-73.85610179999999,40.6928764],"type":"Point"},"name":"Delicia Dona Maria Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055aea"},"location":{"coordinates":[-73.9677458,40.6798814],"type":"Point"},"name":"Weather Up"} +,{"_id":{"$oid":"55cba2476c522cafdb055aeb"},"location":{"coordinates":[-73.9925391,40.7251783],"type":"Point"},"name":"Saxon \u0026 Parole"} +,{"_id":{"$oid":"55cba2476c522cafdb055aec"},"location":{"coordinates":[-73.993594,40.756647],"type":"Point"},"name":"Aceluck Thai"} +,{"_id":{"$oid":"55cba2476c522cafdb055aed"},"location":{"coordinates":[-73.9924128,40.72541],"type":"Point"},"name":"Think Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb055aee"},"location":{"coordinates":[-73.9201166,40.83513120000001],"type":"Point"},"name":"Giovanni'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055aef"},"location":{"coordinates":[-73.9743699,40.79180700000001],"type":"Point"},"name":"Le Pain Quotidien"} +,{"_id":{"$oid":"55cba2476c522cafdb055af0"},"location":{"coordinates":[-73.9753258,40.789264],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb055af1"},"location":{"coordinates":[-73.844351,40.847119],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb055af2"},"location":{"coordinates":[-74.01321329999999,40.7013064],"type":"Point"},"name":"Aunt Butchies Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055af3"},"location":{"coordinates":[-73.8776426,40.7484845],"type":"Point"},"name":"Mi Estrella Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055af4"},"location":{"coordinates":[-73.9810905,40.7611573],"type":"Point"},"name":"Chop'T"} +,{"_id":{"$oid":"55cba2476c522cafdb055af5"},"location":{"coordinates":[-73.968329,40.798657],"type":"Point"},"name":"Sookk Thai Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055af6"},"location":{"coordinates":[-73.9305354,40.6164375],"type":"Point"},"name":"E Savoy"} +,{"_id":{"$oid":"55cba2476c522cafdb055af7"},"location":{"coordinates":[-73.9015773,40.8544024],"type":"Point"},"name":"Lin'S Golden Wheel Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055af8"},"location":{"coordinates":[-73.8608026,40.6802019],"type":"Point"},"name":"Medina Fried Chicken \u0026 Indian Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb055af9"},"location":{"coordinates":[-73.9027277,40.7708118],"type":"Point"},"name":"Loukoumi Taverna"} +,{"_id":{"$oid":"55cba2476c522cafdb055afa"},"location":{"coordinates":[-74.00973239999999,40.735299],"type":"Point"},"name":"The Rusty Knot"} +,{"_id":{"$oid":"55cba2476c522cafdb055afb"},"location":{"coordinates":[-73.9073799,40.7740987],"type":"Point"},"name":"Marthas Country Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb055afc"},"location":{"coordinates":[-74.0123851,40.7072227],"type":"Point"},"name":"Variety Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055afd"},"location":{"coordinates":[-74.01797110000001,40.6408792],"type":"Point"},"name":"Alimentos Saludables - Mexican Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb055afe"},"location":{"coordinates":[-73.9932717,40.73107479999999],"type":"Point"},"name":"Maoz Vegetarian"} +,{"_id":{"$oid":"55cba2476c522cafdb055aff"},"location":{"coordinates":[-73.984742,40.74627],"type":"Point"},"name":"Taan"} +,{"_id":{"$oid":"55cba2476c522cafdb055b00"},"location":{"coordinates":[-74.0043484,40.7264634],"type":"Point"},"name":"Huron Club/Soho Playhouse"} +,{"_id":{"$oid":"55cba2476c522cafdb055b01"},"location":{"coordinates":[-73.83117829999999,40.7636968],"type":"Point"},"name":"Magna Bar \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055b02"},"location":{"coordinates":[-73.9650018,40.6350207],"type":"Point"},"name":"Oxcart Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb055b03"},"location":{"coordinates":[-74.0871628,40.5934545],"type":"Point"},"name":"Cielo Ristorante"} +,{"_id":{"$oid":"55cba2476c522cafdb055b04"},"location":{"coordinates":[-73.808706,40.7639129],"type":"Point"},"name":"Kyochon Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb055b05"},"location":{"coordinates":[-73.979967,40.64289],"type":"Point"},"name":"Abdullah Sweets And Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055b06"},"location":{"coordinates":[-73.9483175,40.64058199999999],"type":"Point"},"name":"Taste Of China"} +,{"_id":{"$oid":"55cba2476c522cafdb055b07"},"location":{"coordinates":[-73.837644,40.86568],"type":"Point"},"name":"Caridad \u0026 Louie'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055b08"},"location":{"coordinates":[-73.898853,40.70034039999999],"type":"Point"},"name":"Fajitas Sunrise Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055b09"},"location":{"coordinates":[-74.005008,40.733476],"type":"Point"},"name":"I Sodi"} +,{"_id":{"$oid":"55cba2476c522cafdb055b0a"},"location":{"coordinates":[-74.0105051,40.7040805],"type":"Point"},"name":"Burger Burger"} +,{"_id":{"$oid":"55cba2476c522cafdb055b0b"},"location":{"coordinates":[-73.81203599999999,40.7898799],"type":"Point"},"name":"Ralph'S Famous Italian Ices"} +,{"_id":{"$oid":"55cba2476c522cafdb055b0c"},"location":{"coordinates":[-74.01027739999999,40.7175736],"type":"Point"},"name":"Hideaway"} +,{"_id":{"$oid":"55cba2476c522cafdb055b0d"},"location":{"coordinates":[-73.8493305,40.751876],"type":"Point"},"name":"Olmsted Cafeteria"} +,{"_id":{"$oid":"55cba2476c522cafdb055b0e"},"location":{"coordinates":[-73.99745279999999,40.6913515],"type":"Point"},"name":"The Moxie Spot"} +,{"_id":{"$oid":"55cba2476c522cafdb055b0f"},"location":{"coordinates":[-73.8097119,40.705146],"type":"Point"},"name":"Dominick'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb055b10"},"location":{"coordinates":[-74.0216178,40.6310344],"type":"Point"},"name":"Bagel Villa"} +,{"_id":{"$oid":"55cba2476c522cafdb055b11"},"location":{"coordinates":[-74.0099011,40.63543019999999],"type":"Point"},"name":"Soccer Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb055b12"},"location":{"coordinates":[-73.982631,40.7298751],"type":"Point"},"name":"Terroir"} +,{"_id":{"$oid":"55cba2476c522cafdb055b13"},"location":{"coordinates":[-73.8638646,40.8656767],"type":"Point"},"name":"Palombo Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb055b14"},"location":{"coordinates":[-73.900825,40.847418],"type":"Point"},"name":"Popeyes Chicken \u0026 Biscuits"} +,{"_id":{"$oid":"55cba2476c522cafdb055b15"},"location":{"coordinates":[-74.1459332,40.6103714],"type":"Point"},"name":"New Yung Hong"} +,{"_id":{"$oid":"55cba2476c522cafdb055b16"},"location":{"coordinates":[-73.953999,40.771029],"type":"Point"},"name":"Green Kitchen Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb055b17"},"location":{"coordinates":[-73.9556394,40.6401905],"type":"Point"},"name":"El Ranchito Poblano Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055b18"},"location":{"coordinates":[-73.9817269,40.714293],"type":"Point"},"name":"Pizza Shack"} +,{"_id":{"$oid":"55cba2476c522cafdb055b19"},"location":{"coordinates":[-73.98637699999999,40.732628],"type":"Point"},"name":"Belfry"} +,{"_id":{"$oid":"55cba2476c522cafdb055b1a"},"location":{"coordinates":[-74.00956699999999,40.7165262],"type":"Point"},"name":"Mark Forgione"} +,{"_id":{"$oid":"55cba2476c522cafdb055b1b"},"location":{"coordinates":[-73.99716719999999,40.7328969],"type":"Point"},"name":"Cho Cho San Japanese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055b1c"},"location":{"coordinates":[-73.9372612,40.7966002],"type":"Point"},"name":"El Barrio Juice Bar Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb055b1d"},"location":{"coordinates":[-73.99799949999999,40.7158053],"type":"Point"},"name":"Nice Green Bo Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055b1e"},"location":{"coordinates":[-73.9772294,40.7527262],"type":"Point"},"name":"Joe: The Art Of Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb055b1f"},"location":{"coordinates":[-73.932092,40.61786499999999],"type":"Point"},"name":"Oasis Diner/Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055b20"},"location":{"coordinates":[-74.17681800000001,40.601669],"type":"Point"},"name":"Maynila Oriental Food Market"} +,{"_id":{"$oid":"55cba2476c522cafdb055b21"},"location":{"coordinates":[-73.9461139,40.7456287],"type":"Point"},"name":"Bany Ten 57 Asian Fusion"} +,{"_id":{"$oid":"55cba2476c522cafdb055b22"},"location":{"coordinates":[-73.9158056,40.6194988],"type":"Point"},"name":"Mr. Kam Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055b23"},"location":{"coordinates":[-73.9369327,40.8495657],"type":"Point"},"name":"Junior'S Seafood"} +,{"_id":{"$oid":"55cba2476c522cafdb055b24"},"location":{"coordinates":[-73.95306099999999,40.78825200000001],"type":"Point"},"name":"Seattle Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055b25"},"location":{"coordinates":[-73.999476,40.742757],"type":"Point"},"name":"Socarrat (Paella Bar And Wine Bar)"} +,{"_id":{"$oid":"55cba2476c522cafdb055b26"},"location":{"coordinates":[-73.8413196,40.6809588],"type":"Point"},"name":"Ihop"} +,{"_id":{"$oid":"55cba2476c522cafdb055b27"},"location":{"coordinates":[-73.88389889999999,40.8541146],"type":"Point"},"name":"El Millenio Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055b28"},"location":{"coordinates":[-73.94583949999999,40.8010305],"type":"Point"},"name":"Gran Piatto D'Oro"} +,{"_id":{"$oid":"55cba2476c522cafdb055b29"},"location":{"coordinates":[-73.8310303,40.7056729],"type":"Point"},"name":"La Dolce Italia Bakery Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb055b2a"},"location":{"coordinates":[-73.9817635,40.7758565],"type":"Point"},"name":"Nanoosh"} +,{"_id":{"$oid":"55cba2476c522cafdb055b2b"},"location":{"coordinates":[-73.9691849,40.6775096],"type":"Point"},"name":"Plan B"} +,{"_id":{"$oid":"55cba2476c522cafdb055b2c"},"location":{"coordinates":[-73.9983151,40.71544069999999],"type":"Point"},"name":"69 Bayard Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055b2d"},"location":{"coordinates":[-73.8410023,40.6619765],"type":"Point"},"name":"Cold Stone Creamery"} +,{"_id":{"$oid":"55cba2476c522cafdb055b2e"},"location":{"coordinates":[-73.9848648,40.7571164],"type":"Point"},"name":"Charlotte Restaurant Bar \u0026 Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb055b2f"},"location":{"coordinates":[-73.99478650000002,40.5910296],"type":"Point"},"name":"Adventures Amusement Park"} +,{"_id":{"$oid":"55cba2476c522cafdb055b30"},"location":{"coordinates":[-73.96766,40.75723],"type":"Point"},"name":"Luna Piena"} +,{"_id":{"$oid":"55cba2476c522cafdb055b31"},"location":{"coordinates":[-73.966358,40.758311],"type":"Point"},"name":"Grand Sichuan Eastern"} +,{"_id":{"$oid":"55cba2476c522cafdb055b32"},"location":{"coordinates":[-73.8316365,40.7597148],"type":"Point"},"name":"Deluge Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055b33"},"location":{"coordinates":[-73.99370499999999,40.682224],"type":"Point"},"name":"The Jake Walk"} +,{"_id":{"$oid":"55cba2476c522cafdb055b34"},"location":{"coordinates":[-73.9824637,40.7463337],"type":"Point"},"name":"Europa Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055b35"},"location":{"coordinates":[-73.8414299,40.7188278],"type":"Point"},"name":"Bonfire Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb055b36"},"location":{"coordinates":[-73.88849359999999,40.6317943],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb055b37"},"location":{"coordinates":[-73.97722100000001,40.7623869],"type":"Point"},"name":"Il Corso Ristorante Italiano"} +,{"_id":{"$oid":"55cba2476c522cafdb055b38"},"location":{"coordinates":[-74.003582,40.720102],"type":"Point"},"name":"Saluggi'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055b39"},"location":{"coordinates":[-73.9144549,40.8442405],"type":"Point"},"name":"1 Banana Queen"} +,{"_id":{"$oid":"55cba2476c522cafdb055b3a"},"location":{"coordinates":[-73.8180088,40.7936075],"type":"Point"},"name":"Caffe Rustico"} +,{"_id":{"$oid":"55cba2476c522cafdb055b3b"},"location":{"coordinates":[-73.9815283,40.6791041],"type":"Point"},"name":"Ghenet Brooklyn"} +,{"_id":{"$oid":"55cba2476c522cafdb055b3c"},"location":{"coordinates":[-73.9111592,40.6373691],"type":"Point"},"name":"Dunkin' Donuts/Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb055b3d"},"location":{"coordinates":[-73.9213841,40.74490650000001],"type":"Point"},"name":"Bar \u0026 Grill 43"} +,{"_id":{"$oid":"55cba2476c522cafdb055b3e"},"location":{"coordinates":[-73.98562969999999,40.7549318],"type":"Point"},"name":"Pulse/Circle/Arena"} +,{"_id":{"$oid":"55cba2476c522cafdb055b3f"},"location":{"coordinates":[-92.7230507,41.7461363],"type":"Point"},"name":"Pax"} +,{"_id":{"$oid":"55cba2476c522cafdb055b40"},"location":{"coordinates":[-74.00017199999999,40.728919],"type":"Point"},"name":"Thunder Jacksons Urban Roadhouse"} +,{"_id":{"$oid":"55cba2476c522cafdb055b41"},"location":{"coordinates":[-73.995361,40.749025],"type":"Point"},"name":"Uncle Nick'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055b42"},"location":{"coordinates":[-73.976303,40.762815],"type":"Point"},"name":"D \u0026 S Market Place"} +,{"_id":{"$oid":"55cba2476c522cafdb055b43"},"location":{"coordinates":[-74.109259,40.578569],"type":"Point"},"name":"The Grant City Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb055b44"},"location":{"coordinates":[-73.8518088,40.6666923],"type":"Point"},"name":"Kawaii Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb055b45"},"location":{"coordinates":[-73.789728,40.694983],"type":"Point"},"name":"Three Brother'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb055b46"},"location":{"coordinates":[-73.9948309,40.6148606],"type":"Point"},"name":"Dai Wah Yummy City"} +,{"_id":{"$oid":"55cba2476c522cafdb055b47"},"location":{"coordinates":[-73.8662547,40.8449439],"type":"Point"},"name":"Anthony'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb055b48"},"location":{"coordinates":[-73.98023810000001,40.660149],"type":"Point"},"name":"Enzo'S Wood Fired Brick Oven Pizzeria Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055b49"},"location":{"coordinates":[-73.9379117,40.8428874],"type":"Point"},"name":"El Manantial Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb055b4a"},"location":{"coordinates":[-73.9963219,40.6272984],"type":"Point"},"name":"Wing Xin Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055b4b"},"location":{"coordinates":[-73.9989605,40.714271],"type":"Point"},"name":"Wo Hop 17"} +,{"_id":{"$oid":"55cba2476c522cafdb055b4c"},"location":{"coordinates":[-73.88235499999999,40.844641],"type":"Point"},"name":"Happy Garden Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055b4d"},"location":{"coordinates":[-73.7261304,40.7649469],"type":"Point"},"name":"Panera Bread"} +,{"_id":{"$oid":"55cba2476c522cafdb055b4e"},"location":{"coordinates":[-74.01177799999999,40.636451],"type":"Point"},"name":"Rich Village Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055b4f"},"location":{"coordinates":[-73.8587759,40.710068],"type":"Point"},"name":"Panera Bread"} +,{"_id":{"$oid":"55cba2476c522cafdb055b50"},"location":{"coordinates":[-73.991334,40.66022],"type":"Point"},"name":"Toby'S Public House"} +,{"_id":{"$oid":"55cba2476c522cafdb055b51"},"location":{"coordinates":[-73.901256,40.7160534],"type":"Point"},"name":"Johnny'S Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055b52"},"location":{"coordinates":[-74.1485189,40.539822],"type":"Point"},"name":"Giuliana Ristorante"} +,{"_id":{"$oid":"55cba2476c522cafdb055b53"},"location":{"coordinates":[-73.834391,40.7070739],"type":"Point"},"name":"Metro Sushi Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055b54"},"location":{"coordinates":[-73.9786974,40.7453465],"type":"Point"},"name":"Caliente Cab"} +,{"_id":{"$oid":"55cba2476c522cafdb055b55"},"location":{"coordinates":[-73.9742751,40.6964305],"type":"Point"},"name":"Park Avenue Luncheonette"} +,{"_id":{"$oid":"55cba2476c522cafdb055b56"},"location":{"coordinates":[-73.996408,40.720042],"type":"Point"},"name":"Quan Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb055b57"},"location":{"coordinates":[-73.9739906,40.7533095],"type":"Point"},"name":"Chef'S Secret"} +,{"_id":{"$oid":"55cba2476c522cafdb055b58"},"location":{"coordinates":[-73.9989587,40.7188364],"type":"Point"},"name":"Red Egg"} +,{"_id":{"$oid":"55cba2476c522cafdb055b59"},"location":{"coordinates":[-73.9535523,40.7826797],"type":"Point"},"name":"Juliano'S Espresso Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb055b5a"},"location":{"coordinates":[-73.87964269999999,40.7406353],"type":"Point"},"name":"Boon Chu Thai Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055b5b"},"location":{"coordinates":[-73.8307797,40.7615263],"type":"Point"},"name":"Maxin Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb055b5c"},"location":{"coordinates":[-73.9323173,40.8569008],"type":"Point"},"name":"Y \u0026 Y Glatt Kosher Catering"} +,{"_id":{"$oid":"55cba2476c522cafdb055b5d"},"location":{"coordinates":[-74.1445435,40.6253671],"type":"Point"},"name":"Alibaba Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb055b5e"},"location":{"coordinates":[-73.9793291,40.7760977],"type":"Point"},"name":"Shalel"} +,{"_id":{"$oid":"55cba2476c522cafdb055b5f"},"location":{"coordinates":[-73.8799365,40.7407821],"type":"Point"},"name":"Quickly Elmhurst"} +,{"_id":{"$oid":"55cba2476c522cafdb055b60"},"location":{"coordinates":[-73.99291389999999,40.7410036],"type":"Point"},"name":"Nattute"} +,{"_id":{"$oid":"55cba2476c522cafdb055b61"},"location":{"coordinates":[-73.991427,40.76479310000001],"type":"Point"},"name":"1 2 3 Burger Shot Beer"} +,{"_id":{"$oid":"55cba2476c522cafdb055b62"},"location":{"coordinates":[-73.99463899999999,40.74965100000001],"type":"Point"},"name":"Mooncake Foods"} +,{"_id":{"$oid":"55cba2476c522cafdb055b63"},"location":{"coordinates":[-73.9653136,40.8055357],"type":"Point"},"name":"Amigos"} +,{"_id":{"$oid":"55cba2476c522cafdb055b64"},"location":{"coordinates":[-73.899834,40.7461259],"type":"Point"},"name":"Puerto Escondido"} +,{"_id":{"$oid":"55cba2476c522cafdb055b65"},"location":{"coordinates":[-73.826436,40.686082],"type":"Point"},"name":"Dunkin' Donuts, Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb055b66"},"location":{"coordinates":[-73.84610459999999,40.6810639],"type":"Point"},"name":"Dunkin' Donuts, Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb055b67"},"location":{"coordinates":[-73.8605197,40.69250479999999],"type":"Point"},"name":"Dunkin' Donuts/Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb055b68"},"location":{"coordinates":[-73.8514388,40.6939422],"type":"Point"},"name":"Dunkin' Donuts, Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb055b69"},"location":{"coordinates":[-81.8311666,30.5619604],"type":"Point"},"name":"International Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb055b6a"},"location":{"coordinates":[-74.236158,40.5179157],"type":"Point"},"name":"Cold Stone Creamery"} +,{"_id":{"$oid":"55cba2476c522cafdb055b6b"},"location":{"coordinates":[-73.8825744,40.749812],"type":"Point"},"name":"Margarita'S Restaurant \u0026 Sport Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb055b6c"},"location":{"coordinates":[-73.912984,40.6127296],"type":"Point"},"name":"Rmr Cafe (Bowling Alley)"} +,{"_id":{"$oid":"55cba2476c522cafdb055b6d"},"location":{"coordinates":[-73.98984999999999,40.717801],"type":"Point"},"name":"The Ten Bells"} +,{"_id":{"$oid":"55cba2476c522cafdb055b6e"},"location":{"coordinates":[-73.8580654,40.8656897],"type":"Point"},"name":"Domenick'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb055b6f"},"location":{"coordinates":[-73.9627263,40.6355278],"type":"Point"},"name":"Fisherman'S Cove"} +,{"_id":{"$oid":"55cba2476c522cafdb055b70"},"location":{"coordinates":[-74.1645272,40.5908495],"type":"Point"},"name":"Cold Stone Creamery"} +,{"_id":{"$oid":"55cba2476c522cafdb055b71"},"location":{"coordinates":[-73.9172964,40.8343112],"type":"Point"},"name":"Nano Billiard Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055b72"},"location":{"coordinates":[-73.79063099999999,40.69448999999999],"type":"Point"},"name":"Davis Family Establishment"} +,{"_id":{"$oid":"55cba2476c522cafdb055b73"},"location":{"coordinates":[-74.0079385,40.7069636],"type":"Point"},"name":"Liberatos Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb055b74"},"location":{"coordinates":[-73.976496,40.744423],"type":"Point"},"name":"Rocky'S Pizzeria \u0026 Restaurant Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb055b75"},"location":{"coordinates":[-73.98864,40.7216158],"type":"Point"},"name":"A Casa Fox"} +,{"_id":{"$oid":"55cba2476c522cafdb055b76"},"location":{"coordinates":[-74.0110804,40.6791648],"type":"Point"},"name":"Brooklyn Ice House"} +,{"_id":{"$oid":"55cba2476c522cafdb055b77"},"location":{"coordinates":[-73.986272,40.689211],"type":"Point"},"name":"Blue Cafe/3 In 1 Deli Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055b78"},"location":{"coordinates":[-73.961114,40.593934],"type":"Point"},"name":"Coney Island Taste"} +,{"_id":{"$oid":"55cba2476c522cafdb055b79"},"location":{"coordinates":[-74.00148399999999,40.7371583],"type":"Point"},"name":"Roasting Plant"} +,{"_id":{"$oid":"55cba2476c522cafdb055b7a"},"location":{"coordinates":[-73.992994,40.661378],"type":"Point"},"name":"Luz De Luna"} +,{"_id":{"$oid":"55cba2476c522cafdb055b7b"},"location":{"coordinates":[-108.306687,38.0890517],"type":"Point"},"name":"New Sun Mary Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb055b7c"},"location":{"coordinates":[-73.89653059999999,40.8669875],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb055b7d"},"location":{"coordinates":[-73.9716658,40.6765941],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb055b7e"},"location":{"coordinates":[-73.8598239,40.8375762],"type":"Point"},"name":"Ellie'S Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb055b7f"},"location":{"coordinates":[-73.9841708,40.6763748],"type":"Point"},"name":"Root Hill Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055b80"},"location":{"coordinates":[-73.9565686,40.6554102],"type":"Point"},"name":"Kam Po"} +,{"_id":{"$oid":"55cba2476c522cafdb055b81"},"location":{"coordinates":[-73.997679,40.664625],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb055b82"},"location":{"coordinates":[-73.9783556,40.7517259],"type":"Point"},"name":"Phillip Morris International"} +,{"_id":{"$oid":"55cba2476c522cafdb055b83"},"location":{"coordinates":[-73.92221529999999,40.7033338],"type":"Point"},"name":"Restaurant El Paisa"} +,{"_id":{"$oid":"55cba2476c522cafdb055b84"},"location":{"coordinates":[-73.9711556,40.6930467],"type":"Point"},"name":"Buff Patty Restaurant \u0026 Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb055b85"},"location":{"coordinates":[-73.91769049999999,40.77417200000001],"type":"Point"},"name":"Othello Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb055b86"},"location":{"coordinates":[-73.936708,40.8140894],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb055b87"},"location":{"coordinates":[-73.8115354,40.7277958],"type":"Point"},"name":"Melodya Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055b88"},"location":{"coordinates":[-73.99461,40.745061],"type":"Point"},"name":"Ciao Bella Napoli"} +,{"_id":{"$oid":"55cba2476c522cafdb055b89"},"location":{"coordinates":[-73.9810892,40.7789507],"type":"Point"},"name":"Chipotle Mexican Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb055b8a"},"location":{"coordinates":[-73.7997187,40.7042655],"type":"Point"},"name":"Taste \u0026 See"} +,{"_id":{"$oid":"55cba2476c522cafdb055b8b"},"location":{"coordinates":[-73.9760992,40.6872356],"type":"Point"},"name":"Connecticut Muffin"} +,{"_id":{"$oid":"55cba2476c522cafdb055b8c"},"location":{"coordinates":[-73.914288,40.7009708],"type":"Point"},"name":"Balcon Quiteno Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055b8d"},"location":{"coordinates":[-73.8303037,40.8442192],"type":"Point"},"name":"New Sushi Q Japanese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055b8e"},"location":{"coordinates":[-73.9559791,40.779291],"type":"Point"},"name":"Tasti D-Lite"} +,{"_id":{"$oid":"55cba2476c522cafdb055b8f"},"location":{"coordinates":[-74.1114451,40.5813032],"type":"Point"},"name":"Alor Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055b90"},"location":{"coordinates":[-73.984167,40.755278],"type":"Point"},"name":"Bank Of America Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055b91"},"location":{"coordinates":[-73.944343,40.698466],"type":"Point"},"name":"Migdalia Place"} +,{"_id":{"$oid":"55cba2476c522cafdb055b92"},"location":{"coordinates":[-73.95813509999999,40.7318203],"type":"Point"},"name":"Shanghai Lee"} +,{"_id":{"$oid":"55cba2476c522cafdb055b93"},"location":{"coordinates":[-73.901647,40.85429999999999],"type":"Point"},"name":"La Estrella Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055b94"},"location":{"coordinates":[-74.004415,40.720887],"type":"Point"},"name":"Tribeca Bagels"} +,{"_id":{"$oid":"55cba2476c522cafdb055b95"},"location":{"coordinates":[-73.97705260000001,40.7845611],"type":"Point"},"name":"St James Gate"} +,{"_id":{"$oid":"55cba2476c522cafdb055b96"},"location":{"coordinates":[-74.00839429999999,40.7328435],"type":"Point"},"name":"Golden Woks"} +,{"_id":{"$oid":"55cba2476c522cafdb055b97"},"location":{"coordinates":[-74.1511523,40.5511316],"type":"Point"},"name":"Nonna'S Old Fashioned Pizzeria / Nonna'S Bagels"} +,{"_id":{"$oid":"55cba2476c522cafdb055b98"},"location":{"coordinates":[-73.9493135,40.7108974],"type":"Point"},"name":"Desy'S Clam Bar Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055b99"},"location":{"coordinates":[-73.89561499999999,40.855576],"type":"Point"},"name":"Red Apple Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055b9a"},"location":{"coordinates":[-73.9818362,40.7650522],"type":"Point"},"name":"Brasserie Cognac"} +,{"_id":{"$oid":"55cba2476c522cafdb055b9b"},"location":{"coordinates":[-74.0064463,40.723512],"type":"Point"},"name":"Eet"} +,{"_id":{"$oid":"55cba2476c522cafdb055b9c"},"location":{"coordinates":[-73.9744891,40.6322186],"type":"Point"},"name":"El Gaucho"} +,{"_id":{"$oid":"55cba2476c522cafdb055b9d"},"location":{"coordinates":[-73.9492057,40.7405534],"type":"Point"},"name":"New York Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb055b9e"},"location":{"coordinates":[-73.9905016,40.7502941],"type":"Point"},"name":"33 Gourmet"} +,{"_id":{"$oid":"55cba2476c522cafdb055b9f"},"location":{"coordinates":[-73.9524536,40.7813671],"type":"Point"},"name":"Parlor Steakhouse"} +,{"_id":{"$oid":"55cba2476c522cafdb055ba0"},"location":{"coordinates":[-73.9847508,40.6634926],"type":"Point"},"name":"Ten Japanese Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb055ba1"},"location":{"coordinates":[-73.9606471,40.7037301],"type":"Point"},"name":"Golden Ring"} +,{"_id":{"$oid":"55cba2476c522cafdb055ba2"},"location":{"coordinates":[-73.983401,40.618483],"type":"Point"},"name":"Finest Ever Luck Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055ba3"},"location":{"coordinates":[-73.9606634,40.587487],"type":"Point"},"name":"Sakura"} +,{"_id":{"$oid":"55cba2476c522cafdb055ba4"},"location":{"coordinates":[-73.998173,40.715022],"type":"Point"},"name":"Vegetarian Dim Sum House"} +,{"_id":{"$oid":"55cba2476c522cafdb055ba5"},"location":{"coordinates":[-73.8176273,40.5853098],"type":"Point"},"name":"Surfside Bagels"} +,{"_id":{"$oid":"55cba2476c522cafdb055ba6"},"location":{"coordinates":[-73.8910892,40.8232487],"type":"Point"},"name":"T-Brothers Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb055ba7"},"location":{"coordinates":[-73.91649389999999,40.8499106],"type":"Point"},"name":"Miguelina Cuchifritos"} +,{"_id":{"$oid":"55cba2476c522cafdb055ba8"},"location":{"coordinates":[-73.98053879999999,40.7638452],"type":"Point"},"name":"Radiance Tea House \u0026 Books"} +,{"_id":{"$oid":"55cba2476c522cafdb055ba9"},"location":{"coordinates":[-73.9890844,40.7483602],"type":"Point"},"name":"America Gourmet Food"} +,{"_id":{"$oid":"55cba2476c522cafdb055baa"},"location":{"coordinates":[-73.93435099999999,40.745097],"type":"Point"},"name":"Prezzemo Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb055bab"},"location":{"coordinates":[-73.99235,40.75936799999999],"type":"Point"},"name":"Garden City Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb055bac"},"location":{"coordinates":[-74.0059921,40.7553927],"type":"Point"},"name":"Pier 66 Maritime"} +,{"_id":{"$oid":"55cba2476c522cafdb055bad"},"location":{"coordinates":[-74.0062351,40.7051392],"type":"Point"},"name":"Wall Street Hotel"} +,{"_id":{"$oid":"55cba2476c522cafdb055bae"},"location":{"coordinates":[-74.0681589,40.6165082],"type":"Point"},"name":"Yummy Taco"} +,{"_id":{"$oid":"55cba2476c522cafdb055baf"},"location":{"coordinates":[-73.81395049999999,40.7627301],"type":"Point"},"name":"Ny And Seoul Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055bb0"},"location":{"coordinates":[-74.06311550000001,40.5953102],"type":"Point"},"name":"Seaside Turkish Mediterranean Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055bb1"},"location":{"coordinates":[-74.01108099999999,40.703428],"type":"Point"},"name":"Bombay'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055bb2"},"location":{"coordinates":[-73.8998301,40.8486769],"type":"Point"},"name":"Vnt Catering Hall"} +,{"_id":{"$oid":"55cba2476c522cafdb055bb3"},"location":{"coordinates":[-73.7544676,40.5964197],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb055bb4"},"location":{"coordinates":[-73.937282,40.838789],"type":"Point"},"name":"Maritza Cake"} +,{"_id":{"$oid":"55cba2476c522cafdb055bb5"},"location":{"coordinates":[-73.9619593,40.75914789999999],"type":"Point"},"name":"Sin Bin"} +,{"_id":{"$oid":"55cba2476c522cafdb055bb6"},"location":{"coordinates":[-73.960064,40.69059499999999],"type":"Point"},"name":"Crown Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb055bb7"},"location":{"coordinates":[-73.9774096,40.7256554],"type":"Point"},"name":"East Village Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb055bb8"},"location":{"coordinates":[-73.9498696,40.6809173],"type":"Point"},"name":"American \u0026 Latin Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb055bb9"},"location":{"coordinates":[-73.9903223,40.6611742],"type":"Point"},"name":"Southside Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb055bba"},"location":{"coordinates":[-74.11066509999999,40.5658235],"type":"Point"},"name":"Napoli Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb055bbb"},"location":{"coordinates":[-73.897682,40.7083816],"type":"Point"},"name":"Krolewskie Jadlo"} +,{"_id":{"$oid":"55cba2476c522cafdb055bbc"},"location":{"coordinates":[-73.91742119999999,40.7550951],"type":"Point"},"name":"Seva Indian Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb055bbd"},"location":{"coordinates":[-73.99291,40.616024],"type":"Point"},"name":"Villabate-Alba Pasticceria"} +,{"_id":{"$oid":"55cba2476c522cafdb055bbe"},"location":{"coordinates":[-73.92859229999999,40.7419884],"type":"Point"},"name":"Cypriana"} +,{"_id":{"$oid":"55cba2476c522cafdb055bbf"},"location":{"coordinates":[-73.972433,40.609094],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb055bc0"},"location":{"coordinates":[-73.970131,40.764118],"type":"Point"},"name":"Delissimo Deli \u0026 Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055bc1"},"location":{"coordinates":[-74.02436329999999,40.6258114],"type":"Point"},"name":"Al Safa"} +,{"_id":{"$oid":"55cba2476c522cafdb055bc2"},"location":{"coordinates":[-73.9348637,40.68203219999999],"type":"Point"},"name":"Peaches"} +,{"_id":{"$oid":"55cba2476c522cafdb055bc3"},"location":{"coordinates":[-73.9578068,40.6722904],"type":"Point"},"name":"Franklin Park/Dutch Boy Burger"} +,{"_id":{"$oid":"55cba2476c522cafdb055bc4"},"location":{"coordinates":[-73.94748899999999,40.724611],"type":"Point"},"name":"Wah Kwoon Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb055bc5"},"location":{"coordinates":[-73.983583,40.76174839999999],"type":"Point"},"name":"Nanking"} +,{"_id":{"$oid":"55cba2476c522cafdb055bc6"},"location":{"coordinates":[-73.8303783,40.7698362],"type":"Point"},"name":"Paris Baguette Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055bc7"},"location":{"coordinates":[-73.88156959999999,40.75622],"type":"Point"},"name":"El Anzuelo Fino"} +,{"_id":{"$oid":"55cba2476c522cafdb055bc8"},"location":{"coordinates":[-74.1116481,40.62946489999999],"type":"Point"},"name":"Pasticceria Bruno Bakery \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055bc9"},"location":{"coordinates":[-73.84301049999999,40.76046059999999],"type":"Point"},"name":"Stadium Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb055bca"},"location":{"coordinates":[-73.8698326,40.7487133],"type":"Point"},"name":"Sabor Latino Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055bcb"},"location":{"coordinates":[-73.90938899999999,40.682073],"type":"Point"},"name":"New Jin Shing Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055bcc"},"location":{"coordinates":[-73.94716489999999,40.6327985],"type":"Point"},"name":"Subway (Store #27610)"} +,{"_id":{"$oid":"55cba2476c522cafdb055bcd"},"location":{"coordinates":[-73.8782343,40.8258197],"type":"Point"},"name":"El Carboncito Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055bce"},"location":{"coordinates":[-73.9988042,40.6046451],"type":"Point"},"name":"New Hunan Wok"} +,{"_id":{"$oid":"55cba2476c522cafdb055bcf"},"location":{"coordinates":[-74.001437,40.7459525],"type":"Point"},"name":"Jake'S Saloon"} +,{"_id":{"$oid":"55cba2476c522cafdb055bd0"},"location":{"coordinates":[-73.9844064,40.72066600000001],"type":"Point"},"name":"Cocoa Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb055bd1"},"location":{"coordinates":[-73.9588629,40.70955430000001],"type":"Point"},"name":"Miss Favela"} +,{"_id":{"$oid":"55cba2476c522cafdb055bd2"},"location":{"coordinates":[-1.9499076,52.5388779],"type":"Point"},"name":"Carlyle Green Pool Stand"} +,{"_id":{"$oid":"55cba2476c522cafdb055bd3"},"location":{"coordinates":[-73.8701608,40.6731548],"type":"Point"},"name":"Dave'S Jamaican Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055bd4"},"location":{"coordinates":[-73.9173727,40.6597947],"type":"Point"},"name":"Mike'S Island Grill Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055bd5"},"location":{"coordinates":[-73.9443405,40.71182049999999],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb055bd6"},"location":{"coordinates":[-73.9790858,40.6701939],"type":"Point"},"name":"Cocoa Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb055bd7"},"location":{"coordinates":[-74.0022238,40.7337844],"type":"Point"},"name":"55 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb055bd8"},"location":{"coordinates":[-73.98412019999999,40.7575366],"type":"Point"},"name":"Room Mate Grace Hotel"} +,{"_id":{"$oid":"55cba2476c522cafdb055bd9"},"location":{"coordinates":[-73.96712,40.798503],"type":"Point"},"name":"Village Pourhouse"} +,{"_id":{"$oid":"55cba2476c522cafdb055bda"},"location":{"coordinates":[-74.016497,40.643165],"type":"Point"},"name":"New China One Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055bdb"},"location":{"coordinates":[-73.983642,40.6100472],"type":"Point"},"name":"Cafe Jonny'S Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb055bdc"},"location":{"coordinates":[-73.9157925,40.7645471],"type":"Point"},"name":"Pita Pan"} +,{"_id":{"$oid":"55cba2476c522cafdb055bdd"},"location":{"coordinates":[-73.99572400000001,40.737207],"type":"Point"},"name":"Popeyes Chicken \u0026 Biscuits"} +,{"_id":{"$oid":"55cba2476c522cafdb055bde"},"location":{"coordinates":[-73.9975024,40.6252668],"type":"Point"},"name":"D \u0026 S Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb055bdf"},"location":{"coordinates":[-73.928073,40.762954],"type":"Point"},"name":"Dunkin' Donuts, Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb055be0"},"location":{"coordinates":[-73.8935788,40.7267637],"type":"Point"},"name":"The Celi House"} +,{"_id":{"$oid":"55cba2476c522cafdb055be1"},"location":{"coordinates":[-73.8660629,40.8457515],"type":"Point"},"name":"Ronald Pitusa Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb055be2"},"location":{"coordinates":[-73.990078,40.5994087],"type":"Point"},"name":"La Parranda Mexicana Bar \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055be3"},"location":{"coordinates":[-73.99136229999999,40.759445],"type":"Point"},"name":"Don Giovanni"} +,{"_id":{"$oid":"55cba2476c522cafdb055be4"},"location":{"coordinates":[-74.0113978,40.7206627],"type":"Point"},"name":"Citigroup Executive Dining Room"} +,{"_id":{"$oid":"55cba2476c522cafdb055be5"},"location":{"coordinates":[-73.9951068,40.7442871],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb055be6"},"location":{"coordinates":[-73.948591,40.8092901],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb055be7"},"location":{"coordinates":[-73.9545299,40.80594],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb055be8"},"location":{"coordinates":[-73.9196946,40.7931957],"type":"Point"},"name":"Randalls Island Golf Center"} +,{"_id":{"$oid":"55cba2476c522cafdb055be9"},"location":{"coordinates":[104.9179596,11.5415182],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb055bea"},"location":{"coordinates":[104.9179596,11.5415182],"type":"Point"},"name":"Todd English Bonfire"} +,{"_id":{"$oid":"55cba2476c522cafdb055beb"},"location":{"coordinates":[-73.9771452,40.6267366],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb055bec"},"location":{"coordinates":[-73.97631299999999,40.5968554],"type":"Point"},"name":"Ciccio'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb055bed"},"location":{"coordinates":[-73.9166425,40.8159255],"type":"Point"},"name":"555 Vivacafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055bee"},"location":{"coordinates":[-73.987916,40.7653729],"type":"Point"},"name":"Mee Noodle Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb055bef"},"location":{"coordinates":[-73.86698729999999,40.8977819],"type":"Point"},"name":"Curry Spot"} +,{"_id":{"$oid":"55cba2476c522cafdb055bf0"},"location":{"coordinates":[-74.0014975,40.7323434],"type":"Point"},"name":"Juice Generation"} +,{"_id":{"$oid":"55cba2476c522cafdb055bf1"},"location":{"coordinates":[-73.777697,40.6917775],"type":"Point"},"name":"New Kam Hung Chinese Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb055bf2"},"location":{"coordinates":[-73.9116719,40.8316284],"type":"Point"},"name":"Mario'S Snack Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb055bf3"},"location":{"coordinates":[-73.9677892,40.7997157],"type":"Point"},"name":"Ben \u0026 Jerry'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055bf4"},"location":{"coordinates":[-73.9005986,40.8636486],"type":"Point"},"name":"New Millenium Pizza Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb055bf5"},"location":{"coordinates":[-73.99751990000001,40.7151209],"type":"Point"},"name":"Vivi Bubble Tea"} +,{"_id":{"$oid":"55cba2476c522cafdb055bf6"},"location":{"coordinates":[-73.948156,40.8042771],"type":"Point"},"name":"Il Caffe Latte"} +,{"_id":{"$oid":"55cba2476c522cafdb055bf7"},"location":{"coordinates":[-74.1272515,40.6125604],"type":"Point"},"name":"Cucina Mia"} +,{"_id":{"$oid":"55cba2476c522cafdb055bf8"},"location":{"coordinates":[-73.9658666,40.8007892],"type":"Point"},"name":"Amsterdam Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb055bf9"},"location":{"coordinates":[-73.9738828,40.7520277],"type":"Point"},"name":"Juice Bar Plus"} +,{"_id":{"$oid":"55cba2476c522cafdb055bfa"},"location":{"coordinates":[-73.8890969,40.6572482],"type":"Point"},"name":"Downs River Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055bfb"},"location":{"coordinates":[-73.8205931,40.5842992],"type":"Point"},"name":"Brisas Del Mar Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055bfc"},"location":{"coordinates":[-73.9442743,40.7154148],"type":"Point"},"name":"Variety"} +,{"_id":{"$oid":"55cba2476c522cafdb055bfd"},"location":{"coordinates":[-74.1063547,40.6302504],"type":"Point"},"name":"Carvel Ice Cream"} +,{"_id":{"$oid":"55cba2476c522cafdb055bfe"},"location":{"coordinates":[-73.942769,40.790568],"type":"Point"},"name":"Triple A Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb055bff"},"location":{"coordinates":[-73.97229949999999,40.7637256],"type":"Point"},"name":"Via Quadronno Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055c00"},"location":{"coordinates":[-73.980831,40.741516],"type":"Point"},"name":"Van Diemens"} +,{"_id":{"$oid":"55cba2476c522cafdb055c01"},"location":{"coordinates":[-73.88843849999999,40.8354789],"type":"Point"},"name":"Sports Luncheonette"} +,{"_id":{"$oid":"55cba2476c522cafdb055c02"},"location":{"coordinates":[-73.8610757,40.754105],"type":"Point"},"name":"Angelita Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055c03"},"location":{"coordinates":[-73.8479114,40.8768036],"type":"Point"},"name":"Original Tony'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb055c04"},"location":{"coordinates":[-73.9830996,40.755312],"type":"Point"},"name":"Destiny/North River Lobster"} +,{"_id":{"$oid":"55cba2476c522cafdb055c05"},"location":{"coordinates":[-74.0032975,40.5748086],"type":"Point"},"name":"Za Zaborom"} +,{"_id":{"$oid":"55cba2476c522cafdb055c06"},"location":{"coordinates":[-73.8579425,40.8923108],"type":"Point"},"name":"Cafe Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055c07"},"location":{"coordinates":[-73.9573451,40.7451204],"type":"Point"},"name":"Shi"} +,{"_id":{"$oid":"55cba2476c522cafdb055c08"},"location":{"coordinates":[-74.0024801,40.7306131],"type":"Point"},"name":"Grom"} +,{"_id":{"$oid":"55cba2476c522cafdb055c09"},"location":{"coordinates":[-73.903497,40.8584123],"type":"Point"},"name":"Pancho Villa Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055c0a"},"location":{"coordinates":[-74.1470865,40.5588716],"type":"Point"},"name":"Staten Island Swim Club"} +,{"_id":{"$oid":"55cba2476c522cafdb055c0b"},"location":{"coordinates":[-73.988497,40.728642],"type":"Point"},"name":"2 Bros Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb055c0c"},"location":{"coordinates":[-73.9720914,40.67472619999999],"type":"Point"},"name":"Montauk Club"} +,{"_id":{"$oid":"55cba2476c522cafdb055c0d"},"location":{"coordinates":[-73.85517089999999,40.8483418],"type":"Point"},"name":"Doyles Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb055c0e"},"location":{"coordinates":[-73.964083,40.641078],"type":"Point"},"name":"Top Cafe Tibet"} +,{"_id":{"$oid":"55cba2476c522cafdb055c0f"},"location":{"coordinates":[-73.99936389999999,40.715027],"type":"Point"},"name":"Mama Eatery"} +,{"_id":{"$oid":"55cba2476c522cafdb055c10"},"location":{"coordinates":[-73.96974890000001,40.64353699999999],"type":"Point"},"name":"Madina Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055c11"},"location":{"coordinates":[-73.78312540000002,40.8386404],"type":"Point"},"name":"Lobster Box"} +,{"_id":{"$oid":"55cba2476c522cafdb055c12"},"location":{"coordinates":[-73.83603409999999,40.7862745],"type":"Point"},"name":"Coppola'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb055c13"},"location":{"coordinates":[-73.9300648,40.5860552],"type":"Point"},"name":"Sheepshead Bay Regal Cinemas Theatre"} +,{"_id":{"$oid":"55cba2476c522cafdb055c14"},"location":{"coordinates":[-73.7984999,40.667327],"type":"Point"},"name":"Radisson Jfk- Cafe One Forty"} +,{"_id":{"$oid":"55cba2476c522cafdb055c15"},"location":{"coordinates":[-73.8492332,40.8904927],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb055c16"},"location":{"coordinates":[-73.866873,40.8319321],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb055c17"},"location":{"coordinates":[-74.0154429,40.6405839],"type":"Point"},"name":"Johnny'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb055c18"},"location":{"coordinates":[-73.85697510000001,40.8930272],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb055c19"},"location":{"coordinates":[-73.9621021,40.6828388],"type":"Point"},"name":"Lox"} +,{"_id":{"$oid":"55cba2476c522cafdb055c1a"},"location":{"coordinates":[-73.92270959999999,40.7541721],"type":"Point"},"name":"Club Lit"} +,{"_id":{"$oid":"55cba2476c522cafdb055c1b"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"Europan Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055c1c"},"location":{"coordinates":[-73.9920822,40.7174023],"type":"Point"},"name":"Grand 1 Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb055c1d"},"location":{"coordinates":[-73.9673787,40.6837171],"type":"Point"},"name":"Bar Olivino"} +,{"_id":{"$oid":"55cba2476c522cafdb055c1e"},"location":{"coordinates":[-73.78063550000002,40.7295856],"type":"Point"},"name":"Lucky House"} +,{"_id":{"$oid":"55cba2476c522cafdb055c1f"},"location":{"coordinates":[-73.9838017,40.7248172],"type":"Point"},"name":"Sophie'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055c20"},"location":{"coordinates":[-73.8701639,40.7573999],"type":"Point"},"name":"Cafe Rubio"} +,{"_id":{"$oid":"55cba2476c522cafdb055c21"},"location":{"coordinates":[-73.9277123,40.8662549],"type":"Point"},"name":"Mama Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb055c22"},"location":{"coordinates":[-73.7997187,40.7042655],"type":"Point"},"name":"G \u0026 L Cajun Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb055c23"},"location":{"coordinates":[-73.9603805,40.8101861],"type":"Point"},"name":"Teachers College/ Grace Dodge Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055c24"},"location":{"coordinates":[-73.9436278,40.7020062],"type":"Point"},"name":"New Wing'S Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb055c25"},"location":{"coordinates":[-73.9807739,40.74457719999999],"type":"Point"},"name":"Brother Jimmy'S Bbq"} +,{"_id":{"$oid":"55cba2476c522cafdb055c26"},"location":{"coordinates":[-74.0000523,40.7284753],"type":"Point"},"name":"Le Poisson Rouge"} +,{"_id":{"$oid":"55cba2476c522cafdb055c27"},"location":{"coordinates":[-73.9773402,40.7624832],"type":"Point"},"name":"Benoit Bistro"} +,{"_id":{"$oid":"55cba2476c522cafdb055c28"},"location":{"coordinates":[-74.0096839,40.7047512],"type":"Point"},"name":"Yorganic"} +,{"_id":{"$oid":"55cba2476c522cafdb055c29"},"location":{"coordinates":[-73.8584942,40.8913102],"type":"Point"},"name":"#1 Sabor Latino Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055c2a"},"location":{"coordinates":[-73.9504766,40.6728037],"type":"Point"},"name":"Mike'S Pizza Dannys"} +,{"_id":{"$oid":"55cba2476c522cafdb055c2b"},"location":{"coordinates":[-73.8835714,40.81751810000001],"type":"Point"},"name":"Valencia Coffee Room"} +,{"_id":{"$oid":"55cba2476c522cafdb055c2c"},"location":{"coordinates":[-73.9607843,40.5895705],"type":"Point"},"name":"Carvel Ice Cream"} +,{"_id":{"$oid":"55cba2476c522cafdb055c2d"},"location":{"coordinates":[-73.8700494,40.708999],"type":"Point"},"name":"Simply Fondue"} +,{"_id":{"$oid":"55cba2476c522cafdb055c2e"},"location":{"coordinates":[-73.98576849999999,40.6921442],"type":"Point"},"name":"El Tio Pio"} +,{"_id":{"$oid":"55cba2476c522cafdb055c2f"},"location":{"coordinates":[-74.0000374,40.7376031],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb055c30"},"location":{"coordinates":[-73.932416,40.8621178],"type":"Point"},"name":"Employee Cafeteria/Cloister Trie Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055c31"},"location":{"coordinates":[-73.8747516,40.829474],"type":"Point"},"name":"1617-A National Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb055c32"},"location":{"coordinates":[-73.8091365,40.70207980000001],"type":"Point"},"name":"Vina Del Mar Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055c33"},"location":{"coordinates":[-73.997936,40.721817],"type":"Point"},"name":"Cafe Select"} +,{"_id":{"$oid":"55cba2476c522cafdb055c34"},"location":{"coordinates":[-73.991677,40.6112186],"type":"Point"},"name":"Papa Mikes Brick Oven Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb055c35"},"location":{"coordinates":[-73.89507119999999,40.7021689],"type":"Point"},"name":"Rosa'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb055c36"},"location":{"coordinates":[-74.02743400000001,40.633116],"type":"Point"},"name":"Mandato Mexican Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055c37"},"location":{"coordinates":[-74.139965,40.6023727],"type":"Point"},"name":"Signature Caterers"} +,{"_id":{"$oid":"55cba2476c522cafdb055c38"},"location":{"coordinates":[-73.80670049999999,40.8169158],"type":"Point"},"name":"Ice House Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055c39"},"location":{"coordinates":[-73.997069,40.746668],"type":"Point"},"name":"Luigi Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb055c3a"},"location":{"coordinates":[-73.944605,40.813429],"type":"Point"},"name":"Just Lorraine'S Place"} +,{"_id":{"$oid":"55cba2476c522cafdb055c3b"},"location":{"coordinates":[-73.8330235,40.7606738],"type":"Point"},"name":"Udu Shabu Shabu/Mapo Szechuan"} +,{"_id":{"$oid":"55cba2476c522cafdb055c3c"},"location":{"coordinates":[-73.9512894,40.7774825],"type":"Point"},"name":"Ithaka"} +,{"_id":{"$oid":"55cba2476c522cafdb055c3d"},"location":{"coordinates":[-73.95124729999999,40.80004419999999],"type":"Point"},"name":"Lolita'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055c3e"},"location":{"coordinates":[-73.94359,40.629239],"type":"Point"},"name":"Good Hope Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055c3f"},"location":{"coordinates":[-73.955404,40.77201],"type":"Point"},"name":"Alloro"} +,{"_id":{"$oid":"55cba2476c522cafdb055c40"},"location":{"coordinates":[-73.9071039,40.88025],"type":"Point"},"name":"Cafeccino Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb055c41"},"location":{"coordinates":[-73.97361649999999,40.75420140000001],"type":"Point"},"name":"Pret A Manger"} +,{"_id":{"$oid":"55cba2476c522cafdb055c42"},"location":{"coordinates":[-73.8870496,40.8557998],"type":"Point"},"name":"Tinos Delicatessen"} +,{"_id":{"$oid":"55cba2476c522cafdb055c43"},"location":{"coordinates":[-92.72214319999999,41.7459684],"type":"Point"},"name":"Pret A Manger"} +,{"_id":{"$oid":"55cba2476c522cafdb055c44"},"location":{"coordinates":[-73.988294,40.718942],"type":"Point"},"name":"Mcdonalds"} +,{"_id":{"$oid":"55cba2476c522cafdb055c45"},"location":{"coordinates":[-73.900825,40.847418],"type":"Point"},"name":"Burger King"} +,{"_id":{"$oid":"55cba2476c522cafdb055c46"},"location":{"coordinates":[-74.09159369999999,40.5866932],"type":"Point"},"name":"New Red Apple Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055c47"},"location":{"coordinates":[-74.013824,40.708121],"type":"Point"},"name":"Cafe Bravo/ Pomodoro Pizza/Planet Gyro"} +,{"_id":{"$oid":"55cba2476c522cafdb055c48"},"location":{"coordinates":[-74.1011625,40.630852],"type":"Point"},"name":"Diamond Forest Yan'S Chinese Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb055c49"},"location":{"coordinates":[-73.9346102,40.85190009999999],"type":"Point"},"name":"King Garden Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055c4a"},"location":{"coordinates":[-74.0114608,40.67197549999999],"type":"Point"},"name":"Ikea"} +,{"_id":{"$oid":"55cba2476c522cafdb055c4b"},"location":{"coordinates":[-73.980941,40.7299485],"type":"Point"},"name":"Drop Off Service"} +,{"_id":{"$oid":"55cba2476c522cafdb055c4c"},"location":{"coordinates":[-73.9045069,40.8796414],"type":"Point"},"name":"King'S Palace Chicken Gyro"} +,{"_id":{"$oid":"55cba2476c522cafdb055c4d"},"location":{"coordinates":[-73.96526279999999,40.6239458],"type":"Point"},"name":"Carlos \u0026 Gabby'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055c4e"},"location":{"coordinates":[-74.0106824,40.7024877],"type":"Point"},"name":"Claudia'S Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb055c4f"},"location":{"coordinates":[-74.03285260000001,40.6197503],"type":"Point"},"name":"Szechuan Garden Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055c50"},"location":{"coordinates":[-74.00340729999999,40.6556562],"type":"Point"},"name":"New Li Hing Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055c51"},"location":{"coordinates":[-73.9977495,40.6243445],"type":"Point"},"name":"Meza Pasta \u0026 Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb055c52"},"location":{"coordinates":[-73.8848687,40.743896],"type":"Point"},"name":"Pho Bang Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055c53"},"location":{"coordinates":[-73.9922292,40.7453683],"type":"Point"},"name":"Prime Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055c54"},"location":{"coordinates":[-74.0015471,40.707803],"type":"Point"},"name":"Onda"} +,{"_id":{"$oid":"55cba2476c522cafdb055c55"},"location":{"coordinates":[-73.828467,40.764246],"type":"Point"},"name":"Mellie'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055c56"},"location":{"coordinates":[-73.95784499999999,40.818346],"type":"Point"},"name":"Studebaker Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055c57"},"location":{"coordinates":[-74.0142685,40.6759316],"type":"Point"},"name":"The Good Fork"} +,{"_id":{"$oid":"55cba2476c522cafdb055c58"},"location":{"coordinates":[-73.9715026,40.6790458],"type":"Point"},"name":"James Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055c59"},"location":{"coordinates":[-73.99345459999999,40.6974644],"type":"Point"},"name":"Tazza"} +,{"_id":{"$oid":"55cba2476c522cafdb055c5a"},"location":{"coordinates":[-73.9411279,40.838776],"type":"Point"},"name":"El Presidente"} +,{"_id":{"$oid":"55cba2476c522cafdb055c5b"},"location":{"coordinates":[-73.91834639999999,40.8728492],"type":"Point"},"name":"Indian Road Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055c5c"},"location":{"coordinates":[-74.009883,40.6383129],"type":"Point"},"name":"Langqi Seafood Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055c5d"},"location":{"coordinates":[-74.004601,40.5996068],"type":"Point"},"name":"Vstrecha"} +,{"_id":{"$oid":"55cba2476c522cafdb055c5e"},"location":{"coordinates":[-74.0010346,40.6337823],"type":"Point"},"name":"Seville Manor"} +,{"_id":{"$oid":"55cba2476c522cafdb055c5f"},"location":{"coordinates":[-73.73468,40.6649249],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb055c60"},"location":{"coordinates":[-73.9955719,40.7602727],"type":"Point"},"name":"Happy Family"} +,{"_id":{"$oid":"55cba2476c522cafdb055c61"},"location":{"coordinates":[-73.9784226,40.7242517],"type":"Point"},"name":"Kafana"} +,{"_id":{"$oid":"55cba2476c522cafdb055c62"},"location":{"coordinates":[-73.90947659999999,40.86229300000001],"type":"Point"},"name":"Tacos El Paisanito Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055c63"},"location":{"coordinates":[-73.81757549999999,40.7078414],"type":"Point"},"name":"Briarwood Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055c64"},"location":{"coordinates":[-73.9851149,40.59782999999999],"type":"Point"},"name":"Roma Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb055c65"},"location":{"coordinates":[-73.7910625,40.7262367],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb055c66"},"location":{"coordinates":[-73.990494,40.7569545],"type":"Point"},"name":"Villa Fresh Italian Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb055c67"},"location":{"coordinates":[-73.829437,40.757178],"type":"Point"},"name":"Hu She"} +,{"_id":{"$oid":"55cba2476c522cafdb055c68"},"location":{"coordinates":[-73.9899647,40.723695],"type":"Point"},"name":"Joe \u0026 Misses Doe"} +,{"_id":{"$oid":"55cba2476c522cafdb055c69"},"location":{"coordinates":[-73.91910070000002,40.7411586],"type":"Point"},"name":"Miracali Bakery #1"} +,{"_id":{"$oid":"55cba2476c522cafdb055c6a"},"location":{"coordinates":[-73.9990864,40.7349135],"type":"Point"},"name":"Ciao For Now"} +,{"_id":{"$oid":"55cba2476c522cafdb055c6b"},"location":{"coordinates":[-73.957817,40.729677],"type":"Point"},"name":"Franklin Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb055c6c"},"location":{"coordinates":[-73.9998923,40.7170858],"type":"Point"},"name":"China Village Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055c6d"},"location":{"coordinates":[-73.9868089,40.732809],"type":"Point"},"name":"Chickpea"} +,{"_id":{"$oid":"55cba2476c522cafdb055c6e"},"location":{"coordinates":[-73.92449800000001,40.768602],"type":"Point"},"name":"Father \u0026 Son Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb055c6f"},"location":{"coordinates":[-73.92226699999999,40.76079],"type":"Point"},"name":"Bartolino'S Ristorante"} +,{"_id":{"$oid":"55cba2476c522cafdb055c70"},"location":{"coordinates":[-83.8858832,30.6928791],"type":"Point"},"name":"Jerry'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb055c71"},"location":{"coordinates":[-73.91887,40.77051],"type":"Point"},"name":"Golden Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb055c72"},"location":{"coordinates":[-74.00716469999999,40.6374982],"type":"Point"},"name":"City Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055c73"},"location":{"coordinates":[-73.9626743,40.6764987],"type":"Point"},"name":"The Spot"} +,{"_id":{"$oid":"55cba2476c522cafdb055c74"},"location":{"coordinates":[-73.87449699999999,40.74215700000001],"type":"Point"},"name":"Papa John'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055c75"},"location":{"coordinates":[-73.9081219,40.8073391],"type":"Point"},"name":"Don Pichon Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055c76"},"location":{"coordinates":[-73.94894889999999,40.6434056],"type":"Point"},"name":"Cafe Omar/Patty Palace"} +,{"_id":{"$oid":"55cba2476c522cafdb055c77"},"location":{"coordinates":[-73.962131,40.606317],"type":"Point"},"name":"Arabian Nights Restaurant \u0026 Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb055c78"},"location":{"coordinates":[-73.7701869,40.7612545],"type":"Point"},"name":"V.I. Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb055c79"},"location":{"coordinates":[-74.1660553,40.5823983],"type":"Point"},"name":"East Pacific"} +,{"_id":{"$oid":"55cba2476c522cafdb055c7a"},"location":{"coordinates":[-73.9635045,40.6772372],"type":"Point"},"name":"Taqueria De Los Muertos"} +,{"_id":{"$oid":"55cba2476c522cafdb055c7b"},"location":{"coordinates":[-73.9635984,40.713574],"type":"Point"},"name":"La Superior"} +,{"_id":{"$oid":"55cba2476c522cafdb055c7c"},"location":{"coordinates":[-85.70723199999999,42.3625186],"type":"Point"},"name":"Black Bear Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb055c7d"},"location":{"coordinates":[-74.00331299999999,40.732236],"type":"Point"},"name":"Hummus Place"} +,{"_id":{"$oid":"55cba2476c522cafdb055c7e"},"location":{"coordinates":[-73.992516,40.6342209],"type":"Point"},"name":"Spoons"} +,{"_id":{"$oid":"55cba2476c522cafdb055c7f"},"location":{"coordinates":[-73.9916144,40.7664987],"type":"Point"},"name":"La Bergamote"} +,{"_id":{"$oid":"55cba2476c522cafdb055c80"},"location":{"coordinates":[-73.863609,40.75112499999999],"type":"Point"},"name":"Rio Bravo Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055c81"},"location":{"coordinates":[-73.91899699999999,40.863791],"type":"Point"},"name":"La Minita Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055c82"},"location":{"coordinates":[-73.99575209999999,40.6878973],"type":"Point"},"name":"Ted \u0026 Honey"} +,{"_id":{"$oid":"55cba2476c522cafdb055c83"},"location":{"coordinates":[-73.9945235,40.6370803],"type":"Point"},"name":"Asia Palace"} +,{"_id":{"$oid":"55cba2476c522cafdb055c84"},"location":{"coordinates":[-73.9395251,40.5897967],"type":"Point"},"name":"Kouros Bay Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb055c85"},"location":{"coordinates":[-73.9860106,40.7229309],"type":"Point"},"name":"Yerba Buena"} +,{"_id":{"$oid":"55cba2476c522cafdb055c86"},"location":{"coordinates":[-73.995166,40.764217],"type":"Point"},"name":"Sonnier \u0026 Castle"} +,{"_id":{"$oid":"55cba2476c522cafdb055c87"},"location":{"coordinates":[-73.854745,40.728567],"type":"Point"},"name":"Ganey Orly"} +,{"_id":{"$oid":"55cba2476c522cafdb055c88"},"location":{"coordinates":[-73.92236799999999,40.610247],"type":"Point"},"name":"Golden Krust Caribbean Bakery \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb055c89"},"location":{"coordinates":[-74.0041317,40.7296464],"type":"Point"},"name":"Sweet Revenge"} +,{"_id":{"$oid":"55cba2476c522cafdb055c8a"},"location":{"coordinates":[-73.7368163,40.7689759],"type":"Point"},"name":"Little Saigon Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb055c8b"},"location":{"coordinates":[-73.8808275,40.7021348],"type":"Point"},"name":"Grace Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb055c8c"},"location":{"coordinates":[-73.951088,40.770987],"type":"Point"},"name":"Dresners"} +,{"_id":{"$oid":"55cba2476c522cafdb055c8d"},"location":{"coordinates":[-73.92636300000001,40.652628],"type":"Point"},"name":"Island Pride Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055c8e"},"location":{"coordinates":[-73.8052277,40.7021456],"type":"Point"},"name":"May Luck Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb055c8f"},"location":{"coordinates":[-73.9794773,40.73702369999999],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055c90"},"location":{"coordinates":[-73.983451,40.767278],"type":"Point"},"name":"Circle West Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb055c91"},"location":{"coordinates":[-73.8985543,40.6754106],"type":"Point"},"name":"East Market Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb055c92"},"location":{"coordinates":[-74.0077002,40.7110027],"type":"Point"},"name":"Sandwich House Italian Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055c93"},"location":{"coordinates":[-73.96281669999999,40.6883583],"type":"Point"},"name":"Mirrors On Grand"} +,{"_id":{"$oid":"55cba2476c522cafdb055c94"},"location":{"coordinates":[-73.9543779,40.7317508],"type":"Point"},"name":"Bakery Rzeszowska"} +,{"_id":{"$oid":"55cba2476c522cafdb055c95"},"location":{"coordinates":[-73.9580745,40.6502759],"type":"Point"},"name":"Sybil'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055c96"},"location":{"coordinates":[-73.95816549999999,40.81512],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb055c97"},"location":{"coordinates":[-73.9969857,40.724635],"type":"Point"},"name":"Broadway Gourmet"} +,{"_id":{"$oid":"55cba2476c522cafdb055c98"},"location":{"coordinates":[-73.81354999999999,40.7023141],"type":"Point"},"name":"Dunkin' Donuts, Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb055c99"},"location":{"coordinates":[-74.0015324,40.7468114],"type":"Point"},"name":"Joe: The Art Of Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb055c9a"},"location":{"coordinates":[-73.7902861,40.6877696],"type":"Point"},"name":"Rib Shack"} +,{"_id":{"$oid":"55cba2476c522cafdb055c9b"},"location":{"coordinates":[-73.9800791,40.6774391],"type":"Point"},"name":"Mee Thai Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb055c9c"},"location":{"coordinates":[-73.771776,40.764516],"type":"Point"},"name":"Pete'S Restaurant \u0026 Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb055c9d"},"location":{"coordinates":[-74.1398962,40.6244352],"type":"Point"},"name":"Empire Szechuan"} +,{"_id":{"$oid":"55cba2476c522cafdb055c9e"},"location":{"coordinates":[-73.9828612,40.7656216],"type":"Point"},"name":"Benares Indian Food"} +,{"_id":{"$oid":"55cba2476c522cafdb055c9f"},"location":{"coordinates":[-73.9966847,40.7154812],"type":"Point"},"name":"Ken'S Asian Taste"} +,{"_id":{"$oid":"55cba2476c522cafdb055ca0"},"location":{"coordinates":[-73.994196,40.743168],"type":"Point"},"name":"La Maison Du Macaron"} +,{"_id":{"$oid":"55cba2476c522cafdb055ca1"},"location":{"coordinates":[-73.990664,40.7390073],"type":"Point"},"name":"Rosewood"} +,{"_id":{"$oid":"55cba2476c522cafdb055ca2"},"location":{"coordinates":[-74.1973,40.559734],"type":"Point"},"name":"Casa Nino"} +,{"_id":{"$oid":"55cba2476c522cafdb055ca3"},"location":{"coordinates":[-73.997933,40.6915434],"type":"Point"},"name":"Fatoosh Pizza \u0026 Bbq"} +,{"_id":{"$oid":"55cba2476c522cafdb055ca4"},"location":{"coordinates":[-73.99905799999999,40.72837800000001],"type":"Point"},"name":"Choga Korean \u0026 Japanese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055ca5"},"location":{"coordinates":[-73.940578,40.680117],"type":"Point"},"name":"Crown Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb055ca6"},"location":{"coordinates":[-73.99439,40.684734],"type":"Point"},"name":"The Chocolate Room"} +,{"_id":{"$oid":"55cba2476c522cafdb055ca7"},"location":{"coordinates":[-73.843486,40.851401],"type":"Point"},"name":"Good To Go"} +,{"_id":{"$oid":"55cba2476c522cafdb055ca8"},"location":{"coordinates":[-73.8647387,40.6791966],"type":"Point"},"name":"Dunkin' Donuts, Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb055ca9"},"location":{"coordinates":[-73.9673634,40.7629372],"type":"Point"},"name":"Subway Inn"} +,{"_id":{"$oid":"55cba2476c522cafdb055caa"},"location":{"coordinates":[-73.9793754,40.6698493],"type":"Point"},"name":"Shinju"} +,{"_id":{"$oid":"55cba2476c522cafdb055cab"},"location":{"coordinates":[-73.92062709999999,40.6852768],"type":"Point"},"name":"Bed-Stuy Fish Fry"} +,{"_id":{"$oid":"55cba2476c522cafdb055cac"},"location":{"coordinates":[-73.9871824,40.7296012],"type":"Point"},"name":"16 Handles"} +,{"_id":{"$oid":"55cba2476c522cafdb055cad"},"location":{"coordinates":[-73.98562969999999,40.7549318],"type":"Point"},"name":"Pronto Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb055cae"},"location":{"coordinates":[-73.7934888,40.68572229999999],"type":"Point"},"name":"Dunkin' Donuts, Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb055caf"},"location":{"coordinates":[-73.75185180000001,40.6820853],"type":"Point"},"name":"Dunkin' Donuts/Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb055cb0"},"location":{"coordinates":[-73.97137479999999,40.75398360000001],"type":"Point"},"name":"Pret A Manger"} +,{"_id":{"$oid":"55cba2476c522cafdb055cb1"},"location":{"coordinates":[-74.2426584,40.5151344],"type":"Point"},"name":"E.J. Michael'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055cb2"},"location":{"coordinates":[-73.9891719,40.7637188],"type":"Point"},"name":"Hibernia"} +,{"_id":{"$oid":"55cba2476c522cafdb055cb3"},"location":{"coordinates":[-73.989212,40.722806],"type":"Point"},"name":"Macondo"} +,{"_id":{"$oid":"55cba2476c522cafdb055cb4"},"location":{"coordinates":[-73.9556016,40.6906508],"type":"Point"},"name":"Colador Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055cb5"},"location":{"coordinates":[-73.97657720000001,40.7808377],"type":"Point"},"name":"Shake Shack"} +,{"_id":{"$oid":"55cba2476c522cafdb055cb6"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"Eat \u0026 Go Istanbul/New York"} +,{"_id":{"$oid":"55cba2476c522cafdb055cb7"},"location":{"coordinates":[-73.992471,40.7511286],"type":"Point"},"name":"Lugo Caffe"} +,{"_id":{"$oid":"55cba2476c522cafdb055cb8"},"location":{"coordinates":[-73.987544,40.6903651],"type":"Point"},"name":"New Apollo Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb055cb9"},"location":{"coordinates":[-73.939639,40.748406],"type":"Point"},"name":"New Dream Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb055cba"},"location":{"coordinates":[-73.99091020000002,40.75305110000001],"type":"Point"},"name":"American Language Communication Center Cafeteria"} +,{"_id":{"$oid":"55cba2476c522cafdb055cbb"},"location":{"coordinates":[-74.19229229999999,40.5325494],"type":"Point"},"name":"Ralph'S Famous Italian Ices"} +,{"_id":{"$oid":"55cba2476c522cafdb055cbc"},"location":{"coordinates":[-73.70781699999999,40.7492851],"type":"Point"},"name":"Tavern 18"} +,{"_id":{"$oid":"55cba2476c522cafdb055cbd"},"location":{"coordinates":[-73.94865949999999,40.8018106],"type":"Point"},"name":"Dunkin' Donuts Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb055cbe"},"location":{"coordinates":[-73.851011,40.891122],"type":"Point"},"name":"Stop At The Stop Sweet Pot Restaurant \u0026 Cocktail"} +,{"_id":{"$oid":"55cba2476c522cafdb055cbf"},"location":{"coordinates":[-73.8311339,40.888486],"type":"Point"},"name":"Golden Krust Caribbean Bakery \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb055cc0"},"location":{"coordinates":[-73.95256049999999,40.7264035],"type":"Point"},"name":"Russ Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb055cc1"},"location":{"coordinates":[-73.9589048,40.7642138],"type":"Point"},"name":"Dunkin' Donuts, Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb055cc2"},"location":{"coordinates":[-73.79552629999999,40.7730281],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb055cc3"},"location":{"coordinates":[-73.9963118,40.72346],"type":"Point"},"name":"Delicatessen Macbar"} +,{"_id":{"$oid":"55cba2476c522cafdb055cc4"},"location":{"coordinates":[-73.9468885,40.7909192],"type":"Point"},"name":"East Harlem Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055cc5"},"location":{"coordinates":[-73.9427259,40.64337099999999],"type":"Point"},"name":"Yummy Taco Brooklyn"} +,{"_id":{"$oid":"55cba2476c522cafdb055cc6"},"location":{"coordinates":[-93.2069217,43.14769159999999],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb055cc7"},"location":{"coordinates":[-74.0093072,40.7150388],"type":"Point"},"name":"Le Pain Quotidien"} +,{"_id":{"$oid":"55cba2476c522cafdb055cc8"},"location":{"coordinates":[-73.9504851,40.7335414],"type":"Point"},"name":"Jayse Catering"} +,{"_id":{"$oid":"55cba2476c522cafdb055cc9"},"location":{"coordinates":[-74.0105051,40.7040805],"type":"Point"},"name":"Bingo Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb055cca"},"location":{"coordinates":[-73.9906826,40.7033385],"type":"Point"},"name":"Galapagos Art Space"} +,{"_id":{"$oid":"55cba2476c522cafdb055ccb"},"location":{"coordinates":[-73.972888,40.760557],"type":"Point"},"name":"The Core Club"} +,{"_id":{"$oid":"55cba2476c522cafdb055ccc"},"location":{"coordinates":[-73.98783999999999,40.74050099999999],"type":"Point"},"name":"Sophie'S Cuban Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb055ccd"},"location":{"coordinates":[-73.91760099999999,40.7618149],"type":"Point"},"name":"Point Brazil"} +,{"_id":{"$oid":"55cba2476c522cafdb055cce"},"location":{"coordinates":[-73.95888839999999,40.70442329999999],"type":"Point"},"name":"Grill On Lee"} +,{"_id":{"$oid":"55cba2476c522cafdb055ccf"},"location":{"coordinates":[-73.9076894,40.8128523],"type":"Point"},"name":"Fuh Wah Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055cd0"},"location":{"coordinates":[-74.1660553,40.5823983],"type":"Point"},"name":"Applebee'S Neighborhood Grill \u0026 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb055cd1"},"location":{"coordinates":[-73.9898,40.726589],"type":"Point"},"name":"Eastville Comedy Club"} +,{"_id":{"$oid":"55cba2476c522cafdb055cd2"},"location":{"coordinates":[-74.0073575,40.6477267],"type":"Point"},"name":"La Cucina Mexican Grill And Cantina Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb055cd3"},"location":{"coordinates":[-73.981571,40.658535],"type":"Point"},"name":"Joe'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb055cd4"},"location":{"coordinates":[-73.9647447,40.76045],"type":"Point"},"name":"Crunch Pit Stop"} +,{"_id":{"$oid":"55cba2476c522cafdb055cd5"},"location":{"coordinates":[-74.006444,40.7406909],"type":"Point"},"name":"Holdan And Astor / Vip Room/ Fc Gotham"} +,{"_id":{"$oid":"55cba2476c522cafdb055cd6"},"location":{"coordinates":[-73.8900364,40.6725699],"type":"Point"},"name":"Chung Wah"} +,{"_id":{"$oid":"55cba2476c522cafdb055cd7"},"location":{"coordinates":[-73.8554369,40.8358473],"type":"Point"},"name":"Jerry'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb055cd8"},"location":{"coordinates":[-74.1441327,40.62561460000001],"type":"Point"},"name":"Las Catrachas Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055cd9"},"location":{"coordinates":[-73.97248499999999,40.7436072],"type":"Point"},"name":"Impress Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb055cda"},"location":{"coordinates":[-73.8953002,40.7007167],"type":"Point"},"name":"Burger King"} +,{"_id":{"$oid":"55cba2476c522cafdb055cdb"},"location":{"coordinates":[-73.95076639999999,40.6642733],"type":"Point"},"name":"Gloria'S Next Generation"} +,{"_id":{"$oid":"55cba2476c522cafdb055cdc"},"location":{"coordinates":[-74.000945,40.729911],"type":"Point"},"name":"The Grisly Pear"} +,{"_id":{"$oid":"55cba2476c522cafdb055cdd"},"location":{"coordinates":[-73.93198009999999,40.6185062],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb055cde"},"location":{"coordinates":[-73.8041148,40.7606957],"type":"Point"},"name":"New Asian Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055cdf"},"location":{"coordinates":[-73.9825421,40.736006],"type":"Point"},"name":"Il Forno"} +,{"_id":{"$oid":"55cba2476c522cafdb055ce0"},"location":{"coordinates":[-73.86748589999999,40.8525348],"type":"Point"},"name":"Cafe Colonial Restaurant \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb055ce1"},"location":{"coordinates":[-73.8594533,40.8243427],"type":"Point"},"name":"Popeyes Chicken \u0026 Biscuits"} +,{"_id":{"$oid":"55cba2476c522cafdb055ce2"},"location":{"coordinates":[-73.86129079999999,40.8667897],"type":"Point"},"name":"Popeyes Chicken \u0026 Biscuits"} +,{"_id":{"$oid":"55cba2476c522cafdb055ce3"},"location":{"coordinates":[-73.97711249999999,40.7880469],"type":"Point"},"name":"Mamma'S Famous Pizza \u0026 Burgers"} +,{"_id":{"$oid":"55cba2476c522cafdb055ce4"},"location":{"coordinates":[-73.81769899999999,40.819196],"type":"Point"},"name":"Tosca Marquee"} +,{"_id":{"$oid":"55cba2476c522cafdb055ce5"},"location":{"coordinates":[-74.0080471,40.7037844],"type":"Point"},"name":"Hudson River Trading"} +,{"_id":{"$oid":"55cba2476c522cafdb055ce6"},"location":{"coordinates":[-73.8037533,40.7219657],"type":"Point"},"name":"Burger King, Popeye'S Chicken \u0026 Biscuits"} +,{"_id":{"$oid":"55cba2476c522cafdb055ce7"},"location":{"coordinates":[-73.90675329999999,40.7702486],"type":"Point"},"name":"Pancoan Society Hippocrates"} +,{"_id":{"$oid":"55cba2476c522cafdb055ce8"},"location":{"coordinates":[-73.98277519999999,40.7316788],"type":"Point"},"name":"Kambi Ramen"} +,{"_id":{"$oid":"55cba2476c522cafdb055ce9"},"location":{"coordinates":[-73.8598885,40.83749479999999],"type":"Point"},"name":"Burger King, Popeye'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055cea"},"location":{"coordinates":[-73.8169994,40.7022562],"type":"Point"},"name":"Crown Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb055ceb"},"location":{"coordinates":[-73.9818362,40.7650522],"type":"Point"},"name":"Starbucks Coffee,Limited Brands Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055cec"},"location":{"coordinates":[-73.9719807,40.7590251],"type":"Point"},"name":"Citigroup Edr"} +,{"_id":{"$oid":"55cba2476c522cafdb055ced"},"location":{"coordinates":[-73.9741793,40.7575374],"type":"Point"},"name":"Chipotle Mexican Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb055cee"},"location":{"coordinates":[-73.9807412,40.7561632],"type":"Point"},"name":"Chipotle Mexican Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb055cef"},"location":{"coordinates":[-73.770543,40.711307],"type":"Point"},"name":"Xin Xing 88 Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055cf0"},"location":{"coordinates":[-73.80696979999999,40.7633894],"type":"Point"},"name":"Bbq Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb055cf1"},"location":{"coordinates":[-73.8316559,40.7635242],"type":"Point"},"name":"Room Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055cf2"},"location":{"coordinates":[-73.8295961,40.760843],"type":"Point"},"name":"Ajisen Ramen"} +,{"_id":{"$oid":"55cba2476c522cafdb055cf3"},"location":{"coordinates":[-73.9272915,40.837567],"type":"Point"},"name":"Famous Anthony'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb055cf4"},"location":{"coordinates":[-73.993408,40.75679],"type":"Point"},"name":"Brand New Fresco Tortilla"} +,{"_id":{"$oid":"55cba2476c522cafdb055cf5"},"location":{"coordinates":[-74.1352802,40.62565559999999],"type":"Point"},"name":"Mother Pugs Saloon"} +,{"_id":{"$oid":"55cba2476c522cafdb055cf6"},"location":{"coordinates":[-73.991658,40.673735],"type":"Point"},"name":"The Bell House"} +,{"_id":{"$oid":"55cba2476c522cafdb055cf7"},"location":{"coordinates":[-73.836899,40.787459],"type":"Point"},"name":"Spa Castle/Juice Farm"} +,{"_id":{"$oid":"55cba2476c522cafdb055cf8"},"location":{"coordinates":[-73.9399619,40.851122],"type":"Point"},"name":"Cabrini 181"} +,{"_id":{"$oid":"55cba2476c522cafdb055cf9"},"location":{"coordinates":[-73.93806959999999,40.8508609],"type":"Point"},"name":"Hudson View Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055cfa"},"location":{"coordinates":[-73.94820399999999,40.777958],"type":"Point"},"name":"Hughes Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb055cfb"},"location":{"coordinates":[-74.00031229999999,40.747341],"type":"Point"},"name":"Txikito"} +,{"_id":{"$oid":"55cba2476c522cafdb055cfc"},"location":{"coordinates":[-73.9853586,40.7442036],"type":"Point"},"name":"Pranna Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055cfd"},"location":{"coordinates":[-73.96557299999999,40.760051],"type":"Point"},"name":"Club A Steakhouse"} +,{"_id":{"$oid":"55cba2476c522cafdb055cfe"},"location":{"coordinates":[-73.9566231,40.8022119],"type":"Point"},"name":"67 Orange Street"} +,{"_id":{"$oid":"55cba2476c522cafdb055cff"},"location":{"coordinates":[-73.97501489999999,40.6867486],"type":"Point"},"name":"Lean Crust/ Silver Spoon"} +,{"_id":{"$oid":"55cba2476c522cafdb055d00"},"location":{"coordinates":[-73.76811119999999,40.7584816],"type":"Point"},"name":"Jimmy'S Trattoria"} +,{"_id":{"$oid":"55cba2476c522cafdb055d01"},"location":{"coordinates":[-73.8554764,40.85497549999999],"type":"Point"},"name":"Carvel Ice Cream"} +,{"_id":{"$oid":"55cba2476c522cafdb055d02"},"location":{"coordinates":[-74.104073,40.58727200000001],"type":"Point"},"name":"Carvel Ice Cream"} +,{"_id":{"$oid":"55cba2476c522cafdb055d03"},"location":{"coordinates":[-73.9924723,40.6888234],"type":"Point"},"name":"Chung Hing Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055d04"},"location":{"coordinates":[-73.99980409999999,40.7164906],"type":"Point"},"name":"Whiskey Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb055d05"},"location":{"coordinates":[-73.8676565,40.8656891],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb055d06"},"location":{"coordinates":[-74.00008199999999,40.720807],"type":"Point"},"name":"/ L'Ecole"} +,{"_id":{"$oid":"55cba2476c522cafdb055d07"},"location":{"coordinates":[-73.9968343,40.6467184],"type":"Point"},"name":"39 Karaoke"} +,{"_id":{"$oid":"55cba2476c522cafdb055d08"},"location":{"coordinates":[-73.79413579999999,40.7099523],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb055d09"},"location":{"coordinates":[-73.8369719,40.8527621],"type":"Point"},"name":"Mercy College"} +,{"_id":{"$oid":"55cba2476c522cafdb055d0a"},"location":{"coordinates":[-73.89122979999999,40.74875],"type":"Point"},"name":"Mustang Thakali Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb055d0b"},"location":{"coordinates":[-74.15872019999999,40.6119754],"type":"Point"},"name":"Mitoushi Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb055d0c"},"location":{"coordinates":[-73.7822056,40.6434612],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb055d0d"},"location":{"coordinates":[-73.953799,40.728661],"type":"Point"},"name":"Sakura Japenese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055d0e"},"location":{"coordinates":[-74.00652,40.638759],"type":"Point"},"name":"Wong Wong Noodle Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb055d0f"},"location":{"coordinates":[-73.7389596,40.6584068],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb055d10"},"location":{"coordinates":[-73.92933599999999,40.756621],"type":"Point"},"name":"Sitio Fusion"} +,{"_id":{"$oid":"55cba2476c522cafdb055d11"},"location":{"coordinates":[-73.9857026,40.7653898],"type":"Point"},"name":"Disiac Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb055d12"},"location":{"coordinates":[-74.00581439999999,40.71958],"type":"Point"},"name":"Batard"} +,{"_id":{"$oid":"55cba2476c522cafdb055d13"},"location":{"coordinates":[-73.9683455,40.7595452],"type":"Point"},"name":"Cassiano'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb055d14"},"location":{"coordinates":[-73.92776599999999,40.769622],"type":"Point"},"name":"Vesta Trattoria \u0026 Wine Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb055d15"},"location":{"coordinates":[-73.91789059999999,40.7599191],"type":"Point"},"name":"Steinway Pizza Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055d16"},"location":{"coordinates":[-74.00183729999999,40.7281171],"type":"Point"},"name":"Bar Veloce"} +,{"_id":{"$oid":"55cba2476c522cafdb055d17"},"location":{"coordinates":[-73.9811168,40.74449500000001],"type":"Point"},"name":"Vino 313"} +,{"_id":{"$oid":"55cba2476c522cafdb055d18"},"location":{"coordinates":[-73.91845839999999,40.7394836],"type":"Point"},"name":"Happy Fortune Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055d19"},"location":{"coordinates":[-74.01218240000001,40.636655],"type":"Point"},"name":"Thanh Da"} +,{"_id":{"$oid":"55cba2476c522cafdb055d1a"},"location":{"coordinates":[-73.9766459,40.7602745],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb055d1b"},"location":{"coordinates":[-73.828769,40.765754],"type":"Point"},"name":"Oh Bagel Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055d1c"},"location":{"coordinates":[-73.9522227,40.6505341],"type":"Point"},"name":"Nio'S West Indian Restaurant \u0026 Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb055d1d"},"location":{"coordinates":[-73.99940420000001,40.7297166],"type":"Point"},"name":"Soho Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb055d1e"},"location":{"coordinates":[-73.960608,40.7787515],"type":"Point"},"name":"William Greenberg Jr Desserts"} +,{"_id":{"$oid":"55cba2476c522cafdb055d1f"},"location":{"coordinates":[-73.9368744,40.8443933],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb055d20"},"location":{"coordinates":[-73.78552499999999,40.7628192],"type":"Point"},"name":"Pizzarama"} +,{"_id":{"$oid":"55cba2476c522cafdb055d21"},"location":{"coordinates":[-73.8369719,40.8527621],"type":"Point"},"name":"Metro Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055d22"},"location":{"coordinates":[-73.8065474,40.698064],"type":"Point"},"name":"G'S Homestyle Cooking"} +,{"_id":{"$oid":"55cba2476c522cafdb055d23"},"location":{"coordinates":[-74.0053022,40.7238476],"type":"Point"},"name":"Hampton Inn"} +,{"_id":{"$oid":"55cba2476c522cafdb055d24"},"location":{"coordinates":[-73.98374249999999,40.7402841],"type":"Point"},"name":"Baruch College"} +,{"_id":{"$oid":"55cba2476c522cafdb055d25"},"location":{"coordinates":[-73.89929049999999,40.6673883],"type":"Point"},"name":"New Hop Shing Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb055d26"},"location":{"coordinates":[-73.8954691,40.7276779],"type":"Point"},"name":"Isabella'S Frozen Treats"} +,{"_id":{"$oid":"55cba2476c522cafdb055d27"},"location":{"coordinates":[-73.924263,40.701878],"type":"Point"},"name":"Two 80 Cafe And Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb055d28"},"location":{"coordinates":[-73.9692401,40.7975967],"type":"Point"},"name":"Sura"} +,{"_id":{"$oid":"55cba2476c522cafdb055d29"},"location":{"coordinates":[-73.97006619999999,40.7523746],"type":"Point"},"name":"Ali Baba'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055d2a"},"location":{"coordinates":[-73.9851429,40.749803],"type":"Point"},"name":"O'Reilly'S Off Fifth"} +,{"_id":{"$oid":"55cba2476c522cafdb055d2b"},"location":{"coordinates":[-73.988829,40.71395200000001],"type":"Point"},"name":"Cafe Petisco"} +,{"_id":{"$oid":"55cba2476c522cafdb055d2c"},"location":{"coordinates":[-73.7408438,40.6362391],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb055d2d"},"location":{"coordinates":[-73.9881539,40.7273943],"type":"Point"},"name":"Spice"} +,{"_id":{"$oid":"55cba2476c522cafdb055d2e"},"location":{"coordinates":[-74.0052023,40.6505194],"type":"Point"},"name":"Castillo Ecuatoriano Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055d2f"},"location":{"coordinates":[-74.0094031,40.7257386],"type":"Point"},"name":"508 Restaurant And Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb055d30"},"location":{"coordinates":[-73.755591,40.74897199999999],"type":"Point"},"name":"Samdado Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055d31"},"location":{"coordinates":[-73.9442596,40.8139894],"type":"Point"},"name":"Little Harlem Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb055d32"},"location":{"coordinates":[-73.9958288,40.7165916],"type":"Point"},"name":"Gales Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055d33"},"location":{"coordinates":[-73.9606684,40.58752459999999],"type":"Point"},"name":"New Win Way Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055d34"},"location":{"coordinates":[-73.7356552,40.728204],"type":"Point"},"name":"Prima Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb055d35"},"location":{"coordinates":[-73.9976447,40.7155274],"type":"Point"},"name":"Yee Li Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055d36"},"location":{"coordinates":[-73.9705784,40.7554676],"type":"Point"},"name":"Silo Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055d37"},"location":{"coordinates":[-74.00434489999999,40.6811187],"type":"Point"},"name":"Phil'S Crummy Corner"} +,{"_id":{"$oid":"55cba2476c522cafdb055d38"},"location":{"coordinates":[-74.0971352,40.6337599],"type":"Point"},"name":"Md Bagels Deli \u0026 Groceery"} +,{"_id":{"$oid":"55cba2476c522cafdb055d39"},"location":{"coordinates":[-73.93209829999999,40.8519374],"type":"Point"},"name":"Pollo Dorado Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb055d3a"},"location":{"coordinates":[-73.9785,40.7559946],"type":"Point"},"name":"Build-A-Bear Workshop Lower Level"} +,{"_id":{"$oid":"55cba2476c522cafdb055d3b"},"location":{"coordinates":[-73.980075,40.7425799],"type":"Point"},"name":"Bistango"} +,{"_id":{"$oid":"55cba2476c522cafdb055d3c"},"location":{"coordinates":[-73.802821,40.762107],"type":"Point"},"name":"Incheon Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055d3d"},"location":{"coordinates":[-73.98606649999999,40.7579328],"type":"Point"},"name":"Viacom Cafeteria"} +,{"_id":{"$oid":"55cba2476c522cafdb055d3e"},"location":{"coordinates":[-73.98606649999999,40.7579328],"type":"Point"},"name":"Viacom Executive Dining Room"} +,{"_id":{"$oid":"55cba2476c522cafdb055d3f"},"location":{"coordinates":[-73.98606649999999,40.7579328],"type":"Point"},"name":"Refresh Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055d40"},"location":{"coordinates":[-73.9847829,40.7263329],"type":"Point"},"name":"Porchetta"} +,{"_id":{"$oid":"55cba2476c522cafdb055d41"},"location":{"coordinates":[-73.9826148,40.7778898],"type":"Point"},"name":"Maoz Vegetarian"} +,{"_id":{"$oid":"55cba2476c522cafdb055d42"},"location":{"coordinates":[-73.8950772,40.7021859],"type":"Point"},"name":"Mr. Bagel"} +,{"_id":{"$oid":"55cba2476c522cafdb055d43"},"location":{"coordinates":[-73.98651679999999,40.7675726],"type":"Point"},"name":"Lincoln Park Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb055d44"},"location":{"coordinates":[-73.921589,40.767225],"type":"Point"},"name":"Petey'S Burger"} +,{"_id":{"$oid":"55cba2476c522cafdb055d45"},"location":{"coordinates":[-74.1588673,40.54559280000001],"type":"Point"},"name":"Giuseppe Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb055d46"},"location":{"coordinates":[-73.9439964,40.6744542],"type":"Point"},"name":"Brooklyn Children'S Museum Cafe/Forest City Ratner Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055d47"},"location":{"coordinates":[-73.94538349999999,40.7188855],"type":"Point"},"name":"The Richardson"} +,{"_id":{"$oid":"55cba2476c522cafdb055d48"},"location":{"coordinates":[-73.994269,40.694547],"type":"Point"},"name":"Vegetarian Ginger"} +,{"_id":{"$oid":"55cba2476c522cafdb055d49"},"location":{"coordinates":[-73.820944,40.680337],"type":"Point"},"name":"Trinciti Roti Shop \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055d4a"},"location":{"coordinates":[-73.9585235,40.7135531],"type":"Point"},"name":"Walter Foods"} +,{"_id":{"$oid":"55cba2476c522cafdb055d4b"},"location":{"coordinates":[-73.9115542,40.7676719],"type":"Point"},"name":"Sultana Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055d4c"},"location":{"coordinates":[-74.1166535,40.5734162],"type":"Point"},"name":"Restaurant On The Plaza Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb055d4d"},"location":{"coordinates":[-73.9215763,40.835639],"type":"Point"},"name":"Justine Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055d4e"},"location":{"coordinates":[-74.0050009,40.729149],"type":"Point"},"name":"Phil'S Pizza West Village"} +,{"_id":{"$oid":"55cba2476c522cafdb055d4f"},"location":{"coordinates":[-73.8614351,40.7300176],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb055d50"},"location":{"coordinates":[-73.952823,40.787287],"type":"Point"},"name":"El Paso Taqueria"} +,{"_id":{"$oid":"55cba2476c522cafdb055d51"},"location":{"coordinates":[-73.8962876,40.8468633],"type":"Point"},"name":"Napoli'S Best Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb055d52"},"location":{"coordinates":[-73.98292769999999,40.7424084],"type":"Point"},"name":"Dhaba Indian Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb055d53"},"location":{"coordinates":[-73.72618039999999,40.764761],"type":"Point"},"name":"Jian Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055d54"},"location":{"coordinates":[-73.8444647,40.8315701],"type":"Point"},"name":"Zerega Avenue Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb055d55"},"location":{"coordinates":[-74.1263681,40.59479899999999],"type":"Point"},"name":"Dear \u0026 Delicious"} +,{"_id":{"$oid":"55cba2476c522cafdb055d56"},"location":{"coordinates":[-73.8884267,40.8548034],"type":"Point"},"name":"Zero Otto Nove Trattoria"} +,{"_id":{"$oid":"55cba2476c522cafdb055d57"},"location":{"coordinates":[-73.94967919999999,40.7772719],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb055d58"},"location":{"coordinates":[-73.7892121,40.7122626],"type":"Point"},"name":"Halal Dynasty Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055d59"},"location":{"coordinates":[-74.0019894,40.7312758],"type":"Point"},"name":"Home Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055d5a"},"location":{"coordinates":[-73.9126637,40.8202086],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb055d5b"},"location":{"coordinates":[-73.952983,40.7765639],"type":"Point"},"name":"Two Boots Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb055d5c"},"location":{"coordinates":[-73.9376759,40.6513654],"type":"Point"},"name":"Gt Paradise Caribbean Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb055d5d"},"location":{"coordinates":[-73.97223679999999,40.6459574],"type":"Point"},"name":"Taqueria Los Pablanos"} +,{"_id":{"$oid":"55cba2476c522cafdb055d5e"},"location":{"coordinates":[-73.8634569,40.7518293],"type":"Point"},"name":"Vida Bella ''Nutrition Club''"} +,{"_id":{"$oid":"55cba2476c522cafdb055d5f"},"location":{"coordinates":[-73.97893739999999,40.72433059999999],"type":"Point"},"name":"Cafe Cambodge"} +,{"_id":{"$oid":"55cba2476c522cafdb055d60"},"location":{"coordinates":[-73.939081,40.68691800000001],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb055d61"},"location":{"coordinates":[-73.87901099999999,40.748413],"type":"Point"},"name":"Vanilla Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055d62"},"location":{"coordinates":[-73.9886594,40.7685266],"type":"Point"},"name":"Thailand Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055d63"},"location":{"coordinates":[-73.9415575,40.5971821],"type":"Point"},"name":"Empire Tortillas"} +,{"_id":{"$oid":"55cba2476c522cafdb055d64"},"location":{"coordinates":[-73.9045683,40.7455868],"type":"Point"},"name":"Saints \u0026 Sinners"} +,{"_id":{"$oid":"55cba2476c522cafdb055d65"},"location":{"coordinates":[-73.945334,40.718558],"type":"Point"},"name":"Beaner Coffee Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb055d66"},"location":{"coordinates":[-74.1549167,40.6322591],"type":"Point"},"name":"Romance Bar And Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055d67"},"location":{"coordinates":[-73.9766088,40.762239],"type":"Point"},"name":"Dig Inn Seasonal Market"} +,{"_id":{"$oid":"55cba2476c522cafdb055d68"},"location":{"coordinates":[-73.947239,40.780712],"type":"Point"},"name":"Butterfield Catering"} +,{"_id":{"$oid":"55cba2476c522cafdb055d69"},"location":{"coordinates":[-73.95167219999999,40.7237082],"type":"Point"},"name":"Five Leaves"} +,{"_id":{"$oid":"55cba2476c522cafdb055d6a"},"location":{"coordinates":[-73.920056,40.640205],"type":"Point"},"name":"Fish Eye Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb055d6b"},"location":{"coordinates":[-73.99409399999999,40.718437],"type":"Point"},"name":"New Wing Wah Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb055d6c"},"location":{"coordinates":[-73.836899,40.787459],"type":"Point"},"name":"Snack Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb055d6d"},"location":{"coordinates":[-74.0036258,40.7200705],"type":"Point"},"name":"Westside Coffee Shop Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055d6e"},"location":{"coordinates":[-73.836899,40.787459],"type":"Point"},"name":"Sky Garden And Tonic At Spa Castle"} +,{"_id":{"$oid":"55cba2476c522cafdb055d6f"},"location":{"coordinates":[-73.983233,40.765662],"type":"Point"},"name":"Lenny'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055d70"},"location":{"coordinates":[-73.98454400000001,40.7506772],"type":"Point"},"name":"Blacksmith Cafe \u0026 Delicatessen"} +,{"_id":{"$oid":"55cba2476c522cafdb055d71"},"location":{"coordinates":[-74.2318975,40.52728219999999],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb055d72"},"location":{"coordinates":[-73.980076,40.72712200000001],"type":"Point"},"name":"Ninth Street Espresso"} +,{"_id":{"$oid":"55cba2476c522cafdb055d73"},"location":{"coordinates":[-73.92338149999999,40.8440365],"type":"Point"},"name":"Sal Y Pimienta Bar \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055d74"},"location":{"coordinates":[-73.96068939999999,40.5877843],"type":"Point"},"name":"Sofia Pizza Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055d75"},"location":{"coordinates":[-73.7378856,40.7541547],"type":"Point"},"name":"Grimaldi'S Coal Brick Oven Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb055d76"},"location":{"coordinates":[-74.0163958,40.7105252],"type":"Point"},"name":"Pick A Bagel"} +,{"_id":{"$oid":"55cba2476c522cafdb055d77"},"location":{"coordinates":[-74.1660553,40.5823983],"type":"Point"},"name":"Nathan'S Famous"} +,{"_id":{"$oid":"55cba2476c522cafdb055d78"},"location":{"coordinates":[-73.8326589,40.7598502],"type":"Point"},"name":"Nan Xiang Xiao Long Bao Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055d79"},"location":{"coordinates":[-73.832814,40.758891],"type":"Point"},"name":"Roosevelt Sports Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb055d7a"},"location":{"coordinates":[-73.96679019999999,40.7728017],"type":"Point"},"name":"Knish Nosh (Conservatory Water)"} +,{"_id":{"$oid":"55cba2476c522cafdb055d7b"},"location":{"coordinates":[-73.85563599999999,40.743298],"type":"Point"},"name":"La Dulce Vida"} +,{"_id":{"$oid":"55cba2476c522cafdb055d7c"},"location":{"coordinates":[-73.7846584,40.6719807],"type":"Point"},"name":"K \u0026 Y Deli \u0026 Groceries"} +,{"_id":{"$oid":"55cba2476c522cafdb055d7d"},"location":{"coordinates":[-73.866193,40.865687],"type":"Point"},"name":"King Wok"} +,{"_id":{"$oid":"55cba2476c522cafdb055d7e"},"location":{"coordinates":[-73.99186209999999,40.7344953],"type":"Point"},"name":"Spice"} +,{"_id":{"$oid":"55cba2476c522cafdb055d7f"},"location":{"coordinates":[-73.933435,40.6191591],"type":"Point"},"name":"East Garden Asian Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb055d80"},"location":{"coordinates":[-73.7228856,40.7250571],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb055d81"},"location":{"coordinates":[-73.9290922,40.7564211],"type":"Point"},"name":"Copacabana Pizza \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb055d82"},"location":{"coordinates":[-73.9438167,40.6507989],"type":"Point"},"name":"Back Home Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb055d83"},"location":{"coordinates":[-73.9885539,40.768559],"type":"Point"},"name":"Fresco Tortillas"} +,{"_id":{"$oid":"55cba2476c522cafdb055d84"},"location":{"coordinates":[-73.9866445,40.72631579999999],"type":"Point"},"name":"Panna Ii Garden Indian Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055d85"},"location":{"coordinates":[-73.9684068,40.7555193],"type":"Point"},"name":"Cornerstone Tavern/The Stag'S Head"} +,{"_id":{"$oid":"55cba2476c522cafdb055d86"},"location":{"coordinates":[-73.80406669999999,40.7174149],"type":"Point"},"name":"Andy'S Cafeteria"} +,{"_id":{"$oid":"55cba2476c522cafdb055d87"},"location":{"coordinates":[-73.9662261,40.7585128],"type":"Point"},"name":"Naya Mezze \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb055d88"},"location":{"coordinates":[-73.99186900000001,40.6851075],"type":"Point"},"name":"Char No 4"} +,{"_id":{"$oid":"55cba2476c522cafdb055d89"},"location":{"coordinates":[-74.0108091,40.7160466],"type":"Point"},"name":"Gee Whiz"} +,{"_id":{"$oid":"55cba2476c522cafdb055d8a"},"location":{"coordinates":[-73.9575828,40.7306152],"type":"Point"},"name":"Mrs. Kim'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055d8b"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"Lucy'S Asian Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb055d8c"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"Revive (Food Court Bar)"} +,{"_id":{"$oid":"55cba2476c522cafdb055d8d"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"Philly Cheesesteaks"} +,{"_id":{"$oid":"55cba2476c522cafdb055d8e"},"location":{"coordinates":[-73.7822056,40.6434612],"type":"Point"},"name":"Food Court Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb055d8f"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"Aeronuova"} +,{"_id":{"$oid":"55cba2476c522cafdb055d90"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"Revive (Sc)"} +,{"_id":{"$oid":"55cba2476c522cafdb055d91"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"Away Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055d92"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"Cibo Express Gourmet Market (Lower Level)"} +,{"_id":{"$oid":"55cba2476c522cafdb055d93"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"Cibo Express Gourmet Market (Ec)"} +,{"_id":{"$oid":"55cba2476c522cafdb055d94"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"New York Sports Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb055d95"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"Horizon Bakery Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055d96"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"Cibo Express Gourmet Market Food Court"} +,{"_id":{"$oid":"55cba2476c522cafdb055d97"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"La Vie"} +,{"_id":{"$oid":"55cba2476c522cafdb055d98"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"Cc Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb055d99"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"Deep Blue"} +,{"_id":{"$oid":"55cba2476c522cafdb055d9a"},"location":{"coordinates":[-73.7889689,40.6433507],"type":"Point"},"name":"5Ive Steak"} +,{"_id":{"$oid":"55cba2476c522cafdb055d9b"},"location":{"coordinates":[-73.9424033,40.6642084],"type":"Point"},"name":"Empire Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb055d9c"},"location":{"coordinates":[-73.7822056,40.6434612],"type":"Point"},"name":"Fresh"} +,{"_id":{"$oid":"55cba2476c522cafdb055d9d"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"Cheeburger Cheeburger"} +,{"_id":{"$oid":"55cba2476c522cafdb055d9e"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"Boars Head"} +,{"_id":{"$oid":"55cba2476c522cafdb055d9f"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"Piquillo"} +,{"_id":{"$oid":"55cba2476c522cafdb055da0"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"Revolucion"} +,{"_id":{"$oid":"55cba2476c522cafdb055da1"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"Aunt Butchies/ Revive Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb055da2"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"Cibo Express Gourmet Market"} +,{"_id":{"$oid":"55cba2476c522cafdb055da3"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"Illy/Velocity Bar (Ec2)"} +,{"_id":{"$oid":"55cba2476c522cafdb055da4"},"location":{"coordinates":[-73.8905065,40.8182031],"type":"Point"},"name":"Bascom Catering \u0026 Events"} +,{"_id":{"$oid":"55cba2476c522cafdb055da5"},"location":{"coordinates":[-73.9805315,40.75931],"type":"Point"},"name":"Magnolia Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb055da6"},"location":{"coordinates":[-73.95700599999999,40.7278779],"type":"Point"},"name":"Cookieroad"} +,{"_id":{"$oid":"55cba2476c522cafdb055da7"},"location":{"coordinates":[-73.9947411,40.72577760000001],"type":"Point"},"name":"Pinche Taqueria"} +,{"_id":{"$oid":"55cba2476c522cafdb055da8"},"location":{"coordinates":[-73.9170446,40.6831946],"type":"Point"},"name":"Ho May Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055da9"},"location":{"coordinates":[-73.9555482,40.7202715],"type":"Point"},"name":"The Gibson"} +,{"_id":{"$oid":"55cba2476c522cafdb055daa"},"location":{"coordinates":[-74.01229450000001,40.7074764],"type":"Point"},"name":"Bean N Bean Corp."} +,{"_id":{"$oid":"55cba2476c522cafdb055dab"},"location":{"coordinates":[-74.00873849999999,40.7167499],"type":"Point"},"name":"Bouley"} +,{"_id":{"$oid":"55cba2476c522cafdb055dac"},"location":{"coordinates":[-73.9981026,40.60429740000001],"type":"Point"},"name":"Popeyes Chicken \u0026 Biscuits"} +,{"_id":{"$oid":"55cba2476c522cafdb055dad"},"location":{"coordinates":[-73.954341,40.7668893],"type":"Point"},"name":"La Crosta Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055dae"},"location":{"coordinates":[-73.9284026,40.8190186],"type":"Point"},"name":"Sunlight Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055daf"},"location":{"coordinates":[-74.0096839,40.7047512],"type":"Point"},"name":"Leo'S Bagels"} +,{"_id":{"$oid":"55cba2476c522cafdb055db0"},"location":{"coordinates":[-73.862303,40.750428],"type":"Point"},"name":"Cafe 104"} +,{"_id":{"$oid":"55cba2476c522cafdb055db1"},"location":{"coordinates":[-73.9934047,40.7544014],"type":"Point"},"name":"Concrete Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055db2"},"location":{"coordinates":[-73.997545,40.764057],"type":"Point"},"name":"Hudson Terrace"} +,{"_id":{"$oid":"55cba2476c522cafdb055db3"},"location":{"coordinates":[-73.9679204,40.7573041],"type":"Point"},"name":"Bricklane Curry House"} +,{"_id":{"$oid":"55cba2476c522cafdb055db4"},"location":{"coordinates":[-74.0000417,40.7187253],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb055db5"},"location":{"coordinates":[-73.9843815,40.7472094],"type":"Point"},"name":"Rattle N Hum"} +,{"_id":{"$oid":"55cba2476c522cafdb055db6"},"location":{"coordinates":[-73.87867279999999,40.6816215],"type":"Point"},"name":"Wo Hop Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055db7"},"location":{"coordinates":[-74.0009579,40.7614564],"type":"Point"},"name":"Lucky Strike"} +,{"_id":{"$oid":"55cba2476c522cafdb055db8"},"location":{"coordinates":[-73.985772,40.738546],"type":"Point"},"name":"Gramercy Terrace (Gramercy Park Hotel)"} +,{"_id":{"$oid":"55cba2476c522cafdb055db9"},"location":{"coordinates":[-73.9823431,40.7240949],"type":"Point"},"name":"Lavagna"} +,{"_id":{"$oid":"55cba2476c522cafdb055dba"},"location":{"coordinates":[-74.1656587,40.6269023],"type":"Point"},"name":"Checkers Drive-In Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055dbb"},"location":{"coordinates":[-73.7953355,40.7732798],"type":"Point"},"name":"Francis Lewis Pastry Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb055dbc"},"location":{"coordinates":[-73.82688569999999,40.7519411],"type":"Point"},"name":"Spicy Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055dbd"},"location":{"coordinates":[-73.980638,40.756969],"type":"Point"},"name":"Chips \u0026 Salsa"} +,{"_id":{"$oid":"55cba2476c522cafdb055dbe"},"location":{"coordinates":[-73.960855,40.8082281],"type":"Point"},"name":"Brownie'S Cafe At Columbia"} +,{"_id":{"$oid":"55cba2476c522cafdb055dbf"},"location":{"coordinates":[-73.95929009999999,40.76289879999999],"type":"Point"},"name":"Haagen Dazs"} +,{"_id":{"$oid":"55cba2476c522cafdb055dc0"},"location":{"coordinates":[-74.0008849,40.61263539999999],"type":"Point"},"name":"Him \u0026 Her Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055dc1"},"location":{"coordinates":[-73.96542629999999,40.8064456],"type":"Point"},"name":"Haagen Dazs"} +,{"_id":{"$oid":"55cba2476c522cafdb055dc2"},"location":{"coordinates":[-73.94120070000001,40.6801693],"type":"Point"},"name":"Soul Food Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb055dc3"},"location":{"coordinates":[-73.752962,40.694],"type":"Point"},"name":"Healthy Eaters Jamaican Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055dc4"},"location":{"coordinates":[-73.99845479999999,40.7295645],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb055dc5"},"location":{"coordinates":[-73.961647,40.608221],"type":"Point"},"name":"Slavyanskiy Bazar"} +,{"_id":{"$oid":"55cba2476c522cafdb055dc6"},"location":{"coordinates":[-74.09269499999999,40.572401],"type":"Point"},"name":"New Everybody'S Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb055dc7"},"location":{"coordinates":[-73.9517051,40.7699713],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb055dc8"},"location":{"coordinates":[-73.9799875,40.7512258],"type":"Point"},"name":"Dig Inn"} +,{"_id":{"$oid":"55cba2476c522cafdb055dc9"},"location":{"coordinates":[-73.99801479999999,40.7329396],"type":"Point"},"name":"Mansions Catering"} +,{"_id":{"$oid":"55cba2476c522cafdb055dca"},"location":{"coordinates":[-73.9890844,40.7483602],"type":"Point"},"name":"876 Market Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb055dcb"},"location":{"coordinates":[-73.90486,40.710977],"type":"Point"},"name":"Hong Kong"} +,{"_id":{"$oid":"55cba2476c522cafdb055dcc"},"location":{"coordinates":[-74.12967189999999,40.6308178],"type":"Point"},"name":"Michelangelo'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb055dcd"},"location":{"coordinates":[-73.8663704,40.8454334],"type":"Point"},"name":"Joy Garden Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055dce"},"location":{"coordinates":[-73.980913,40.575899],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb055dcf"},"location":{"coordinates":[-73.9961364,40.71397],"type":"Point"},"name":"Jing Star Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055dd0"},"location":{"coordinates":[-73.9822459,40.76189919999999],"type":"Point"},"name":"Athletic \u0026 Swim Club"} +,{"_id":{"$oid":"55cba2476c522cafdb055dd1"},"location":{"coordinates":[-73.9071182,40.8284947],"type":"Point"},"name":"Social Gathering Palace"} +,{"_id":{"$oid":"55cba2476c522cafdb055dd2"},"location":{"coordinates":[-73.9627611,40.6882632],"type":"Point"},"name":"The 3 Luigis"} +,{"_id":{"$oid":"55cba2476c522cafdb055dd3"},"location":{"coordinates":[-73.8714643,40.6840618],"type":"Point"},"name":"Nyc Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb055dd4"},"location":{"coordinates":[-73.8017469,40.76199920000001],"type":"Point"},"name":"Ob'S Cavern"} +,{"_id":{"$oid":"55cba2476c522cafdb055dd5"},"location":{"coordinates":[-73.83825379999999,40.8810993],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb055dd6"},"location":{"coordinates":[-73.7932716,40.6738463],"type":"Point"},"name":"Caribbean Style Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb055dd7"},"location":{"coordinates":[-73.91595149999999,40.8398945],"type":"Point"},"name":"Caridad Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055dd8"},"location":{"coordinates":[-74.0080866,40.7103049],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb055dd9"},"location":{"coordinates":[-73.91305539999999,40.7008664],"type":"Point"},"name":"Misueno Mexican Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055dda"},"location":{"coordinates":[-73.9443628,40.7461408],"type":"Point"},"name":"Sage General Store"} +,{"_id":{"$oid":"55cba2476c522cafdb055ddb"},"location":{"coordinates":[-73.957399,40.713201],"type":"Point"},"name":"Caracas Arepa Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb055ddc"},"location":{"coordinates":[-73.9110546,40.6698363],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb055ddd"},"location":{"coordinates":[-73.8437579,40.862512],"type":"Point"},"name":"Rich Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055dde"},"location":{"coordinates":[-73.8795633,40.8818675],"type":"Point"},"name":"Mario'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb055ddf"},"location":{"coordinates":[-73.95674989999999,40.7146397],"type":"Point"},"name":"Oslo Coffee Roasters"} +,{"_id":{"$oid":"55cba2476c522cafdb055de0"},"location":{"coordinates":[-73.9799597,40.7494442],"type":"Point"},"name":"Smorgas Chef At Scandinavia House"} +,{"_id":{"$oid":"55cba2476c522cafdb055de1"},"location":{"coordinates":[-73.9664835,40.7537954],"type":"Point"},"name":"Beekman Bar \u0026 Books"} +,{"_id":{"$oid":"55cba2476c522cafdb055de2"},"location":{"coordinates":[-73.9624161,40.7131783],"type":"Point"},"name":"Oslo Coffee Roasters"} +,{"_id":{"$oid":"55cba2476c522cafdb055de3"},"location":{"coordinates":[-73.984167,40.755278],"type":"Point"},"name":"Akin Gump"} +,{"_id":{"$oid":"55cba2476c522cafdb055de4"},"location":{"coordinates":[-92.7159738,41.7462156],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb055de5"},"location":{"coordinates":[-73.8735835,40.823093],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb055de6"},"location":{"coordinates":[-73.9194949,40.8684152],"type":"Point"},"name":"Grandpa'S Brick Oven Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb055de7"},"location":{"coordinates":[-73.975545,40.635592],"type":"Point"},"name":"Green City Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055de8"},"location":{"coordinates":[-73.987616,40.687696],"type":"Point"},"name":"Clover'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055de9"},"location":{"coordinates":[0.5595998999999999,51.3940452],"type":"Point"},"name":"Pier Side Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055dea"},"location":{"coordinates":[-73.9323934,40.8516574],"type":"Point"},"name":"New Star Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055deb"},"location":{"coordinates":[-73.9736794,40.752446],"type":"Point"},"name":"Boi Sandwich"} +,{"_id":{"$oid":"55cba2476c522cafdb055dec"},"location":{"coordinates":[-73.7472552,40.7158529],"type":"Point"},"name":"Le Bon Pain"} +,{"_id":{"$oid":"55cba2476c522cafdb055ded"},"location":{"coordinates":[-73.9815232,40.6890961],"type":"Point"},"name":"Mr. Fulton"} +,{"_id":{"$oid":"55cba2476c522cafdb055dee"},"location":{"coordinates":[-73.98257559999999,40.6652644],"type":"Point"},"name":"Brookvin"} +,{"_id":{"$oid":"55cba2476c522cafdb055def"},"location":{"coordinates":[-73.8037169,40.7085979],"type":"Point"},"name":"Moon Tikka Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb055df0"},"location":{"coordinates":[-73.85050199999999,40.8285333],"type":"Point"},"name":"New Soul Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055df1"},"location":{"coordinates":[-73.9544587,40.77461419999999],"type":"Point"},"name":"Yuka Japanese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055df2"},"location":{"coordinates":[-73.9939366,40.7468282],"type":"Point"},"name":"Fashion Institute Of Technology David Dubinsky Student Center"} +,{"_id":{"$oid":"55cba2476c522cafdb055df3"},"location":{"coordinates":[-74.02369399999999,40.635008],"type":"Point"},"name":"Sunny Sweet Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb055df4"},"location":{"coordinates":[-73.9177313,40.8066963],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb055df5"},"location":{"coordinates":[-73.95071659999999,40.6630247],"type":"Point"},"name":"Hammond'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055df6"},"location":{"coordinates":[-74.0319832,40.62172899999999],"type":"Point"},"name":"Trace"} +,{"_id":{"$oid":"55cba2476c522cafdb055df7"},"location":{"coordinates":[-74.0098493,40.7144571],"type":"Point"},"name":"Palermo Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb055df8"},"location":{"coordinates":[-73.927897,40.811183],"type":"Point"},"name":"Oze Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb055df9"},"location":{"coordinates":[-73.95161600000002,40.810845],"type":"Point"},"name":"The Jackpot Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055dfa"},"location":{"coordinates":[-73.865056,40.7674092],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb055dfb"},"location":{"coordinates":[-73.8226285,40.7162035],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb055dfc"},"location":{"coordinates":[-92.71572289999999,41.7461852],"type":"Point"},"name":"Angela'S Rock And Roll Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb055dfd"},"location":{"coordinates":[-73.8658916,40.8207546],"type":"Point"},"name":"Boruchiano Pizza Restaurano"} +,{"_id":{"$oid":"55cba2476c522cafdb055dfe"},"location":{"coordinates":[-73.8096693,40.8719436],"type":"Point"},"name":"Pehlam Bay And Split Rock Golf Course"} +,{"_id":{"$oid":"55cba2476c522cafdb055dff"},"location":{"coordinates":[-73.9050353,40.8499908],"type":"Point"},"name":"Don Villa Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb055e00"},"location":{"coordinates":[-73.98710100000001,40.747578],"type":"Point"},"name":"Gagopa Music Studio"} +,{"_id":{"$oid":"55cba2476c522cafdb055e01"},"location":{"coordinates":[-73.8194893,40.70227089999999],"type":"Point"},"name":"Hermes Billiards \u0026 Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055e02"},"location":{"coordinates":[-73.9813163,40.7027449],"type":"Point"},"name":"Vinegar Hill House"} +,{"_id":{"$oid":"55cba2476c522cafdb055e03"},"location":{"coordinates":[-74.002993,40.743826],"type":"Point"},"name":"Gotham Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb055e04"},"location":{"coordinates":[-73.9780339,40.765308],"type":"Point"},"name":"Seasonal Restaurant \u0026 Wine Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb055e05"},"location":{"coordinates":[-73.8510158,40.8342588],"type":"Point"},"name":"National Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb055e06"},"location":{"coordinates":[-73.9853112,40.6864689],"type":"Point"},"name":"Building On Bond"} +,{"_id":{"$oid":"55cba2476c522cafdb055e07"},"location":{"coordinates":[-73.9549059,40.778023],"type":"Point"},"name":"Lili'S Asian Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb055e08"},"location":{"coordinates":[-73.9836452,40.7273973],"type":"Point"},"name":"Dirt Candy"} +,{"_id":{"$oid":"55cba2476c522cafdb055e09"},"location":{"coordinates":[-73.9527389,40.745801],"type":"Point"},"name":"Manducatis Rustica Vig"} +,{"_id":{"$oid":"55cba2476c522cafdb055e0a"},"location":{"coordinates":[-73.8486061,40.8228332],"type":"Point"},"name":"Frank'S Pizza Italia"} +,{"_id":{"$oid":"55cba2476c522cafdb055e0b"},"location":{"coordinates":[-73.9899243,40.687922],"type":"Point"},"name":"Wild Ginger Vegan Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055e0c"},"location":{"coordinates":[-73.95150749999999,40.6504644],"type":"Point"},"name":"Bai Li Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055e0d"},"location":{"coordinates":[-73.99322599999999,40.66181],"type":"Point"},"name":"Laurentino'S Pasticceria \u0026 Caffe"} +,{"_id":{"$oid":"55cba2476c522cafdb055e0e"},"location":{"coordinates":[-73.9775087,40.6896725],"type":"Point"},"name":"Luv-N-Oven Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb055e0f"},"location":{"coordinates":[-73.73554349999999,40.6738568],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb055e10"},"location":{"coordinates":[-73.97705599999999,40.752998],"type":"Point"},"name":"Feng Shui Chinese Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb055e11"},"location":{"coordinates":[-73.9089097,40.76347200000001],"type":"Point"},"name":"Pronto Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb055e12"},"location":{"coordinates":[-74.0007342,40.7417767],"type":"Point"},"name":"Silom Thai"} +,{"_id":{"$oid":"55cba2476c522cafdb055e13"},"location":{"coordinates":[-73.9919802,40.7535985],"type":"Point"},"name":"Houndstooth Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb055e14"},"location":{"coordinates":[-73.9571141,40.7182025],"type":"Point"},"name":"Pop'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055e15"},"location":{"coordinates":[-73.8880444,40.8536935],"type":"Point"},"name":"Arthur Avenue Caters"} +,{"_id":{"$oid":"55cba2476c522cafdb055e16"},"location":{"coordinates":[-74.085013,40.5966165],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb055e17"},"location":{"coordinates":[-73.982286,40.6585982],"type":"Point"},"name":"Sushi Yama"} +,{"_id":{"$oid":"55cba2476c522cafdb055e18"},"location":{"coordinates":[-73.8596079,40.6805919],"type":"Point"},"name":"Mexican Cafe \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055e19"},"location":{"coordinates":[-73.98944829999999,40.7697436],"type":"Point"},"name":"International Flavors \u0026 Fragrances"} +,{"_id":{"$oid":"55cba2476c522cafdb055e1a"},"location":{"coordinates":[-74.012411,40.646209],"type":"Point"},"name":"Deli \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb055e1b"},"location":{"coordinates":[-73.9852995,40.7362884],"type":"Point"},"name":"Ponty Bistro"} +,{"_id":{"$oid":"55cba2476c522cafdb055e1c"},"location":{"coordinates":[-73.947857,40.7897265],"type":"Point"},"name":"Moustache"} +,{"_id":{"$oid":"55cba2476c522cafdb055e1d"},"location":{"coordinates":[-73.97901999999999,40.642403],"type":"Point"},"name":"Sugandha Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055e1e"},"location":{"coordinates":[-73.9377116,40.6822069],"type":"Point"},"name":"Brown Sugar"} +,{"_id":{"$oid":"55cba2476c522cafdb055e1f"},"location":{"coordinates":[-73.87011,40.684019],"type":"Point"},"name":"Green Pastures Health And Nutrition"} +,{"_id":{"$oid":"55cba2476c522cafdb055e20"},"location":{"coordinates":[-73.97535529999999,40.7591678],"type":"Point"},"name":"Isadora'S Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055e21"},"location":{"coordinates":[-73.919467,40.668161],"type":"Point"},"name":"Shun Li Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055e22"},"location":{"coordinates":[-73.8791981,40.8755014],"type":"Point"},"name":"Dragon Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb055e23"},"location":{"coordinates":[-73.8240409,40.8287308],"type":"Point"},"name":"Cestra'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb055e24"},"location":{"coordinates":[-73.9899143,40.7562054],"type":"Point"},"name":"Dean \u0026 Deluca"} +,{"_id":{"$oid":"55cba2476c522cafdb055e25"},"location":{"coordinates":[-73.990556,40.749722],"type":"Point"},"name":"Local Cafe \u0026 Cocktails"} +,{"_id":{"$oid":"55cba2476c522cafdb055e26"},"location":{"coordinates":[-73.91274419999999,40.8386145],"type":"Point"},"name":"Great Wall"} +,{"_id":{"$oid":"55cba2476c522cafdb055e27"},"location":{"coordinates":[-73.9298338,40.6854905],"type":"Point"},"name":"Ho Mei Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055e28"},"location":{"coordinates":[-73.8498595,40.6941475],"type":"Point"},"name":"New Dumpling House"} +,{"_id":{"$oid":"55cba2476c522cafdb055e29"},"location":{"coordinates":[-73.8377088,40.7660906],"type":"Point"},"name":"Fairfield Inn"} +,{"_id":{"$oid":"55cba2476c522cafdb055e2a"},"location":{"coordinates":[-73.8425625,40.68089],"type":"Point"},"name":"Peking House"} +,{"_id":{"$oid":"55cba2476c522cafdb055e2b"},"location":{"coordinates":[-73.73954839999999,40.69519469999999],"type":"Point"},"name":"Little Rabbit Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055e2c"},"location":{"coordinates":[-73.9841306,40.7265113],"type":"Point"},"name":"Butter Lane"} +,{"_id":{"$oid":"55cba2476c522cafdb055e2d"},"location":{"coordinates":[-73.9703093,40.7575104],"type":"Point"},"name":"Asian Station Bistro"} +,{"_id":{"$oid":"55cba2476c522cafdb055e2e"},"location":{"coordinates":[-73.913034,40.657017],"type":"Point"},"name":"Miguel'S Jamaican West Indian Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055e2f"},"location":{"coordinates":[-73.899749,40.858625],"type":"Point"},"name":"Las Palomas Mexican Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055e30"},"location":{"coordinates":[-73.8976112,40.8604708],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb055e31"},"location":{"coordinates":[-73.974639,40.788749],"type":"Point"},"name":"B Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055e32"},"location":{"coordinates":[-73.9221392,40.8090965],"type":"Point"},"name":"La Fiesta Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055e33"},"location":{"coordinates":[-73.80326389999999,40.6745366],"type":"Point"},"name":"Chop Chop Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb055e34"},"location":{"coordinates":[-73.93948920000001,40.7072521],"type":"Point"},"name":"Boulevard Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055e35"},"location":{"coordinates":[-73.87327719999999,40.878589],"type":"Point"},"name":"China One Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055e36"},"location":{"coordinates":[-73.969549,40.758023],"type":"Point"},"name":"Pret A Manger"} +,{"_id":{"$oid":"55cba2476c522cafdb055e37"},"location":{"coordinates":[-73.95235500000001,40.59953],"type":"Point"},"name":"Trio Pizza Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb055e38"},"location":{"coordinates":[-73.942256,40.6053462],"type":"Point"},"name":"Charles' Ale House"} +,{"_id":{"$oid":"55cba2476c522cafdb055e39"},"location":{"coordinates":[-73.939566,40.798104],"type":"Point"},"name":"Don Paco Lopez Panaderia"} +,{"_id":{"$oid":"55cba2476c522cafdb055e3a"},"location":{"coordinates":[-73.9876797,40.6908347],"type":"Point"},"name":"Smith Food Express"} +,{"_id":{"$oid":"55cba2476c522cafdb055e3b"},"location":{"coordinates":[-73.990697,40.7269016],"type":"Point"},"name":"Bond Street Chocolate"} +,{"_id":{"$oid":"55cba2476c522cafdb055e3c"},"location":{"coordinates":[-73.99039549999999,40.7445435],"type":"Point"},"name":"The Hog Pit New York City"} +,{"_id":{"$oid":"55cba2476c522cafdb055e3d"},"location":{"coordinates":[-73.989431,40.76336999999999],"type":"Point"},"name":"Gossips"} +,{"_id":{"$oid":"55cba2476c522cafdb055e3e"},"location":{"coordinates":[-73.85591649999999,40.7856434],"type":"Point"},"name":"Benateri'S At Edgewater"} +,{"_id":{"$oid":"55cba2476c522cafdb055e3f"},"location":{"coordinates":[-73.904067,40.8581106],"type":"Point"},"name":"Running Cool Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055e40"},"location":{"coordinates":[-73.9155617,40.76084970000001],"type":"Point"},"name":"Diwine"} +,{"_id":{"$oid":"55cba2476c522cafdb055e41"},"location":{"coordinates":[-74.02347879999999,40.63405909999999],"type":"Point"},"name":"Eddie'S Hero Place"} +,{"_id":{"$oid":"55cba2476c522cafdb055e42"},"location":{"coordinates":[-73.88752079999999,40.8558597],"type":"Point"},"name":"Ann \u0026 Tony'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055e43"},"location":{"coordinates":[-74.00318,40.734035],"type":"Point"},"name":"Wilfie \u0026 Nell"} +,{"_id":{"$oid":"55cba2476c522cafdb055e44"},"location":{"coordinates":[-73.9549694,40.7095108],"type":"Point"},"name":"Zeff'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb055e45"},"location":{"coordinates":[-73.9791676,40.762358],"type":"Point"},"name":"Hilton New York Hilton Banquet Hall"} +,{"_id":{"$oid":"55cba2476c522cafdb055e46"},"location":{"coordinates":[-73.9791676,40.762358],"type":"Point"},"name":"Hilton New York Main Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb055e47"},"location":{"coordinates":[-73.9791676,40.762358],"type":"Point"},"name":"Hilton Employee Cafeteria"} +,{"_id":{"$oid":"55cba2476c522cafdb055e48"},"location":{"coordinates":[-73.9791676,40.762358],"type":"Point"},"name":"Herb'N Kitchen \u0026 Lobby Lounge @ Hilton Hotel"} +,{"_id":{"$oid":"55cba2476c522cafdb055e49"},"location":{"coordinates":[-73.96464499999999,40.801321],"type":"Point"},"name":"Wondee Siam V"} +,{"_id":{"$oid":"55cba2476c522cafdb055e4a"},"location":{"coordinates":[-73.9098486,40.6698094],"type":"Point"},"name":"Shun Fat Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb055e4b"},"location":{"coordinates":[-73.87680619999999,40.7379944],"type":"Point"},"name":"Java Village"} +,{"_id":{"$oid":"55cba2476c522cafdb055e4c"},"location":{"coordinates":[-74.0122865,40.7166708],"type":"Point"},"name":"Palm Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055e4d"},"location":{"coordinates":[-73.968071,40.757405],"type":"Point"},"name":"Cello Wine Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb055e4e"},"location":{"coordinates":[-73.96807199999999,40.763248],"type":"Point"},"name":"Le Veau Dor"} +,{"_id":{"$oid":"55cba2476c522cafdb055e4f"},"location":{"coordinates":[-73.849684,40.710483],"type":"Point"},"name":"Katsuno"} +,{"_id":{"$oid":"55cba2476c522cafdb055e50"},"location":{"coordinates":[-74.002191,40.7076992],"type":"Point"},"name":"Made Fresh Daily"} +,{"_id":{"$oid":"55cba2476c522cafdb055e51"},"location":{"coordinates":[-73.9812576,40.7422991],"type":"Point"},"name":"Momokawa"} +,{"_id":{"$oid":"55cba2476c522cafdb055e52"},"location":{"coordinates":[-73.95049080000001,40.7799956],"type":"Point"},"name":"Libertador"} +,{"_id":{"$oid":"55cba2476c522cafdb055e53"},"location":{"coordinates":[-73.99904389999999,40.7296008],"type":"Point"},"name":"Zinc"} +,{"_id":{"$oid":"55cba2476c522cafdb055e54"},"location":{"coordinates":[-73.880555,40.765307],"type":"Point"},"name":"Kantara Lounge - Zumbale"} +,{"_id":{"$oid":"55cba2476c522cafdb055e55"},"location":{"coordinates":[-73.9583885,40.647015],"type":"Point"},"name":"Golden Krust Caribbean Bakery \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb055e56"},"location":{"coordinates":[-73.9847403,40.72001540000001],"type":"Point"},"name":"Donnybrook"} +,{"_id":{"$oid":"55cba2476c522cafdb055e57"},"location":{"coordinates":[-73.9547152,40.7148875],"type":"Point"},"name":"Pates \u0026 Traditions"} +,{"_id":{"$oid":"55cba2476c522cafdb055e58"},"location":{"coordinates":[-73.9914454,40.7137231],"type":"Point"},"name":"Carol'S Bun"} +,{"_id":{"$oid":"55cba2476c522cafdb055e59"},"location":{"coordinates":[-73.9014244,40.7028719],"type":"Point"},"name":"New Wan'S Garden Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055e5a"},"location":{"coordinates":[-73.98070729999999,40.7792892],"type":"Point"},"name":"Salumeria Rossi Parmacotto"} +,{"_id":{"$oid":"55cba2476c522cafdb055e5b"},"location":{"coordinates":[-73.9989458,40.6453849],"type":"Point"},"name":"New Kim Wei Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb055e5c"},"location":{"coordinates":[-73.9965502,40.7530589],"type":"Point"},"name":"Ming'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055e5d"},"location":{"coordinates":[-73.96166769999999,40.7990538],"type":"Point"},"name":"Ichie"} +,{"_id":{"$oid":"55cba2476c522cafdb055e5e"},"location":{"coordinates":[-73.9718097,40.7550153],"type":"Point"},"name":"Aperitivo Pizza Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb055e5f"},"location":{"coordinates":[-73.94399419999999,40.8014702],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb055e60"},"location":{"coordinates":[-73.97768099999999,40.745241],"type":"Point"},"name":"Talent Thai Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb055e61"},"location":{"coordinates":[-73.839418,40.880996],"type":"Point"},"name":"The Original Blue Cantina"} +,{"_id":{"$oid":"55cba2476c522cafdb055e62"},"location":{"coordinates":[-74.1620167,40.60427670000001],"type":"Point"},"name":"Z-One Diner \u0026 Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb055e63"},"location":{"coordinates":[-73.9394658,40.7065248],"type":"Point"},"name":"Note Thai"} +,{"_id":{"$oid":"55cba2476c522cafdb055e64"},"location":{"coordinates":[-73.9736269,40.6085101],"type":"Point"},"name":"Puebla Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055e65"},"location":{"coordinates":[-73.97076400000002,40.7513239],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb055e66"},"location":{"coordinates":[-73.9309131,40.6670139],"type":"Point"},"name":"Silver Krust"} +,{"_id":{"$oid":"55cba2476c522cafdb055e67"},"location":{"coordinates":[-73.98828689999999,40.7380304],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb055e68"},"location":{"coordinates":[-74.000664,40.7301659],"type":"Point"},"name":"Cafe Wha?"} +,{"_id":{"$oid":"55cba2476c522cafdb055e69"},"location":{"coordinates":[-73.8782908,40.8731526],"type":"Point"},"name":"No. 1 Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055e6a"},"location":{"coordinates":[-73.919838,40.864992],"type":"Point"},"name":"John'S Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb055e6b"},"location":{"coordinates":[-74.1778964,40.6266008],"type":"Point"},"name":"Bootleg Mannings"} +,{"_id":{"$oid":"55cba2476c522cafdb055e6c"},"location":{"coordinates":[-73.8170493,40.7073949],"type":"Point"},"name":"Maxim Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb055e6d"},"location":{"coordinates":[-73.9591525,40.653453],"type":"Point"},"name":"Melany Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055e6e"},"location":{"coordinates":[-73.968068,40.753299],"type":"Point"},"name":"Elite Food Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb055e6f"},"location":{"coordinates":[-73.9578109,40.7088301],"type":"Point"},"name":"Duff'S Brooklyn"} +,{"_id":{"$oid":"55cba2476c522cafdb055e70"},"location":{"coordinates":[-73.8687032,40.76211139999999],"type":"Point"},"name":"Lucky'S Queens"} +,{"_id":{"$oid":"55cba2476c522cafdb055e71"},"location":{"coordinates":[-73.7732527,40.7671961],"type":"Point"},"name":"Domino'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb055e72"},"location":{"coordinates":[-73.8141179,40.69685399999999],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb055e73"},"location":{"coordinates":[-73.9814504,40.7292422],"type":"Point"},"name":"Ost Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055e74"},"location":{"coordinates":[-73.9506833,40.71425540000001],"type":"Point"},"name":"M Noodle Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb055e75"},"location":{"coordinates":[-92.72975029999999,41.7461467],"type":"Point"},"name":"Dunkin' Donuts, Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb055e76"},"location":{"coordinates":[-73.9862328,40.7468189],"type":"Point"},"name":"Dunkin' Donuts, Baskin Robbins, Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb055e77"},"location":{"coordinates":[-73.83414909999999,40.76969589999999],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb055e78"},"location":{"coordinates":[-89.11404449999999,41.5539019],"type":"Point"},"name":"Fresh\u0026Co"} +,{"_id":{"$oid":"55cba2476c522cafdb055e79"},"location":{"coordinates":[-73.99543899999999,40.717846],"type":"Point"},"name":"New Tu Do Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055e7a"},"location":{"coordinates":[-73.9865658,40.6770515],"type":"Point"},"name":"Choice Cooking Company"} +,{"_id":{"$oid":"55cba2476c522cafdb055e7b"},"location":{"coordinates":[-73.98097039999999,40.6423493],"type":"Point"},"name":"Cemi Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055e7c"},"location":{"coordinates":[-73.9580297,40.7418841],"type":"Point"},"name":"Fresh Direct Cafeteria"} +,{"_id":{"$oid":"55cba2476c522cafdb055e7d"},"location":{"coordinates":[-74.0240772,40.6265381],"type":"Point"},"name":"Skinflints Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055e7e"},"location":{"coordinates":[-73.99736399999999,40.761555],"type":"Point"},"name":"Market Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb055e7f"},"location":{"coordinates":[-73.8316865,40.7149783],"type":"Point"},"name":"Primadonna Ristorante Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb055e80"},"location":{"coordinates":[-73.8487918,40.7322432],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb055e81"},"location":{"coordinates":[-73.9696816,40.60468840000001],"type":"Point"},"name":"Siena"} +,{"_id":{"$oid":"55cba2476c522cafdb055e82"},"location":{"coordinates":[-73.913454,40.635042],"type":"Point"},"name":"Peaceful Take Out Chinese Food"} +,{"_id":{"$oid":"55cba2476c522cafdb055e83"},"location":{"coordinates":[-73.9927639,40.717627],"type":"Point"},"name":"Pho Grand"} +,{"_id":{"$oid":"55cba2476c522cafdb055e84"},"location":{"coordinates":[-73.975703,40.686565],"type":"Point"},"name":"Deniz Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055e85"},"location":{"coordinates":[-73.9247932,40.86211429999999],"type":"Point"},"name":"Cachapas Y Mas"} +,{"_id":{"$oid":"55cba2476c522cafdb055e86"},"location":{"coordinates":[-73.8196363,40.677519],"type":"Point"},"name":"Gt Mobay"} +,{"_id":{"$oid":"55cba2476c522cafdb055e87"},"location":{"coordinates":[-74.0011966,40.7191558],"type":"Point"},"name":"Burger King"} +,{"_id":{"$oid":"55cba2476c522cafdb055e88"},"location":{"coordinates":[-73.9782714,40.7554338],"type":"Point"},"name":"Orens Daily Roast Coffees \u0026 Teas"} +,{"_id":{"$oid":"55cba2476c522cafdb055e89"},"location":{"coordinates":[-73.9811442,40.7288533],"type":"Point"},"name":"Au Za'Atar"} +,{"_id":{"$oid":"55cba2476c522cafdb055e8a"},"location":{"coordinates":[-73.96526519999999,40.6243374],"type":"Point"},"name":"Sushi Tokyo"} +,{"_id":{"$oid":"55cba2476c522cafdb055e8b"},"location":{"coordinates":[-73.99290780000001,40.7167328],"type":"Point"},"name":"Hua Du Dumpling Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb055e8c"},"location":{"coordinates":[-73.965234,40.758652],"type":"Point"},"name":"Umi Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb055e8d"},"location":{"coordinates":[-73.96558499999999,40.800037],"type":"Point"},"name":"Curry \u0026 Kabab"} +,{"_id":{"$oid":"55cba2476c522cafdb055e8e"},"location":{"coordinates":[-73.9293732,40.6186072],"type":"Point"},"name":"Spring Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb055e8f"},"location":{"coordinates":[-73.98870269999999,40.7684741],"type":"Point"},"name":"Hanci Turkish Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb055e90"},"location":{"coordinates":[-73.9008939,40.82277699999999],"type":"Point"},"name":"Nilda'S Sport Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb055e91"},"location":{"coordinates":[-73.9963219,40.5976664],"type":"Point"},"name":"Double Happy Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055e92"},"location":{"coordinates":[-73.982198,40.73236600000001],"type":"Point"},"name":"Bagel Boss"} +,{"_id":{"$oid":"55cba2476c522cafdb055e93"},"location":{"coordinates":[-74.1660553,40.5823983],"type":"Point"},"name":"Auntie Anne'S Pretzels"} +,{"_id":{"$oid":"55cba2476c522cafdb055e94"},"location":{"coordinates":[-74.1660553,40.5823983],"type":"Point"},"name":"Auntie Anne'S Pretzels"} +,{"_id":{"$oid":"55cba2476c522cafdb055e95"},"location":{"coordinates":[-73.9031696,40.8153203],"type":"Point"},"name":"L. Quisqueya Bar Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055e96"},"location":{"coordinates":[-73.9507327,40.5996613],"type":"Point"},"name":"Ming'S Place"} +,{"_id":{"$oid":"55cba2476c522cafdb055e97"},"location":{"coordinates":[-73.9811304,40.7247642],"type":"Point"},"name":"Paradiso Ny"} +,{"_id":{"$oid":"55cba2476c522cafdb055e98"},"location":{"coordinates":[-73.9812437,40.7821545],"type":"Point"},"name":"Beard Papa'S Cream Puffs"} +,{"_id":{"$oid":"55cba2476c522cafdb055e99"},"location":{"coordinates":[-73.9922838,40.7593804],"type":"Point"},"name":"Chimichurri Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb055e9a"},"location":{"coordinates":[-73.933114,40.67043899999999],"type":"Point"},"name":"John'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055e9b"},"location":{"coordinates":[-73.8933732,40.7476878],"type":"Point"},"name":"Dera Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055e9c"},"location":{"coordinates":[-73.8920522,40.7281173],"type":"Point"},"name":"Maspeth Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb055e9d"},"location":{"coordinates":[-73.8797091,40.8333888],"type":"Point"},"name":"H.J.M. Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb055e9e"},"location":{"coordinates":[-74.01099169999999,40.7151804],"type":"Point"},"name":"Kaffe 1668"} +,{"_id":{"$oid":"55cba2476c522cafdb055e9f"},"location":{"coordinates":[-73.85789059999999,40.7282646],"type":"Point"},"name":"Sveta'S House"} +,{"_id":{"$oid":"55cba2476c522cafdb055ea0"},"location":{"coordinates":[-73.83105499999999,40.888622],"type":"Point"},"name":"Mario'S Italian Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb055ea1"},"location":{"coordinates":[-73.9836785,40.7433948],"type":"Point"},"name":"Fika"} +,{"_id":{"$oid":"55cba2476c522cafdb055ea2"},"location":{"coordinates":[-74.0018201,40.7326793],"type":"Point"},"name":"Patisserie Claude"} +,{"_id":{"$oid":"55cba2476c522cafdb055ea3"},"location":{"coordinates":[-73.9916637,40.7184537],"type":"Point"},"name":"Good Taste Fuzhou Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb055ea4"},"location":{"coordinates":[-73.97411749999999,40.7541096],"type":"Point"},"name":"At Vermilion"} +,{"_id":{"$oid":"55cba2476c522cafdb055ea5"},"location":{"coordinates":[-73.9044626,40.8521811],"type":"Point"},"name":"La Esperanza Mexican Deli Grocery \u0026 Vegetables"} +,{"_id":{"$oid":"55cba2476c522cafdb055ea6"},"location":{"coordinates":[-73.8842834,40.7559201],"type":"Point"},"name":"Seba-Seba Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb055ea7"},"location":{"coordinates":[-73.980159,40.728841],"type":"Point"},"name":"Ciao For Now"} +,{"_id":{"$oid":"55cba2476c522cafdb055ea8"},"location":{"coordinates":[-73.99572189999999,40.75339710000001],"type":"Point"},"name":"Alpha Fusion"} +,{"_id":{"$oid":"55cba2476c522cafdb055ea9"},"location":{"coordinates":[-73.91572230000001,40.713496],"type":"Point"},"name":"The Maspeth Ale House"} +,{"_id":{"$oid":"55cba2476c522cafdb055eaa"},"location":{"coordinates":[-73.995513,40.713818],"type":"Point"},"name":"Happy Garden Palace"} +,{"_id":{"$oid":"55cba2476c522cafdb055eab"},"location":{"coordinates":[-73.8195068,40.750685],"type":"Point"},"name":"Fukuoka Shabu Shabu"} +,{"_id":{"$oid":"55cba2476c522cafdb055eac"},"location":{"coordinates":[-73.9484425,40.7956801],"type":"Point"},"name":"Wimpys Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055ead"},"location":{"coordinates":[-74.0115805,40.6367354],"type":"Point"},"name":"Wei Mei Xian"} +,{"_id":{"$oid":"55cba2476c522cafdb055eae"},"location":{"coordinates":[-73.9808575,40.7513248],"type":"Point"},"name":"Chipotle Mexican Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb055eaf"},"location":{"coordinates":[-73.9850622,40.73992550000001],"type":"Point"},"name":"Chipotle Mexican Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb055eb0"},"location":{"coordinates":[-73.9831495,40.6733263],"type":"Point"},"name":"Baluchi'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055eb1"},"location":{"coordinates":[-73.77138099999999,40.764961],"type":"Point"},"name":"Fino"} +,{"_id":{"$oid":"55cba2476c522cafdb055eb2"},"location":{"coordinates":[-73.968242,40.6800809],"type":"Point"},"name":"Cataldo'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055eb3"},"location":{"coordinates":[-73.86405669999999,40.7499276],"type":"Point"},"name":"Cafe Con Leche"} +,{"_id":{"$oid":"55cba2476c522cafdb055eb4"},"location":{"coordinates":[-73.9830374,40.760636],"type":"Point"},"name":"Barclays Capital Executive Dining Room"} +,{"_id":{"$oid":"55cba2476c522cafdb055eb5"},"location":{"coordinates":[-73.9990196,40.71516400000001],"type":"Point"},"name":"Golden Fung Wong Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb055eb6"},"location":{"coordinates":[-73.9381909,40.8478309],"type":"Point"},"name":"Floridita Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb055eb7"},"location":{"coordinates":[-74.16456629999999,40.5896299],"type":"Point"},"name":"Holy Schnitzel"} +,{"_id":{"$oid":"55cba2476c522cafdb055eb8"},"location":{"coordinates":[-73.854548,40.710795],"type":"Point"},"name":"Il Poeta"} +,{"_id":{"$oid":"55cba2476c522cafdb055eb9"},"location":{"coordinates":[-73.87892219999999,40.8339606],"type":"Point"},"name":"Deiline'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055eba"},"location":{"coordinates":[-73.924184,40.68904],"type":"Point"},"name":"Maddy'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055ebb"},"location":{"coordinates":[-73.8876277,40.7433911],"type":"Point"},"name":"Ayada Thai Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055ebc"},"location":{"coordinates":[-73.92826699999999,40.70244599999999],"type":"Point"},"name":"L.A. Burrito"} +,{"_id":{"$oid":"55cba2476c522cafdb055ebd"},"location":{"coordinates":[-73.9033658,40.8100076],"type":"Point"},"name":"Hero Factory"} +,{"_id":{"$oid":"55cba2476c522cafdb055ebe"},"location":{"coordinates":[-73.85551319999999,40.7516666],"type":"Point"},"name":"Carmelitas Billards"} +,{"_id":{"$oid":"55cba2476c522cafdb055ebf"},"location":{"coordinates":[-73.95645499999999,40.7168004],"type":"Point"},"name":"El Almacen"} +,{"_id":{"$oid":"55cba2476c522cafdb055ec0"},"location":{"coordinates":[-74.0073429,40.7432177],"type":"Point"},"name":"Chelsea Thai"} +,{"_id":{"$oid":"55cba2476c522cafdb055ec1"},"location":{"coordinates":[-73.8038555,40.7627062],"type":"Point"},"name":"Sik Gaek Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb055ec2"},"location":{"coordinates":[-73.9041999,40.7450283],"type":"Point"},"name":"Woodside Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055ec3"},"location":{"coordinates":[-73.9688386,40.759341],"type":"Point"},"name":"Darbar Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb055ec4"},"location":{"coordinates":[-73.9113014,40.7048465],"type":"Point"},"name":"Estrella Del Mar Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055ec5"},"location":{"coordinates":[-74.066594,40.6142619],"type":"Point"},"name":"Rispoli Pastry Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb055ec6"},"location":{"coordinates":[-73.9323659,40.8507301],"type":"Point"},"name":"Punto De Sabor"} +,{"_id":{"$oid":"55cba2476c522cafdb055ec7"},"location":{"coordinates":[-74.1459332,40.6103714],"type":"Point"},"name":"Dileo'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb055ec8"},"location":{"coordinates":[-73.9817971,40.7430435],"type":"Point"},"name":"Curry Express"} +,{"_id":{"$oid":"55cba2476c522cafdb055ec9"},"location":{"coordinates":[-74.0051386,40.7337853],"type":"Point"},"name":"L'Artusi"} +,{"_id":{"$oid":"55cba2476c522cafdb055eca"},"location":{"coordinates":[-73.79058289999999,40.7115437],"type":"Point"},"name":"B.B.Q. Village Palace"} +,{"_id":{"$oid":"55cba2476c522cafdb055ecb"},"location":{"coordinates":[-73.8709519,40.6800865],"type":"Point"},"name":"New Top'S Ii Chinese Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb055ecc"},"location":{"coordinates":[-73.9670659,40.7644704],"type":"Point"},"name":"Fishtail"} +,{"_id":{"$oid":"55cba2476c522cafdb055ecd"},"location":{"coordinates":[-74.164323,40.6267194],"type":"Point"},"name":"White Castle (#66)"} +,{"_id":{"$oid":"55cba2476c522cafdb055ece"},"location":{"coordinates":[-73.9899143,40.7562054],"type":"Point"},"name":"Schnipper'S Quality Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb055ecf"},"location":{"coordinates":[-73.99469479999999,40.7168935],"type":"Point"},"name":"Kang Kee Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055ed0"},"location":{"coordinates":[-74.00367109999999,40.7428878],"type":"Point"},"name":"Stella'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb055ed1"},"location":{"coordinates":[-73.9863822,40.664866],"type":"Point"},"name":"Athena Mediterranean Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb055ed2"},"location":{"coordinates":[-73.9643748,40.6798978],"type":"Point"},"name":"King'S Clam Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb055ed3"},"location":{"coordinates":[-73.9667067,40.5767925],"type":"Point"},"name":"Umi Sushi Japanese Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb055ed4"},"location":{"coordinates":[-74.0007814,40.7300326],"type":"Point"},"name":"Minetta Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb055ed5"},"location":{"coordinates":[-73.8046492,40.76219450000001],"type":"Point"},"name":"Kan Izakaya"} +,{"_id":{"$oid":"55cba2476c522cafdb055ed6"},"location":{"coordinates":[-73.9464663,40.6309895],"type":"Point"},"name":"Applebee'S Neighborhood Grill \u0026 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb055ed7"},"location":{"coordinates":[-73.9238706,40.7442842],"type":"Point"},"name":"Bucharest Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055ed8"},"location":{"coordinates":[-74.2175919,40.554068],"type":"Point"},"name":"Big Nose Kates"} +,{"_id":{"$oid":"55cba2476c522cafdb055ed9"},"location":{"coordinates":[-73.9859314,40.7596325],"type":"Point"},"name":"Edison Ballroom"} +,{"_id":{"$oid":"55cba2476c522cafdb055eda"},"location":{"coordinates":[-74.0005178,40.7471561],"type":"Point"},"name":"Company"} +,{"_id":{"$oid":"55cba2476c522cafdb055edb"},"location":{"coordinates":[-73.8692244,40.7237135],"type":"Point"},"name":"Pollos Mario Woodhaven"} +,{"_id":{"$oid":"55cba2476c522cafdb055edc"},"location":{"coordinates":[-73.83283279999999,40.7600184],"type":"Point"},"name":"Pho Vietnamese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055edd"},"location":{"coordinates":[-73.97197299999999,40.605396],"type":"Point"},"name":"Daddy'S Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055ede"},"location":{"coordinates":[-73.9234638,40.7441008],"type":"Point"},"name":"Arriba Arriba"} +,{"_id":{"$oid":"55cba2476c522cafdb055edf"},"location":{"coordinates":[-89.263076,40.3106564],"type":"Point"},"name":"Mi Casa Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb055ee0"},"location":{"coordinates":[-73.9967602,40.7157062],"type":"Point"},"name":"Sunshine 27 Seafood Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055ee1"},"location":{"coordinates":[-74.0116111,40.6360525],"type":"Point"},"name":"Dc Ktv"} +,{"_id":{"$oid":"55cba2476c522cafdb055ee2"},"location":{"coordinates":[-73.8839648,40.8673063],"type":"Point"},"name":"Mr Pancho Taco Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb055ee3"},"location":{"coordinates":[-73.98451399999999,40.747948],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055ee4"},"location":{"coordinates":[-73.844652,40.849275],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055ee5"},"location":{"coordinates":[-73.94689009999999,40.7252429],"type":"Point"},"name":"Jaslowiczanka Polish Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb055ee6"},"location":{"coordinates":[-73.9735768,40.7535323],"type":"Point"},"name":"Udon West"} +,{"_id":{"$oid":"55cba2476c522cafdb055ee7"},"location":{"coordinates":[-73.7952062,40.7581643],"type":"Point"},"name":"Carvel Ice Cream"} +,{"_id":{"$oid":"55cba2476c522cafdb055ee8"},"location":{"coordinates":[-73.7344411,40.772295],"type":"Point"},"name":"Red Lotus Bakery \u0026 Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055ee9"},"location":{"coordinates":[-73.7895186,40.7698624],"type":"Point"},"name":"Great Wall Bayside"} +,{"_id":{"$oid":"55cba2476c522cafdb055eea"},"location":{"coordinates":[-73.98669869999999,40.74500219999999],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb055eeb"},"location":{"coordinates":[-73.8833054,40.8804376],"type":"Point"},"name":"El Presidente # 2 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055eec"},"location":{"coordinates":[-73.9627089,40.6354749],"type":"Point"},"name":"Don Burrito Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055eed"},"location":{"coordinates":[-74.0057437,40.629116],"type":"Point"},"name":"Mama Rao'S Restaurant \u0026 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb055eee"},"location":{"coordinates":[-73.927454,40.818949],"type":"Point"},"name":"Burger King"} +,{"_id":{"$oid":"55cba2476c522cafdb055eef"},"location":{"coordinates":[-73.927454,40.818949],"type":"Point"},"name":"Popeyes Chicken \u0026 Biscuits"} +,{"_id":{"$oid":"55cba2476c522cafdb055ef0"},"location":{"coordinates":[-73.94717849999999,40.7963427],"type":"Point"},"name":"Steak \u0026 Hoagies"} +,{"_id":{"$oid":"55cba2476c522cafdb055ef1"},"location":{"coordinates":[-73.9438724,40.8207066],"type":"Point"},"name":"Mama Tina'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb055ef2"},"location":{"coordinates":[-74.01321329999999,40.7013064],"type":"Point"},"name":"Whitehall Pretzel \u0026 Ice Cream"} +,{"_id":{"$oid":"55cba2476c522cafdb055ef3"},"location":{"coordinates":[-73.9827085,40.7715082],"type":"Point"},"name":"Ed'S Chowder House"} +,{"_id":{"$oid":"55cba2476c522cafdb055ef4"},"location":{"coordinates":[-74.0156983,40.7072681],"type":"Point"},"name":"Inatesso Pizzabar Casano"} +,{"_id":{"$oid":"55cba2476c522cafdb055ef5"},"location":{"coordinates":[-74.0154227,40.7078824],"type":"Point"},"name":"Inatesso Cafe Casano"} +,{"_id":{"$oid":"55cba2476c522cafdb055ef6"},"location":{"coordinates":[-73.9958123,40.7362477],"type":"Point"},"name":"Da Andrea"} +,{"_id":{"$oid":"55cba2476c522cafdb055ef7"},"location":{"coordinates":[-74.0046784,40.72982409999999],"type":"Point"},"name":"Spunto"} +,{"_id":{"$oid":"55cba2476c522cafdb055ef8"},"location":{"coordinates":[-73.93296910000001,40.7456317],"type":"Point"},"name":"City View Racquet Club"} +,{"_id":{"$oid":"55cba2476c522cafdb055ef9"},"location":{"coordinates":[-73.9871033,40.6919271],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb055efa"},"location":{"coordinates":[-73.9842817,40.7261619],"type":"Point"},"name":"Desnuda"} +,{"_id":{"$oid":"55cba2476c522cafdb055efb"},"location":{"coordinates":[-73.70073839999999,40.7389556],"type":"Point"},"name":"Singa'S Famous Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb055efc"},"location":{"coordinates":[-73.88089599999999,40.756295],"type":"Point"},"name":"Bagel Bagel Nyc"} +,{"_id":{"$oid":"55cba2476c522cafdb055efd"},"location":{"coordinates":[-73.94800219999999,40.6335769],"type":"Point"},"name":"Golden Krust Caribbean Bakery \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb055efe"},"location":{"coordinates":[-73.972785,40.604489],"type":"Point"},"name":"Chorsu Samarkanda"} +,{"_id":{"$oid":"55cba2476c522cafdb055eff"},"location":{"coordinates":[-73.803255,40.6745359],"type":"Point"},"name":"Island Roti Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb055f00"},"location":{"coordinates":[-74.0058459,40.7354254],"type":"Point"},"name":"Wxou Radio"} +,{"_id":{"$oid":"55cba2476c522cafdb055f01"},"location":{"coordinates":[-73.8296275,40.7634108],"type":"Point"},"name":"Hunan House Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055f02"},"location":{"coordinates":[-73.938935,40.7985929],"type":"Point"},"name":"Acquolina Catering"} +,{"_id":{"$oid":"55cba2476c522cafdb055f03"},"location":{"coordinates":[-73.8385435,40.6519195],"type":"Point"},"name":"Mmm...That'S A Wrap"} +,{"_id":{"$oid":"55cba2476c522cafdb055f04"},"location":{"coordinates":[-73.9531148,40.7764372],"type":"Point"},"name":"Hummus Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb055f05"},"location":{"coordinates":[-74.00183729999999,40.7281171],"type":"Point"},"name":"Pizza Mezzaluna"} +,{"_id":{"$oid":"55cba2476c522cafdb055f06"},"location":{"coordinates":[-73.9714382,40.76771600000001],"type":"Point"},"name":"Dancing Crane Express (Arsenal)"} +,{"_id":{"$oid":"55cba2476c522cafdb055f07"},"location":{"coordinates":[-73.9714382,40.76771600000001],"type":"Point"},"name":"Dancing Crane Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055f08"},"location":{"coordinates":[-73.97334289999999,40.6930533],"type":"Point"},"name":"Domino'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb055f09"},"location":{"coordinates":[-73.8414617,40.7186528],"type":"Point"},"name":"Sushi Time"} +,{"_id":{"$oid":"55cba2476c522cafdb055f0a"},"location":{"coordinates":[-73.95566079999999,40.7142662],"type":"Point"},"name":"Qoo"} +,{"_id":{"$oid":"55cba2476c522cafdb055f0b"},"location":{"coordinates":[-73.99011,40.743278],"type":"Point"},"name":"Comfort Inn"} +,{"_id":{"$oid":"55cba2476c522cafdb055f0c"},"location":{"coordinates":[-73.8428311,40.6744731],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb055f0d"},"location":{"coordinates":[-73.9446375,40.7142917],"type":"Point"},"name":"Hi Noodle"} +,{"_id":{"$oid":"55cba2476c522cafdb055f0e"},"location":{"coordinates":[-73.9747738,40.686628],"type":"Point"},"name":"Bati"} +,{"_id":{"$oid":"55cba2476c522cafdb055f0f"},"location":{"coordinates":[-73.90116929999999,40.74602429999999],"type":"Point"},"name":"Jollibee"} +,{"_id":{"$oid":"55cba2476c522cafdb055f10"},"location":{"coordinates":[-74.0081694,40.7340659],"type":"Point"},"name":"Casa La Femme"} +,{"_id":{"$oid":"55cba2476c522cafdb055f11"},"location":{"coordinates":[-73.9469816,40.629072],"type":"Point"},"name":"Le Banquet Bar \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055f12"},"location":{"coordinates":[-74.00617869999999,40.7069302],"type":"Point"},"name":"Pearl Street Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb055f13"},"location":{"coordinates":[-73.9446222,40.74891400000001],"type":"Point"},"name":"Caffeina Espresso Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb055f14"},"location":{"coordinates":[-73.9623558,40.7607752],"type":"Point"},"name":"Sapphires East"} +,{"_id":{"$oid":"55cba2476c522cafdb055f15"},"location":{"coordinates":[-73.777001,40.6892078],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb055f16"},"location":{"coordinates":[-73.99747289999999,40.7150612],"type":"Point"},"name":"Nice One Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb055f17"},"location":{"coordinates":[-74.1645644,40.5594748],"type":"Point"},"name":"Planet Wings"} +,{"_id":{"$oid":"55cba2476c522cafdb055f18"},"location":{"coordinates":[-73.7909147,40.7017092],"type":"Point"},"name":"Kelly'S Family Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055f19"},"location":{"coordinates":[-73.9809661,40.7647373],"type":"Point"},"name":"Tisserie"} +,{"_id":{"$oid":"55cba2476c522cafdb055f1a"},"location":{"coordinates":[-73.981917,40.685484],"type":"Point"},"name":"Moon Palace Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb055f1b"},"location":{"coordinates":[-73.7498021,40.602712],"type":"Point"},"name":"Popeyes Chicken \u0026 Biscuits"} +,{"_id":{"$oid":"55cba2476c522cafdb055f1c"},"location":{"coordinates":[-74.00928329999999,40.6457935],"type":"Point"},"name":"Las Conchitas Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb055f1d"},"location":{"coordinates":[-73.9107068,40.6998813],"type":"Point"},"name":"Joel'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055f1e"},"location":{"coordinates":[-73.88877959999999,40.7493033],"type":"Point"},"name":"New Peking Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb055f1f"},"location":{"coordinates":[-73.8644386,40.7532626],"type":"Point"},"name":"Szechuan Gourmet"} +,{"_id":{"$oid":"55cba2476c522cafdb055f20"},"location":{"coordinates":[-73.98387989999999,40.7658951],"type":"Point"},"name":"Guantanamera"} +,{"_id":{"$oid":"55cba2476c522cafdb055f21"},"location":{"coordinates":[-73.9178671,40.7463634],"type":"Point"},"name":"Claret Wine Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb055f22"},"location":{"coordinates":[-73.9357965,40.8420552],"type":"Point"},"name":"R T Pizza Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055f23"},"location":{"coordinates":[-73.9932293,40.7415441],"type":"Point"},"name":"Studio Twenty One"} +,{"_id":{"$oid":"55cba2476c522cafdb055f24"},"location":{"coordinates":[-73.967623,40.75892289999999],"type":"Point"},"name":"Cafe 23"} +,{"_id":{"$oid":"55cba2476c522cafdb055f25"},"location":{"coordinates":[-73.9073191,40.8445973],"type":"Point"},"name":"Tigre'S Pizza \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055f26"},"location":{"coordinates":[-73.845252,40.8702942],"type":"Point"},"name":"Golden Krust Caribbean Bakery \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb055f27"},"location":{"coordinates":[-73.89923569999999,40.8575322],"type":"Point"},"name":"Papaye Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb055f28"},"location":{"coordinates":[-73.9726551,40.7526659],"type":"Point"},"name":"The Perfect Pint"} +,{"_id":{"$oid":"55cba2476c522cafdb055f29"},"location":{"coordinates":[-74.023124,40.627382],"type":"Point"},"name":"Sam'S Bagel"} +,{"_id":{"$oid":"55cba2476c522cafdb055f2a"},"location":{"coordinates":[-73.9477009,40.7905885],"type":"Point"},"name":"The Lexington Social"} +,{"_id":{"$oid":"55cba2476c522cafdb055f2b"},"location":{"coordinates":[-73.8799185,40.7478161],"type":"Point"},"name":"Taco Veloz"} +,{"_id":{"$oid":"55cba2476c522cafdb055f2c"},"location":{"coordinates":[-73.94906759999999,40.7975862],"type":"Point"},"name":"Shun Cheong Ikitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb055f2d"},"location":{"coordinates":[-73.9205391,40.7600014],"type":"Point"},"name":"Chicken Shack"} +,{"_id":{"$oid":"55cba2476c522cafdb055f2e"},"location":{"coordinates":[-73.99566999999999,40.6834739],"type":"Point"},"name":"Cobble Hill Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb055f2f"},"location":{"coordinates":[-73.86166089999999,40.7494425],"type":"Point"},"name":"Corona Gyro"} +,{"_id":{"$oid":"55cba2476c522cafdb055f30"},"location":{"coordinates":[-73.9814428,40.6858773],"type":"Point"},"name":"La Flor Del Paraiso Bar \u0026 Restaurant No.5 Corp."} +,{"_id":{"$oid":"55cba2476c522cafdb055f31"},"location":{"coordinates":[-73.97261499999999,40.79152699999999],"type":"Point"},"name":"Amsterdam Burger Co."} +,{"_id":{"$oid":"55cba2476c522cafdb055f32"},"location":{"coordinates":[-73.9977229,40.7560109],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb055f33"},"location":{"coordinates":[-73.9168326,40.815967],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb055f34"},"location":{"coordinates":[-73.98155500000001,40.776298],"type":"Point"},"name":"Noi Due"} +,{"_id":{"$oid":"55cba2476c522cafdb055f35"},"location":{"coordinates":[-73.8952846,40.7007179],"type":"Point"},"name":"Caribe Star"} +,{"_id":{"$oid":"55cba2476c522cafdb055f36"},"location":{"coordinates":[-73.9068951,40.7734629],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb055f37"},"location":{"coordinates":[-73.867679,40.703221],"type":"Point"},"name":"La Nazionale Soccer Club"} +,{"_id":{"$oid":"55cba2476c522cafdb055f38"},"location":{"coordinates":[-73.94477479999999,40.8208534],"type":"Point"},"name":"Queen Sheeba Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055f39"},"location":{"coordinates":[-73.9216545,40.7600523],"type":"Point"},"name":"Osaka Japanese Fusion"} +,{"_id":{"$oid":"55cba2476c522cafdb055f3a"},"location":{"coordinates":[-73.9002373,40.8560715],"type":"Point"},"name":"Caridad Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055f3b"},"location":{"coordinates":[-74.0769073,40.6439697],"type":"Point"},"name":"Ruddy And Dean"} +,{"_id":{"$oid":"55cba2476c522cafdb055f3c"},"location":{"coordinates":[-73.7384699,40.717362],"type":"Point"},"name":"Windies Restaurant And Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb055f3d"},"location":{"coordinates":[-73.780241,40.66638380000001],"type":"Point"},"name":"Meditteranean Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb055f3e"},"location":{"coordinates":[-73.933087,40.6960679],"type":"Point"},"name":"Papa John'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055f3f"},"location":{"coordinates":[-74.0021299,40.724912],"type":"Point"},"name":"Boqueria"} +,{"_id":{"$oid":"55cba2476c522cafdb055f40"},"location":{"coordinates":[-74.0089184,40.7140849],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb055f41"},"location":{"coordinates":[-73.8610317,40.8862098],"type":"Point"},"name":"The Good Dine Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055f42"},"location":{"coordinates":[-73.9857111,40.7479328],"type":"Point"},"name":"Legends Nyc"} +,{"_id":{"$oid":"55cba2476c522cafdb055f43"},"location":{"coordinates":[-73.93436009999999,40.7532269],"type":"Point"},"name":"Holiday Inn / Rio Grande Churrascaria"} +,{"_id":{"$oid":"55cba2476c522cafdb055f44"},"location":{"coordinates":[-73.7215002,40.7424361],"type":"Point"},"name":"Taste Of Cochin"} +,{"_id":{"$oid":"55cba2476c522cafdb055f45"},"location":{"coordinates":[-74.0078798,40.7406045],"type":"Point"},"name":"The Standard Grill And Biergarten"} +,{"_id":{"$oid":"55cba2476c522cafdb055f46"},"location":{"coordinates":[-73.994615,40.7386849],"type":"Point"},"name":"Raines Law Room"} +,{"_id":{"$oid":"55cba2476c522cafdb055f47"},"location":{"coordinates":[-73.95374,40.774243],"type":"Point"},"name":"Sandro'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055f48"},"location":{"coordinates":[-73.93944100000002,40.8514138],"type":"Point"},"name":"No. 1 Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055f49"},"location":{"coordinates":[-73.99083499999999,40.75799],"type":"Point"},"name":"Dafni"} +,{"_id":{"$oid":"55cba2476c522cafdb055f4a"},"location":{"coordinates":[-73.95246399999999,40.769167],"type":"Point"},"name":"The Green Bean Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055f4b"},"location":{"coordinates":[-73.9975156,40.6038461],"type":"Point"},"name":"Ichi Sushi I"} +,{"_id":{"$oid":"55cba2476c522cafdb055f4c"},"location":{"coordinates":[-73.9145939,40.78167],"type":"Point"},"name":"Wah Lung Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb055f4d"},"location":{"coordinates":[-73.9792705,40.7550959],"type":"Point"},"name":"Cafe Europa"} +,{"_id":{"$oid":"55cba2476c522cafdb055f4e"},"location":{"coordinates":[-73.915205,40.818755],"type":"Point"},"name":"El Chicanito Restaurant Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb055f4f"},"location":{"coordinates":[-73.87385069999999,40.8092797],"type":"Point"},"name":"Baldor Specialty Foods"} +,{"_id":{"$oid":"55cba2476c522cafdb055f50"},"location":{"coordinates":[-73.8552321,40.7514955],"type":"Point"},"name":"Tropicoso Bar-Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb055f51"},"location":{"coordinates":[-73.8878678,40.7435879],"type":"Point"},"name":"Wasabi Point"} +,{"_id":{"$oid":"55cba2476c522cafdb055f52"},"location":{"coordinates":[-73.908594,40.8131351],"type":"Point"},"name":"El Valle Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055f53"},"location":{"coordinates":[-73.978139,40.760081],"type":"Point"},"name":"Terrace Club"} +,{"_id":{"$oid":"55cba2476c522cafdb055f54"},"location":{"coordinates":[-73.83218219999999,40.71453289999999],"type":"Point"},"name":"Kew Garden Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055f55"},"location":{"coordinates":[-73.8802302,40.8825],"type":"Point"},"name":"Ten Tan"} +,{"_id":{"$oid":"55cba2476c522cafdb055f56"},"location":{"coordinates":[-73.972622,40.785293],"type":"Point"},"name":"Kefi"} +,{"_id":{"$oid":"55cba2476c522cafdb055f57"},"location":{"coordinates":[-73.9624134,40.6248869],"type":"Point"},"name":"Kosher Pizza Time"} +,{"_id":{"$oid":"55cba2476c522cafdb055f58"},"location":{"coordinates":[-73.99952739999999,40.6101781],"type":"Point"},"name":"Dragon Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb055f59"},"location":{"coordinates":[-73.90996009999999,40.8865048],"type":"Point"},"name":"Cumin Indian Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055f5a"},"location":{"coordinates":[-73.993908,40.761275],"type":"Point"},"name":"Lali'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055f5b"},"location":{"coordinates":[-73.9794636,40.7459472],"type":"Point"},"name":"Dunkin' Donuts, Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb055f5c"},"location":{"coordinates":[-73.9511482,40.6363852],"type":"Point"},"name":"Faye \u0026 King Jamaican Rest"} +,{"_id":{"$oid":"55cba2476c522cafdb055f5d"},"location":{"coordinates":[-73.89741029999999,40.8670562],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055f5e"},"location":{"coordinates":[-73.7857614,40.7523954],"type":"Point"},"name":"Piccolo Sogno Pezzeria-Trattoria"} +,{"_id":{"$oid":"55cba2476c522cafdb055f5f"},"location":{"coordinates":[-73.966759,40.6403317],"type":"Point"},"name":"Mimi'S Hummus"} +,{"_id":{"$oid":"55cba2476c522cafdb055f60"},"location":{"coordinates":[-73.9899143,40.7562054],"type":"Point"},"name":"Inakaya"} +,{"_id":{"$oid":"55cba2476c522cafdb055f61"},"location":{"coordinates":[-73.7092333,40.7533837],"type":"Point"},"name":"Au Bon Pain"} +,{"_id":{"$oid":"55cba2476c522cafdb055f62"},"location":{"coordinates":[-73.97656909999999,40.7535209],"type":"Point"},"name":"La Fonda Del Sol"} +,{"_id":{"$oid":"55cba2476c522cafdb055f63"},"location":{"coordinates":[-73.8858711,40.8586257],"type":"Point"},"name":"University Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb055f64"},"location":{"coordinates":[-73.832146,40.8845649],"type":"Point"},"name":"Best Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055f65"},"location":{"coordinates":[-73.8862351,40.8576924],"type":"Point"},"name":"Howl At The Moon Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb055f66"},"location":{"coordinates":[-73.8860673,40.8576059],"type":"Point"},"name":"Tony \u0026 Tina'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb055f67"},"location":{"coordinates":[-74.0313814,40.623205],"type":"Point"},"name":"Pegusus Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb055f68"},"location":{"coordinates":[-74.07515699999999,40.626348],"type":"Point"},"name":"Cancun Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055f69"},"location":{"coordinates":[-73.8603229,40.746603],"type":"Point"},"name":"Cake Mio Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb055f6a"},"location":{"coordinates":[-73.83408709999999,40.7694802],"type":"Point"},"name":"Subway, Carvel Ice Cream"} +,{"_id":{"$oid":"55cba2476c522cafdb055f6b"},"location":{"coordinates":[-73.9756237,40.7394093],"type":"Point"},"name":"Au Bon Pain"} +,{"_id":{"$oid":"55cba2476c522cafdb055f6c"},"location":{"coordinates":[-74.007888,40.63676],"type":"Point"},"name":"Dragon Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb055f6d"},"location":{"coordinates":[-73.9603839,40.659401],"type":"Point"},"name":"New Golden Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055f6e"},"location":{"coordinates":[-73.9203856,40.8078036],"type":"Point"},"name":"China House Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055f6f"},"location":{"coordinates":[-73.9603285,40.6082307],"type":"Point"},"name":"Mitoushi Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb055f70"},"location":{"coordinates":[-73.968352,40.6386808],"type":"Point"},"name":"773 Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb055f71"},"location":{"coordinates":[-73.9726754,40.6933691],"type":"Point"},"name":"Crown Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb055f72"},"location":{"coordinates":[-74.001673,40.6754879],"type":"Point"},"name":"Lin'S Garden Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb055f73"},"location":{"coordinates":[-74.0091964,40.6189677],"type":"Point"},"name":"Double Dragon Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055f74"},"location":{"coordinates":[-73.9429234,40.7042832],"type":"Point"},"name":"Pizza Pasta Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055f75"},"location":{"coordinates":[-73.900886,40.7599167],"type":"Point"},"name":"Fantasia \u0026 Perfection"} +,{"_id":{"$oid":"55cba2476c522cafdb055f76"},"location":{"coordinates":[-73.9981655,40.6771804],"type":"Point"},"name":"Prime Meats"} +,{"_id":{"$oid":"55cba2476c522cafdb055f77"},"location":{"coordinates":[-73.9904772,40.7179481],"type":"Point"},"name":"An Choi"} +,{"_id":{"$oid":"55cba2476c522cafdb055f78"},"location":{"coordinates":[-73.89507119999999,40.7021689],"type":"Point"},"name":"Kid'S Funhouse"} +,{"_id":{"$oid":"55cba2476c522cafdb055f79"},"location":{"coordinates":[-73.9449619,40.834515],"type":"Point"},"name":"Kennedy'S Chicken Sandwiches"} +,{"_id":{"$oid":"55cba2476c522cafdb055f7a"},"location":{"coordinates":[-73.9057315,40.7455807],"type":"Point"},"name":"Shelley'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055f7b"},"location":{"coordinates":[-73.991114,40.7376662],"type":"Point"},"name":"Lillie'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055f7c"},"location":{"coordinates":[-73.9845235,40.7494199],"type":"Point"},"name":"Radio Star"} +,{"_id":{"$oid":"55cba2476c522cafdb055f7d"},"location":{"coordinates":[-73.9894406,40.7256744],"type":"Point"},"name":"Cellar 58"} +,{"_id":{"$oid":"55cba2476c522cafdb055f7e"},"location":{"coordinates":[-73.9388853,40.7505811],"type":"Point"},"name":"Met Life/Jet Blue (Employee Cafeteria)"} +,{"_id":{"$oid":"55cba2476c522cafdb055f7f"},"location":{"coordinates":[-73.9849107,40.7547094],"type":"Point"},"name":"Met Life"} +,{"_id":{"$oid":"55cba2476c522cafdb055f80"},"location":{"coordinates":[-73.98070899999999,40.778533],"type":"Point"},"name":"Aroma Espresso Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb055f81"},"location":{"coordinates":[-74.0028447,40.7330017],"type":"Point"},"name":"Gallo Nero"} +,{"_id":{"$oid":"55cba2476c522cafdb055f82"},"location":{"coordinates":[-73.869945,40.7704394],"type":"Point"},"name":"Famous Famiglia Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb055f83"},"location":{"coordinates":[-73.9516277,40.7735011],"type":"Point"},"name":"Gracie-Mews Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055f84"},"location":{"coordinates":[-73.9597661,40.8082925],"type":"Point"},"name":"Haakon'S Hall"} +,{"_id":{"$oid":"55cba2476c522cafdb055f85"},"location":{"coordinates":[-73.83755529999999,40.7517642],"type":"Point"},"name":"World Ice Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055f86"},"location":{"coordinates":[-73.966663,40.7617968],"type":"Point"},"name":"Flip"} +,{"_id":{"$oid":"55cba2476c522cafdb055f87"},"location":{"coordinates":[-73.9409318,40.7889664],"type":"Point"},"name":"Happy Wok Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055f88"},"location":{"coordinates":[-73.9353613,40.6836488],"type":"Point"},"name":"Saraghina"} +,{"_id":{"$oid":"55cba2476c522cafdb055f89"},"location":{"coordinates":[-73.99852899999999,40.619692],"type":"Point"},"name":"Malay Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb055f8a"},"location":{"coordinates":[-73.9823463,40.6663058],"type":"Point"},"name":"Hanco'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055f8b"},"location":{"coordinates":[-73.9617169,40.58133],"type":"Point"},"name":"New Shama Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055f8c"},"location":{"coordinates":[-73.7633342,40.6808432],"type":"Point"},"name":"Smoke Bbq Pit"} +,{"_id":{"$oid":"55cba2476c522cafdb055f8d"},"location":{"coordinates":[-73.99097979999999,40.6912179],"type":"Point"},"name":"Chu'S Gourmet"} +,{"_id":{"$oid":"55cba2476c522cafdb055f8e"},"location":{"coordinates":[-74.2473469,40.5097],"type":"Point"},"name":"B \u0026 E Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb055f8f"},"location":{"coordinates":[-74.01163199999999,40.612392],"type":"Point"},"name":"B'Klyn'S Pizza Joint"} +,{"_id":{"$oid":"55cba2476c522cafdb055f90"},"location":{"coordinates":[-73.8903405,40.75173849999999],"type":"Point"},"name":"Lali Guras Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055f91"},"location":{"coordinates":[-73.91222239999999,40.7229805],"type":"Point"},"name":"Angelo'S Pizza Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055f92"},"location":{"coordinates":[-73.8577356,40.8933451],"type":"Point"},"name":"Tony'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb055f93"},"location":{"coordinates":[-73.977462,40.78381299999999],"type":"Point"},"name":"Cava Wine Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb055f94"},"location":{"coordinates":[-73.9743641,40.7560493],"type":"Point"},"name":"Ge Financial Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055f95"},"location":{"coordinates":[-73.9427407,40.6556681],"type":"Point"},"name":"Crown Fried Chicken And Mediterranean Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb055f96"},"location":{"coordinates":[-73.9936869,40.7459164],"type":"Point"},"name":"B And B Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055f97"},"location":{"coordinates":[-73.82245739999999,40.7573403],"type":"Point"},"name":"El Rincon De La Vieja Bakery And Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055f98"},"location":{"coordinates":[-73.8101026,40.7329471],"type":"Point"},"name":"Jib Lanes"} +,{"_id":{"$oid":"55cba2476c522cafdb055f99"},"location":{"coordinates":[-73.9343528,40.8535989],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb055f9a"},"location":{"coordinates":[-73.87643969999999,40.8957637],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb055f9b"},"location":{"coordinates":[-73.9336362,40.7139718],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb055f9c"},"location":{"coordinates":[-73.91799999999999,40.866193],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb055f9d"},"location":{"coordinates":[-90.336697,38.727557],"type":"Point"},"name":"Angelina Gourmet Foods"} +,{"_id":{"$oid":"55cba2476c522cafdb055f9e"},"location":{"coordinates":[-73.9980822,40.7283929],"type":"Point"},"name":"Favela Cubana"} +,{"_id":{"$oid":"55cba2476c522cafdb055f9f"},"location":{"coordinates":[-73.9926799,40.7488027],"type":"Point"},"name":"The Flying Puck"} +,{"_id":{"$oid":"55cba2476c522cafdb055fa0"},"location":{"coordinates":[-73.89554799999999,40.638791],"type":"Point"},"name":"Yummy Taco"} +,{"_id":{"$oid":"55cba2476c522cafdb055fa1"},"location":{"coordinates":[-73.979151,40.677845],"type":"Point"},"name":"Nana Restaurant \u0026 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb055fa2"},"location":{"coordinates":[-74.0065454,40.7109854],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb055fa3"},"location":{"coordinates":[-73.9359131,40.8441905],"type":"Point"},"name":"Angela Cake"} +,{"_id":{"$oid":"55cba2476c522cafdb055fa4"},"location":{"coordinates":[-73.9182471,40.7173058],"type":"Point"},"name":"Angelos Deli Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055fa5"},"location":{"coordinates":[-73.7561702,40.747426],"type":"Point"},"name":"Bi Won"} +,{"_id":{"$oid":"55cba2476c522cafdb055fa6"},"location":{"coordinates":[-73.95297409999999,40.7585186],"type":"Point"},"name":"Riverwalk Bar \u0026 Grill Express"} +,{"_id":{"$oid":"55cba2476c522cafdb055fa7"},"location":{"coordinates":[-73.9557131,40.7847375],"type":"Point"},"name":"Paola'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055fa8"},"location":{"coordinates":[-73.9823608,40.7423891],"type":"Point"},"name":"Haandi"} +,{"_id":{"$oid":"55cba2476c522cafdb055fa9"},"location":{"coordinates":[-73.98195249999999,40.6784779],"type":"Point"},"name":"Zuzu Ramen"} +,{"_id":{"$oid":"55cba2476c522cafdb055faa"},"location":{"coordinates":[-73.96883729999999,40.7539799],"type":"Point"},"name":"Manchester Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb055fab"},"location":{"coordinates":[-73.96980649999999,40.7560551],"type":"Point"},"name":"Bxl East"} +,{"_id":{"$oid":"55cba2476c522cafdb055fac"},"location":{"coordinates":[-74.0011691,40.7294111],"type":"Point"},"name":"La Villagio Restaurante Italiano"} +,{"_id":{"$oid":"55cba2476c522cafdb055fad"},"location":{"coordinates":[-73.9108569,40.744381],"type":"Point"},"name":"Cascada Restaurant And Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb055fae"},"location":{"coordinates":[-73.8086957,40.7060886],"type":"Point"},"name":"El Rey .L"} +,{"_id":{"$oid":"55cba2476c522cafdb055faf"},"location":{"coordinates":[-73.9022403,40.7049841],"type":"Point"},"name":"China Garden Restarant"} +,{"_id":{"$oid":"55cba2476c522cafdb055fb0"},"location":{"coordinates":[-73.99220749999999,40.6995324],"type":"Point"},"name":"Brooklyn Heights Wine Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb055fb1"},"location":{"coordinates":[-73.84223999999999,40.7193775],"type":"Point"},"name":"The Tap House"} +,{"_id":{"$oid":"55cba2476c522cafdb055fb2"},"location":{"coordinates":[-73.940713,40.78929300000001],"type":"Point"},"name":"5 Star Cheesesteak And Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb055fb3"},"location":{"coordinates":[-74.003282,40.729171],"type":"Point"},"name":"Abottega"} +,{"_id":{"$oid":"55cba2476c522cafdb055fb4"},"location":{"coordinates":[-73.986569,40.750404],"type":"Point"},"name":"The Great American Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb055fb5"},"location":{"coordinates":[-74.0029843,40.732661],"type":"Point"},"name":"Caffe Organico"} +,{"_id":{"$oid":"55cba2476c522cafdb055fb6"},"location":{"coordinates":[-73.9848848,40.7591926],"type":"Point"},"name":"Gingers (Double Tree Hotel)"} +,{"_id":{"$oid":"55cba2476c522cafdb055fb7"},"location":{"coordinates":[-73.9888232,40.7589911],"type":"Point"},"name":"Mama'S Pizza Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055fb8"},"location":{"coordinates":[-73.87467699999999,40.8310699],"type":"Point"},"name":"Little Rock Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055fb9"},"location":{"coordinates":[-73.99368319999999,40.7574883],"type":"Point"},"name":"Capizzi"} +,{"_id":{"$oid":"55cba2476c522cafdb055fba"},"location":{"coordinates":[-73.94206,40.837205],"type":"Point"},"name":"Punta Cana Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055fbb"},"location":{"coordinates":[-73.7537055,40.61036300000001],"type":"Point"},"name":"Fish And Dish"} +,{"_id":{"$oid":"55cba2476c522cafdb055fbc"},"location":{"coordinates":[-73.92196899999999,40.706608],"type":"Point"},"name":"La Tortilleria Mexicana Los Tres Hermanos"} +,{"_id":{"$oid":"55cba2476c522cafdb055fbd"},"location":{"coordinates":[-73.95128679999999,40.7828899],"type":"Point"},"name":"Chinatown Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055fbe"},"location":{"coordinates":[-73.98734809999999,40.7267246],"type":"Point"},"name":"Souen Noodle"} +,{"_id":{"$oid":"55cba2476c522cafdb055fbf"},"location":{"coordinates":[-73.9914416,40.5907698],"type":"Point"},"name":"New Jade Flower Open Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb055fc0"},"location":{"coordinates":[-73.96455619999999,40.6230376],"type":"Point"},"name":"Olympic Pita"} +,{"_id":{"$oid":"55cba2476c522cafdb055fc1"},"location":{"coordinates":[-73.92906630000002,40.6522449],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb055fc2"},"location":{"coordinates":[-73.9483315,40.7180368],"type":"Point"},"name":"Mi Tierra Ecuatoriana"} +,{"_id":{"$oid":"55cba2476c522cafdb055fc3"},"location":{"coordinates":[-73.9395933,40.7075391],"type":"Point"},"name":"Bushwick Pita Palace"} +,{"_id":{"$oid":"55cba2476c522cafdb055fc4"},"location":{"coordinates":[-73.96171,40.800244],"type":"Point"},"name":"A Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055fc5"},"location":{"coordinates":[-73.879796,40.6817088],"type":"Point"},"name":"Puerto Plata Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055fc6"},"location":{"coordinates":[-73.9903696,40.7166647],"type":"Point"},"name":"Silk Cakes"} +,{"_id":{"$oid":"55cba2476c522cafdb055fc7"},"location":{"coordinates":[-73.974639,40.788749],"type":"Point"},"name":"Ozu Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055fc8"},"location":{"coordinates":[-74.1642931,40.59091120000001],"type":"Point"},"name":"Original Soupman Of Staten Island"} +,{"_id":{"$oid":"55cba2476c522cafdb055fc9"},"location":{"coordinates":[-74.015478,40.67729],"type":"Point"},"name":"Botanica/Cacao Prieto"} +,{"_id":{"$oid":"55cba2476c522cafdb055fca"},"location":{"coordinates":[-74.0041688,40.7339553],"type":"Point"},"name":"Westville"} +,{"_id":{"$oid":"55cba2476c522cafdb055fcb"},"location":{"coordinates":[-73.9565078,40.66607920000001],"type":"Point"},"name":"Balboa Restaurant."} +,{"_id":{"$oid":"55cba2476c522cafdb055fcc"},"location":{"coordinates":[-73.9970154,40.7473462],"type":"Point"},"name":"Taco Bandito Mexican Food"} +,{"_id":{"$oid":"55cba2476c522cafdb055fcd"},"location":{"coordinates":[-74.1239212,40.6339156],"type":"Point"},"name":"Oaxaca Deli And Taqueria"} +,{"_id":{"$oid":"55cba2476c522cafdb055fce"},"location":{"coordinates":[-73.96888899999999,40.640937],"type":"Point"},"name":"Shandar Sweet \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055fcf"},"location":{"coordinates":[-73.9959414,40.71765329999999],"type":"Point"},"name":"Sushi Delight"} +,{"_id":{"$oid":"55cba2476c522cafdb055fd0"},"location":{"coordinates":[-74.131372,40.6036644],"type":"Point"},"name":"Valiano Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb055fd1"},"location":{"coordinates":[-73.96236429999999,40.7994054],"type":"Point"},"name":"Johal Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb055fd2"},"location":{"coordinates":[-74.1771574,40.54051339999999],"type":"Point"},"name":"Play Sports Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb055fd3"},"location":{"coordinates":[-73.9013089,40.8629457],"type":"Point"},"name":"Twin Donut"} +,{"_id":{"$oid":"55cba2476c522cafdb055fd4"},"location":{"coordinates":[-73.8510111,40.8332901],"type":"Point"},"name":"Melanie'S Roti \u0026 Grill Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055fd5"},"location":{"coordinates":[-73.73188449999999,40.6743506],"type":"Point"},"name":"Island Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb055fd6"},"location":{"coordinates":[-73.9809756,40.68877],"type":"Point"},"name":"Fulton Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb055fd7"},"location":{"coordinates":[-73.9944146,40.7499006],"type":"Point"},"name":"The Thirsty Fan"} +,{"_id":{"$oid":"55cba2476c522cafdb055fd8"},"location":{"coordinates":[-73.90106899999999,40.905125],"type":"Point"},"name":"Frankie'S Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb055fd9"},"location":{"coordinates":[-73.789581,40.707458],"type":"Point"},"name":"El Izalco Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055fda"},"location":{"coordinates":[-73.9837178,40.7449673],"type":"Point"},"name":"Wine 30"} +,{"_id":{"$oid":"55cba2476c522cafdb055fdb"},"location":{"coordinates":[-73.98292099999999,40.7515024],"type":"Point"},"name":"Sarabeth"} +,{"_id":{"$oid":"55cba2476c522cafdb055fdc"},"location":{"coordinates":[-74.12745799999999,40.612988],"type":"Point"},"name":"Venga Fresh Mexican Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb055fdd"},"location":{"coordinates":[-73.945162,40.8080882],"type":"Point"},"name":"Chez Lucienne"} +,{"_id":{"$oid":"55cba2476c522cafdb055fde"},"location":{"coordinates":[-73.98292099999999,40.7515024],"type":"Point"},"name":"Sarabeth'S/Lord And Taylor 6Th Floor"} +,{"_id":{"$oid":"55cba2476c522cafdb055fdf"},"location":{"coordinates":[-73.8365555,40.7176544],"type":"Point"},"name":"El Pollo Inka Peru Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb055fe0"},"location":{"coordinates":[-73.8587759,40.710068],"type":"Point"},"name":"Five Guys Burgers And Fries"} +,{"_id":{"$oid":"55cba2476c522cafdb055fe1"},"location":{"coordinates":[-73.99321309999999,40.7632154],"type":"Point"},"name":"Tehuitzingo Deli And Grocery"} +,{"_id":{"$oid":"55cba2476c522cafdb055fe2"},"location":{"coordinates":[-73.98182349999999,40.57724109999999],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb055fe3"},"location":{"coordinates":[-73.954887,40.76871999999999],"type":"Point"},"name":"Andaz"} +,{"_id":{"$oid":"55cba2476c522cafdb055fe4"},"location":{"coordinates":[-73.9817071,40.6746579],"type":"Point"},"name":"Ben \u0026 Jacks Steakhouse"} +,{"_id":{"$oid":"55cba2476c522cafdb055fe5"},"location":{"coordinates":[-73.9371135,40.5989205],"type":"Point"},"name":"Empire Szechuan Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb055fe6"},"location":{"coordinates":[-73.98443,40.725358],"type":"Point"},"name":"Arrow"} +,{"_id":{"$oid":"55cba2476c522cafdb055fe7"},"location":{"coordinates":[-73.99257999999999,40.617148],"type":"Point"},"name":"18 Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb055fe8"},"location":{"coordinates":[-73.9867063,40.6984799],"type":"Point"},"name":"Nassau Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb055fe9"},"location":{"coordinates":[-73.9884469,40.734917],"type":"Point"},"name":"Irving Plaza"} +,{"_id":{"$oid":"55cba2476c522cafdb055fea"},"location":{"coordinates":[-73.9268541,40.7571861],"type":"Point"},"name":"Napoli Pizza \u0026 Pasta"} +,{"_id":{"$oid":"55cba2476c522cafdb055feb"},"location":{"coordinates":[-73.997672,40.7452362],"type":"Point"},"name":"Rin Thai Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb055fec"},"location":{"coordinates":[-73.9712322,40.7514701],"type":"Point"},"name":"Cafe Olympia"} +,{"_id":{"$oid":"55cba2476c522cafdb055fed"},"location":{"coordinates":[-73.9793564,40.7589426],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb055fee"},"location":{"coordinates":[-73.9732093,40.6080583],"type":"Point"},"name":"Monaco"} +,{"_id":{"$oid":"55cba2476c522cafdb055fef"},"location":{"coordinates":[-73.9891267,40.729435],"type":"Point"},"name":"Boka"} +,{"_id":{"$oid":"55cba2476c522cafdb055ff0"},"location":{"coordinates":[-73.97393199999999,40.594364],"type":"Point"},"name":"The Village Luncheonette"} +,{"_id":{"$oid":"55cba2476c522cafdb055ff1"},"location":{"coordinates":[-73.9879512,40.7277859],"type":"Point"},"name":"Cafe Mocha"} +,{"_id":{"$oid":"55cba2476c522cafdb055ff2"},"location":{"coordinates":[-73.965823,40.760159],"type":"Point"},"name":"Chola"} +,{"_id":{"$oid":"55cba2476c522cafdb055ff3"},"location":{"coordinates":[-73.973642,40.756571],"type":"Point"},"name":"Waldorf Employee Cafeteria"} +,{"_id":{"$oid":"55cba2476c522cafdb055ff4"},"location":{"coordinates":[-73.8086957,40.7060886],"type":"Point"},"name":"El Monumental Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055ff5"},"location":{"coordinates":[-73.973642,40.756571],"type":"Point"},"name":"Waldorf Astoria Banquet Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb055ff6"},"location":{"coordinates":[-73.9051127,40.8268256],"type":"Point"},"name":"Gold Dragon"} +,{"_id":{"$oid":"55cba2476c522cafdb055ff7"},"location":{"coordinates":[-73.983813,40.738797],"type":"Point"},"name":"The Globe Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb055ff8"},"location":{"coordinates":[-73.97996499999999,40.781419],"type":"Point"},"name":"Amsterdam Ale House"} +,{"_id":{"$oid":"55cba2476c522cafdb055ff9"},"location":{"coordinates":[-73.989087,40.731165],"type":"Point"},"name":"Bodhi Tree"} +,{"_id":{"$oid":"55cba2476c522cafdb055ffa"},"location":{"coordinates":[-73.8252148,40.6903357],"type":"Point"},"name":"Yong Sheng Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb055ffb"},"location":{"coordinates":[-73.9942679,40.761765],"type":"Point"},"name":"The Pony Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb055ffc"},"location":{"coordinates":[-73.95888839999999,40.7830178],"type":"Point"},"name":"The Wright"} +,{"_id":{"$oid":"55cba2476c522cafdb055ffd"},"location":{"coordinates":[-73.7822056,40.6434612],"type":"Point"},"name":"Bobby Van'S Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb055ffe"},"location":{"coordinates":[-73.83055089999999,40.7595845],"type":"Point"},"name":"New Flushing Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb055fff"},"location":{"coordinates":[-73.8974095,40.7460942],"type":"Point"},"name":"Tropical Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056000"},"location":{"coordinates":[-73.7517434,40.6663811],"type":"Point"},"name":"Foo An Chinese Food"} +,{"_id":{"$oid":"55cba2476c522cafdb056001"},"location":{"coordinates":[-73.9629223,40.7579559],"type":"Point"},"name":"Best Pizza On 1St."} +,{"_id":{"$oid":"55cba2476c522cafdb056002"},"location":{"coordinates":[-73.98632099999999,40.7226519],"type":"Point"},"name":"Ella"} +,{"_id":{"$oid":"55cba2476c522cafdb056003"},"location":{"coordinates":[-73.7496197,40.6027285],"type":"Point"},"name":"Lucky Cornaga"} +,{"_id":{"$oid":"55cba2476c522cafdb056004"},"location":{"coordinates":[-73.9259201,40.8278293],"type":"Point"},"name":"Hard Rock Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056005"},"location":{"coordinates":[-73.9259201,40.8278293],"type":"Point"},"name":"Nyy Steak"} +,{"_id":{"$oid":"55cba2476c522cafdb056006"},"location":{"coordinates":[-73.771137,40.763332],"type":"Point"},"name":"Martha'S Country Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb056007"},"location":{"coordinates":[-73.9734055,40.7600804],"type":"Point"},"name":"Monkey Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb056008"},"location":{"coordinates":[-73.8430846,40.8621913],"type":"Point"},"name":"C \u0026 C Deli Coffee Shop \u0026 Pastry"} +,{"_id":{"$oid":"55cba2476c522cafdb056009"},"location":{"coordinates":[-73.9832642,40.7653805],"type":"Point"},"name":"Vizio"} +,{"_id":{"$oid":"55cba2476c522cafdb05600a"},"location":{"coordinates":[-73.923382,40.7612634],"type":"Point"},"name":"La Rioja Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05600b"},"location":{"coordinates":[-73.888213,40.8550664],"type":"Point"},"name":"Ivana Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05600c"},"location":{"coordinates":[-74.0316043,40.6154948],"type":"Point"},"name":"Cathy'S Place Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb05600d"},"location":{"coordinates":[-73.920497,40.7662657],"type":"Point"},"name":"Astoria Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05600e"},"location":{"coordinates":[-73.99907990000001,40.7197943],"type":"Point"},"name":"Baby Grand"} +,{"_id":{"$oid":"55cba2476c522cafdb05600f"},"location":{"coordinates":[-73.8838318,40.8679951],"type":"Point"},"name":"Rose Flower"} +,{"_id":{"$oid":"55cba2476c522cafdb056010"},"location":{"coordinates":[-73.7597779,40.6062222],"type":"Point"},"name":"Mario'S Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb056011"},"location":{"coordinates":[-73.8856603,40.6793901],"type":"Point"},"name":"Tavares"} +,{"_id":{"$oid":"55cba2476c522cafdb056012"},"location":{"coordinates":[-73.9571333,40.6872281],"type":"Point"},"name":"One Last Shag"} +,{"_id":{"$oid":"55cba2476c522cafdb056013"},"location":{"coordinates":[-73.925563,40.862247],"type":"Point"},"name":"Kenny'S Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb056014"},"location":{"coordinates":[-73.7542732,40.5969577],"type":"Point"},"name":"J M Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056015"},"location":{"coordinates":[-73.82732179999999,40.71265320000001],"type":"Point"},"name":"Euro Grill \u0026 Salad Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb056016"},"location":{"coordinates":[-73.9944853,40.7522148],"type":"Point"},"name":"Quizno'S Subs"} +,{"_id":{"$oid":"55cba2476c522cafdb056017"},"location":{"coordinates":[-73.9995531,40.73001199999999],"type":"Point"},"name":"Third Rail Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb056018"},"location":{"coordinates":[-73.9938092,40.7032251],"type":"Point"},"name":"Ignazio'S"} +,{"_id":{"$oid":"55cba2476c522cafdb056019"},"location":{"coordinates":[-74.01041260000001,40.7042965],"type":"Point"},"name":"The Dubliner"} +,{"_id":{"$oid":"55cba2476c522cafdb05601a"},"location":{"coordinates":[-73.9753652,40.6873122],"type":"Point"},"name":"La Bagel Delight"} +,{"_id":{"$oid":"55cba2476c522cafdb05601b"},"location":{"coordinates":[-73.9630815,40.6350624],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb05601c"},"location":{"coordinates":[-73.801608,40.707742],"type":"Point"},"name":"La Cocina Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05601d"},"location":{"coordinates":[-73.7776963,40.6458994],"type":"Point"},"name":"Cibo/Deep Blue On The Fly"} +,{"_id":{"$oid":"55cba2476c522cafdb05601e"},"location":{"coordinates":[-73.9251627,40.7399801],"type":"Point"},"name":"Ten Full"} +,{"_id":{"$oid":"55cba2476c522cafdb05601f"},"location":{"coordinates":[-73.9126637,40.8202086],"type":"Point"},"name":"Little Caesars"} +,{"_id":{"$oid":"55cba2476c522cafdb056020"},"location":{"coordinates":[-73.9138301,40.699475],"type":"Point"},"name":"Vaqueros"} +,{"_id":{"$oid":"55cba2476c522cafdb056021"},"location":{"coordinates":[-73.8636768,40.72867309999999],"type":"Point"},"name":"Sushi 33"} +,{"_id":{"$oid":"55cba2476c522cafdb056022"},"location":{"coordinates":[-73.7925917,40.738517],"type":"Point"},"name":"Tea Shop \u0026 Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb056023"},"location":{"coordinates":[-74.0067882,40.7060144],"type":"Point"},"name":"Dig Inn Seasonal Market"} +,{"_id":{"$oid":"55cba2476c522cafdb056024"},"location":{"coordinates":[-73.9187042,40.8079893],"type":"Point"},"name":"Fast Wok"} +,{"_id":{"$oid":"55cba2476c522cafdb056025"},"location":{"coordinates":[-73.930751,40.689857],"type":"Point"},"name":"Xiang Xin Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056026"},"location":{"coordinates":[-73.9400732,40.797355],"type":"Point"},"name":"Delicias Mexicanas"} +,{"_id":{"$oid":"55cba2476c522cafdb056027"},"location":{"coordinates":[-73.99045,40.760979],"type":"Point"},"name":"Yum Yum Too"} +,{"_id":{"$oid":"55cba2476c522cafdb056028"},"location":{"coordinates":[-73.9872257,40.71546740000001],"type":"Point"},"name":"New May May Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb056029"},"location":{"coordinates":[-73.98895399999999,40.718382],"type":"Point"},"name":"Hotel Chantelle"} +,{"_id":{"$oid":"55cba2476c522cafdb05602a"},"location":{"coordinates":[-73.98123609999999,40.6351665],"type":"Point"},"name":"Sushi K Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05602b"},"location":{"coordinates":[-73.8534616,40.6929733],"type":"Point"},"name":"Avenue Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb05602c"},"location":{"coordinates":[-73.953215,40.780417],"type":"Point"},"name":"Wok 88"} +,{"_id":{"$oid":"55cba2476c522cafdb05602d"},"location":{"coordinates":[-74.00683459999999,40.739374],"type":"Point"},"name":"The Griffin"} +,{"_id":{"$oid":"55cba2476c522cafdb05602e"},"location":{"coordinates":[-73.9361394,40.84356],"type":"Point"},"name":"El Jaya Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05602f"},"location":{"coordinates":[-73.95105740000001,40.66212609999999],"type":"Point"},"name":"New Garden Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056030"},"location":{"coordinates":[-73.8554554,40.835087],"type":"Point"},"name":"Golden Palace"} +,{"_id":{"$oid":"55cba2476c522cafdb056031"},"location":{"coordinates":[-73.91579999999999,40.76042899999999],"type":"Point"},"name":"Piazza Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056032"},"location":{"coordinates":[-73.802768,40.706962],"type":"Point"},"name":"Ni-Na-Ab Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056033"},"location":{"coordinates":[-74.1618143,40.5454676],"type":"Point"},"name":"East Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb056034"},"location":{"coordinates":[-73.996737,40.7533],"type":"Point"},"name":"Golden City Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056035"},"location":{"coordinates":[-74.0082771,40.7130634],"type":"Point"},"name":"Little Italy Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056036"},"location":{"coordinates":[-73.99341299999999,40.633354],"type":"Point"},"name":"Sushi Meshuga"} +,{"_id":{"$oid":"55cba2476c522cafdb056037"},"location":{"coordinates":[-73.8351995,40.7526521],"type":"Point"},"name":"Fresh To You Cafe (Home Depot Parking Lot)"} +,{"_id":{"$oid":"55cba2476c522cafdb056038"},"location":{"coordinates":[-73.96396399999999,40.6773313],"type":"Point"},"name":"Sit \u0026 Wonder"} +,{"_id":{"$oid":"55cba2476c522cafdb056039"},"location":{"coordinates":[-73.9941331,40.6148539],"type":"Point"},"name":"Zio Nino Pizza \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05603a"},"location":{"coordinates":[-73.7685051,40.712857],"type":"Point"},"name":"La-Baguette Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb05603b"},"location":{"coordinates":[-73.992609,40.753943],"type":"Point"},"name":"Sushi Osaka \u0026 Asian Food"} +,{"_id":{"$oid":"55cba2476c522cafdb05603c"},"location":{"coordinates":[-73.7892521,40.7396553],"type":"Point"},"name":"Taipan Halal"} +,{"_id":{"$oid":"55cba2476c522cafdb05603d"},"location":{"coordinates":[-73.8177402,40.7652649],"type":"Point"},"name":"Picnic Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb05603e"},"location":{"coordinates":[-73.9025052,40.860177],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb05603f"},"location":{"coordinates":[-73.90192259999999,40.6444856],"type":"Point"},"name":"New Food King"} +,{"_id":{"$oid":"55cba2476c522cafdb056040"},"location":{"coordinates":[-73.91324999999999,40.7563014],"type":"Point"},"name":"Sun Lok Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056041"},"location":{"coordinates":[-74.126559,40.568297],"type":"Point"},"name":"La Fontana"} +,{"_id":{"$oid":"55cba2476c522cafdb056042"},"location":{"coordinates":[-74.0092858,40.7135918],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb056043"},"location":{"coordinates":[-73.9923144,40.7264509],"type":"Point"},"name":"Bohemian New York"} +,{"_id":{"$oid":"55cba2476c522cafdb056044"},"location":{"coordinates":[-73.992558,40.747836],"type":"Point"},"name":"Healthy Choice Deli And Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056045"},"location":{"coordinates":[-73.9168326,40.815967],"type":"Point"},"name":"Delicioso Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056046"},"location":{"coordinates":[-73.8509773,40.7529864],"type":"Point"},"name":"Carvel"} +,{"_id":{"$oid":"55cba2476c522cafdb056047"},"location":{"coordinates":[-73.8509773,40.7529864],"type":"Point"},"name":"Inseat Service (2Nd Flr)"} +,{"_id":{"$oid":"55cba2476c522cafdb056048"},"location":{"coordinates":[-73.8509773,40.7529864],"type":"Point"},"name":"Employee Cafeteria"} +,{"_id":{"$oid":"55cba2476c522cafdb056049"},"location":{"coordinates":[-73.8509773,40.7529864],"type":"Point"},"name":"Concessions Stand Gac"} +,{"_id":{"$oid":"55cba2476c522cafdb05604a"},"location":{"coordinates":[-73.8509773,40.7529864],"type":"Point"},"name":"Stand 114"} +,{"_id":{"$oid":"55cba2476c522cafdb05604b"},"location":{"coordinates":[-73.8509773,40.7529864],"type":"Point"},"name":"Stand 110"} +,{"_id":{"$oid":"55cba2476c522cafdb05604c"},"location":{"coordinates":[-73.8509773,40.7529864],"type":"Point"},"name":"Sterling Market"} +,{"_id":{"$oid":"55cba2476c522cafdb05604d"},"location":{"coordinates":[-73.8509773,40.7529864],"type":"Point"},"name":"Stand 112"} +,{"_id":{"$oid":"55cba2476c522cafdb05604e"},"location":{"coordinates":[-73.8509773,40.7529864],"type":"Point"},"name":"Delta Kitchen (In Seat Svc Bar 1)"} +,{"_id":{"$oid":"55cba2476c522cafdb05604f"},"location":{"coordinates":[-73.8509773,40.7529864],"type":"Point"},"name":"World'S Fair Market"} +,{"_id":{"$oid":"55cba2476c522cafdb056050"},"location":{"coordinates":[-73.8509773,40.7529864],"type":"Point"},"name":"Stand 140 Beer Island"} +,{"_id":{"$oid":"55cba2476c522cafdb056051"},"location":{"coordinates":[-73.8509773,40.7529864],"type":"Point"},"name":"Stand 142 The Original Cascarino\u001aS Brick Oven Pizzeria \u0026 Ristorante"} +,{"_id":{"$oid":"55cba2476c522cafdb056052"},"location":{"coordinates":[-73.8509773,40.7529864],"type":"Point"},"name":"Catch Of The Day"} +,{"_id":{"$oid":"55cba2476c522cafdb056053"},"location":{"coordinates":[-73.8509773,40.7529864],"type":"Point"},"name":"Stand 137"} +,{"_id":{"$oid":"55cba2476c522cafdb056054"},"location":{"coordinates":[-73.8509773,40.7529864],"type":"Point"},"name":"Stand 135"} +,{"_id":{"$oid":"55cba2476c522cafdb056055"},"location":{"coordinates":[-73.8509773,40.7529864],"type":"Point"},"name":"Dunkin' Donuts, Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb056056"},"location":{"coordinates":[-73.8509773,40.7529864],"type":"Point"},"name":"Stand 123"} +,{"_id":{"$oid":"55cba2476c522cafdb056057"},"location":{"coordinates":[-73.8509773,40.7529864],"type":"Point"},"name":"Stand 121"} +,{"_id":{"$oid":"55cba2476c522cafdb056058"},"location":{"coordinates":[-73.8509773,40.7529864],"type":"Point"},"name":"Field Level In Seat Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb056059"},"location":{"coordinates":[-73.8509773,40.7529864],"type":"Point"},"name":"Stand 402"} +,{"_id":{"$oid":"55cba2476c522cafdb05605a"},"location":{"coordinates":[-73.8509773,40.7529864],"type":"Point"},"name":"Stand 435"} +,{"_id":{"$oid":"55cba2476c522cafdb05605b"},"location":{"coordinates":[-73.8509773,40.7529864],"type":"Point"},"name":"Stand # 433"} +,{"_id":{"$oid":"55cba2476c522cafdb05605c"},"location":{"coordinates":[-73.8509773,40.7529864],"type":"Point"},"name":"Stand 431"} +,{"_id":{"$oid":"55cba2476c522cafdb05605d"},"location":{"coordinates":[-73.8509773,40.7529864],"type":"Point"},"name":"Stand # 425"} +,{"_id":{"$oid":"55cba2476c522cafdb05605e"},"location":{"coordinates":[-73.8509773,40.7529864],"type":"Point"},"name":"Stand 423"} +,{"_id":{"$oid":"55cba2476c522cafdb05605f"},"location":{"coordinates":[-73.8509773,40.7529864],"type":"Point"},"name":"Stand 421"} +,{"_id":{"$oid":"55cba2476c522cafdb056060"},"location":{"coordinates":[-73.8509773,40.7529864],"type":"Point"},"name":"Stand 420"} +,{"_id":{"$oid":"55cba2476c522cafdb056061"},"location":{"coordinates":[-73.8509773,40.7529864],"type":"Point"},"name":"Stand 417"} +,{"_id":{"$oid":"55cba2476c522cafdb056062"},"location":{"coordinates":[-73.8509773,40.7529864],"type":"Point"},"name":"Champions' Club (Stand 119)"} +,{"_id":{"$oid":"55cba2476c522cafdb056063"},"location":{"coordinates":[-73.8509773,40.7529864],"type":"Point"},"name":"Champion Club 1St Base Stand 117"} +,{"_id":{"$oid":"55cba2476c522cafdb056064"},"location":{"coordinates":[-73.8509773,40.7529864],"type":"Point"},"name":"Suite Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb056065"},"location":{"coordinates":[-73.8509773,40.7529864],"type":"Point"},"name":"Stand 139 Taco Frites"} +,{"_id":{"$oid":"55cba2476c522cafdb056066"},"location":{"coordinates":[-73.8509773,40.7529864],"type":"Point"},"name":"318 - Two Boots"} +,{"_id":{"$oid":"55cba2476c522cafdb056067"},"location":{"coordinates":[-73.8509773,40.7529864],"type":"Point"},"name":"Stands 303 And 301 Pepsi Porch"} +,{"_id":{"$oid":"55cba2476c522cafdb056068"},"location":{"coordinates":[-73.8509773,40.7529864],"type":"Point"},"name":"Stand 139 Shake Shack"} +,{"_id":{"$oid":"55cba2476c522cafdb056069"},"location":{"coordinates":[-73.8509773,40.7529864],"type":"Point"},"name":"Stand 139 Blue Smoke"} +,{"_id":{"$oid":"55cba2476c522cafdb05606a"},"location":{"coordinates":[-73.8509773,40.7529864],"type":"Point"},"name":"337 - Burgers \u0026 Dogs"} +,{"_id":{"$oid":"55cba2476c522cafdb05606b"},"location":{"coordinates":[-73.8509773,40.7529864],"type":"Point"},"name":"Stand 335 Beverages \u0026 Snacks"} +,{"_id":{"$oid":"55cba2476c522cafdb05606c"},"location":{"coordinates":[-73.8509773,40.7529864],"type":"Point"},"name":"Left Field Rest Acela 340"} +,{"_id":{"$oid":"55cba2476c522cafdb05606d"},"location":{"coordinates":[-73.8509773,40.7529864],"type":"Point"},"name":"Stand 325 Nathan'S Dogs \u0026 Burgers"} +,{"_id":{"$oid":"55cba2476c522cafdb05606e"},"location":{"coordinates":[-73.8509773,40.7529864],"type":"Point"},"name":"Club Bar #2 Horseshoe Bar (1St Base)"} +,{"_id":{"$oid":"55cba2476c522cafdb05606f"},"location":{"coordinates":[-73.8509773,40.7529864],"type":"Point"},"name":"Stand 327"} +,{"_id":{"$oid":"55cba2476c522cafdb056070"},"location":{"coordinates":[-73.8509773,40.7529864],"type":"Point"},"name":"Stand 312"} +,{"_id":{"$oid":"55cba2476c522cafdb056071"},"location":{"coordinates":[-73.8509773,40.7529864],"type":"Point"},"name":"Club Bar #1 (First Base)"} +,{"_id":{"$oid":"55cba2476c522cafdb056072"},"location":{"coordinates":[-73.8509773,40.7529864],"type":"Point"},"name":"310 - Exelsior"} +,{"_id":{"$oid":"55cba2476c522cafdb056073"},"location":{"coordinates":[-73.8509773,40.7529864],"type":"Point"},"name":"Press Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb056074"},"location":{"coordinates":[-73.8509773,40.7529864],"type":"Point"},"name":"Ceasar/Club Bar #3"} +,{"_id":{"$oid":"55cba2476c522cafdb056075"},"location":{"coordinates":[-73.905541,40.72034499999999],"type":"Point"},"name":"Chasers"} +,{"_id":{"$oid":"55cba2476c522cafdb056076"},"location":{"coordinates":[-73.8509773,40.7529864],"type":"Point"},"name":"Two Boots/ Stand 412"} +,{"_id":{"$oid":"55cba2476c522cafdb056077"},"location":{"coordinates":[-73.8509773,40.7529864],"type":"Point"},"name":"Stand 408"} +,{"_id":{"$oid":"55cba2476c522cafdb056078"},"location":{"coordinates":[-73.8509773,40.7529864],"type":"Point"},"name":"Stand 406"} +,{"_id":{"$oid":"55cba2476c522cafdb056079"},"location":{"coordinates":[-73.8509773,40.7529864],"type":"Point"},"name":"Stand 404"} +,{"_id":{"$oid":"55cba2476c522cafdb05607a"},"location":{"coordinates":[-73.77831599999999,40.689905],"type":"Point"},"name":"Nations Fish Spot"} +,{"_id":{"$oid":"55cba2476c522cafdb05607b"},"location":{"coordinates":[-73.9939338,40.6869054],"type":"Point"},"name":"Cafe Pedlar"} +,{"_id":{"$oid":"55cba2476c522cafdb05607c"},"location":{"coordinates":[-73.9960773,40.7233716],"type":"Point"},"name":"Mcnally Jackson Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05607d"},"location":{"coordinates":[-74.0036516,40.7300864],"type":"Point"},"name":"Berimbau"} +,{"_id":{"$oid":"55cba2476c522cafdb05607e"},"location":{"coordinates":[-73.9953147,40.7226365],"type":"Point"},"name":"Emporio"} +,{"_id":{"$oid":"55cba2476c522cafdb05607f"},"location":{"coordinates":[-73.984122,40.757922],"type":"Point"},"name":"St. Andrews Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056080"},"location":{"coordinates":[-73.9946551,40.7210832],"type":"Point"},"name":"The Vig Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb056081"},"location":{"coordinates":[-73.9094262,40.7750217],"type":"Point"},"name":"Watawa Japanese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056082"},"location":{"coordinates":[-73.8509773,40.7529864],"type":"Point"},"name":"Stand 321 Caesars Club"} +,{"_id":{"$oid":"55cba2476c522cafdb056083"},"location":{"coordinates":[-73.9124892,40.76656990000001],"type":"Point"},"name":"Rotana Hookah Place"} +,{"_id":{"$oid":"55cba2476c522cafdb056084"},"location":{"coordinates":[-74.15063310000001,40.5498043],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb056085"},"location":{"coordinates":[-73.9850378,40.75211789999999],"type":"Point"},"name":"Kitchen Provance"} +,{"_id":{"$oid":"55cba2476c522cafdb056086"},"location":{"coordinates":[-73.869945,40.7704394],"type":"Point"},"name":"Angelina'S Panini Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb056087"},"location":{"coordinates":[-73.9091097,40.707017],"type":"Point"},"name":"Green Jade Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056088"},"location":{"coordinates":[-73.9487839,40.8093846],"type":"Point"},"name":"Safe Horizon"} +,{"_id":{"$oid":"55cba2476c522cafdb056089"},"location":{"coordinates":[-73.82590809999999,40.7434027],"type":"Point"},"name":"Tasty Roast House"} +,{"_id":{"$oid":"55cba2476c522cafdb05608a"},"location":{"coordinates":[-73.89912,40.749695],"type":"Point"},"name":"El Conquistador Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05608b"},"location":{"coordinates":[-73.98883339999999,40.7377915],"type":"Point"},"name":"Lea Wine Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05608c"},"location":{"coordinates":[-73.9628226,40.6145107],"type":"Point"},"name":"Oh! Bagel Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05608d"},"location":{"coordinates":[-73.822726,40.686518],"type":"Point"},"name":"New Thriving Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05608e"},"location":{"coordinates":[-73.9636359,40.675433],"type":"Point"},"name":"Washington Commons"} +,{"_id":{"$oid":"55cba2476c522cafdb05608f"},"location":{"coordinates":[-73.86308679999999,40.8713497],"type":"Point"},"name":"Lee'S Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb056090"},"location":{"coordinates":[-73.96061399999999,40.761981],"type":"Point"},"name":"Taco City"} +,{"_id":{"$oid":"55cba2476c522cafdb056091"},"location":{"coordinates":[-73.9265691,40.8288189],"type":"Point"},"name":"Visitors Clubhouse Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb056092"},"location":{"coordinates":[-73.9265691,40.8288189],"type":"Point"},"name":"Stand 216B Delta Suite"} +,{"_id":{"$oid":"55cba2476c522cafdb056093"},"location":{"coordinates":[-73.9265691,40.8288189],"type":"Point"},"name":"Yankees Clubhouse Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb056094"},"location":{"coordinates":[-73.9265691,40.8288189],"type":"Point"},"name":"Stand 217"} +,{"_id":{"$oid":"55cba2476c522cafdb056095"},"location":{"coordinates":[-73.9265691,40.8288189],"type":"Point"},"name":"Stand 224"} +,{"_id":{"$oid":"55cba2476c522cafdb056096"},"location":{"coordinates":[-73.9265691,40.8288189],"type":"Point"},"name":"Ketal One Lounge Inseat Pantry Ib"} +,{"_id":{"$oid":"55cba2476c522cafdb056097"},"location":{"coordinates":[-73.9265691,40.8288189],"type":"Point"},"name":"Dugout Lounge Inseat Pantry 3B"} +,{"_id":{"$oid":"55cba2476c522cafdb056098"},"location":{"coordinates":[-73.9265691,40.8288189],"type":"Point"},"name":"Legends 100"} +,{"_id":{"$oid":"55cba2476c522cafdb056099"},"location":{"coordinates":[-73.9265691,40.8288189],"type":"Point"},"name":"Mohegan Sun Sports Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05609a"},"location":{"coordinates":[-73.9265691,40.8288189],"type":"Point"},"name":"Stand 310"} +,{"_id":{"$oid":"55cba2476c522cafdb05609b"},"location":{"coordinates":[-73.9265691,40.8288189],"type":"Point"},"name":"Stand 312"} +,{"_id":{"$oid":"55cba2476c522cafdb05609c"},"location":{"coordinates":[-73.9265691,40.8288189],"type":"Point"},"name":"Stand 320 - Premio"} +,{"_id":{"$oid":"55cba2476c522cafdb05609d"},"location":{"coordinates":[-73.9265691,40.8288189],"type":"Point"},"name":"Ny Yankees Concessions (Jim Beam)"} +,{"_id":{"$oid":"55cba2476c522cafdb05609e"},"location":{"coordinates":[-73.9265691,40.8288189],"type":"Point"},"name":"Stand 321"} +,{"_id":{"$oid":"55cba2476c522cafdb05609f"},"location":{"coordinates":[-73.9265691,40.8288189],"type":"Point"},"name":"Stand 331"} +,{"_id":{"$oid":"55cba2476c522cafdb0560a0"},"location":{"coordinates":[-73.9265691,40.8288189],"type":"Point"},"name":"Stand 110 A"} +,{"_id":{"$oid":"55cba2476c522cafdb0560a1"},"location":{"coordinates":[-73.9265691,40.8288189],"type":"Point"},"name":"Stand 110 B"} +,{"_id":{"$oid":"55cba2476c522cafdb0560a2"},"location":{"coordinates":[-73.9265691,40.8288189],"type":"Point"},"name":"Stand 127 Food Court"} +,{"_id":{"$oid":"55cba2476c522cafdb0560a3"},"location":{"coordinates":[-73.9265691,40.8288189],"type":"Point"},"name":"Stand 218A Delta Suite"} +,{"_id":{"$oid":"55cba2476c522cafdb0560a4"},"location":{"coordinates":[-73.9265691,40.8288189],"type":"Point"},"name":"Stand 305"} +,{"_id":{"$oid":"55cba2476c522cafdb0560a5"},"location":{"coordinates":[-73.9265691,40.8288189],"type":"Point"},"name":"Stand 324"} +,{"_id":{"$oid":"55cba2476c522cafdb0560a6"},"location":{"coordinates":[-73.9265691,40.8288189],"type":"Point"},"name":"Stand 318"} +,{"_id":{"$oid":"55cba2476c522cafdb0560a7"},"location":{"coordinates":[-73.9265691,40.8288189],"type":"Point"},"name":"Stand 334 Beer Room"} +,{"_id":{"$oid":"55cba2476c522cafdb0560a8"},"location":{"coordinates":[-73.9265691,40.8288189],"type":"Point"},"name":"Stand 107"} +,{"_id":{"$oid":"55cba2476c522cafdb0560a9"},"location":{"coordinates":[-73.9265691,40.8288189],"type":"Point"},"name":"Stand 112"} +,{"_id":{"$oid":"55cba2476c522cafdb0560aa"},"location":{"coordinates":[-73.9265691,40.8288189],"type":"Point"},"name":"Stand 125 Food Court"} +,{"_id":{"$oid":"55cba2476c522cafdb0560ab"},"location":{"coordinates":[-73.9265691,40.8288189],"type":"Point"},"name":"Stand 132"} +,{"_id":{"$oid":"55cba2476c522cafdb0560ac"},"location":{"coordinates":[-73.9265691,40.8288189],"type":"Point"},"name":"Stand 205"} +,{"_id":{"$oid":"55cba2476c522cafdb0560ad"},"location":{"coordinates":[-73.9265691,40.8288189],"type":"Point"},"name":"Stand 213"} +,{"_id":{"$oid":"55cba2476c522cafdb0560ae"},"location":{"coordinates":[-74.02871499999999,40.622738],"type":"Point"},"name":"Mocha Mocha Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0560af"},"location":{"coordinates":[-73.9771488,40.7853284],"type":"Point"},"name":"Peace Food Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0560b0"},"location":{"coordinates":[-73.9265691,40.8288189],"type":"Point"},"name":"Stand 115"} +,{"_id":{"$oid":"55cba2476c522cafdb0560b1"},"location":{"coordinates":[-73.9265691,40.8288189],"type":"Point"},"name":"Audi Yankee Club"} +,{"_id":{"$oid":"55cba2476c522cafdb0560b2"},"location":{"coordinates":[-73.9265691,40.8288189],"type":"Point"},"name":"Sheppard'S Place Press Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0560b3"},"location":{"coordinates":[-73.9265691,40.8288189],"type":"Point"},"name":"Suite Pantry Suite 30"} +,{"_id":{"$oid":"55cba2476c522cafdb0560b4"},"location":{"coordinates":[-73.9265691,40.8288189],"type":"Point"},"name":"Suite Pantry Suite 4"} +,{"_id":{"$oid":"55cba2476c522cafdb0560b5"},"location":{"coordinates":[-73.9265691,40.8288189],"type":"Point"},"name":"Legends 000"} +,{"_id":{"$oid":"55cba2476c522cafdb0560b6"},"location":{"coordinates":[-73.9265691,40.8288189],"type":"Point"},"name":"Stand 232"} +,{"_id":{"$oid":"55cba2476c522cafdb0560b7"},"location":{"coordinates":[-73.83649799999999,40.8431399],"type":"Point"},"name":"Burger King"} +,{"_id":{"$oid":"55cba2476c522cafdb0560b8"},"location":{"coordinates":[-74.01245469999999,40.7062246],"type":"Point"},"name":"Pret A Manger"} +,{"_id":{"$oid":"55cba2476c522cafdb0560b9"},"location":{"coordinates":[-73.9079151,40.771095],"type":"Point"},"name":"Teal"} +,{"_id":{"$oid":"55cba2476c522cafdb0560ba"},"location":{"coordinates":[-73.9116707,40.8476317],"type":"Point"},"name":"Uptown African Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0560bb"},"location":{"coordinates":[-73.99298689999999,40.7342006],"type":"Point"},"name":"Num Pang"} +,{"_id":{"$oid":"55cba2476c522cafdb0560bc"},"location":{"coordinates":[-73.9802606,40.6856152],"type":"Point"},"name":"Brooklyn Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb0560bd"},"location":{"coordinates":[-73.9448112,40.8135933],"type":"Point"},"name":"Keur Sokhna Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0560be"},"location":{"coordinates":[-73.9960357,40.7473746],"type":"Point"},"name":"Cafe 27"} +,{"_id":{"$oid":"55cba2476c522cafdb0560bf"},"location":{"coordinates":[-74.09517389999999,40.5887642],"type":"Point"},"name":"Lee'S Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb0560c0"},"location":{"coordinates":[-73.95521649999999,40.7138551],"type":"Point"},"name":"Golden Dragon Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0560c1"},"location":{"coordinates":[-73.99186619999999,40.7612432],"type":"Point"},"name":"Horus Too"} +,{"_id":{"$oid":"55cba2476c522cafdb0560c2"},"location":{"coordinates":[-74.0947194,40.6410367],"type":"Point"},"name":"La Nana Restaurante"} +,{"_id":{"$oid":"55cba2476c522cafdb0560c3"},"location":{"coordinates":[-73.86814799999999,40.83254489999999],"type":"Point"},"name":"Mandarin Wok"} +,{"_id":{"$oid":"55cba2476c522cafdb0560c4"},"location":{"coordinates":[-73.9116584,40.8620612],"type":"Point"},"name":"Dallas Bbq"} +,{"_id":{"$oid":"55cba2476c522cafdb0560c5"},"location":{"coordinates":[-73.7833395,40.8395673],"type":"Point"},"name":"Sammy'S Original Shrimp Box"} +,{"_id":{"$oid":"55cba2476c522cafdb0560c6"},"location":{"coordinates":[-73.9805153,40.6685832],"type":"Point"},"name":"La Bagel Delight"} +,{"_id":{"$oid":"55cba2476c522cafdb0560c7"},"location":{"coordinates":[-73.8658835,40.69135259999999],"type":"Point"},"name":"Baskets By Ellee"} +,{"_id":{"$oid":"55cba2476c522cafdb0560c8"},"location":{"coordinates":[-73.9972947,40.7511654],"type":"Point"},"name":"Dunkin' Donuts, Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb0560c9"},"location":{"coordinates":[-73.98502300000001,40.597339],"type":"Point"},"name":"Caffe La Notte"} +,{"_id":{"$oid":"55cba2476c522cafdb0560ca"},"location":{"coordinates":[-74.1333732,40.6376473],"type":"Point"},"name":"Cafe Con Pan Bakery Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb0560cb"},"location":{"coordinates":[-73.98910699999999,40.7394742],"type":"Point"},"name":"Home'S Kitchen Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0560cc"},"location":{"coordinates":[-74.0080141,40.7148489],"type":"Point"},"name":"Dona Bella Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0560cd"},"location":{"coordinates":[-73.8994532,40.6960902],"type":"Point"},"name":"Satyr Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0560ce"},"location":{"coordinates":[-73.8683935,40.7492888],"type":"Point"},"name":"Quisqueya Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0560cf"},"location":{"coordinates":[-74.00796,40.737398],"type":"Point"},"name":"Entwine"} +,{"_id":{"$oid":"55cba2476c522cafdb0560d0"},"location":{"coordinates":[-74.01215979999999,40.7097678],"type":"Point"},"name":"Pronto Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0560d1"},"location":{"coordinates":[-73.944282,40.7228459],"type":"Point"},"name":"Variety Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0560d2"},"location":{"coordinates":[-73.85084309999999,40.9031384],"type":"Point"},"name":"Island Taste Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0560d3"},"location":{"coordinates":[-73.9527786,40.6504578],"type":"Point"},"name":"Denize'S Creole Corner"} +,{"_id":{"$oid":"55cba2476c522cafdb0560d4"},"location":{"coordinates":[-73.99239759999999,40.7401051],"type":"Point"},"name":"Vip Club"} +,{"_id":{"$oid":"55cba2476c522cafdb0560d5"},"location":{"coordinates":[-73.93418150000001,40.8027508],"type":"Point"},"name":"Lechonera La Isla"} +,{"_id":{"$oid":"55cba2476c522cafdb0560d6"},"location":{"coordinates":[-73.895083,40.742796],"type":"Point"},"name":"New Great Wall Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0560d7"},"location":{"coordinates":[-74.0029563,40.7315389],"type":"Point"},"name":"Keste Pizza \u0026 Vino"} +,{"_id":{"$oid":"55cba2476c522cafdb0560d8"},"location":{"coordinates":[-74.00914,40.650217],"type":"Point"},"name":"Mi Castillo Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0560d9"},"location":{"coordinates":[-73.84275219999999,40.8410883],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0560da"},"location":{"coordinates":[-73.912953,40.7535918],"type":"Point"},"name":"New York Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb0560db"},"location":{"coordinates":[-73.760588,40.678873],"type":"Point"},"name":"Skylark Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb0560dc"},"location":{"coordinates":[-73.8652757,40.8167054],"type":"Point"},"name":"New King Dragon Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0560dd"},"location":{"coordinates":[-73.9593385,40.6544119],"type":"Point"},"name":"Mango Seed Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0560de"},"location":{"coordinates":[-73.8702109,40.7519563],"type":"Point"},"name":"Veyta'S Bakery Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0560df"},"location":{"coordinates":[-73.941897,40.676009],"type":"Point"},"name":"Cheung Lee"} +,{"_id":{"$oid":"55cba2476c522cafdb0560e0"},"location":{"coordinates":[-73.9205039,40.86729769999999],"type":"Point"},"name":"Fresh Tortillas"} +,{"_id":{"$oid":"55cba2476c522cafdb0560e1"},"location":{"coordinates":[-73.96163159999999,40.6249387],"type":"Point"},"name":"Benny'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0560e2"},"location":{"coordinates":[-73.99295160000001,40.71563039999999],"type":"Point"},"name":"New Rong Hang Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0560e3"},"location":{"coordinates":[-73.855274,40.8855054],"type":"Point"},"name":"New Chinatown Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0560e4"},"location":{"coordinates":[-73.9671558,40.6397169],"type":"Point"},"name":"Sycamore"} +,{"_id":{"$oid":"55cba2476c522cafdb0560e5"},"location":{"coordinates":[-73.98105679999999,40.7674054],"type":"Point"},"name":"Marea Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0560e6"},"location":{"coordinates":[-73.9964444,40.7239514],"type":"Point"},"name":"La Colombe"} +,{"_id":{"$oid":"55cba2476c522cafdb0560e7"},"location":{"coordinates":[-73.991405,40.7550185],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0560e8"},"location":{"coordinates":[-73.86876149999999,40.7342385],"type":"Point"},"name":"Broadway Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0560e9"},"location":{"coordinates":[-73.9857261,40.7442193],"type":"Point"},"name":"Taco Bell, Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0560ea"},"location":{"coordinates":[-73.9588048,40.7136415],"type":"Point"},"name":"The Grand Victory"} +,{"_id":{"$oid":"55cba2476c522cafdb0560eb"},"location":{"coordinates":[-74.1163037,40.5737707],"type":"Point"},"name":"Ariana Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb0560ec"},"location":{"coordinates":[-73.9827085,40.7715082],"type":"Point"},"name":"Empire Hotel Rooftop"} +,{"_id":{"$oid":"55cba2476c522cafdb0560ed"},"location":{"coordinates":[-73.88313889999999,40.8380259],"type":"Point"},"name":"Ihop Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0560ee"},"location":{"coordinates":[-73.8970899,40.705979],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0560ef"},"location":{"coordinates":[-73.95532089999999,40.6890812],"type":"Point"},"name":"Black Swan"} +,{"_id":{"$oid":"55cba2476c522cafdb0560f0"},"location":{"coordinates":[-73.9728556,40.7856414],"type":"Point"},"name":"Joe:The Art Of Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0560f1"},"location":{"coordinates":[-73.8521191,40.6871337],"type":"Point"},"name":"Queens Buffet"} +,{"_id":{"$oid":"55cba2476c522cafdb0560f2"},"location":{"coordinates":[-73.99038159999999,40.731229],"type":"Point"},"name":"Spice"} +,{"_id":{"$oid":"55cba2476c522cafdb0560f3"},"location":{"coordinates":[-73.86031109999999,40.8874904],"type":"Point"},"name":"New Tien Lung Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0560f4"},"location":{"coordinates":[-73.950711,40.687347],"type":"Point"},"name":"Jamaica Grill Restaurant \u0026 Caterers"} +,{"_id":{"$oid":"55cba2476c522cafdb0560f5"},"location":{"coordinates":[-73.8312382,40.7635871],"type":"Point"},"name":"Golden Carriage"} +,{"_id":{"$oid":"55cba2476c522cafdb0560f6"},"location":{"coordinates":[-73.783741,40.7411504],"type":"Point"},"name":"Amc Theatres Fresh Meadows 7"} +,{"_id":{"$oid":"55cba2476c522cafdb0560f7"},"location":{"coordinates":[-73.8391839,40.6543479],"type":"Point"},"name":"Saffron"} +,{"_id":{"$oid":"55cba2476c522cafdb0560f8"},"location":{"coordinates":[-74.1771674,40.6144973],"type":"Point"},"name":"Nicotra Ballroom // Employee Cafeteria"} +,{"_id":{"$oid":"55cba2476c522cafdb0560f9"},"location":{"coordinates":[-73.831734,40.76363],"type":"Point"},"name":"Sanlian International"} +,{"_id":{"$oid":"55cba2476c522cafdb0560fa"},"location":{"coordinates":[-83.8858832,30.6928791],"type":"Point"},"name":"Burger King"} +,{"_id":{"$oid":"55cba2476c522cafdb0560fb"},"location":{"coordinates":[-73.86728699999999,40.899757],"type":"Point"},"name":"Mary'S Celtic Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0560fc"},"location":{"coordinates":[-73.9265691,40.8288189],"type":"Point"},"name":"Bleacher Food Court"} +,{"_id":{"$oid":"55cba2476c522cafdb0560fd"},"location":{"coordinates":[-73.8279249,40.832127],"type":"Point"},"name":"Carvel Ice Cream"} +,{"_id":{"$oid":"55cba2476c522cafdb0560fe"},"location":{"coordinates":[-74.0025806,40.6841322],"type":"Point"},"name":"Calexico Carne Asada"} +,{"_id":{"$oid":"55cba2476c522cafdb0560ff"},"location":{"coordinates":[-73.9579085,40.7126995],"type":"Point"},"name":"Rye"} +,{"_id":{"$oid":"55cba2476c522cafdb056100"},"location":{"coordinates":[-73.98451299999999,40.5787321],"type":"Point"},"name":"Papa Johns"} +,{"_id":{"$oid":"55cba2476c522cafdb056101"},"location":{"coordinates":[-73.9781179,40.758723],"type":"Point"},"name":"Just Salad"} +,{"_id":{"$oid":"55cba2476c522cafdb056102"},"location":{"coordinates":[-74.1417893,40.6337522],"type":"Point"},"name":"John'S Famous Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb056103"},"location":{"coordinates":[-73.947964,40.775257],"type":"Point"},"name":"Bailey'S Corner Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb056104"},"location":{"coordinates":[-73.9946301,40.6856252],"type":"Point"},"name":"Watty \u0026 Meg"} +,{"_id":{"$oid":"55cba2476c522cafdb056105"},"location":{"coordinates":[-74.163557,40.6083314],"type":"Point"},"name":"Pacini'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb056106"},"location":{"coordinates":[-73.930778,40.66943],"type":"Point"},"name":"Golden Krust Caribbean Bakery \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb056107"},"location":{"coordinates":[-73.95471169999999,40.8201377],"type":"Point"},"name":"Mofongo Del Valle"} +,{"_id":{"$oid":"55cba2476c522cafdb056108"},"location":{"coordinates":[-73.9765604,40.6950751],"type":"Point"},"name":"Towers Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056109"},"location":{"coordinates":[-73.9650056,40.7559881],"type":"Point"},"name":"Madison Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05610a"},"location":{"coordinates":[-73.8652819,40.8637789],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb05610b"},"location":{"coordinates":[-73.9372759,40.6981051],"type":"Point"},"name":"Cholulita Deli \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05610c"},"location":{"coordinates":[-73.99368799999999,40.756181],"type":"Point"},"name":"Mercato"} +,{"_id":{"$oid":"55cba2476c522cafdb05610d"},"location":{"coordinates":[-73.879899,40.74807879999999],"type":"Point"},"name":"Sagitario Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb05610e"},"location":{"coordinates":[-73.8739659,40.7769271],"type":"Point"},"name":"Shuttle Market Cibo Express"} +,{"_id":{"$oid":"55cba2476c522cafdb05610f"},"location":{"coordinates":[-73.8769781,40.7375017],"type":"Point"},"name":"Gino'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056110"},"location":{"coordinates":[-73.95963669999999,40.65540379999999],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb056111"},"location":{"coordinates":[-74.03235,40.6208378],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb056112"},"location":{"coordinates":[-73.8490695,40.7559159],"type":"Point"},"name":"New York Mets Visitors Clubhouse"} +,{"_id":{"$oid":"55cba2476c522cafdb056113"},"location":{"coordinates":[-73.80405669999999,40.7626318],"type":"Point"},"name":"Beer Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb056114"},"location":{"coordinates":[-73.93032629999999,40.67031679999999],"type":"Point"},"name":"Natural Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056115"},"location":{"coordinates":[-73.8490695,40.7559159],"type":"Point"},"name":"New York Mets Home Clubhouse"} +,{"_id":{"$oid":"55cba2476c522cafdb056116"},"location":{"coordinates":[-73.990495,40.734279],"type":"Point"},"name":"Regal Union Square Stadium 14"} +,{"_id":{"$oid":"55cba2476c522cafdb056117"},"location":{"coordinates":[-73.935873,40.84581],"type":"Point"},"name":"La Goya Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb056118"},"location":{"coordinates":[-74.002595,40.74423600000001],"type":"Point"},"name":"Tipsy Parson"} +,{"_id":{"$oid":"55cba2476c522cafdb056119"},"location":{"coordinates":[-73.9864387,40.7473643],"type":"Point"},"name":"Karaoke Wow"} +,{"_id":{"$oid":"55cba2476c522cafdb05611a"},"location":{"coordinates":[-74.008493,40.715618],"type":"Point"},"name":"Sazon"} +,{"_id":{"$oid":"55cba2476c522cafdb05611b"},"location":{"coordinates":[-73.9033419,40.8586157],"type":"Point"},"name":"Tropical Smoochies"} +,{"_id":{"$oid":"55cba2476c522cafdb05611c"},"location":{"coordinates":[-73.993743,40.73878699999999],"type":"Point"},"name":"Aldea Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05611d"},"location":{"coordinates":[-73.95608,40.650753],"type":"Point"},"name":"Four Seasons Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb05611e"},"location":{"coordinates":[-73.9689946,40.7503513],"type":"Point"},"name":"The Ambassador Grill And Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb05611f"},"location":{"coordinates":[-73.9214101,40.81055509999999],"type":"Point"},"name":"La Morada Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056120"},"location":{"coordinates":[-74.17519290000001,40.60404],"type":"Point"},"name":"Taste Of Honey"} +,{"_id":{"$oid":"55cba2476c522cafdb056121"},"location":{"coordinates":[-73.972049,40.677056],"type":"Point"},"name":"Sharlene'S"} +,{"_id":{"$oid":"55cba2476c522cafdb056122"},"location":{"coordinates":[-73.9811769,40.6748993],"type":"Point"},"name":"High Dive"} +,{"_id":{"$oid":"55cba2476c522cafdb056123"},"location":{"coordinates":[-73.945866,40.8083328],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb056124"},"location":{"coordinates":[-73.9483952,40.7954254],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb056125"},"location":{"coordinates":[-73.9458667,40.7509105],"type":"Point"},"name":"Five Star Diner Banquet And Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056126"},"location":{"coordinates":[-73.9223689,40.6448618],"type":"Point"},"name":"Yolie'S Bar \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056127"},"location":{"coordinates":[-73.8993748,40.8592011],"type":"Point"},"name":"Great Wall Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056128"},"location":{"coordinates":[-73.7264459,40.7639842],"type":"Point"},"name":"Starbucks Coffee #14240"} +,{"_id":{"$oid":"55cba2476c522cafdb056129"},"location":{"coordinates":[-73.9910501,40.7659938],"type":"Point"},"name":"Ardesia"} +,{"_id":{"$oid":"55cba2476c522cafdb05612a"},"location":{"coordinates":[-74.1613497,40.6263849],"type":"Point"},"name":"New Great China Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05612b"},"location":{"coordinates":[-73.9934062,40.7568579],"type":"Point"},"name":"Blue Ruin"} +,{"_id":{"$oid":"55cba2476c522cafdb05612c"},"location":{"coordinates":[-73.9846077,40.5768589],"type":"Point"},"name":"Pizza On The Run"} +,{"_id":{"$oid":"55cba2476c522cafdb05612d"},"location":{"coordinates":[-73.7937827,40.6865352],"type":"Point"},"name":"Crown Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb05612e"},"location":{"coordinates":[-73.977689,40.671989],"type":"Point"},"name":"Yamato"} +,{"_id":{"$oid":"55cba2476c522cafdb05612f"},"location":{"coordinates":[-74.0110887,40.6787016],"type":"Point"},"name":"Homemade"} +,{"_id":{"$oid":"55cba2476c522cafdb056130"},"location":{"coordinates":[-73.9572615,40.7293686],"type":"Point"},"name":"Shayz Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb056131"},"location":{"coordinates":[-73.94514459999999,40.8240196],"type":"Point"},"name":"New Golden Dragon Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056132"},"location":{"coordinates":[-73.9036129,40.8762323],"type":"Point"},"name":"New Lune Hing"} +,{"_id":{"$oid":"55cba2476c522cafdb056133"},"location":{"coordinates":[-73.9916296,40.6906013],"type":"Point"},"name":"Checkers"} +,{"_id":{"$oid":"55cba2476c522cafdb056134"},"location":{"coordinates":[-73.9236341,40.7609127],"type":"Point"},"name":"Gleason'S"} +,{"_id":{"$oid":"55cba2476c522cafdb056135"},"location":{"coordinates":[-73.9361686,40.6150257],"type":"Point"},"name":"3Rd \u0026 7"} +,{"_id":{"$oid":"55cba2476c522cafdb056136"},"location":{"coordinates":[-73.9887628,40.729667],"type":"Point"},"name":"Tsampa"} +,{"_id":{"$oid":"55cba2476c522cafdb056137"},"location":{"coordinates":[-73.9510614,40.6633278],"type":"Point"},"name":"La-Baguette Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb056138"},"location":{"coordinates":[-73.9257779,40.741665],"type":"Point"},"name":"China Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb056139"},"location":{"coordinates":[-73.985343,40.7469829],"type":"Point"},"name":"Third Floor Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05613a"},"location":{"coordinates":[-73.94279399999999,40.699474],"type":"Point"},"name":"Towers Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05613b"},"location":{"coordinates":[-73.9198478,40.8151872],"type":"Point"},"name":"Delicia Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb05613c"},"location":{"coordinates":[-73.9814868,40.6746454],"type":"Point"},"name":"Kos Kaffe"} +,{"_id":{"$oid":"55cba2476c522cafdb05613d"},"location":{"coordinates":[-73.909879,40.837528],"type":"Point"},"name":"Bt Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb05613e"},"location":{"coordinates":[-74.0949098,40.5961157],"type":"Point"},"name":"Primo Pizzeria \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05613f"},"location":{"coordinates":[-73.973642,40.756571],"type":"Point"},"name":"Bull \u0026 Bear Waldorf Astoria"} +,{"_id":{"$oid":"55cba2476c522cafdb056140"},"location":{"coordinates":[-73.7432893,40.7167059],"type":"Point"},"name":"Shiny House Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056141"},"location":{"coordinates":[-73.98669799999999,40.759833],"type":"Point"},"name":"Glass House Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb056142"},"location":{"coordinates":[-73.7504601,40.6029354],"type":"Point"},"name":"Bocaditos"} +,{"_id":{"$oid":"55cba2476c522cafdb056143"},"location":{"coordinates":[-73.9475961,40.7037021],"type":"Point"},"name":"Cozzi Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056144"},"location":{"coordinates":[-73.9740088,40.6789828],"type":"Point"},"name":"Bklyn Crepe And Juice Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb056145"},"location":{"coordinates":[-73.95277,40.76762799999999],"type":"Point"},"name":"Palacio Azteca"} +,{"_id":{"$oid":"55cba2476c522cafdb056146"},"location":{"coordinates":[-73.9538042,40.7730966],"type":"Point"},"name":"Suzan Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb056147"},"location":{"coordinates":[-73.9663715,40.7128057],"type":"Point"},"name":"The Woods"} +,{"_id":{"$oid":"55cba2476c522cafdb056148"},"location":{"coordinates":[-74.005055,40.72875],"type":"Point"},"name":"Fresh Tortilla Express"} +,{"_id":{"$oid":"55cba2476c522cafdb056149"},"location":{"coordinates":[-73.921795,40.670391],"type":"Point"},"name":"Zhang'S Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb05614a"},"location":{"coordinates":[-73.8869074,40.7553419],"type":"Point"},"name":"El Coyote Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05614b"},"location":{"coordinates":[-73.8505402,40.8345381],"type":"Point"},"name":"La Cocina Boricua"} +,{"_id":{"$oid":"55cba2476c522cafdb05614c"},"location":{"coordinates":[-73.9812268,40.7607952],"type":"Point"},"name":"The Capital Grille"} +,{"_id":{"$oid":"55cba2476c522cafdb05614d"},"location":{"coordinates":[-73.9761417,40.6817657],"type":"Point"},"name":"Cake Ambiance"} +,{"_id":{"$oid":"55cba2476c522cafdb05614e"},"location":{"coordinates":[-73.88352119999999,40.8801716],"type":"Point"},"name":"Queen Of Tacos"} +,{"_id":{"$oid":"55cba2476c522cafdb05614f"},"location":{"coordinates":[-73.912035,40.8543849],"type":"Point"},"name":"Reyna Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056150"},"location":{"coordinates":[-73.92662949999999,40.7024142],"type":"Point"},"name":"Tandem"} +,{"_id":{"$oid":"55cba2476c522cafdb056151"},"location":{"coordinates":[-73.7796956,40.77767],"type":"Point"},"name":"Tony Roma'S"} +,{"_id":{"$oid":"55cba2476c522cafdb056152"},"location":{"coordinates":[-73.9818528,40.7758988],"type":"Point"},"name":"Luce Restaurant \u0026 Enoteca"} +,{"_id":{"$oid":"55cba2476c522cafdb056153"},"location":{"coordinates":[-73.95841779999999,40.7838507],"type":"Point"},"name":"Heavenly Rest Stop"} +,{"_id":{"$oid":"55cba2476c522cafdb056154"},"location":{"coordinates":[-73.96037749999999,40.5910115],"type":"Point"},"name":"Oasis Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056155"},"location":{"coordinates":[-73.9442816,40.7155306],"type":"Point"},"name":"Mesa Coyoacan"} +,{"_id":{"$oid":"55cba2476c522cafdb056156"},"location":{"coordinates":[-73.8780031,40.8390324],"type":"Point"},"name":"Jimbo'S Hamburger Palace"} +,{"_id":{"$oid":"55cba2476c522cafdb056157"},"location":{"coordinates":[-73.97043599999999,40.6975989],"type":"Point"},"name":"El Cibao Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb056158"},"location":{"coordinates":[-73.991838,40.759984],"type":"Point"},"name":"Two Boots Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056159"},"location":{"coordinates":[-73.95584509999999,40.7079107],"type":"Point"},"name":"Las Tainas Bar \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05615a"},"location":{"coordinates":[-73.95029470000001,40.7184053],"type":"Point"},"name":"Beco"} +,{"_id":{"$oid":"55cba2476c522cafdb05615b"},"location":{"coordinates":[-73.9801992,40.6601937],"type":"Point"},"name":"Farrells"} +,{"_id":{"$oid":"55cba2476c522cafdb05615c"},"location":{"coordinates":[-73.9247718,40.8101983],"type":"Point"},"name":"Chung Ching"} +,{"_id":{"$oid":"55cba2476c522cafdb05615d"},"location":{"coordinates":[-73.9529518,40.6947464],"type":"Point"},"name":"New Tak Luck Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05615e"},"location":{"coordinates":[-73.926513,40.703725],"type":"Point"},"name":"No. 1 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05615f"},"location":{"coordinates":[-73.9373291,40.8206458],"type":"Point"},"name":"King'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056160"},"location":{"coordinates":[-73.9695242,40.6933043],"type":"Point"},"name":"Damas Falafel House"} +,{"_id":{"$oid":"55cba2476c522cafdb056161"},"location":{"coordinates":[-73.9894226,40.7524419],"type":"Point"},"name":"Pret A Manger"} +,{"_id":{"$oid":"55cba2476c522cafdb056162"},"location":{"coordinates":[-73.98054499999999,40.660623],"type":"Point"},"name":"Double Windsor"} +,{"_id":{"$oid":"55cba2476c522cafdb056163"},"location":{"coordinates":[-73.8950725,40.7021725],"type":"Point"},"name":"Spolem"} +,{"_id":{"$oid":"55cba2476c522cafdb056164"},"location":{"coordinates":[-73.8436254,40.8406994],"type":"Point"},"name":"El Bohio Tropical"} +,{"_id":{"$oid":"55cba2476c522cafdb056165"},"location":{"coordinates":[-74.0274606,40.6315968],"type":"Point"},"name":"Nature'S Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb056166"},"location":{"coordinates":[-73.92282569999999,40.7675529],"type":"Point"},"name":"Bakeway"} +,{"_id":{"$oid":"55cba2476c522cafdb056167"},"location":{"coordinates":[-73.994593,40.7206906],"type":"Point"},"name":"Ken \u0026 Cook"} +,{"_id":{"$oid":"55cba2476c522cafdb056168"},"location":{"coordinates":[-73.9152177,40.6582727],"type":"Point"},"name":"This And That No Nonsense Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056169"},"location":{"coordinates":[-73.983994,40.632185],"type":"Point"},"name":"16Th Avenue Glatt"} +,{"_id":{"$oid":"55cba2476c522cafdb05616a"},"location":{"coordinates":[-73.868991,40.865648],"type":"Point"},"name":"Hong Kong Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb05616b"},"location":{"coordinates":[-73.921482,40.817328],"type":"Point"},"name":"Franco'S"} +,{"_id":{"$oid":"55cba2476c522cafdb05616c"},"location":{"coordinates":[-73.9993941,40.7172758],"type":"Point"},"name":"Sun Sai Gai Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05616d"},"location":{"coordinates":[-73.954138,40.731522],"type":"Point"},"name":"La Taverna"} +,{"_id":{"$oid":"55cba2476c522cafdb05616e"},"location":{"coordinates":[-73.9010065,40.8311178],"type":"Point"},"name":"Euro Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05616f"},"location":{"coordinates":[-73.8466768,40.7100684],"type":"Point"},"name":"Cinemart Cinemas"} +,{"_id":{"$oid":"55cba2476c522cafdb056170"},"location":{"coordinates":[-73.9469137,40.7116038],"type":"Point"},"name":"Hachi"} +,{"_id":{"$oid":"55cba2476c522cafdb056171"},"location":{"coordinates":[-73.9880941,40.7456687],"type":"Point"},"name":"The Breslin Lobby Bar \u0026 Room Service Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb056172"},"location":{"coordinates":[-73.9879322,40.7232248],"type":"Point"},"name":"Cafe Himalaya"} +,{"_id":{"$oid":"55cba2476c522cafdb056173"},"location":{"coordinates":[-73.9093128,40.8813203],"type":"Point"},"name":"Dubai Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb056174"},"location":{"coordinates":[-73.83098729999999,40.8889299],"type":"Point"},"name":"Xing Lung"} +,{"_id":{"$oid":"55cba2476c522cafdb056175"},"location":{"coordinates":[-73.99343,40.733942],"type":"Point"},"name":"Cinema Village"} +,{"_id":{"$oid":"55cba2476c522cafdb056176"},"location":{"coordinates":[-73.85518549999999,40.8598885],"type":"Point"},"name":"Venezia Ristorante \u0026 Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056177"},"location":{"coordinates":[-74.0103936,40.7150286],"type":"Point"},"name":"Warren 77"} +,{"_id":{"$oid":"55cba2476c522cafdb056178"},"location":{"coordinates":[-73.98356590000002,40.6790325],"type":"Point"},"name":"Littlefield"} +,{"_id":{"$oid":"55cba2476c522cafdb056179"},"location":{"coordinates":[-73.98819259999999,40.7271115],"type":"Point"},"name":"Mayahuel"} +,{"_id":{"$oid":"55cba2476c522cafdb05617a"},"location":{"coordinates":[-74.00354879999999,40.7513029],"type":"Point"},"name":"Scores"} +,{"_id":{"$oid":"55cba2476c522cafdb05617b"},"location":{"coordinates":[-73.9906117,40.7555253],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb05617c"},"location":{"coordinates":[-73.94113109999999,40.7989046],"type":"Point"},"name":"Bermudez Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb05617d"},"location":{"coordinates":[-73.922004,40.678618],"type":"Point"},"name":"Trini Home Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05617e"},"location":{"coordinates":[-73.9852848,40.7555892],"type":"Point"},"name":"Aureole"} +,{"_id":{"$oid":"55cba2476c522cafdb05617f"},"location":{"coordinates":[-73.93188599999999,40.664006],"type":"Point"},"name":"Chang Jin Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056180"},"location":{"coordinates":[-74.0012163,40.6061284],"type":"Point"},"name":"Chris Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056181"},"location":{"coordinates":[-73.97497589999999,40.7603162],"type":"Point"},"name":"Le Pain Quotidien"} +,{"_id":{"$oid":"55cba2476c522cafdb056182"},"location":{"coordinates":[-73.86366,40.751216],"type":"Point"},"name":"Beky Bakery And Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb056183"},"location":{"coordinates":[-73.98582499999999,40.718228],"type":"Point"},"name":"Nonna L.E.S. Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb056184"},"location":{"coordinates":[-73.8989203,40.7099306],"type":"Point"},"name":"King Wah Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056185"},"location":{"coordinates":[-73.9741851,40.6864272],"type":"Point"},"name":"Habana Outpost"} +,{"_id":{"$oid":"55cba2476c522cafdb056186"},"location":{"coordinates":[-73.9310735,40.65520619999999],"type":"Point"},"name":"Postman'S Cakeworld And Pastries"} +,{"_id":{"$oid":"55cba2476c522cafdb056187"},"location":{"coordinates":[-73.92122599999999,40.669809],"type":"Point"},"name":"Lubense Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb056188"},"location":{"coordinates":[-73.990308,40.76212599999999],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb056189"},"location":{"coordinates":[-73.9500393,40.8100329],"type":"Point"},"name":"Apollo Theatre Concessions"} +,{"_id":{"$oid":"55cba2476c522cafdb05618a"},"location":{"coordinates":[-73.9746128,40.7613979],"type":"Point"},"name":"Maisonnette Kitchen \u0026 Employee Cafeteria"} +,{"_id":{"$oid":"55cba2476c522cafdb05618b"},"location":{"coordinates":[-73.9859737,40.7536194],"type":"Point"},"name":"Crisp"} +,{"_id":{"$oid":"55cba2476c522cafdb05618c"},"location":{"coordinates":[-73.98747329999999,40.7620632],"type":"Point"},"name":"Mother Burger"} +,{"_id":{"$oid":"55cba2476c522cafdb05618d"},"location":{"coordinates":[-73.9853107,40.6780521],"type":"Point"},"name":"Two Tom'S Restaurant Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb05618e"},"location":{"coordinates":[-73.99285499999999,40.73529],"type":"Point"},"name":"Taco Bell/Pizza Hut Express"} +,{"_id":{"$oid":"55cba2476c522cafdb05618f"},"location":{"coordinates":[-73.79247409999999,40.7195384],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb056190"},"location":{"coordinates":[-73.9894387,40.7266568],"type":"Point"},"name":"Ballaro"} +,{"_id":{"$oid":"55cba2476c522cafdb056191"},"location":{"coordinates":[-73.8645025,40.81652030000001],"type":"Point"},"name":"Lin Kee Hong Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056192"},"location":{"coordinates":[-73.9795355,40.7433431],"type":"Point"},"name":"Nobi Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb056193"},"location":{"coordinates":[-73.9438279,40.8101851],"type":"Point"},"name":"Jacob Soul Food Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056194"},"location":{"coordinates":[-74.0139114,40.7053128],"type":"Point"},"name":"Cafe 11"} +,{"_id":{"$oid":"55cba2476c522cafdb056195"},"location":{"coordinates":[-73.983274,40.752565],"type":"Point"},"name":"Zeytinz"} +,{"_id":{"$oid":"55cba2476c522cafdb056196"},"location":{"coordinates":[-73.9566655,40.6737147],"type":"Point"},"name":"Lily \u0026 Fig"} +,{"_id":{"$oid":"55cba2476c522cafdb056197"},"location":{"coordinates":[-73.85520799999999,40.896621],"type":"Point"},"name":"Golden Ring Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056198"},"location":{"coordinates":[-73.996815,40.718765],"type":"Point"},"name":"Golden Steamer"} +,{"_id":{"$oid":"55cba2476c522cafdb056199"},"location":{"coordinates":[-73.96281069999999,40.6097521],"type":"Point"},"name":"Shawarma Ave Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05619a"},"location":{"coordinates":[-73.9740145,40.6655466],"type":"Point"},"name":"Movable Feast Cafe (At The Picnic House)"} +,{"_id":{"$oid":"55cba2476c522cafdb05619b"},"location":{"coordinates":[-73.79436319999999,40.7537379],"type":"Point"},"name":"Pado Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb05619c"},"location":{"coordinates":[-73.8516586,40.8342274],"type":"Point"},"name":"Vito'S Roma Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05619d"},"location":{"coordinates":[-73.918536,40.694076],"type":"Point"},"name":"Rosario Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05619e"},"location":{"coordinates":[-74.1071654,40.5736536],"type":"Point"},"name":"Ralph'S Ices"} +,{"_id":{"$oid":"55cba2476c522cafdb05619f"},"location":{"coordinates":[-73.8032042,40.70775829999999],"type":"Point"},"name":"Burgandy'S Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0561a0"},"location":{"coordinates":[-73.9579033,40.7332745],"type":"Point"},"name":"Anella"} +,{"_id":{"$oid":"55cba2476c522cafdb0561a1"},"location":{"coordinates":[-73.9325659,40.8573807],"type":"Point"},"name":"Locksmith Wine \u0026 Burger Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0561a2"},"location":{"coordinates":[-73.9839161,40.6117849],"type":"Point"},"name":"Rimini Pastry Shoppe"} +,{"_id":{"$oid":"55cba2476c522cafdb0561a3"},"location":{"coordinates":[-74.00985399999999,40.7198459],"type":"Point"},"name":"Locanda Verde"} +,{"_id":{"$oid":"55cba2476c522cafdb0561a4"},"location":{"coordinates":[-73.9921326,40.7243843],"type":"Point"},"name":"Dbgb Kitchen \u0026 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0561a5"},"location":{"coordinates":[-74.0031698,40.7311651],"type":"Point"},"name":"Trattoria Pesche Pasta"} +,{"_id":{"$oid":"55cba2476c522cafdb0561a6"},"location":{"coordinates":[-73.8891613,40.8729738],"type":"Point"},"name":"Choi Yuan"} +,{"_id":{"$oid":"55cba2476c522cafdb0561a7"},"location":{"coordinates":[-74.0049536,40.7081585],"type":"Point"},"name":"The Iron Horse"} +,{"_id":{"$oid":"55cba2476c522cafdb0561a8"},"location":{"coordinates":[-73.9196232,40.7412336],"type":"Point"},"name":"Parador Caleno"} +,{"_id":{"$oid":"55cba2476c522cafdb0561a9"},"location":{"coordinates":[-73.89891999999999,40.749628],"type":"Point"},"name":"La Abundancia Bakery \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0561aa"},"location":{"coordinates":[-73.83091069999999,40.7620842],"type":"Point"},"name":"Place At Main Dance Studio And Ktv"} +,{"_id":{"$oid":"55cba2476c522cafdb0561ab"},"location":{"coordinates":[-73.8551871,40.8977897],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0561ac"},"location":{"coordinates":[-73.982266,40.634415],"type":"Point"},"name":"Matamim Take Out Catering"} +,{"_id":{"$oid":"55cba2476c522cafdb0561ad"},"location":{"coordinates":[-73.9519777,40.5857646],"type":"Point"},"name":"Arbuz"} +,{"_id":{"$oid":"55cba2476c522cafdb0561ae"},"location":{"coordinates":[-73.7602687,40.72038269999999],"type":"Point"},"name":"Crown Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb0561af"},"location":{"coordinates":[-73.951143,40.689772],"type":"Point"},"name":"New Fat Cheng"} +,{"_id":{"$oid":"55cba2476c522cafdb0561b0"},"location":{"coordinates":[-73.7399796,40.7256224],"type":"Point"},"name":"Peking Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0561b1"},"location":{"coordinates":[-73.973642,40.756571],"type":"Point"},"name":"Sir Harry'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0561b2"},"location":{"coordinates":[-73.968,40.762],"type":"Point"},"name":"Le Relais De Venise"} +,{"_id":{"$oid":"55cba2476c522cafdb0561b3"},"location":{"coordinates":[-73.9635289,40.7188272],"type":"Point"},"name":"Mole"} +,{"_id":{"$oid":"55cba2476c522cafdb0561b4"},"location":{"coordinates":[-73.973642,40.756571],"type":"Point"},"name":"Waldorf Astoria-Oscar'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0561b5"},"location":{"coordinates":[-73.9249827,40.7552241],"type":"Point"},"name":"Studio Square Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb0561b6"},"location":{"coordinates":[-73.9258586,40.75478510000001],"type":"Point"},"name":"Studio Square Event Hall"} +,{"_id":{"$oid":"55cba2476c522cafdb0561b7"},"location":{"coordinates":[-73.81455079999999,40.7043111],"type":"Point"},"name":"Or-Yehuda"} +,{"_id":{"$oid":"55cba2476c522cafdb0561b8"},"location":{"coordinates":[-73.9557639,40.7079126],"type":"Point"},"name":"Zamaan Hookah Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0561b9"},"location":{"coordinates":[-73.9534511,40.715565],"type":"Point"},"name":"Best Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0561ba"},"location":{"coordinates":[-73.931637,40.8517706],"type":"Point"},"name":"Subway Sandwich \u0026 Salads"} +,{"_id":{"$oid":"55cba2476c522cafdb0561bb"},"location":{"coordinates":[-74.1481402,40.62462439999999],"type":"Point"},"name":"Carvel"} +,{"_id":{"$oid":"55cba2476c522cafdb0561bc"},"location":{"coordinates":[-73.92068499999999,40.6856715],"type":"Point"},"name":"Weng'S Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb0561bd"},"location":{"coordinates":[-73.9904985,40.7373207],"type":"Point"},"name":"Pret A Manger"} +,{"_id":{"$oid":"55cba2476c522cafdb0561be"},"location":{"coordinates":[-73.988506,40.738884],"type":"Point"},"name":"Mari Vanna"} +,{"_id":{"$oid":"55cba2476c522cafdb0561bf"},"location":{"coordinates":[-73.9824637,40.7463337],"type":"Point"},"name":"Pret A Manger"} +,{"_id":{"$oid":"55cba2476c522cafdb0561c0"},"location":{"coordinates":[-73.96748029999999,40.75594359999999],"type":"Point"},"name":"Gulluoglu Baklava \u0026 Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0561c1"},"location":{"coordinates":[-73.73468,40.6649249],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0561c2"},"location":{"coordinates":[-73.98997299999999,40.66516499999999],"type":"Point"},"name":"Black Horse Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb0561c3"},"location":{"coordinates":[-73.9588243,40.7753957],"type":"Point"},"name":"Burger One Nyc"} +,{"_id":{"$oid":"55cba2476c522cafdb0561c4"},"location":{"coordinates":[-73.927178,40.8648327],"type":"Point"},"name":"Crown Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb0561c5"},"location":{"coordinates":[-73.7550127,40.74928250000001],"type":"Point"},"name":"Imperial Taste"} +,{"_id":{"$oid":"55cba2476c522cafdb0561c6"},"location":{"coordinates":[-73.864605,40.727101],"type":"Point"},"name":"Victoria Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0561c7"},"location":{"coordinates":[-74.0064306,40.744093],"type":"Point"},"name":"Avenue"} +,{"_id":{"$oid":"55cba2476c522cafdb0561c8"},"location":{"coordinates":[-73.98263,40.6652159],"type":"Point"},"name":"Cafe Grumpy"} +,{"_id":{"$oid":"55cba2476c522cafdb0561c9"},"location":{"coordinates":[-74.1910312,40.5523287],"type":"Point"},"name":"Genki Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb0561ca"},"location":{"coordinates":[-73.8473049,40.7082485],"type":"Point"},"name":"Layla Hookah Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb0561cb"},"location":{"coordinates":[-73.99524860000001,40.7441252],"type":"Point"},"name":"Wrapido"} +,{"_id":{"$oid":"55cba2476c522cafdb0561cc"},"location":{"coordinates":[-73.94442200000002,40.7146293],"type":"Point"},"name":"Uncle Louie G"} +,{"_id":{"$oid":"55cba2476c522cafdb0561cd"},"location":{"coordinates":[-73.8830588,40.8806758],"type":"Point"},"name":"Wok Wok Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0561ce"},"location":{"coordinates":[-73.9403464,40.8368928],"type":"Point"},"name":"King House"} +,{"_id":{"$oid":"55cba2476c522cafdb0561cf"},"location":{"coordinates":[-73.79114249999999,40.8568011],"type":"Point"},"name":"City Island Lobster House"} +,{"_id":{"$oid":"55cba2476c522cafdb0561d0"},"location":{"coordinates":[-73.9781179,40.758723],"type":"Point"},"name":"Ben \u0026 Jerry'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0561d1"},"location":{"coordinates":[-73.892971,40.748188],"type":"Point"},"name":"Khaabar Baari"} +,{"_id":{"$oid":"55cba2476c522cafdb0561d2"},"location":{"coordinates":[-73.874055,40.748926],"type":"Point"},"name":"Molcajete"} +,{"_id":{"$oid":"55cba2476c522cafdb0561d3"},"location":{"coordinates":[-73.9915444,40.7599343],"type":"Point"},"name":"Papaya Dog 42Nd St"} +,{"_id":{"$oid":"55cba2476c522cafdb0561d4"},"location":{"coordinates":[-73.9420169,40.7470114],"type":"Point"},"name":"Mr. Wonton"} +,{"_id":{"$oid":"55cba2476c522cafdb0561d5"},"location":{"coordinates":[-73.8468214,40.8366998],"type":"Point"},"name":"George'S Diner-Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0561d6"},"location":{"coordinates":[-73.988607,40.7548606],"type":"Point"},"name":"Fashion 40"} +,{"_id":{"$oid":"55cba2476c522cafdb0561d7"},"location":{"coordinates":[-73.98812939999999,40.7270908],"type":"Point"},"name":"Cherin Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb0561d8"},"location":{"coordinates":[-73.9113752,40.7680135],"type":"Point"},"name":"Alsham Pastries"} +,{"_id":{"$oid":"55cba2476c522cafdb0561d9"},"location":{"coordinates":[-74.102679,40.5779654],"type":"Point"},"name":"Nunzio Pizzeria'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0561da"},"location":{"coordinates":[-73.9618102,40.6822304],"type":"Point"},"name":"Samantha'S Southern Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb0561db"},"location":{"coordinates":[-74.2330958,40.5077662],"type":"Point"},"name":"South Shore Little League Concesion Stand"} +,{"_id":{"$oid":"55cba2476c522cafdb0561dc"},"location":{"coordinates":[-73.99485659999999,40.7524928],"type":"Point"},"name":"Cafe Bistro"} +,{"_id":{"$oid":"55cba2476c522cafdb0561dd"},"location":{"coordinates":[-73.9471015,40.79067209999999],"type":"Point"},"name":"El Paso Restaurante Mexicano"} +,{"_id":{"$oid":"55cba2476c522cafdb0561de"},"location":{"coordinates":[-73.90702929999999,40.8876856],"type":"Point"},"name":"Salvatores Of Soho"} +,{"_id":{"$oid":"55cba2476c522cafdb0561df"},"location":{"coordinates":[-73.8932044,40.8601441],"type":"Point"},"name":"J \u0026 D Caribbean Soul Food Fish-N-Chip Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0561e0"},"location":{"coordinates":[-73.978011,40.779019],"type":"Point"},"name":"Lenny'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0561e1"},"location":{"coordinates":[-73.9793564,40.7589426],"type":"Point"},"name":"Lenny'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0561e2"},"location":{"coordinates":[-73.88753419999999,40.7555337],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0561e3"},"location":{"coordinates":[-73.97579120000002,40.7493151],"type":"Point"},"name":"Just Salad"} +,{"_id":{"$oid":"55cba2476c522cafdb0561e4"},"location":{"coordinates":[-73.8470944,40.7165087],"type":"Point"},"name":"Pasticceria Amore D'Italia"} +,{"_id":{"$oid":"55cba2476c522cafdb0561e5"},"location":{"coordinates":[-73.9550454,40.5763032],"type":"Point"},"name":"Paul'S Daughter"} +,{"_id":{"$oid":"55cba2476c522cafdb0561e6"},"location":{"coordinates":[-73.9371857,40.8550255],"type":"Point"},"name":"Refried Beans"} +,{"_id":{"$oid":"55cba2476c522cafdb0561e7"},"location":{"coordinates":[-73.91703199999999,40.76457],"type":"Point"},"name":"Brooklyn Bagel \u0026 Coffee Company"} +,{"_id":{"$oid":"55cba2476c522cafdb0561e8"},"location":{"coordinates":[-73.9110522,40.8310706],"type":"Point"},"name":"New Sheng Li Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0561e9"},"location":{"coordinates":[-74.005578,40.732983],"type":"Point"},"name":"Baoguette Pho Sure"} +,{"_id":{"$oid":"55cba2476c522cafdb0561ea"},"location":{"coordinates":[-74.0075402,40.7151466],"type":"Point"},"name":"Babaghanoush"} +,{"_id":{"$oid":"55cba2476c522cafdb0561eb"},"location":{"coordinates":[-73.9653551,40.7828647],"type":"Point"},"name":"(Public Fare) 81St Street And Central Park West (Delacorte Theatre)"} +,{"_id":{"$oid":"55cba2476c522cafdb0561ec"},"location":{"coordinates":[-73.9455182,40.7190591],"type":"Point"},"name":"Grandma Rose'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0561ed"},"location":{"coordinates":[-73.95317720000001,40.7763038],"type":"Point"},"name":"Caeldonia"} +,{"_id":{"$oid":"55cba2476c522cafdb0561ee"},"location":{"coordinates":[-73.93190500000001,40.6184337],"type":"Point"},"name":"Papa Johns"} +,{"_id":{"$oid":"55cba2476c522cafdb0561ef"},"location":{"coordinates":[-73.9614373,40.6939838],"type":"Point"},"name":"Nathan'S Famous Carvel Ice Cream"} +,{"_id":{"$oid":"55cba2476c522cafdb0561f0"},"location":{"coordinates":[-73.88648210000001,40.5666985],"type":"Point"},"name":"Country Heart Cooking"} +,{"_id":{"$oid":"55cba2476c522cafdb0561f1"},"location":{"coordinates":[-74.0269692,40.6340537],"type":"Point"},"name":"Fresh Tortilla Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0561f2"},"location":{"coordinates":[-73.9903382,40.66059790000001],"type":"Point"},"name":"Lot 2"} +,{"_id":{"$oid":"55cba2476c522cafdb0561f3"},"location":{"coordinates":[-73.98294899999999,40.7317368],"type":"Point"},"name":"Kati Thai Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb0561f4"},"location":{"coordinates":[-73.9500631,40.6531118],"type":"Point"},"name":"Good Friends Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0561f5"},"location":{"coordinates":[-74.1354999,40.635352],"type":"Point"},"name":"El Lobito Loco"} +,{"_id":{"$oid":"55cba2476c522cafdb0561f6"},"location":{"coordinates":[-73.9835878,40.6121243],"type":"Point"},"name":"Fugu Japanese Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb0561f7"},"location":{"coordinates":[-73.8513771,40.8321105],"type":"Point"},"name":"Brisas Del Caribe"} +,{"_id":{"$oid":"55cba2476c522cafdb0561f8"},"location":{"coordinates":[-73.8673115,40.8967817],"type":"Point"},"name":"Bella Napoli"} +,{"_id":{"$oid":"55cba2476c522cafdb0561f9"},"location":{"coordinates":[-73.83153899999999,40.76124],"type":"Point"},"name":"Han Song Ting Retaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0561fa"},"location":{"coordinates":[-73.9207531,40.8673808],"type":"Point"},"name":"Guadalupe Bar And Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0561fb"},"location":{"coordinates":[-73.9096617,40.7750776],"type":"Point"},"name":"Tasty'S Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb0561fc"},"location":{"coordinates":[-73.9077518,40.8158272],"type":"Point"},"name":"Pastora Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0561fd"},"location":{"coordinates":[-73.99480900000002,40.7548869],"type":"Point"},"name":"El Ranchito Del Agave"} +,{"_id":{"$oid":"55cba2476c522cafdb0561fe"},"location":{"coordinates":[-73.8951675,40.86055959999999],"type":"Point"},"name":"China City"} +,{"_id":{"$oid":"55cba2476c522cafdb0561ff"},"location":{"coordinates":[-73.9062825,40.8175952],"type":"Point"},"name":"Hing Wong Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056200"},"location":{"coordinates":[-73.9949331,40.7546042],"type":"Point"},"name":"Bombay Deli Pizza \u0026 Tandoori Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056201"},"location":{"coordinates":[-73.95752399999999,40.6085204],"type":"Point"},"name":"Lan King Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056202"},"location":{"coordinates":[-73.963419,40.674477],"type":"Point"},"name":"Tom'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056203"},"location":{"coordinates":[-73.8967823,40.8221448],"type":"Point"},"name":"Good Taste Chinese"} +,{"_id":{"$oid":"55cba2476c522cafdb056204"},"location":{"coordinates":[-73.9760424,40.6270542],"type":"Point"},"name":"Kensington Catering (Ateres Chinka)"} +,{"_id":{"$oid":"55cba2476c522cafdb056205"},"location":{"coordinates":[-73.986441,40.732655],"type":"Point"},"name":"Vanessa'S Dumpling"} +,{"_id":{"$oid":"55cba2476c522cafdb056206"},"location":{"coordinates":[-73.72574259999999,40.7652333],"type":"Point"},"name":"Five Guys Burgers And Fries"} +,{"_id":{"$oid":"55cba2476c522cafdb056207"},"location":{"coordinates":[-73.9848403,40.73994640000001],"type":"Point"},"name":"Gramercy Theatre"} +,{"_id":{"$oid":"55cba2476c522cafdb056208"},"location":{"coordinates":[-73.9145157,40.7011561],"type":"Point"},"name":"Montazo Restaurant Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb056209"},"location":{"coordinates":[-73.7990097,40.6739344],"type":"Point"},"name":"R.C.L Enterprises Inc."} +,{"_id":{"$oid":"55cba2476c522cafdb05620a"},"location":{"coordinates":[-73.8955697,40.8667363],"type":"Point"},"name":"China Wok"} +,{"_id":{"$oid":"55cba2476c522cafdb05620b"},"location":{"coordinates":[-73.992924,40.738441],"type":"Point"},"name":"Ryehouse"} +,{"_id":{"$oid":"55cba2476c522cafdb05620c"},"location":{"coordinates":[-73.94549789999999,40.8133694],"type":"Point"},"name":"Great Wall Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb05620d"},"location":{"coordinates":[-73.9822045,40.7240313],"type":"Point"},"name":"Oda House Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05620e"},"location":{"coordinates":[-73.833541,40.759974],"type":"Point"},"name":"Templegate Snacks"} +,{"_id":{"$oid":"55cba2476c522cafdb05620f"},"location":{"coordinates":[-73.9805855,40.6643947],"type":"Point"},"name":"New Yummy Taco"} +,{"_id":{"$oid":"55cba2476c522cafdb056210"},"location":{"coordinates":[-73.993089,40.743638],"type":"Point"},"name":"Hampton Inn Chelsea"} +,{"_id":{"$oid":"55cba2476c522cafdb056211"},"location":{"coordinates":[-74.0004592,40.70810180000001],"type":"Point"},"name":"Cowgirl Seahorse"} +,{"_id":{"$oid":"55cba2476c522cafdb056212"},"location":{"coordinates":[-73.7925709,40.7385919],"type":"Point"},"name":"Fat Boys Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056213"},"location":{"coordinates":[-73.9830362,40.7442068],"type":"Point"},"name":"Toon Thai Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056214"},"location":{"coordinates":[-73.85859169999999,40.7296283],"type":"Point"},"name":"Eilat Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056215"},"location":{"coordinates":[-73.7629377,40.7136035],"type":"Point"},"name":"El Palo Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056216"},"location":{"coordinates":[-73.78668139999999,40.7076501],"type":"Point"},"name":"Tropical Fantasy Bar And Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb056217"},"location":{"coordinates":[-92.7288562,41.7461743],"type":"Point"},"name":"Green Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056218"},"location":{"coordinates":[-73.98248099999999,40.742127],"type":"Point"},"name":"Tamba Indian Grill \u0026 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb056219"},"location":{"coordinates":[-73.950767,40.779699],"type":"Point"},"name":"O Sha Thai Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb05621a"},"location":{"coordinates":[-73.913308,40.775018],"type":"Point"},"name":"Stamatis Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05621b"},"location":{"coordinates":[-73.930981,40.5861965],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb05621c"},"location":{"coordinates":[-74.163557,40.6083314],"type":"Point"},"name":"Subway Sandwiches"} +,{"_id":{"$oid":"55cba2476c522cafdb05621d"},"location":{"coordinates":[-73.8633519,40.75169229999999],"type":"Point"},"name":"Pasiones Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05621e"},"location":{"coordinates":[-73.9744841,40.68084109999999],"type":"Point"},"name":"Chan Yang Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05621f"},"location":{"coordinates":[-73.8628763,40.749382],"type":"Point"},"name":"Paladares Bakery \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056220"},"location":{"coordinates":[-73.89022709999999,40.8116983],"type":"Point"},"name":"Allen Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056221"},"location":{"coordinates":[-73.952449,40.5872302],"type":"Point"},"name":"Coffee Spot Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056222"},"location":{"coordinates":[-73.993016,40.7495244],"type":"Point"},"name":"Moe'S Southwest Grill/Planet Smoothies"} +,{"_id":{"$oid":"55cba2476c522cafdb056223"},"location":{"coordinates":[-73.98452390000001,40.588199],"type":"Point"},"name":"Bread Plus"} +,{"_id":{"$oid":"55cba2476c522cafdb056224"},"location":{"coordinates":[-73.9958791,40.7635291],"type":"Point"},"name":"Ogilvy \u0026 Mather"} +,{"_id":{"$oid":"55cba2476c522cafdb056225"},"location":{"coordinates":[-73.993545,40.726621],"type":"Point"},"name":"The Smile"} +,{"_id":{"$oid":"55cba2476c522cafdb056226"},"location":{"coordinates":[-73.9949936,40.684832],"type":"Point"},"name":"Osaka"} +,{"_id":{"$oid":"55cba2476c522cafdb056227"},"location":{"coordinates":[-73.8483229,40.7098129],"type":"Point"},"name":"Nick'S Bistro"} +,{"_id":{"$oid":"55cba2476c522cafdb056228"},"location":{"coordinates":[-73.8975999,40.8171174],"type":"Point"},"name":"Daisy'S Pizza Wings \u0026 Burgers"} +,{"_id":{"$oid":"55cba2476c522cafdb056229"},"location":{"coordinates":[-73.992642,40.616286],"type":"Point"},"name":"Caffe Italia"} +,{"_id":{"$oid":"55cba2476c522cafdb05622a"},"location":{"coordinates":[-73.9480576,40.8291193],"type":"Point"},"name":"Tonelli Cafe Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05622b"},"location":{"coordinates":[-74.0094507,40.7382579],"type":"Point"},"name":"Jane Street Hotel"} +,{"_id":{"$oid":"55cba2476c522cafdb05622c"},"location":{"coordinates":[-74.0135543,40.6766176],"type":"Point"},"name":"Fort Defiance"} +,{"_id":{"$oid":"55cba2476c522cafdb05622d"},"location":{"coordinates":[-73.99835999999999,40.738319],"type":"Point"},"name":"Bunga'S Den"} +,{"_id":{"$oid":"55cba2476c522cafdb05622e"},"location":{"coordinates":[-73.8727177,40.7511367],"type":"Point"},"name":"Tacos Morelos Bar Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05622f"},"location":{"coordinates":[-73.920844,40.630815],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb056230"},"location":{"coordinates":[-74.00208700000002,40.725135],"type":"Point"},"name":"Le Pescadeux"} +,{"_id":{"$oid":"55cba2476c522cafdb056231"},"location":{"coordinates":[-73.9075393,40.7173788],"type":"Point"},"name":"C J Banquet Latino"} +,{"_id":{"$oid":"55cba2476c522cafdb056232"},"location":{"coordinates":[-73.97565089999999,40.6807673],"type":"Point"},"name":"Bark"} +,{"_id":{"$oid":"55cba2476c522cafdb056233"},"location":{"coordinates":[-73.9396701,40.797999],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb056234"},"location":{"coordinates":[-73.8435859,40.8690817],"type":"Point"},"name":"T.G.I. Friday'S"} +,{"_id":{"$oid":"55cba2476c522cafdb056235"},"location":{"coordinates":[-73.85904169999999,40.7507633],"type":"Point"},"name":"La Nueva Ambatenita Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb056236"},"location":{"coordinates":[-73.9210736,40.7634438],"type":"Point"},"name":"Bareburger"} +,{"_id":{"$oid":"55cba2476c522cafdb056237"},"location":{"coordinates":[-73.819846,40.824316],"type":"Point"},"name":"The Original Emilio'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056238"},"location":{"coordinates":[-73.952513,40.7253155],"type":"Point"},"name":"Cup"} +,{"_id":{"$oid":"55cba2476c522cafdb056239"},"location":{"coordinates":[-73.99487730000001,40.6798163],"type":"Point"},"name":"New Ting Hua Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05623a"},"location":{"coordinates":[-73.864654,40.679231],"type":"Point"},"name":"Motin Spicy \u0026 Sweets"} +,{"_id":{"$oid":"55cba2476c522cafdb05623b"},"location":{"coordinates":[-73.96943759999999,40.7572813],"type":"Point"},"name":"Sushi Jun"} +,{"_id":{"$oid":"55cba2476c522cafdb05623c"},"location":{"coordinates":[-74.23116569999999,40.5107441],"type":"Point"},"name":"South Shore Little League"} +,{"_id":{"$oid":"55cba2476c522cafdb05623d"},"location":{"coordinates":[-73.99137189999999,40.7470668],"type":"Point"},"name":"Doubletree By Hilton (Chelton'S Bar And Grill)"} +,{"_id":{"$oid":"55cba2476c522cafdb05623e"},"location":{"coordinates":[-73.9822946,40.7403656],"type":"Point"},"name":"Bagel Express Iii"} +,{"_id":{"$oid":"55cba2476c522cafdb05623f"},"location":{"coordinates":[-73.8276147,40.7667353],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb056240"},"location":{"coordinates":[-74.029516,40.6192939],"type":"Point"},"name":"Cranberrys"} +,{"_id":{"$oid":"55cba2476c522cafdb056241"},"location":{"coordinates":[-73.7894513,40.7663688],"type":"Point"},"name":"57'S All American Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb056242"},"location":{"coordinates":[-73.976288,40.596872],"type":"Point"},"name":"Cafe Caggiano"} +,{"_id":{"$oid":"55cba2476c522cafdb056243"},"location":{"coordinates":[-73.82496499999999,40.733716],"type":"Point"},"name":"Carlos And Gabby'S"} +,{"_id":{"$oid":"55cba2476c522cafdb056244"},"location":{"coordinates":[-73.92511999999999,40.690973],"type":"Point"},"name":"Lucky Chen Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056245"},"location":{"coordinates":[-73.8691296,40.75698879999999],"type":"Point"},"name":"Papa John'S"} +,{"_id":{"$oid":"55cba2476c522cafdb056246"},"location":{"coordinates":[-73.9108655,40.7686462],"type":"Point"},"name":"Duzan"} +,{"_id":{"$oid":"55cba2476c522cafdb056247"},"location":{"coordinates":[-73.9806261,40.7778468],"type":"Point"},"name":"The Lite Choice"} +,{"_id":{"$oid":"55cba2476c522cafdb056248"},"location":{"coordinates":[-73.86519369999999,40.8652192],"type":"Point"},"name":"New Allerton Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056249"},"location":{"coordinates":[-73.9559876,40.8140414],"type":"Point"},"name":"La Caridad Express"} +,{"_id":{"$oid":"55cba2476c522cafdb05624a"},"location":{"coordinates":[-73.98038199999999,40.772534],"type":"Point"},"name":"Jewish Guild For The Blind Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05624b"},"location":{"coordinates":[-73.9573948,40.72188120000001],"type":"Point"},"name":"Brooklyn Bowl"} +,{"_id":{"$oid":"55cba2476c522cafdb05624c"},"location":{"coordinates":[-74.00057600000001,40.682305],"type":"Point"},"name":"Koto Sushi \u0026 Steak"} +,{"_id":{"$oid":"55cba2476c522cafdb05624d"},"location":{"coordinates":[-73.9746128,40.7613979],"type":"Point"},"name":"The King Cole Bar And Salon"} +,{"_id":{"$oid":"55cba2476c522cafdb05624e"},"location":{"coordinates":[-73.9746128,40.7613979],"type":"Point"},"name":"St Regis New York - 20Th Floor Roof Ballroom"} +,{"_id":{"$oid":"55cba2476c522cafdb05624f"},"location":{"coordinates":[-73.89616199999999,40.7466337],"type":"Point"},"name":"69 Bar Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb056250"},"location":{"coordinates":[-73.9818599,40.7596629],"type":"Point"},"name":"Oceana"} +,{"_id":{"$oid":"55cba2476c522cafdb056251"},"location":{"coordinates":[-73.98480200000002,40.745735],"type":"Point"},"name":"Tasty Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056252"},"location":{"coordinates":[-73.9867735,40.7400748],"type":"Point"},"name":"Spin New York"} +,{"_id":{"$oid":"55cba2476c522cafdb056253"},"location":{"coordinates":[-73.972703,40.791407],"type":"Point"},"name":"Edgar'S Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056254"},"location":{"coordinates":[-73.93354099999999,40.669581],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb056255"},"location":{"coordinates":[-73.9428393,40.6556475],"type":"Point"},"name":"Brick Pizzeria/Nathan'S Famous Hot Dogs"} +,{"_id":{"$oid":"55cba2476c522cafdb056256"},"location":{"coordinates":[-73.85799700000001,40.833758],"type":"Point"},"name":"Kismet Caterers"} +,{"_id":{"$oid":"55cba2476c522cafdb056257"},"location":{"coordinates":[-73.981859,40.7450509],"type":"Point"},"name":"Natureworks Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056258"},"location":{"coordinates":[-73.884851,40.7494622],"type":"Point"},"name":"La Casa De Los Anojitos"} +,{"_id":{"$oid":"55cba2476c522cafdb056259"},"location":{"coordinates":[-73.98867,40.757863],"type":"Point"},"name":"Ny Gourmet Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb05625a"},"location":{"coordinates":[-73.98204319999999,40.6828371],"type":"Point"},"name":"Lano'S Coffee Shop \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05625b"},"location":{"coordinates":[-73.89811569999999,40.8671555],"type":"Point"},"name":"2647 Double Dragon Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05625c"},"location":{"coordinates":[-73.97326559999999,40.6787246],"type":"Point"},"name":"Healthy Nibbles"} +,{"_id":{"$oid":"55cba2476c522cafdb05625d"},"location":{"coordinates":[-73.985214,40.72328],"type":"Point"},"name":"Mary O'S"} +,{"_id":{"$oid":"55cba2476c522cafdb05625e"},"location":{"coordinates":[-74.075734,40.627277],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb05625f"},"location":{"coordinates":[-74.2334759,40.5167888],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb056260"},"location":{"coordinates":[-74.0044727,40.7176769],"type":"Point"},"name":"Billy'S Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb056261"},"location":{"coordinates":[-73.92734399999999,40.75566999999999],"type":"Point"},"name":"Chopstick King \u0026 New Yummy Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056262"},"location":{"coordinates":[-73.9236332,40.6446379],"type":"Point"},"name":"Island Grove Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056263"},"location":{"coordinates":[-73.94786599999999,40.600006],"type":"Point"},"name":"No. 1 Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056264"},"location":{"coordinates":[-73.80711699999999,40.7144463],"type":"Point"},"name":"Checkers"} +,{"_id":{"$oid":"55cba2476c522cafdb056265"},"location":{"coordinates":[-73.98305169999999,40.72798909999999],"type":"Point"},"name":"Thirstea Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056266"},"location":{"coordinates":[-92.7358943,41.7461516],"type":"Point"},"name":"Rossetti'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056267"},"location":{"coordinates":[-73.9224461,40.6445407],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb056268"},"location":{"coordinates":[-73.85195999999999,40.6666906],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb056269"},"location":{"coordinates":[-73.9849492,40.7599577],"type":"Point"},"name":"Morgan Stanley"} +,{"_id":{"$oid":"55cba2476c522cafdb05626a"},"location":{"coordinates":[-73.955106,40.7790608],"type":"Point"},"name":"Barnes \u0026 Noble Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05626b"},"location":{"coordinates":[-73.9032959,40.6805769],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb05626c"},"location":{"coordinates":[-73.959136,40.80675280000001],"type":"Point"},"name":"The Faculty House"} +,{"_id":{"$oid":"55cba2476c522cafdb05626d"},"location":{"coordinates":[-73.9049993,40.8626757],"type":"Point"},"name":"Super Kennedy'S Chicken \u0026 Sandwiches"} +,{"_id":{"$oid":"55cba2476c522cafdb05626e"},"location":{"coordinates":[-73.983611,40.671985],"type":"Point"},"name":"Bagel World"} +,{"_id":{"$oid":"55cba2476c522cafdb05626f"},"location":{"coordinates":[-73.8836616,40.7555881],"type":"Point"},"name":"La Colombianita Bakery 2"} +,{"_id":{"$oid":"55cba2476c522cafdb056270"},"location":{"coordinates":[-73.8848531,40.8544527],"type":"Point"},"name":"Las Orquideas Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056271"},"location":{"coordinates":[-73.9191901,40.7045395],"type":"Point"},"name":"Foca Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056272"},"location":{"coordinates":[-74.0102777,40.7037299],"type":"Point"},"name":"Nu Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb056273"},"location":{"coordinates":[-73.98151899999999,40.6633624],"type":"Point"},"name":"Provini Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056274"},"location":{"coordinates":[-73.9931932,40.7411447],"type":"Point"},"name":"Slate"} +,{"_id":{"$oid":"55cba2476c522cafdb056275"},"location":{"coordinates":[-73.985519,40.732147],"type":"Point"},"name":"Finnerty'S"} +,{"_id":{"$oid":"55cba2476c522cafdb056276"},"location":{"coordinates":[-73.8636044,40.8378461],"type":"Point"},"name":"Parkchester Fish \u0026 Chips"} +,{"_id":{"$oid":"55cba2476c522cafdb056277"},"location":{"coordinates":[-73.7100196,40.7369867],"type":"Point"},"name":"Great Wall"} +,{"_id":{"$oid":"55cba2476c522cafdb056278"},"location":{"coordinates":[-73.8453055,40.6800226],"type":"Point"},"name":"Tommy'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056279"},"location":{"coordinates":[-73.9563709,40.7719433],"type":"Point"},"name":"Pick A Bagel"} +,{"_id":{"$oid":"55cba2476c522cafdb05627a"},"location":{"coordinates":[-73.99354869999999,40.7535702],"type":"Point"},"name":"Asari Sushi/Aj 36 Chinese Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb05627b"},"location":{"coordinates":[-74.0069736,40.7180192],"type":"Point"},"name":"New York Law School"} +,{"_id":{"$oid":"55cba2476c522cafdb05627c"},"location":{"coordinates":[-73.736595,40.718296],"type":"Point"},"name":"El Patio"} +,{"_id":{"$oid":"55cba2476c522cafdb05627d"},"location":{"coordinates":[-73.82771699999999,40.755074],"type":"Point"},"name":"Maple Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb05627e"},"location":{"coordinates":[-73.8923824,40.7705498],"type":"Point"},"name":"Chop-Stick Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05627f"},"location":{"coordinates":[-73.822546,40.766793],"type":"Point"},"name":"Dae Bak Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056280"},"location":{"coordinates":[-74.1004863,40.5656166],"type":"Point"},"name":"Uncle Louie G'S"} +,{"_id":{"$oid":"55cba2476c522cafdb056281"},"location":{"coordinates":[-73.7905772,40.72638329999999],"type":"Point"},"name":"New Yummy Taco"} +,{"_id":{"$oid":"55cba2476c522cafdb056282"},"location":{"coordinates":[-73.960064,40.69059499999999],"type":"Point"},"name":"Umi Nom"} +,{"_id":{"$oid":"55cba2476c522cafdb056283"},"location":{"coordinates":[-73.8178186,40.7341821],"type":"Point"},"name":"Queens College Student Union Sa Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb056284"},"location":{"coordinates":[-73.9534062,40.7800141],"type":"Point"},"name":"Trattoria Pesce Pasta"} +,{"_id":{"$oid":"55cba2476c522cafdb056285"},"location":{"coordinates":[-73.8178186,40.7341821],"type":"Point"},"name":"Science Building - Naked Pear Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056286"},"location":{"coordinates":[-73.8996766,40.8846487],"type":"Point"},"name":"Bronx Alehouse"} +,{"_id":{"$oid":"55cba2476c522cafdb056287"},"location":{"coordinates":[-73.82397139999999,40.7816827],"type":"Point"},"name":"Cafeteria (Usps Bldng)"} +,{"_id":{"$oid":"55cba2476c522cafdb056288"},"location":{"coordinates":[-73.96948549999999,40.6047112],"type":"Point"},"name":"David'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056289"},"location":{"coordinates":[-73.9356201,40.8440057],"type":"Point"},"name":"Cristina And Rachel Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05628a"},"location":{"coordinates":[-73.9773555,40.7501741],"type":"Point"},"name":"Blooms Delicatessen And Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05628b"},"location":{"coordinates":[-74.01178209999999,40.6355972],"type":"Point"},"name":"Mix"} +,{"_id":{"$oid":"55cba2476c522cafdb05628c"},"location":{"coordinates":[-73.87010649999999,40.7492781],"type":"Point"},"name":"Jing Fu House"} +,{"_id":{"$oid":"55cba2476c522cafdb05628d"},"location":{"coordinates":[-73.9877113,40.7644694],"type":"Point"},"name":"Lucky'S Famous"} +,{"_id":{"$oid":"55cba2476c522cafdb05628e"},"location":{"coordinates":[-73.93697039999999,40.8493659],"type":"Point"},"name":"Twin Donut"} +,{"_id":{"$oid":"55cba2476c522cafdb05628f"},"location":{"coordinates":[-73.8178186,40.7341821],"type":"Point"},"name":"Q Cafe (Queens College)"} +,{"_id":{"$oid":"55cba2476c522cafdb056290"},"location":{"coordinates":[-73.9032213,40.8320685],"type":"Point"},"name":"La Dona Del Sabor"} +,{"_id":{"$oid":"55cba2476c522cafdb056291"},"location":{"coordinates":[-73.9517817,40.8096863],"type":"Point"},"name":"Amc Theatres Magic Johnson Harlem 9"} +,{"_id":{"$oid":"55cba2476c522cafdb056292"},"location":{"coordinates":[-73.8853664,40.8462746],"type":"Point"},"name":"Love Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb056293"},"location":{"coordinates":[-74.0016625,40.7400597],"type":"Point"},"name":"Pierre Loti Cafe \u0026 Wine Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb056294"},"location":{"coordinates":[-73.90570679999999,40.689576],"type":"Point"},"name":"New Texas Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb056295"},"location":{"coordinates":[-74.0105559,40.652159],"type":"Point"},"name":"La Ternura"} +,{"_id":{"$oid":"55cba2476c522cafdb056296"},"location":{"coordinates":[-73.9970266,40.719002],"type":"Point"},"name":"Nyonya"} +,{"_id":{"$oid":"55cba2476c522cafdb056297"},"location":{"coordinates":[-73.83606689999999,40.7862745],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb056298"},"location":{"coordinates":[-73.9624364,40.805802],"type":"Point"},"name":"John Jay Dining Hall"} +,{"_id":{"$oid":"55cba2476c522cafdb056299"},"location":{"coordinates":[-73.95947439999999,40.8057206],"type":"Point"},"name":"Uris Deli (Uris Hall) Main Campus"} +,{"_id":{"$oid":"55cba2476c522cafdb05629a"},"location":{"coordinates":[-73.9411973,40.8410971],"type":"Point"},"name":"The Faculty Club (Columbia University)"} +,{"_id":{"$oid":"55cba2476c522cafdb05629b"},"location":{"coordinates":[-74.0111421,40.7069226],"type":"Point"},"name":"New York Stock Exchange"} +,{"_id":{"$oid":"55cba2476c522cafdb05629c"},"location":{"coordinates":[-73.9817635,40.65915589999999],"type":"Point"},"name":"Tacos \u0026 Burrito Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb05629d"},"location":{"coordinates":[-74.0106891,40.6353559],"type":"Point"},"name":"Mini Shabu Shabu"} +,{"_id":{"$oid":"55cba2476c522cafdb05629e"},"location":{"coordinates":[-73.9424341,40.7043912],"type":"Point"},"name":"Princesa Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb05629f"},"location":{"coordinates":[-74.0019303,40.7248137],"type":"Point"},"name":"Pop Yogurt"} +,{"_id":{"$oid":"55cba2476c522cafdb0562a0"},"location":{"coordinates":[-73.853764,40.898567],"type":"Point"},"name":"Big Daddy Caribbean Taste"} +,{"_id":{"$oid":"55cba2476c522cafdb0562a1"},"location":{"coordinates":[-74.0101388,40.71000129999999],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0562a2"},"location":{"coordinates":[-73.8549647,40.835712],"type":"Point"},"name":"Friends Ii Sports Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0562a3"},"location":{"coordinates":[-73.860238,40.747651],"type":"Point"},"name":"Las Delicias Peruanas Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0562a4"},"location":{"coordinates":[-73.9817238,40.7599885],"type":"Point"},"name":"Bank Of Tokyo"} +,{"_id":{"$oid":"55cba2476c522cafdb0562a5"},"location":{"coordinates":[-73.974722,40.755556],"type":"Point"},"name":"Continental Grain Company"} +,{"_id":{"$oid":"55cba2476c522cafdb0562a6"},"location":{"coordinates":[-73.95043,40.669365],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0562a7"},"location":{"coordinates":[-73.9167504,40.7620074],"type":"Point"},"name":"Taco Bell Pizza Hut"} +,{"_id":{"$oid":"55cba2476c522cafdb0562a8"},"location":{"coordinates":[-74.007387,40.637232],"type":"Point"},"name":"Xin Fa Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0562a9"},"location":{"coordinates":[-73.98671999999999,40.7660077],"type":"Point"},"name":"Aaheli"} +,{"_id":{"$oid":"55cba2476c522cafdb0562aa"},"location":{"coordinates":[-73.99314249999999,40.6824954],"type":"Point"},"name":"The Wing Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0562ab"},"location":{"coordinates":[-73.9601812,40.7200316],"type":"Point"},"name":"Bakeri"} +,{"_id":{"$oid":"55cba2476c522cafdb0562ac"},"location":{"coordinates":[-73.9596632,40.6876312],"type":"Point"},"name":"Pilar Cuban Eatery"} +,{"_id":{"$oid":"55cba2476c522cafdb0562ad"},"location":{"coordinates":[-73.9867065,40.6940105],"type":"Point"},"name":"Polytechnic University"} +,{"_id":{"$oid":"55cba2476c522cafdb0562ae"},"location":{"coordinates":[-73.97388769999999,40.7626402],"type":"Point"},"name":"Tiffany \u0026 Company"} +,{"_id":{"$oid":"55cba2476c522cafdb0562af"},"location":{"coordinates":[-74.0140105,40.6921392],"type":"Point"},"name":"Water Taxi Beach"} +,{"_id":{"$oid":"55cba2476c522cafdb0562b0"},"location":{"coordinates":[-73.8650067,40.6791778],"type":"Point"},"name":"Bismillah Kabab \u0026 Curry"} +,{"_id":{"$oid":"55cba2476c522cafdb0562b1"},"location":{"coordinates":[-73.9689557,40.67786280000001],"type":"Point"},"name":"Milk Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0562b2"},"location":{"coordinates":[-73.95619239999999,40.5990076],"type":"Point"},"name":"Donut Shoppe"} +,{"_id":{"$oid":"55cba2476c522cafdb0562b3"},"location":{"coordinates":[-74.00666129999999,40.7147811],"type":"Point"},"name":"New Fresco Tortillos Iii"} +,{"_id":{"$oid":"55cba2476c522cafdb0562b4"},"location":{"coordinates":[-73.96878509999999,40.7993945],"type":"Point"},"name":"Aangan"} +,{"_id":{"$oid":"55cba2476c522cafdb0562b5"},"location":{"coordinates":[-73.9714145,40.79566140000001],"type":"Point"},"name":"Green Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0562b6"},"location":{"coordinates":[-73.76773419999999,40.7561606],"type":"Point"},"name":"Guh Song Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0562b7"},"location":{"coordinates":[-74.1136542,40.56459330000001],"type":"Point"},"name":"Empire East"} +,{"_id":{"$oid":"55cba2476c522cafdb0562b8"},"location":{"coordinates":[-73.9219079,40.8651443],"type":"Point"},"name":"Mimosa"} +,{"_id":{"$oid":"55cba2476c522cafdb0562b9"},"location":{"coordinates":[-73.8574217,40.7281001],"type":"Point"},"name":"Sajni"} +,{"_id":{"$oid":"55cba2476c522cafdb0562ba"},"location":{"coordinates":[-74.0123134,40.7048238],"type":"Point"},"name":"Georgio'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb0562bb"},"location":{"coordinates":[-73.9195852,40.8074059],"type":"Point"},"name":"Restaurante El Cantinero Poblano"} +,{"_id":{"$oid":"55cba2476c522cafdb0562bc"},"location":{"coordinates":[-73.9792219,40.736437],"type":"Point"},"name":"Cafe Green"} +,{"_id":{"$oid":"55cba2476c522cafdb0562bd"},"location":{"coordinates":[-73.8627867,40.8456482],"type":"Point"},"name":"Conti'S Pastry Shoppe"} +,{"_id":{"$oid":"55cba2476c522cafdb0562be"},"location":{"coordinates":[-73.89316,40.8211535],"type":"Point"},"name":"Georgina Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0562bf"},"location":{"coordinates":[-73.7967092,40.7037379],"type":"Point"},"name":"Impulse Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0562c0"},"location":{"coordinates":[-73.9647249,40.7733925],"type":"Point"},"name":"Caravaggio"} +,{"_id":{"$oid":"55cba2476c522cafdb0562c1"},"location":{"coordinates":[-73.8785638,40.6742357],"type":"Point"},"name":"New Foo Shun Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0562c2"},"location":{"coordinates":[-73.9540815,40.779134],"type":"Point"},"name":"Piazza Pizza \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0562c3"},"location":{"coordinates":[-73.9839052,40.7316048],"type":"Point"},"name":"Vegtown Juice"} +,{"_id":{"$oid":"55cba2476c522cafdb0562c4"},"location":{"coordinates":[-73.8970686,40.75439],"type":"Point"},"name":"La Boom Club"} +,{"_id":{"$oid":"55cba2476c522cafdb0562c5"},"location":{"coordinates":[-74.0111421,40.7069226],"type":"Point"},"name":"New York Stock Exchange Executive Services"} +,{"_id":{"$oid":"55cba2476c522cafdb0562c6"},"location":{"coordinates":[-73.965181,40.8006748],"type":"Point"},"name":"Awash Ethiopian Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0562c7"},"location":{"coordinates":[-73.9928436,40.7562398],"type":"Point"},"name":"Hampton Inn - Manhattan Times Square South"} +,{"_id":{"$oid":"55cba2476c522cafdb0562c8"},"location":{"coordinates":[-73.9833361,40.75079890000001],"type":"Point"},"name":"Girl Scouts Of The Usa"} +,{"_id":{"$oid":"55cba2476c522cafdb0562c9"},"location":{"coordinates":[-73.9931124,40.75635],"type":"Point"},"name":"Holiday Inn Express Nyc Times Square"} +,{"_id":{"$oid":"55cba2476c522cafdb0562ca"},"location":{"coordinates":[-73.9641287,40.7107237],"type":"Point"},"name":"Gordon Bennett"} +,{"_id":{"$oid":"55cba2476c522cafdb0562cb"},"location":{"coordinates":[-74.00871029999999,40.7157247],"type":"Point"},"name":"Ward Iii"} +,{"_id":{"$oid":"55cba2476c522cafdb0562cc"},"location":{"coordinates":[-73.8478741,40.7237598],"type":"Point"},"name":"Great Wall Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0562cd"},"location":{"coordinates":[-73.9484839,40.781774],"type":"Point"},"name":"Manny'S On Second"} +,{"_id":{"$oid":"55cba2476c522cafdb0562ce"},"location":{"coordinates":[-73.9521974,40.81086920000001],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0562cf"},"location":{"coordinates":[-73.9705108,40.7515107],"type":"Point"},"name":"Elevage"} +,{"_id":{"$oid":"55cba2476c522cafdb0562d0"},"location":{"coordinates":[-73.96916780000001,40.7603431],"type":"Point"},"name":"Fresh \u0026 Co"} +,{"_id":{"$oid":"55cba2476c522cafdb0562d1"},"location":{"coordinates":[-73.892076,40.700762],"type":"Point"},"name":"Gabriella Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0562d2"},"location":{"coordinates":[-73.7332141,40.7191975],"type":"Point"},"name":"Tee'S Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0562d3"},"location":{"coordinates":[-73.95582929999999,40.5779041],"type":"Point"},"name":"Sea Breeze Pharmacy \u0026 Medical Supply"} +,{"_id":{"$oid":"55cba2476c522cafdb0562d4"},"location":{"coordinates":[-73.8165072,40.7866594],"type":"Point"},"name":"Exo"} +,{"_id":{"$oid":"55cba2476c522cafdb0562d5"},"location":{"coordinates":[-73.960807,40.6588769],"type":"Point"},"name":"King Of Tandoor"} +,{"_id":{"$oid":"55cba2476c522cafdb0562d6"},"location":{"coordinates":[-73.9308964,40.6692988],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0562d7"},"location":{"coordinates":[-73.98146740000001,40.7625834],"type":"Point"},"name":"Sheraton New York Hotel \u0026 Towers"} +,{"_id":{"$oid":"55cba2476c522cafdb0562d8"},"location":{"coordinates":[-73.98146740000001,40.7625834],"type":"Point"},"name":"Sheraton New York Hotel \u0026 Towers"} +,{"_id":{"$oid":"55cba2476c522cafdb0562d9"},"location":{"coordinates":[-73.98146740000001,40.7625834],"type":"Point"},"name":"Sheraton New York Hotel @ Link Sheraton"} +,{"_id":{"$oid":"55cba2476c522cafdb0562da"},"location":{"coordinates":[-73.98146740000001,40.7625834],"type":"Point"},"name":"Hudson'S Market @ Sheraton New York"} +,{"_id":{"$oid":"55cba2476c522cafdb0562db"},"location":{"coordinates":[-73.98146740000001,40.7625834],"type":"Point"},"name":"Sheraton New York Hotel \u0026 Towers"} +,{"_id":{"$oid":"55cba2476c522cafdb0562dc"},"location":{"coordinates":[-73.98146740000001,40.7625834],"type":"Point"},"name":"Sheraton New York Hotel \u0026 Towers"} +,{"_id":{"$oid":"55cba2476c522cafdb0562dd"},"location":{"coordinates":[-73.7755016,40.7803722],"type":"Point"},"name":"Panera Bread"} +,{"_id":{"$oid":"55cba2476c522cafdb0562de"},"location":{"coordinates":[-73.9369086,40.69139759999999],"type":"Point"},"name":"King'S Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0562df"},"location":{"coordinates":[-73.995415,40.663333],"type":"Point"},"name":"Alnoor Halal Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb0562e0"},"location":{"coordinates":[-73.8677142,40.7679637],"type":"Point"},"name":"Hampton Inn Laguardia"} +,{"_id":{"$oid":"55cba2476c522cafdb0562e1"},"location":{"coordinates":[-73.8789946,40.8731796],"type":"Point"},"name":"Napoli'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0562e2"},"location":{"coordinates":[-73.9611106,40.7613278],"type":"Point"},"name":"El Porron"} +,{"_id":{"$oid":"55cba2476c522cafdb0562e3"},"location":{"coordinates":[-73.980941,40.7299485],"type":"Point"},"name":"Destination"} +,{"_id":{"$oid":"55cba2476c522cafdb0562e4"},"location":{"coordinates":[-73.916579,40.699171],"type":"Point"},"name":"Los Florencios"} +,{"_id":{"$oid":"55cba2476c522cafdb0562e5"},"location":{"coordinates":[-73.959225,40.762287],"type":"Point"},"name":"Fatty Fish"} +,{"_id":{"$oid":"55cba2476c522cafdb0562e6"},"location":{"coordinates":[-73.98284149999999,40.7492513],"type":"Point"},"name":"The Archive"} +,{"_id":{"$oid":"55cba2476c522cafdb0562e7"},"location":{"coordinates":[-73.941951,40.70109],"type":"Point"},"name":"La Isla Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0562e8"},"location":{"coordinates":[-73.98173,40.7592574],"type":"Point"},"name":"Forty Eight Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb0562e9"},"location":{"coordinates":[-73.9792691,40.7649292],"type":"Point"},"name":"Milos Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0562ea"},"location":{"coordinates":[-77.4120153,37.2845339],"type":"Point"},"name":"Farmers Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb0562eb"},"location":{"coordinates":[-73.959136,40.80675280000001],"type":"Point"},"name":"Faculty House"} +,{"_id":{"$oid":"55cba2476c522cafdb0562ec"},"location":{"coordinates":[-73.97750549999999,40.7460981],"type":"Point"},"name":"Aji Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb0562ed"},"location":{"coordinates":[-73.9495254,40.8222906],"type":"Point"},"name":"Subsconcious"} +,{"_id":{"$oid":"55cba2476c522cafdb0562ee"},"location":{"coordinates":[-73.9938877,40.6861227],"type":"Point"},"name":"Ghang Thai Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0562ef"},"location":{"coordinates":[-73.9868297,40.7532798],"type":"Point"},"name":"Schnitzel Express"} +,{"_id":{"$oid":"55cba2476c522cafdb0562f0"},"location":{"coordinates":[-73.9849775,40.7438471],"type":"Point"},"name":"Chef 28"} +,{"_id":{"$oid":"55cba2476c522cafdb0562f1"},"location":{"coordinates":[-73.885335,40.7219089],"type":"Point"},"name":"Buon Gelato And Euro Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0562f2"},"location":{"coordinates":[-73.927836,40.6256475],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0562f3"},"location":{"coordinates":[-73.95764799999999,40.59893599999999],"type":"Point"},"name":"Good Family Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0562f4"},"location":{"coordinates":[-73.89863749999999,40.6362343],"type":"Point"},"name":"Happy Taco"} +,{"_id":{"$oid":"55cba2476c522cafdb0562f5"},"location":{"coordinates":[-73.9801289,40.6762968],"type":"Point"},"name":"Uncle Louie G'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0562f6"},"location":{"coordinates":[-73.85805359999999,40.7083253],"type":"Point"},"name":"Fresh To You"} +,{"_id":{"$oid":"55cba2476c522cafdb0562f7"},"location":{"coordinates":[-73.9683455,40.7595452],"type":"Point"},"name":"Sherwood To Go"} +,{"_id":{"$oid":"55cba2476c522cafdb0562f8"},"location":{"coordinates":[-73.78196249999999,40.6829505],"type":"Point"},"name":"Seamorhen Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb0562f9"},"location":{"coordinates":[-73.985772,40.738546],"type":"Point"},"name":"Maialino"} +,{"_id":{"$oid":"55cba2476c522cafdb0562fa"},"location":{"coordinates":[-73.8840338,40.7466984],"type":"Point"},"name":"Las Americas Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0562fb"},"location":{"coordinates":[-73.790002,40.7118593],"type":"Point"},"name":"Popeye'S Chicken \u0026 Biscuits"} +,{"_id":{"$oid":"55cba2476c522cafdb0562fc"},"location":{"coordinates":[-73.9403933,40.5913303],"type":"Point"},"name":"Chopstix"} +,{"_id":{"$oid":"55cba2476c522cafdb0562fd"},"location":{"coordinates":[-74.0084842,40.7103597],"type":"Point"},"name":"Cafe Tomato"} +,{"_id":{"$oid":"55cba2476c522cafdb0562fe"},"location":{"coordinates":[-73.9995369,40.7434213],"type":"Point"},"name":"Tello'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0562ff"},"location":{"coordinates":[-73.9451555,40.7953442],"type":"Point"},"name":"La Corsa"} +,{"_id":{"$oid":"55cba2476c522cafdb056300"},"location":{"coordinates":[-73.98441,40.729264],"type":"Point"},"name":"Iggy'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb056301"},"location":{"coordinates":[-73.93491999999999,40.8523918],"type":"Point"},"name":"Altus Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056302"},"location":{"coordinates":[-73.9826056,40.755897],"type":"Point"},"name":"Gregory'S Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb056303"},"location":{"coordinates":[-73.9500241,40.6732235],"type":"Point"},"name":"Punch Line Juice"} +,{"_id":{"$oid":"55cba2476c522cafdb056304"},"location":{"coordinates":[-73.9903531,40.76092209999999],"type":"Point"},"name":"Hourglass Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb056305"},"location":{"coordinates":[-73.8047801,40.7559809],"type":"Point"},"name":"Dae Sung Korean Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056306"},"location":{"coordinates":[-74.00184910000002,40.7242595],"type":"Point"},"name":"Ground Support Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056307"},"location":{"coordinates":[-73.9371051,40.8504356],"type":"Point"},"name":"George'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056308"},"location":{"coordinates":[-73.91487699999999,40.814422],"type":"Point"},"name":"Mi Palenque"} +,{"_id":{"$oid":"55cba2476c522cafdb056309"},"location":{"coordinates":[-73.94167639999999,40.7988377],"type":"Point"},"name":"El Aguila"} +,{"_id":{"$oid":"55cba2476c522cafdb05630a"},"location":{"coordinates":[-73.94112799999999,40.792917],"type":"Point"},"name":"Raspberry Deli \u0026 Grocery"} +,{"_id":{"$oid":"55cba2476c522cafdb05630b"},"location":{"coordinates":[-73.82694699999999,40.759339],"type":"Point"},"name":"Sol Hyang Gee Bbq"} +,{"_id":{"$oid":"55cba2476c522cafdb05630c"},"location":{"coordinates":[-73.948735,40.710907],"type":"Point"},"name":"Sing Hing Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05630d"},"location":{"coordinates":[-73.940556,40.72575399999999],"type":"Point"},"name":"Mario'S Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb05630e"},"location":{"coordinates":[-74.010049,40.63079],"type":"Point"},"name":"New Spring Garden Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05630f"},"location":{"coordinates":[-73.980532,40.5964197],"type":"Point"},"name":"N \u0026 D Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056310"},"location":{"coordinates":[-74.03159200000002,40.6155278],"type":"Point"},"name":"Molto Bene"} +,{"_id":{"$oid":"55cba2476c522cafdb056311"},"location":{"coordinates":[-73.9846142,40.6636256],"type":"Point"},"name":"Fonda"} +,{"_id":{"$oid":"55cba2476c522cafdb056312"},"location":{"coordinates":[-74.00475850000001,40.7378364],"type":"Point"},"name":"Chocolate Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb056313"},"location":{"coordinates":[-73.9870514,40.7549684],"type":"Point"},"name":"Baja Fresh"} +,{"_id":{"$oid":"55cba2476c522cafdb056314"},"location":{"coordinates":[-73.98359049999999,40.7271538],"type":"Point"},"name":"Box Kite Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056315"},"location":{"coordinates":[-73.9861798,40.7192176],"type":"Point"},"name":"Moxie Works Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056316"},"location":{"coordinates":[-73.913949,40.805905],"type":"Point"},"name":"No 1 Wok Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056317"},"location":{"coordinates":[-73.98530269999999,40.6412965],"type":"Point"},"name":"Vip Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb056318"},"location":{"coordinates":[-73.83759739999999,40.6909391],"type":"Point"},"name":"Carvel Ice Cream"} +,{"_id":{"$oid":"55cba2476c522cafdb056319"},"location":{"coordinates":[-73.9492908,40.7113501],"type":"Point"},"name":"Ontario Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05631a"},"location":{"coordinates":[-73.8635939,40.728174],"type":"Point"},"name":"Rego Garden Restaurant, Inc"} +,{"_id":{"$oid":"55cba2476c522cafdb05631b"},"location":{"coordinates":[-73.9043647,40.8870592],"type":"Point"},"name":"Goodfella'S"} +,{"_id":{"$oid":"55cba2476c522cafdb05631c"},"location":{"coordinates":[-73.9480179,40.8249794],"type":"Point"},"name":"1 Stop Patty Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb05631d"},"location":{"coordinates":[-74.009385,40.635978],"type":"Point"},"name":"Dragon Bay Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb05631e"},"location":{"coordinates":[-73.9539789,40.7752028],"type":"Point"},"name":"Gina La Fornarina"} +,{"_id":{"$oid":"55cba2476c522cafdb05631f"},"location":{"coordinates":[-73.9570476,40.6465652],"type":"Point"},"name":"Tj'S Tasty Corner"} +,{"_id":{"$oid":"55cba2476c522cafdb056320"},"location":{"coordinates":[-74.001265,40.7338793],"type":"Point"},"name":"Joseph Leonard"} +,{"_id":{"$oid":"55cba2476c522cafdb056321"},"location":{"coordinates":[-73.9616836,40.713484],"type":"Point"},"name":"Lucky Dog"} +,{"_id":{"$oid":"55cba2476c522cafdb056322"},"location":{"coordinates":[-73.7099759,40.7374729],"type":"Point"},"name":"Shahi Darbar"} +,{"_id":{"$oid":"55cba2476c522cafdb056323"},"location":{"coordinates":[-73.9272196,40.8192564],"type":"Point"},"name":"Haagan Daz"} +,{"_id":{"$oid":"55cba2476c522cafdb056324"},"location":{"coordinates":[-74.0073237,40.6743385],"type":"Point"},"name":"Feiteng Chinese Take Out Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb056325"},"location":{"coordinates":[-73.827794,40.7003546],"type":"Point"},"name":"Maracus Club And Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056326"},"location":{"coordinates":[-74.2460842,40.50666690000001],"type":"Point"},"name":"Angelina'S Ristorante"} +,{"_id":{"$oid":"55cba2476c522cafdb056327"},"location":{"coordinates":[-74.03155509999999,40.6155636],"type":"Point"},"name":"Energy Fuel"} +,{"_id":{"$oid":"55cba2476c522cafdb056328"},"location":{"coordinates":[-74.0056029,40.633354],"type":"Point"},"name":"King'S Bar Cafe(Class)"} +,{"_id":{"$oid":"55cba2476c522cafdb056329"},"location":{"coordinates":[-73.902699,40.8582583],"type":"Point"},"name":"Que Sabrosura Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05632a"},"location":{"coordinates":[-73.7675879,40.7557768],"type":"Point"},"name":"Amy \u0026 Cathy'S Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05632b"},"location":{"coordinates":[-73.7464152,40.7358707],"type":"Point"},"name":"Staunton'S Bar Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05632c"},"location":{"coordinates":[-74.011871,40.632923],"type":"Point"},"name":"Bamboo Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb05632d"},"location":{"coordinates":[-74.027734,40.6307789],"type":"Point"},"name":"Tanoreen Caterers"} +,{"_id":{"$oid":"55cba2476c522cafdb05632e"},"location":{"coordinates":[-73.9753758,40.7629627],"type":"Point"},"name":"Momofuku/ Ma Peche"} +,{"_id":{"$oid":"55cba2476c522cafdb05632f"},"location":{"coordinates":[-73.9189672,40.7655525],"type":"Point"},"name":"Gowasabi"} +,{"_id":{"$oid":"55cba2476c522cafdb056330"},"location":{"coordinates":[-73.9736995,40.7507837],"type":"Point"},"name":"Aroma Espresso Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb056331"},"location":{"coordinates":[-73.95837,40.768285],"type":"Point"},"name":"Shanghai Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056332"},"location":{"coordinates":[-73.89407659999999,40.7264466],"type":"Point"},"name":"Crux Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb056333"},"location":{"coordinates":[-74.1303441,40.626612],"type":"Point"},"name":"Forest Thai Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb056334"},"location":{"coordinates":[-73.99414039999999,40.7138356],"type":"Point"},"name":"New White Swan Bakery 88"} +,{"_id":{"$oid":"55cba2476c522cafdb056335"},"location":{"coordinates":[-73.8914776,40.8702143],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb056336"},"location":{"coordinates":[-73.92542379999999,40.76240689999999],"type":"Point"},"name":"Daly'S Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb056337"},"location":{"coordinates":[-73.843625,40.893645],"type":"Point"},"name":"Lollipops Ice Cream"} +,{"_id":{"$oid":"55cba2476c522cafdb056338"},"location":{"coordinates":[-73.896914,40.746078],"type":"Point"},"name":"Quick Stop Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb056339"},"location":{"coordinates":[-73.9636318,40.8076308],"type":"Point"},"name":"Brad'S Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05633a"},"location":{"coordinates":[-73.7945861,40.724247],"type":"Point"},"name":"Red Storm Diner @ St. Vincent'S Hall Of St. John'S University"} +,{"_id":{"$oid":"55cba2476c522cafdb05633b"},"location":{"coordinates":[-73.9755055,40.7588091],"type":"Point"},"name":"Toasties"} +,{"_id":{"$oid":"55cba2476c522cafdb05633c"},"location":{"coordinates":[-73.7945861,40.724247],"type":"Point"},"name":"St. John'S University D'Angelo Center Food Court"} +,{"_id":{"$oid":"55cba2476c522cafdb05633d"},"location":{"coordinates":[-73.7945861,40.724247],"type":"Point"},"name":"D'Angelo Cent/Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb05633e"},"location":{"coordinates":[-73.953756,40.744658],"type":"Point"},"name":"Testaccio Ristorante"} +,{"_id":{"$oid":"55cba2476c522cafdb05633f"},"location":{"coordinates":[-73.891038,40.8568119],"type":"Point"},"name":"Applebee'S Neighborhood Grill \u0026 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb056340"},"location":{"coordinates":[-73.8133009,40.7876309],"type":"Point"},"name":"The Stone Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb056341"},"location":{"coordinates":[-73.91899169999999,40.7653742],"type":"Point"},"name":"Sweet Afton"} +,{"_id":{"$oid":"55cba2476c522cafdb056342"},"location":{"coordinates":[-73.99073299999999,40.7409902],"type":"Point"},"name":"Sagaponack"} +,{"_id":{"$oid":"55cba2476c522cafdb056343"},"location":{"coordinates":[-73.98794699999999,40.719773],"type":"Point"},"name":"Sushi Hana"} +,{"_id":{"$oid":"55cba2476c522cafdb056344"},"location":{"coordinates":[-73.988277,40.754784],"type":"Point"},"name":"Maoz Vegetarian Times Square"} +,{"_id":{"$oid":"55cba2476c522cafdb056345"},"location":{"coordinates":[-73.9352554,40.6830425],"type":"Point"},"name":"Therapy Wine Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb056346"},"location":{"coordinates":[-73.9966702,40.7119464],"type":"Point"},"name":"Shun Wei Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056347"},"location":{"coordinates":[-74.2078085,40.5427718],"type":"Point"},"name":"Islander Taste I"} +,{"_id":{"$oid":"55cba2476c522cafdb056348"},"location":{"coordinates":[-73.91289499999999,40.76685],"type":"Point"},"name":"El-Rawsheh Cafe \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056349"},"location":{"coordinates":[-74.000709,40.644288],"type":"Point"},"name":"Happy House Seafood Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05634a"},"location":{"coordinates":[-73.9129154,40.8237337],"type":"Point"},"name":"Robles Pizzeria And Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05634b"},"location":{"coordinates":[-73.709232,40.748828],"type":"Point"},"name":"Saint Anns"} +,{"_id":{"$oid":"55cba2476c522cafdb05634c"},"location":{"coordinates":[-73.950102,40.671855],"type":"Point"},"name":"Silver Krust West Indian Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05634d"},"location":{"coordinates":[-73.95319479999999,40.77537969999999],"type":"Point"},"name":"Wa Jeal"} +,{"_id":{"$oid":"55cba2476c522cafdb05634e"},"location":{"coordinates":[-73.9593311,40.7189936],"type":"Point"},"name":"D.B.A"} +,{"_id":{"$oid":"55cba2476c522cafdb05634f"},"location":{"coordinates":[-73.9572366,40.6874628],"type":"Point"},"name":"Nice Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056350"},"location":{"coordinates":[-73.9302821,40.8120123],"type":"Point"},"name":"Sin City"} +,{"_id":{"$oid":"55cba2476c522cafdb056351"},"location":{"coordinates":[-73.87924459999999,40.7018802],"type":"Point"},"name":"The Avenue"} +,{"_id":{"$oid":"55cba2476c522cafdb056352"},"location":{"coordinates":[-73.93795469999999,40.6626255],"type":"Point"},"name":"Razag Ballroom"} +,{"_id":{"$oid":"55cba2476c522cafdb056353"},"location":{"coordinates":[-74.01065899999999,40.7082118],"type":"Point"},"name":"The Capital Grille #8039"} +,{"_id":{"$oid":"55cba2476c522cafdb056354"},"location":{"coordinates":[-73.9616401,40.6499205],"type":"Point"},"name":"Belle Fourchette"} +,{"_id":{"$oid":"55cba2476c522cafdb056355"},"location":{"coordinates":[-73.8317709,40.8467304],"type":"Point"},"name":"Caribe Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056356"},"location":{"coordinates":[-73.9963942,40.7206286],"type":"Point"},"name":"Wild Ginger Vegetarian Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb056357"},"location":{"coordinates":[-73.8989859,40.74965100000001],"type":"Point"},"name":"No 1 Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056358"},"location":{"coordinates":[-73.9670902,40.7530226],"type":"Point"},"name":"Choux Factory"} +,{"_id":{"$oid":"55cba2476c522cafdb056359"},"location":{"coordinates":[-73.98391590000001,40.765839],"type":"Point"},"name":"Cancun Mexican Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05635a"},"location":{"coordinates":[-73.9827037,40.7684141],"type":"Point"},"name":"A Voce"} +,{"_id":{"$oid":"55cba2476c522cafdb05635b"},"location":{"coordinates":[-73.9508811,40.6689708],"type":"Point"},"name":"Super Wings"} +,{"_id":{"$oid":"55cba2476c522cafdb05635c"},"location":{"coordinates":[-73.96240329999999,40.7595207],"type":"Point"},"name":"Suzu Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb05635d"},"location":{"coordinates":[-74.0021381,40.7262653],"type":"Point"},"name":"Piccola Cucina"} +,{"_id":{"$oid":"55cba2476c522cafdb05635e"},"location":{"coordinates":[-73.9935689,40.6948239],"type":"Point"},"name":"Armando'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05635f"},"location":{"coordinates":[-74.006413,40.7153459],"type":"Point"},"name":"Delimarie"} +,{"_id":{"$oid":"55cba2476c522cafdb056360"},"location":{"coordinates":[-73.94566370000001,40.7504223],"type":"Point"},"name":"Silver Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb056361"},"location":{"coordinates":[-73.9740424,40.6474742],"type":"Point"},"name":"620 On Caton"} +,{"_id":{"$oid":"55cba2476c522cafdb056362"},"location":{"coordinates":[-73.837322,40.6494169],"type":"Point"},"name":"Vetro"} +,{"_id":{"$oid":"55cba2476c522cafdb056363"},"location":{"coordinates":[-73.939368,40.625326],"type":"Point"},"name":"Sansimian Jamaican West Indian Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056364"},"location":{"coordinates":[-73.8613949,40.6679088],"type":"Point"},"name":"China Doll"} +,{"_id":{"$oid":"55cba2476c522cafdb056365"},"location":{"coordinates":[-73.83358319999999,40.6880573],"type":"Point"},"name":"New King Garden Company"} +,{"_id":{"$oid":"55cba2476c522cafdb056366"},"location":{"coordinates":[-73.8812161,40.7351919],"type":"Point"},"name":"Patacon Pisao"} +,{"_id":{"$oid":"55cba2476c522cafdb056367"},"location":{"coordinates":[-73.978819,40.76564],"type":"Point"},"name":"Bella Vita"} +,{"_id":{"$oid":"55cba2476c522cafdb056368"},"location":{"coordinates":[-73.91104299999999,40.669406],"type":"Point"},"name":"Sal \u0026 Paul'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb056369"},"location":{"coordinates":[-73.9828844,40.778772],"type":"Point"},"name":"Westside Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05636a"},"location":{"coordinates":[-73.85079089999999,40.7104309],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb05636b"},"location":{"coordinates":[-73.98537,40.728058],"type":"Point"},"name":"Scarab Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb05636c"},"location":{"coordinates":[-73.923945,40.809852],"type":"Point"},"name":"Salimar"} +,{"_id":{"$oid":"55cba2476c522cafdb05636d"},"location":{"coordinates":[-73.9551737,40.7224373],"type":"Point"},"name":"Berry Park"} +,{"_id":{"$oid":"55cba2476c522cafdb05636e"},"location":{"coordinates":[-73.830681,40.7079014],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb05636f"},"location":{"coordinates":[-73.857294,40.6856622],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb056370"},"location":{"coordinates":[-73.8812303,40.7500652],"type":"Point"},"name":"La Gran Uruguaya Bakery \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056371"},"location":{"coordinates":[-73.827162,40.752272],"type":"Point"},"name":"Melody Karaoke"} +,{"_id":{"$oid":"55cba2476c522cafdb056372"},"location":{"coordinates":[-73.9926203,40.6833022],"type":"Point"},"name":"Prb 24-7"} +,{"_id":{"$oid":"55cba2476c522cafdb056373"},"location":{"coordinates":[-73.9849035,40.7558477],"type":"Point"},"name":"Stephen Sondheim Theatre"} +,{"_id":{"$oid":"55cba2476c522cafdb056374"},"location":{"coordinates":[-73.9689015,40.7547297],"type":"Point"},"name":"Le Pain Quotidien"} +,{"_id":{"$oid":"55cba2476c522cafdb056375"},"location":{"coordinates":[-73.8549369,40.7270522],"type":"Point"},"name":"Cuzco Peru"} +,{"_id":{"$oid":"55cba2476c522cafdb056376"},"location":{"coordinates":[-73.80888039999999,40.7039704],"type":"Point"},"name":"Courthouse Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb056377"},"location":{"coordinates":[-73.9808893,40.6905175],"type":"Point"},"name":"Liu Wrac Wellness Center"} +,{"_id":{"$oid":"55cba2476c522cafdb056378"},"location":{"coordinates":[-73.9735037,40.6857372],"type":"Point"},"name":"Die Stanmkneipe"} +,{"_id":{"$oid":"55cba2476c522cafdb056379"},"location":{"coordinates":[-73.92196609999999,40.6192559],"type":"Point"},"name":"Frank'S Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb05637a"},"location":{"coordinates":[-73.946749,40.749766],"type":"Point"},"name":"Jassi'S World Famous Deli \u0026 Grocery"} +,{"_id":{"$oid":"55cba2476c522cafdb05637b"},"location":{"coordinates":[-73.75912699999999,40.7408443],"type":"Point"},"name":"Sushi You"} +,{"_id":{"$oid":"55cba2476c522cafdb05637c"},"location":{"coordinates":[-73.91234399999999,40.699948],"type":"Point"},"name":"Armando Grocery \u0026 Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb05637d"},"location":{"coordinates":[-74.0239418,40.6343104],"type":"Point"},"name":"Your House Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05637e"},"location":{"coordinates":[-73.92913020000002,40.7044159],"type":"Point"},"name":"Taqueria El Fogon"} +,{"_id":{"$oid":"55cba2476c522cafdb05637f"},"location":{"coordinates":[-73.83815229999999,40.6959933],"type":"Point"},"name":"Tony'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056380"},"location":{"coordinates":[-73.8862631,40.8573727],"type":"Point"},"name":"Michael Angelo'S Brick Oven Inc"} +,{"_id":{"$oid":"55cba2476c522cafdb056381"},"location":{"coordinates":[-73.9781458,40.7562236],"type":"Point"},"name":"Starbucks Coffee# 7426"} +,{"_id":{"$oid":"55cba2476c522cafdb056382"},"location":{"coordinates":[-73.8492006,40.8847246],"type":"Point"},"name":"Laconia Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb056383"},"location":{"coordinates":[-73.85942560000001,40.8902661],"type":"Point"},"name":"Bronx Uptown"} +,{"_id":{"$oid":"55cba2476c522cafdb056384"},"location":{"coordinates":[-73.9282199,40.8606259],"type":"Point"},"name":"Panda House"} +,{"_id":{"$oid":"55cba2476c522cafdb056385"},"location":{"coordinates":[-74.2482679,40.51077739999999],"type":"Point"},"name":"Kim'S Island Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056386"},"location":{"coordinates":[-73.970443,40.75844],"type":"Point"},"name":"Piada"} +,{"_id":{"$oid":"55cba2476c522cafdb056387"},"location":{"coordinates":[-73.97657079999999,40.7379675],"type":"Point"},"name":"Hunter College"} +,{"_id":{"$oid":"55cba2476c522cafdb056388"},"location":{"coordinates":[-73.9576213,40.6723281],"type":"Point"},"name":"The Breukelen Coffee House"} +,{"_id":{"$oid":"55cba2476c522cafdb056389"},"location":{"coordinates":[-73.9549081,40.7687708],"type":"Point"},"name":"Tasti D-Lite"} +,{"_id":{"$oid":"55cba2476c522cafdb05638a"},"location":{"coordinates":[-73.8514388,40.6939422],"type":"Point"},"name":"Carlo'S Famous Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05638b"},"location":{"coordinates":[-74.0011238,40.7359326],"type":"Point"},"name":"Yerba Buena"} +,{"_id":{"$oid":"55cba2476c522cafdb05638c"},"location":{"coordinates":[-73.920869,40.8676319],"type":"Point"},"name":"Pizza Haven"} +,{"_id":{"$oid":"55cba2476c522cafdb05638d"},"location":{"coordinates":[-74.02511179999999,40.6228991],"type":"Point"},"name":"Chiquitita Mexican Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb05638e"},"location":{"coordinates":[-73.992823,40.661552],"type":"Point"},"name":"Monsignor'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05638f"},"location":{"coordinates":[-73.90753769999999,40.8874702],"type":"Point"},"name":"Greek Express"} +,{"_id":{"$oid":"55cba2476c522cafdb056390"},"location":{"coordinates":[-73.9876781,40.644583],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb056391"},"location":{"coordinates":[-73.9681469,40.63579420000001],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb056392"},"location":{"coordinates":[-73.997417,40.7230126],"type":"Point"},"name":"The Crosby Street Hotel"} +,{"_id":{"$oid":"55cba2476c522cafdb056393"},"location":{"coordinates":[-73.9729183,40.7596493],"type":"Point"},"name":"Casa Lever"} +,{"_id":{"$oid":"55cba2476c522cafdb056394"},"location":{"coordinates":[-74.0112637,40.6440062],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb056395"},"location":{"coordinates":[-73.95752399999999,40.6085204],"type":"Point"},"name":"King'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056396"},"location":{"coordinates":[-73.8372349,40.5800455],"type":"Point"},"name":"Slices And Ices"} +,{"_id":{"$oid":"55cba2476c522cafdb056397"},"location":{"coordinates":[-73.8967753,40.7003485],"type":"Point"},"name":"New Delicious Wok"} +,{"_id":{"$oid":"55cba2476c522cafdb056398"},"location":{"coordinates":[-73.92406629999999,40.7441363],"type":"Point"},"name":"Sunnyside Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056399"},"location":{"coordinates":[-73.93552269999999,40.8463883],"type":"Point"},"name":"Little Caesar'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05639a"},"location":{"coordinates":[-73.990296,40.739574],"type":"Point"},"name":"L.A. Burdick Chocolates"} +,{"_id":{"$oid":"55cba2476c522cafdb05639b"},"location":{"coordinates":[-73.8678257,40.8314471],"type":"Point"},"name":"Ingapirca Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05639c"},"location":{"coordinates":[-74.007008,40.638281],"type":"Point"},"name":"Zhang'S Fortune Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05639d"},"location":{"coordinates":[-73.97012649999999,40.7658133],"type":"Point"},"name":"Nello"} +,{"_id":{"$oid":"55cba2476c522cafdb05639e"},"location":{"coordinates":[-73.957021,40.61816040000001],"type":"Point"},"name":"Bennys"} +,{"_id":{"$oid":"55cba2476c522cafdb05639f"},"location":{"coordinates":[-73.9743975,40.597036],"type":"Point"},"name":"Famous Pizza Park"} +,{"_id":{"$oid":"55cba2476c522cafdb0563a0"},"location":{"coordinates":[-73.9099049,40.77589469999999],"type":"Point"},"name":"Fresca Tortilla"} +,{"_id":{"$oid":"55cba2476c522cafdb0563a1"},"location":{"coordinates":[-73.996196,40.6902598],"type":"Point"},"name":"Henry Public"} +,{"_id":{"$oid":"55cba2476c522cafdb0563a2"},"location":{"coordinates":[-73.925359,40.7554993],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0563a3"},"location":{"coordinates":[-73.9794008,40.7580024],"type":"Point"},"name":"Mendy'S Kosher Delicatessen"} +,{"_id":{"$oid":"55cba2476c522cafdb0563a4"},"location":{"coordinates":[-73.9080108,40.7032298],"type":"Point"},"name":"Blue Bar Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0563a5"},"location":{"coordinates":[-73.8560481,40.8561494],"type":"Point"},"name":"D And G Pizzeria And Rotisserie"} +,{"_id":{"$oid":"55cba2476c522cafdb0563a6"},"location":{"coordinates":[-73.9866285,40.7415086],"type":"Point"},"name":"D'Vida Health Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0563a7"},"location":{"coordinates":[-73.968953,40.7934679],"type":"Point"},"name":"Central Park Tennis Snack Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0563a8"},"location":{"coordinates":[-73.98699069999999,40.7433163],"type":"Point"},"name":"Sd26 \u0026 San Domenico Events"} +,{"_id":{"$oid":"55cba2476c522cafdb0563a9"},"location":{"coordinates":[-73.820838,40.7022959],"type":"Point"},"name":"Yosmira Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0563aa"},"location":{"coordinates":[-74.07862190000002,40.6283478],"type":"Point"},"name":"Los Catrachos"} +,{"_id":{"$oid":"55cba2476c522cafdb0563ab"},"location":{"coordinates":[-73.8628524,40.8347901],"type":"Point"},"name":"Brisas Express Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0563ac"},"location":{"coordinates":[-73.98425790000002,40.7494113],"type":"Point"},"name":"Judy Karaoke"} +,{"_id":{"$oid":"55cba2476c522cafdb0563ad"},"location":{"coordinates":[-73.79164279999999,40.7575778],"type":"Point"},"name":"Ga Hwa Korean Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0563ae"},"location":{"coordinates":[-74.1169585,40.57398269999999],"type":"Point"},"name":"Dominick'S Bakery \u0026 Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0563af"},"location":{"coordinates":[-76.3112196,36.885983],"type":"Point"},"name":"Meadows Snacks"} +,{"_id":{"$oid":"55cba2476c522cafdb0563b0"},"location":{"coordinates":[-73.947498,40.7882559],"type":"Point"},"name":"Moon House Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0563b1"},"location":{"coordinates":[-73.98894539999999,40.7194078],"type":"Point"},"name":"Los Feliz"} +,{"_id":{"$oid":"55cba2476c522cafdb0563b2"},"location":{"coordinates":[-73.9860978,40.7317909],"type":"Point"},"name":"Zabb City"} +,{"_id":{"$oid":"55cba2476c522cafdb0563b3"},"location":{"coordinates":[-73.8644381,40.7529782],"type":"Point"},"name":"Rancho Latino Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0563b4"},"location":{"coordinates":[-73.949349,40.724056],"type":"Point"},"name":"Kestane Kebab"} +,{"_id":{"$oid":"55cba2476c522cafdb0563b5"},"location":{"coordinates":[-74.0020294,40.7088833],"type":"Point"},"name":"Hampton Inn"} +,{"_id":{"$oid":"55cba2476c522cafdb0563b6"},"location":{"coordinates":[-73.9835744,40.6122253],"type":"Point"},"name":"Maggie Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0563b7"},"location":{"coordinates":[-73.8937756,40.7006932],"type":"Point"},"name":"New Double Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0563b8"},"location":{"coordinates":[-73.8977422,40.8467914],"type":"Point"},"name":"Grand Slam Banquet Hall"} +,{"_id":{"$oid":"55cba2476c522cafdb0563b9"},"location":{"coordinates":[-73.9839689,40.7520904],"type":"Point"},"name":"Colbeh"} +,{"_id":{"$oid":"55cba2476c522cafdb0563ba"},"location":{"coordinates":[-73.9936,40.76169700000001],"type":"Point"},"name":"Bar-Tini'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0563bb"},"location":{"coordinates":[-73.955592,40.7138585],"type":"Point"},"name":"Saltie"} +,{"_id":{"$oid":"55cba2476c522cafdb0563bc"},"location":{"coordinates":[-73.9653989,40.8051344],"type":"Point"},"name":"Tea Magic"} +,{"_id":{"$oid":"55cba2476c522cafdb0563bd"},"location":{"coordinates":[-73.950861,40.6688567],"type":"Point"},"name":"Tonys Pizza On Nostrand"} +,{"_id":{"$oid":"55cba2476c522cafdb0563be"},"location":{"coordinates":[-74.16526089999999,40.5879905],"type":"Point"},"name":"Dynasty Taste"} +,{"_id":{"$oid":"55cba2476c522cafdb0563bf"},"location":{"coordinates":[-73.950649,40.711219],"type":"Point"},"name":"Curry Heaven"} +,{"_id":{"$oid":"55cba2476c522cafdb0563c0"},"location":{"coordinates":[-73.8793354,40.8734239],"type":"Point"},"name":"Nicky'S Pizzeria Restorante"} +,{"_id":{"$oid":"55cba2476c522cafdb0563c1"},"location":{"coordinates":[-74.11975199999999,40.609502],"type":"Point"},"name":"Staten Island Go Carts"} +,{"_id":{"$oid":"55cba2476c522cafdb0563c2"},"location":{"coordinates":[-73.9509808,40.7302324],"type":"Point"},"name":"Kfc, Taco Bell"} +,{"_id":{"$oid":"55cba2476c522cafdb0563c3"},"location":{"coordinates":[-73.87799009999999,40.7600988],"type":"Point"},"name":"El Cafetal Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0563c4"},"location":{"coordinates":[-73.9027911,40.7473472],"type":"Point"},"name":"Weiside China Station"} +,{"_id":{"$oid":"55cba2476c522cafdb0563c5"},"location":{"coordinates":[-73.99426729999999,40.75560790000001],"type":"Point"},"name":"La Kasbah"} +,{"_id":{"$oid":"55cba2476c522cafdb0563c6"},"location":{"coordinates":[-73.881446,40.671596],"type":"Point"},"name":"Golden China"} +,{"_id":{"$oid":"55cba2476c522cafdb0563c7"},"location":{"coordinates":[-73.83362570000001,40.7559524],"type":"Point"},"name":"Ok Ryan Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0563c8"},"location":{"coordinates":[-73.9964535,40.7111015],"type":"Point"},"name":"Blimpie"} +,{"_id":{"$oid":"55cba2476c522cafdb0563c9"},"location":{"coordinates":[-73.83408589999999,40.7159829],"type":"Point"},"name":"Tuscan Hills"} +,{"_id":{"$oid":"55cba2476c522cafdb0563ca"},"location":{"coordinates":[-73.8651642,40.7261319],"type":"Point"},"name":"East King"} +,{"_id":{"$oid":"55cba2476c522cafdb0563cb"},"location":{"coordinates":[-73.94125249999999,40.8397069],"type":"Point"},"name":"Jou Jou Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0563cc"},"location":{"coordinates":[-73.98380399999999,40.730374],"type":"Point"},"name":"Motorino Pizzeria Napoletana"} +,{"_id":{"$oid":"55cba2476c522cafdb0563cd"},"location":{"coordinates":[-73.9503655,40.7241056],"type":"Point"},"name":"Keg And Lantern Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb0563ce"},"location":{"coordinates":[-73.984861,40.617059],"type":"Point"},"name":"Fei Huang Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0563cf"},"location":{"coordinates":[-73.7514324,40.7065809],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0563d0"},"location":{"coordinates":[-73.86743,40.8313156],"type":"Point"},"name":"Golden Flower Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0563d1"},"location":{"coordinates":[-73.99026099999999,40.728505],"type":"Point"},"name":"Frankie'S Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0563d2"},"location":{"coordinates":[-73.89578399999999,40.74614200000001],"type":"Point"},"name":"Fritzies Bake Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb0563d3"},"location":{"coordinates":[-73.95757929999999,40.6725951],"type":"Point"},"name":"Happy Wok Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0563d4"},"location":{"coordinates":[-73.9869515,40.6875375],"type":"Point"},"name":"Mile End"} +,{"_id":{"$oid":"55cba2476c522cafdb0563d5"},"location":{"coordinates":[-73.9881041,40.7242431],"type":"Point"},"name":"New Double Dragon"} +,{"_id":{"$oid":"55cba2476c522cafdb0563d6"},"location":{"coordinates":[-73.9530911,40.6947298],"type":"Point"},"name":"Project Parlor"} +,{"_id":{"$oid":"55cba2476c522cafdb0563d7"},"location":{"coordinates":[-73.977952,40.749257],"type":"Point"},"name":"Black Shack"} +,{"_id":{"$oid":"55cba2476c522cafdb0563d8"},"location":{"coordinates":[-73.8693515,40.7338491],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0563d9"},"location":{"coordinates":[-74.00761059999999,40.7071367],"type":"Point"},"name":"Kafeneo"} +,{"_id":{"$oid":"55cba2476c522cafdb0563da"},"location":{"coordinates":[-74.005972,40.741534],"type":"Point"},"name":"La Cenita"} +,{"_id":{"$oid":"55cba2476c522cafdb0563db"},"location":{"coordinates":[-73.9746787,40.7445344],"type":"Point"},"name":"El Parador Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0563dc"},"location":{"coordinates":[-73.8848608,40.6607032],"type":"Point"},"name":"Crown Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb0563dd"},"location":{"coordinates":[-73.9829761,40.7223698],"type":"Point"},"name":"Sigmund Pretzel Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb0563de"},"location":{"coordinates":[-73.98185749999999,40.6590688],"type":"Point"},"name":"Le P'Tit Paris"} +,{"_id":{"$oid":"55cba2476c522cafdb0563df"},"location":{"coordinates":[-74.007903,40.71387319999999],"type":"Point"},"name":"New York Vintners"} +,{"_id":{"$oid":"55cba2476c522cafdb0563e0"},"location":{"coordinates":[-73.960996,40.624998],"type":"Point"},"name":"Chock Full O' Nuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0563e1"},"location":{"coordinates":[-73.82923269999999,40.7132124],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0563e2"},"location":{"coordinates":[-73.98227270000001,40.6780409],"type":"Point"},"name":"The Sackett"} +,{"_id":{"$oid":"55cba2476c522cafdb0563e3"},"location":{"coordinates":[-73.8258859,40.7435129],"type":"Point"},"name":"Main St Imperial Taiwanese Gourmet"} +,{"_id":{"$oid":"55cba2476c522cafdb0563e4"},"location":{"coordinates":[-73.9577686,40.609927],"type":"Point"},"name":"Aksaray Turkish Cafe And Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0563e5"},"location":{"coordinates":[-73.8984662,40.8176317],"type":"Point"},"name":"Golden China"} +,{"_id":{"$oid":"55cba2476c522cafdb0563e6"},"location":{"coordinates":[-73.94361289999999,40.6004494],"type":"Point"},"name":"Osaka Japanese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0563e7"},"location":{"coordinates":[-73.7653854,40.6700273],"type":"Point"},"name":"Success Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0563e8"},"location":{"coordinates":[-73.93922800000001,40.8270259],"type":"Point"},"name":"Country Pan Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb0563e9"},"location":{"coordinates":[-74.1153387,40.5731444],"type":"Point"},"name":"Villa Monte Ii Pizzeria And Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0563ea"},"location":{"coordinates":[-73.98901020000001,40.7361542],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0563eb"},"location":{"coordinates":[-74.232298,40.543785],"type":"Point"},"name":"Katie'S Cafe In Skating Rink"} +,{"_id":{"$oid":"55cba2476c522cafdb0563ec"},"location":{"coordinates":[-74.001527,40.642833],"type":"Point"},"name":"Chen Fulin Kwok Seafood Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0563ed"},"location":{"coordinates":[-74.17681800000001,40.601669],"type":"Point"},"name":"Casa Nova"} +,{"_id":{"$oid":"55cba2476c522cafdb0563ee"},"location":{"coordinates":[-73.97843460000001,40.782969],"type":"Point"},"name":"Bagels And Co"} +,{"_id":{"$oid":"55cba2476c522cafdb0563ef"},"location":{"coordinates":[-73.76888799999999,40.758741],"type":"Point"},"name":"Mmm Thats A Wrap"} +,{"_id":{"$oid":"55cba2476c522cafdb0563f0"},"location":{"coordinates":[-73.8989026,40.8616336],"type":"Point"},"name":"A\u0026E Tenochtitlan Deli \u0026 Taqueria"} +,{"_id":{"$oid":"55cba2476c522cafdb0563f1"},"location":{"coordinates":[-73.98443999999999,40.75274599999999],"type":"Point"},"name":"Mangia Organics"} +,{"_id":{"$oid":"55cba2476c522cafdb0563f2"},"location":{"coordinates":[-73.964038,40.774315],"type":"Point"},"name":"Cafe Boulud/Bar Pleiades"} +,{"_id":{"$oid":"55cba2476c522cafdb0563f3"},"location":{"coordinates":[-73.8668666,40.87122129999999],"type":"Point"},"name":"Three Boys From Italy"} +,{"_id":{"$oid":"55cba2476c522cafdb0563f4"},"location":{"coordinates":[-73.9981881,40.7448825],"type":"Point"},"name":"Lucky'S Famous Burgers"} +,{"_id":{"$oid":"55cba2476c522cafdb0563f5"},"location":{"coordinates":[-73.9939366,40.7468282],"type":"Point"},"name":"Starbucks"} +,{"_id":{"$oid":"55cba2476c522cafdb0563f6"},"location":{"coordinates":[-73.9880941,40.7456687],"type":"Point"},"name":"The Breslin Bar \u0026 Dining Room"} +,{"_id":{"$oid":"55cba2476c522cafdb0563f7"},"location":{"coordinates":[-74.0021601,40.739341],"type":"Point"},"name":"Mckenna'S Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb0563f8"},"location":{"coordinates":[-73.863677,40.689797],"type":"Point"},"name":"Neir'S Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb0563f9"},"location":{"coordinates":[-74.0019949,40.73455999999999],"type":"Point"},"name":"Downtown Galway Hooker"} +,{"_id":{"$oid":"55cba2476c522cafdb0563fa"},"location":{"coordinates":[-73.8015739,40.7806747],"type":"Point"},"name":"Mediterranean Grill Greek Tarverna"} +,{"_id":{"$oid":"55cba2476c522cafdb0563fb"},"location":{"coordinates":[-73.8583415,40.8656669],"type":"Point"},"name":"Mamma Rosa'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0563fc"},"location":{"coordinates":[-73.88822619999999,40.87234580000001],"type":"Point"},"name":"National Restaurant \u0026 Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb0563fd"},"location":{"coordinates":[-74.0061971,40.7402246],"type":"Point"},"name":"Bill'S Bar \u0026 Burgers"} +,{"_id":{"$oid":"55cba2476c522cafdb0563fe"},"location":{"coordinates":[-73.9925458,40.7450898],"type":"Point"},"name":"The Ainsworth"} +,{"_id":{"$oid":"55cba2476c522cafdb0563ff"},"location":{"coordinates":[-73.983564,40.579355],"type":"Point"},"name":"Pop'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056400"},"location":{"coordinates":[-73.98975949999999,40.7330115],"type":"Point"},"name":"Think Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb056401"},"location":{"coordinates":[-73.9886525,40.7221165],"type":"Point"},"name":"Rockwood Musical"} +,{"_id":{"$oid":"55cba2476c522cafdb056402"},"location":{"coordinates":[-73.883405,40.745905],"type":"Point"},"name":"Louie'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb056403"},"location":{"coordinates":[-73.8751885,40.682977],"type":"Point"},"name":"Faro Del Pacifico Pupuseria And Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056404"},"location":{"coordinates":[-74.11639319999999,40.6290645],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb056405"},"location":{"coordinates":[-73.9993702,40.72983019999999],"type":"Point"},"name":"Triona'S"} +,{"_id":{"$oid":"55cba2476c522cafdb056406"},"location":{"coordinates":[-73.8883756,40.8537395],"type":"Point"},"name":"Roberto'S"} +,{"_id":{"$oid":"55cba2476c522cafdb056407"},"location":{"coordinates":[-73.9959859,40.7645432],"type":"Point"},"name":"Print Restaurant/Service Room/Banquet Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb056408"},"location":{"coordinates":[-73.96142619999999,40.7111677],"type":"Point"},"name":"Pies-N-Thighs"} +,{"_id":{"$oid":"55cba2476c522cafdb056409"},"location":{"coordinates":[-73.9927739,40.7250101],"type":"Point"},"name":"Crime Scene"} +,{"_id":{"$oid":"55cba2476c522cafdb05640a"},"location":{"coordinates":[-74.00068089999999,40.720819],"type":"Point"},"name":"Grand Bo Ky Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05640b"},"location":{"coordinates":[-73.81459,40.7890159],"type":"Point"},"name":"Casa Asia"} +,{"_id":{"$oid":"55cba2476c522cafdb05640c"},"location":{"coordinates":[-73.9533019,40.8103619],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb05640d"},"location":{"coordinates":[-73.97628999999999,40.7488],"type":"Point"},"name":"Royal Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05640e"},"location":{"coordinates":[-73.98968119999999,40.7335742],"type":"Point"},"name":"Dos Toros Taqueria"} +,{"_id":{"$oid":"55cba2476c522cafdb05640f"},"location":{"coordinates":[-73.9306398,40.6721932],"type":"Point"},"name":"Primitos Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056410"},"location":{"coordinates":[-73.98501209999999,40.7453154],"type":"Point"},"name":"New York Open Center"} +,{"_id":{"$oid":"55cba2476c522cafdb056411"},"location":{"coordinates":[-74.1331891,40.56415930000001],"type":"Point"},"name":"Oakwood'S Hershey"} +,{"_id":{"$oid":"55cba2476c522cafdb056412"},"location":{"coordinates":[-73.918814,40.807067],"type":"Point"},"name":"Foo Hing Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb056413"},"location":{"coordinates":[-73.995058,40.73692399999999],"type":"Point"},"name":"Qi"} +,{"_id":{"$oid":"55cba2476c522cafdb056414"},"location":{"coordinates":[-73.84428869999999,40.6717202],"type":"Point"},"name":"Comfort Inn \u0026 Suites"} +,{"_id":{"$oid":"55cba2476c522cafdb056415"},"location":{"coordinates":[-73.9466173,40.8111377],"type":"Point"},"name":"Oui, Oui, Crepes And Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056416"},"location":{"coordinates":[-73.9931508,40.616504],"type":"Point"},"name":"Spicy Bampa"} +,{"_id":{"$oid":"55cba2476c522cafdb056417"},"location":{"coordinates":[-73.7650949,40.6810663],"type":"Point"},"name":"Occasions Banquet And Catering Hall"} +,{"_id":{"$oid":"55cba2476c522cafdb056418"},"location":{"coordinates":[-73.9599499,40.814079],"type":"Point"},"name":"China Place"} +,{"_id":{"$oid":"55cba2476c522cafdb056419"},"location":{"coordinates":[-73.968509,40.6795929],"type":"Point"},"name":"The Vanderbilt"} +,{"_id":{"$oid":"55cba2476c522cafdb05641a"},"location":{"coordinates":[-73.8156659,40.75533799999999],"type":"Point"},"name":"John John'S Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb05641b"},"location":{"coordinates":[-73.976579,40.786086],"type":"Point"},"name":"Flor De Mayo"} +,{"_id":{"$oid":"55cba2476c522cafdb05641c"},"location":{"coordinates":[-73.9795675,40.7442515],"type":"Point"},"name":"Healthy Oasis"} +,{"_id":{"$oid":"55cba2476c522cafdb05641d"},"location":{"coordinates":[-73.9546801,40.73409720000001],"type":"Point"},"name":"Green Leaves Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05641e"},"location":{"coordinates":[-73.8799034,40.7480784],"type":"Point"},"name":"El Abuelo Gozon"} +,{"_id":{"$oid":"55cba2476c522cafdb05641f"},"location":{"coordinates":[-73.952877,40.783591],"type":"Point"},"name":"Sfoglia Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056420"},"location":{"coordinates":[-73.952862,40.598966],"type":"Point"},"name":"1818 Seafood Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056421"},"location":{"coordinates":[-73.94661119999999,40.7850725],"type":"Point"},"name":"Grand Cafe (Metropolitan Hospital)"} +,{"_id":{"$oid":"55cba2476c522cafdb056422"},"location":{"coordinates":[-74.0094507,40.7382579],"type":"Point"},"name":"Cafe Gitane"} +,{"_id":{"$oid":"55cba2476c522cafdb056423"},"location":{"coordinates":[-73.88473019999999,40.8738699],"type":"Point"},"name":"Ka Wah Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056424"},"location":{"coordinates":[-73.82253,40.764463],"type":"Point"},"name":"Sam Won Gahk"} +,{"_id":{"$oid":"55cba2476c522cafdb056425"},"location":{"coordinates":[-73.9829202,40.7710841],"type":"Point"},"name":"Wichcraft"} +,{"_id":{"$oid":"55cba2476c522cafdb056426"},"location":{"coordinates":[-73.9932036,40.6019227],"type":"Point"},"name":"Fu Kee Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056427"},"location":{"coordinates":[-73.99270539999999,40.7565646],"type":"Point"},"name":"Staybridge Suites"} +,{"_id":{"$oid":"55cba2476c522cafdb056428"},"location":{"coordinates":[-73.9820338,40.7673947],"type":"Point"},"name":"Robert"} +,{"_id":{"$oid":"55cba2476c522cafdb056429"},"location":{"coordinates":[-73.911329,40.8054638],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb05642a"},"location":{"coordinates":[-73.7662364,40.7466584],"type":"Point"},"name":"L.I.E. Hot Bagel"} +,{"_id":{"$oid":"55cba2476c522cafdb05642b"},"location":{"coordinates":[-73.8292249,40.762236],"type":"Point"},"name":"Sky Blue Karaoke"} +,{"_id":{"$oid":"55cba2476c522cafdb05642c"},"location":{"coordinates":[-73.9918041,40.7465254],"type":"Point"},"name":"Blue"} +,{"_id":{"$oid":"55cba2476c522cafdb05642d"},"location":{"coordinates":[-73.917182,40.843466],"type":"Point"},"name":"Zoodo"} +,{"_id":{"$oid":"55cba2476c522cafdb05642e"},"location":{"coordinates":[-73.9717091,40.76274859999999],"type":"Point"},"name":"Green Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05642f"},"location":{"coordinates":[-73.88705,40.730019],"type":"Point"},"name":"Tanto Dulce"} +,{"_id":{"$oid":"55cba2476c522cafdb056430"},"location":{"coordinates":[-73.920176,40.7415453],"type":"Point"},"name":"Pecas Y Algo Mas"} +,{"_id":{"$oid":"55cba2476c522cafdb056431"},"location":{"coordinates":[-74.02308599999999,40.634872],"type":"Point"},"name":"Castillo De Jagua Deli Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056432"},"location":{"coordinates":[-73.9076778,40.6779837],"type":"Point"},"name":"Crown Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb056433"},"location":{"coordinates":[-74.00579119999999,40.7388426],"type":"Point"},"name":"Corsino Cantina"} +,{"_id":{"$oid":"55cba2476c522cafdb056434"},"location":{"coordinates":[-73.8133017,40.7876333],"type":"Point"},"name":"Tasty Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb056435"},"location":{"coordinates":[-73.9338203,40.794642],"type":"Point"},"name":"Love Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056436"},"location":{"coordinates":[-74.168663,40.57268],"type":"Point"},"name":"Costco'S"} +,{"_id":{"$oid":"55cba2476c522cafdb056437"},"location":{"coordinates":[-73.90959099999999,40.769646],"type":"Point"},"name":"Alembi Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056438"},"location":{"coordinates":[-73.95144429999999,40.6897444],"type":"Point"},"name":"Kennedy Pizza \u0026 Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb056439"},"location":{"coordinates":[-73.9360248,40.8440366],"type":"Point"},"name":"Billiards"} +,{"_id":{"$oid":"55cba2476c522cafdb05643a"},"location":{"coordinates":[-73.7910117,40.6737052],"type":"Point"},"name":"Panda"} +,{"_id":{"$oid":"55cba2476c522cafdb05643b"},"location":{"coordinates":[-73.951368,40.793093],"type":"Point"},"name":"El Museo Del Barrio"} +,{"_id":{"$oid":"55cba2476c522cafdb05643c"},"location":{"coordinates":[-73.89189379999999,40.82098],"type":"Point"},"name":"Jimbo'S Hamburger Palace"} +,{"_id":{"$oid":"55cba2476c522cafdb05643d"},"location":{"coordinates":[-74.0060373,40.7076634],"type":"Point"},"name":"Open Door Gastropub"} +,{"_id":{"$oid":"55cba2476c522cafdb05643e"},"location":{"coordinates":[-73.961946,40.649595],"type":"Point"},"name":"Flatbush Latin Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb05643f"},"location":{"coordinates":[-73.958086,40.760016],"type":"Point"},"name":"Blue \u0026 Gold Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb056440"},"location":{"coordinates":[-74.14681,40.6320813],"type":"Point"},"name":"Elm Park Inn/Upper Crust Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056441"},"location":{"coordinates":[-73.8808598,40.8281225],"type":"Point"},"name":"El Chicanito Sports Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb056442"},"location":{"coordinates":[-73.9920528,40.7484761],"type":"Point"},"name":"Fresh \u0026 Co"} +,{"_id":{"$oid":"55cba2476c522cafdb056443"},"location":{"coordinates":[-73.9916861,40.7157559],"type":"Point"},"name":"Cheeky Sandwiches"} +,{"_id":{"$oid":"55cba2476c522cafdb056444"},"location":{"coordinates":[-74.006405,40.734609],"type":"Point"},"name":"Wild"} +,{"_id":{"$oid":"55cba2476c522cafdb056445"},"location":{"coordinates":[-73.8965017,40.8674102],"type":"Point"},"name":"Kingsbridge Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb056446"},"location":{"coordinates":[-74.2318975,40.52728219999999],"type":"Point"},"name":"Buddha Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb056447"},"location":{"coordinates":[-73.9867995,40.6920056],"type":"Point"},"name":"Yummy Taco"} +,{"_id":{"$oid":"55cba2476c522cafdb056448"},"location":{"coordinates":[-73.8792984,40.8409975],"type":"Point"},"name":"Chen'S Foo Hai"} +,{"_id":{"$oid":"55cba2476c522cafdb056449"},"location":{"coordinates":[-74.0759269,40.640118],"type":"Point"},"name":"Pier 76"} +,{"_id":{"$oid":"55cba2476c522cafdb05644a"},"location":{"coordinates":[-73.87436900000002,40.750985],"type":"Point"},"name":"Vivia Feliz 1"} +,{"_id":{"$oid":"55cba2476c522cafdb05644b"},"location":{"coordinates":[-73.921329,40.737863],"type":"Point"},"name":"Good Luck Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05644c"},"location":{"coordinates":[-73.966111,40.756566],"type":"Point"},"name":"Al Bustan Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05644d"},"location":{"coordinates":[-73.9537558,40.806067],"type":"Point"},"name":"Patisserie Des Ambassades"} +,{"_id":{"$oid":"55cba2476c522cafdb05644e"},"location":{"coordinates":[-73.9085071,40.8540143],"type":"Point"},"name":"Accra Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05644f"},"location":{"coordinates":[-74.0010957,40.7343432],"type":"Point"},"name":"Highlands Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056450"},"location":{"coordinates":[-73.9527763,40.7650173],"type":"Point"},"name":"Pyramid Coffee Company Hospital For Special Surgery"} +,{"_id":{"$oid":"55cba2476c522cafdb056451"},"location":{"coordinates":[-73.9293081,40.70474189999999],"type":"Point"},"name":"Tomo Japanese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056452"},"location":{"coordinates":[-73.976935,40.6720822],"type":"Point"},"name":"Moim Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056453"},"location":{"coordinates":[-73.99892400000002,40.7296551],"type":"Point"},"name":"Amity Hall"} +,{"_id":{"$oid":"55cba2476c522cafdb056454"},"location":{"coordinates":[-73.81350909999999,40.789129],"type":"Point"},"name":"Villaggio Ristorante"} +,{"_id":{"$oid":"55cba2476c522cafdb056455"},"location":{"coordinates":[-74.0142077,40.7148476],"type":"Point"},"name":"Goldman Sachs"} +,{"_id":{"$oid":"55cba2476c522cafdb056456"},"location":{"coordinates":[-73.9577042,40.671359],"type":"Point"},"name":"The Pulp And The Bean"} +,{"_id":{"$oid":"55cba2476c522cafdb056457"},"location":{"coordinates":[-73.9858728,40.7545549],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb056458"},"location":{"coordinates":[-74.01227399999999,40.706483],"type":"Point"},"name":"United Federation Of Teachers"} +,{"_id":{"$oid":"55cba2476c522cafdb056459"},"location":{"coordinates":[-73.8783663,40.872173],"type":"Point"},"name":"Salud Y Estilo De Vida"} +,{"_id":{"$oid":"55cba2476c522cafdb05645a"},"location":{"coordinates":[-73.9590458,40.7130845],"type":"Point"},"name":"Tabare"} +,{"_id":{"$oid":"55cba2476c522cafdb05645b"},"location":{"coordinates":[-73.9200589,40.7141795],"type":"Point"},"name":"Pedro'S Latin Kitchen \u0026 Pizza (Western Beef)"} +,{"_id":{"$oid":"55cba2476c522cafdb05645c"},"location":{"coordinates":[-73.9338265,40.7039189],"type":"Point"},"name":"Green Fitness Studio"} +,{"_id":{"$oid":"55cba2476c522cafdb05645d"},"location":{"coordinates":[-73.98373959999999,40.58759570000001],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb05645e"},"location":{"coordinates":[-74.0085587,40.7067779],"type":"Point"},"name":"Taz Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05645f"},"location":{"coordinates":[-73.9115339,40.68378],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb056460"},"location":{"coordinates":[-73.97357559999999,40.7901213],"type":"Point"},"name":"Thai Seasons"} +,{"_id":{"$oid":"55cba2476c522cafdb056461"},"location":{"coordinates":[-74.00042049999999,40.67686560000001],"type":"Point"},"name":"Dish Food \u0026 Events"} +,{"_id":{"$oid":"55cba2476c522cafdb056462"},"location":{"coordinates":[-73.85417679999999,40.692715],"type":"Point"},"name":"La Gitana Panaderia Y Restaurante"} +,{"_id":{"$oid":"55cba2476c522cafdb056463"},"location":{"coordinates":[-73.9813412,40.6675021],"type":"Point"},"name":"Okeanos"} +,{"_id":{"$oid":"55cba2476c522cafdb056464"},"location":{"coordinates":[-73.9655908,40.6403889],"type":"Point"},"name":"Purple Yam"} +,{"_id":{"$oid":"55cba2476c522cafdb056465"},"location":{"coordinates":[-74.0078798,40.7406045],"type":"Point"},"name":"Boom Boom Room, Le Bain, The Standard"} +,{"_id":{"$oid":"55cba2476c522cafdb056466"},"location":{"coordinates":[-73.9790139,40.7453712],"type":"Point"},"name":"Cask Bar \u0026 Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb056467"},"location":{"coordinates":[-73.92882999999999,40.6333259],"type":"Point"},"name":"Popeye'S Chicken \u0026 Biscuits"} +,{"_id":{"$oid":"55cba2476c522cafdb056468"},"location":{"coordinates":[-73.98274119999999,40.7275162],"type":"Point"},"name":"La Lucha"} +,{"_id":{"$oid":"55cba2476c522cafdb056469"},"location":{"coordinates":[-73.881957,40.734569],"type":"Point"},"name":"Que Sabor Bakery Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05646a"},"location":{"coordinates":[-74.00217289999999,40.7449531],"type":"Point"},"name":"Blossom Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb05646b"},"location":{"coordinates":[-73.8375461,40.6968231],"type":"Point"},"name":"New Mr. Lin'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05646c"},"location":{"coordinates":[-73.94967100000001,40.67621800000001],"type":"Point"},"name":"Chris Caribbean \u0026 American Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05646d"},"location":{"coordinates":[-73.9912513,40.6631681],"type":"Point"},"name":"South"} +,{"_id":{"$oid":"55cba2476c522cafdb05646e"},"location":{"coordinates":[-73.9988889,40.7477778],"type":"Point"},"name":"Auntie Anne'S Pretzel Stand #27B"} +,{"_id":{"$oid":"55cba2476c522cafdb05646f"},"location":{"coordinates":[-73.9988889,40.7477778],"type":"Point"},"name":"Auntie Anne'S Stand #42B"} +,{"_id":{"$oid":"55cba2476c522cafdb056470"},"location":{"coordinates":[-77.340572,40.1112976],"type":"Point"},"name":"Penn Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb056471"},"location":{"coordinates":[-73.9556786,40.7138813],"type":"Point"},"name":"La Bella Mariella Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb056472"},"location":{"coordinates":[-73.9886787,40.6889049],"type":"Point"},"name":"Nu Hotel"} +,{"_id":{"$oid":"55cba2476c522cafdb056473"},"location":{"coordinates":[-73.8316718,40.7641952],"type":"Point"},"name":"New One Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb056474"},"location":{"coordinates":[-73.9830436,40.7311551],"type":"Point"},"name":"Vinny Vincenz"} +,{"_id":{"$oid":"55cba2476c522cafdb056475"},"location":{"coordinates":[-73.87989879999999,40.7480789],"type":"Point"},"name":"Gato Verde Sports Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb056476"},"location":{"coordinates":[-73.9781017,40.5962489],"type":"Point"},"name":"El Tequilero Bar \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056477"},"location":{"coordinates":[-73.9613127,40.8009069],"type":"Point"},"name":"Freda'S"} +,{"_id":{"$oid":"55cba2476c522cafdb056478"},"location":{"coordinates":[-73.9894073,40.6275681],"type":"Point"},"name":"Big Fleishig'S Express"} +,{"_id":{"$oid":"55cba2476c522cafdb056479"},"location":{"coordinates":[-73.93063889999999,40.8530573],"type":"Point"},"name":"Grullon Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb05647a"},"location":{"coordinates":[-73.8751772,40.7508267],"type":"Point"},"name":"Azoguenita Bakery \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05647b"},"location":{"coordinates":[-73.9366852,40.7018301],"type":"Point"},"name":"El Rey Iii"} +,{"_id":{"$oid":"55cba2476c522cafdb05647c"},"location":{"coordinates":[-73.8739659,40.7769271],"type":"Point"},"name":"Delta Sky Club (Bartender Service Terminal D Delta Departure)"} +,{"_id":{"$oid":"55cba2476c522cafdb05647d"},"location":{"coordinates":[-74.0276396,40.632481],"type":"Point"},"name":"Longbow Pub And Pantry"} +,{"_id":{"$oid":"55cba2476c522cafdb05647e"},"location":{"coordinates":[-73.8693012,40.7485076],"type":"Point"},"name":"Los 3 Potrillos Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05647f"},"location":{"coordinates":[-73.92790939999999,40.7038012],"type":"Point"},"name":"La Perla Del Ulua Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056480"},"location":{"coordinates":[-73.8135485,40.7649863],"type":"Point"},"name":"New York Kim-Bob Nara"} +,{"_id":{"$oid":"55cba2476c522cafdb056481"},"location":{"coordinates":[-73.9686047,40.7542557],"type":"Point"},"name":"Matisse"} +,{"_id":{"$oid":"55cba2476c522cafdb056482"},"location":{"coordinates":[-73.8629212,40.8170112],"type":"Point"},"name":"Yung Hsin Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056483"},"location":{"coordinates":[-73.930729,40.66923],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb056484"},"location":{"coordinates":[-73.780546,40.729075],"type":"Point"},"name":"Bagels \u0026 Co"} +,{"_id":{"$oid":"55cba2476c522cafdb056485"},"location":{"coordinates":[-73.91857499999999,40.70167199999999],"type":"Point"},"name":"China One Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056486"},"location":{"coordinates":[-73.960021,40.66375],"type":"Point"},"name":"Mcdonald'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056487"},"location":{"coordinates":[-73.98200179999999,40.7539436],"type":"Point"},"name":"Celsius"} +,{"_id":{"$oid":"55cba2476c522cafdb056488"},"location":{"coordinates":[-74.001294,40.7389179],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb056489"},"location":{"coordinates":[-73.8284108,40.7600099],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb05648a"},"location":{"coordinates":[-73.9956959,40.7231159],"type":"Point"},"name":"Torrisi Italian Specialties"} +,{"_id":{"$oid":"55cba2476c522cafdb05648b"},"location":{"coordinates":[-73.9646618,40.7563665],"type":"Point"},"name":"Financier Patisserie"} +,{"_id":{"$oid":"55cba2476c522cafdb05648c"},"location":{"coordinates":[-73.977098,40.762334],"type":"Point"},"name":"Kikku Japanese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05648d"},"location":{"coordinates":[-73.9697901,40.64272709999999],"type":"Point"},"name":"Los Mariachis Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05648e"},"location":{"coordinates":[-74.0006385,40.7418941],"type":"Point"},"name":"Roy'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05648f"},"location":{"coordinates":[-73.82995,40.851952],"type":"Point"},"name":"Giovanni'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056490"},"location":{"coordinates":[-73.8955509,40.8637767],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb056491"},"location":{"coordinates":[-73.959446,40.5986532],"type":"Point"},"name":"Chateau Di Alik"} +,{"_id":{"$oid":"55cba2476c522cafdb056492"},"location":{"coordinates":[-73.905862,40.711782],"type":"Point"},"name":"L'Aroma Deli Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056493"},"location":{"coordinates":[-73.942712,40.7062979],"type":"Point"},"name":"Privilege Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb056494"},"location":{"coordinates":[-73.98428679999999,40.7564316],"type":"Point"},"name":"The Long Room"} +,{"_id":{"$oid":"55cba2476c522cafdb056495"},"location":{"coordinates":[-73.9115181,40.6694523],"type":"Point"},"name":"Pitkin Seafood"} +,{"_id":{"$oid":"55cba2476c522cafdb056496"},"location":{"coordinates":[-73.902627,40.85150660000001],"type":"Point"},"name":"Tom'S Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb056497"},"location":{"coordinates":[-73.83922059999999,40.6580888],"type":"Point"},"name":"Viva Empanadas"} +,{"_id":{"$oid":"55cba2476c522cafdb056498"},"location":{"coordinates":[-73.9494416,40.6788671],"type":"Point"},"name":"Trini Gul Original Roti \u0026 West Indian Food"} +,{"_id":{"$oid":"55cba2476c522cafdb056499"},"location":{"coordinates":[-73.990556,40.749722],"type":"Point"},"name":"Lucy'S Cantina Royale"} +,{"_id":{"$oid":"55cba2476c522cafdb05649a"},"location":{"coordinates":[-73.8186762,40.7505648],"type":"Point"},"name":"Guan Dong Yi Jia"} +,{"_id":{"$oid":"55cba2476c522cafdb05649b"},"location":{"coordinates":[-73.9917321,40.7708506],"type":"Point"},"name":"Hudson Eatery"} +,{"_id":{"$oid":"55cba2476c522cafdb05649c"},"location":{"coordinates":[-73.8721752,40.7535483],"type":"Point"},"name":"Lucky Star Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05649d"},"location":{"coordinates":[-73.8501067,40.73327560000001],"type":"Point"},"name":"Pizza Palace Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05649e"},"location":{"coordinates":[-73.993008,40.7177508],"type":"Point"},"name":"Natalie Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb05649f"},"location":{"coordinates":[-73.9196946,40.7931957],"type":"Point"},"name":"Courtside Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0564a0"},"location":{"coordinates":[-74.0021482,40.7325738],"type":"Point"},"name":"Karaoke Boho"} +,{"_id":{"$oid":"55cba2476c522cafdb0564a1"},"location":{"coordinates":[-73.8314228,40.8894866],"type":"Point"},"name":"Faithy'S Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0564a2"},"location":{"coordinates":[-73.978833,40.64856],"type":"Point"},"name":"Brancaccio'S Food Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb0564a3"},"location":{"coordinates":[-73.8137441,40.7651216],"type":"Point"},"name":"Siruyeon"} +,{"_id":{"$oid":"55cba2476c522cafdb0564a4"},"location":{"coordinates":[-73.9861301,40.75508730000001],"type":"Point"},"name":"Chop'T"} +,{"_id":{"$oid":"55cba2476c522cafdb0564a5"},"location":{"coordinates":[-73.98809,40.729047],"type":"Point"},"name":"Mark"} +,{"_id":{"$oid":"55cba2476c522cafdb0564a6"},"location":{"coordinates":[-73.987375,40.765076],"type":"Point"},"name":"Holey Cream"} +,{"_id":{"$oid":"55cba2476c522cafdb0564a7"},"location":{"coordinates":[-73.9866445,40.72631579999999],"type":"Point"},"name":"Milon Bangladesh \u0026 Indian Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0564a8"},"location":{"coordinates":[-73.9437969,40.6833673],"type":"Point"},"name":"Peaches Market Table"} +,{"_id":{"$oid":"55cba2476c522cafdb0564a9"},"location":{"coordinates":[-74.0023697,40.7339175],"type":"Point"},"name":"Ofrenda"} +,{"_id":{"$oid":"55cba2476c522cafdb0564aa"},"location":{"coordinates":[-73.969291,40.756594],"type":"Point"},"name":"Crystal"} +,{"_id":{"$oid":"55cba2476c522cafdb0564ab"},"location":{"coordinates":[-74.0118121,40.6363807],"type":"Point"},"name":"Night°"} +,{"_id":{"$oid":"55cba2476c522cafdb0564ac"},"location":{"coordinates":[-73.9170501,40.7652224],"type":"Point"},"name":"Crave"} +,{"_id":{"$oid":"55cba2476c522cafdb0564ad"},"location":{"coordinates":[-73.94938170000002,40.590466],"type":"Point"},"name":"Hayashi Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb0564ae"},"location":{"coordinates":[-73.993487,40.748337],"type":"Point"},"name":"Appetite Nyc Llc"} +,{"_id":{"$oid":"55cba2476c522cafdb0564af"},"location":{"coordinates":[-73.97317919999999,40.7530844],"type":"Point"},"name":"Tiaa-Cref Cafeteria"} +,{"_id":{"$oid":"55cba2476c522cafdb0564b0"},"location":{"coordinates":[-73.94725749999999,40.8165433],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0564b1"},"location":{"coordinates":[-73.9555772,40.60980120000001],"type":"Point"},"name":"Taste Of Georgia"} +,{"_id":{"$oid":"55cba2476c522cafdb0564b2"},"location":{"coordinates":[-73.899311,40.8511306],"type":"Point"},"name":"The Point African Caribbean Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0564b3"},"location":{"coordinates":[-73.9741222,40.7517576],"type":"Point"},"name":"Naya Express"} +,{"_id":{"$oid":"55cba2476c522cafdb0564b4"},"location":{"coordinates":[-73.8724719,40.7185196],"type":"Point"},"name":"Framboise Bakeshop"} +,{"_id":{"$oid":"55cba2476c522cafdb0564b5"},"location":{"coordinates":[-73.97636039999999,40.6442325],"type":"Point"},"name":"Super 403 Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0564b6"},"location":{"coordinates":[-73.9174312,40.8298282],"type":"Point"},"name":"The Original Dream Cafe Comida Latina"} +,{"_id":{"$oid":"55cba2476c522cafdb0564b7"},"location":{"coordinates":[-73.9751086,40.6800646],"type":"Point"},"name":"Cubana Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0564b8"},"location":{"coordinates":[-74.0097633,40.7326352],"type":"Point"},"name":"Rock Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0564b9"},"location":{"coordinates":[-73.9698595,40.7609465],"type":"Point"},"name":"C'Est Bon Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0564ba"},"location":{"coordinates":[-74.0007775,40.7404343],"type":"Point"},"name":"The Grey Dog"} +,{"_id":{"$oid":"55cba2476c522cafdb0564bb"},"location":{"coordinates":[-73.87941049999999,40.7409785],"type":"Point"},"name":"Sweet Yummy House"} +,{"_id":{"$oid":"55cba2476c522cafdb0564bc"},"location":{"coordinates":[-73.92014859999999,40.7578038],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0564bd"},"location":{"coordinates":[-73.99492339999999,40.7280068],"type":"Point"},"name":"West 3Rd Common"} +,{"_id":{"$oid":"55cba2476c522cafdb0564be"},"location":{"coordinates":[-73.97216999999999,40.755584],"type":"Point"},"name":"Best Western Hotel Hospitality House"} +,{"_id":{"$oid":"55cba2476c522cafdb0564bf"},"location":{"coordinates":[-74.0154858,40.7130392],"type":"Point"},"name":"Devon And Blakely"} +,{"_id":{"$oid":"55cba2476c522cafdb0564c0"},"location":{"coordinates":[-73.9926445,40.6831564],"type":"Point"},"name":"La Casita Yarn Shop Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0564c1"},"location":{"coordinates":[-73.9498182,40.75336009999999],"type":"Point"},"name":"Manna Catering"} +,{"_id":{"$oid":"55cba2476c522cafdb0564c2"},"location":{"coordinates":[-73.9885927,40.76445],"type":"Point"},"name":"Stecchino"} +,{"_id":{"$oid":"55cba2476c522cafdb0564c3"},"location":{"coordinates":[-73.90434979999999,40.722131],"type":"Point"},"name":"Three Sons Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb0564c4"},"location":{"coordinates":[-73.988912,40.72939],"type":"Point"},"name":"Spot"} +,{"_id":{"$oid":"55cba2476c522cafdb0564c5"},"location":{"coordinates":[-74.1660553,40.5823983],"type":"Point"},"name":"Classic Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb0564c6"},"location":{"coordinates":[-73.90287409999999,40.7709356],"type":"Point"},"name":"Krave Cafe And Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0564c7"},"location":{"coordinates":[-73.771801,40.764564],"type":"Point"},"name":"Local Bar And Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0564c8"},"location":{"coordinates":[-73.8887424,40.8732638],"type":"Point"},"name":"Jerome'S Pizza \u0026 Pasta"} +,{"_id":{"$oid":"55cba2476c522cafdb0564c9"},"location":{"coordinates":[-73.9719069,40.7494205],"type":"Point"},"name":"Tudor Bar And Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0564ca"},"location":{"coordinates":[-74.00780019999999,40.7129744],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0564cb"},"location":{"coordinates":[-73.9882564,40.7695572],"type":"Point"},"name":"Justino'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb0564cc"},"location":{"coordinates":[-73.88083209999999,40.80972070000001],"type":"Point"},"name":"The Point Cafe \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0564cd"},"location":{"coordinates":[-73.9864391,40.7164057],"type":"Point"},"name":"Triple Shot World Atlas"} +,{"_id":{"$oid":"55cba2476c522cafdb0564ce"},"location":{"coordinates":[-73.9986752,40.7446233],"type":"Point"},"name":"Spice"} +,{"_id":{"$oid":"55cba2476c522cafdb0564cf"},"location":{"coordinates":[-73.9618357,40.7589557],"type":"Point"},"name":"Bistro Vendome"} +,{"_id":{"$oid":"55cba2476c522cafdb0564d0"},"location":{"coordinates":[-73.8997651,40.8149718],"type":"Point"},"name":"El Monstro Del Sazon Restaurant Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb0564d1"},"location":{"coordinates":[-73.9631067,40.6753514],"type":"Point"},"name":"Half Court Sports Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0564d2"},"location":{"coordinates":[-74.001246,40.742054],"type":"Point"},"name":"Chipotle Mexican Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0564d3"},"location":{"coordinates":[-73.9889492,40.7342618],"type":"Point"},"name":"Chipotle Mexican Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0564d4"},"location":{"coordinates":[-73.85393979999999,40.6931955],"type":"Point"},"name":"Caridad Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0564d5"},"location":{"coordinates":[-73.9890813,40.7530156],"type":"Point"},"name":"Chipotle Mexican Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0564d6"},"location":{"coordinates":[-73.9885752,40.7694808],"type":"Point"},"name":"Fresco 57"} +,{"_id":{"$oid":"55cba2476c522cafdb0564d7"},"location":{"coordinates":[-73.8608567,40.7298154],"type":"Point"},"name":"Fu Ying Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0564d8"},"location":{"coordinates":[-73.930115,40.670259],"type":"Point"},"name":"Tasty Bites"} +,{"_id":{"$oid":"55cba2476c522cafdb0564d9"},"location":{"coordinates":[-73.86788,40.742343],"type":"Point"},"name":"Costa Verde"} +,{"_id":{"$oid":"55cba2476c522cafdb0564da"},"location":{"coordinates":[-73.9984959,40.7504908],"type":"Point"},"name":"Morgan Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0564db"},"location":{"coordinates":[-73.88338639999999,40.6467009],"type":"Point"},"name":"China Star"} +,{"_id":{"$oid":"55cba2476c522cafdb0564dc"},"location":{"coordinates":[-73.8820329,40.7559676],"type":"Point"},"name":"Los Cabos"} +,{"_id":{"$oid":"55cba2476c522cafdb0564dd"},"location":{"coordinates":[-73.9872855,40.7477239],"type":"Point"},"name":"K Town"} +,{"_id":{"$oid":"55cba2476c522cafdb0564de"},"location":{"coordinates":[-73.81391599999999,40.763379],"type":"Point"},"name":"Jeun Ju Korean Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0564df"},"location":{"coordinates":[-73.941323,40.8057537],"type":"Point"},"name":"Island Salad"} +,{"_id":{"$oid":"55cba2476c522cafdb0564e0"},"location":{"coordinates":[-73.96546769999999,40.7142531],"type":"Point"},"name":"1 Or 8"} +,{"_id":{"$oid":"55cba2476c522cafdb0564e1"},"location":{"coordinates":[-82.4848547,29.6892676],"type":"Point"},"name":"Asian Jewels Seafood Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0564e2"},"location":{"coordinates":[-73.950754,40.792673],"type":"Point"},"name":"Blimpie"} +,{"_id":{"$oid":"55cba2476c522cafdb0564e3"},"location":{"coordinates":[-73.95918499999999,40.5784049],"type":"Point"},"name":"Subway And Hershey'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0564e4"},"location":{"coordinates":[-73.9892259,40.7357641],"type":"Point"},"name":"T.G.I. Friday'S / Tim Hortons"} +,{"_id":{"$oid":"55cba2476c522cafdb0564e5"},"location":{"coordinates":[-73.98710100000001,40.747578],"type":"Point"},"name":"Hanamichi"} +,{"_id":{"$oid":"55cba2476c522cafdb0564e6"},"location":{"coordinates":[-73.8529369,40.6935708],"type":"Point"},"name":"Carnival House Resturant"} +,{"_id":{"$oid":"55cba2476c522cafdb0564e7"},"location":{"coordinates":[-73.914553,40.6855499],"type":"Point"},"name":"Checkers"} +,{"_id":{"$oid":"55cba2476c522cafdb0564e8"},"location":{"coordinates":[-73.9912026,40.7381004],"type":"Point"},"name":"Devi"} +,{"_id":{"$oid":"55cba2476c522cafdb0564e9"},"location":{"coordinates":[-73.9938069,40.70299869999999],"type":"Point"},"name":"Old Fulton Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0564ea"},"location":{"coordinates":[-73.78975179999999,40.7668041],"type":"Point"},"name":"Graziella Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb0564eb"},"location":{"coordinates":[-73.99099149999999,40.7499318],"type":"Point"},"name":"Little Italy Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0564ec"},"location":{"coordinates":[-73.9709862,40.6897711],"type":"Point"},"name":"Chez Oskar"} +,{"_id":{"$oid":"55cba2476c522cafdb0564ed"},"location":{"coordinates":[-73.99771609999999,40.7190315],"type":"Point"},"name":"My Little Secret"} +,{"_id":{"$oid":"55cba2476c522cafdb0564ee"},"location":{"coordinates":[-73.9505518,40.7446954],"type":"Point"},"name":"Breadbox Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0564ef"},"location":{"coordinates":[-73.93853349999999,40.8472058],"type":"Point"},"name":"Manolo Tapas Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0564f0"},"location":{"coordinates":[-73.994596,40.760275],"type":"Point"},"name":"Mr. Biggs Bar And Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0564f1"},"location":{"coordinates":[-74.003016,40.750751],"type":"Point"},"name":"Ovest Pizzoteca"} +,{"_id":{"$oid":"55cba2476c522cafdb0564f2"},"location":{"coordinates":[-73.9933889,40.714833],"type":"Point"},"name":"Tbaar"} +,{"_id":{"$oid":"55cba2476c522cafdb0564f3"},"location":{"coordinates":[-73.78929939999999,40.7396253],"type":"Point"},"name":"King Wok"} +,{"_id":{"$oid":"55cba2476c522cafdb0564f4"},"location":{"coordinates":[-73.9573187,40.6718433],"type":"Point"},"name":"Golden Chopsticks Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0564f5"},"location":{"coordinates":[-73.8095711,40.7206519],"type":"Point"},"name":"Parsons Ale House"} +,{"_id":{"$oid":"55cba2476c522cafdb0564f6"},"location":{"coordinates":[-73.8277308,40.8527975],"type":"Point"},"name":"Kennedy'S Chicken \u0026 Sandwiches"} +,{"_id":{"$oid":"55cba2476c522cafdb0564f7"},"location":{"coordinates":[-73.97480159999999,40.76366770000001],"type":"Point"},"name":"Providence Equities"} +,{"_id":{"$oid":"55cba2476c522cafdb0564f8"},"location":{"coordinates":[-73.856899,40.7173271],"type":"Point"},"name":"Manor Oktoberfest Forest Hills"} +,{"_id":{"$oid":"55cba2476c522cafdb0564f9"},"location":{"coordinates":[-73.7918401,40.7063817],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0564fa"},"location":{"coordinates":[-73.8959725,40.8689085],"type":"Point"},"name":"Lj Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0564fb"},"location":{"coordinates":[-73.956165,40.599096],"type":"Point"},"name":"Ka Ka Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0564fc"},"location":{"coordinates":[-73.9756526,40.7643188],"type":"Point"},"name":"A Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0564fd"},"location":{"coordinates":[-73.995617,40.7263866],"type":"Point"},"name":"Cafe Angelique Express"} +,{"_id":{"$oid":"55cba2476c522cafdb0564fe"},"location":{"coordinates":[-73.8477595,40.8764933],"type":"Point"},"name":"Jenny'S Corner Palace"} +,{"_id":{"$oid":"55cba2476c522cafdb0564ff"},"location":{"coordinates":[-73.9443185,40.6122114],"type":"Point"},"name":"Savor Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056500"},"location":{"coordinates":[-73.9900189,40.5993104],"type":"Point"},"name":"Asian Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb056501"},"location":{"coordinates":[-74.0084735,40.7094988],"type":"Point"},"name":"Blimpie"} +,{"_id":{"$oid":"55cba2476c522cafdb056502"},"location":{"coordinates":[-73.9210275,40.6413138],"type":"Point"},"name":"Nathans Famous"} +,{"_id":{"$oid":"55cba2476c522cafdb056503"},"location":{"coordinates":[-73.9734615,40.67905330000001],"type":"Point"},"name":"Born Thai"} +,{"_id":{"$oid":"55cba2476c522cafdb056504"},"location":{"coordinates":[-73.9489059,40.650989],"type":"Point"},"name":"New Chung Mee Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056505"},"location":{"coordinates":[-73.9808252,40.7793504],"type":"Point"},"name":"Gina La Fornarina"} +,{"_id":{"$oid":"55cba2476c522cafdb056506"},"location":{"coordinates":[-73.7609078,40.72044289999999],"type":"Point"},"name":"Franhill Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb056507"},"location":{"coordinates":[-73.96860040000001,40.7571903],"type":"Point"},"name":"Envy"} +,{"_id":{"$oid":"55cba2476c522cafdb056508"},"location":{"coordinates":[-73.914489,40.814495],"type":"Point"},"name":"Tina Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb056509"},"location":{"coordinates":[-73.9251285,40.8220602],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb05650a"},"location":{"coordinates":[-73.9766552,40.75081309999999],"type":"Point"},"name":"Previti Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05650b"},"location":{"coordinates":[-73.80403249999999,40.75916050000001],"type":"Point"},"name":"Bakery De Paris"} +,{"_id":{"$oid":"55cba2476c522cafdb05650c"},"location":{"coordinates":[-73.8799093,40.7480778],"type":"Point"},"name":"La Abundancia Bakery And Restauran"} +,{"_id":{"$oid":"55cba2476c522cafdb05650d"},"location":{"coordinates":[-73.9628989,40.61092499999999],"type":"Point"},"name":"Sophies'S Bistro"} +,{"_id":{"$oid":"55cba2476c522cafdb05650e"},"location":{"coordinates":[-73.77757629999999,40.6794663],"type":"Point"},"name":"East Ming Dragon"} +,{"_id":{"$oid":"55cba2476c522cafdb05650f"},"location":{"coordinates":[-73.8709914,40.7421879],"type":"Point"},"name":"Marina Bizcochos"} +,{"_id":{"$oid":"55cba2476c522cafdb056510"},"location":{"coordinates":[-73.9919324,40.7270717],"type":"Point"},"name":"B Bar And Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb056511"},"location":{"coordinates":[-74.161907,40.598235],"type":"Point"},"name":"1001 Nights Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056512"},"location":{"coordinates":[-73.9778279,40.7521903],"type":"Point"},"name":"Magnolia Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb056513"},"location":{"coordinates":[-73.7591991,40.7407796],"type":"Point"},"name":"Buddy'S Kosher Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb056514"},"location":{"coordinates":[-73.9605466,40.6502651],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb056515"},"location":{"coordinates":[-73.9387564,40.8379087],"type":"Point"},"name":"El Bacan"} +,{"_id":{"$oid":"55cba2476c522cafdb056516"},"location":{"coordinates":[-73.95324099999999,40.6554],"type":"Point"},"name":"Corona Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056517"},"location":{"coordinates":[-73.9513697,40.7111303],"type":"Point"},"name":"Cafe Argentino"} +,{"_id":{"$oid":"55cba2476c522cafdb056518"},"location":{"coordinates":[-73.95531369999999,40.7138587],"type":"Point"},"name":"Cupcakeland"} +,{"_id":{"$oid":"55cba2476c522cafdb056519"},"location":{"coordinates":[-73.8799078,40.7480779],"type":"Point"},"name":"Taqueria Coatzingo"} +,{"_id":{"$oid":"55cba2476c522cafdb05651a"},"location":{"coordinates":[-73.86697459999999,40.8312214],"type":"Point"},"name":"Pupuseria Salvadorena"} +,{"_id":{"$oid":"55cba2476c522cafdb05651b"},"location":{"coordinates":[-73.9243079,40.7565289],"type":"Point"},"name":"The Mad Donkey"} +,{"_id":{"$oid":"55cba2476c522cafdb05651c"},"location":{"coordinates":[-73.9480007,40.7834619],"type":"Point"},"name":"Ray'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05651d"},"location":{"coordinates":[-74.00515639999999,40.7063764],"type":"Point"},"name":"A.I.G.Chartis"} +,{"_id":{"$oid":"55cba2476c522cafdb05651e"},"location":{"coordinates":[-73.977538,40.749829],"type":"Point"},"name":"Mapo Tofu"} +,{"_id":{"$oid":"55cba2476c522cafdb05651f"},"location":{"coordinates":[-73.8075425,40.7208274],"type":"Point"},"name":"Medical Arts Sanitarium"} +,{"_id":{"$oid":"55cba2476c522cafdb056520"},"location":{"coordinates":[-73.891626,40.74644500000001],"type":"Point"},"name":"Caja Musical"} +,{"_id":{"$oid":"55cba2476c522cafdb056521"},"location":{"coordinates":[-73.9901672,40.717928],"type":"Point"},"name":"Casa Mezcal"} +,{"_id":{"$oid":"55cba2476c522cafdb056522"},"location":{"coordinates":[-73.95957030000001,40.6875633],"type":"Point"},"name":"Nero Doro"} +,{"_id":{"$oid":"55cba2476c522cafdb056523"},"location":{"coordinates":[-73.9777052,40.6864624],"type":"Point"},"name":"Bam Cinema Concession Stand"} +,{"_id":{"$oid":"55cba2476c522cafdb056524"},"location":{"coordinates":[-73.88471799999999,40.8540727],"type":"Point"},"name":"Sake Ii Japanese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056525"},"location":{"coordinates":[-73.992199,40.759579],"type":"Point"},"name":"Ajisai Japanese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056526"},"location":{"coordinates":[-73.9927733,40.7239473],"type":"Point"},"name":"Cherche Midi"} +,{"_id":{"$oid":"55cba2476c522cafdb056527"},"location":{"coordinates":[-74.0101167,40.7045046],"type":"Point"},"name":"Vintry"} +,{"_id":{"$oid":"55cba2476c522cafdb056528"},"location":{"coordinates":[-74.07644909999999,40.6379992],"type":"Point"},"name":"Golden Krust Caribbean Bakery \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb056529"},"location":{"coordinates":[-74.00303199999999,40.6560739],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb05652a"},"location":{"coordinates":[-73.9565602,40.7212096],"type":"Point"},"name":"The Counting Room"} +,{"_id":{"$oid":"55cba2476c522cafdb05652b"},"location":{"coordinates":[-73.987599,40.7404],"type":"Point"},"name":"Press"} +,{"_id":{"$oid":"55cba2476c522cafdb05652c"},"location":{"coordinates":[-73.9804636,40.7517661],"type":"Point"},"name":"Hale \u0026 Hearty Soups"} +,{"_id":{"$oid":"55cba2476c522cafdb05652d"},"location":{"coordinates":[-73.8585834,40.8918111],"type":"Point"},"name":"Jimbo'S Hamburger Palace"} +,{"_id":{"$oid":"55cba2476c522cafdb05652e"},"location":{"coordinates":[-73.9113926,40.6370422],"type":"Point"},"name":"Popeyes Chicken \u0026 Biscuits"} +,{"_id":{"$oid":"55cba2476c522cafdb05652f"},"location":{"coordinates":[-73.9852422,40.7471677],"type":"Point"},"name":"Kyochon"} +,{"_id":{"$oid":"55cba2476c522cafdb056530"},"location":{"coordinates":[-74.0083661,40.6363347],"type":"Point"},"name":"Empire Bbq Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056531"},"location":{"coordinates":[-73.981601,40.721824],"type":"Point"},"name":"Rossy'S Bakery \u0026 Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb056532"},"location":{"coordinates":[-73.978995,40.783115],"type":"Point"},"name":"Coppola'S"} +,{"_id":{"$oid":"55cba2476c522cafdb056533"},"location":{"coordinates":[-73.996594,40.713047],"type":"Point"},"name":"Finest Dumpling Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056534"},"location":{"coordinates":[-73.950915,40.58384900000001],"type":"Point"},"name":"Royal Bay"} +,{"_id":{"$oid":"55cba2476c522cafdb056535"},"location":{"coordinates":[-73.97401420000001,40.7518193],"type":"Point"},"name":"Five Guys Burgers And Fries"} +,{"_id":{"$oid":"55cba2476c522cafdb056536"},"location":{"coordinates":[-73.9880637,40.73160439999999],"type":"Point"},"name":"Everything Bagels"} +,{"_id":{"$oid":"55cba2476c522cafdb056537"},"location":{"coordinates":[-73.8212222,40.725219],"type":"Point"},"name":"Tolmas"} +,{"_id":{"$oid":"55cba2476c522cafdb056538"},"location":{"coordinates":[-73.9585683,40.7295392],"type":"Point"},"name":"Paulie Gee"} +,{"_id":{"$oid":"55cba2476c522cafdb056539"},"location":{"coordinates":[-74.1660553,40.5823983],"type":"Point"},"name":"Burger King"} +,{"_id":{"$oid":"55cba2476c522cafdb05653a"},"location":{"coordinates":[-73.9929238,40.72061799999999],"type":"Point"},"name":"Dixon Place"} +,{"_id":{"$oid":"55cba2476c522cafdb05653b"},"location":{"coordinates":[-74.0066298,40.63871049999999],"type":"Point"},"name":"New Gia Lam Vietnamese Food"} +,{"_id":{"$oid":"55cba2476c522cafdb05653c"},"location":{"coordinates":[-73.98417909999999,40.6354219],"type":"Point"},"name":"Freunds Sushi \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb05653d"},"location":{"coordinates":[-73.99102599999999,40.752287],"type":"Point"},"name":"Best Bagel \u0026 Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb05653e"},"location":{"coordinates":[-73.90713869999999,40.6974497],"type":"Point"},"name":"Son De Cali Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb05653f"},"location":{"coordinates":[-73.7842179,40.6967986],"type":"Point"},"name":"New Hong Kong Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb056540"},"location":{"coordinates":[-73.9574042,40.7832449],"type":"Point"},"name":"Corner Cafe \u0026 Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb056541"},"location":{"coordinates":[-74.00573349999999,40.7398532],"type":"Point"},"name":"Provocateur Night Club"} +,{"_id":{"$oid":"55cba2476c522cafdb056542"},"location":{"coordinates":[-73.978136,40.648246],"type":"Point"},"name":"Mr Tong"} +,{"_id":{"$oid":"55cba2476c522cafdb056543"},"location":{"coordinates":[-74.0000354,40.7418282],"type":"Point"},"name":"Westville"} +,{"_id":{"$oid":"55cba2476c522cafdb056544"},"location":{"coordinates":[-73.9924996,40.7561204],"type":"Point"},"name":"Aleef Coffee House"} +,{"_id":{"$oid":"55cba2476c522cafdb056545"},"location":{"coordinates":[-73.95002319999999,40.7170354],"type":"Point"},"name":"Night Of Joy"} +,{"_id":{"$oid":"55cba2476c522cafdb056546"},"location":{"coordinates":[-73.89875649999999,40.7459182],"type":"Point"},"name":"Red Ribbon Bakeshop"} +,{"_id":{"$oid":"55cba2476c522cafdb056547"},"location":{"coordinates":[-73.843227,40.6852549],"type":"Point"},"name":"101 Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056548"},"location":{"coordinates":[-73.80299649999999,40.7621723],"type":"Point"},"name":"Tong Sam Gyup Goo Yi Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056549"},"location":{"coordinates":[-73.95683369999999,40.8019065],"type":"Point"},"name":"The 5 And Diamond"} +,{"_id":{"$oid":"55cba2476c522cafdb05654a"},"location":{"coordinates":[-73.9931544,40.7135879],"type":"Point"},"name":"New Wong Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05654b"},"location":{"coordinates":[-73.9424196,40.8067797],"type":"Point"},"name":"Applebee'S Neighborhood Grill \u0026 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05654c"},"location":{"coordinates":[-74.0098208,40.7147641],"type":"Point"},"name":"Banh Mi Veitnamese Sandwiches"} +,{"_id":{"$oid":"55cba2476c522cafdb05654d"},"location":{"coordinates":[-73.9558328,40.7142193],"type":"Point"},"name":"Knitting Factory"} +,{"_id":{"$oid":"55cba2476c522cafdb05654e"},"location":{"coordinates":[-73.98827399999999,40.728324],"type":"Point"},"name":"Pommes Frites"} +,{"_id":{"$oid":"55cba2476c522cafdb05654f"},"location":{"coordinates":[-74.1163928,40.5737519],"type":"Point"},"name":"Night Gallery"} +,{"_id":{"$oid":"55cba2476c522cafdb056550"},"location":{"coordinates":[-73.9412242,40.8343808],"type":"Point"},"name":"Mario'S Hamburger Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056551"},"location":{"coordinates":[-73.8318829,40.6842261],"type":"Point"},"name":"Trini Delight"} +,{"_id":{"$oid":"55cba2476c522cafdb056552"},"location":{"coordinates":[-73.89601019999999,40.8626359],"type":"Point"},"name":"Popeye'S Chicken \u0026 Biscuits"} +,{"_id":{"$oid":"55cba2476c522cafdb056553"},"location":{"coordinates":[-73.8185807,40.7505452],"type":"Point"},"name":"T \u0026 T Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056554"},"location":{"coordinates":[-73.99219,40.6937056],"type":"Point"},"name":"Curry Heights"} +,{"_id":{"$oid":"55cba2476c522cafdb056555"},"location":{"coordinates":[-73.9984379,40.738349],"type":"Point"},"name":"Chelsea Bagel \u0026 Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056556"},"location":{"coordinates":[-73.99411979999999,40.7558949],"type":"Point"},"name":"Buongiorno Espresso"} +,{"_id":{"$oid":"55cba2476c522cafdb056557"},"location":{"coordinates":[-73.9052147,40.8730139],"type":"Point"},"name":"New Yung Hong"} +,{"_id":{"$oid":"55cba2476c522cafdb056558"},"location":{"coordinates":[-74.1691342,40.5594658],"type":"Point"},"name":"Ralph'S Famous Italian Ices"} +,{"_id":{"$oid":"55cba2476c522cafdb056559"},"location":{"coordinates":[-73.9238214,40.7399539],"type":"Point"},"name":"Curry Point"} +,{"_id":{"$oid":"55cba2476c522cafdb05655a"},"location":{"coordinates":[-73.988744,40.728744],"type":"Point"},"name":"Tkettle"} +,{"_id":{"$oid":"55cba2476c522cafdb05655b"},"location":{"coordinates":[-73.96289569999999,40.6638082],"type":"Point"},"name":"Gino'S Brick Oven Pizza \u0026 Trattoria"} +,{"_id":{"$oid":"55cba2476c522cafdb05655c"},"location":{"coordinates":[-73.9374273,40.8399525],"type":"Point"},"name":"Christ Coffee Shop \u0026 Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb05655d"},"location":{"coordinates":[-73.976478,40.75040970000001],"type":"Point"},"name":"Everyday Gourmet Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb05655e"},"location":{"coordinates":[-73.9418902,40.7260666],"type":"Point"},"name":"Vinnie'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb05655f"},"location":{"coordinates":[-73.8434039,40.8623051],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb056560"},"location":{"coordinates":[-74.00582159999999,40.7353864],"type":"Point"},"name":"Sushi West"} +,{"_id":{"$oid":"55cba2476c522cafdb056561"},"location":{"coordinates":[-73.9742809,40.7637658],"type":"Point"},"name":"Paris Theatre"} +,{"_id":{"$oid":"55cba2476c522cafdb056562"},"location":{"coordinates":[-73.9930184,40.7533969],"type":"Point"},"name":"Amici 36"} +,{"_id":{"$oid":"55cba2476c522cafdb056563"},"location":{"coordinates":[-73.93693449999999,40.8046196],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb056564"},"location":{"coordinates":[-73.90919389999999,40.8244519],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb056565"},"location":{"coordinates":[-73.7622303,40.6908359],"type":"Point"},"name":"Farmers Pizza \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb056566"},"location":{"coordinates":[-73.9222384,40.8043524],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb056567"},"location":{"coordinates":[-73.77542799999999,40.7590328],"type":"Point"},"name":"Veranda Restaurant-Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056568"},"location":{"coordinates":[-73.9559012,40.7793993],"type":"Point"},"name":"Europan Pizza Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056569"},"location":{"coordinates":[-73.9970084,40.6912241],"type":"Point"},"name":"Roebling Inn"} +,{"_id":{"$oid":"55cba2476c522cafdb05656a"},"location":{"coordinates":[-73.92667469999999,40.64458219999999],"type":"Point"},"name":"Guyana Ex Police Association Of America"} +,{"_id":{"$oid":"55cba2476c522cafdb05656b"},"location":{"coordinates":[-73.9846671,40.72952],"type":"Point"},"name":"Tu-Lu'S Gluten-Free Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb05656c"},"location":{"coordinates":[-73.9315779,40.658561],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb05656d"},"location":{"coordinates":[-73.9779667,40.7870598],"type":"Point"},"name":"5 Napkin Burger"} +,{"_id":{"$oid":"55cba2476c522cafdb05656e"},"location":{"coordinates":[-73.811767,40.702485],"type":"Point"},"name":"Sonrisa Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05656f"},"location":{"coordinates":[-73.983001,40.73025],"type":"Point"},"name":"Balade"} +,{"_id":{"$oid":"55cba2476c522cafdb056570"},"location":{"coordinates":[-73.9942192,40.731959],"type":"Point"},"name":"Mom'S Cooking"} +,{"_id":{"$oid":"55cba2476c522cafdb056571"},"location":{"coordinates":[-73.9409163,40.6801456],"type":"Point"},"name":"Golden Krust Bakery \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb056572"},"location":{"coordinates":[-73.8285063,40.7590465],"type":"Point"},"name":"He Nan Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb056573"},"location":{"coordinates":[-73.942449,40.670276],"type":"Point"},"name":"Basil"} +,{"_id":{"$oid":"55cba2476c522cafdb056574"},"location":{"coordinates":[-73.9823451,40.7498107],"type":"Point"},"name":"Subway Sandwiches/Papa John'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056575"},"location":{"coordinates":[-73.992203,40.726241],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb056576"},"location":{"coordinates":[-73.992471,40.7511286],"type":"Point"},"name":"Lenny'S"} +,{"_id":{"$oid":"55cba2476c522cafdb056577"},"location":{"coordinates":[-73.99015399999999,40.75236599999999],"type":"Point"},"name":"The Pig \u0026 Whistle Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb056578"},"location":{"coordinates":[-73.9464686,40.7915745],"type":"Point"},"name":"El Nuevo Caribeno Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056579"},"location":{"coordinates":[-73.9201159,40.7579053],"type":"Point"},"name":"Karaoke Shout"} +,{"_id":{"$oid":"55cba2476c522cafdb05657a"},"location":{"coordinates":[-73.86184589999999,40.6642358],"type":"Point"},"name":"Forbell Cafe (U.S. Post Office Cafeteria)"} +,{"_id":{"$oid":"55cba2476c522cafdb05657b"},"location":{"coordinates":[-73.8569262,40.8336491],"type":"Point"},"name":"Halal Musa Chinese Food"} +,{"_id":{"$oid":"55cba2476c522cafdb05657c"},"location":{"coordinates":[-74.00623499999999,40.7076939],"type":"Point"},"name":"Bon Chon Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb05657d"},"location":{"coordinates":[-73.920146,40.6987979],"type":"Point"},"name":"Mills Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb05657e"},"location":{"coordinates":[-73.7919354,40.6808925],"type":"Point"},"name":"New No 1 Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05657f"},"location":{"coordinates":[-73.9504894,40.72367810000001],"type":"Point"},"name":"Sapporo Ichiban"} +,{"_id":{"$oid":"55cba2476c522cafdb056580"},"location":{"coordinates":[-73.8991269,40.746499],"type":"Point"},"name":"Sripraphai Thai Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056581"},"location":{"coordinates":[-73.82084979999999,40.669971],"type":"Point"},"name":"New Brisas Latinas Bakery Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056582"},"location":{"coordinates":[-73.8819596,40.74150640000001],"type":"Point"},"name":"China Pearl Seafood Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056583"},"location":{"coordinates":[-73.949902,40.63449600000001],"type":"Point"},"name":"City Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056584"},"location":{"coordinates":[-73.941251,40.8421049],"type":"Point"},"name":"Armory Foundation"} +,{"_id":{"$oid":"55cba2476c522cafdb056585"},"location":{"coordinates":[-73.9637786,40.6769093],"type":"Point"},"name":"706 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb056586"},"location":{"coordinates":[-73.9210815,40.7564435],"type":"Point"},"name":"New Metro Coffee \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056587"},"location":{"coordinates":[-73.9828513,40.6891433],"type":"Point"},"name":"Gourmet Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056588"},"location":{"coordinates":[-73.8434346,40.8895122],"type":"Point"},"name":"Popeyes Chicken \u0026 Biscuits"} +,{"_id":{"$oid":"55cba2476c522cafdb056589"},"location":{"coordinates":[-73.7822056,40.6434612],"type":"Point"},"name":"Wendy'S"} +,{"_id":{"$oid":"55cba2476c522cafdb05658a"},"location":{"coordinates":[-73.77904339999999,40.778072],"type":"Point"},"name":"Five Guys Burgers And Fries"} +,{"_id":{"$oid":"55cba2476c522cafdb05658b"},"location":{"coordinates":[-73.9600014,40.5831976],"type":"Point"},"name":"Velvet Rope Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb05658c"},"location":{"coordinates":[-73.98379,40.6717439],"type":"Point"},"name":"Home Vietnamese Sandwich And Bubble Tea"} +,{"_id":{"$oid":"55cba2476c522cafdb05658d"},"location":{"coordinates":[-73.8979073,40.8591568],"type":"Point"},"name":"Los Balbuena Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05658e"},"location":{"coordinates":[-73.86513099999999,40.757921],"type":"Point"},"name":"Sweet Occasions"} +,{"_id":{"$oid":"55cba2476c522cafdb05658f"},"location":{"coordinates":[-73.9430213,40.6925258],"type":"Point"},"name":"New Hardee"} +,{"_id":{"$oid":"55cba2476c522cafdb056590"},"location":{"coordinates":[-73.9549502,40.6877047],"type":"Point"},"name":"Golden Hing"} +,{"_id":{"$oid":"55cba2476c522cafdb056591"},"location":{"coordinates":[-73.801549,40.762258],"type":"Point"},"name":"Sapphire"} +,{"_id":{"$oid":"55cba2476c522cafdb056592"},"location":{"coordinates":[-73.8979631,40.8468387],"type":"Point"},"name":"Five Stars Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056593"},"location":{"coordinates":[-73.97073379999999,40.7571834],"type":"Point"},"name":"Dig Inn Seasonal Market"} +,{"_id":{"$oid":"55cba2476c522cafdb056594"},"location":{"coordinates":[-73.9536282,40.7825047],"type":"Point"},"name":"Lex Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056595"},"location":{"coordinates":[-74.0064215,40.7314551],"type":"Point"},"name":"Takashi"} +,{"_id":{"$oid":"55cba2476c522cafdb056596"},"location":{"coordinates":[-73.98985859999999,40.6645693],"type":"Point"},"name":"New King Chinese Food"} +,{"_id":{"$oid":"55cba2476c522cafdb056597"},"location":{"coordinates":[-73.923975,40.678735],"type":"Point"},"name":"Lee'S Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb056598"},"location":{"coordinates":[-73.894007,40.7264642],"type":"Point"},"name":"Chen Grand China Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056599"},"location":{"coordinates":[-73.96487320000001,40.6061414],"type":"Point"},"name":"Horus Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb05659a"},"location":{"coordinates":[-73.875694,40.737225],"type":"Point"},"name":"5 De Mayo"} +,{"_id":{"$oid":"55cba2476c522cafdb05659b"},"location":{"coordinates":[-74.10311980000002,40.6431839],"type":"Point"},"name":"Celebrate At Snug Harbor"} +,{"_id":{"$oid":"55cba2476c522cafdb05659c"},"location":{"coordinates":[-74.01268830000001,40.7095273],"type":"Point"},"name":"Ruchi Indian Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb05659d"},"location":{"coordinates":[-73.9504278,40.670736],"type":"Point"},"name":"Crown Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb05659e"},"location":{"coordinates":[-73.98965640000002,40.7408518],"type":"Point"},"name":"Argo Tea Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05659f"},"location":{"coordinates":[-73.9109977,40.7633726],"type":"Point"},"name":"Matsu Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb0565a0"},"location":{"coordinates":[-73.9522781,40.5990251],"type":"Point"},"name":"Pho Hoai Rest"} +,{"_id":{"$oid":"55cba2476c522cafdb0565a1"},"location":{"coordinates":[-89.11404449999999,41.5539019],"type":"Point"},"name":"Financier Patisserie"} +,{"_id":{"$oid":"55cba2476c522cafdb0565a2"},"location":{"coordinates":[-73.9766125,40.6746627],"type":"Point"},"name":"Scottadito"} +,{"_id":{"$oid":"55cba2476c522cafdb0565a3"},"location":{"coordinates":[-73.9675788,40.6802458],"type":"Point"},"name":"Woodwork"} +,{"_id":{"$oid":"55cba2476c522cafdb0565a4"},"location":{"coordinates":[-74.1606613,40.6071081],"type":"Point"},"name":"Mike'S Unicorn Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb0565a5"},"location":{"coordinates":[-73.96854809999999,40.7571491],"type":"Point"},"name":"Obao"} +,{"_id":{"$oid":"55cba2476c522cafdb0565a6"},"location":{"coordinates":[-74.00996889999999,40.7193108],"type":"Point"},"name":"Benvenuto Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0565a7"},"location":{"coordinates":[-81.73495989999999,30.3133063],"type":"Point"},"name":"Hong Kong Chinese Food To Take Out"} +,{"_id":{"$oid":"55cba2476c522cafdb0565a8"},"location":{"coordinates":[-73.986507,40.73331],"type":"Point"},"name":"Red House Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0565a9"},"location":{"coordinates":[-73.9790246,40.6702673],"type":"Point"},"name":"Tofu Healthy Chinese Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb0565aa"},"location":{"coordinates":[-73.948025,40.6389667],"type":"Point"},"name":"Papa Johns"} +,{"_id":{"$oid":"55cba2476c522cafdb0565ab"},"location":{"coordinates":[-73.785687,40.761593],"type":"Point"},"name":"Dirty Pierres Bistro"} +,{"_id":{"$oid":"55cba2476c522cafdb0565ac"},"location":{"coordinates":[-73.968432,40.6779539],"type":"Point"},"name":"Maya Taqueria"} +,{"_id":{"$oid":"55cba2476c522cafdb0565ad"},"location":{"coordinates":[-73.86362,40.89582600000001],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0565ae"},"location":{"coordinates":[-73.9840634,40.7213153],"type":"Point"},"name":"Ariel'S Tapa Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb0565af"},"location":{"coordinates":[-73.993802,40.6903099],"type":"Point"},"name":"Atlantic Mitoushi Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb0565b0"},"location":{"coordinates":[-73.9915209,40.6924762],"type":"Point"},"name":"Green Power Cafe At Equinox Fitness Club"} +,{"_id":{"$oid":"55cba2476c522cafdb0565b1"},"location":{"coordinates":[-73.79000529999999,40.71185819999999],"type":"Point"},"name":"Yummy Fried Chicken, Pizza, \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0565b2"},"location":{"coordinates":[-73.9579013,40.6180509],"type":"Point"},"name":"Masake"} +,{"_id":{"$oid":"55cba2476c522cafdb0565b3"},"location":{"coordinates":[-73.9498593,40.6792225],"type":"Point"},"name":"Studio Ten"} +,{"_id":{"$oid":"55cba2476c522cafdb0565b4"},"location":{"coordinates":[-73.76712719999999,40.7605744],"type":"Point"},"name":"Chicken Lovers Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0565b5"},"location":{"coordinates":[-74.129178,40.612868],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0565b6"},"location":{"coordinates":[-73.9853347,40.7286089],"type":"Point"},"name":"The Immigrant Nyc"} +,{"_id":{"$oid":"55cba2476c522cafdb0565b7"},"location":{"coordinates":[-73.9946743,40.7433615],"type":"Point"},"name":"Steel Gym"} +,{"_id":{"$oid":"55cba2476c522cafdb0565b8"},"location":{"coordinates":[-73.990494,40.7569545],"type":"Point"},"name":"Heartland Brewery"} +,{"_id":{"$oid":"55cba2476c522cafdb0565b9"},"location":{"coordinates":[-74.20658449999999,40.54289199999999],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0565ba"},"location":{"coordinates":[-74.0039066,40.7370403],"type":"Point"},"name":"Cafe Minerva"} +,{"_id":{"$oid":"55cba2476c522cafdb0565bb"},"location":{"coordinates":[-74.114904,40.62886400000001],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0565bc"},"location":{"coordinates":[-73.9708361,40.7561264],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0565bd"},"location":{"coordinates":[-74.0066131,40.737409],"type":"Point"},"name":"Recette"} +,{"_id":{"$oid":"55cba2476c522cafdb0565be"},"location":{"coordinates":[-74.1628108,40.6068538],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0565bf"},"location":{"coordinates":[-74.1086648,40.572133],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0565c0"},"location":{"coordinates":[-74.1094482,40.5698876],"type":"Point"},"name":"Yogurt City"} +,{"_id":{"$oid":"55cba2476c522cafdb0565c1"},"location":{"coordinates":[-74.0099578,40.7159798],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0565c2"},"location":{"coordinates":[-73.968833,40.76046050000001],"type":"Point"},"name":"Juan Valdez Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0565c3"},"location":{"coordinates":[-73.994584,40.660553],"type":"Point"},"name":"Bar 718"} +,{"_id":{"$oid":"55cba2476c522cafdb0565c4"},"location":{"coordinates":[-73.98443,40.725358],"type":"Point"},"name":"Somtum Der"} +,{"_id":{"$oid":"55cba2476c522cafdb0565c5"},"location":{"coordinates":[-73.86082619999999,40.8342165],"type":"Point"},"name":"Chan'S Village"} +,{"_id":{"$oid":"55cba2476c522cafdb0565c6"},"location":{"coordinates":[-73.99773789999999,40.718959],"type":"Point"},"name":"Taormina Ristorante"} +,{"_id":{"$oid":"55cba2476c522cafdb0565c7"},"location":{"coordinates":[-73.8776479,40.7504672],"type":"Point"},"name":"Sing Sheng Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0565c8"},"location":{"coordinates":[-73.9246295,40.86626529999999],"type":"Point"},"name":"Beans And Vines"} +,{"_id":{"$oid":"55cba2476c522cafdb0565c9"},"location":{"coordinates":[-73.825777,40.751591],"type":"Point"},"name":"Great Wall Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0565ca"},"location":{"coordinates":[-73.8355,40.8380859],"type":"Point"},"name":"Sal Anthony'S Italian Heros"} +,{"_id":{"$oid":"55cba2476c522cafdb0565cb"},"location":{"coordinates":[-73.98236539999999,40.7309045],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0565cc"},"location":{"coordinates":[-73.9674807,40.6838279],"type":"Point"},"name":"Chance 11"} +,{"_id":{"$oid":"55cba2476c522cafdb0565cd"},"location":{"coordinates":[-73.92406179999999,40.7434631],"type":"Point"},"name":"Natural Tofu \u0026 Noodles Restaurant (Book Chang Dong)"} +,{"_id":{"$oid":"55cba2476c522cafdb0565ce"},"location":{"coordinates":[-73.985867,40.623804],"type":"Point"},"name":"Bagels N Greens"} +,{"_id":{"$oid":"55cba2476c522cafdb0565cf"},"location":{"coordinates":[-74.0725099,40.6434772],"type":"Point"},"name":"Au Bon Pain"} +,{"_id":{"$oid":"55cba2476c522cafdb0565d0"},"location":{"coordinates":[-73.8491672,40.8717066],"type":"Point"},"name":"Vybes Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0565d1"},"location":{"coordinates":[-73.9373579,40.7341074],"type":"Point"},"name":"Jj Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb0565d2"},"location":{"coordinates":[-74.1436178,40.5533734],"type":"Point"},"name":"Villa Paradisio"} +,{"_id":{"$oid":"55cba2476c522cafdb0565d3"},"location":{"coordinates":[-73.8595363,40.8325246],"type":"Point"},"name":"Lucky Star Bronx"} +,{"_id":{"$oid":"55cba2476c522cafdb0565d4"},"location":{"coordinates":[-73.921679,40.84014699999999],"type":"Point"},"name":"No. 1 China Garden Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0565d5"},"location":{"coordinates":[-73.8578884,40.7282638],"type":"Point"},"name":"Ariel'S Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0565d6"},"location":{"coordinates":[-73.8459033,40.7850371],"type":"Point"},"name":"College Point Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb0565d7"},"location":{"coordinates":[-73.9613044,40.7653672],"type":"Point"},"name":"Beekman Theatre"} +,{"_id":{"$oid":"55cba2476c522cafdb0565d8"},"location":{"coordinates":[-73.9850597,40.7581421],"type":"Point"},"name":"Cbre-1540"} +,{"_id":{"$oid":"55cba2476c522cafdb0565d9"},"location":{"coordinates":[-73.983051,40.738382],"type":"Point"},"name":"The Bluebell Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0565da"},"location":{"coordinates":[-73.9335882,40.8049174],"type":"Point"},"name":"Taste Of Cafe (Potamkin)"} +,{"_id":{"$oid":"55cba2476c522cafdb0565db"},"location":{"coordinates":[-73.968122,40.7061862],"type":"Point"},"name":"Indie Screen"} +,{"_id":{"$oid":"55cba2476c522cafdb0565dc"},"location":{"coordinates":[-73.9117495,40.6993193],"type":"Point"},"name":"Lee'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0565dd"},"location":{"coordinates":[-74.00671369999999,40.6526181],"type":"Point"},"name":"Taqueria El Maguey"} +,{"_id":{"$oid":"55cba2476c522cafdb0565de"},"location":{"coordinates":[-73.92674099999999,40.652141],"type":"Point"},"name":"Linda'S Restaurant Bakery \u0026 Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb0565df"},"location":{"coordinates":[-73.885386,40.6799134],"type":"Point"},"name":"Nancy Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0565e0"},"location":{"coordinates":[-73.9757635,40.7544736],"type":"Point"},"name":"Oaxaca Mexican Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0565e1"},"location":{"coordinates":[-73.9636611,40.8093296],"type":"Point"},"name":"Diana Center Cafeteria"} +,{"_id":{"$oid":"55cba2476c522cafdb0565e2"},"location":{"coordinates":[-73.9719848,40.6037702],"type":"Point"},"name":"Divine Kosher Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0565e3"},"location":{"coordinates":[-73.988809,40.7216582],"type":"Point"},"name":"The Meatball Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb0565e4"},"location":{"coordinates":[-73.8317622,40.7150379],"type":"Point"},"name":"Hot Bialys \u0026 Bagels"} +,{"_id":{"$oid":"55cba2476c522cafdb0565e5"},"location":{"coordinates":[-73.8894004,40.6573561],"type":"Point"},"name":"Chang Xing Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0565e6"},"location":{"coordinates":[-73.7355285,40.7135786],"type":"Point"},"name":"Ha Bo Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0565e7"},"location":{"coordinates":[-74.0053673,40.7382167],"type":"Point"},"name":"Mole"} +,{"_id":{"$oid":"55cba2476c522cafdb0565e8"},"location":{"coordinates":[-73.8723171,40.7490408],"type":"Point"},"name":"Bella Puebla Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0565e9"},"location":{"coordinates":[-73.9938619,40.756283],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0565ea"},"location":{"coordinates":[-73.9231423,40.6652367],"type":"Point"},"name":"Happy House"} +,{"_id":{"$oid":"55cba2476c522cafdb0565eb"},"location":{"coordinates":[-73.8793003,40.7402575],"type":"Point"},"name":"Ru Yi Seafood Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0565ec"},"location":{"coordinates":[-73.9044517,40.9066124],"type":"Point"},"name":"Carlos And Gabby'S Cantina Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0565ed"},"location":{"coordinates":[-74.0174031,40.6414663],"type":"Point"},"name":"Pequeno Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0565ee"},"location":{"coordinates":[-73.9455406,40.6803509],"type":"Point"},"name":"Wing Chang Food House"} +,{"_id":{"$oid":"55cba2476c522cafdb0565ef"},"location":{"coordinates":[-73.99801699999999,40.733186],"type":"Point"},"name":"Pour George(Affair On Eight"} +,{"_id":{"$oid":"55cba2476c522cafdb0565f0"},"location":{"coordinates":[-73.9628479,40.6881096],"type":"Point"},"name":"Urban Vintage"} +,{"_id":{"$oid":"55cba2476c522cafdb0565f1"},"location":{"coordinates":[-73.989516,40.726667],"type":"Point"},"name":"Heart Of India"} +,{"_id":{"$oid":"55cba2476c522cafdb0565f2"},"location":{"coordinates":[-73.988473,40.735318],"type":"Point"},"name":"Brother Jimmy'S Bbq"} +,{"_id":{"$oid":"55cba2476c522cafdb0565f3"},"location":{"coordinates":[-73.99994079999999,40.7338794],"type":"Point"},"name":"Olio E Piu"} +,{"_id":{"$oid":"55cba2476c522cafdb0565f4"},"location":{"coordinates":[-73.99256439999999,40.7425062],"type":"Point"},"name":"Terri"} +,{"_id":{"$oid":"55cba2476c522cafdb0565f5"},"location":{"coordinates":[-74.0080186,40.70517890000001],"type":"Point"},"name":"Dina Rata At Andaz Wall Street Hotel"} +,{"_id":{"$oid":"55cba2476c522cafdb0565f6"},"location":{"coordinates":[-74.0841808,40.626234],"type":"Point"},"name":"Atlixco Bakery \u0026 Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb0565f7"},"location":{"coordinates":[-74.21653359999999,40.5221716],"type":"Point"},"name":"Il Forno Of Brooklyn"} +,{"_id":{"$oid":"55cba2476c522cafdb0565f8"},"location":{"coordinates":[-73.9685741,40.7579569],"type":"Point"},"name":"Wolfgang'S Steakhouse"} +,{"_id":{"$oid":"55cba2476c522cafdb0565f9"},"location":{"coordinates":[-73.9931134,40.74323760000001],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0565fa"},"location":{"coordinates":[-73.9897793,40.7260641],"type":"Point"},"name":"La Cerveceria"} +,{"_id":{"$oid":"55cba2476c522cafdb0565fb"},"location":{"coordinates":[-73.8192809,40.6987392],"type":"Point"},"name":"Moka"} +,{"_id":{"$oid":"55cba2476c522cafdb0565fc"},"location":{"coordinates":[-73.9150664,40.776055],"type":"Point"},"name":"Rocky Mcbride'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0565fd"},"location":{"coordinates":[-73.9873853,40.6674826],"type":"Point"},"name":"Nuevo Mexico Mexican Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0565fe"},"location":{"coordinates":[-74.00039199999999,40.718021],"type":"Point"},"name":"New Hon Wong Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0565ff"},"location":{"coordinates":[-73.9237794,40.7020423],"type":"Point"},"name":"Amanda'S Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb056600"},"location":{"coordinates":[-73.96858399999999,40.7997549],"type":"Point"},"name":"Jerusalem Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056601"},"location":{"coordinates":[-73.9841138,40.7256616],"type":"Point"},"name":"Cien Fuegos"} +,{"_id":{"$oid":"55cba2476c522cafdb056602"},"location":{"coordinates":[-73.9215901,40.6527711],"type":"Point"},"name":"Dunkin Donuts \u0026 Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb056603"},"location":{"coordinates":[-73.854045,40.7421303],"type":"Point"},"name":"Dunkin Donuts \u0026 Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb056604"},"location":{"coordinates":[-73.99524860000001,40.7441252],"type":"Point"},"name":"Chelsea Papaya"} +,{"_id":{"$oid":"55cba2476c522cafdb056605"},"location":{"coordinates":[-73.9688132,40.6048159],"type":"Point"},"name":"Hunan Glatt Kosher"} +,{"_id":{"$oid":"55cba2476c522cafdb056606"},"location":{"coordinates":[-73.9940187,40.7671297],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb056607"},"location":{"coordinates":[-73.989566,40.755211],"type":"Point"},"name":"Popeye'S Chicken \u0026 Biscuits"} +,{"_id":{"$oid":"55cba2476c522cafdb056608"},"location":{"coordinates":[-80.1138586,26.7600433],"type":"Point"},"name":"Dolci Paradise Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb056609"},"location":{"coordinates":[-74.0086378,40.6471227],"type":"Point"},"name":"La Brasa Peruana"} +,{"_id":{"$oid":"55cba2476c522cafdb05660a"},"location":{"coordinates":[-73.8495164,40.7336029],"type":"Point"},"name":"Singas Famous Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05660b"},"location":{"coordinates":[-74.00017319999999,40.64423],"type":"Point"},"name":"Jia Xiang Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb05660c"},"location":{"coordinates":[-73.9201583,40.66154179999999],"type":"Point"},"name":"Dunkin Donuts \u0026 Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb05660d"},"location":{"coordinates":[-74.0162424,40.63913549999999],"type":"Point"},"name":"Casa Vieja Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05660e"},"location":{"coordinates":[-73.9686711,40.7996265],"type":"Point"},"name":"Broadway Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05660f"},"location":{"coordinates":[-73.9844553,40.7375002],"type":"Point"},"name":"Exchange Bar And Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb056610"},"location":{"coordinates":[-73.9922849,40.72720109999999],"type":"Point"},"name":"Ogawa Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056611"},"location":{"coordinates":[-73.9869552,40.7017287],"type":"Point"},"name":"Dumbo Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb056612"},"location":{"coordinates":[-73.845479,40.844184],"type":"Point"},"name":"M\u0026R Deli \u0026 Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb056613"},"location":{"coordinates":[-73.8317467,40.7150257],"type":"Point"},"name":"Fuji Japanese Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb056614"},"location":{"coordinates":[-73.98305599999999,40.742266],"type":"Point"},"name":"Bhojan"} +,{"_id":{"$oid":"55cba2476c522cafdb056615"},"location":{"coordinates":[-73.81685039999999,40.8223433],"type":"Point"},"name":"Fort Schuler House"} +,{"_id":{"$oid":"55cba2476c522cafdb056616"},"location":{"coordinates":[-73.9895015,40.71815429999999],"type":"Point"},"name":"Sebastian"} +,{"_id":{"$oid":"55cba2476c522cafdb056617"},"location":{"coordinates":[-73.9425072,40.7009227],"type":"Point"},"name":"Burger King"} +,{"_id":{"$oid":"55cba2476c522cafdb056618"},"location":{"coordinates":[-73.9793564,40.7589426],"type":"Point"},"name":"Au Bon Pain"} +,{"_id":{"$oid":"55cba2476c522cafdb056619"},"location":{"coordinates":[-73.9777295,40.78448849999999],"type":"Point"},"name":"The Tangled Vine"} +,{"_id":{"$oid":"55cba2476c522cafdb05661a"},"location":{"coordinates":[-74.174088,40.603686],"type":"Point"},"name":"Nansen Lodge Social Club"} +,{"_id":{"$oid":"55cba2476c522cafdb05661b"},"location":{"coordinates":[-73.992866,40.756597],"type":"Point"},"name":"Collage Bistro \u0026 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05661c"},"location":{"coordinates":[-73.9831537,40.7493304],"type":"Point"},"name":"Arabesque"} +,{"_id":{"$oid":"55cba2476c522cafdb05661d"},"location":{"coordinates":[-73.915092,40.833896],"type":"Point"},"name":"Eastern Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05661e"},"location":{"coordinates":[-73.9874249,40.7295377],"type":"Point"},"name":"The 13Th Step"} +,{"_id":{"$oid":"55cba2476c522cafdb05661f"},"location":{"coordinates":[-73.983054,40.7442629],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb056620"},"location":{"coordinates":[-73.9042201,40.8583402],"type":"Point"},"name":"Las Palmas Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb056621"},"location":{"coordinates":[-73.9848598,40.7467294],"type":"Point"},"name":"Ichi Umi"} +,{"_id":{"$oid":"55cba2476c522cafdb056622"},"location":{"coordinates":[-73.99179529999999,40.6843875],"type":"Point"},"name":"El Nuevo Portal Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056623"},"location":{"coordinates":[-73.948557,40.6453992],"type":"Point"},"name":"Solide Rocher Restaurant \u0026 Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb056624"},"location":{"coordinates":[-73.90283099999999,40.869242],"type":"Point"},"name":"Kings Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056625"},"location":{"coordinates":[-73.984037,40.7512619],"type":"Point"},"name":"Mustang Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056626"},"location":{"coordinates":[-73.9792527,40.6825759],"type":"Point"},"name":"Canteen"} +,{"_id":{"$oid":"55cba2476c522cafdb056627"},"location":{"coordinates":[-73.9105098,40.8746378],"type":"Point"},"name":"China Wang Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056628"},"location":{"coordinates":[-73.960982,40.817998],"type":"Point"},"name":"Dinosaur Bar-B-Que"} +,{"_id":{"$oid":"55cba2476c522cafdb056629"},"location":{"coordinates":[-73.8696808,40.8326917],"type":"Point"},"name":"I Love Ny Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05662a"},"location":{"coordinates":[-73.9761158,40.6809162],"type":"Point"},"name":"Sun In Bloom"} +,{"_id":{"$oid":"55cba2476c522cafdb05662b"},"location":{"coordinates":[-73.96805719999999,40.7925587],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb05662c"},"location":{"coordinates":[-73.97142649999999,40.7923078],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb05662d"},"location":{"coordinates":[-73.7996842,40.7029692],"type":"Point"},"name":"Dunkin Donuts, Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb05662e"},"location":{"coordinates":[-73.917799,40.68738099999999],"type":"Point"},"name":"Little Caesars"} +,{"_id":{"$oid":"55cba2476c522cafdb05662f"},"location":{"coordinates":[-73.9395017,40.7506541],"type":"Point"},"name":"Momento Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056630"},"location":{"coordinates":[-73.9696649,40.79812889999999],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb056631"},"location":{"coordinates":[-73.963713,40.676044],"type":"Point"},"name":"Penny House Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056632"},"location":{"coordinates":[-73.8260533,40.74401],"type":"Point"},"name":"88 Canteen"} +,{"_id":{"$oid":"55cba2476c522cafdb056633"},"location":{"coordinates":[-105.7857603,39.9472999],"type":"Point"},"name":"El Oasis Bar Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056634"},"location":{"coordinates":[-74.0108985,40.7035292],"type":"Point"},"name":"Fika"} +,{"_id":{"$oid":"55cba2476c522cafdb056635"},"location":{"coordinates":[-73.8456856,40.7824788],"type":"Point"},"name":"Kai Ying Chinese Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb056636"},"location":{"coordinates":[-73.983276,40.779618],"type":"Point"},"name":"My Most Favorite Food"} +,{"_id":{"$oid":"55cba2476c522cafdb056637"},"location":{"coordinates":[-73.9762326,40.7488541],"type":"Point"},"name":"Melange Green \u0026 Gourmet"} +,{"_id":{"$oid":"55cba2476c522cafdb056638"},"location":{"coordinates":[-73.9136474,40.6564808],"type":"Point"},"name":"Yoo'S Evergreen Salad Bar And Sandwiches"} +,{"_id":{"$oid":"55cba2476c522cafdb056639"},"location":{"coordinates":[-73.843278,40.719798],"type":"Point"},"name":"New A \u0026 J Pizza \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05663a"},"location":{"coordinates":[-73.989662,40.7527648],"type":"Point"},"name":"Group M"} +,{"_id":{"$oid":"55cba2476c522cafdb05663b"},"location":{"coordinates":[-73.8834287,40.7557017],"type":"Point"},"name":"Pio-Pio"} +,{"_id":{"$oid":"55cba2476c522cafdb05663c"},"location":{"coordinates":[-74.0142077,40.7148476],"type":"Point"},"name":"Goldman Sachs"} +,{"_id":{"$oid":"55cba2476c522cafdb05663d"},"location":{"coordinates":[-74.0213532,40.6331411],"type":"Point"},"name":"China Pagoda"} +,{"_id":{"$oid":"55cba2476c522cafdb05663e"},"location":{"coordinates":[-74.02869799999999,40.621153],"type":"Point"},"name":"Uncle Jimmy'S Backyard Bbq"} +,{"_id":{"$oid":"55cba2476c522cafdb05663f"},"location":{"coordinates":[-73.9539786,40.710512],"type":"Point"},"name":"El Gran Canario Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056640"},"location":{"coordinates":[-73.982699,40.728287],"type":"Point"},"name":"Brindle Room"} +,{"_id":{"$oid":"55cba2476c522cafdb056641"},"location":{"coordinates":[-73.992015,40.754742],"type":"Point"},"name":"2 Bros Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056642"},"location":{"coordinates":[-74.02731,40.633425],"type":"Point"},"name":"Olla Wine Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb056643"},"location":{"coordinates":[-73.9851935,40.7274241],"type":"Point"},"name":"V Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb056644"},"location":{"coordinates":[-73.9737195,40.685812],"type":"Point"},"name":"Hua Long Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056645"},"location":{"coordinates":[-73.96673659999999,40.75790550000001],"type":"Point"},"name":"Pinkberry"} +,{"_id":{"$oid":"55cba2476c522cafdb056646"},"location":{"coordinates":[-73.8043189,40.7562226],"type":"Point"},"name":"Blutos Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb056647"},"location":{"coordinates":[-73.916082,40.813523],"type":"Point"},"name":"Ruinas De Copan"} +,{"_id":{"$oid":"55cba2476c522cafdb056648"},"location":{"coordinates":[-73.9774643,40.7526347],"type":"Point"},"name":"Financier Patisserie"} +,{"_id":{"$oid":"55cba2476c522cafdb056649"},"location":{"coordinates":[-74.00489689999999,40.7419343],"type":"Point"},"name":"One Lucky Duck"} +,{"_id":{"$oid":"55cba2476c522cafdb05664a"},"location":{"coordinates":[-73.96043310000002,40.8180555],"type":"Point"},"name":"Cotton Club"} +,{"_id":{"$oid":"55cba2476c522cafdb05664b"},"location":{"coordinates":[-73.8445654,40.69520199999999],"type":"Point"},"name":"Taste Of The Town"} +,{"_id":{"$oid":"55cba2476c522cafdb05664c"},"location":{"coordinates":[-73.9332029,40.7953386],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb05664d"},"location":{"coordinates":[-74.0004562,40.7313851],"type":"Point"},"name":"Vegetarian Paradise Vp2"} +,{"_id":{"$oid":"55cba2476c522cafdb05664e"},"location":{"coordinates":[-73.9694102,40.759509],"type":"Point"},"name":"Lychee House"} +,{"_id":{"$oid":"55cba2476c522cafdb05664f"},"location":{"coordinates":[-73.941671,40.713496],"type":"Point"},"name":"Matt Torreys"} +,{"_id":{"$oid":"55cba2476c522cafdb056650"},"location":{"coordinates":[-73.8495799,40.88412599999999],"type":"Point"},"name":"Caribbean Connection Catering Services Inc Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056651"},"location":{"coordinates":[-73.9843351,40.72139019999999],"type":"Point"},"name":"Heaven'S Hot Bagel"} +,{"_id":{"$oid":"55cba2476c522cafdb056652"},"location":{"coordinates":[-73.9881999,40.7233026],"type":"Point"},"name":"One And One"} +,{"_id":{"$oid":"55cba2476c522cafdb056653"},"location":{"coordinates":[-73.9932759,40.697423],"type":"Point"},"name":"Ozu Japanese Cuisine \u0026 Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb056654"},"location":{"coordinates":[-73.949395,40.7807529],"type":"Point"},"name":"The Tool Box"} +,{"_id":{"$oid":"55cba2476c522cafdb056655"},"location":{"coordinates":[-73.9749819,40.7873588],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb056656"},"location":{"coordinates":[-73.96012979999999,40.5888399],"type":"Point"},"name":"Chinar Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056657"},"location":{"coordinates":[-74.0284937,40.6303766],"type":"Point"},"name":"Something Greek"} +,{"_id":{"$oid":"55cba2476c522cafdb056658"},"location":{"coordinates":[-73.99210450000001,40.6347216],"type":"Point"},"name":"Blue Dish Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056659"},"location":{"coordinates":[-74.00615499999999,40.736362],"type":"Point"},"name":"Meme Mediterranean"} +,{"_id":{"$oid":"55cba2476c522cafdb05665a"},"location":{"coordinates":[-73.982879,40.730414],"type":"Point"},"name":"Tallgrass Burger"} +,{"_id":{"$oid":"55cba2476c522cafdb05665b"},"location":{"coordinates":[-73.99646469999999,40.721821],"type":"Point"},"name":"Tartinery"} +,{"_id":{"$oid":"55cba2476c522cafdb05665c"},"location":{"coordinates":[-73.97760339999999,40.7458603],"type":"Point"},"name":"Nana Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb05665d"},"location":{"coordinates":[-73.9814155,40.688842],"type":"Point"},"name":"Metro King"} +,{"_id":{"$oid":"55cba2476c522cafdb05665e"},"location":{"coordinates":[-74.104073,40.58727200000001],"type":"Point"},"name":"Nakata Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb05665f"},"location":{"coordinates":[-73.9833812,40.6761542],"type":"Point"},"name":"Mission Dolores"} +,{"_id":{"$oid":"55cba2476c522cafdb056660"},"location":{"coordinates":[-73.9731943,40.737356],"type":"Point"},"name":"Robbins Nest"} +,{"_id":{"$oid":"55cba2476c522cafdb056661"},"location":{"coordinates":[-73.9542233,40.7149176],"type":"Point"},"name":"Pinkerton Wine Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb056662"},"location":{"coordinates":[-73.8664101,40.8403632],"type":"Point"},"name":"New Hong Kong Restaurant I"} +,{"_id":{"$oid":"55cba2476c522cafdb056663"},"location":{"coordinates":[-73.94668469999999,40.6247154],"type":"Point"},"name":"That Sushi Spot"} +,{"_id":{"$oid":"55cba2476c522cafdb056664"},"location":{"coordinates":[-73.8567709,40.8938944],"type":"Point"},"name":"Dragon Star"} +,{"_id":{"$oid":"55cba2476c522cafdb056665"},"location":{"coordinates":[-73.96328319999999,40.6143972],"type":"Point"},"name":"Lotus"} +,{"_id":{"$oid":"55cba2476c522cafdb056666"},"location":{"coordinates":[-74.01452499999999,40.645051],"type":"Point"},"name":"New Tung Hing Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056667"},"location":{"coordinates":[-73.8104263,40.6753772],"type":"Point"},"name":"Atma'S Roti Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb056668"},"location":{"coordinates":[-74.0275446,40.63280049999999],"type":"Point"},"name":"The Hen House"} +,{"_id":{"$oid":"55cba2476c522cafdb056669"},"location":{"coordinates":[-73.95327,40.802902],"type":"Point"},"name":"Empire Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05666a"},"location":{"coordinates":[-73.95532510000001,40.5778506],"type":"Point"},"name":"Kashkar Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05666b"},"location":{"coordinates":[-74.00839669999999,40.71386340000001],"type":"Point"},"name":"Takahachi Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb05666c"},"location":{"coordinates":[-73.91311999999999,40.7748711],"type":"Point"},"name":"Ornella Trattoria Italiana"} +,{"_id":{"$oid":"55cba2476c522cafdb05666d"},"location":{"coordinates":[-73.9666665,40.6402331],"type":"Point"},"name":"The Castello Plan"} +,{"_id":{"$oid":"55cba2476c522cafdb05666e"},"location":{"coordinates":[-73.8539851,40.7425872],"type":"Point"},"name":"La Colombianita Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb05666f"},"location":{"coordinates":[-74.004226,40.748073],"type":"Point"},"name":"Drunken Horse"} +,{"_id":{"$oid":"55cba2476c522cafdb056670"},"location":{"coordinates":[-73.8875376,40.7590999],"type":"Point"},"name":"Oregano Pizza \u0026 Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb056671"},"location":{"coordinates":[-73.921843,40.707344],"type":"Point"},"name":"The Bodega"} +,{"_id":{"$oid":"55cba2476c522cafdb056672"},"location":{"coordinates":[-73.9095469,40.6960532],"type":"Point"},"name":"El Rey Del Pollo Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056673"},"location":{"coordinates":[-73.8995198,40.7239362],"type":"Point"},"name":"Seasons Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056674"},"location":{"coordinates":[-73.94402099999999,40.759063],"type":"Point"},"name":"Mirela'S Place"} +,{"_id":{"$oid":"55cba2476c522cafdb056675"},"location":{"coordinates":[-73.94152629999999,40.5969924],"type":"Point"},"name":"New Mei Mei Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056676"},"location":{"coordinates":[-73.97024920000001,40.7557918],"type":"Point"},"name":"Ashton'S Alley"} +,{"_id":{"$oid":"55cba2476c522cafdb056677"},"location":{"coordinates":[-73.91512469999999,40.6555966],"type":"Point"},"name":"China No. 1 Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056678"},"location":{"coordinates":[-73.993062,40.7481099],"type":"Point"},"name":"Pret A Manger"} +,{"_id":{"$oid":"55cba2476c522cafdb056679"},"location":{"coordinates":[-74.0695467,40.6183345],"type":"Point"},"name":"Maizal Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05667a"},"location":{"coordinates":[-73.860467,40.67989900000001],"type":"Point"},"name":"Exotic Zone Bar \u0026 Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb05667b"},"location":{"coordinates":[-74.00045899999999,40.7359706],"type":"Point"},"name":"Original Sandwiches"} +,{"_id":{"$oid":"55cba2476c522cafdb05667c"},"location":{"coordinates":[-73.93951050000001,40.821488],"type":"Point"},"name":"Little Ochie Jamaican Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb05667d"},"location":{"coordinates":[-73.91871549999999,40.83147049999999],"type":"Point"},"name":"Double Dragon Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05667e"},"location":{"coordinates":[-73.82097290000002,40.70352949999999],"type":"Point"},"name":"Burger King"} +,{"_id":{"$oid":"55cba2476c522cafdb05667f"},"location":{"coordinates":[-73.9589136,40.7105985],"type":"Point"},"name":"Traif"} +,{"_id":{"$oid":"55cba2476c522cafdb056680"},"location":{"coordinates":[-73.956059,40.714319],"type":"Point"},"name":"Saint Anselm"} +,{"_id":{"$oid":"55cba2476c522cafdb056681"},"location":{"coordinates":[-73.8556821,40.7274438],"type":"Point"},"name":"Chikurin Japanese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056682"},"location":{"coordinates":[-73.98850999999999,40.76352199999999],"type":"Point"},"name":"Rice \u0026 Beans Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056683"},"location":{"coordinates":[-73.958815,40.715044],"type":"Point"},"name":"Custom Winebar"} +,{"_id":{"$oid":"55cba2476c522cafdb056684"},"location":{"coordinates":[-73.9767777,40.7602128],"type":"Point"},"name":"Macchiato Espresso Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb056685"},"location":{"coordinates":[-73.98278359999999,40.76562699999999],"type":"Point"},"name":"Fuji Japanese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056686"},"location":{"coordinates":[-73.9606986,40.7174387],"type":"Point"},"name":"Blue Bottle Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb056687"},"location":{"coordinates":[-73.7711697,40.7644999],"type":"Point"},"name":"Maggie Moo'S"} +,{"_id":{"$oid":"55cba2476c522cafdb056688"},"location":{"coordinates":[-73.9981742,40.7153236],"type":"Point"},"name":"Old Sichuan Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb056689"},"location":{"coordinates":[-73.9865262,40.7482631],"type":"Point"},"name":"Circa"} +,{"_id":{"$oid":"55cba2476c522cafdb05668a"},"location":{"coordinates":[-74.00252909999999,40.7308734],"type":"Point"},"name":"Pasticceria Rocco"} +,{"_id":{"$oid":"55cba2476c522cafdb05668b"},"location":{"coordinates":[-73.9520043,40.7990086],"type":"Point"},"name":"Wonder Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb05668c"},"location":{"coordinates":[-73.989566,40.755211],"type":"Point"},"name":"Boi Noodle Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05668d"},"location":{"coordinates":[-73.95502019999999,40.7864232],"type":"Point"},"name":"Maharaja Palace"} +,{"_id":{"$oid":"55cba2476c522cafdb05668e"},"location":{"coordinates":[-73.8514391,40.6939421],"type":"Point"},"name":"Hong Kong Gourmet"} +,{"_id":{"$oid":"55cba2476c522cafdb05668f"},"location":{"coordinates":[-73.98573569999999,40.6614371],"type":"Point"},"name":"Joy Kitchen Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056690"},"location":{"coordinates":[-73.865567,40.84507],"type":"Point"},"name":"Happy Garden Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056691"},"location":{"coordinates":[-74.0025544,40.655677],"type":"Point"},"name":"Bklyn'S Tiki Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb056692"},"location":{"coordinates":[-73.95621009999999,40.6407088],"type":"Point"},"name":"Flatbush Halal Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056693"},"location":{"coordinates":[-73.9221759,40.817504],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb056694"},"location":{"coordinates":[-73.8545508,40.7522323],"type":"Point"},"name":"Los Sauces Bar \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056695"},"location":{"coordinates":[-73.789957,40.695283],"type":"Point"},"name":"Apple Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb056696"},"location":{"coordinates":[-73.99323,40.71700999999999],"type":"Point"},"name":"Gude Gude"} +,{"_id":{"$oid":"55cba2476c522cafdb056697"},"location":{"coordinates":[-73.8183075,40.7022161],"type":"Point"},"name":"Express Soft Taco"} +,{"_id":{"$oid":"55cba2476c522cafdb056698"},"location":{"coordinates":[-73.9362864,40.742852],"type":"Point"},"name":"Thompson Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb056699"},"location":{"coordinates":[-73.8622572,40.7575671],"type":"Point"},"name":"Number One Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05669a"},"location":{"coordinates":[-73.99115929999999,40.7377584],"type":"Point"},"name":"Hale And Hearty Soups"} +,{"_id":{"$oid":"55cba2476c522cafdb05669b"},"location":{"coordinates":[-74.000906,40.605871],"type":"Point"},"name":"La Autentica Panderia"} +,{"_id":{"$oid":"55cba2476c522cafdb05669c"},"location":{"coordinates":[-73.89843530000002,40.8902183],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb05669d"},"location":{"coordinates":[-73.99208000000002,40.726929],"type":"Point"},"name":"Hecho En Dumbo"} +,{"_id":{"$oid":"55cba2476c522cafdb05669e"},"location":{"coordinates":[-74.1305399,40.6125712],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb05669f"},"location":{"coordinates":[-73.73679369999999,40.7690036],"type":"Point"},"name":"Restaurant Salvadoreno ''El Jiboa''"} +,{"_id":{"$oid":"55cba2476c522cafdb0566a0"},"location":{"coordinates":[-73.9624826,40.6723542],"type":"Point"},"name":"Dragon House"} +,{"_id":{"$oid":"55cba2476c522cafdb0566a1"},"location":{"coordinates":[-73.7682073,40.6633888],"type":"Point"},"name":"Butterflies Chinese Food"} +,{"_id":{"$oid":"55cba2476c522cafdb0566a2"},"location":{"coordinates":[-73.981951,40.742899],"type":"Point"},"name":"Whiskey Rebel"} +,{"_id":{"$oid":"55cba2476c522cafdb0566a3"},"location":{"coordinates":[-73.9900804,40.643149],"type":"Point"},"name":"Yi Min Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0566a4"},"location":{"coordinates":[-73.9895391,40.7717677],"type":"Point"},"name":"Manhattan Movement \u0026 Arts Center"} +,{"_id":{"$oid":"55cba2476c522cafdb0566a5"},"location":{"coordinates":[-73.9930859,40.71543399999999],"type":"Point"},"name":"New Wong Wah Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0566a6"},"location":{"coordinates":[-73.9315409,40.7575872],"type":"Point"},"name":"One Stop Pizza \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0566a7"},"location":{"coordinates":[-73.8431588,40.841423],"type":"Point"},"name":"Cestra'S Pizza Iii"} +,{"_id":{"$oid":"55cba2476c522cafdb0566a8"},"location":{"coordinates":[-73.998807,40.60527],"type":"Point"},"name":"86 Best Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0566a9"},"location":{"coordinates":[-73.9822162,40.7478264],"type":"Point"},"name":"Tiberias"} +,{"_id":{"$oid":"55cba2476c522cafdb0566aa"},"location":{"coordinates":[-73.9815086,40.7250498],"type":"Point"},"name":"Le Village"} +,{"_id":{"$oid":"55cba2476c522cafdb0566ab"},"location":{"coordinates":[-73.8686843,40.7492279],"type":"Point"},"name":"El Tenampa Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0566ac"},"location":{"coordinates":[-73.9755346,40.7496967],"type":"Point"},"name":"Zengo Nyc"} +,{"_id":{"$oid":"55cba2476c522cafdb0566ad"},"location":{"coordinates":[-73.994584,40.660553],"type":"Point"},"name":"5 Avenue Asian Taste"} +,{"_id":{"$oid":"55cba2476c522cafdb0566ae"},"location":{"coordinates":[-73.9548921,40.7791941],"type":"Point"},"name":"Shake Shack"} +,{"_id":{"$oid":"55cba2476c522cafdb0566af"},"location":{"coordinates":[-73.9477568,40.6343738],"type":"Point"},"name":"New Kam Shing Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0566b0"},"location":{"coordinates":[-73.9793564,40.7589426],"type":"Point"},"name":"Tri Tip Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0566b1"},"location":{"coordinates":[-73.95101,40.66174640000001],"type":"Point"},"name":"Taste Of China"} +,{"_id":{"$oid":"55cba2476c522cafdb0566b2"},"location":{"coordinates":[-74.0102663,40.7057236],"type":"Point"},"name":"Blimpie"} +,{"_id":{"$oid":"55cba2476c522cafdb0566b3"},"location":{"coordinates":[-73.99227909999999,40.6844544],"type":"Point"},"name":"Verde"} +,{"_id":{"$oid":"55cba2476c522cafdb0566b4"},"location":{"coordinates":[-73.9733042,40.7946268],"type":"Point"},"name":"The Williams Memorial Residence"} +,{"_id":{"$oid":"55cba2476c522cafdb0566b5"},"location":{"coordinates":[-73.97585889999999,40.7869391],"type":"Point"},"name":"New Kam Lai Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0566b6"},"location":{"coordinates":[-73.953333,40.81795],"type":"Point"},"name":"Mi Casita Restarant"} +,{"_id":{"$oid":"55cba2476c522cafdb0566b7"},"location":{"coordinates":[-73.9988889,40.7477778],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0566b8"},"location":{"coordinates":[-73.95411299999999,40.687062],"type":"Point"},"name":"Marcony"} +,{"_id":{"$oid":"55cba2476c522cafdb0566b9"},"location":{"coordinates":[-73.962986,40.6823661],"type":"Point"},"name":"Buka"} +,{"_id":{"$oid":"55cba2476c522cafdb0566ba"},"location":{"coordinates":[-73.989723,40.75857],"type":"Point"},"name":"Shake Shack"} +,{"_id":{"$oid":"55cba2476c522cafdb0566bb"},"location":{"coordinates":[-92.7294089,41.7461748],"type":"Point"},"name":"Mikado Bistro"} +,{"_id":{"$oid":"55cba2476c522cafdb0566bc"},"location":{"coordinates":[-73.9928627,40.7394932],"type":"Point"},"name":"Complete Body \u0026 Spa"} +,{"_id":{"$oid":"55cba2476c522cafdb0566bd"},"location":{"coordinates":[-73.939466,40.6990399],"type":"Point"},"name":"Taqueria La Placita Puebla"} +,{"_id":{"$oid":"55cba2476c522cafdb0566be"},"location":{"coordinates":[-73.8920066,40.7276161],"type":"Point"},"name":"Taste Of China"} +,{"_id":{"$oid":"55cba2476c522cafdb0566bf"},"location":{"coordinates":[-73.99164809999999,40.7176663],"type":"Point"},"name":"Big Hing Wong Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0566c0"},"location":{"coordinates":[-73.7889393,40.7397418],"type":"Point"},"name":"Brothers Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb0566c1"},"location":{"coordinates":[-73.9108511,40.7686759],"type":"Point"},"name":"Cafe Via Expresso"} +,{"_id":{"$oid":"55cba2476c522cafdb0566c2"},"location":{"coordinates":[-74.09796159999999,40.5811508],"type":"Point"},"name":"Hip Wo"} +,{"_id":{"$oid":"55cba2476c522cafdb0566c3"},"location":{"coordinates":[-73.9986504,40.7155892],"type":"Point"},"name":"Sun'S Organic Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb0566c4"},"location":{"coordinates":[-73.997147,40.713882],"type":"Point"},"name":"A-Wah Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0566c5"},"location":{"coordinates":[-73.99036749999999,40.6605576],"type":"Point"},"name":"Brooklyn Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb0566c6"},"location":{"coordinates":[-73.8706606,40.7342757],"type":"Point"},"name":"Noodle House"} +,{"_id":{"$oid":"55cba2476c522cafdb0566c7"},"location":{"coordinates":[-73.8860029,40.7476665],"type":"Point"},"name":"True Colors Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0566c8"},"location":{"coordinates":[-73.96708129999999,40.7689819],"type":"Point"},"name":"Bel Ami"} +,{"_id":{"$oid":"55cba2476c522cafdb0566c9"},"location":{"coordinates":[-73.9729553,40.6964204],"type":"Point"},"name":"Gmc Temaxcal Deli \u0026 Grocery"} +,{"_id":{"$oid":"55cba2476c522cafdb0566ca"},"location":{"coordinates":[-73.8199664,40.60617149999999],"type":"Point"},"name":"Tommy Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb0566cb"},"location":{"coordinates":[-73.927651,40.692421],"type":"Point"},"name":"Kennedy Pizza \u0026 Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb0566cc"},"location":{"coordinates":[-73.973525,40.608486],"type":"Point"},"name":"New Ming Hing Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0566cd"},"location":{"coordinates":[-73.8407177,40.7181125],"type":"Point"},"name":"King Wok Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0566ce"},"location":{"coordinates":[-73.98783809999999,40.7222724],"type":"Point"},"name":"Karaoke Boho"} +,{"_id":{"$oid":"55cba2476c522cafdb0566cf"},"location":{"coordinates":[-73.9741337,40.7422916],"type":"Point"},"name":"Argo Tea"} +,{"_id":{"$oid":"55cba2476c522cafdb0566d0"},"location":{"coordinates":[-74.017061,40.645948],"type":"Point"},"name":"Sunday Billards"} +,{"_id":{"$oid":"55cba2476c522cafdb0566d1"},"location":{"coordinates":[-73.9814213,40.7671767],"type":"Point"},"name":"Argo Tea Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0566d2"},"location":{"coordinates":[-73.968268,40.797478],"type":"Point"},"name":"Noche Mexicana No. 2"} +,{"_id":{"$oid":"55cba2476c522cafdb0566d3"},"location":{"coordinates":[-73.99601779999999,40.7222005],"type":"Point"},"name":"Balaboosta"} +,{"_id":{"$oid":"55cba2476c522cafdb0566d4"},"location":{"coordinates":[-73.98286709999999,40.765717],"type":"Point"},"name":"Szechuan Gourmet"} +,{"_id":{"$oid":"55cba2476c522cafdb0566d5"},"location":{"coordinates":[-74.001475,40.73899],"type":"Point"},"name":"The Crooked Knife"} +,{"_id":{"$oid":"55cba2476c522cafdb0566d6"},"location":{"coordinates":[-73.87750950000002,40.7131181],"type":"Point"},"name":"New China"} +,{"_id":{"$oid":"55cba2476c522cafdb0566d7"},"location":{"coordinates":[-73.989859,40.7396272],"type":"Point"},"name":"Punch / Wined Up"} +,{"_id":{"$oid":"55cba2476c522cafdb0566d8"},"location":{"coordinates":[-74.00142799999999,40.7258889],"type":"Point"},"name":"Vesuvio Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0566d9"},"location":{"coordinates":[-73.9863996,40.7282746],"type":"Point"},"name":"Grand Sichuan"} +,{"_id":{"$oid":"55cba2476c522cafdb0566da"},"location":{"coordinates":[-73.990182,40.74804899999999],"type":"Point"},"name":"Hampton Inn-Herald Square"} +,{"_id":{"$oid":"55cba2476c522cafdb0566db"},"location":{"coordinates":[-73.9779008,40.7860365],"type":"Point"},"name":"Artie'S Delicatessen"} +,{"_id":{"$oid":"55cba2476c522cafdb0566dc"},"location":{"coordinates":[-74.0099747,40.7188743],"type":"Point"},"name":"Terroir Tribeca"} +,{"_id":{"$oid":"55cba2476c522cafdb0566dd"},"location":{"coordinates":[-73.9243051,40.7565323],"type":"Point"},"name":"On The Nile Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0566de"},"location":{"coordinates":[-73.986133,40.73422900000001],"type":"Point"},"name":"Piccolo Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0566df"},"location":{"coordinates":[-74.0058365,40.70910060000001],"type":"Point"},"name":"Tandoor Palace"} +,{"_id":{"$oid":"55cba2476c522cafdb0566e0"},"location":{"coordinates":[-73.9719843,40.7934623],"type":"Point"},"name":"Tasti D Lite"} +,{"_id":{"$oid":"55cba2476c522cafdb0566e1"},"location":{"coordinates":[-74.0090266,40.7191069],"type":"Point"},"name":"Tamarind Tribeca"} +,{"_id":{"$oid":"55cba2476c522cafdb0566e2"},"location":{"coordinates":[-73.9297252,40.8501832],"type":"Point"},"name":"Chop Chop"} +,{"_id":{"$oid":"55cba2476c522cafdb0566e3"},"location":{"coordinates":[-74.0239275,40.6203709],"type":"Point"},"name":"Thai Food"} +,{"_id":{"$oid":"55cba2476c522cafdb0566e4"},"location":{"coordinates":[-73.7171614,40.7443472],"type":"Point"},"name":"Bundu Khan Kabab House"} +,{"_id":{"$oid":"55cba2476c522cafdb0566e5"},"location":{"coordinates":[-73.9550469,40.73640959999999],"type":"Point"},"name":"Milk And Roses"} +,{"_id":{"$oid":"55cba2476c522cafdb0566e6"},"location":{"coordinates":[-73.955434,40.6808906],"type":"Point"},"name":"Popeyes Chicken \u0026 Biscuits"} +,{"_id":{"$oid":"55cba2476c522cafdb0566e7"},"location":{"coordinates":[-73.9647683,40.7124374],"type":"Point"},"name":"Carino"} +,{"_id":{"$oid":"55cba2476c522cafdb0566e8"},"location":{"coordinates":[-74.005391,40.62951],"type":"Point"},"name":"Lucky 11 Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0566e9"},"location":{"coordinates":[-73.8088001,40.7633717],"type":"Point"},"name":"Paris Baguette \u0026 Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0566ea"},"location":{"coordinates":[-73.9311304,40.6710285],"type":"Point"},"name":"Crown Fried Chicken \u0026 Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0566eb"},"location":{"coordinates":[-73.8584096,40.750836],"type":"Point"},"name":"Tacos I Tortas Carrusel"} +,{"_id":{"$oid":"55cba2476c522cafdb0566ec"},"location":{"coordinates":[-74.01406469999999,40.7097179],"type":"Point"},"name":"View Of The World Terrace Club"} +,{"_id":{"$oid":"55cba2476c522cafdb0566ed"},"location":{"coordinates":[-73.90326999999999,40.746597],"type":"Point"},"name":"El Tequilero Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0566ee"},"location":{"coordinates":[-73.8216745,40.7532213],"type":"Point"},"name":"Lucky Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0566ef"},"location":{"coordinates":[-73.8973298,40.83057429999999],"type":"Point"},"name":"Johnny'S Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0566f0"},"location":{"coordinates":[-73.791716,40.7024684],"type":"Point"},"name":"Popeye'S Chicken \u0026 Biscuits"} +,{"_id":{"$oid":"55cba2476c522cafdb0566f1"},"location":{"coordinates":[-73.86019619999999,40.728862],"type":"Point"},"name":"Cafe Bora Bora"} +,{"_id":{"$oid":"55cba2476c522cafdb0566f2"},"location":{"coordinates":[-73.789221,40.726154],"type":"Point"},"name":"Gan Da Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb0566f3"},"location":{"coordinates":[-73.94016599999999,40.7475949],"type":"Point"},"name":"Dutch Kills"} +,{"_id":{"$oid":"55cba2476c522cafdb0566f4"},"location":{"coordinates":[-74.002297,40.730906],"type":"Point"},"name":"Popbar"} +,{"_id":{"$oid":"55cba2476c522cafdb0566f5"},"location":{"coordinates":[-73.957071,40.72829400000001],"type":"Point"},"name":"Le Gamin"} +,{"_id":{"$oid":"55cba2476c522cafdb0566f6"},"location":{"coordinates":[-73.886235,40.84180300000001],"type":"Point"},"name":"Music Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0566f7"},"location":{"coordinates":[-73.9273432,40.8659463],"type":"Point"},"name":"Papasito Mexican Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0566f8"},"location":{"coordinates":[-73.97724670000001,40.7541977],"type":"Point"},"name":"Ammos Estiatorio"} +,{"_id":{"$oid":"55cba2476c522cafdb0566f9"},"location":{"coordinates":[-73.91523269999999,40.7635775],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0566fa"},"location":{"coordinates":[-73.9945468,40.7368171],"type":"Point"},"name":"Clay"} +,{"_id":{"$oid":"55cba2476c522cafdb0566fb"},"location":{"coordinates":[-73.86377759999999,40.7574462],"type":"Point"},"name":"Cibao Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0566fc"},"location":{"coordinates":[-73.9660226,40.8044401],"type":"Point"},"name":"Mel'S Burger Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0566fd"},"location":{"coordinates":[-74.010645,40.70472729999999],"type":"Point"},"name":"No 1 Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0566fe"},"location":{"coordinates":[-73.97049439999999,40.6893575],"type":"Point"},"name":"Dino"} +,{"_id":{"$oid":"55cba2476c522cafdb0566ff"},"location":{"coordinates":[-73.9153942,40.844623],"type":"Point"},"name":"Little Caesars"} +,{"_id":{"$oid":"55cba2476c522cafdb056700"},"location":{"coordinates":[-73.93416140000001,40.7449824],"type":"Point"},"name":"Golden Krust Caribbean Bakery \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb056701"},"location":{"coordinates":[-73.9990337,40.7143954],"type":"Point"},"name":"Shanghai Asian Manor"} +,{"_id":{"$oid":"55cba2476c522cafdb056702"},"location":{"coordinates":[-73.8642351,40.8652997],"type":"Point"},"name":"Smile Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056703"},"location":{"coordinates":[-74.1770032,40.5397379],"type":"Point"},"name":"Sweet Sweet Sue'S"} +,{"_id":{"$oid":"55cba2476c522cafdb056704"},"location":{"coordinates":[-73.9468201,40.813895],"type":"Point"},"name":"American Legion Veterans Post"} +,{"_id":{"$oid":"55cba2476c522cafdb056705"},"location":{"coordinates":[-73.994704,40.748397],"type":"Point"},"name":"Holiday Inn Express - Manhattan"} +,{"_id":{"$oid":"55cba2476c522cafdb056706"},"location":{"coordinates":[-74.1660553,40.5823983],"type":"Point"},"name":"Arthur Treachers"} +,{"_id":{"$oid":"55cba2476c522cafdb056707"},"location":{"coordinates":[-73.9842007,40.6006626],"type":"Point"},"name":"Rozafa Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb056708"},"location":{"coordinates":[-73.9933326,40.7569206],"type":"Point"},"name":"2 Bros Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056709"},"location":{"coordinates":[-92.7219545,41.7459074],"type":"Point"},"name":"Residence Inn Times Square"} +,{"_id":{"$oid":"55cba2476c522cafdb05670a"},"location":{"coordinates":[-73.9803797,40.7299823],"type":"Point"},"name":"The Horse Box"} +,{"_id":{"$oid":"55cba2476c522cafdb05670b"},"location":{"coordinates":[-73.9928307,40.6893017],"type":"Point"},"name":"Nature'S Grill Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb05670c"},"location":{"coordinates":[-73.98769949999999,40.6678415],"type":"Point"},"name":"Green Kitchen Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05670d"},"location":{"coordinates":[-73.9700904,40.7603114],"type":"Point"},"name":"Pizza By Certe"} +,{"_id":{"$oid":"55cba2476c522cafdb05670e"},"location":{"coordinates":[-73.993724,40.7455179],"type":"Point"},"name":"Rare Bar And Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb05670f"},"location":{"coordinates":[-73.9795029,40.743256],"type":"Point"},"name":"Banc Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056710"},"location":{"coordinates":[-73.893886,40.7464534],"type":"Point"},"name":"Zabb Elee"} +,{"_id":{"$oid":"55cba2476c522cafdb056711"},"location":{"coordinates":[-73.989538,40.726584],"type":"Point"},"name":"Zabb Elee"} +,{"_id":{"$oid":"55cba2476c522cafdb056712"},"location":{"coordinates":[-73.9021393,40.8606875],"type":"Point"},"name":"Rjc Family'S Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056713"},"location":{"coordinates":[-73.9267557,40.7011376],"type":"Point"},"name":"El Mio Cid"} +,{"_id":{"$oid":"55cba2476c522cafdb056714"},"location":{"coordinates":[-73.99294139999999,40.7284843],"type":"Point"},"name":"Crunch"} +,{"_id":{"$oid":"55cba2476c522cafdb056715"},"location":{"coordinates":[-73.893934,40.83438599999999],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb056716"},"location":{"coordinates":[-73.9546617,40.7746952],"type":"Point"},"name":"18 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056717"},"location":{"coordinates":[-73.989566,40.755211],"type":"Point"},"name":"Guy \u0026 Gallard"} +,{"_id":{"$oid":"55cba2476c522cafdb056718"},"location":{"coordinates":[-73.940585,40.825221],"type":"Point"},"name":"La Nomade Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056719"},"location":{"coordinates":[-73.8957159,40.746149],"type":"Point"},"name":"Fiesta Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb05671a"},"location":{"coordinates":[-73.943338,40.842975],"type":"Point"},"name":"Bard Basement Faculty Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb05671b"},"location":{"coordinates":[-73.7402704,40.6759907],"type":"Point"},"name":"King Chef Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05671c"},"location":{"coordinates":[-73.9800266,40.676628],"type":"Point"},"name":"Sun Luck Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05671d"},"location":{"coordinates":[-73.99318710000001,40.66847449999999],"type":"Point"},"name":"Lowlands Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05671e"},"location":{"coordinates":[-73.80327299999999,40.718468],"type":"Point"},"name":"Rae'S Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05671f"},"location":{"coordinates":[-73.9881757,40.7650914],"type":"Point"},"name":"Brickyard Gastro Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb056720"},"location":{"coordinates":[-73.97352599999999,40.784055],"type":"Point"},"name":"Canteen 82"} +,{"_id":{"$oid":"55cba2476c522cafdb056721"},"location":{"coordinates":[-73.99940699999999,40.7284849],"type":"Point"},"name":"The Red Lion"} +,{"_id":{"$oid":"55cba2476c522cafdb056722"},"location":{"coordinates":[-73.9544847,40.8214312],"type":"Point"},"name":"137 Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb056723"},"location":{"coordinates":[-73.937517,40.63488],"type":"Point"},"name":"Jj'S Coffee Shop And Restaurant Fritaille"} +,{"_id":{"$oid":"55cba2476c522cafdb056724"},"location":{"coordinates":[-74.002089,40.60152600000001],"type":"Point"},"name":"Panaderia Guatemalteca La Bendicion"} +,{"_id":{"$oid":"55cba2476c522cafdb056725"},"location":{"coordinates":[-73.77123809999999,40.7646764],"type":"Point"},"name":"Ding Dong"} +,{"_id":{"$oid":"55cba2476c522cafdb056726"},"location":{"coordinates":[-73.9667958,40.6818351],"type":"Point"},"name":"Hot Bird"} +,{"_id":{"$oid":"55cba2476c522cafdb056727"},"location":{"coordinates":[-73.9387768,40.8509032],"type":"Point"},"name":"Exclusive Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056728"},"location":{"coordinates":[-73.9818137,40.6051761],"type":"Point"},"name":"Puli Brothers Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb056729"},"location":{"coordinates":[-73.9906695,40.7504515],"type":"Point"},"name":"Mcdonalds"} +,{"_id":{"$oid":"55cba2476c522cafdb05672a"},"location":{"coordinates":[-73.96897849999999,40.7959817],"type":"Point"},"name":"Pearls"} +,{"_id":{"$oid":"55cba2476c522cafdb05672b"},"location":{"coordinates":[-73.951506,40.786417],"type":"Point"},"name":"Little Luzzo'S"} +,{"_id":{"$oid":"55cba2476c522cafdb05672c"},"location":{"coordinates":[-73.97390829999999,40.7911514],"type":"Point"},"name":"Big Daddy'S"} +,{"_id":{"$oid":"55cba2476c522cafdb05672d"},"location":{"coordinates":[-74.0316808,40.6211274],"type":"Point"},"name":"Celtic Rose Ltd"} +,{"_id":{"$oid":"55cba2476c522cafdb05672e"},"location":{"coordinates":[-73.9880895,40.7563063],"type":"Point"},"name":"Mcdonalds Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05672f"},"location":{"coordinates":[-73.9627153,40.5770984],"type":"Point"},"name":"Beyti Turkish Kebab"} +,{"_id":{"$oid":"55cba2476c522cafdb056730"},"location":{"coordinates":[-73.8961659,40.821318],"type":"Point"},"name":"Marggherita'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056731"},"location":{"coordinates":[-73.81369250000002,40.7188825],"type":"Point"},"name":"Cheap Shots Sports Bar And Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb056732"},"location":{"coordinates":[-73.993428,40.616234],"type":"Point"},"name":"H \u0026 C Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb056733"},"location":{"coordinates":[-74.0019116,40.6430706],"type":"Point"},"name":"Mai Thai"} +,{"_id":{"$oid":"55cba2476c522cafdb056734"},"location":{"coordinates":[-73.94622550000001,40.7252914],"type":"Point"},"name":"Bistro 175 Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056735"},"location":{"coordinates":[-73.9492269,40.777566],"type":"Point"},"name":"Gotham Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056736"},"location":{"coordinates":[-73.97718379999999,40.6816615],"type":"Point"},"name":"Marine Cafe Shop Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056737"},"location":{"coordinates":[-73.82632699999999,40.685635],"type":"Point"},"name":"Carvel Ice Cream"} +,{"_id":{"$oid":"55cba2476c522cafdb056738"},"location":{"coordinates":[-73.9875636,40.73236199999999],"type":"Point"},"name":"Penny Farthing Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056739"},"location":{"coordinates":[-73.883585,40.8676615],"type":"Point"},"name":"Rocco'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05673a"},"location":{"coordinates":[-73.9805933,40.72896009999999],"type":"Point"},"name":"Northern Spy Food Co."} +,{"_id":{"$oid":"55cba2476c522cafdb05673b"},"location":{"coordinates":[-74.0027162,40.6417622],"type":"Point"},"name":"Red Apple"} +,{"_id":{"$oid":"55cba2476c522cafdb05673c"},"location":{"coordinates":[-73.9335583,40.6700765],"type":"Point"},"name":"New Hong Rong Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05673d"},"location":{"coordinates":[-73.9766459,40.7602745],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb05673e"},"location":{"coordinates":[-73.75648149999999,40.6702053],"type":"Point"},"name":"Bamboo House"} +,{"_id":{"$oid":"55cba2476c522cafdb05673f"},"location":{"coordinates":[-73.9345192,40.6517203],"type":"Point"},"name":"Fish Bone"} +,{"_id":{"$oid":"55cba2476c522cafdb056740"},"location":{"coordinates":[-73.922057,40.701742],"type":"Point"},"name":"La Nueva Vega"} +,{"_id":{"$oid":"55cba2476c522cafdb056741"},"location":{"coordinates":[-73.9924742,40.7490266],"type":"Point"},"name":"Bagel Maven Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056742"},"location":{"coordinates":[-74.02882939999999,40.6228962],"type":"Point"},"name":"Bab Alhara"} +,{"_id":{"$oid":"55cba2476c522cafdb056743"},"location":{"coordinates":[-73.7862169,40.708162],"type":"Point"},"name":"Roti Express"} +,{"_id":{"$oid":"55cba2476c522cafdb056744"},"location":{"coordinates":[-73.9713783,40.76308280000001],"type":"Point"},"name":"Lavo New York"} +,{"_id":{"$oid":"55cba2476c522cafdb056745"},"location":{"coordinates":[-73.8270154,40.75316040000001],"type":"Point"},"name":"Rural Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056746"},"location":{"coordinates":[-73.7420947,40.7317104],"type":"Point"},"name":"Century Super Buffet"} +,{"_id":{"$oid":"55cba2476c522cafdb056747"},"location":{"coordinates":[-73.919594,40.808017],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb056748"},"location":{"coordinates":[-73.9539472,40.80692560000001],"type":"Point"},"name":"Chocolat"} +,{"_id":{"$oid":"55cba2476c522cafdb056749"},"location":{"coordinates":[-73.89174729999999,40.8642718],"type":"Point"},"name":"Fu Wang Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05674a"},"location":{"coordinates":[-73.9150397,40.6562825],"type":"Point"},"name":"Royal Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb05674b"},"location":{"coordinates":[-73.961468,40.598456],"type":"Point"},"name":"Pectopah Typmah (Gurman Restaurant)"} +,{"_id":{"$oid":"55cba2476c522cafdb05674c"},"location":{"coordinates":[-73.92319560000001,40.8234113],"type":"Point"},"name":"New Lam'S Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb05674d"},"location":{"coordinates":[-73.9210346,40.6103453],"type":"Point"},"name":"Charley'S Grilled Subs"} +,{"_id":{"$oid":"55cba2476c522cafdb05674e"},"location":{"coordinates":[-74.00414289999999,40.7474374],"type":"Point"},"name":"New York Burger Co"} +,{"_id":{"$oid":"55cba2476c522cafdb05674f"},"location":{"coordinates":[-73.98965,40.729125],"type":"Point"},"name":"Stillwater Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb056750"},"location":{"coordinates":[-73.9917457,40.7390799],"type":"Point"},"name":"Cafe Prague"} +,{"_id":{"$oid":"55cba2476c522cafdb056751"},"location":{"coordinates":[-73.884648,40.8740931],"type":"Point"},"name":"Connie'S Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb056752"},"location":{"coordinates":[-73.95927019999999,40.7785066],"type":"Point"},"name":"Jesuit Mission House Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb056753"},"location":{"coordinates":[-73.8459683,40.7563289],"type":"Point"},"name":"Mcfadden'S"} +,{"_id":{"$oid":"55cba2476c522cafdb056754"},"location":{"coordinates":[-73.942821,40.7115582],"type":"Point"},"name":"New Hong Kong Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb056755"},"location":{"coordinates":[-73.9841853,40.7643625],"type":"Point"},"name":"Cascade Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056756"},"location":{"coordinates":[-73.9806361,40.7635061],"type":"Point"},"name":"Gordon Ramsay At The London/Maze"} +,{"_id":{"$oid":"55cba2476c522cafdb056757"},"location":{"coordinates":[-74.00855299999999,40.7464627],"type":"Point"},"name":"Atlantica"} +,{"_id":{"$oid":"55cba2476c522cafdb056758"},"location":{"coordinates":[-73.99634309999999,40.710783],"type":"Point"},"name":"Gino'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056759"},"location":{"coordinates":[-73.95369699999999,40.770468],"type":"Point"},"name":"Fujiyama"} +,{"_id":{"$oid":"55cba2476c522cafdb05675a"},"location":{"coordinates":[-73.992064,40.758697],"type":"Point"},"name":"@Nine"} +,{"_id":{"$oid":"55cba2476c522cafdb05675b"},"location":{"coordinates":[-73.83081,40.758854],"type":"Point"},"name":"Yao Tai Lou Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05675c"},"location":{"coordinates":[-73.9981347,40.6773076],"type":"Point"},"name":"Black Gold"} +,{"_id":{"$oid":"55cba2476c522cafdb05675d"},"location":{"coordinates":[-73.9936993,40.68983],"type":"Point"},"name":"Yemen Cafe \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05675e"},"location":{"coordinates":[-73.86533,40.7531427],"type":"Point"},"name":"Charo Restaurant 3"} +,{"_id":{"$oid":"55cba2476c522cafdb05675f"},"location":{"coordinates":[-73.8807197,40.8286141],"type":"Point"},"name":"Lincoln Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb056760"},"location":{"coordinates":[-73.9143909,40.7638547],"type":"Point"},"name":"Front Toward Enemy"} +,{"_id":{"$oid":"55cba2476c522cafdb056761"},"location":{"coordinates":[-73.7445551,40.6775755],"type":"Point"},"name":"King Wok"} +,{"_id":{"$oid":"55cba2476c522cafdb056762"},"location":{"coordinates":[-73.9093791,40.8248661],"type":"Point"},"name":"Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb056763"},"location":{"coordinates":[-73.906943,40.700379],"type":"Point"},"name":"Randy'S Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056764"},"location":{"coordinates":[-73.953495,40.8114255],"type":"Point"},"name":"Little Caesar'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056765"},"location":{"coordinates":[-94.8123335,36.9581032],"type":"Point"},"name":"The Cafe At Bob'S"} +,{"_id":{"$oid":"55cba2476c522cafdb056766"},"location":{"coordinates":[-73.9646707,40.7593798],"type":"Point"},"name":"Complete Body \u0026 Spa"} +,{"_id":{"$oid":"55cba2476c522cafdb056767"},"location":{"coordinates":[-73.82389599999999,40.686059],"type":"Point"},"name":"Broadway Bakery \u0026 Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb056768"},"location":{"coordinates":[-73.859961,40.888113],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb056769"},"location":{"coordinates":[-73.990358,40.762056],"type":"Point"},"name":"Balkanika"} +,{"_id":{"$oid":"55cba2476c522cafdb05676a"},"location":{"coordinates":[-85.7641676,38.2035342],"type":"Point"},"name":"Five Guys Burgers And Fries"} +,{"_id":{"$oid":"55cba2476c522cafdb05676b"},"location":{"coordinates":[-73.95314379999999,40.7445573],"type":"Point"},"name":"Madera Cuban Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb05676c"},"location":{"coordinates":[-73.984633,40.7400232],"type":"Point"},"name":"Gramercy Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb05676d"},"location":{"coordinates":[-73.99426609999999,40.7508707],"type":"Point"},"name":"Gold Bar A"} +,{"_id":{"$oid":"55cba2476c522cafdb05676e"},"location":{"coordinates":[-74.00663960000001,40.7514867],"type":"Point"},"name":"Jack Studios"} +,{"_id":{"$oid":"55cba2476c522cafdb05676f"},"location":{"coordinates":[-73.9896952,40.7578606],"type":"Point"},"name":"Timescare Bar Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb056770"},"location":{"coordinates":[-74.0081867,40.7133359],"type":"Point"},"name":"Muscle Maker Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb056771"},"location":{"coordinates":[-73.9898632,40.6644596],"type":"Point"},"name":"Grill'S Delight \u0026 Juice Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb056772"},"location":{"coordinates":[-73.7472631,40.7355745],"type":"Point"},"name":"Nonnos Pizzeria Ristorante"} +,{"_id":{"$oid":"55cba2476c522cafdb056773"},"location":{"coordinates":[-73.9830776,40.7582074],"type":"Point"},"name":"U S Trust Guest Dining Rooms"} +,{"_id":{"$oid":"55cba2476c522cafdb056774"},"location":{"coordinates":[-73.93400230000002,40.670919],"type":"Point"},"name":"Pj Restaurant \u0026 Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb056775"},"location":{"coordinates":[-73.979804,40.7573927],"type":"Point"},"name":"Ave'S Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb056776"},"location":{"coordinates":[-74.010138,40.7186421],"type":"Point"},"name":"Maryann'S"} +,{"_id":{"$oid":"55cba2476c522cafdb056777"},"location":{"coordinates":[-73.801808,40.6985699],"type":"Point"},"name":"Little Anthonys Deli \u0026 Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056778"},"location":{"coordinates":[-73.97766349999999,40.7457332],"type":"Point"},"name":"99 Fresh Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056779"},"location":{"coordinates":[-73.9986139,40.7151861],"type":"Point"},"name":"Super Wang Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb05677a"},"location":{"coordinates":[-74.008954,40.63986],"type":"Point"},"name":"Kenedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb05677b"},"location":{"coordinates":[-73.88067629999999,40.741881],"type":"Point"},"name":"Coco South Malaysian Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb05677c"},"location":{"coordinates":[-73.817115,40.81950399999999],"type":"Point"},"name":"Muscle Maker Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb05677d"},"location":{"coordinates":[-73.73401489999999,40.7329404],"type":"Point"},"name":"Silver Moon Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb05677e"},"location":{"coordinates":[-73.9267303,40.7625926],"type":"Point"},"name":"Monte Restaurant \u0026 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05677f"},"location":{"coordinates":[-73.9247149,40.8662471],"type":"Point"},"name":"Lotus Lucky Express"} +,{"_id":{"$oid":"55cba2476c522cafdb056780"},"location":{"coordinates":[-73.9433937,40.6824226],"type":"Point"},"name":"Halsey Street Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb056781"},"location":{"coordinates":[-73.9589883,40.71434060000001],"type":"Point"},"name":"Margo"} +,{"_id":{"$oid":"55cba2476c522cafdb056782"},"location":{"coordinates":[-73.992837,40.75248],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb056783"},"location":{"coordinates":[-73.86776019999999,40.7428031],"type":"Point"},"name":"La Cueva Deli \u0026 Grocery"} +,{"_id":{"$oid":"55cba2476c522cafdb056784"},"location":{"coordinates":[-73.9262845,40.82669569999999],"type":"Point"},"name":"Stan'S Sports Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb056785"},"location":{"coordinates":[-73.9975331,40.7145732],"type":"Point"},"name":"Golden Manna Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb056786"},"location":{"coordinates":[-73.8780309,40.82622],"type":"Point"},"name":"Community Weight Loss (Herbal Life)"} +,{"_id":{"$oid":"55cba2476c522cafdb056787"},"location":{"coordinates":[-73.9672369,40.6837203],"type":"Point"},"name":"Beny'S Delice Gourment Specialities"} +,{"_id":{"$oid":"55cba2476c522cafdb056788"},"location":{"coordinates":[-73.8314788,40.84729799999999],"type":"Point"},"name":"Shangerila Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056789"},"location":{"coordinates":[-73.8746474,40.7430988],"type":"Point"},"name":"No. 1 Hunan Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05678a"},"location":{"coordinates":[-92.72874859999999,41.746174],"type":"Point"},"name":"2 Bros Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05678b"},"location":{"coordinates":[-73.9575009,40.7307879],"type":"Point"},"name":"Vamos Al Tequila"} +,{"_id":{"$oid":"55cba2476c522cafdb05678c"},"location":{"coordinates":[-73.95770519999999,40.6097219],"type":"Point"},"name":"Perizia Cafe And Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05678d"},"location":{"coordinates":[-73.93977009999999,40.6924608],"type":"Point"},"name":"Crown Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb05678e"},"location":{"coordinates":[-73.9884866,40.7777168],"type":"Point"},"name":"Hiro Sushi At Ollie'S"} +,{"_id":{"$oid":"55cba2476c522cafdb05678f"},"location":{"coordinates":[-73.81471359999999,40.75541380000001],"type":"Point"},"name":"Papa John'S"} +,{"_id":{"$oid":"55cba2476c522cafdb056790"},"location":{"coordinates":[-73.9156354,40.8694104],"type":"Point"},"name":"Nuevo Sabor Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056791"},"location":{"coordinates":[-73.9037441,40.7452057],"type":"Point"},"name":"Fresca La Crepe"} +,{"_id":{"$oid":"55cba2476c522cafdb056792"},"location":{"coordinates":[-73.9409982,40.712104],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb056793"},"location":{"coordinates":[-73.98303829999999,40.7306468],"type":"Point"},"name":"Ichi Ban Tei"} +,{"_id":{"$oid":"55cba2476c522cafdb056794"},"location":{"coordinates":[-74.0118048,40.70953799999999],"type":"Point"},"name":"Charlys"} +,{"_id":{"$oid":"55cba2476c522cafdb056795"},"location":{"coordinates":[-74.00367109999999,40.7428878],"type":"Point"},"name":"Co Ba Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056796"},"location":{"coordinates":[-73.9627734,40.7758431],"type":"Point"},"name":"Manhattan West"} +,{"_id":{"$oid":"55cba2476c522cafdb056797"},"location":{"coordinates":[-74.00599749999999,40.70916649999999],"type":"Point"},"name":"Liam'S Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb056798"},"location":{"coordinates":[-73.961479,40.760832],"type":"Point"},"name":"Tiella Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056799"},"location":{"coordinates":[-73.98439490000001,40.6630697],"type":"Point"},"name":"Thistlehill Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb05679a"},"location":{"coordinates":[-73.98461069999999,40.6405127],"type":"Point"},"name":"Tifers Rivka"} +,{"_id":{"$oid":"55cba2476c522cafdb05679b"},"location":{"coordinates":[-73.9020154,40.83191009999999],"type":"Point"},"name":"Jenny French Toast Coffee Shop Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05679c"},"location":{"coordinates":[-73.867346,40.8228859],"type":"Point"},"name":"World Famous New Orleans Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb05679d"},"location":{"coordinates":[-73.8285674,40.7841713],"type":"Point"},"name":"Lincoln Tech Cafeteria"} +,{"_id":{"$oid":"55cba2476c522cafdb05679e"},"location":{"coordinates":[-73.9190986,40.8657721],"type":"Point"},"name":"Bizcocho De Colores Party Supplies"} +,{"_id":{"$oid":"55cba2476c522cafdb05679f"},"location":{"coordinates":[-74.016827,40.628117],"type":"Point"},"name":"The Purple Rose"} +,{"_id":{"$oid":"55cba2476c522cafdb0567a0"},"location":{"coordinates":[-73.918266,40.703404],"type":"Point"},"name":"Inca Rotisserie Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb0567a1"},"location":{"coordinates":[-73.81184259999999,40.789392],"type":"Point"},"name":"Bagel Time"} +,{"_id":{"$oid":"55cba2476c522cafdb0567a2"},"location":{"coordinates":[-74.010736,40.632233],"type":"Point"},"name":"Crown Ktv"} +,{"_id":{"$oid":"55cba2476c522cafdb0567a3"},"location":{"coordinates":[-73.9862038,40.747189],"type":"Point"},"name":"Kirakuya Sake Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0567a4"},"location":{"coordinates":[-73.9292865,40.6851048],"type":"Point"},"name":"Crown Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb0567a5"},"location":{"coordinates":[-73.9956894,40.7214319],"type":"Point"},"name":"Fiat Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0567a6"},"location":{"coordinates":[-73.9538579,40.5871493],"type":"Point"},"name":"New Li Du Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0567a7"},"location":{"coordinates":[-73.8675379,40.86766540000001],"type":"Point"},"name":"Century Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0567a8"},"location":{"coordinates":[-73.98629930000001,40.76056980000001],"type":"Point"},"name":"Saigon 48/ Aoki"} +,{"_id":{"$oid":"55cba2476c522cafdb0567a9"},"location":{"coordinates":[-73.9291319,40.7722612],"type":"Point"},"name":"Astor Bake Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb0567aa"},"location":{"coordinates":[-74.0099769,40.6750536],"type":"Point"},"name":"Us Fried Chicken \u0026 Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0567ab"},"location":{"coordinates":[-73.7716052,40.7157383],"type":"Point"},"name":"Hong Kong Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0567ac"},"location":{"coordinates":[-73.90787,40.736328],"type":"Point"},"name":"Andres Carne De Tres"} +,{"_id":{"$oid":"55cba2476c522cafdb0567ad"},"location":{"coordinates":[-73.96144,40.682526],"type":"Point"},"name":"Fulton Grand"} +,{"_id":{"$oid":"55cba2476c522cafdb0567ae"},"location":{"coordinates":[-73.9889546,40.7342212],"type":"Point"},"name":"Bravo Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0567af"},"location":{"coordinates":[-73.986656,40.747889],"type":"Point"},"name":"New Wonjo Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0567b0"},"location":{"coordinates":[-73.96492429999999,40.6406958],"type":"Point"},"name":"Kumo Japanese Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb0567b1"},"location":{"coordinates":[-73.915595,40.772838],"type":"Point"},"name":"Bohemian Beer Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb0567b2"},"location":{"coordinates":[-73.7757357,40.7812788],"type":"Point"},"name":"Outback Steakhouse 3330"} +,{"_id":{"$oid":"55cba2476c522cafdb0567b3"},"location":{"coordinates":[-74.00929599999999,40.6120378],"type":"Point"},"name":"Outback Steakhouse"} +,{"_id":{"$oid":"55cba2476c522cafdb0567b4"},"location":{"coordinates":[-74.01006029999999,40.7104936],"type":"Point"},"name":"Arome Cafe Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb0567b5"},"location":{"coordinates":[-74.16403500000001,40.5781824],"type":"Point"},"name":"Outback Steakhouse"} +,{"_id":{"$oid":"55cba2476c522cafdb0567b6"},"location":{"coordinates":[-73.9708163,40.7577483],"type":"Point"},"name":"Toasties Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0567b7"},"location":{"coordinates":[-74.014721,40.643884],"type":"Point"},"name":"My Coral Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0567b8"},"location":{"coordinates":[-73.92064239999999,40.7436963],"type":"Point"},"name":"Subway Store 46555"} +,{"_id":{"$oid":"55cba2476c522cafdb0567b9"},"location":{"coordinates":[-73.9902436,40.7330035],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0567ba"},"location":{"coordinates":[-73.9576038,40.7136465],"type":"Point"},"name":"Good Co"} +,{"_id":{"$oid":"55cba2476c522cafdb0567bb"},"location":{"coordinates":[-74.23439499999999,40.523943],"type":"Point"},"name":"Takayama Sushi Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb0567bc"},"location":{"coordinates":[-73.9560437,40.7724638],"type":"Point"},"name":"Sable"} +,{"_id":{"$oid":"55cba2476c522cafdb0567bd"},"location":{"coordinates":[-73.998745,40.733797],"type":"Point"},"name":"The Lion"} +,{"_id":{"$oid":"55cba2476c522cafdb0567be"},"location":{"coordinates":[-73.9810327,40.7528879],"type":"Point"},"name":"Andaz Fifth Avenue"} +,{"_id":{"$oid":"55cba2476c522cafdb0567bf"},"location":{"coordinates":[-73.94628380000002,40.5775323],"type":"Point"},"name":"Manhattan Beach Concession Stand/Carvel"} +,{"_id":{"$oid":"55cba2476c522cafdb0567c0"},"location":{"coordinates":[-74.1660553,40.5823983],"type":"Point"},"name":"Cajun Cafe \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0567c1"},"location":{"coordinates":[-73.9141298,40.6002828],"type":"Point"},"name":"Marine Park Gulf Course"} +,{"_id":{"$oid":"55cba2476c522cafdb0567c2"},"location":{"coordinates":[-73.9983017,40.7147233],"type":"Point"},"name":"Shanghai Gourmet"} +,{"_id":{"$oid":"55cba2476c522cafdb0567c3"},"location":{"coordinates":[-73.986036,40.735433],"type":"Point"},"name":"Corbet And Conley"} +,{"_id":{"$oid":"55cba2476c522cafdb0567c4"},"location":{"coordinates":[-73.9042729,40.8585507],"type":"Point"},"name":"The Best China House"} +,{"_id":{"$oid":"55cba2476c522cafdb0567c5"},"location":{"coordinates":[-73.815882,40.787061],"type":"Point"},"name":"Trattoria Neo"} +,{"_id":{"$oid":"55cba2476c522cafdb0567c6"},"location":{"coordinates":[-73.8747611,40.7353074],"type":"Point"},"name":"Outback Steakhouse 3332"} +,{"_id":{"$oid":"55cba2476c522cafdb0567c7"},"location":{"coordinates":[-73.9977962,40.7167848],"type":"Point"},"name":"Royal Seafood Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0567c8"},"location":{"coordinates":[-73.96942729999999,40.6896622],"type":"Point"},"name":"Mega Bites Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb0567c9"},"location":{"coordinates":[-73.9490979,40.7245344],"type":"Point"},"name":"Amber Steak House"} +,{"_id":{"$oid":"55cba2476c522cafdb0567ca"},"location":{"coordinates":[-73.8201663,40.7242166],"type":"Point"},"name":"Svetsarah"} +,{"_id":{"$oid":"55cba2476c522cafdb0567cb"},"location":{"coordinates":[-73.9510921,40.6634882],"type":"Point"},"name":"Clubs Gyro"} +,{"_id":{"$oid":"55cba2476c522cafdb0567cc"},"location":{"coordinates":[-73.86737889999999,40.7421095],"type":"Point"},"name":"Il Triangolo"} +,{"_id":{"$oid":"55cba2476c522cafdb0567cd"},"location":{"coordinates":[-73.96025279999999,40.6887304],"type":"Point"},"name":"New Peking"} +,{"_id":{"$oid":"55cba2476c522cafdb0567ce"},"location":{"coordinates":[-73.9848986,40.7681686],"type":"Point"},"name":"Hudson Common"} +,{"_id":{"$oid":"55cba2476c522cafdb0567cf"},"location":{"coordinates":[-73.98132009999999,40.7672514],"type":"Point"},"name":"Grom"} +,{"_id":{"$oid":"55cba2476c522cafdb0567d0"},"location":{"coordinates":[-73.947981,40.59323],"type":"Point"},"name":"Cafe Tabu"} +,{"_id":{"$oid":"55cba2476c522cafdb0567d1"},"location":{"coordinates":[-73.96520749999999,40.8016168],"type":"Point"},"name":"Taqueria Y Fonda La Mexicana"} +,{"_id":{"$oid":"55cba2476c522cafdb0567d2"},"location":{"coordinates":[-73.998988,40.692337],"type":"Point"},"name":"River Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb0567d3"},"location":{"coordinates":[-73.85569199999999,40.84064],"type":"Point"},"name":"L\u0026Y Wing Hing Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0567d4"},"location":{"coordinates":[-73.9931466,40.7408147],"type":"Point"},"name":"Boxers Nyc"} +,{"_id":{"$oid":"55cba2476c522cafdb0567d5"},"location":{"coordinates":[-74.0020555,40.727089],"type":"Point"},"name":"Rabbits"} +,{"_id":{"$oid":"55cba2476c522cafdb0567d6"},"location":{"coordinates":[-73.97644700000001,40.7875756],"type":"Point"},"name":"Prime Ko"} +,{"_id":{"$oid":"55cba2476c522cafdb0567d7"},"location":{"coordinates":[-73.8815412,40.67643320000001],"type":"Point"},"name":"United Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0567d8"},"location":{"coordinates":[-73.984167,40.755278],"type":"Point"},"name":"Bank Of America Executive Dinning Room"} +,{"_id":{"$oid":"55cba2476c522cafdb0567d9"},"location":{"coordinates":[-73.8917985,40.8621617],"type":"Point"},"name":"Checkers"} +,{"_id":{"$oid":"55cba2476c522cafdb0567da"},"location":{"coordinates":[-73.74235999999999,40.696093],"type":"Point"},"name":"The Proper Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0567db"},"location":{"coordinates":[-73.874235,40.702635],"type":"Point"},"name":"Glendale Sport Club"} +,{"_id":{"$oid":"55cba2476c522cafdb0567dc"},"location":{"coordinates":[-73.9252218,40.8616506],"type":"Point"},"name":"Kennedy Chicken \u0026 Gyros"} +,{"_id":{"$oid":"55cba2476c522cafdb0567dd"},"location":{"coordinates":[-74.0266925,40.6347825],"type":"Point"},"name":"Take Away \u0026 Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0567de"},"location":{"coordinates":[-74.0064049,40.7098119],"type":"Point"},"name":"Chipotle Mexican Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0567df"},"location":{"coordinates":[-73.7915163,40.7261806],"type":"Point"},"name":"Regina'S Cafe \u0026 Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb0567e0"},"location":{"coordinates":[-73.96353500000001,40.7612039],"type":"Point"},"name":"Atomic Wings"} +,{"_id":{"$oid":"55cba2476c522cafdb0567e1"},"location":{"coordinates":[-73.9915358,40.6808686],"type":"Point"},"name":"Black Mountain"} +,{"_id":{"$oid":"55cba2476c522cafdb0567e2"},"location":{"coordinates":[-73.9041189,40.9060386],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0567e3"},"location":{"coordinates":[-73.9424866,40.7468515],"type":"Point"},"name":"The Burger Garage"} +,{"_id":{"$oid":"55cba2476c522cafdb0567e4"},"location":{"coordinates":[-73.9494477,40.679125],"type":"Point"},"name":"David'S Brisket House"} +,{"_id":{"$oid":"55cba2476c522cafdb0567e5"},"location":{"coordinates":[-73.907247,40.72640519999999],"type":"Point"},"name":"Holiday Inn Express"} +,{"_id":{"$oid":"55cba2476c522cafdb0567e6"},"location":{"coordinates":[-73.9849363,40.7644561],"type":"Point"},"name":"Pick A Bagel"} +,{"_id":{"$oid":"55cba2476c522cafdb0567e7"},"location":{"coordinates":[-73.9808539,40.734158],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0567e8"},"location":{"coordinates":[-73.90015919999999,40.8683077],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb0567e9"},"location":{"coordinates":[-73.9449004,40.7186807],"type":"Point"},"name":"Florentinas Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0567ea"},"location":{"coordinates":[-73.98359049999999,40.7271538],"type":"Point"},"name":"Augurs Well"} +,{"_id":{"$oid":"55cba2476c522cafdb0567eb"},"location":{"coordinates":[-73.8265596,40.6947536],"type":"Point"},"name":"Golden Terrace Banquet Hall"} +,{"_id":{"$oid":"55cba2476c522cafdb0567ec"},"location":{"coordinates":[-73.93757959999999,40.8291233],"type":"Point"},"name":"Mamas Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb0567ed"},"location":{"coordinates":[-73.96078070000002,40.6941867],"type":"Point"},"name":"Ginos Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb0567ee"},"location":{"coordinates":[-73.9831166,40.7472556],"type":"Point"},"name":"Nanoosh"} +,{"_id":{"$oid":"55cba2476c522cafdb0567ef"},"location":{"coordinates":[-73.94427,40.7876],"type":"Point"},"name":"Good Taste Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0567f0"},"location":{"coordinates":[-73.9314603,40.795715],"type":"Point"},"name":"Bob'S Discount Furniture Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0567f1"},"location":{"coordinates":[-73.9440329,40.7948984],"type":"Point"},"name":"Mexican Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0567f2"},"location":{"coordinates":[-73.8553138,40.8358278],"type":"Point"},"name":"King Wok"} +,{"_id":{"$oid":"55cba2476c522cafdb0567f3"},"location":{"coordinates":[-73.9250989,40.7689808],"type":"Point"},"name":"Taste Of Italy Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb0567f4"},"location":{"coordinates":[-73.98017759999999,40.6881555],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0567f5"},"location":{"coordinates":[-73.9768727,40.6845666],"type":"Point"},"name":"Applebee'S Neighborhood Grill \u0026 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0567f6"},"location":{"coordinates":[-73.9246213,40.7045862],"type":"Point"},"name":"Guacuco"} +,{"_id":{"$oid":"55cba2476c522cafdb0567f7"},"location":{"coordinates":[-73.8703596,40.7516787],"type":"Point"},"name":"Boca Chica Queens"} +,{"_id":{"$oid":"55cba2476c522cafdb0567f8"},"location":{"coordinates":[-73.86037189999999,40.6851275],"type":"Point"},"name":"Rico Chimi"} +,{"_id":{"$oid":"55cba2476c522cafdb0567f9"},"location":{"coordinates":[-74.03361199999999,40.6181642],"type":"Point"},"name":"Townhouse 275"} +,{"_id":{"$oid":"55cba2476c522cafdb0567fa"},"location":{"coordinates":[-73.86490739999999,40.8652743],"type":"Point"},"name":"Boe Sun Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0567fb"},"location":{"coordinates":[-73.9940025,40.7144635],"type":"Point"},"name":"388 Cafe \u0026 Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb0567fc"},"location":{"coordinates":[-73.9611846,40.5982958],"type":"Point"},"name":"Crawfords"} +,{"_id":{"$oid":"55cba2476c522cafdb0567fd"},"location":{"coordinates":[-73.9832376,40.7645209],"type":"Point"},"name":"Characters Nyc Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0567fe"},"location":{"coordinates":[-73.9558631,40.7139371],"type":"Point"},"name":"The Commodore"} +,{"_id":{"$oid":"55cba2476c522cafdb0567ff"},"location":{"coordinates":[-73.92721949999999,40.8650036],"type":"Point"},"name":"Burgos Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056800"},"location":{"coordinates":[-73.965195,40.759893],"type":"Point"},"name":"Lin'S Gourmet"} +,{"_id":{"$oid":"55cba2476c522cafdb056801"},"location":{"coordinates":[-73.9235097,40.8673072],"type":"Point"},"name":"Hang Lee Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056802"},"location":{"coordinates":[-73.85165119999999,40.832574],"type":"Point"},"name":"Ponte En Forma"} +,{"_id":{"$oid":"55cba2476c522cafdb056803"},"location":{"coordinates":[-73.8645274,40.8543621],"type":"Point"},"name":"Centro Viva Feliz"} +,{"_id":{"$oid":"55cba2476c522cafdb056804"},"location":{"coordinates":[-74.01166599999999,40.65105],"type":"Point"},"name":"El Pesao Sazon"} +,{"_id":{"$oid":"55cba2476c522cafdb056805"},"location":{"coordinates":[-73.9462787,40.7922521],"type":"Point"},"name":"Brisas Del Mar Seafood Market"} +,{"_id":{"$oid":"55cba2476c522cafdb056806"},"location":{"coordinates":[-73.98973,40.7582499],"type":"Point"},"name":"Intercontinental New York Times Square/Todd English Cava"} +,{"_id":{"$oid":"55cba2476c522cafdb056807"},"location":{"coordinates":[-74.08083669999999,40.5983857],"type":"Point"},"name":"D-Lish Juice Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb056808"},"location":{"coordinates":[-73.726467,40.7639451],"type":"Point"},"name":"Carvel Ice Cream"} +,{"_id":{"$oid":"55cba2476c522cafdb056809"},"location":{"coordinates":[-73.990121,40.726717],"type":"Point"},"name":"Piccola Strada Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05680a"},"location":{"coordinates":[-73.9082913,40.7706167],"type":"Point"},"name":"New Hong Kong House Express"} +,{"_id":{"$oid":"55cba2476c522cafdb05680b"},"location":{"coordinates":[-74.0319535,40.6218977],"type":"Point"},"name":"Hom"} +,{"_id":{"$oid":"55cba2476c522cafdb05680c"},"location":{"coordinates":[-73.85496049999999,40.72718709999999],"type":"Point"},"name":"Nasicha"} +,{"_id":{"$oid":"55cba2476c522cafdb05680d"},"location":{"coordinates":[-73.9918352,40.71732189999999],"type":"Point"},"name":"New Great Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb05680e"},"location":{"coordinates":[-73.96795420000001,40.6792299],"type":"Point"},"name":"Branded Saloon"} +,{"_id":{"$oid":"55cba2476c522cafdb05680f"},"location":{"coordinates":[-73.983891,40.671622],"type":"Point"},"name":"Cafe Martin"} +,{"_id":{"$oid":"55cba2476c522cafdb056810"},"location":{"coordinates":[-73.9742552,40.7534466],"type":"Point"},"name":"Grand Central Star Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056811"},"location":{"coordinates":[-73.8831568,40.7495258],"type":"Point"},"name":"Empire Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056812"},"location":{"coordinates":[-73.9802291,40.7567752],"type":"Point"},"name":"2 Bros Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056813"},"location":{"coordinates":[-73.891634,40.746485],"type":"Point"},"name":"Chung Ki Wa Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056814"},"location":{"coordinates":[-73.9989528,40.7140481],"type":"Point"},"name":"Lobster Boat Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056815"},"location":{"coordinates":[-73.9807822,40.6754643],"type":"Point"},"name":"Pink Lotus Gourmet"} +,{"_id":{"$oid":"55cba2476c522cafdb056816"},"location":{"coordinates":[-73.970614,40.6878149],"type":"Point"},"name":"Olea"} +,{"_id":{"$oid":"55cba2476c522cafdb056817"},"location":{"coordinates":[-73.9304023,40.6539973],"type":"Point"},"name":"Crown Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb056818"},"location":{"coordinates":[-73.9752417,40.7904902],"type":"Point"},"name":"Ollie'S To Go"} +,{"_id":{"$oid":"55cba2476c522cafdb056819"},"location":{"coordinates":[-73.9684436,40.639036],"type":"Point"},"name":"Georges Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05681a"},"location":{"coordinates":[-73.7889689,40.6433507],"type":"Point"},"name":"Ben \u0026 Jerry'S"} +,{"_id":{"$oid":"55cba2476c522cafdb05681b"},"location":{"coordinates":[-73.95774589999999,40.765876],"type":"Point"},"name":"Patsy'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb05681c"},"location":{"coordinates":[-73.9304686,40.6502311],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb05681d"},"location":{"coordinates":[-73.917678,40.74627],"type":"Point"},"name":"Flynns Garden Inn"} +,{"_id":{"$oid":"55cba2476c522cafdb05681e"},"location":{"coordinates":[-74.0070131,40.7311024],"type":"Point"},"name":"Hudson Clearwater"} +,{"_id":{"$oid":"55cba2476c522cafdb05681f"},"location":{"coordinates":[-73.882668,40.7468941],"type":"Point"},"name":"Picanteria La Gualacenita"} +,{"_id":{"$oid":"55cba2476c522cafdb056820"},"location":{"coordinates":[-73.83012579999999,40.5819496],"type":"Point"},"name":"Dalton Sea Side Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb056821"},"location":{"coordinates":[-73.87957449999999,40.7411554],"type":"Point"},"name":"Lao Bei Fang Dumpling \u0026 Hand-Drawn Noodle House"} +,{"_id":{"$oid":"55cba2476c522cafdb056822"},"location":{"coordinates":[-73.86214199999999,40.747122],"type":"Point"},"name":"Vicki'S Restaurant And Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb056823"},"location":{"coordinates":[-74.00168099999999,40.7291529],"type":"Point"},"name":"Masala Times"} +,{"_id":{"$oid":"55cba2476c522cafdb056824"},"location":{"coordinates":[-73.9725346,40.7931444],"type":"Point"},"name":"Corner Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056825"},"location":{"coordinates":[-73.9849687,40.7628271],"type":"Point"},"name":"Broadway Thai @Tom \u0026 Toon"} +,{"_id":{"$oid":"55cba2476c522cafdb056826"},"location":{"coordinates":[-73.9791153,40.7454387],"type":"Point"},"name":"Le Parisien"} +,{"_id":{"$oid":"55cba2476c522cafdb056827"},"location":{"coordinates":[-73.99426609999999,40.7508707],"type":"Point"},"name":"Bt3 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb056828"},"location":{"coordinates":[-73.9819136,40.65827549999999],"type":"Point"},"name":"Peking Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb056829"},"location":{"coordinates":[-73.99426609999999,40.7508707],"type":"Point"},"name":"Bt4 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05682a"},"location":{"coordinates":[-73.8467256,40.8370457],"type":"Point"},"name":"King House"} +,{"_id":{"$oid":"55cba2476c522cafdb05682b"},"location":{"coordinates":[-73.9545981,40.7804806],"type":"Point"},"name":"Le Pain Quotidien"} +,{"_id":{"$oid":"55cba2476c522cafdb05682c"},"location":{"coordinates":[-74.0062401,40.7397546],"type":"Point"},"name":"Bar Pitti"} +,{"_id":{"$oid":"55cba2476c522cafdb05682d"},"location":{"coordinates":[-74.15797239999999,40.5476339],"type":"Point"},"name":"Pacific Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb05682e"},"location":{"coordinates":[-73.98895019999999,40.7303604],"type":"Point"},"name":"Saint'S Alp Teahouse"} +,{"_id":{"$oid":"55cba2476c522cafdb05682f"},"location":{"coordinates":[-74.002943,40.732747],"type":"Point"},"name":"Jekyll \u0026 Hyde"} +,{"_id":{"$oid":"55cba2476c522cafdb056830"},"location":{"coordinates":[-73.86260399999999,40.8839842],"type":"Point"},"name":"Parrilla International"} +,{"_id":{"$oid":"55cba2476c522cafdb056831"},"location":{"coordinates":[-73.9668385,40.7593196],"type":"Point"},"name":"Lips Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056832"},"location":{"coordinates":[-73.9582374,40.7130609],"type":"Point"},"name":"Midway Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb056833"},"location":{"coordinates":[-73.9934292,40.7311439],"type":"Point"},"name":"Haagen Dazs"} +,{"_id":{"$oid":"55cba2476c522cafdb056834"},"location":{"coordinates":[-73.98432919999999,40.717456],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb056835"},"location":{"coordinates":[-74.0041174,40.737933],"type":"Point"},"name":"Anfora"} +,{"_id":{"$oid":"55cba2476c522cafdb056836"},"location":{"coordinates":[-73.986991,40.71949900000001],"type":"Point"},"name":"Tiny'S Giant Sandwich Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb056837"},"location":{"coordinates":[-73.91246319999999,40.7441796],"type":"Point"},"name":"Payag"} +,{"_id":{"$oid":"55cba2476c522cafdb056838"},"location":{"coordinates":[-73.8645049,40.85462340000001],"type":"Point"},"name":"Azul Tequila Mexican Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056839"},"location":{"coordinates":[-73.9400963,40.8412554],"type":"Point"},"name":"Jou Jou Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05683a"},"location":{"coordinates":[-73.9055718,40.6502554],"type":"Point"},"name":"Maria Coffee Shop \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05683b"},"location":{"coordinates":[-73.99098099999999,40.737596],"type":"Point"},"name":"Dig Inn"} +,{"_id":{"$oid":"55cba2476c522cafdb05683c"},"location":{"coordinates":[-73.9836468,40.7559068],"type":"Point"},"name":"International Center Of Photography"} +,{"_id":{"$oid":"55cba2476c522cafdb05683d"},"location":{"coordinates":[-73.983634,40.7294377],"type":"Point"},"name":"Atomic Wings"} +,{"_id":{"$oid":"55cba2476c522cafdb05683e"},"location":{"coordinates":[-73.93300099999999,40.651869],"type":"Point"},"name":"Ital Fusion"} +,{"_id":{"$oid":"55cba2476c522cafdb05683f"},"location":{"coordinates":[-73.97427239999999,40.7516937],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb056840"},"location":{"coordinates":[-73.9468366,40.71160709999999],"type":"Point"},"name":"Lady Jay'S"} +,{"_id":{"$oid":"55cba2476c522cafdb056841"},"location":{"coordinates":[-73.8799004,40.7480787],"type":"Point"},"name":"Jose Fish Market"} +,{"_id":{"$oid":"55cba2476c522cafdb056842"},"location":{"coordinates":[-73.9611742,40.6801878],"type":"Point"},"name":"B-Hive Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb056843"},"location":{"coordinates":[-73.922675,40.8168716],"type":"Point"},"name":"Dragon Yuan"} +,{"_id":{"$oid":"55cba2476c522cafdb056844"},"location":{"coordinates":[-74.2140299,40.5554119],"type":"Point"},"name":"Eve Ultra Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb056845"},"location":{"coordinates":[-73.9891107,40.7434614],"type":"Point"},"name":"Hill Country Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb056846"},"location":{"coordinates":[-73.9951153,40.7606442],"type":"Point"},"name":"West Side Steakhouse"} +,{"_id":{"$oid":"55cba2476c522cafdb056847"},"location":{"coordinates":[-74.008038,40.736869],"type":"Point"},"name":"Malaparte"} +,{"_id":{"$oid":"55cba2476c522cafdb056848"},"location":{"coordinates":[-73.9733779,40.7525998],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb056849"},"location":{"coordinates":[-73.79469089999999,40.7822668],"type":"Point"},"name":"Riviera Ristorante"} +,{"_id":{"$oid":"55cba2476c522cafdb05684a"},"location":{"coordinates":[-73.99051,40.664496],"type":"Point"},"name":"King Royal Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb05684b"},"location":{"coordinates":[-73.9734853,40.612894],"type":"Point"},"name":"Las Banderas Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05684c"},"location":{"coordinates":[-73.9881509,40.7286155],"type":"Point"},"name":"2 Bros Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05684d"},"location":{"coordinates":[-73.97275800000001,40.59001],"type":"Point"},"name":"Cafe Budovice"} +,{"_id":{"$oid":"55cba2476c522cafdb05684e"},"location":{"coordinates":[-73.9918114,40.6626175],"type":"Point"},"name":"La Boulangerie Lopez Baked Goods \u0026 Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05684f"},"location":{"coordinates":[-73.9275851,40.8660953],"type":"Point"},"name":"Corcho Wine Room"} +,{"_id":{"$oid":"55cba2476c522cafdb056850"},"location":{"coordinates":[-73.9148335,40.7434815],"type":"Point"},"name":"Sik Gaek"} +,{"_id":{"$oid":"55cba2476c522cafdb056851"},"location":{"coordinates":[-73.9148423,40.7760728],"type":"Point"},"name":"Sandro'S Latin Food Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056852"},"location":{"coordinates":[-73.9893112,40.7634802],"type":"Point"},"name":"Uncle Mario'S"} +,{"_id":{"$oid":"55cba2476c522cafdb056853"},"location":{"coordinates":[-73.8462733,40.8707137],"type":"Point"},"name":"Kenedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb056854"},"location":{"coordinates":[-73.9724926,40.7943506],"type":"Point"},"name":"Two Boots Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb056855"},"location":{"coordinates":[-74.026811,40.632988],"type":"Point"},"name":"The Burger Bistro"} +,{"_id":{"$oid":"55cba2476c522cafdb056856"},"location":{"coordinates":[-73.8822859,40.671088],"type":"Point"},"name":"New Wah On"} +,{"_id":{"$oid":"55cba2476c522cafdb056857"},"location":{"coordinates":[-73.9778608,40.6436617],"type":"Point"},"name":"Soho Cafe \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb056858"},"location":{"coordinates":[-73.8799148,40.7480772],"type":"Point"},"name":"East 21 Chinese \u0026 Japanese Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb056859"},"location":{"coordinates":[-73.8917938,40.677856],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb05685a"},"location":{"coordinates":[-73.9141693,40.7278235],"type":"Point"},"name":"Super Bowl Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05685b"},"location":{"coordinates":[-73.9799204,40.7578379],"type":"Point"},"name":"Five Guys Burgers And Fries"} +,{"_id":{"$oid":"55cba2476c522cafdb05685c"},"location":{"coordinates":[-73.81375,40.690482],"type":"Point"},"name":"Brown Betty Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05685d"},"location":{"coordinates":[-81.98823929999999,30.3027168],"type":"Point"},"name":"Taste Of Tokyo"} +,{"_id":{"$oid":"55cba2476c522cafdb05685e"},"location":{"coordinates":[-74.00642119999999,40.74400809999999],"type":"Point"},"name":"Artichoke Basille'S Pizza \u0026 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05685f"},"location":{"coordinates":[-73.9924766,40.756474],"type":"Point"},"name":"Sky Room"} +,{"_id":{"$oid":"55cba2476c522cafdb056860"},"location":{"coordinates":[-73.90414489999999,40.9056511],"type":"Point"},"name":"Tokyo House Japanese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056861"},"location":{"coordinates":[-73.9573041,40.6719985],"type":"Point"},"name":"Veggies Natural Juice Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb056862"},"location":{"coordinates":[-73.98581229999999,40.7496521],"type":"Point"},"name":"Lena"} +,{"_id":{"$oid":"55cba2476c522cafdb056863"},"location":{"coordinates":[-73.7822056,40.6434612],"type":"Point"},"name":"Alitalia - Compagnia Aerea Italiana"} +,{"_id":{"$oid":"55cba2476c522cafdb056864"},"location":{"coordinates":[-73.9868393,40.73691240000001],"type":"Point"},"name":"Sushi Chosi"} +,{"_id":{"$oid":"55cba2476c522cafdb056865"},"location":{"coordinates":[-74.030428,40.616122],"type":"Point"},"name":"Mid China"} +,{"_id":{"$oid":"55cba2476c522cafdb056866"},"location":{"coordinates":[-74.0075131,40.7358593],"type":"Point"},"name":"Orient Express"} +,{"_id":{"$oid":"55cba2476c522cafdb056867"},"location":{"coordinates":[-73.83275650000002,40.7589104],"type":"Point"},"name":"New Golden Szechuan"} +,{"_id":{"$oid":"55cba2476c522cafdb056868"},"location":{"coordinates":[-73.9890022,40.75378810000001],"type":"Point"},"name":"Bonchon Usa"} +,{"_id":{"$oid":"55cba2476c522cafdb056869"},"location":{"coordinates":[-74.0019828,40.7172786],"type":"Point"},"name":"Cafe Lafayette"} +,{"_id":{"$oid":"55cba2476c522cafdb05686a"},"location":{"coordinates":[-73.97772669999999,40.7743383],"type":"Point"},"name":"Le Pain Quotdien"} +,{"_id":{"$oid":"55cba2476c522cafdb05686b"},"location":{"coordinates":[-73.9944046,40.6860244],"type":"Point"},"name":"Brucie"} +,{"_id":{"$oid":"55cba2476c522cafdb05686c"},"location":{"coordinates":[-73.775493,40.70951],"type":"Point"},"name":"Guayacan Bar \u0026 Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb05686d"},"location":{"coordinates":[-73.9920613,40.77026439999999],"type":"Point"},"name":"Balilo Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb05686e"},"location":{"coordinates":[-73.9670038,40.58034809999999],"type":"Point"},"name":"Oriental Chinese Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb05686f"},"location":{"coordinates":[-73.9966748,40.7193501],"type":"Point"},"name":"Banh Mi Saigon Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb056870"},"location":{"coordinates":[-73.993628,40.756603],"type":"Point"},"name":"Atomic Wings"} +,{"_id":{"$oid":"55cba2476c522cafdb056871"},"location":{"coordinates":[-73.8365929,40.765304],"type":"Point"},"name":"Happy Deli Plus"} +,{"_id":{"$oid":"55cba2476c522cafdb056872"},"location":{"coordinates":[-73.8946069,40.7731752],"type":"Point"},"name":"Astoria Bowl"} +,{"_id":{"$oid":"55cba2476c522cafdb056873"},"location":{"coordinates":[-73.988443,40.721092],"type":"Point"},"name":"Snack Dragon"} +,{"_id":{"$oid":"55cba2476c522cafdb056874"},"location":{"coordinates":[-73.99433789999999,40.6805724],"type":"Point"},"name":"Nightingale 9"} +,{"_id":{"$oid":"55cba2476c522cafdb056875"},"location":{"coordinates":[-73.9408466,40.7934335],"type":"Point"},"name":"Lemon Life"} +,{"_id":{"$oid":"55cba2476c522cafdb056876"},"location":{"coordinates":[-73.9793564,40.7589426],"type":"Point"},"name":"Auntie Anne'S"} +,{"_id":{"$oid":"55cba2476c522cafdb056877"},"location":{"coordinates":[-73.84937,40.7325236],"type":"Point"},"name":"Amadeus"} +,{"_id":{"$oid":"55cba2476c522cafdb056878"},"location":{"coordinates":[-73.99929209999999,40.6839745],"type":"Point"},"name":"Brooklyn Farmacy And Soda Fountain"} +,{"_id":{"$oid":"55cba2476c522cafdb056879"},"location":{"coordinates":[-73.9179687,40.7672269],"type":"Point"},"name":"De Ja Vu"} +,{"_id":{"$oid":"55cba2476c522cafdb05687a"},"location":{"coordinates":[-73.9239164,40.6995196],"type":"Point"},"name":"Johana Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05687b"},"location":{"coordinates":[-73.9308466,40.7041237],"type":"Point"},"name":"The Narrows"} +,{"_id":{"$oid":"55cba2476c522cafdb05687c"},"location":{"coordinates":[-73.878867,40.827312],"type":"Point"},"name":"El Cerito Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05687d"},"location":{"coordinates":[-73.7832352,40.7130005],"type":"Point"},"name":"Lucky No.1 Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05687e"},"location":{"coordinates":[-73.8112644,40.7023682],"type":"Point"},"name":"Mataheko African Restaurant And Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb05687f"},"location":{"coordinates":[-73.9777704,40.7494703],"type":"Point"},"name":"St Giles Hotel - Icon/The Court"} +,{"_id":{"$oid":"55cba2476c522cafdb056880"},"location":{"coordinates":[-73.7554378,40.7493786],"type":"Point"},"name":"Duck Village Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056881"},"location":{"coordinates":[-73.99159,40.5905902],"type":"Point"},"name":"Uncle Louie G"} +,{"_id":{"$oid":"55cba2476c522cafdb056882"},"location":{"coordinates":[-73.99713179999999,40.57566080000001],"type":"Point"},"name":"Dunkin Donuts \u0026 Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb056883"},"location":{"coordinates":[-73.98434569999999,40.5959473],"type":"Point"},"name":"Dunkin Donuts \u0026 Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb056884"},"location":{"coordinates":[-73.9892251,40.7348753],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb056885"},"location":{"coordinates":[-73.9506782,40.710775],"type":"Point"},"name":"Singas Famous Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056886"},"location":{"coordinates":[-74.1039296,40.6160482],"type":"Point"},"name":"Napoli Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056887"},"location":{"coordinates":[-73.96194919999999,40.6249025],"type":"Point"},"name":"Dunkin Donuts \u0026 Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb056888"},"location":{"coordinates":[-73.874087,40.829947],"type":"Point"},"name":"Lincoln Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb056889"},"location":{"coordinates":[-73.94901600000001,40.642926],"type":"Point"},"name":"Yo-Yo Fritaille"} +,{"_id":{"$oid":"55cba2476c522cafdb05688a"},"location":{"coordinates":[-73.9970183,40.7017076],"type":"Point"},"name":"Brooklyn Bridge Garden Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05688b"},"location":{"coordinates":[-73.985727,40.7682479],"type":"Point"},"name":"Terakawa Ramen"} +,{"_id":{"$oid":"55cba2476c522cafdb05688c"},"location":{"coordinates":[-73.8799076,40.7480779],"type":"Point"},"name":"Original Mama'S Empanadas"} +,{"_id":{"$oid":"55cba2476c522cafdb05688d"},"location":{"coordinates":[-73.9543152,40.6806144],"type":"Point"},"name":"Healthy Halal Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05688e"},"location":{"coordinates":[-73.8533927,40.8980832],"type":"Point"},"name":"New China Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb05688f"},"location":{"coordinates":[-73.9164157,40.7625789],"type":"Point"},"name":"Red Mango"} +,{"_id":{"$oid":"55cba2476c522cafdb056890"},"location":{"coordinates":[-73.9735262,40.7900912],"type":"Point"},"name":"Anthi'S Greek Food"} +,{"_id":{"$oid":"55cba2476c522cafdb056891"},"location":{"coordinates":[-73.8964976,40.8164496],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb056892"},"location":{"coordinates":[-73.7822056,40.6434612],"type":"Point"},"name":"Revive (North Concourse) Gate 25"} +,{"_id":{"$oid":"55cba2476c522cafdb056893"},"location":{"coordinates":[-73.8303656,40.75929010000001],"type":"Point"},"name":"Maxin Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb056894"},"location":{"coordinates":[-74.0067308,40.7351272],"type":"Point"},"name":"Aria"} +,{"_id":{"$oid":"55cba2476c522cafdb056895"},"location":{"coordinates":[-73.945493,40.7475228],"type":"Point"},"name":"Lic Market"} +,{"_id":{"$oid":"55cba2476c522cafdb056896"},"location":{"coordinates":[-73.9962917,40.7294041],"type":"Point"},"name":"@ The Square(Starbucks)"} +,{"_id":{"$oid":"55cba2476c522cafdb056897"},"location":{"coordinates":[-73.8543438,40.89789409999999],"type":"Point"},"name":"China Peking House"} +,{"_id":{"$oid":"55cba2476c522cafdb056898"},"location":{"coordinates":[-73.991961,40.7184477],"type":"Point"},"name":"La Crepe C'Est Si Bon"} +,{"_id":{"$oid":"55cba2476c522cafdb056899"},"location":{"coordinates":[-73.87591929999999,40.8396288],"type":"Point"},"name":"Alitalia Pizza Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05689a"},"location":{"coordinates":[-73.9541419,40.7791276],"type":"Point"},"name":"Papaya King"} +,{"_id":{"$oid":"55cba2476c522cafdb05689b"},"location":{"coordinates":[-73.9653609,40.6900442],"type":"Point"},"name":"Clinton Park Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05689c"},"location":{"coordinates":[-74.010713,40.6788979],"type":"Point"},"name":"Wen Gee House"} +,{"_id":{"$oid":"55cba2476c522cafdb05689d"},"location":{"coordinates":[-73.936055,40.841598],"type":"Point"},"name":"El Nuevo Taino"} +,{"_id":{"$oid":"55cba2476c522cafdb05689e"},"location":{"coordinates":[-73.9851706,40.7392005],"type":"Point"},"name":"Terakawa Ramen"} +,{"_id":{"$oid":"55cba2476c522cafdb05689f"},"location":{"coordinates":[-73.8030836,40.7620898],"type":"Point"},"name":"Myung San Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0568a0"},"location":{"coordinates":[-73.9854578,40.727888],"type":"Point"},"name":"Xi'An Famous Foods"} +,{"_id":{"$oid":"55cba2476c522cafdb0568a1"},"location":{"coordinates":[-73.9350973,40.7968819],"type":"Point"},"name":"La Cabana Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0568a2"},"location":{"coordinates":[-73.9309189,40.6936122],"type":"Point"},"name":"New Jin Guang House"} +,{"_id":{"$oid":"55cba2476c522cafdb0568a3"},"location":{"coordinates":[-73.78558129999999,40.7395493],"type":"Point"},"name":"Red Mango"} +,{"_id":{"$oid":"55cba2476c522cafdb0568a4"},"location":{"coordinates":[-73.968747,40.7588922],"type":"Point"},"name":"D Napoli Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0568a5"},"location":{"coordinates":[-73.95192899999999,40.586488],"type":"Point"},"name":"Cafe Glechik Of Sheepshead Bay"} +,{"_id":{"$oid":"55cba2476c522cafdb0568a6"},"location":{"coordinates":[-73.9068987,40.82692],"type":"Point"},"name":"Basics Cafeteria"} +,{"_id":{"$oid":"55cba2476c522cafdb0568a7"},"location":{"coordinates":[-73.98445319999999,40.7277954],"type":"Point"},"name":"Whitman'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0568a8"},"location":{"coordinates":[-73.986193,40.676873],"type":"Point"},"name":"Cotta Bene"} +,{"_id":{"$oid":"55cba2476c522cafdb0568a9"},"location":{"coordinates":[-74.01049809999999,40.71705499999999],"type":"Point"},"name":"Salaam Bombay"} +,{"_id":{"$oid":"55cba2476c522cafdb0568aa"},"location":{"coordinates":[-74.03098539999999,40.6173014],"type":"Point"},"name":"Fushimi Japanese Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb0568ab"},"location":{"coordinates":[-73.83196819999999,40.75950539999999],"type":"Point"},"name":"Spicy \u0026 Tasty"} +,{"_id":{"$oid":"55cba2476c522cafdb0568ac"},"location":{"coordinates":[-73.984439,40.742371],"type":"Point"},"name":"Eddy'S Eats"} +,{"_id":{"$oid":"55cba2476c522cafdb0568ad"},"location":{"coordinates":[-73.9759813,40.7482465],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0568ae"},"location":{"coordinates":[-73.9950169,40.6848928],"type":"Point"},"name":"Strong Place"} +,{"_id":{"$oid":"55cba2476c522cafdb0568af"},"location":{"coordinates":[-73.982879,40.730414],"type":"Point"},"name":"Kumo Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb0568b0"},"location":{"coordinates":[-73.95975589999999,40.7664778],"type":"Point"},"name":"Golosi"} +,{"_id":{"$oid":"55cba2476c522cafdb0568b1"},"location":{"coordinates":[-73.9206897,40.8681677],"type":"Point"},"name":"Inwood Local Wine Bar \u0026 Beer Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb0568b2"},"location":{"coordinates":[-73.98557989999999,40.7444859],"type":"Point"},"name":"Millesime"} +,{"_id":{"$oid":"55cba2476c522cafdb0568b3"},"location":{"coordinates":[-73.8113949,40.7280238],"type":"Point"},"name":"The Oneness Fountain Heart"} +,{"_id":{"$oid":"55cba2476c522cafdb0568b4"},"location":{"coordinates":[-73.740094,40.725869],"type":"Point"},"name":"Doty'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0568b5"},"location":{"coordinates":[-73.97996890000002,40.5758239],"type":"Point"},"name":"Coney Island Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0568b6"},"location":{"coordinates":[-73.9299121,40.6507679],"type":"Point"},"name":"Island Burger"} +,{"_id":{"$oid":"55cba2476c522cafdb0568b7"},"location":{"coordinates":[-73.9940711,40.6148916],"type":"Point"},"name":"Hand Pull Noodle \u0026 Dumpling House"} +,{"_id":{"$oid":"55cba2476c522cafdb0568b8"},"location":{"coordinates":[-73.97101289999999,40.7634026],"type":"Point"},"name":"Macaron Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0568b9"},"location":{"coordinates":[-73.9556054,40.720057],"type":"Point"},"name":"The Bedford"} +,{"_id":{"$oid":"55cba2476c522cafdb0568ba"},"location":{"coordinates":[-74.0036609,40.655446],"type":"Point"},"name":"Reina De La Nube Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0568bb"},"location":{"coordinates":[-73.9778834,40.6870085],"type":"Point"},"name":"Berlyn"} +,{"_id":{"$oid":"55cba2476c522cafdb0568bc"},"location":{"coordinates":[-73.9783018,40.7496181],"type":"Point"},"name":"Audrey At St. Giles Hotel"} +,{"_id":{"$oid":"55cba2476c522cafdb0568bd"},"location":{"coordinates":[-74.0683829,40.5924441],"type":"Point"},"name":"Dragon House Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0568be"},"location":{"coordinates":[-74.02385249999999,40.6255814],"type":"Point"},"name":"Mussels \u0026 More"} +,{"_id":{"$oid":"55cba2476c522cafdb0568bf"},"location":{"coordinates":[-74.1020474,40.589165],"type":"Point"},"name":"Red C Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0568c0"},"location":{"coordinates":[-73.984427,40.6870138],"type":"Point"},"name":"Bedouin Tent"} +,{"_id":{"$oid":"55cba2476c522cafdb0568c1"},"location":{"coordinates":[-73.9963159,40.711916],"type":"Point"},"name":"Lee Chung Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0568c2"},"location":{"coordinates":[-74.014945,40.630005],"type":"Point"},"name":"Ocean Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0568c3"},"location":{"coordinates":[-73.7302656,40.6919955],"type":"Point"},"name":"Tiffany'S Karib Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0568c4"},"location":{"coordinates":[-73.9215969,40.7032714],"type":"Point"},"name":"Ivy Star Bar \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0568c5"},"location":{"coordinates":[-73.89175399999999,40.8642751],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0568c6"},"location":{"coordinates":[-73.871522,40.748776],"type":"Point"},"name":"Lima Limon Peruvian Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb0568c7"},"location":{"coordinates":[-73.904995,40.7013477],"type":"Point"},"name":"La Playita Bar And Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0568c8"},"location":{"coordinates":[-73.9845479,40.7564613],"type":"Point"},"name":"The Lambs Club"} +,{"_id":{"$oid":"55cba2476c522cafdb0568c9"},"location":{"coordinates":[-73.9845479,40.7564613],"type":"Point"},"name":"The Lambs Club -- Banquet Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0568ca"},"location":{"coordinates":[-74.000789,40.73477],"type":"Point"},"name":"Desantos Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0568cb"},"location":{"coordinates":[-73.9845479,40.7564613],"type":"Point"},"name":"The Lambs Club"} +,{"_id":{"$oid":"55cba2476c522cafdb0568cc"},"location":{"coordinates":[-73.998069,40.725716],"type":"Point"},"name":"Burger \u0026 Barrel"} +,{"_id":{"$oid":"55cba2476c522cafdb0568cd"},"location":{"coordinates":[-74.00131999999999,40.601024],"type":"Point"},"name":"China Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb0568ce"},"location":{"coordinates":[-73.899778,40.6360412],"type":"Point"},"name":"Yi Hong Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0568cf"},"location":{"coordinates":[-73.9187426,40.8299958],"type":"Point"},"name":"Happy Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb0568d0"},"location":{"coordinates":[-73.8880417,40.8205098],"type":"Point"},"name":"Lia Coffee Shop And Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb0568d1"},"location":{"coordinates":[-73.974345,40.6805742],"type":"Point"},"name":"Bergen Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0568d2"},"location":{"coordinates":[-73.9496894,40.6496551],"type":"Point"},"name":"Kam Man Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0568d3"},"location":{"coordinates":[-73.8433697,40.8471942],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0568d4"},"location":{"coordinates":[-74.0011751,40.6467331],"type":"Point"},"name":"Pizza By The Park"} +,{"_id":{"$oid":"55cba2476c522cafdb0568d5"},"location":{"coordinates":[-73.96386679999999,40.6797842],"type":"Point"},"name":"Sapid Indian Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0568d6"},"location":{"coordinates":[-73.8097682,40.7390158],"type":"Point"},"name":"Puerto Madero Steak House"} +,{"_id":{"$oid":"55cba2476c522cafdb0568d7"},"location":{"coordinates":[-74.0140411,40.6412377],"type":"Point"},"name":"Nuevo Palacio Chino Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0568d8"},"location":{"coordinates":[-73.8001075,40.7036432],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0568d9"},"location":{"coordinates":[-73.937243,40.7090596],"type":"Point"},"name":"Newtown"} +,{"_id":{"$oid":"55cba2476c522cafdb0568da"},"location":{"coordinates":[-73.992122,40.7341834],"type":"Point"},"name":"Nanoosh"} +,{"_id":{"$oid":"55cba2476c522cafdb0568db"},"location":{"coordinates":[-74.1351911,40.6264188],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0568dc"},"location":{"coordinates":[-73.98998470000001,40.7224441],"type":"Point"},"name":"Bob Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0568dd"},"location":{"coordinates":[-73.9718013,40.7450496],"type":"Point"},"name":"Rafina Greek Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb0568de"},"location":{"coordinates":[-73.9816696,40.5765812],"type":"Point"},"name":"Pizza On The Run"} +,{"_id":{"$oid":"55cba2476c522cafdb0568df"},"location":{"coordinates":[-74.2356563,40.5220818],"type":"Point"},"name":"Cabo Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0568e0"},"location":{"coordinates":[-73.98338389999999,40.6773986],"type":"Point"},"name":"Station Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0568e1"},"location":{"coordinates":[-73.94310630000001,40.8217797],"type":"Point"},"name":"Jacob Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0568e2"},"location":{"coordinates":[-73.805825,40.697888],"type":"Point"},"name":"South Jamaica Portuguese Sporting Club"} +,{"_id":{"$oid":"55cba2476c522cafdb0568e3"},"location":{"coordinates":[-74.00647599999999,40.638802],"type":"Point"},"name":"Golden Bay Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0568e4"},"location":{"coordinates":[-73.93816230000002,40.7968964],"type":"Point"},"name":"Milano'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb0568e5"},"location":{"coordinates":[-74.0137534,40.7092191],"type":"Point"},"name":"Blt Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0568e6"},"location":{"coordinates":[-73.9156998,40.7626109],"type":"Point"},"name":"Dunkin Donut"} +,{"_id":{"$oid":"55cba2476c522cafdb0568e7"},"location":{"coordinates":[-73.9909547,40.5761478],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb0568e8"},"location":{"coordinates":[-73.8666786,40.8216288],"type":"Point"},"name":"Golden City Chinese Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0568e9"},"location":{"coordinates":[-74.0139114,40.7053128],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0568ea"},"location":{"coordinates":[-73.9910742,40.7211146],"type":"Point"},"name":"Gentleman Farmer"} +,{"_id":{"$oid":"55cba2476c522cafdb0568eb"},"location":{"coordinates":[-73.9506868,40.7230235],"type":"Point"},"name":"No Name Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0568ec"},"location":{"coordinates":[-74.00056599999999,40.727572],"type":"Point"},"name":"Blue Haven"} +,{"_id":{"$oid":"55cba2476c522cafdb0568ed"},"location":{"coordinates":[-74.013943,40.7079273],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0568ee"},"location":{"coordinates":[-73.8677216,40.8451486],"type":"Point"},"name":"El Nuevo Pollo Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0568ef"},"location":{"coordinates":[-73.92455199999999,40.663538],"type":"Point"},"name":"Isaacs Jamaican Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb0568f0"},"location":{"coordinates":[-73.985843,40.730533],"type":"Point"},"name":"Ninth Ward"} +,{"_id":{"$oid":"55cba2476c522cafdb0568f1"},"location":{"coordinates":[-73.892972,40.7545713],"type":"Point"},"name":"Chifa Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0568f2"},"location":{"coordinates":[-73.98394929999999,40.6766563],"type":"Point"},"name":"Oaxaca"} +,{"_id":{"$oid":"55cba2476c522cafdb0568f3"},"location":{"coordinates":[-73.9400968,40.8393848],"type":"Point"},"name":"Strokos"} +,{"_id":{"$oid":"55cba2476c522cafdb0568f4"},"location":{"coordinates":[-73.95229719999999,40.7481296],"type":"Point"},"name":"Small Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0568f5"},"location":{"coordinates":[-73.904312,40.720652],"type":"Point"},"name":"888 Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0568f6"},"location":{"coordinates":[-73.794186,40.7630109],"type":"Point"},"name":"Asian Chef"} +,{"_id":{"$oid":"55cba2476c522cafdb0568f7"},"location":{"coordinates":[-73.9853756,40.7572091],"type":"Point"},"name":"Scoops R Us"} +,{"_id":{"$oid":"55cba2476c522cafdb0568f8"},"location":{"coordinates":[-73.9902487,40.6721292],"type":"Point"},"name":"Michael \u0026 Ping'S Modern Chinese Take-Out"} +,{"_id":{"$oid":"55cba2476c522cafdb0568f9"},"location":{"coordinates":[-73.8303656,40.75929010000001],"type":"Point"},"name":"Popeyes Chicken \u0026 Biscuits"} +,{"_id":{"$oid":"55cba2476c522cafdb0568fa"},"location":{"coordinates":[-74.0268565,40.6330902],"type":"Point"},"name":"Los Pollitos"} +,{"_id":{"$oid":"55cba2476c522cafdb0568fb"},"location":{"coordinates":[-73.9984186,40.73292560000001],"type":"Point"},"name":"Curry Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0568fc"},"location":{"coordinates":[-73.9600146,40.5787886],"type":"Point"},"name":"Tacos El Rey"} +,{"_id":{"$oid":"55cba2476c522cafdb0568fd"},"location":{"coordinates":[-73.9932434,40.7331054],"type":"Point"},"name":"Argo Tea Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0568fe"},"location":{"coordinates":[-73.9900428,40.7497232],"type":"Point"},"name":"Statler Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0568ff"},"location":{"coordinates":[-73.863497,40.74751699999999],"type":"Point"},"name":"Tulcingo Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056900"},"location":{"coordinates":[-73.93294399999999,40.651369],"type":"Point"},"name":"The Hills Restaurant And Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb056901"},"location":{"coordinates":[-73.983221,40.6125479],"type":"Point"},"name":"Vip Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb056902"},"location":{"coordinates":[-73.9457639,40.7577868],"type":"Point"},"name":"J \u0026 M Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb056903"},"location":{"coordinates":[-74.0305736,40.6181083],"type":"Point"},"name":"Qq Star Chinese Food"} +,{"_id":{"$oid":"55cba2476c522cafdb056904"},"location":{"coordinates":[-73.8707651,40.762473],"type":"Point"},"name":"Cali Aji Con Sabor Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056905"},"location":{"coordinates":[-73.7862887,40.7123853],"type":"Point"},"name":"China King"} +,{"_id":{"$oid":"55cba2476c522cafdb056906"},"location":{"coordinates":[-73.99116339999999,40.6000307],"type":"Point"},"name":"Nyonya"} +,{"_id":{"$oid":"55cba2476c522cafdb056907"},"location":{"coordinates":[-73.8133009,40.7876309],"type":"Point"},"name":"Ducale Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056908"},"location":{"coordinates":[-73.9759813,40.7482465],"type":"Point"},"name":"New Hane Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb056909"},"location":{"coordinates":[-73.991292,40.7433819],"type":"Point"},"name":"Raymi"} +,{"_id":{"$oid":"55cba2476c522cafdb05690a"},"location":{"coordinates":[-73.92061989999999,40.8681546],"type":"Point"},"name":"Yummy Thai"} +,{"_id":{"$oid":"55cba2476c522cafdb05690b"},"location":{"coordinates":[-73.906508,40.8300361],"type":"Point"},"name":"Pyramid Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb05690c"},"location":{"coordinates":[-73.8828671,40.7555714],"type":"Point"},"name":"D'Antigua Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05690d"},"location":{"coordinates":[-73.9864387,40.7473643],"type":"Point"},"name":"Miss Korea"} +,{"_id":{"$oid":"55cba2476c522cafdb05690e"},"location":{"coordinates":[-73.9881375,40.7210822],"type":"Point"},"name":"Stanton Social"} +,{"_id":{"$oid":"55cba2476c522cafdb05690f"},"location":{"coordinates":[-73.8654846,40.6560891],"type":"Point"},"name":"Blue Flame Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056910"},"location":{"coordinates":[-73.9853966,40.6166656],"type":"Point"},"name":"Lucky Star Chinese Resturant"} +,{"_id":{"$oid":"55cba2476c522cafdb056911"},"location":{"coordinates":[-74.23413049999999,40.5274531],"type":"Point"},"name":"Retro Fitness"} +,{"_id":{"$oid":"55cba2476c522cafdb056912"},"location":{"coordinates":[-73.9801548,40.7603188],"type":"Point"},"name":"Le Pain Quotidien"} +,{"_id":{"$oid":"55cba2476c522cafdb056913"},"location":{"coordinates":[-74.00434340000001,40.608564],"type":"Point"},"name":"Samurai Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb056914"},"location":{"coordinates":[-73.9485772,40.8294816],"type":"Point"},"name":"Crown Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb056915"},"location":{"coordinates":[-73.92683,40.697743],"type":"Point"},"name":"Ecua Pollos Deli Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056916"},"location":{"coordinates":[-73.912644,40.723014],"type":"Point"},"name":"Deli Plant Milk Store"} +,{"_id":{"$oid":"55cba2476c522cafdb056917"},"location":{"coordinates":[-73.9552453,40.8050234],"type":"Point"},"name":"Levain Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb056918"},"location":{"coordinates":[-73.8628133,40.7473356],"type":"Point"},"name":"La Flaca Coffee Shop Restaurant And Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb056919"},"location":{"coordinates":[-73.83596229999999,40.6871053],"type":"Point"},"name":"Taste Deli And Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb05691a"},"location":{"coordinates":[-73.9833455,40.7654483],"type":"Point"},"name":"The Original Soupman"} +,{"_id":{"$oid":"55cba2476c522cafdb05691b"},"location":{"coordinates":[-74.0096671,40.6357038],"type":"Point"},"name":"Wong Good Hand Pull Noodle"} +,{"_id":{"$oid":"55cba2476c522cafdb05691c"},"location":{"coordinates":[-73.7466207,40.7360965],"type":"Point"},"name":"Blue Sky"} +,{"_id":{"$oid":"55cba2476c522cafdb05691d"},"location":{"coordinates":[-73.987589,40.5978926],"type":"Point"},"name":"Chen Won Dim Sum \u0026 Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb05691e"},"location":{"coordinates":[-73.869325,40.6846217],"type":"Point"},"name":"Wah Ming House Chinese Restauran"} +,{"_id":{"$oid":"55cba2476c522cafdb05691f"},"location":{"coordinates":[-73.9821266,40.732412],"type":"Point"},"name":"No.1 Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb056920"},"location":{"coordinates":[-73.8970432,40.867202],"type":"Point"},"name":"La Nueva Cocina Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056921"},"location":{"coordinates":[-73.9517923,40.7111174],"type":"Point"},"name":"Bagelteria"} +,{"_id":{"$oid":"55cba2476c522cafdb056922"},"location":{"coordinates":[-73.95958,40.655838],"type":"Point"},"name":"Jj'S Jamaican Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056923"},"location":{"coordinates":[-73.9148464,40.8541222],"type":"Point"},"name":"Joshue Deli \u0026 Juice Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb056924"},"location":{"coordinates":[-73.988255,40.667205],"type":"Point"},"name":"The Fifth Estate"} +,{"_id":{"$oid":"55cba2476c522cafdb056925"},"location":{"coordinates":[-73.9154483,40.7637147],"type":"Point"},"name":"Tu Casa Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056926"},"location":{"coordinates":[-73.7889689,40.6433507],"type":"Point"},"name":"Sammy'S Beach Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb056927"},"location":{"coordinates":[-73.9220532,40.6811247],"type":"Point"},"name":"Thee Seven Sister'S"} +,{"_id":{"$oid":"55cba2476c522cafdb056928"},"location":{"coordinates":[-73.980414,40.7520949],"type":"Point"},"name":"O'Casey'S"} +,{"_id":{"$oid":"55cba2476c522cafdb056929"},"location":{"coordinates":[-73.9804092,40.7547152],"type":"Point"},"name":"Morgan Stanley Conference Center"} +,{"_id":{"$oid":"55cba2476c522cafdb05692a"},"location":{"coordinates":[-73.9692611,40.6891782],"type":"Point"},"name":"Baguetteaboudit"} +,{"_id":{"$oid":"55cba2476c522cafdb05692b"},"location":{"coordinates":[-73.949395,40.7807529],"type":"Point"},"name":"Wine Bar \u0026 Ristorante"} +,{"_id":{"$oid":"55cba2476c522cafdb05692c"},"location":{"coordinates":[-73.8435423,40.6738642],"type":"Point"},"name":"Romeo'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05692d"},"location":{"coordinates":[-73.9900754,40.739884],"type":"Point"},"name":"Society Billards And Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05692e"},"location":{"coordinates":[-73.8808076,40.7498606],"type":"Point"},"name":"Hombres Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb05692f"},"location":{"coordinates":[-73.9191827,40.6989142],"type":"Point"},"name":"Azul Tequila Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056930"},"location":{"coordinates":[-74.216421,40.523245],"type":"Point"},"name":"Hot Shotz Sports Bar I"} +,{"_id":{"$oid":"55cba2476c522cafdb056931"},"location":{"coordinates":[-73.8957149,40.867019],"type":"Point"},"name":"King Wok Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056932"},"location":{"coordinates":[-73.815226,40.83127400000001],"type":"Point"},"name":"White Cross Fishing Club Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb056933"},"location":{"coordinates":[-74.137661,40.632611],"type":"Point"},"name":"Healthy Keepers"} +,{"_id":{"$oid":"55cba2476c522cafdb056934"},"location":{"coordinates":[-73.96631909999999,40.6868287],"type":"Point"},"name":"New Hong Cheong Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056935"},"location":{"coordinates":[-73.975876,40.78595500000001],"type":"Point"},"name":"King Food"} +,{"_id":{"$oid":"55cba2476c522cafdb056936"},"location":{"coordinates":[-73.97429989999999,40.7919865],"type":"Point"},"name":"Equinox"} +,{"_id":{"$oid":"55cba2476c522cafdb056937"},"location":{"coordinates":[-73.9166163,40.75484609999999],"type":"Point"},"name":"Day Break Cafe Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056938"},"location":{"coordinates":[-73.90972300000001,40.670086],"type":"Point"},"name":"Crown Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb056939"},"location":{"coordinates":[-74.1240593,40.6129702],"type":"Point"},"name":"Bagel Bistro \u0026 Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb05693a"},"location":{"coordinates":[-73.7971243,40.7398853],"type":"Point"},"name":"Tienda Vieja Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05693b"},"location":{"coordinates":[-73.91156769999999,40.6952044],"type":"Point"},"name":"Good Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05693c"},"location":{"coordinates":[-73.85118849999999,40.8335666],"type":"Point"},"name":"China King Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05693d"},"location":{"coordinates":[-73.80323709999999,40.6745345],"type":"Point"},"name":"New Dragon"} +,{"_id":{"$oid":"55cba2476c522cafdb05693e"},"location":{"coordinates":[-73.9653398,40.8014987],"type":"Point"},"name":"Suma Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb05693f"},"location":{"coordinates":[-73.983873,40.7570432],"type":"Point"},"name":"Bobby Van'S Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb056940"},"location":{"coordinates":[-73.8334953,40.684042],"type":"Point"},"name":"Tropical Jade Garden Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056941"},"location":{"coordinates":[-73.833035,40.69898490000001],"type":"Point"},"name":"Caribbean Cabana Restaurant \u0026 Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb056942"},"location":{"coordinates":[-73.9935881,40.7571543],"type":"Point"},"name":"Il Punto Ristorante"} +,{"_id":{"$oid":"55cba2476c522cafdb056943"},"location":{"coordinates":[-73.7327789,40.69309],"type":"Point"},"name":"Jamaican Flavours"} +,{"_id":{"$oid":"55cba2476c522cafdb056944"},"location":{"coordinates":[-73.7982498,40.673771],"type":"Point"},"name":"Popeyes Chicken \u0026 Biscuits"} +,{"_id":{"$oid":"55cba2476c522cafdb056945"},"location":{"coordinates":[-73.98814420000001,40.7543677],"type":"Point"},"name":"Gregorys Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb056946"},"location":{"coordinates":[-73.9094844,40.7006818],"type":"Point"},"name":"K \u0026 K Super Buffet"} +,{"_id":{"$oid":"55cba2476c522cafdb056947"},"location":{"coordinates":[-73.9854778,40.7610164],"type":"Point"},"name":"Inc Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb056948"},"location":{"coordinates":[-74.1628269,40.5934584],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb056949"},"location":{"coordinates":[-73.992903,40.601738],"type":"Point"},"name":"Breadzone"} +,{"_id":{"$oid":"55cba2476c522cafdb05694a"},"location":{"coordinates":[-73.98196209999999,40.7645483],"type":"Point"},"name":"Ava Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb05694b"},"location":{"coordinates":[-73.9472378,40.8091227],"type":"Point"},"name":"Melba'S 125"} +,{"_id":{"$oid":"55cba2476c522cafdb05694c"},"location":{"coordinates":[-73.9817333,40.7643423],"type":"Point"},"name":"The Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05694d"},"location":{"coordinates":[-73.8324959,40.7603239],"type":"Point"},"name":"East Lake Seafood Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05694e"},"location":{"coordinates":[-73.947609,40.7125686],"type":"Point"},"name":"Champs"} +,{"_id":{"$oid":"55cba2476c522cafdb05694f"},"location":{"coordinates":[-73.8316907,40.7149816],"type":"Point"},"name":"King David"} +,{"_id":{"$oid":"55cba2476c522cafdb056950"},"location":{"coordinates":[-73.9879931,40.7211418],"type":"Point"},"name":"Bisous, Ciao."} +,{"_id":{"$oid":"55cba2476c522cafdb056951"},"location":{"coordinates":[-74.0762324,40.6272621],"type":"Point"},"name":"Bari'S Pizza \u0026 Pasta Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056952"},"location":{"coordinates":[-73.9982597,40.7207406],"type":"Point"},"name":"Lafayette Espresso Bar And Marketplace"} +,{"_id":{"$oid":"55cba2476c522cafdb056953"},"location":{"coordinates":[-74.002473,40.727251],"type":"Point"},"name":"Rouge Et Blanc"} +,{"_id":{"$oid":"55cba2476c522cafdb056954"},"location":{"coordinates":[-74.0160502,40.71546439999999],"type":"Point"},"name":"Le Pain Quotidien"} +,{"_id":{"$oid":"55cba2476c522cafdb056955"},"location":{"coordinates":[-73.89092509999999,40.8575012],"type":"Point"},"name":"Kennedy Chicken \u0026 Biscuit"} +,{"_id":{"$oid":"55cba2476c522cafdb056956"},"location":{"coordinates":[-73.9149801,40.8300011],"type":"Point"},"name":"Sun'S Kang Rong Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056957"},"location":{"coordinates":[-73.8078314,40.7009181],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb056958"},"location":{"coordinates":[-74.0277538,40.6308446],"type":"Point"},"name":"Mr. Tang Dong"} +,{"_id":{"$oid":"55cba2476c522cafdb056959"},"location":{"coordinates":[-73.9569599,40.8028095],"type":"Point"},"name":"Bier International"} +,{"_id":{"$oid":"55cba2476c522cafdb05695a"},"location":{"coordinates":[-73.96322800000002,40.673262],"type":"Point"},"name":"Coffee Bites"} +,{"_id":{"$oid":"55cba2476c522cafdb05695b"},"location":{"coordinates":[-73.71650439999999,40.7266856],"type":"Point"},"name":"Palermo Pizzeria Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05695c"},"location":{"coordinates":[-73.9736745,40.7511695],"type":"Point"},"name":"Sushi Yasuda"} +,{"_id":{"$oid":"55cba2476c522cafdb05695d"},"location":{"coordinates":[-74.0137534,40.7092191],"type":"Point"},"name":"The Living Room"} +,{"_id":{"$oid":"55cba2476c522cafdb05695e"},"location":{"coordinates":[-73.9868244,40.752463],"type":"Point"},"name":"Fuel Energy Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb05695f"},"location":{"coordinates":[-73.988011,40.76420299999999],"type":"Point"},"name":"Pure Thai Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056960"},"location":{"coordinates":[-73.9815469,40.7321566],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb056961"},"location":{"coordinates":[-73.983446,40.73066],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb056962"},"location":{"coordinates":[-73.85424909999999,40.7107863],"type":"Point"},"name":"Wing Wah Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056963"},"location":{"coordinates":[-73.9740443,40.7909801],"type":"Point"},"name":"Tal Bagels"} +,{"_id":{"$oid":"55cba2476c522cafdb056964"},"location":{"coordinates":[-74.00053199999999,40.7476703],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb056965"},"location":{"coordinates":[-74.146948,40.631811],"type":"Point"},"name":"Bella Mama Rose"} +,{"_id":{"$oid":"55cba2476c522cafdb056966"},"location":{"coordinates":[-73.96943759999999,40.7572813],"type":"Point"},"name":"Mendy'S Kosher Delicatessen"} +,{"_id":{"$oid":"55cba2476c522cafdb056967"},"location":{"coordinates":[-73.985979,40.733088],"type":"Point"},"name":"Hawkers"} +,{"_id":{"$oid":"55cba2476c522cafdb056968"},"location":{"coordinates":[-74.100639,40.565664],"type":"Point"},"name":"Griff'S Place"} +,{"_id":{"$oid":"55cba2476c522cafdb056969"},"location":{"coordinates":[-73.8332083,40.7538829],"type":"Point"},"name":"Las Hermanas"} +,{"_id":{"$oid":"55cba2476c522cafdb05696a"},"location":{"coordinates":[-73.94814199999999,40.7750119],"type":"Point"},"name":"Nargila Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb05696b"},"location":{"coordinates":[-73.98557989999999,40.7444859],"type":"Point"},"name":"Millesime"} +,{"_id":{"$oid":"55cba2476c522cafdb05696c"},"location":{"coordinates":[-73.952879,40.599406],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb05696d"},"location":{"coordinates":[-73.9235784,40.6992195],"type":"Point"},"name":"Happy Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb05696e"},"location":{"coordinates":[-73.95926709999999,40.77473560000001],"type":"Point"},"name":"Farinella"} +,{"_id":{"$oid":"55cba2476c522cafdb05696f"},"location":{"coordinates":[-73.947064,40.7109698],"type":"Point"},"name":"Haab"} +,{"_id":{"$oid":"55cba2476c522cafdb056970"},"location":{"coordinates":[-73.93009119999999,40.6536182],"type":"Point"},"name":"Wang China City"} +,{"_id":{"$oid":"55cba2476c522cafdb056971"},"location":{"coordinates":[-73.93600099999999,40.795675],"type":"Point"},"name":"Makana"} +,{"_id":{"$oid":"55cba2476c522cafdb056972"},"location":{"coordinates":[-73.977312,40.749275],"type":"Point"},"name":"The Junction"} +,{"_id":{"$oid":"55cba2476c522cafdb056973"},"location":{"coordinates":[-73.9886363,40.7265087],"type":"Point"},"name":"Dahlia'S"} +,{"_id":{"$oid":"55cba2476c522cafdb056974"},"location":{"coordinates":[-74.001025,40.730668],"type":"Point"},"name":"3 Sheets Saloon"} +,{"_id":{"$oid":"55cba2476c522cafdb056975"},"location":{"coordinates":[-73.905975,40.639907],"type":"Point"},"name":"Our Place Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056976"},"location":{"coordinates":[-73.9836171,40.7448431],"type":"Point"},"name":"Mason Jar"} +,{"_id":{"$oid":"55cba2476c522cafdb056977"},"location":{"coordinates":[-73.88016689999999,40.7416723],"type":"Point"},"name":"New Fu Fan Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056978"},"location":{"coordinates":[-73.95921779999999,40.7115785],"type":"Point"},"name":"Sugar Beets"} +,{"_id":{"$oid":"55cba2476c522cafdb056979"},"location":{"coordinates":[-74.0099874,40.7330817],"type":"Point"},"name":"Bongo"} +,{"_id":{"$oid":"55cba2476c522cafdb05697a"},"location":{"coordinates":[-73.9622277,40.610748],"type":"Point"},"name":"El Tequilero Ii Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05697b"},"location":{"coordinates":[-74.176876,40.5413286],"type":"Point"},"name":"Mona Lisa Pizzeria \u0026 Ristorante"} +,{"_id":{"$oid":"55cba2476c522cafdb05697c"},"location":{"coordinates":[-73.9474432,40.6331253],"type":"Point"},"name":"Fisherman'S Cove"} +,{"_id":{"$oid":"55cba2476c522cafdb05697d"},"location":{"coordinates":[-73.95473299999999,40.804789],"type":"Point"},"name":"Peking Kitchen Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb05697e"},"location":{"coordinates":[-73.9921789,40.600693],"type":"Point"},"name":"Angela'S Taco"} +,{"_id":{"$oid":"55cba2476c522cafdb05697f"},"location":{"coordinates":[-74.0754166,40.6257124],"type":"Point"},"name":"Lakruwana Sri Lanka Under One Roof"} +,{"_id":{"$oid":"55cba2476c522cafdb056980"},"location":{"coordinates":[-73.99861849999999,40.72442059999999],"type":"Point"},"name":"Nespresso"} +,{"_id":{"$oid":"55cba2476c522cafdb056981"},"location":{"coordinates":[-73.9776225,40.7591122],"type":"Point"},"name":"Bill'S Bar \u0026 Burger Rockefeller Center"} +,{"_id":{"$oid":"55cba2476c522cafdb056982"},"location":{"coordinates":[-73.99420099999999,40.660136],"type":"Point"},"name":"Express Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb056983"},"location":{"coordinates":[-73.885508,40.7472179],"type":"Point"},"name":"El Canelazo Bar Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056984"},"location":{"coordinates":[-73.93346629999999,40.705108],"type":"Point"},"name":"Momo Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb056985"},"location":{"coordinates":[-73.73457259999999,40.6646248],"type":"Point"},"name":"Justin'S"} +,{"_id":{"$oid":"55cba2476c522cafdb056986"},"location":{"coordinates":[-73.98311799999999,40.764055],"type":"Point"},"name":"The Three Monkeys"} +,{"_id":{"$oid":"55cba2476c522cafdb056987"},"location":{"coordinates":[-73.96734740000001,40.639611],"type":"Point"},"name":"Qathra"} +,{"_id":{"$oid":"55cba2476c522cafdb056988"},"location":{"coordinates":[-73.8271286,40.7532691],"type":"Point"},"name":"Yi Lan Halal Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056989"},"location":{"coordinates":[-73.8251867,40.7605964],"type":"Point"},"name":"Jin Cheng Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05698a"},"location":{"coordinates":[-73.9934509,40.75673099999999],"type":"Point"},"name":"Curry Hut"} +,{"_id":{"$oid":"55cba2476c522cafdb05698b"},"location":{"coordinates":[-73.8317629,40.7068077],"type":"Point"},"name":"El Campeon De Los Pollos Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05698c"},"location":{"coordinates":[-73.99256439999999,40.7425062],"type":"Point"},"name":"Outback Steakhouse"} +,{"_id":{"$oid":"55cba2476c522cafdb05698d"},"location":{"coordinates":[-73.9028457,40.6268818],"type":"Point"},"name":"Paerdegat Athletic Club"} +,{"_id":{"$oid":"55cba2476c522cafdb05698e"},"location":{"coordinates":[-74.00068089999999,40.720819],"type":"Point"},"name":"218 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05698f"},"location":{"coordinates":[-73.9131474,40.7657582],"type":"Point"},"name":"After 8"} +,{"_id":{"$oid":"55cba2476c522cafdb056990"},"location":{"coordinates":[-73.844572,40.8784594],"type":"Point"},"name":"Cooyah"} +,{"_id":{"$oid":"55cba2476c522cafdb056991"},"location":{"coordinates":[-74.104073,40.58727200000001],"type":"Point"},"name":"Subways"} +,{"_id":{"$oid":"55cba2476c522cafdb056992"},"location":{"coordinates":[-73.932667,40.70524899999999],"type":"Point"},"name":"Pine Box Rock Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb056993"},"location":{"coordinates":[-73.9497483,40.8276184],"type":"Point"},"name":"King Wok Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056994"},"location":{"coordinates":[-77.4120153,37.2845339],"type":"Point"},"name":"Great Dragon Palace"} +,{"_id":{"$oid":"55cba2476c522cafdb056995"},"location":{"coordinates":[-73.9919211,40.7587676],"type":"Point"},"name":"Pinkberry"} +,{"_id":{"$oid":"55cba2476c522cafdb056996"},"location":{"coordinates":[-73.9833812,40.6761542],"type":"Point"},"name":"The Rock Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb056997"},"location":{"coordinates":[-74.00803719999999,40.6512108],"type":"Point"},"name":"Yummy Yummy Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb056998"},"location":{"coordinates":[-73.9598819,40.81421539999999],"type":"Point"},"name":"Bettolona"} +,{"_id":{"$oid":"55cba2476c522cafdb056999"},"location":{"coordinates":[-73.8384341,40.6519301],"type":"Point"},"name":"Carvel Ice Cream"} +,{"_id":{"$oid":"55cba2476c522cafdb05699a"},"location":{"coordinates":[-73.9777524,40.7452798],"type":"Point"},"name":"Babylon"} +,{"_id":{"$oid":"55cba2476c522cafdb05699b"},"location":{"coordinates":[-73.9081983,40.5925337],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb05699c"},"location":{"coordinates":[-73.9369127,40.6687162],"type":"Point"},"name":"China Pavilion"} +,{"_id":{"$oid":"55cba2476c522cafdb05699d"},"location":{"coordinates":[-73.9538151,40.7427807],"type":"Point"},"name":"Dorian Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05699e"},"location":{"coordinates":[-73.98573510000001,40.7522063],"type":"Point"},"name":"Culture Espresso"} +,{"_id":{"$oid":"55cba2476c522cafdb05699f"},"location":{"coordinates":[-73.8880056,40.8553634],"type":"Point"},"name":"Gerbasi Ristorante"} +,{"_id":{"$oid":"55cba2476c522cafdb0569a0"},"location":{"coordinates":[-73.97968960000001,40.6687354],"type":"Point"},"name":"Barnes \u0026 Noble Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0569a1"},"location":{"coordinates":[-74.10647,40.574312],"type":"Point"},"name":"Better Gourmet Health Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0569a2"},"location":{"coordinates":[-73.9620162,40.5774076],"type":"Point"},"name":"New Cafe Minutka"} +,{"_id":{"$oid":"55cba2476c522cafdb0569a3"},"location":{"coordinates":[-73.90481,40.879483],"type":"Point"},"name":"El Economico Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0569a4"},"location":{"coordinates":[-73.9950006,40.726267],"type":"Point"},"name":"Le Pain Quotidien"} +,{"_id":{"$oid":"55cba2476c522cafdb0569a5"},"location":{"coordinates":[-73.92922,40.8336342],"type":"Point"},"name":"Jin Xin Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0569a6"},"location":{"coordinates":[-73.938958,40.635389],"type":"Point"},"name":"Savoy Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0569a7"},"location":{"coordinates":[-73.9944514,40.7631161],"type":"Point"},"name":"Guelaguetza"} +,{"_id":{"$oid":"55cba2476c522cafdb0569a8"},"location":{"coordinates":[-74.07902,40.637949],"type":"Point"},"name":"El Lobito Loco"} +,{"_id":{"$oid":"55cba2476c522cafdb0569a9"},"location":{"coordinates":[-73.95866170000001,40.7131526],"type":"Point"},"name":"Cadaques"} +,{"_id":{"$oid":"55cba2476c522cafdb0569aa"},"location":{"coordinates":[-74.0028615,40.74499489999999],"type":"Point"},"name":"La Bergamote"} +,{"_id":{"$oid":"55cba2476c522cafdb0569ab"},"location":{"coordinates":[-73.945223,40.71174],"type":"Point"},"name":"Lp 'N Harmony"} +,{"_id":{"$oid":"55cba2476c522cafdb0569ac"},"location":{"coordinates":[-73.82708269999999,40.7576324],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0569ad"},"location":{"coordinates":[-73.9076407,40.8481667],"type":"Point"},"name":"Two Grandpa'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0569ae"},"location":{"coordinates":[-73.97324569999999,40.78460949999999],"type":"Point"},"name":"Bellini Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0569af"},"location":{"coordinates":[-73.94667299999999,40.695867],"type":"Point"},"name":"China City Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0569b0"},"location":{"coordinates":[-73.919539,40.865658],"type":"Point"},"name":"El Viejo Jobo Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0569b1"},"location":{"coordinates":[-73.96262000000002,40.759197],"type":"Point"},"name":"Fusha"} +,{"_id":{"$oid":"55cba2476c522cafdb0569b2"},"location":{"coordinates":[-73.98841689999999,40.6285088],"type":"Point"},"name":"Kaff Kafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0569b3"},"location":{"coordinates":[-73.9586425,40.7089247],"type":"Point"},"name":"Checkers"} +,{"_id":{"$oid":"55cba2476c522cafdb0569b4"},"location":{"coordinates":[-73.9996414,40.67511270000001],"type":"Point"},"name":"La Slowteria"} +,{"_id":{"$oid":"55cba2476c522cafdb0569b5"},"location":{"coordinates":[-73.987915,40.74588929999999],"type":"Point"},"name":"Lasani Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0569b6"},"location":{"coordinates":[-73.7480594,40.7675936],"type":"Point"},"name":"Dragon Express"} +,{"_id":{"$oid":"55cba2476c522cafdb0569b7"},"location":{"coordinates":[-73.94310449999999,40.8108763],"type":"Point"},"name":"China Wok"} +,{"_id":{"$oid":"55cba2476c522cafdb0569b8"},"location":{"coordinates":[-73.9600906,40.7142145],"type":"Point"},"name":"Samurai Mama"} +,{"_id":{"$oid":"55cba2476c522cafdb0569b9"},"location":{"coordinates":[-74.02411099999999,40.6252173],"type":"Point"},"name":"Bay Ridge Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb0569ba"},"location":{"coordinates":[-73.91691380000002,40.6549758],"type":"Point"},"name":"Wb Caribbean Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0569bb"},"location":{"coordinates":[-73.79176149999999,40.7108903],"type":"Point"},"name":"Crown Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb0569bc"},"location":{"coordinates":[-73.8868751,40.7553455],"type":"Point"},"name":"Variety Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0569bd"},"location":{"coordinates":[-73.9854606,40.7322869],"type":"Point"},"name":"Hotel Tortuga"} +,{"_id":{"$oid":"55cba2476c522cafdb0569be"},"location":{"coordinates":[-73.94649,40.78027],"type":"Point"},"name":"Guang Ming"} +,{"_id":{"$oid":"55cba2476c522cafdb0569bf"},"location":{"coordinates":[-73.952139,40.599555],"type":"Point"},"name":"Tokyo Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb0569c0"},"location":{"coordinates":[-79.34245000000001,37.7448415],"type":"Point"},"name":"River Park"} +,{"_id":{"$oid":"55cba2476c522cafdb0569c1"},"location":{"coordinates":[-79.3426557,37.7448268],"type":"Point"},"name":"'Wichcraft"} +,{"_id":{"$oid":"55cba2476c522cafdb0569c2"},"location":{"coordinates":[-104.8340205,39.7691992],"type":"Point"},"name":"Minni Shabu Shabu"} +,{"_id":{"$oid":"55cba2476c522cafdb0569c3"},"location":{"coordinates":[-73.995474,40.632639],"type":"Point"},"name":"Schnitzi"} +,{"_id":{"$oid":"55cba2476c522cafdb0569c4"},"location":{"coordinates":[-73.9570007,40.664132],"type":"Point"},"name":"Burger King"} +,{"_id":{"$oid":"55cba2476c522cafdb0569c5"},"location":{"coordinates":[-73.9161112,40.8134759],"type":"Point"},"name":"New Wok"} +,{"_id":{"$oid":"55cba2476c522cafdb0569c6"},"location":{"coordinates":[-73.991944,40.715279],"type":"Point"},"name":"The Fat Radish"} +,{"_id":{"$oid":"55cba2476c522cafdb0569c7"},"location":{"coordinates":[-73.934465,40.578349],"type":"Point"},"name":"T2 - Go"} +,{"_id":{"$oid":"55cba2476c522cafdb0569c8"},"location":{"coordinates":[-73.990556,40.749722],"type":"Point"},"name":"Central Market"} +,{"_id":{"$oid":"55cba2476c522cafdb0569c9"},"location":{"coordinates":[-73.99146499999999,40.7394338],"type":"Point"},"name":"Bravo Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0569ca"},"location":{"coordinates":[-73.8884923,40.8439702],"type":"Point"},"name":"Arkansas Chicken \u0026 Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0569cb"},"location":{"coordinates":[-73.9332964,40.6517649],"type":"Point"},"name":"Saddle Road Roti Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb0569cc"},"location":{"coordinates":[-74.009982,40.7101924],"type":"Point"},"name":"Pret A Manger"} +,{"_id":{"$oid":"55cba2476c522cafdb0569cd"},"location":{"coordinates":[-73.8572495,40.8309022],"type":"Point"},"name":"Great Wall Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0569ce"},"location":{"coordinates":[-73.910905,40.69902],"type":"Point"},"name":"Little Caesars"} +,{"_id":{"$oid":"55cba2476c522cafdb0569cf"},"location":{"coordinates":[-73.7315287,40.6738825],"type":"Point"},"name":"New Kim'S Chinese Food"} +,{"_id":{"$oid":"55cba2476c522cafdb0569d0"},"location":{"coordinates":[-73.8017107,40.76228],"type":"Point"},"name":"Mona Lisa"} +,{"_id":{"$oid":"55cba2476c522cafdb0569d1"},"location":{"coordinates":[-73.9507996,40.8212584],"type":"Point"},"name":"Grand Great Wall Restaurant Inc"} +,{"_id":{"$oid":"55cba2476c522cafdb0569d2"},"location":{"coordinates":[-73.965446,40.765549],"type":"Point"},"name":"Elim Deli Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0569d3"},"location":{"coordinates":[-73.8733157,40.7275441],"type":"Point"},"name":"Hong Kong Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0569d4"},"location":{"coordinates":[-73.93264429999999,40.8486992],"type":"Point"},"name":"Esmeraldo Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0569d5"},"location":{"coordinates":[-73.827745,40.832221],"type":"Point"},"name":"El Paisano Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb0569d6"},"location":{"coordinates":[-73.950636,40.774637],"type":"Point"},"name":"Le Bistro D'A Cote"} +,{"_id":{"$oid":"55cba2476c522cafdb0569d7"},"location":{"coordinates":[-73.9815631,40.77204529999999],"type":"Point"},"name":"Atlantic Grill West"} +,{"_id":{"$oid":"55cba2476c522cafdb0569d8"},"location":{"coordinates":[-73.8915884,40.8298941],"type":"Point"},"name":"La Nueva Lechonera"} +,{"_id":{"$oid":"55cba2476c522cafdb0569d9"},"location":{"coordinates":[-73.9797476,40.6779298],"type":"Point"},"name":"Venticinque Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0569da"},"location":{"coordinates":[-73.860596,40.692566],"type":"Point"},"name":"The Best Taste Of Italy Pizzeria \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0569db"},"location":{"coordinates":[-73.82580800000001,40.751624],"type":"Point"},"name":"Al-Rahamania Restaurant And Catering"} +,{"_id":{"$oid":"55cba2476c522cafdb0569dc"},"location":{"coordinates":[-73.9151262,40.745889],"type":"Point"},"name":"Marlene Tavern \u0026 Wine Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0569dd"},"location":{"coordinates":[-73.99226879999999,40.6893723],"type":"Point"},"name":"Pronto Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0569de"},"location":{"coordinates":[-73.9022305,40.6339824],"type":"Point"},"name":"Double Dragon"} +,{"_id":{"$oid":"55cba2476c522cafdb0569df"},"location":{"coordinates":[-73.82647109999999,40.76031529999999],"type":"Point"},"name":"Fried Dumpling Jie Jie Sheng"} +,{"_id":{"$oid":"55cba2476c522cafdb0569e0"},"location":{"coordinates":[-73.984878,40.7513099],"type":"Point"},"name":"Strand Bistro"} +,{"_id":{"$oid":"55cba2476c522cafdb0569e1"},"location":{"coordinates":[-74.000877,40.727775],"type":"Point"},"name":"Francois Payard Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0569e2"},"location":{"coordinates":[-73.92699499999999,40.806903],"type":"Point"},"name":"El Pancho Steak House"} +,{"_id":{"$oid":"55cba2476c522cafdb0569e3"},"location":{"coordinates":[-73.869945,40.7704394],"type":"Point"},"name":"World Bean"} +,{"_id":{"$oid":"55cba2476c522cafdb0569e4"},"location":{"coordinates":[-74.00663960000001,40.7514867],"type":"Point"},"name":"Wichcraft"} +,{"_id":{"$oid":"55cba2476c522cafdb0569e5"},"location":{"coordinates":[-73.9853258,40.767942],"type":"Point"},"name":"Good Units"} +,{"_id":{"$oid":"55cba2476c522cafdb0569e6"},"location":{"coordinates":[-74.0067882,40.7060144],"type":"Point"},"name":"Chop'T Creative Salad Company"} +,{"_id":{"$oid":"55cba2476c522cafdb0569e7"},"location":{"coordinates":[-73.9777932,40.7487042],"type":"Point"},"name":"Lucid Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0569e8"},"location":{"coordinates":[-73.98472799999999,40.67149999999999],"type":"Point"},"name":"Juventino"} +,{"_id":{"$oid":"55cba2476c522cafdb0569e9"},"location":{"coordinates":[-73.869945,40.7704394],"type":"Point"},"name":"Tagliare Pizza Delta Terminal"} +,{"_id":{"$oid":"55cba2476c522cafdb0569ea"},"location":{"coordinates":[-74.0268565,40.6330902],"type":"Point"},"name":"Las Margaritas"} +,{"_id":{"$oid":"55cba2476c522cafdb0569eb"},"location":{"coordinates":[-73.869945,40.7704394],"type":"Point"},"name":"Bisoux Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0569ec"},"location":{"coordinates":[-73.9420166,40.8221478],"type":"Point"},"name":"Margie'S Red Rose Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb0569ed"},"location":{"coordinates":[-73.8855919,40.8618662],"type":"Point"},"name":"Fordham University Cosi Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0569ee"},"location":{"coordinates":[-74.0037366,40.7206828],"type":"Point"},"name":"Sheraton Tribeca New York Hotel"} +,{"_id":{"$oid":"55cba2476c522cafdb0569ef"},"location":{"coordinates":[-74.0007917,40.6006139],"type":"Point"},"name":"Super Skyway Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0569f0"},"location":{"coordinates":[-73.98224689999999,40.6744051],"type":"Point"},"name":"Naruto Ramen"} +,{"_id":{"$oid":"55cba2476c522cafdb0569f1"},"location":{"coordinates":[-73.9266595,40.6192637],"type":"Point"},"name":"Georges Luncheonette"} +,{"_id":{"$oid":"55cba2476c522cafdb0569f2"},"location":{"coordinates":[-73.9854351,40.7419304],"type":"Point"},"name":"General Assembly"} +,{"_id":{"$oid":"55cba2476c522cafdb0569f3"},"location":{"coordinates":[-73.9935848,40.7330038],"type":"Point"},"name":"Nyu-Weinstein Dining Hall"} +,{"_id":{"$oid":"55cba2476c522cafdb0569f4"},"location":{"coordinates":[-73.989498,40.687747],"type":"Point"},"name":"Kyoto"} +,{"_id":{"$oid":"55cba2476c522cafdb0569f5"},"location":{"coordinates":[-73.8995619,40.8539108],"type":"Point"},"name":"Lee Wang Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0569f6"},"location":{"coordinates":[-73.9629697,40.7586969],"type":"Point"},"name":"Andre'S Hungarian Strudels \u0026 Pastries"} +,{"_id":{"$oid":"55cba2476c522cafdb0569f7"},"location":{"coordinates":[-73.7741743,40.6709568],"type":"Point"},"name":"Xin Bao Sushi House"} +,{"_id":{"$oid":"55cba2476c522cafdb0569f8"},"location":{"coordinates":[-73.95517749999999,40.6776497],"type":"Point"},"name":"Sushi Tatsu On Franklin"} +,{"_id":{"$oid":"55cba2476c522cafdb0569f9"},"location":{"coordinates":[-85.147576,44.1418976],"type":"Point"},"name":"Mexi Q Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0569fa"},"location":{"coordinates":[-73.869945,40.7704394],"type":"Point"},"name":"Bisoux Market/World Bean"} +,{"_id":{"$oid":"55cba2476c522cafdb0569fb"},"location":{"coordinates":[-73.869945,40.7704394],"type":"Point"},"name":"Custom Burgers Pat La Frieda"} +,{"_id":{"$oid":"55cba2476c522cafdb0569fc"},"location":{"coordinates":[-73.98301099999999,40.72221469999999],"type":"Point"},"name":"Station B/ Idle Hands"} +,{"_id":{"$oid":"55cba2476c522cafdb0569fd"},"location":{"coordinates":[-73.869945,40.7704394],"type":"Point"},"name":"Bar Brace"} +,{"_id":{"$oid":"55cba2476c522cafdb0569fe"},"location":{"coordinates":[-73.94318559999999,40.778441],"type":"Point"},"name":"Cafe Maggio"} +,{"_id":{"$oid":"55cba2476c522cafdb0569ff"},"location":{"coordinates":[-74.10275299999999,40.5629043],"type":"Point"},"name":"Disara"} +,{"_id":{"$oid":"55cba2476c522cafdb056a00"},"location":{"coordinates":[-73.940439,40.7502939],"type":"Point"},"name":"Tost Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056a01"},"location":{"coordinates":[-74.024019,40.625194],"type":"Point"},"name":"No Quarter"} +,{"_id":{"$oid":"55cba2476c522cafdb056a02"},"location":{"coordinates":[-73.9003575,40.823317],"type":"Point"},"name":"Great Wall Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb056a03"},"location":{"coordinates":[-73.9417066,40.5985552],"type":"Point"},"name":"King Wok Takeout"} +,{"_id":{"$oid":"55cba2476c522cafdb056a04"},"location":{"coordinates":[-73.7928615,40.7101474],"type":"Point"},"name":"Centro De Bienestar Daysi"} +,{"_id":{"$oid":"55cba2476c522cafdb056a05"},"location":{"coordinates":[-74.1660553,40.5823983],"type":"Point"},"name":"The Juice Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb056a06"},"location":{"coordinates":[-73.99083999999999,40.702805],"type":"Point"},"name":"Miso"} +,{"_id":{"$oid":"55cba2476c522cafdb056a07"},"location":{"coordinates":[-73.98361059999999,40.7676901],"type":"Point"},"name":"Pinkberry"} +,{"_id":{"$oid":"55cba2476c522cafdb056a08"},"location":{"coordinates":[-73.9515389,40.7255068],"type":"Point"},"name":"Carmine'S Original Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056a09"},"location":{"coordinates":[-73.99054199999999,40.6603769],"type":"Point"},"name":"Giuseppina'S Brick Oven"} +,{"_id":{"$oid":"55cba2476c522cafdb056a0a"},"location":{"coordinates":[-73.9946125,40.7524247],"type":"Point"},"name":"Five Guys Burgers And Fries"} +,{"_id":{"$oid":"55cba2476c522cafdb056a0b"},"location":{"coordinates":[-73.91799360000002,40.8485045],"type":"Point"},"name":"Villa Elba Catering"} +,{"_id":{"$oid":"55cba2476c522cafdb056a0c"},"location":{"coordinates":[-73.89856950000001,40.8897903],"type":"Point"},"name":"Planet Wings"} +,{"_id":{"$oid":"55cba2476c522cafdb056a0d"},"location":{"coordinates":[-73.951893,40.772642],"type":"Point"},"name":"Mark Joseph Cakes"} +,{"_id":{"$oid":"55cba2476c522cafdb056a0e"},"location":{"coordinates":[-73.8858159,40.7494465],"type":"Point"},"name":"Happy Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb056a0f"},"location":{"coordinates":[-73.92813,40.6932199],"type":"Point"},"name":"China Garden Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056a10"},"location":{"coordinates":[-73.9273146,40.8631446],"type":"Point"},"name":"Buena Nutricion"} +,{"_id":{"$oid":"55cba2476c522cafdb056a11"},"location":{"coordinates":[-73.9988889,40.7477778],"type":"Point"},"name":"Jamba Juice"} +,{"_id":{"$oid":"55cba2476c522cafdb056a12"},"location":{"coordinates":[-73.991154,40.760943],"type":"Point"},"name":"Breeze Thai-French Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb056a13"},"location":{"coordinates":[-73.9929386,40.7159217],"type":"Point"},"name":"Prosperity Dumpling"} +,{"_id":{"$oid":"55cba2476c522cafdb056a14"},"location":{"coordinates":[-73.9551865,40.7643715],"type":"Point"},"name":"Au Bon Pain"} +,{"_id":{"$oid":"55cba2476c522cafdb056a15"},"location":{"coordinates":[-73.9568117,40.6876275],"type":"Point"},"name":"Bedford Hill"} +,{"_id":{"$oid":"55cba2476c522cafdb056a16"},"location":{"coordinates":[-73.82878749999999,40.8695221],"type":"Point"},"name":"Jr Gourmet Deli \u0026 Produce"} +,{"_id":{"$oid":"55cba2476c522cafdb056a17"},"location":{"coordinates":[-74.009614,40.7247223],"type":"Point"},"name":"The Canal Park Playhouse, Inc"} +,{"_id":{"$oid":"55cba2476c522cafdb056a18"},"location":{"coordinates":[-73.9758599,40.6742122],"type":"Point"},"name":"The Bagel Market"} +,{"_id":{"$oid":"55cba2476c522cafdb056a19"},"location":{"coordinates":[-74.00893099999999,40.650084],"type":"Point"},"name":"Tacos El Bronco Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056a1a"},"location":{"coordinates":[-73.77839639999999,40.730156],"type":"Point"},"name":"Red House Asian Fusion"} +,{"_id":{"$oid":"55cba2476c522cafdb056a1b"},"location":{"coordinates":[-73.97256190000002,40.6091067],"type":"Point"},"name":"Xiang Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb056a1c"},"location":{"coordinates":[-73.8211283,40.7248447],"type":"Point"},"name":"Benjys Kosher Pizza \u0026 Dairy Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056a1d"},"location":{"coordinates":[-73.8647563,40.9023238],"type":"Point"},"name":"Homestyle Food Services (St. Barnabas High School)"} +,{"_id":{"$oid":"55cba2476c522cafdb056a1e"},"location":{"coordinates":[-73.9899583,40.6369011],"type":"Point"},"name":"Ice Cream Center \u0026 Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056a1f"},"location":{"coordinates":[-73.9762063,40.7815071],"type":"Point"},"name":"Gazala Place"} +,{"_id":{"$oid":"55cba2476c522cafdb056a20"},"location":{"coordinates":[-73.9242556,40.7616841],"type":"Point"},"name":"Bungalo"} +,{"_id":{"$oid":"55cba2476c522cafdb056a21"},"location":{"coordinates":[-73.9277649,40.81103],"type":"Point"},"name":"Balimaya Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056a22"},"location":{"coordinates":[-73.98138340000001,40.6051237],"type":"Point"},"name":"Agave Deli Grocery"} +,{"_id":{"$oid":"55cba2476c522cafdb056a23"},"location":{"coordinates":[-73.9551372,40.71729149999999],"type":"Point"},"name":"Brooklyn Winery"} +,{"_id":{"$oid":"55cba2476c522cafdb056a24"},"location":{"coordinates":[-73.950217,40.780451],"type":"Point"},"name":"San Matteo Pizza Espresso Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb056a25"},"location":{"coordinates":[-73.985086,40.5792042],"type":"Point"},"name":"Coney Island Gyro/A-Z Bbq"} +,{"_id":{"$oid":"55cba2476c522cafdb056a26"},"location":{"coordinates":[-73.9152591,40.7509854],"type":"Point"},"name":"Mi Bolivia Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056a27"},"location":{"coordinates":[-74.1326375,40.6119267],"type":"Point"},"name":"China King"} +,{"_id":{"$oid":"55cba2476c522cafdb056a28"},"location":{"coordinates":[-73.98013999999999,40.7271558],"type":"Point"},"name":"Blind Barber"} +,{"_id":{"$oid":"55cba2476c522cafdb056a29"},"location":{"coordinates":[-73.8311829,40.6997197],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb056a2a"},"location":{"coordinates":[-74.028864,40.622366],"type":"Point"},"name":"Omiya Sushi Japanese Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb056a2b"},"location":{"coordinates":[-73.7866681,40.7076139],"type":"Point"},"name":"Figura Saludable"} +,{"_id":{"$oid":"55cba2476c522cafdb056a2c"},"location":{"coordinates":[-73.9095445,40.8862015],"type":"Point"},"name":"Riverdale Second Helping"} +,{"_id":{"$oid":"55cba2476c522cafdb056a2d"},"location":{"coordinates":[-73.983139,40.759967],"type":"Point"},"name":"Toasties"} +,{"_id":{"$oid":"55cba2476c522cafdb056a2e"},"location":{"coordinates":[-74.023562,40.635335],"type":"Point"},"name":"Gulf Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056a2f"},"location":{"coordinates":[-73.98123129999999,40.7439152],"type":"Point"},"name":"Lallisse"} +,{"_id":{"$oid":"55cba2476c522cafdb056a30"},"location":{"coordinates":[-73.9392905,40.8164177],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb056a31"},"location":{"coordinates":[-73.76993039999999,40.7620398],"type":"Point"},"name":"Nono"} +,{"_id":{"$oid":"55cba2476c522cafdb056a32"},"location":{"coordinates":[-73.997789,40.721993],"type":"Point"},"name":"Morini Osteria Romagnola"} +,{"_id":{"$oid":"55cba2476c522cafdb056a33"},"location":{"coordinates":[-73.988827,40.72878],"type":"Point"},"name":"Pinkberry"} +,{"_id":{"$oid":"55cba2476c522cafdb056a34"},"location":{"coordinates":[-92.72942379999999,41.7461748],"type":"Point"},"name":"Pinkberry"} +,{"_id":{"$oid":"55cba2476c522cafdb056a35"},"location":{"coordinates":[-73.9414072,40.6754537],"type":"Point"},"name":"Eastern Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056a36"},"location":{"coordinates":[-73.9868695,40.7645331],"type":"Point"},"name":"Industry"} +,{"_id":{"$oid":"55cba2476c522cafdb056a37"},"location":{"coordinates":[-73.984235,40.728484],"type":"Point"},"name":"Sabor A Mexico Taqueria"} +,{"_id":{"$oid":"55cba2476c522cafdb056a38"},"location":{"coordinates":[-73.9515405,40.8092807],"type":"Point"},"name":"Aloft Harlem Wxyz Refuel"} +,{"_id":{"$oid":"55cba2476c522cafdb056a39"},"location":{"coordinates":[-73.952116,40.772618],"type":"Point"},"name":"V'Note"} +,{"_id":{"$oid":"55cba2476c522cafdb056a3a"},"location":{"coordinates":[-73.9986028,40.7284629],"type":"Point"},"name":"Bareburger"} +,{"_id":{"$oid":"55cba2476c522cafdb056a3b"},"location":{"coordinates":[-73.9776602,40.7253892],"type":"Point"},"name":"V-Nam Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056a3c"},"location":{"coordinates":[-73.884064,40.7472617],"type":"Point"},"name":"Popeye'S Chicken \u0026 Biscuits"} +,{"_id":{"$oid":"55cba2476c522cafdb056a3d"},"location":{"coordinates":[-73.948949,40.6343605],"type":"Point"},"name":"Bake \u0026 Things Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056a3e"},"location":{"coordinates":[-73.9847119,40.6627213],"type":"Point"},"name":"Kiku Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb056a3f"},"location":{"coordinates":[-73.8218187,40.7533775],"type":"Point"},"name":"Pop'S Coffee Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb056a40"},"location":{"coordinates":[-73.869945,40.7704394],"type":"Point"},"name":"World Bean"} +,{"_id":{"$oid":"55cba2476c522cafdb056a41"},"location":{"coordinates":[-73.8739659,40.7769271],"type":"Point"},"name":"Prime Tavern/Delta Terminal"} +,{"_id":{"$oid":"55cba2476c522cafdb056a42"},"location":{"coordinates":[-73.869945,40.7704394],"type":"Point"},"name":"World Market"} +,{"_id":{"$oid":"55cba2476c522cafdb056a43"},"location":{"coordinates":[-74.0048482,40.7411766],"type":"Point"},"name":"Le Pain Quotidien"} +,{"_id":{"$oid":"55cba2476c522cafdb056a44"},"location":{"coordinates":[-73.7864268,40.7397903],"type":"Point"},"name":"Five Guys Burgers \u0026 Fries"} +,{"_id":{"$oid":"55cba2476c522cafdb056a45"},"location":{"coordinates":[-73.9913291,40.7607245],"type":"Point"},"name":"City Sandwich"} +,{"_id":{"$oid":"55cba2476c522cafdb056a46"},"location":{"coordinates":[-73.9537862,40.6103548],"type":"Point"},"name":"Wah Lung Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056a47"},"location":{"coordinates":[-73.9958288,40.7165916],"type":"Point"},"name":"West New Malaysia Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056a48"},"location":{"coordinates":[-73.9863731,40.7472233],"type":"Point"},"name":"Paris Baguette"} +,{"_id":{"$oid":"55cba2476c522cafdb056a49"},"location":{"coordinates":[-73.994083,40.766184],"type":"Point"},"name":"American Retro Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb056a4a"},"location":{"coordinates":[-73.99117700000001,40.75533],"type":"Point"},"name":"Element New York"} +,{"_id":{"$oid":"55cba2476c522cafdb056a4b"},"location":{"coordinates":[-73.75644989999999,40.74808489999999],"type":"Point"},"name":"Saigon Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056a4c"},"location":{"coordinates":[-73.977295,40.7473699],"type":"Point"},"name":"Sarge'S"} +,{"_id":{"$oid":"55cba2476c522cafdb056a4d"},"location":{"coordinates":[-73.997199,40.7172569],"type":"Point"},"name":"Shanghai Cafe Deluxe"} +,{"_id":{"$oid":"55cba2476c522cafdb056a4e"},"location":{"coordinates":[-73.99638569999999,40.72209369999999],"type":"Point"},"name":"Vive La Crepe!"} +,{"_id":{"$oid":"55cba2476c522cafdb056a4f"},"location":{"coordinates":[-73.8882639,40.7469706],"type":"Point"},"name":"Los Chipotles"} +,{"_id":{"$oid":"55cba2476c522cafdb056a50"},"location":{"coordinates":[-73.9837555,40.7733125],"type":"Point"},"name":"Lincoln Ristorante"} +,{"_id":{"$oid":"55cba2476c522cafdb056a51"},"location":{"coordinates":[-73.9421249,40.6556943],"type":"Point"},"name":"Subway, Pizza \u0026 Burger Ur Way"} +,{"_id":{"$oid":"55cba2476c522cafdb056a52"},"location":{"coordinates":[-73.9986187,40.6761988],"type":"Point"},"name":"Court Street Grocers"} +,{"_id":{"$oid":"55cba2476c522cafdb056a53"},"location":{"coordinates":[-74.0008579,40.7174247],"type":"Point"},"name":"Lacoral"} +,{"_id":{"$oid":"55cba2476c522cafdb056a54"},"location":{"coordinates":[-73.90799100000001,40.695645],"type":"Point"},"name":"Luen Hop"} +,{"_id":{"$oid":"55cba2476c522cafdb056a55"},"location":{"coordinates":[-73.9494823,40.6806471],"type":"Point"},"name":"Checkers"} +,{"_id":{"$oid":"55cba2476c522cafdb056a56"},"location":{"coordinates":[-73.9508604,40.8111432],"type":"Point"},"name":"Manna'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056a57"},"location":{"coordinates":[-73.81076689999999,40.7644206],"type":"Point"},"name":"Coffee Tree"} +,{"_id":{"$oid":"55cba2476c522cafdb056a58"},"location":{"coordinates":[-73.8311667,40.7057193],"type":"Point"},"name":"New China Fresh Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056a59"},"location":{"coordinates":[-73.99191069999999,40.7652053],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb056a5a"},"location":{"coordinates":[-73.924339,40.8276619],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb056a5b"},"location":{"coordinates":[-73.8678998,40.74564290000001],"type":"Point"},"name":"The Little Chinantla Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056a5c"},"location":{"coordinates":[-73.86787,40.8583927],"type":"Point"},"name":"Steven Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056a5d"},"location":{"coordinates":[-74.0305443,40.6239384],"type":"Point"},"name":"Monaco'S"} +,{"_id":{"$oid":"55cba2476c522cafdb056a5e"},"location":{"coordinates":[-73.8350234,40.7073581],"type":"Point"},"name":"Lu Shan Golden Fountain Chinese Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb056a5f"},"location":{"coordinates":[-73.8366444,40.5799542],"type":"Point"},"name":"Rockaway Crown Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056a60"},"location":{"coordinates":[-73.9673646,40.7987416],"type":"Point"},"name":"Buca"} +,{"_id":{"$oid":"55cba2476c522cafdb056a61"},"location":{"coordinates":[-73.9787119,40.7237641],"type":"Point"},"name":"Edi \u0026 The Wolf"} +,{"_id":{"$oid":"55cba2476c522cafdb056a62"},"location":{"coordinates":[-91.5094433,44.9466802],"type":"Point"},"name":"Subway (Shopping Plaza)"} +,{"_id":{"$oid":"55cba2476c522cafdb056a63"},"location":{"coordinates":[-73.9558144,40.7733804],"type":"Point"},"name":"Our Place Cuisines Of China"} +,{"_id":{"$oid":"55cba2476c522cafdb056a64"},"location":{"coordinates":[-73.8235657,40.7759807],"type":"Point"},"name":"Parson'S Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb056a65"},"location":{"coordinates":[-73.97937,40.68330599999999],"type":"Point"},"name":"No Pork Halal Kitchen Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056a66"},"location":{"coordinates":[-73.7785569,40.7135961],"type":"Point"},"name":"Foo On Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056a67"},"location":{"coordinates":[-74.0071744,40.7163669],"type":"Point"},"name":"Birdbath Neighborhood Green Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb056a68"},"location":{"coordinates":[-73.89550009999999,40.8466571],"type":"Point"},"name":"Old Hong Kong"} +,{"_id":{"$oid":"55cba2476c522cafdb056a69"},"location":{"coordinates":[-73.9625223,40.7151295],"type":"Point"},"name":"Bad Burger"} +,{"_id":{"$oid":"55cba2476c522cafdb056a6a"},"location":{"coordinates":[-74.2437659,40.5097189],"type":"Point"},"name":"Mikey Bagels"} +,{"_id":{"$oid":"55cba2476c522cafdb056a6b"},"location":{"coordinates":[-73.950876,40.7859259],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb056a6c"},"location":{"coordinates":[-73.98617829999999,40.747445],"type":"Point"},"name":"Pinkberry"} +,{"_id":{"$oid":"55cba2476c522cafdb056a6d"},"location":{"coordinates":[-73.96616569999999,40.6296198],"type":"Point"},"name":"Mithaas"} +,{"_id":{"$oid":"55cba2476c522cafdb056a6e"},"location":{"coordinates":[-73.994648,40.722672],"type":"Point"},"name":"Oficina Latina"} +,{"_id":{"$oid":"55cba2476c522cafdb056a6f"},"location":{"coordinates":[-73.9565602,40.7212096],"type":"Point"},"name":"The Whiskey Brooklyn"} +,{"_id":{"$oid":"55cba2476c522cafdb056a70"},"location":{"coordinates":[-73.8305963,40.7594242],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb056a71"},"location":{"coordinates":[-73.8561356,40.7114853],"type":"Point"},"name":"Umi Japanese Restaurant Sushi Bar \u0026 Teriyaki Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb056a72"},"location":{"coordinates":[-73.79275849999999,40.71057220000001],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb056a73"},"location":{"coordinates":[-73.7623602,40.7201738],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb056a74"},"location":{"coordinates":[-73.95250159999999,40.5867824],"type":"Point"},"name":"Masakari Japanese Fusion"} +,{"_id":{"$oid":"55cba2476c522cafdb056a75"},"location":{"coordinates":[-73.9924003,40.73476730000001],"type":"Point"},"name":"Little Italy Pizza Iii"} +,{"_id":{"$oid":"55cba2476c522cafdb056a76"},"location":{"coordinates":[-73.9948435,40.7228476],"type":"Point"},"name":"Little Cupcake Bake Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb056a77"},"location":{"coordinates":[-73.9914088,40.5758789],"type":"Point"},"name":"East Far Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056a78"},"location":{"coordinates":[-73.9812517,40.6857978],"type":"Point"},"name":"Pardes Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056a79"},"location":{"coordinates":[-74.004802,40.718477],"type":"Point"},"name":"Da Mikele"} +,{"_id":{"$oid":"55cba2476c522cafdb056a7a"},"location":{"coordinates":[-73.97693199999999,40.672901],"type":"Point"},"name":"Da Nonna Rosa"} +,{"_id":{"$oid":"55cba2476c522cafdb056a7b"},"location":{"coordinates":[-73.73459799999999,40.7718142],"type":"Point"},"name":"Il Bacco Ristorante"} +,{"_id":{"$oid":"55cba2476c522cafdb056a7c"},"location":{"coordinates":[-73.8596012,40.8893995],"type":"Point"},"name":"Mango'S Restaurant \u0026 Catering"} +,{"_id":{"$oid":"55cba2476c522cafdb056a7d"},"location":{"coordinates":[-73.97088579999999,40.7924041],"type":"Point"},"name":"Screme Gelato Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb056a7e"},"location":{"coordinates":[-73.783948,40.71268209999999],"type":"Point"},"name":"Dunkin' Donuts/Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb056a7f"},"location":{"coordinates":[-73.9370664,40.75090600000001],"type":"Point"},"name":"Pasteles Capy"} +,{"_id":{"$oid":"55cba2476c522cafdb056a80"},"location":{"coordinates":[-73.9685872,40.7679509],"type":"Point"},"name":"Bar Italia"} +,{"_id":{"$oid":"55cba2476c522cafdb056a81"},"location":{"coordinates":[-73.9996658,40.7374357],"type":"Point"},"name":"Flex Mussels"} +,{"_id":{"$oid":"55cba2476c522cafdb056a82"},"location":{"coordinates":[-73.91442270000002,40.8332815],"type":"Point"},"name":"Marinell Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb056a83"},"location":{"coordinates":[-73.845016,40.679818],"type":"Point"},"name":"Cross Bay Deli \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb056a84"},"location":{"coordinates":[-73.9006926,40.8565557],"type":"Point"},"name":"La Penda Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056a85"},"location":{"coordinates":[-73.9212221,40.743806],"type":"Point"},"name":"Yum Yum Queens"} +,{"_id":{"$oid":"55cba2476c522cafdb056a86"},"location":{"coordinates":[-73.93361999999999,40.705351],"type":"Point"},"name":"The Swallow Cafe \u0026 Espresso Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb056a87"},"location":{"coordinates":[-73.95153789999999,40.7117798],"type":"Point"},"name":"The West Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056a88"},"location":{"coordinates":[-73.9822282,40.658657],"type":"Point"},"name":"Bedawi Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056a89"},"location":{"coordinates":[-73.8865556,40.7552815],"type":"Point"},"name":"East Star Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056a8a"},"location":{"coordinates":[-73.9769101,40.6874695],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb056a8b"},"location":{"coordinates":[-73.98763199999999,40.716492],"type":"Point"},"name":"La Flaca"} +,{"_id":{"$oid":"55cba2476c522cafdb056a8c"},"location":{"coordinates":[-74.1432402,40.6246431],"type":"Point"},"name":"China New Star"} +,{"_id":{"$oid":"55cba2476c522cafdb056a8d"},"location":{"coordinates":[-73.9990086,40.71531590000001],"type":"Point"},"name":"Cha Chan Tang"} +,{"_id":{"$oid":"55cba2476c522cafdb056a8e"},"location":{"coordinates":[-73.9983884,40.73570100000001],"type":"Point"},"name":"Kin Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb056a8f"},"location":{"coordinates":[-74.0066886,40.7088758],"type":"Point"},"name":"Chickpea"} +,{"_id":{"$oid":"55cba2476c522cafdb056a90"},"location":{"coordinates":[-74.01636049999999,40.7113097],"type":"Point"},"name":"Merchants River House"} +,{"_id":{"$oid":"55cba2476c522cafdb056a91"},"location":{"coordinates":[-73.9101759,40.88559],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb056a92"},"location":{"coordinates":[-73.936601,40.689441],"type":"Point"},"name":"Kam Wah Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056a93"},"location":{"coordinates":[-73.7166945,40.7353085],"type":"Point"},"name":"Surya Sweets \u0026 Snacks"} +,{"_id":{"$oid":"55cba2476c522cafdb056a94"},"location":{"coordinates":[-73.958368,40.7105643],"type":"Point"},"name":"Post Office"} +,{"_id":{"$oid":"55cba2476c522cafdb056a95"},"location":{"coordinates":[-73.9624474,40.7172774],"type":"Point"},"name":"The Shanti Shack"} +,{"_id":{"$oid":"55cba2476c522cafdb056a96"},"location":{"coordinates":[-73.9745645,40.6796383],"type":"Point"},"name":"Taro Sushi Ny Inc"} +,{"_id":{"$oid":"55cba2476c522cafdb056a97"},"location":{"coordinates":[-73.8829492,40.7500948],"type":"Point"},"name":"Arepas Pues Mixtas"} +,{"_id":{"$oid":"55cba2476c522cafdb056a98"},"location":{"coordinates":[-73.815794,40.762294],"type":"Point"},"name":"New York Cake Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb056a99"},"location":{"coordinates":[-73.98821579999999,40.7352666],"type":"Point"},"name":"The Cottage"} +,{"_id":{"$oid":"55cba2476c522cafdb056a9a"},"location":{"coordinates":[-74.02825659999999,40.6187862],"type":"Point"},"name":"Top 1 Sushi Wang"} +,{"_id":{"$oid":"55cba2476c522cafdb056a9b"},"location":{"coordinates":[-73.868916,40.684344],"type":"Point"},"name":"Fortalezcase Con Lo Mejor De La Naturaleza"} +,{"_id":{"$oid":"55cba2476c522cafdb056a9c"},"location":{"coordinates":[-74.0089239,40.706708],"type":"Point"},"name":"The Bailey"} +,{"_id":{"$oid":"55cba2476c522cafdb056a9d"},"location":{"coordinates":[-73.9564005,40.7168495],"type":"Point"},"name":"Crif Dogs"} +,{"_id":{"$oid":"55cba2476c522cafdb056a9e"},"location":{"coordinates":[-73.9219083,40.6192593],"type":"Point"},"name":"Palermo Pastry Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb056a9f"},"location":{"coordinates":[-73.7938984,40.7106715],"type":"Point"},"name":"Crown Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb056aa0"},"location":{"coordinates":[-73.98159849999999,40.7556601],"type":"Point"},"name":"New York Yacht Club"} +,{"_id":{"$oid":"55cba2476c522cafdb056aa1"},"location":{"coordinates":[-73.9945316,40.7243206],"type":"Point"},"name":"Mottsu"} +,{"_id":{"$oid":"55cba2476c522cafdb056aa2"},"location":{"coordinates":[-73.828375,40.685407],"type":"Point"},"name":"Mr. Zeng Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb056aa3"},"location":{"coordinates":[-92.72212309999999,41.7459915],"type":"Point"},"name":"Tim Hortons, Soup Man, Tasti D. Lite"} +,{"_id":{"$oid":"55cba2476c522cafdb056aa4"},"location":{"coordinates":[-73.916296,40.699801],"type":"Point"},"name":"Verde Coal Oven"} +,{"_id":{"$oid":"55cba2476c522cafdb056aa5"},"location":{"coordinates":[-73.9156265,40.6992749],"type":"Point"},"name":"Taqueria Izucar"} +,{"_id":{"$oid":"55cba2476c522cafdb056aa6"},"location":{"coordinates":[-73.999303,40.7396046],"type":"Point"},"name":"Legend Bar \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056aa7"},"location":{"coordinates":[-73.9910463,40.7364322],"type":"Point"},"name":"Union Square Catering Facility Ballroom"} +,{"_id":{"$oid":"55cba2476c522cafdb056aa8"},"location":{"coordinates":[-74.02638859999999,40.6354539],"type":"Point"},"name":"Bayridge Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb056aa9"},"location":{"coordinates":[-73.9452471,40.7072842],"type":"Point"},"name":"Nam Nam"} +,{"_id":{"$oid":"55cba2476c522cafdb056aaa"},"location":{"coordinates":[-73.98387559999999,40.72755739999999],"type":"Point"},"name":"Good Beer"} +,{"_id":{"$oid":"55cba2476c522cafdb056aab"},"location":{"coordinates":[-73.9335408,40.7543844],"type":"Point"},"name":"Good Taste Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056aac"},"location":{"coordinates":[-73.8944585,40.8237533],"type":"Point"},"name":"Las Divas Sports Bar-N-Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056aad"},"location":{"coordinates":[-73.8929148,40.8599335],"type":"Point"},"name":"Kasike Mofongo House"} +,{"_id":{"$oid":"55cba2476c522cafdb056aae"},"location":{"coordinates":[-73.96103889999999,40.6352854],"type":"Point"},"name":"Family Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb056aaf"},"location":{"coordinates":[-73.9719947,40.64610580000001],"type":"Point"},"name":"Golden China 8"} +,{"_id":{"$oid":"55cba2476c522cafdb056ab0"},"location":{"coordinates":[-74.000907,40.734752],"type":"Point"},"name":"Bell Book \u0026 Candle"} +,{"_id":{"$oid":"55cba2476c522cafdb056ab1"},"location":{"coordinates":[-73.990708,40.750403],"type":"Point"},"name":"Spinelli'S Pizza/Gyro Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb056ab2"},"location":{"coordinates":[-73.9974077,40.7178577],"type":"Point"},"name":"The Original Vincent'S Establish 1904"} +,{"_id":{"$oid":"55cba2476c522cafdb056ab3"},"location":{"coordinates":[-73.814993,40.76334],"type":"Point"},"name":"Gugongtan"} +,{"_id":{"$oid":"55cba2476c522cafdb056ab4"},"location":{"coordinates":[-73.9184276,40.6155741],"type":"Point"},"name":"China Wok"} +,{"_id":{"$oid":"55cba2476c522cafdb056ab5"},"location":{"coordinates":[-74.0108824,40.7191115],"type":"Point"},"name":"Josephine"} +,{"_id":{"$oid":"55cba2476c522cafdb056ab6"},"location":{"coordinates":[-73.930848,40.65343319999999],"type":"Point"},"name":"Popeyes Chicken \u0026 Biscuits"} +,{"_id":{"$oid":"55cba2476c522cafdb056ab7"},"location":{"coordinates":[-73.822915,40.686426],"type":"Point"},"name":"Checkers"} +,{"_id":{"$oid":"55cba2476c522cafdb056ab8"},"location":{"coordinates":[-74.0307129,40.6158217],"type":"Point"},"name":"Shobu Sushi \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb056ab9"},"location":{"coordinates":[-74.1197654,40.63424699999999],"type":"Point"},"name":"May Flower No.1 Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056aba"},"location":{"coordinates":[-73.887249,40.8551885],"type":"Point"},"name":"De Lillo Pastry Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb056abb"},"location":{"coordinates":[-73.99837,40.716313],"type":"Point"},"name":"456 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056abc"},"location":{"coordinates":[-73.992114,40.763727],"type":"Point"},"name":"On The Rocks"} +,{"_id":{"$oid":"55cba2476c522cafdb056abd"},"location":{"coordinates":[-73.984262,40.750245],"type":"Point"},"name":"Fork \u0026 Spoon"} +,{"_id":{"$oid":"55cba2476c522cafdb056abe"},"location":{"coordinates":[-73.89532050000001,40.700715],"type":"Point"},"name":"Chiquita'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056abf"},"location":{"coordinates":[-73.9775834,40.6437846],"type":"Point"},"name":"Wing Hua Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb056ac0"},"location":{"coordinates":[-73.9826897,40.7401525],"type":"Point"},"name":"Jimmy'S House Chinese Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb056ac1"},"location":{"coordinates":[-73.9758253,40.6514352],"type":"Point"},"name":"Brooklyn Commune"} +,{"_id":{"$oid":"55cba2476c522cafdb056ac2"},"location":{"coordinates":[-73.9336715,40.59656390000001],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb056ac3"},"location":{"coordinates":[-73.8593133,40.7317364],"type":"Point"},"name":"Bagelette"} +,{"_id":{"$oid":"55cba2476c522cafdb056ac4"},"location":{"coordinates":[-73.8792776,40.7367625],"type":"Point"},"name":"Sunshine Bakery \u0026 Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056ac5"},"location":{"coordinates":[-73.9192774,40.8644476],"type":"Point"},"name":"Euros El Tina Restaurant Lounge And Billiards"} +,{"_id":{"$oid":"55cba2476c522cafdb056ac6"},"location":{"coordinates":[-73.8491452,40.7328907],"type":"Point"},"name":"Taco King"} +,{"_id":{"$oid":"55cba2476c522cafdb056ac7"},"location":{"coordinates":[-74.004576,40.72871],"type":"Point"},"name":"Brooklyneer"} +,{"_id":{"$oid":"55cba2476c522cafdb056ac8"},"location":{"coordinates":[-73.9802401,40.7352937],"type":"Point"},"name":"Bangkok 2 Thai"} +,{"_id":{"$oid":"55cba2476c522cafdb056ac9"},"location":{"coordinates":[-73.950486,40.672685],"type":"Point"},"name":"Joy \u0026 Snook Restaurant And Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb056aca"},"location":{"coordinates":[-73.9858807,40.7264521],"type":"Point"},"name":"Coal Yard Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb056acb"},"location":{"coordinates":[-73.98490699999999,40.756625],"type":"Point"},"name":"Osteria Al Dodge"} +,{"_id":{"$oid":"55cba2476c522cafdb056acc"},"location":{"coordinates":[-73.9977215,40.7213595],"type":"Point"},"name":"Lair"} +,{"_id":{"$oid":"55cba2476c522cafdb056acd"},"location":{"coordinates":[-73.74279489999999,40.6769666],"type":"Point"},"name":"Silver Krust West Indian Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056ace"},"location":{"coordinates":[-73.95127939999999,40.7106406],"type":"Point"},"name":"Sabor Latino"} +,{"_id":{"$oid":"55cba2476c522cafdb056acf"},"location":{"coordinates":[-73.920406,40.7137057],"type":"Point"},"name":"Rojas Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb056ad0"},"location":{"coordinates":[-73.939521,40.798165],"type":"Point"},"name":"Tortas Don Pacos"} +,{"_id":{"$oid":"55cba2476c522cafdb056ad1"},"location":{"coordinates":[-73.98929799999999,40.725716],"type":"Point"},"name":"Black Ant"} +,{"_id":{"$oid":"55cba2476c522cafdb056ad2"},"location":{"coordinates":[-73.9712476,40.69164139999999],"type":"Point"},"name":"Wtf Coffee \u0026 Tea"} +,{"_id":{"$oid":"55cba2476c522cafdb056ad3"},"location":{"coordinates":[-74.20658449999999,40.54289199999999],"type":"Point"},"name":"La Dolce Pastry Shoppe"} +,{"_id":{"$oid":"55cba2476c522cafdb056ad4"},"location":{"coordinates":[-73.977887,40.7602918],"type":"Point"},"name":"Empire Steak House"} +,{"_id":{"$oid":"55cba2476c522cafdb056ad5"},"location":{"coordinates":[-73.9763382,40.6872623],"type":"Point"},"name":"National"} +,{"_id":{"$oid":"55cba2476c522cafdb056ad6"},"location":{"coordinates":[-73.9803742,40.7432572],"type":"Point"},"name":"Soi 30 Thai"} +,{"_id":{"$oid":"55cba2476c522cafdb056ad7"},"location":{"coordinates":[-73.8727857,40.8785991],"type":"Point"},"name":"El Encuentro Restaurant Bar \u0026 Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb056ad8"},"location":{"coordinates":[-73.96151449999999,40.7190761],"type":"Point"},"name":"Cubana Social"} +,{"_id":{"$oid":"55cba2476c522cafdb056ad9"},"location":{"coordinates":[-74.1616662,40.5455581],"type":"Point"},"name":"Frank \u0026 Danny'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb056ada"},"location":{"coordinates":[-73.8052915,40.7211216],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb056adb"},"location":{"coordinates":[-73.95594439999999,40.78438269999999],"type":"Point"},"name":"Marco Polo Pizza \u0026 Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb056adc"},"location":{"coordinates":[-73.9277388,40.8607496],"type":"Point"},"name":"Mama Italian Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056add"},"location":{"coordinates":[-73.9353977,40.6972074],"type":"Point"},"name":"Loma Restaurant Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb056ade"},"location":{"coordinates":[-73.9890191,40.7592884],"type":"Point"},"name":"Al Hirschfeld Theatre"} +,{"_id":{"$oid":"55cba2476c522cafdb056adf"},"location":{"coordinates":[-73.9856673,40.760724],"type":"Point"},"name":"Walter Kerr Theatre"} +,{"_id":{"$oid":"55cba2476c522cafdb056ae0"},"location":{"coordinates":[-73.988142,40.75798899999999],"type":"Point"},"name":"St James Theatre"} +,{"_id":{"$oid":"55cba2476c522cafdb056ae1"},"location":{"coordinates":[-73.9842548,40.76325320000001],"type":"Point"},"name":"August Wilson Theatre"} +,{"_id":{"$oid":"55cba2476c522cafdb056ae2"},"location":{"coordinates":[-73.985756,40.761075],"type":"Point"},"name":"Eugene O'Neill Theatre"} +,{"_id":{"$oid":"55cba2476c522cafdb056ae3"},"location":{"coordinates":[-73.905101,40.8125266],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb056ae4"},"location":{"coordinates":[-73.9787218,40.5961505],"type":"Point"},"name":"Avenue U Eagle Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb056ae5"},"location":{"coordinates":[-74.12969559999999,40.6264746],"type":"Point"},"name":"Call It A Wrap"} +,{"_id":{"$oid":"55cba2476c522cafdb056ae6"},"location":{"coordinates":[-73.9838774,40.7290242],"type":"Point"},"name":"Nai Tapas Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb056ae7"},"location":{"coordinates":[-73.9212247,40.7410136],"type":"Point"},"name":"Greenpoint Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb056ae8"},"location":{"coordinates":[-73.9093791,40.8248661],"type":"Point"},"name":"Popeyes Chicken \u0026 Biscuits"} +,{"_id":{"$oid":"55cba2476c522cafdb056ae9"},"location":{"coordinates":[-74.0288079,40.62960229999999],"type":"Point"},"name":"Zeke'S"} +,{"_id":{"$oid":"55cba2476c522cafdb056aea"},"location":{"coordinates":[-73.92322999999999,40.8176964],"type":"Point"},"name":"Blimpie"} +,{"_id":{"$oid":"55cba2476c522cafdb056aeb"},"location":{"coordinates":[-73.9829479,40.73032],"type":"Point"},"name":"Papa John'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056aec"},"location":{"coordinates":[-73.99673299999999,40.613036],"type":"Point"},"name":"Tong Xing Chinese Restaurant \u0026 New Taco Mexican"} +,{"_id":{"$oid":"55cba2476c522cafdb056aed"},"location":{"coordinates":[-73.913935,40.685176],"type":"Point"},"name":"Angie'S Breakfast Spot"} +,{"_id":{"$oid":"55cba2476c522cafdb056aee"},"location":{"coordinates":[-73.903469,40.747084],"type":"Point"},"name":"Herbal Life/Salud Es Vida"} +,{"_id":{"$oid":"55cba2476c522cafdb056aef"},"location":{"coordinates":[-74.00150769999999,40.7407636],"type":"Point"},"name":"Empire Cake"} +,{"_id":{"$oid":"55cba2476c522cafdb056af0"},"location":{"coordinates":[-73.95183449999999,40.7252414],"type":"Point"},"name":"Manhattan 3 Decker Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056af1"},"location":{"coordinates":[-73.963596,40.64902499999999],"type":"Point"},"name":"Coco Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056af2"},"location":{"coordinates":[-73.94185019999999,40.6709565],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb056af3"},"location":{"coordinates":[-73.9310357,40.6552019],"type":"Point"},"name":"Danny'S Tasty Tips"} +,{"_id":{"$oid":"55cba2476c522cafdb056af4"},"location":{"coordinates":[-73.9894358,40.7573471],"type":"Point"},"name":"Auntie Annes"} +,{"_id":{"$oid":"55cba2476c522cafdb056af5"},"location":{"coordinates":[-73.9466958,40.5840221],"type":"Point"},"name":"Passage"} +,{"_id":{"$oid":"55cba2476c522cafdb056af6"},"location":{"coordinates":[-73.9961989,40.7227428],"type":"Point"},"name":"Rubirosa Pizza \u0026 Ristorante"} +,{"_id":{"$oid":"55cba2476c522cafdb056af7"},"location":{"coordinates":[-73.960116,40.761647],"type":"Point"},"name":"Marche Du Sud"} +,{"_id":{"$oid":"55cba2476c522cafdb056af8"},"location":{"coordinates":[-74.0028201,40.685319],"type":"Point"},"name":"Miknic Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb056af9"},"location":{"coordinates":[-73.8675191,40.8476687],"type":"Point"},"name":"Istanbul Cafe Of White Plains"} +,{"_id":{"$oid":"55cba2476c522cafdb056afa"},"location":{"coordinates":[-73.9999631,40.64449339999999],"type":"Point"},"name":"Great Taste Dumpling"} +,{"_id":{"$oid":"55cba2476c522cafdb056afb"},"location":{"coordinates":[-73.96878889999999,40.7554855],"type":"Point"},"name":"Sushi You"} +,{"_id":{"$oid":"55cba2476c522cafdb056afc"},"location":{"coordinates":[-73.8821171,40.7414711],"type":"Point"},"name":"Taste Good Malaysian Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb056afd"},"location":{"coordinates":[-73.98502309999999,40.73940169999999],"type":"Point"},"name":"Mike'S Papaya"} +,{"_id":{"$oid":"55cba2476c522cafdb056afe"},"location":{"coordinates":[-73.9167525,40.6264534],"type":"Point"},"name":"Courtney'S Rotisserie \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb056aff"},"location":{"coordinates":[-73.91827769999999,40.762149],"type":"Point"},"name":"Jj S Asian Fusion"} +,{"_id":{"$oid":"55cba2476c522cafdb056b00"},"location":{"coordinates":[-74.001981,40.739202],"type":"Point"},"name":"Up And Down"} +,{"_id":{"$oid":"55cba2476c522cafdb056b01"},"location":{"coordinates":[-73.8708453,40.7265352],"type":"Point"},"name":"Nicole Kelly Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb056b02"},"location":{"coordinates":[-73.9503197,40.7766359],"type":"Point"},"name":"Luna Rossa"} +,{"_id":{"$oid":"55cba2476c522cafdb056b03"},"location":{"coordinates":[-73.79122920000002,40.673225],"type":"Point"},"name":"Great Wall Chinese Food"} +,{"_id":{"$oid":"55cba2476c522cafdb056b04"},"location":{"coordinates":[-73.9887298,40.702338],"type":"Point"},"name":"La Bagel Delight"} +,{"_id":{"$oid":"55cba2476c522cafdb056b05"},"location":{"coordinates":[-73.9485223,40.6340948],"type":"Point"},"name":"Exquisite Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056b06"},"location":{"coordinates":[-73.9294953,40.6187619],"type":"Point"},"name":"Carvel"} +,{"_id":{"$oid":"55cba2476c522cafdb056b07"},"location":{"coordinates":[-73.90394069999999,40.7456561],"type":"Point"},"name":"Colombia Fama Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb056b08"},"location":{"coordinates":[-73.8812963,40.7423216],"type":"Point"},"name":"Mei Wei Kitchen Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056b09"},"location":{"coordinates":[-73.9880941,40.7456687],"type":"Point"},"name":"John Dory Oyster Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb056b0a"},"location":{"coordinates":[-73.9790904,40.6882108],"type":"Point"},"name":"Brooklyn Academy Of Music-Harvey"} +,{"_id":{"$oid":"55cba2476c522cafdb056b0b"},"location":{"coordinates":[-73.9191901,40.7045395],"type":"Point"},"name":"Sal'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb056b0c"},"location":{"coordinates":[-73.939145,40.8213757],"type":"Point"},"name":"Ho Lee Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056b0d"},"location":{"coordinates":[-73.9428837,40.7007925],"type":"Point"},"name":"Subway/Texas Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb056b0e"},"location":{"coordinates":[-73.989166,40.729513],"type":"Point"},"name":"Porsena"} +,{"_id":{"$oid":"55cba2476c522cafdb056b0f"},"location":{"coordinates":[-74.0029177,40.6833756],"type":"Point"},"name":"Elegantly Iced"} +,{"_id":{"$oid":"55cba2476c522cafdb056b10"},"location":{"coordinates":[-73.9895836,40.7582251],"type":"Point"},"name":"99 Cent Express Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056b11"},"location":{"coordinates":[-73.9528761,40.6947534],"type":"Point"},"name":"Brooklyn Stoops"} +,{"_id":{"$oid":"55cba2476c522cafdb056b12"},"location":{"coordinates":[-73.95138779999999,40.7738218],"type":"Point"},"name":"Emack \u0026 Bolios"} +,{"_id":{"$oid":"55cba2476c522cafdb056b13"},"location":{"coordinates":[-73.998344,40.75458649999999],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb056b14"},"location":{"coordinates":[-73.8986542,40.8592222],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb056b15"},"location":{"coordinates":[-74.066091,40.614366],"type":"Point"},"name":"Bay Street Luncheonette \u0026 Soda Fountain"} +,{"_id":{"$oid":"55cba2476c522cafdb056b16"},"location":{"coordinates":[-73.95526699999999,40.63977999999999],"type":"Point"},"name":"Ultimate Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb056b17"},"location":{"coordinates":[-74.0114475,40.678826],"type":"Point"},"name":"Mark'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb056b18"},"location":{"coordinates":[-73.9806069,40.7297354],"type":"Point"},"name":"Percy'S Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb056b19"},"location":{"coordinates":[-73.8011093,40.8092017],"type":"Point"},"name":"Mcmurray Hall"} +,{"_id":{"$oid":"55cba2476c522cafdb056b1a"},"location":{"coordinates":[-73.8011093,40.8092017],"type":"Point"},"name":"The Library/Outtakes Quick Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb056b1b"},"location":{"coordinates":[-73.8011093,40.8092017],"type":"Point"},"name":"The Suny Maritime U. Vanderclute"} +,{"_id":{"$oid":"55cba2476c522cafdb056b1c"},"location":{"coordinates":[-73.8604675,40.8656336],"type":"Point"},"name":"Papi Nice Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb056b1d"},"location":{"coordinates":[-73.952513,40.7253155],"type":"Point"},"name":"Brooklyn Mac"} +,{"_id":{"$oid":"55cba2476c522cafdb056b1e"},"location":{"coordinates":[-73.7675187,40.7557425],"type":"Point"},"name":"Chimac"} +,{"_id":{"$oid":"55cba2476c522cafdb056b1f"},"location":{"coordinates":[-73.7507296,40.6029747],"type":"Point"},"name":"Taco Y Mas"} +,{"_id":{"$oid":"55cba2476c522cafdb056b20"},"location":{"coordinates":[-73.979748,40.781195],"type":"Point"},"name":"Wok City"} +,{"_id":{"$oid":"55cba2476c522cafdb056b21"},"location":{"coordinates":[-74.0182798,40.70592449999999],"type":"Point"},"name":"Village Crown"} +,{"_id":{"$oid":"55cba2476c522cafdb056b22"},"location":{"coordinates":[-73.9640797,40.679383],"type":"Point"},"name":"The Way Station"} +,{"_id":{"$oid":"55cba2476c522cafdb056b23"},"location":{"coordinates":[-73.92258,40.760388],"type":"Point"},"name":"3E Taste Of Thai"} +,{"_id":{"$oid":"55cba2476c522cafdb056b24"},"location":{"coordinates":[-73.964812,40.8073834],"type":"Point"},"name":"Unicafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056b25"},"location":{"coordinates":[-73.8492332,40.8904927],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb056b26"},"location":{"coordinates":[-73.99180299999999,40.755035],"type":"Point"},"name":"Village 38"} +,{"_id":{"$oid":"55cba2476c522cafdb056b27"},"location":{"coordinates":[-73.934456,40.802484],"type":"Point"},"name":"Little Sicily Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056b28"},"location":{"coordinates":[-73.956931,40.598517],"type":"Point"},"name":"Golden Z Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056b29"},"location":{"coordinates":[-73.9096763,40.8118783],"type":"Point"},"name":"Mexicosina"} +,{"_id":{"$oid":"55cba2476c522cafdb056b2a"},"location":{"coordinates":[-73.9654539,40.766368],"type":"Point"},"name":"Pastafina"} +,{"_id":{"$oid":"55cba2476c522cafdb056b2b"},"location":{"coordinates":[-73.977874,40.78422399999999],"type":"Point"},"name":"Luke'S Lobster"} +,{"_id":{"$oid":"55cba2476c522cafdb056b2c"},"location":{"coordinates":[-73.9836794,40.7611444],"type":"Point"},"name":"Majestic Delicatessen Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056b2d"},"location":{"coordinates":[-73.9102178,40.6969072],"type":"Point"},"name":"Chang Hong"} +,{"_id":{"$oid":"55cba2476c522cafdb056b2e"},"location":{"coordinates":[-74.0102115,40.713174],"type":"Point"},"name":"Eliezer Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb056b2f"},"location":{"coordinates":[-73.954382,40.729841],"type":"Point"},"name":"La Pizza \u0026 Convenience"} +,{"_id":{"$oid":"55cba2476c522cafdb056b30"},"location":{"coordinates":[-74.11400429999999,40.629185],"type":"Point"},"name":"Pronto Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056b31"},"location":{"coordinates":[-73.970623,40.7592511],"type":"Point"},"name":"Glaze Teriyaki Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb056b32"},"location":{"coordinates":[-73.980715,40.758128],"type":"Point"},"name":"Pronto Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056b33"},"location":{"coordinates":[-73.99171059999999,40.6904429],"type":"Point"},"name":"Tio Pio"} +,{"_id":{"$oid":"55cba2476c522cafdb056b34"},"location":{"coordinates":[-73.993674,40.7332505],"type":"Point"},"name":"Jackson Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb056b35"},"location":{"coordinates":[-73.9203526,40.8407868],"type":"Point"},"name":"Nueva Vida"} +,{"_id":{"$oid":"55cba2476c522cafdb056b36"},"location":{"coordinates":[-73.708831,40.73748399999999],"type":"Point"},"name":"Afghan Kebob House"} +,{"_id":{"$oid":"55cba2476c522cafdb056b37"},"location":{"coordinates":[-73.9685226,40.75537060000001],"type":"Point"},"name":"Pescatore"} +,{"_id":{"$oid":"55cba2476c522cafdb056b38"},"location":{"coordinates":[-73.8929272,40.7491884],"type":"Point"},"name":"Dosa Delight"} +,{"_id":{"$oid":"55cba2476c522cafdb056b39"},"location":{"coordinates":[-73.9839142,40.5876526],"type":"Point"},"name":"Harway Foods Inc."} +,{"_id":{"$oid":"55cba2476c522cafdb056b3a"},"location":{"coordinates":[-73.88330289999999,40.881147],"type":"Point"},"name":"Sam Ho Takeout Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056b3b"},"location":{"coordinates":[-73.9925703,40.6242771],"type":"Point"},"name":"Anita'S Luncheonette"} +,{"_id":{"$oid":"55cba2476c522cafdb056b3c"},"location":{"coordinates":[-73.9967056,40.7430866],"type":"Point"},"name":"Eolo"} +,{"_id":{"$oid":"55cba2476c522cafdb056b3d"},"location":{"coordinates":[-73.9988383,40.7179061],"type":"Point"},"name":"New Kam Hing"} +,{"_id":{"$oid":"55cba2476c522cafdb056b3e"},"location":{"coordinates":[-73.8342691,40.8378233],"type":"Point"},"name":"Havana Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056b3f"},"location":{"coordinates":[-73.905278,40.7130859],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb056b40"},"location":{"coordinates":[-73.8468542,40.6815073],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb056b41"},"location":{"coordinates":[-73.9842101,40.609979],"type":"Point"},"name":"Cafe Two Way"} +,{"_id":{"$oid":"55cba2476c522cafdb056b42"},"location":{"coordinates":[-73.9240485,40.6637877],"type":"Point"},"name":"China Moon Chinese Restaurant Llc"} +,{"_id":{"$oid":"55cba2476c522cafdb056b43"},"location":{"coordinates":[-73.9616048,40.6080401],"type":"Point"},"name":"Chikurin"} +,{"_id":{"$oid":"55cba2476c522cafdb056b44"},"location":{"coordinates":[-73.943755,40.7121333],"type":"Point"},"name":"Tuffet"} +,{"_id":{"$oid":"55cba2476c522cafdb056b45"},"location":{"coordinates":[-73.7864065,40.7394018],"type":"Point"},"name":"Qdoba Mexican Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb056b46"},"location":{"coordinates":[-73.8052915,40.7211216],"type":"Point"},"name":"New Tokyo Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb056b47"},"location":{"coordinates":[-73.96099319999999,40.5920209],"type":"Point"},"name":"Mr. Tang"} +,{"_id":{"$oid":"55cba2476c522cafdb056b48"},"location":{"coordinates":[-73.910003,40.768465],"type":"Point"},"name":"Bellizzi'S Broadway Catering"} +,{"_id":{"$oid":"55cba2476c522cafdb056b49"},"location":{"coordinates":[-73.962245,40.717208],"type":"Point"},"name":"Brooklyn Oenology"} +,{"_id":{"$oid":"55cba2476c522cafdb056b4a"},"location":{"coordinates":[-73.99452649999999,40.7174514],"type":"Point"},"name":"83 Kien Tuong Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056b4b"},"location":{"coordinates":[-73.92286299999999,40.767289],"type":"Point"},"name":"Salerno Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056b4c"},"location":{"coordinates":[-73.768428,40.75931300000001],"type":"Point"},"name":"Bon Chon"} +,{"_id":{"$oid":"55cba2476c522cafdb056b4d"},"location":{"coordinates":[-73.95455299999999,40.688148],"type":"Point"},"name":"Bombay Heights"} +,{"_id":{"$oid":"55cba2476c522cafdb056b4e"},"location":{"coordinates":[-73.9529517,40.7233836],"type":"Point"},"name":"Spritzenhaus"} +,{"_id":{"$oid":"55cba2476c522cafdb056b4f"},"location":{"coordinates":[-73.846696,40.830454],"type":"Point"},"name":"Take Away Cafe In Rebecca Rehab Center"} +,{"_id":{"$oid":"55cba2476c522cafdb056b50"},"location":{"coordinates":[-73.9815058,40.7762217],"type":"Point"},"name":"Andanada"} +,{"_id":{"$oid":"55cba2476c522cafdb056b51"},"location":{"coordinates":[-73.8554995,40.8552261],"type":"Point"},"name":"Liberty Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb056b52"},"location":{"coordinates":[-73.9624664,40.7666592],"type":"Point"},"name":"Chipotle Mexican Grill #1394"} +,{"_id":{"$oid":"55cba2476c522cafdb056b53"},"location":{"coordinates":[-73.99230639999999,40.7482611],"type":"Point"},"name":"Lz Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb056b54"},"location":{"coordinates":[-73.9340692,40.7983575],"type":"Point"},"name":"Xiang Dragon Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056b55"},"location":{"coordinates":[-73.97229949999999,40.7637256],"type":"Point"},"name":"Fao Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056b56"},"location":{"coordinates":[-73.9558709,40.7250737],"type":"Point"},"name":"The Halcyon Gourmet Llc"} +,{"_id":{"$oid":"55cba2476c522cafdb056b57"},"location":{"coordinates":[-73.9915018,40.7233295],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb056b58"},"location":{"coordinates":[-73.9661796,40.6835311],"type":"Point"},"name":"Hanson Dry"} +,{"_id":{"$oid":"55cba2476c522cafdb056b59"},"location":{"coordinates":[-92.72939389999999,41.7461748],"type":"Point"},"name":"Slice \u0026 Co. Brick Oven Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056b5a"},"location":{"coordinates":[-73.9090125,40.7745992],"type":"Point"},"name":"Okeanos Greek Seafood"} +,{"_id":{"$oid":"55cba2476c522cafdb056b5b"},"location":{"coordinates":[-73.9738922,40.7470934],"type":"Point"},"name":"Bravest"} +,{"_id":{"$oid":"55cba2476c522cafdb056b5c"},"location":{"coordinates":[-74.13701809999999,40.611873],"type":"Point"},"name":"Kings Pizzeria \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056b5d"},"location":{"coordinates":[-73.935255,40.716826],"type":"Point"},"name":"Cedillos \u0026 Friends"} +,{"_id":{"$oid":"55cba2476c522cafdb056b5e"},"location":{"coordinates":[-73.8744639,40.8793718],"type":"Point"},"name":"Joseph'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056b5f"},"location":{"coordinates":[-74.00075000000001,40.729995],"type":"Point"},"name":"Artichoke Basille'S Pizza \u0026 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb056b60"},"location":{"coordinates":[-73.9943514,40.6378436],"type":"Point"},"name":"Nu Cafe 47"} +,{"_id":{"$oid":"55cba2476c522cafdb056b61"},"location":{"coordinates":[-74.00049200000001,40.729617],"type":"Point"},"name":"Saigon Shack"} +,{"_id":{"$oid":"55cba2476c522cafdb056b62"},"location":{"coordinates":[-73.9904667,40.7557058],"type":"Point"},"name":"Piccolo Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056b63"},"location":{"coordinates":[-74.2386125,40.5232064],"type":"Point"},"name":"Liquid Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb056b64"},"location":{"coordinates":[-73.9872029,40.75766660000001],"type":"Point"},"name":"Bowlmor Lane"} +,{"_id":{"$oid":"55cba2476c522cafdb056b65"},"location":{"coordinates":[-73.948956,40.781167],"type":"Point"},"name":"K Falafel House"} +,{"_id":{"$oid":"55cba2476c522cafdb056b66"},"location":{"coordinates":[-82.4882124,29.6892436],"type":"Point"},"name":"Mulan Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056b67"},"location":{"coordinates":[-73.8414835,40.8409501],"type":"Point"},"name":"Estrellita Poblana Iv"} +,{"_id":{"$oid":"55cba2476c522cafdb056b68"},"location":{"coordinates":[-73.94293979999999,40.7943967],"type":"Point"},"name":"Pee Dee Steak"} +,{"_id":{"$oid":"55cba2476c522cafdb056b69"},"location":{"coordinates":[-73.972043,40.590571],"type":"Point"},"name":"Hunan Cottage"} +,{"_id":{"$oid":"55cba2476c522cafdb056b6a"},"location":{"coordinates":[-73.93011659999999,40.8219403],"type":"Point"},"name":"Applebee'S Neighborhood Grill \u0026 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb056b6b"},"location":{"coordinates":[-73.9382617,40.7216748],"type":"Point"},"name":"Hungry Burrito"} +,{"_id":{"$oid":"55cba2476c522cafdb056b6c"},"location":{"coordinates":[-73.9825943,40.7645977],"type":"Point"},"name":"99 Cent Fresh Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056b6d"},"location":{"coordinates":[-73.9930335,40.6649652],"type":"Point"},"name":"Pauline And Sharon'S"} +,{"_id":{"$oid":"55cba2476c522cafdb056b6e"},"location":{"coordinates":[-119.6684796,36.3280082],"type":"Point"},"name":"Everything Yogurt/Gretel'S Pretzels"} +,{"_id":{"$oid":"55cba2476c522cafdb056b6f"},"location":{"coordinates":[-73.93032130000002,40.8193837],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb056b70"},"location":{"coordinates":[-73.965295,40.758819],"type":"Point"},"name":"Hamilton"} +,{"_id":{"$oid":"55cba2476c522cafdb056b71"},"location":{"coordinates":[-73.9170321,40.6214814],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb056b72"},"location":{"coordinates":[-73.829342,40.7570059],"type":"Point"},"name":"Chestnuts King"} +,{"_id":{"$oid":"55cba2476c522cafdb056b73"},"location":{"coordinates":[-73.9176225,40.7610115],"type":"Point"},"name":"Wingstop W0535"} +,{"_id":{"$oid":"55cba2476c522cafdb056b74"},"location":{"coordinates":[-73.8990757,40.70945649999999],"type":"Point"},"name":"Energy Fuel"} +,{"_id":{"$oid":"55cba2476c522cafdb056b75"},"location":{"coordinates":[-74.00536090000001,40.708721],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb056b76"},"location":{"coordinates":[-73.8302081,40.7608139],"type":"Point"},"name":"Foo Kee Seafood Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056b77"},"location":{"coordinates":[-74.0070861,40.7067469],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb056b78"},"location":{"coordinates":[-73.9688863,40.7548515],"type":"Point"},"name":"La Cava"} +,{"_id":{"$oid":"55cba2476c522cafdb056b79"},"location":{"coordinates":[-73.9152926,40.6859154],"type":"Point"},"name":"Loma Coffee Shop Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb056b7a"},"location":{"coordinates":[-73.9938548,40.76659220000001],"type":"Point"},"name":"La Boite"} +,{"_id":{"$oid":"55cba2476c522cafdb056b7b"},"location":{"coordinates":[-73.90299759999999,40.8781032],"type":"Point"},"name":"Picante Picante Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056b7c"},"location":{"coordinates":[-73.8735904,40.750719],"type":"Point"},"name":"Las Americas Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb056b7d"},"location":{"coordinates":[-74.0058007,40.7275205],"type":"Point"},"name":"Courtyard Marriott/Table 181 Soho"} +,{"_id":{"$oid":"55cba2476c522cafdb056b7e"},"location":{"coordinates":[-73.95879479999999,40.6775568],"type":"Point"},"name":"Pasha Pizza Pita Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb056b7f"},"location":{"coordinates":[-73.8799033,40.7480784],"type":"Point"},"name":"Coatzingo Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056b80"},"location":{"coordinates":[-73.992879,40.7467744],"type":"Point"},"name":"H I T Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb056b81"},"location":{"coordinates":[-73.82807930000001,40.87791250000001],"type":"Point"},"name":"Townhouse Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056b82"},"location":{"coordinates":[-73.8590848,40.7108699],"type":"Point"},"name":"Bob'S Discount Furniture"} +,{"_id":{"$oid":"55cba2476c522cafdb056b83"},"location":{"coordinates":[-73.99285119999999,40.7335041],"type":"Point"},"name":"Saigon Market"} +,{"_id":{"$oid":"55cba2476c522cafdb056b84"},"location":{"coordinates":[-73.99199899999999,40.726952],"type":"Point"},"name":"Kings Cross"} +,{"_id":{"$oid":"55cba2476c522cafdb056b85"},"location":{"coordinates":[-73.82687899999999,40.676335],"type":"Point"},"name":"Fresh To You Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056b86"},"location":{"coordinates":[-73.7894508,40.73957670000001],"type":"Point"},"name":"Tokyo Hibachi Steak House \u0026 Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb056b87"},"location":{"coordinates":[-73.979362,40.65438],"type":"Point"},"name":"Terrace Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb056b88"},"location":{"coordinates":[-73.9679204,40.7573041],"type":"Point"},"name":"Radicchio"} +,{"_id":{"$oid":"55cba2476c522cafdb056b89"},"location":{"coordinates":[-74.00607289999999,40.6385827],"type":"Point"},"name":"Fu Mun Lou"} +,{"_id":{"$oid":"55cba2476c522cafdb056b8a"},"location":{"coordinates":[-74.004693,40.650111],"type":"Point"},"name":"La Flor De Izucar Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb056b8b"},"location":{"coordinates":[-73.96179599999999,40.694137],"type":"Point"},"name":"The Emerson"} +,{"_id":{"$oid":"55cba2476c522cafdb056b8c"},"location":{"coordinates":[-73.8521603,40.8343935],"type":"Point"},"name":"Domand Delicatessan"} +,{"_id":{"$oid":"55cba2476c522cafdb056b8d"},"location":{"coordinates":[-73.9056885,40.6706601],"type":"Point"},"name":"Hong Li Chinese Food Take Out"} +,{"_id":{"$oid":"55cba2476c522cafdb056b8e"},"location":{"coordinates":[-73.9109477,40.7007976],"type":"Point"},"name":"Aqui Me Quedo"} +,{"_id":{"$oid":"55cba2476c522cafdb056b8f"},"location":{"coordinates":[-73.935688,40.795063],"type":"Point"},"name":"Great Wall"} +,{"_id":{"$oid":"55cba2476c522cafdb056b90"},"location":{"coordinates":[-74.10108699999999,40.56589],"type":"Point"},"name":"Harvest Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056b91"},"location":{"coordinates":[-73.9726559,40.7503031],"type":"Point"},"name":"Pfizer"} +,{"_id":{"$oid":"55cba2476c522cafdb056b92"},"location":{"coordinates":[-73.902048,40.868898],"type":"Point"},"name":"Little Caesars"} +,{"_id":{"$oid":"55cba2476c522cafdb056b93"},"location":{"coordinates":[-73.8305571,40.6986358],"type":"Point"},"name":"Shots Billiards"} +,{"_id":{"$oid":"55cba2476c522cafdb056b94"},"location":{"coordinates":[-73.98379,40.6717439],"type":"Point"},"name":"Joe'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056b95"},"location":{"coordinates":[-73.981945,40.687908],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb056b96"},"location":{"coordinates":[-73.9308109,40.82594580000001],"type":"Point"},"name":"Dunkin Donuts (Inside Gulf Gas Station On North Side Of Maj. Deegan Exwy- After Exit 13 - 233 St.)"} +,{"_id":{"$oid":"55cba2476c522cafdb056b97"},"location":{"coordinates":[-73.8826096,40.8949463],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb056b98"},"location":{"coordinates":[-73.988739,40.732705],"type":"Point"},"name":"Peridance Capezio Center Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056b99"},"location":{"coordinates":[-92.72649559999999,41.74616899999999],"type":"Point"},"name":"2 Bros Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056b9a"},"location":{"coordinates":[-73.8617364,40.8325197],"type":"Point"},"name":"Latino Express Bar \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056b9b"},"location":{"coordinates":[-73.9838334,40.7502091],"type":"Point"},"name":"Ai Fiori"} +,{"_id":{"$oid":"55cba2476c522cafdb056b9c"},"location":{"coordinates":[-73.83953540000002,40.852561],"type":"Point"},"name":"Tower Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056b9d"},"location":{"coordinates":[-73.9874722,40.765851],"type":"Point"},"name":"Medi Winebar"} +,{"_id":{"$oid":"55cba2476c522cafdb056b9e"},"location":{"coordinates":[-73.9019337,40.7784455],"type":"Point"},"name":"China Dragon"} +,{"_id":{"$oid":"55cba2476c522cafdb056b9f"},"location":{"coordinates":[-74.13548680000001,40.634619],"type":"Point"},"name":"Pino'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056ba0"},"location":{"coordinates":[-73.81520139999999,40.755635],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb056ba1"},"location":{"coordinates":[-73.9612882,40.57737849999999],"type":"Point"},"name":"Cafe Euroasia"} +,{"_id":{"$oid":"55cba2476c522cafdb056ba2"},"location":{"coordinates":[-74.0070071,40.7097029],"type":"Point"},"name":"Burger King"} +,{"_id":{"$oid":"55cba2476c522cafdb056ba3"},"location":{"coordinates":[-73.95135499999999,40.7241636],"type":"Point"},"name":"Calexico"} +,{"_id":{"$oid":"55cba2476c522cafdb056ba4"},"location":{"coordinates":[-73.9494409,40.6792989],"type":"Point"},"name":"Bombay Curry"} +,{"_id":{"$oid":"55cba2476c522cafdb056ba5"},"location":{"coordinates":[-73.77874849999999,40.6655459],"type":"Point"},"name":"Kennedy Grill And Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb056ba6"},"location":{"coordinates":[-73.970708,40.7511439],"type":"Point"},"name":"Plaza Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb056ba7"},"location":{"coordinates":[-73.89946599999999,40.7003391],"type":"Point"},"name":"Joe \u0026 John'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056ba8"},"location":{"coordinates":[-74.163557,40.6083314],"type":"Point"},"name":"Sapporo Sushi Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056ba9"},"location":{"coordinates":[-73.767203,40.657606],"type":"Point"},"name":"Mario'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056baa"},"location":{"coordinates":[-73.955669,40.583158],"type":"Point"},"name":"1001 Nights"} +,{"_id":{"$oid":"55cba2476c522cafdb056bab"},"location":{"coordinates":[-73.9992607,40.753271],"type":"Point"},"name":"Savory \u0026 Sweet"} +,{"_id":{"$oid":"55cba2476c522cafdb056bac"},"location":{"coordinates":[-74.0800958,40.6287646],"type":"Point"},"name":"Full Cup"} +,{"_id":{"$oid":"55cba2476c522cafdb056bad"},"location":{"coordinates":[-73.9856968,40.7522221],"type":"Point"},"name":"Pier 79/Ny Waterway Seattle Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056bae"},"location":{"coordinates":[-74.00188419999999,40.7074538],"type":"Point"},"name":"Keg No. 229"} +,{"_id":{"$oid":"55cba2476c522cafdb056baf"},"location":{"coordinates":[-73.8728446,40.6851801],"type":"Point"},"name":"Azteca Maya Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056bb0"},"location":{"coordinates":[-73.992255,40.749712],"type":"Point"},"name":"Krispy Kreme"} +,{"_id":{"$oid":"55cba2476c522cafdb056bb1"},"location":{"coordinates":[-73.9798836,40.7272748],"type":"Point"},"name":"26 Seats"} +,{"_id":{"$oid":"55cba2476c522cafdb056bb2"},"location":{"coordinates":[-73.89003439999999,40.6501726],"type":"Point"},"name":"Ihop"} +,{"_id":{"$oid":"55cba2476c522cafdb056bb3"},"location":{"coordinates":[-73.97728289999999,40.6806701],"type":"Point"},"name":"Sky Ice"} +,{"_id":{"$oid":"55cba2476c522cafdb056bb4"},"location":{"coordinates":[-73.9994067,40.7148408],"type":"Point"},"name":"Asia Roma"} +,{"_id":{"$oid":"55cba2476c522cafdb056bb5"},"location":{"coordinates":[-73.88878849999999,40.853859],"type":"Point"},"name":"Li'S Golden City Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056bb6"},"location":{"coordinates":[-73.8078921,40.7636598],"type":"Point"},"name":"Bbq Village"} +,{"_id":{"$oid":"55cba2476c522cafdb056bb7"},"location":{"coordinates":[-74.0043247,40.7326321],"type":"Point"},"name":"Buvette"} +,{"_id":{"$oid":"55cba2476c522cafdb056bb8"},"location":{"coordinates":[-73.98048,40.7560773],"type":"Point"},"name":"Sophie'S Cuban Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb056bb9"},"location":{"coordinates":[-73.8631403,40.7499476],"type":"Point"},"name":"Pasteles Capy"} +,{"_id":{"$oid":"55cba2476c522cafdb056bba"},"location":{"coordinates":[-73.867598,40.8603041],"type":"Point"},"name":"Estrellita Poblana Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb056bbb"},"location":{"coordinates":[-73.9383241,40.847506],"type":"Point"},"name":"Pick \u0026 Eat"} +,{"_id":{"$oid":"55cba2476c522cafdb056bbc"},"location":{"coordinates":[-74.001374,40.733994],"type":"Point"},"name":"Jeffrey'S Grocery Restaurant \u0026 Oyster Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb056bbd"},"location":{"coordinates":[-74.1167651,40.63458240000001],"type":"Point"},"name":"My Family Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056bbe"},"location":{"coordinates":[-73.9913083,40.74637870000001],"type":"Point"},"name":"Chelsea Hilton Garden Inn"} +,{"_id":{"$oid":"55cba2476c522cafdb056bbf"},"location":{"coordinates":[-73.994899,40.724419],"type":"Point"},"name":"Socarrat Nolita"} +,{"_id":{"$oid":"55cba2476c522cafdb056bc0"},"location":{"coordinates":[-73.990838,40.743193],"type":"Point"},"name":"Junoon"} +,{"_id":{"$oid":"55cba2476c522cafdb056bc1"},"location":{"coordinates":[-73.9778724,40.7832795],"type":"Point"},"name":"Insomnia Cookies"} +,{"_id":{"$oid":"55cba2476c522cafdb056bc2"},"location":{"coordinates":[-73.9387179,40.8467302],"type":"Point"},"name":"Fu Sing"} +,{"_id":{"$oid":"55cba2476c522cafdb056bc3"},"location":{"coordinates":[-74.00584719999999,40.6394545],"type":"Point"},"name":"C \u0026 L Of East Ocean Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056bc4"},"location":{"coordinates":[-73.98549799999999,40.66644670000001],"type":"Point"},"name":"Soigne"} +,{"_id":{"$oid":"55cba2476c522cafdb056bc5"},"location":{"coordinates":[-74.131372,40.6036644],"type":"Point"},"name":"Peking Kitchen Chinese Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb056bc6"},"location":{"coordinates":[-73.81522369999999,40.7294862],"type":"Point"},"name":"Far East Szechuan Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb056bc7"},"location":{"coordinates":[-73.9883849,40.754635],"type":"Point"},"name":"New Star Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056bc8"},"location":{"coordinates":[-73.98939720000001,40.7635119],"type":"Point"},"name":"Molloy'S Irish Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb056bc9"},"location":{"coordinates":[-73.871566,40.6835809],"type":"Point"},"name":"El Girasol Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb056bca"},"location":{"coordinates":[-73.9798213,40.743016],"type":"Point"},"name":"Bagel Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056bcb"},"location":{"coordinates":[-73.9543429,40.774887],"type":"Point"},"name":"Luke'S Lobster"} +,{"_id":{"$oid":"55cba2476c522cafdb056bcc"},"location":{"coordinates":[-73.95378079999999,40.7712182],"type":"Point"},"name":"Spice"} +,{"_id":{"$oid":"55cba2476c522cafdb056bcd"},"location":{"coordinates":[-73.999473,40.72132999999999],"type":"Point"},"name":"Harney \u0026 Sons Tea"} +,{"_id":{"$oid":"55cba2476c522cafdb056bce"},"location":{"coordinates":[-73.888261,40.8514065],"type":"Point"},"name":"Lucky Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056bcf"},"location":{"coordinates":[-73.9673328,40.6934795],"type":"Point"},"name":"Maggie Brown"} +,{"_id":{"$oid":"55cba2476c522cafdb056bd0"},"location":{"coordinates":[-73.8337602,40.7557984],"type":"Point"},"name":"Forest House"} +,{"_id":{"$oid":"55cba2476c522cafdb056bd1"},"location":{"coordinates":[-73.982872,40.76280939999999],"type":"Point"},"name":"Mr Robata"} +,{"_id":{"$oid":"55cba2476c522cafdb056bd2"},"location":{"coordinates":[-73.95963069999999,40.5987028],"type":"Point"},"name":"New Star Seafood Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056bd3"},"location":{"coordinates":[-74.0221639,40.6312066],"type":"Point"},"name":"Hazar Turkish Kebab"} +,{"_id":{"$oid":"55cba2476c522cafdb056bd4"},"location":{"coordinates":[-74.0280348,40.6229036],"type":"Point"},"name":"Karam"} +,{"_id":{"$oid":"55cba2476c522cafdb056bd5"},"location":{"coordinates":[-73.9126946,40.6355237],"type":"Point"},"name":"Little Caesars"} +,{"_id":{"$oid":"55cba2476c522cafdb056bd6"},"location":{"coordinates":[-73.802539,40.706783],"type":"Point"},"name":"Crown Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb056bd7"},"location":{"coordinates":[-73.9885473,40.7687497],"type":"Point"},"name":"Rubby Pizzeria Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056bd8"},"location":{"coordinates":[-73.7357402,40.6741511],"type":"Point"},"name":"Gookies Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb056bd9"},"location":{"coordinates":[-73.798068,40.704565],"type":"Point"},"name":"Applebee'S"} +,{"_id":{"$oid":"55cba2476c522cafdb056bda"},"location":{"coordinates":[-73.9916868,40.7341519],"type":"Point"},"name":"Karaoke Nemo/Trece"} +,{"_id":{"$oid":"55cba2476c522cafdb056bdb"},"location":{"coordinates":[-73.730835,40.7120077],"type":"Point"},"name":"Little Caesars"} +,{"_id":{"$oid":"55cba2476c522cafdb056bdc"},"location":{"coordinates":[-73.99548290000001,40.753666],"type":"Point"},"name":"Hudson Station"} +,{"_id":{"$oid":"55cba2476c522cafdb056bdd"},"location":{"coordinates":[-73.9771903,40.6876383],"type":"Point"},"name":"No. 1 Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056bde"},"location":{"coordinates":[-73.94510749999999,40.8081625],"type":"Point"},"name":"Red Rooster Harlem"} +,{"_id":{"$oid":"55cba2476c522cafdb056bdf"},"location":{"coordinates":[-73.9801822,40.6772982],"type":"Point"},"name":"Konditori"} +,{"_id":{"$oid":"55cba2476c522cafdb056be0"},"location":{"coordinates":[-73.954194,40.7697999],"type":"Point"},"name":"The Recovery Room"} +,{"_id":{"$oid":"55cba2476c522cafdb056be1"},"location":{"coordinates":[-73.9970037,40.6611815],"type":"Point"},"name":"Castillo De Jagua 3"} +,{"_id":{"$oid":"55cba2476c522cafdb056be2"},"location":{"coordinates":[-73.7520455,40.7073891],"type":"Point"},"name":"St. Albans Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb056be3"},"location":{"coordinates":[-73.9376628,40.8505367],"type":"Point"},"name":"Domino'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056be4"},"location":{"coordinates":[-73.8666071,40.8473168],"type":"Point"},"name":"Arth Algantin Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056be5"},"location":{"coordinates":[-73.9957782,40.7494832],"type":"Point"},"name":"New Dynasty"} +,{"_id":{"$oid":"55cba2476c522cafdb056be6"},"location":{"coordinates":[-74.00180999999999,40.656497],"type":"Point"},"name":"Big John'S Coffee Shop \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb056be7"},"location":{"coordinates":[-73.9953409,40.754219],"type":"Point"},"name":"Sergimmo Salumeria"} +,{"_id":{"$oid":"55cba2476c522cafdb056be8"},"location":{"coordinates":[-73.9976166,40.71842059999999],"type":"Point"},"name":"Umberto'S Clam House"} +,{"_id":{"$oid":"55cba2476c522cafdb056be9"},"location":{"coordinates":[-73.9435855,40.8364363],"type":"Point"},"name":"No 1 Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056bea"},"location":{"coordinates":[-73.8635717,40.7333304],"type":"Point"},"name":"Dallas Bbq"} +,{"_id":{"$oid":"55cba2476c522cafdb056beb"},"location":{"coordinates":[-74.002145,40.7265685],"type":"Point"},"name":"The Dutch"} +,{"_id":{"$oid":"55cba2476c522cafdb056bec"},"location":{"coordinates":[-73.987034,40.7204286],"type":"Point"},"name":"Beauty And Essex"} +,{"_id":{"$oid":"55cba2476c522cafdb056bed"},"location":{"coordinates":[-73.99506199999999,40.762533],"type":"Point"},"name":"Sonnier \u0026 Castle Food"} +,{"_id":{"$oid":"55cba2476c522cafdb056bee"},"location":{"coordinates":[-73.9293711,40.7002709],"type":"Point"},"name":"Central Cafe Brooklyn"} +,{"_id":{"$oid":"55cba2476c522cafdb056bef"},"location":{"coordinates":[-73.98825289999999,40.7323409],"type":"Point"},"name":"Asian Express"} +,{"_id":{"$oid":"55cba2476c522cafdb056bf0"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"Croque Madame"} +,{"_id":{"$oid":"55cba2476c522cafdb056bf1"},"location":{"coordinates":[-73.851621,40.902395],"type":"Point"},"name":"Lovette'S Restaurant \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb056bf2"},"location":{"coordinates":[-73.9565602,40.7212096],"type":"Point"},"name":"Mable'S Smokehouse And Banquet Hall"} +,{"_id":{"$oid":"55cba2476c522cafdb056bf3"},"location":{"coordinates":[-73.85875469999999,40.8463029],"type":"Point"},"name":"Van Nest Lanes Snack Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb056bf4"},"location":{"coordinates":[-73.9841142,40.7212003],"type":"Point"},"name":"Pause Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056bf5"},"location":{"coordinates":[-74.008527,40.637011],"type":"Point"},"name":"Restaurant On 58 Street"} +,{"_id":{"$oid":"55cba2476c522cafdb056bf6"},"location":{"coordinates":[-73.933092,40.849632],"type":"Point"},"name":"Silver Palace Chinese Food"} +,{"_id":{"$oid":"55cba2476c522cafdb056bf7"},"location":{"coordinates":[-73.9910687,40.7296574],"type":"Point"},"name":"Bahr Che"} +,{"_id":{"$oid":"55cba2476c522cafdb056bf8"},"location":{"coordinates":[-73.9157997,40.808795],"type":"Point"},"name":"La Ceiba Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056bf9"},"location":{"coordinates":[-73.8194893,40.70227089999999],"type":"Point"},"name":"Los Poblanitos Deli Grocery Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb056bfa"},"location":{"coordinates":[-73.98308109999999,40.7496435],"type":"Point"},"name":"Pret A Manger"} +,{"_id":{"$oid":"55cba2476c522cafdb056bfb"},"location":{"coordinates":[-73.9492363,40.6940078],"type":"Point"},"name":"U Like Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056bfc"},"location":{"coordinates":[-73.8462461,40.8426524],"type":"Point"},"name":"Mcdermott'S Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb056bfd"},"location":{"coordinates":[-73.930426,40.694531],"type":"Point"},"name":"Lone Wolf"} +,{"_id":{"$oid":"55cba2476c522cafdb056bfe"},"location":{"coordinates":[-73.9900613,40.7305473],"type":"Point"},"name":"Yuba"} +,{"_id":{"$oid":"55cba2476c522cafdb056bff"},"location":{"coordinates":[-73.97656789999999,40.7637907],"type":"Point"},"name":"Mangia"} +,{"_id":{"$oid":"55cba2476c522cafdb056c00"},"location":{"coordinates":[-73.9896,40.687601],"type":"Point"},"name":"Panda Delight Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056c01"},"location":{"coordinates":[-73.8532894,40.8491261],"type":"Point"},"name":"Patricia'S"} +,{"_id":{"$oid":"55cba2476c522cafdb056c02"},"location":{"coordinates":[-73.916502,40.712993],"type":"Point"},"name":"John'S Cafe Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb056c03"},"location":{"coordinates":[-73.7353521,40.7709479],"type":"Point"},"name":"Mizumi"} +,{"_id":{"$oid":"55cba2476c522cafdb056c04"},"location":{"coordinates":[-73.99086199999999,40.719091],"type":"Point"},"name":"Cocoron"} +,{"_id":{"$oid":"55cba2476c522cafdb056c05"},"location":{"coordinates":[-73.993492,40.715713],"type":"Point"},"name":"Inhabit"} +,{"_id":{"$oid":"55cba2476c522cafdb056c06"},"location":{"coordinates":[-73.9832326,40.7535965],"type":"Point"},"name":"Talenti/Wichcraft Icecream"} +,{"_id":{"$oid":"55cba2476c522cafdb056c07"},"location":{"coordinates":[-73.9440882,40.8149339],"type":"Point"},"name":"Shrine/Yatenga"} +,{"_id":{"$oid":"55cba2476c522cafdb056c08"},"location":{"coordinates":[-73.8886532,40.6319689],"type":"Point"},"name":"Popeyes"} +,{"_id":{"$oid":"55cba2476c522cafdb056c09"},"location":{"coordinates":[-73.98387210000001,40.63263449999999],"type":"Point"},"name":"Fallsburg Bagels"} +,{"_id":{"$oid":"55cba2476c522cafdb056c0a"},"location":{"coordinates":[-74.0056048,40.7169484],"type":"Point"},"name":"Atera"} +,{"_id":{"$oid":"55cba2476c522cafdb056c0b"},"location":{"coordinates":[-73.90410729999999,40.9057581],"type":"Point"},"name":"Addeo'S Riverdale Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb056c0c"},"location":{"coordinates":[-73.9853261,40.7216921],"type":"Point"},"name":"Gaia Italian Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056c0d"},"location":{"coordinates":[-74.0078394,40.7389737],"type":"Point"},"name":"Kava Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056c0e"},"location":{"coordinates":[-73.96270559999999,40.6349803],"type":"Point"},"name":"Gyro King"} +,{"_id":{"$oid":"55cba2476c522cafdb056c0f"},"location":{"coordinates":[-73.98441129999999,40.7254763],"type":"Point"},"name":"D-Lish Pita"} +,{"_id":{"$oid":"55cba2476c522cafdb056c10"},"location":{"coordinates":[-73.9492271,40.5838777],"type":"Point"},"name":"Momo Hibachi Steakhouse \u0026 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb056c11"},"location":{"coordinates":[-73.9931524,40.6886912],"type":"Point"},"name":"Lemongrass Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb056c12"},"location":{"coordinates":[-73.9904914,40.7141987],"type":"Point"},"name":"Happy Star Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb056c13"},"location":{"coordinates":[-73.99409659999999,40.6401438],"type":"Point"},"name":"Sol De Quito Restaurant Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb056c14"},"location":{"coordinates":[-73.9947126,40.7171439],"type":"Point"},"name":"Delicious Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb056c15"},"location":{"coordinates":[-74.0118513,40.7090938],"type":"Point"},"name":"Wafflaki Belgian Waffle Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb056c16"},"location":{"coordinates":[-73.9865195,40.7543825],"type":"Point"},"name":"Oren'S Daily Roast"} +,{"_id":{"$oid":"55cba2476c522cafdb056c17"},"location":{"coordinates":[-73.9251743,40.7024582],"type":"Point"},"name":"El Maguey Mexicana Salvadorena"} +,{"_id":{"$oid":"55cba2476c522cafdb056c18"},"location":{"coordinates":[-85.1324016,41.0481132],"type":"Point"},"name":"New Sau Voi Corp"} +,{"_id":{"$oid":"55cba2476c522cafdb056c19"},"location":{"coordinates":[-73.9219079,40.8651443],"type":"Point"},"name":"Junior'S Tacos"} +,{"_id":{"$oid":"55cba2476c522cafdb056c1a"},"location":{"coordinates":[-73.9550639,40.772189],"type":"Point"},"name":"Heidi'S House By The Side Of The Road"} +,{"_id":{"$oid":"55cba2476c522cafdb056c1b"},"location":{"coordinates":[-73.9784107,40.750384],"type":"Point"},"name":"Park Avenue Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb056c1c"},"location":{"coordinates":[-73.912984,40.6127296],"type":"Point"},"name":"Harbor Fitness Juice Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb056c1d"},"location":{"coordinates":[-73.98671689999999,40.76593949999999],"type":"Point"},"name":"Mooncake Foods"} +,{"_id":{"$oid":"55cba2476c522cafdb056c1e"},"location":{"coordinates":[-73.970443,40.75844],"type":"Point"},"name":"Kushi Q"} +,{"_id":{"$oid":"55cba2476c522cafdb056c1f"},"location":{"coordinates":[-73.83009299999999,40.844168],"type":"Point"},"name":"Joe'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056c20"},"location":{"coordinates":[-73.9818586,40.7541476],"type":"Point"},"name":"Nyu Midtown"} +,{"_id":{"$oid":"55cba2476c522cafdb056c21"},"location":{"coordinates":[-73.8864595,40.7552917],"type":"Point"},"name":"Colombian Burger"} +,{"_id":{"$oid":"55cba2476c522cafdb056c22"},"location":{"coordinates":[-73.73536410000001,40.7709329],"type":"Point"},"name":"Bbq Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb056c23"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"Auntie Annie'S"} +,{"_id":{"$oid":"55cba2476c522cafdb056c24"},"location":{"coordinates":[-74.0037897,40.723319],"type":"Point"},"name":"Babylon"} +,{"_id":{"$oid":"55cba2476c522cafdb056c25"},"location":{"coordinates":[-73.9950885,40.7187888],"type":"Point"},"name":"Double Crispy Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb056c26"},"location":{"coordinates":[-73.9330753,40.61881899999999],"type":"Point"},"name":"Christie'S Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb056c27"},"location":{"coordinates":[-92.7305687,41.7461457],"type":"Point"},"name":"O Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056c28"},"location":{"coordinates":[-73.88541699999999,40.82766],"type":"Point"},"name":"East Star Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056c29"},"location":{"coordinates":[-73.93612499999999,40.69717],"type":"Point"},"name":"Mi Parador Restaurant \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb056c2a"},"location":{"coordinates":[-73.9868731,40.7640011],"type":"Point"},"name":"Danji"} +,{"_id":{"$oid":"55cba2476c522cafdb056c2b"},"location":{"coordinates":[-74.073156,40.6457369],"type":"Point"},"name":"Fresh Delight"} +,{"_id":{"$oid":"55cba2476c522cafdb056c2c"},"location":{"coordinates":[-74.012469,40.7039279],"type":"Point"},"name":"Murphy'S Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb056c2d"},"location":{"coordinates":[-73.977244,40.7842809],"type":"Point"},"name":"Spice"} +,{"_id":{"$oid":"55cba2476c522cafdb056c2e"},"location":{"coordinates":[-74.1239696,40.6132431],"type":"Point"},"name":"Goodfella'S"} +,{"_id":{"$oid":"55cba2476c522cafdb056c2f"},"location":{"coordinates":[-73.86078429999999,40.6850425],"type":"Point"},"name":"Wah King Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb056c30"},"location":{"coordinates":[-73.734231,40.7722372],"type":"Point"},"name":"Alley Pond Driving Range"} +,{"_id":{"$oid":"55cba2476c522cafdb056c31"},"location":{"coordinates":[-73.94659899999999,40.6804119],"type":"Point"},"name":"Tak King Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056c32"},"location":{"coordinates":[-73.947683,40.82569],"type":"Point"},"name":"Maldonado Mexican Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056c33"},"location":{"coordinates":[-73.980194,40.721779],"type":"Point"},"name":"Bedlam"} +,{"_id":{"$oid":"55cba2476c522cafdb056c34"},"location":{"coordinates":[-73.8067085,40.6657819],"type":"Point"},"name":"Sheraton Jfk"} +,{"_id":{"$oid":"55cba2476c522cafdb056c35"},"location":{"coordinates":[-73.98097039999999,40.6423493],"type":"Point"},"name":"Taco King Chinese Rest"} +,{"_id":{"$oid":"55cba2476c522cafdb056c36"},"location":{"coordinates":[-73.9160315,40.7629446],"type":"Point"},"name":"Kentucky Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb056c37"},"location":{"coordinates":[-73.9551716,40.7341694],"type":"Point"},"name":"Coffee Friends"} +,{"_id":{"$oid":"55cba2476c522cafdb056c38"},"location":{"coordinates":[-73.97358919999999,40.6548081],"type":"Point"},"name":"Piccoli"} +,{"_id":{"$oid":"55cba2476c522cafdb056c39"},"location":{"coordinates":[-73.897897,40.656062],"type":"Point"},"name":"Caoba Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb056c3a"},"location":{"coordinates":[-73.98002819999999,40.7578775],"type":"Point"},"name":"Freshday"} +,{"_id":{"$oid":"55cba2476c522cafdb056c3b"},"location":{"coordinates":[-73.9856271,40.5967377],"type":"Point"},"name":"Mtskheta Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056c3c"},"location":{"coordinates":[-73.9426325,40.7468597],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb056c3d"},"location":{"coordinates":[-74.0113732,40.7033722],"type":"Point"},"name":"Fraunces Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb056c3e"},"location":{"coordinates":[-73.9590324,40.7188999],"type":"Point"},"name":"Juniper"} +,{"_id":{"$oid":"55cba2476c522cafdb056c3f"},"location":{"coordinates":[-73.987678,40.740434],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb056c40"},"location":{"coordinates":[-73.98924339999999,40.75801329999999],"type":"Point"},"name":"Maoz Vegetarian"} +,{"_id":{"$oid":"55cba2476c522cafdb056c41"},"location":{"coordinates":[-73.9763299,40.764312],"type":"Point"},"name":"Fresh \u0026 Co"} +,{"_id":{"$oid":"55cba2476c522cafdb056c42"},"location":{"coordinates":[-73.9179388,40.6156217],"type":"Point"},"name":"Yoshi Modern Japanese Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb056c43"},"location":{"coordinates":[-73.8461453,40.7208692],"type":"Point"},"name":"Mint'S Thai Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb056c44"},"location":{"coordinates":[-73.8394198,40.6556365],"type":"Point"},"name":"Hagane Hibachi \u0026 Japanese Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb056c45"},"location":{"coordinates":[-73.9535858,40.682742],"type":"Point"},"name":"Sushi Tatsu"} +,{"_id":{"$oid":"55cba2476c522cafdb056c46"},"location":{"coordinates":[-73.8317342,40.7150158],"type":"Point"},"name":"Feng'S Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb056c47"},"location":{"coordinates":[-73.9100989,40.6996937],"type":"Point"},"name":"Zema Deli/Grocery"} +,{"_id":{"$oid":"55cba2476c522cafdb056c48"},"location":{"coordinates":[-74.1063547,40.6302504],"type":"Point"},"name":"Planet Wings"} +,{"_id":{"$oid":"55cba2476c522cafdb056c49"},"location":{"coordinates":[-73.8781558,40.872868],"type":"Point"},"name":"Kam Man Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056c4a"},"location":{"coordinates":[-73.979321,40.765854],"type":"Point"},"name":"Petrossian Boutique"} +,{"_id":{"$oid":"55cba2476c522cafdb056c4b"},"location":{"coordinates":[-74.14732599999999,40.540195],"type":"Point"},"name":"Bomond Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056c4c"},"location":{"coordinates":[-73.9327881,40.8572685],"type":"Point"},"name":"Apt. 78"} +,{"_id":{"$oid":"55cba2476c522cafdb056c4d"},"location":{"coordinates":[-73.9779202,40.7832245],"type":"Point"},"name":"Pizza By La Grolla"} +,{"_id":{"$oid":"55cba2476c522cafdb056c4e"},"location":{"coordinates":[-73.99893569999999,40.7141174],"type":"Point"},"name":"Noodle Village"} +,{"_id":{"$oid":"55cba2476c522cafdb056c4f"},"location":{"coordinates":[-73.9076017,40.7735274],"type":"Point"},"name":"Oishii Sushi Japanese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056c50"},"location":{"coordinates":[-73.8063655,40.7959957],"type":"Point"},"name":"Due Ponti Ristorante Italiano"} +,{"_id":{"$oid":"55cba2476c522cafdb056c51"},"location":{"coordinates":[-73.9441264,40.714735],"type":"Point"},"name":"Sakura Japanese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056c52"},"location":{"coordinates":[-73.946204,40.790025],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb056c53"},"location":{"coordinates":[-73.90052039999999,40.7505476],"type":"Point"},"name":"Tierra Ny Cafe Restaurante"} +,{"_id":{"$oid":"55cba2476c522cafdb056c54"},"location":{"coordinates":[-73.88586169999999,40.7643754],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb056c55"},"location":{"coordinates":[-73.9741222,40.7517576],"type":"Point"},"name":"Cafe Hestia"} +,{"_id":{"$oid":"55cba2476c522cafdb056c56"},"location":{"coordinates":[-73.8852811,40.7643394],"type":"Point"},"name":"Popeye'S Chicken \u0026 Biscuits"} +,{"_id":{"$oid":"55cba2476c522cafdb056c57"},"location":{"coordinates":[-73.99127399999999,40.737767],"type":"Point"},"name":"Edo Sushi Teriyaki Noodle"} +,{"_id":{"$oid":"55cba2476c522cafdb056c58"},"location":{"coordinates":[-73.99099679999999,40.7406113],"type":"Point"},"name":"Greensquare Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb056c59"},"location":{"coordinates":[-73.8876397,40.8374335],"type":"Point"},"name":"Island Lunch Box"} +,{"_id":{"$oid":"55cba2476c522cafdb056c5a"},"location":{"coordinates":[-73.8977146,40.8330686],"type":"Point"},"name":"Bas Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb056c5b"},"location":{"coordinates":[-73.9909018,40.6870957],"type":"Point"},"name":"61 Local"} +,{"_id":{"$oid":"55cba2476c522cafdb056c5c"},"location":{"coordinates":[-73.9821123,40.736902],"type":"Point"},"name":"Pan De Sal"} +,{"_id":{"$oid":"55cba2476c522cafdb056c5d"},"location":{"coordinates":[-74.0018482,40.7401296],"type":"Point"},"name":"Golden Crepes"} +,{"_id":{"$oid":"55cba2476c522cafdb056c5e"},"location":{"coordinates":[-73.992504,40.7179689],"type":"Point"},"name":"Lucky King Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb056c5f"},"location":{"coordinates":[-73.9186488,40.8148056],"type":"Point"},"name":"Checkers"} +,{"_id":{"$oid":"55cba2476c522cafdb056c60"},"location":{"coordinates":[-74.0073331,40.7168582],"type":"Point"},"name":"55 Thomas Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056c61"},"location":{"coordinates":[-73.96194249999999,40.7169646],"type":"Point"},"name":"Modca By El Beit"} +,{"_id":{"$oid":"55cba2476c522cafdb056c62"},"location":{"coordinates":[-73.9584596,40.7335102],"type":"Point"},"name":"Alameda"} +,{"_id":{"$oid":"55cba2476c522cafdb056c63"},"location":{"coordinates":[-73.9201247,40.7051223],"type":"Point"},"name":"Mesa Azteca"} +,{"_id":{"$oid":"55cba2476c522cafdb056c64"},"location":{"coordinates":[-73.9863817,40.6401743],"type":"Point"},"name":"Picnic Perla Restaurante"} +,{"_id":{"$oid":"55cba2476c522cafdb056c65"},"location":{"coordinates":[-73.92719799999999,40.771971],"type":"Point"},"name":"Vida Enerjetica"} +,{"_id":{"$oid":"55cba2476c522cafdb056c66"},"location":{"coordinates":[-73.9849399,40.6704135],"type":"Point"},"name":"Food Lin"} +,{"_id":{"$oid":"55cba2476c522cafdb056c67"},"location":{"coordinates":[-73.9840447,40.7674409],"type":"Point"},"name":"Aba Turkish Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056c68"},"location":{"coordinates":[-74.0087471,40.7169248],"type":"Point"},"name":"Weather Up"} +,{"_id":{"$oid":"55cba2476c522cafdb056c69"},"location":{"coordinates":[-73.9923829,40.7481246],"type":"Point"},"name":"Hale \u0026 Hearty Soups"} +,{"_id":{"$oid":"55cba2476c522cafdb056c6a"},"location":{"coordinates":[-73.9891008,40.6205089],"type":"Point"},"name":"Jin Jin Hong Kong Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056c6b"},"location":{"coordinates":[-73.8514395,40.6939419],"type":"Point"},"name":"La Comadre Mexican Restaurant \u0026 Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb056c6c"},"location":{"coordinates":[-77.4120153,37.2845339],"type":"Point"},"name":"B \u0026 R Spice West Indian Rood"} +,{"_id":{"$oid":"55cba2476c522cafdb056c6d"},"location":{"coordinates":[-73.9837635,40.7660781],"type":"Point"},"name":"Otarian"} +,{"_id":{"$oid":"55cba2476c522cafdb056c6e"},"location":{"coordinates":[-73.774214,40.75933430000001],"type":"Point"},"name":"Yedon"} +,{"_id":{"$oid":"55cba2476c522cafdb056c6f"},"location":{"coordinates":[-74.0073238,40.7075136],"type":"Point"},"name":"Toloache Taqueria"} +,{"_id":{"$oid":"55cba2476c522cafdb056c70"},"location":{"coordinates":[-73.9927846,40.7297848],"type":"Point"},"name":"Financier Patisserie"} +,{"_id":{"$oid":"55cba2476c522cafdb056c71"},"location":{"coordinates":[-73.966408,40.7613295],"type":"Point"},"name":"Financier Patisserie"} +,{"_id":{"$oid":"55cba2476c522cafdb056c72"},"location":{"coordinates":[-73.9427092,40.7014074],"type":"Point"},"name":"Little Ceasars"} +,{"_id":{"$oid":"55cba2476c522cafdb056c73"},"location":{"coordinates":[-73.8549075,40.89847200000001],"type":"Point"},"name":"Top Choice Jamaican Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056c74"},"location":{"coordinates":[-73.8045643,40.6965363],"type":"Point"},"name":"Rice And Beans Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056c75"},"location":{"coordinates":[-73.9041601,40.9056897],"type":"Point"},"name":"Riverdale Bagels"} +,{"_id":{"$oid":"55cba2476c522cafdb056c76"},"location":{"coordinates":[-73.7502425,40.6026329],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb056c77"},"location":{"coordinates":[-73.9497062,40.714614],"type":"Point"},"name":"The Brooklyn Star"} +,{"_id":{"$oid":"55cba2476c522cafdb056c78"},"location":{"coordinates":[-73.9541442,40.77505379999999],"type":"Point"},"name":"16 Handles"} +,{"_id":{"$oid":"55cba2476c522cafdb056c79"},"location":{"coordinates":[-73.99432,40.729872],"type":"Point"},"name":"Brad'S Coffeehouse"} +,{"_id":{"$oid":"55cba2476c522cafdb056c7a"},"location":{"coordinates":[-73.9946125,40.7524247],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb056c7b"},"location":{"coordinates":[-73.8244026,40.7760223],"type":"Point"},"name":"Lotus Pad Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056c7c"},"location":{"coordinates":[-73.804678,40.674838],"type":"Point"},"name":"Sati'S Roti Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb056c7d"},"location":{"coordinates":[-73.9401932,40.5906342],"type":"Point"},"name":"World'S Finest Ice Cream Yugort Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb056c7e"},"location":{"coordinates":[-73.992114,40.763727],"type":"Point"},"name":"New York Sal'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb056c7f"},"location":{"coordinates":[-73.994872,40.713873],"type":"Point"},"name":"Ai Zhen Foo Chow Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056c80"},"location":{"coordinates":[-73.85116359999999,40.8337302],"type":"Point"},"name":"Jenny'S Roti Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb056c81"},"location":{"coordinates":[-74.17845919999999,40.5413224],"type":"Point"},"name":"Il Sogno Italiano Ristorante"} +,{"_id":{"$oid":"55cba2476c522cafdb056c82"},"location":{"coordinates":[-73.8345772,40.75749100000001],"type":"Point"},"name":"Applebee'S"} +,{"_id":{"$oid":"55cba2476c522cafdb056c83"},"location":{"coordinates":[-73.9824872,40.7658676],"type":"Point"},"name":"Chipotle Mexican Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb056c84"},"location":{"coordinates":[-78.39771089999999,40.5106335],"type":"Point"},"name":"Chipotle Mexican Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb056c85"},"location":{"coordinates":[-73.9326911,40.764179],"type":"Point"},"name":"Wen Ming Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056c86"},"location":{"coordinates":[-73.965152,40.679772],"type":"Point"},"name":"Dean Street"} +,{"_id":{"$oid":"55cba2476c522cafdb056c87"},"location":{"coordinates":[-73.8560691,40.8483622],"type":"Point"},"name":"Luciano'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056c88"},"location":{"coordinates":[-73.85000330000001,40.8758267],"type":"Point"},"name":"Good Taste Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056c89"},"location":{"coordinates":[-73.939588,40.8514729],"type":"Point"},"name":"Saggio Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056c8a"},"location":{"coordinates":[-73.931461,40.851859],"type":"Point"},"name":"Mia"} +,{"_id":{"$oid":"55cba2476c522cafdb056c8b"},"location":{"coordinates":[-73.92083439999999,40.7437641],"type":"Point"},"name":"Molly Blooms"} +,{"_id":{"$oid":"55cba2476c522cafdb056c8c"},"location":{"coordinates":[-73.993776,40.743614],"type":"Point"},"name":"Guilty Goose"} +,{"_id":{"$oid":"55cba2476c522cafdb056c8d"},"location":{"coordinates":[-73.9814451,40.68032669999999],"type":"Point"},"name":"Papa Johns"} +,{"_id":{"$oid":"55cba2476c522cafdb056c8e"},"location":{"coordinates":[-73.93201669999999,40.8492377],"type":"Point"},"name":"Bon Bon Juice Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb056c8f"},"location":{"coordinates":[-73.985084,40.736601],"type":"Point"},"name":"La Follia"} +,{"_id":{"$oid":"55cba2476c522cafdb056c90"},"location":{"coordinates":[-73.9718218,40.7532168],"type":"Point"},"name":"Tulsi Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056c91"},"location":{"coordinates":[-74.0052022,40.7210118],"type":"Point"},"name":"Aoa Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb056c92"},"location":{"coordinates":[-73.8021457,40.7801436],"type":"Point"},"name":"Terrace Inn"} +,{"_id":{"$oid":"55cba2476c522cafdb056c93"},"location":{"coordinates":[-73.9558917,40.6813788],"type":"Point"},"name":"Crown Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb056c94"},"location":{"coordinates":[-73.9769505,40.5963725],"type":"Point"},"name":"El Mixteco"} +,{"_id":{"$oid":"55cba2476c522cafdb056c95"},"location":{"coordinates":[-73.8011093,40.8092017],"type":"Point"},"name":"Suny Maritime University (S And E Cafe)"} +,{"_id":{"$oid":"55cba2476c522cafdb056c96"},"location":{"coordinates":[-73.9955631,40.73721700000001],"type":"Point"},"name":"Bourbon Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb056c97"},"location":{"coordinates":[-73.9847261,40.7405658],"type":"Point"},"name":"The Pit At Peoples Improv Theater"} +,{"_id":{"$oid":"55cba2476c522cafdb056c98"},"location":{"coordinates":[-73.9967144,40.7443264],"type":"Point"},"name":"Doughnut Plant"} +,{"_id":{"$oid":"55cba2476c522cafdb056c99"},"location":{"coordinates":[-73.983745,40.724032],"type":"Point"},"name":"Dorian Gray"} +,{"_id":{"$oid":"55cba2476c522cafdb056c9a"},"location":{"coordinates":[-73.979045,40.648472],"type":"Point"},"name":"Thai Tony'S"} +,{"_id":{"$oid":"55cba2476c522cafdb056c9b"},"location":{"coordinates":[-73.86581249999999,40.8716411],"type":"Point"},"name":"New Wah Kwong"} +,{"_id":{"$oid":"55cba2476c522cafdb056c9c"},"location":{"coordinates":[-73.94649,40.78027],"type":"Point"},"name":"Falafel Off The Corner"} +,{"_id":{"$oid":"55cba2476c522cafdb056c9d"},"location":{"coordinates":[-73.98075039999999,40.7523363],"type":"Point"},"name":"Sunrise Mart"} +,{"_id":{"$oid":"55cba2476c522cafdb056c9e"},"location":{"coordinates":[-74.03275719999999,40.6199092],"type":"Point"},"name":"Sweetie Frozen Yogurt"} +,{"_id":{"$oid":"55cba2476c522cafdb056c9f"},"location":{"coordinates":[-73.991061,40.6631969],"type":"Point"},"name":"Freddy'S Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb056ca0"},"location":{"coordinates":[-73.9868161,40.7554006],"type":"Point"},"name":"The Counter"} +,{"_id":{"$oid":"55cba2476c522cafdb056ca1"},"location":{"coordinates":[-73.89300999999999,40.748392],"type":"Point"},"name":"Premium Sweets \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056ca2"},"location":{"coordinates":[-73.9861609,40.763699],"type":"Point"},"name":"Cha Pa'S Vietnamese Eatery"} +,{"_id":{"$oid":"55cba2476c522cafdb056ca3"},"location":{"coordinates":[-74.1610077,40.6263799],"type":"Point"},"name":"Mama Rosaria Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb056ca4"},"location":{"coordinates":[-73.83169079999999,40.7149817],"type":"Point"},"name":"Asian Bowl"} +,{"_id":{"$oid":"55cba2476c522cafdb056ca5"},"location":{"coordinates":[-73.99224319999999,40.7343102],"type":"Point"},"name":"Vapiano"} +,{"_id":{"$oid":"55cba2476c522cafdb056ca6"},"location":{"coordinates":[-73.79136609999999,40.7261501],"type":"Point"},"name":"Green Lotus"} +,{"_id":{"$oid":"55cba2476c522cafdb056ca7"},"location":{"coordinates":[-74.177245,40.5417114],"type":"Point"},"name":"The Curly Wolf Saloon"} +,{"_id":{"$oid":"55cba2476c522cafdb056ca8"},"location":{"coordinates":[-73.952456,40.7841477],"type":"Point"},"name":"Ottomanelli N.Y. Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb056ca9"},"location":{"coordinates":[-73.8154605,40.7621889],"type":"Point"},"name":"Su Ra Chung Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056caa"},"location":{"coordinates":[-73.9522865,40.6506783],"type":"Point"},"name":"La Baguette Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb056cab"},"location":{"coordinates":[-73.912897,40.7558269],"type":"Point"},"name":"El Autentico Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056cac"},"location":{"coordinates":[-73.97747869999999,40.7547501],"type":"Point"},"name":"Chickpea/Red Mango"} +,{"_id":{"$oid":"55cba2476c522cafdb056cad"},"location":{"coordinates":[-73.9730208,40.7582695],"type":"Point"},"name":"Deutsche Bank Conference Center"} +,{"_id":{"$oid":"55cba2476c522cafdb056cae"},"location":{"coordinates":[-73.9896843,40.7565374],"type":"Point"},"name":"Proskauer Rose"} +,{"_id":{"$oid":"55cba2476c522cafdb056caf"},"location":{"coordinates":[-73.7958811,40.77341610000001],"type":"Point"},"name":"Nagoya Gourmet"} +,{"_id":{"$oid":"55cba2476c522cafdb056cb0"},"location":{"coordinates":[-73.9963569,40.7109729],"type":"Point"},"name":"New Territory Cake Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb056cb1"},"location":{"coordinates":[-73.83054729999999,40.8687141],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb056cb2"},"location":{"coordinates":[-73.9982236,40.7144341],"type":"Point"},"name":"Nom Wah Tea Parlor"} +,{"_id":{"$oid":"55cba2476c522cafdb056cb3"},"location":{"coordinates":[-73.993831,40.7388697],"type":"Point"},"name":"Barnes And Noble Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056cb4"},"location":{"coordinates":[-73.9224986,40.7555082],"type":"Point"},"name":"Applebee'S Neighborhood Grill \u0026 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb056cb5"},"location":{"coordinates":[-73.9730208,40.7582695],"type":"Point"},"name":"Blackstone Employee Dining Room"} +,{"_id":{"$oid":"55cba2476c522cafdb056cb6"},"location":{"coordinates":[-74.0270415,40.6342969],"type":"Point"},"name":"Genie Hookah Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb056cb7"},"location":{"coordinates":[-73.870504,40.751873],"type":"Point"},"name":"El Centenario Bar Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056cb8"},"location":{"coordinates":[-74.0857113,40.6342516],"type":"Point"},"name":"Dosa Garden Sri Lanka Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056cb9"},"location":{"coordinates":[-73.94242059999999,40.7618606],"type":"Point"},"name":"Melting Pot Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb056cba"},"location":{"coordinates":[-73.94943110000001,40.7773434],"type":"Point"},"name":"Taco Today"} +,{"_id":{"$oid":"55cba2476c522cafdb056cbb"},"location":{"coordinates":[-73.998013,40.6874993],"type":"Point"},"name":"Happy Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb056cbc"},"location":{"coordinates":[-73.97334699999999,40.784298],"type":"Point"},"name":"Tarallucci E Vino"} +,{"_id":{"$oid":"55cba2476c522cafdb056cbd"},"location":{"coordinates":[-73.983982,40.743937],"type":"Point"},"name":"Asellina Ristorante"} +,{"_id":{"$oid":"55cba2476c522cafdb056cbe"},"location":{"coordinates":[-73.998182,40.648072],"type":"Point"},"name":"Rancho Luna Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb056cbf"},"location":{"coordinates":[-73.88925739999999,40.7014198],"type":"Point"},"name":"Yip Szechuan Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056cc0"},"location":{"coordinates":[-73.9226163,40.7404853],"type":"Point"},"name":"Halal Kitchen Chinese"} +,{"_id":{"$oid":"55cba2476c522cafdb056cc1"},"location":{"coordinates":[-73.8480122,40.723487],"type":"Point"},"name":"King Garden Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056cc2"},"location":{"coordinates":[-73.7474658,40.6957829],"type":"Point"},"name":"Lucky Star"} +,{"_id":{"$oid":"55cba2476c522cafdb056cc3"},"location":{"coordinates":[-73.903201,40.667932],"type":"Point"},"name":"Shun Jia Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056cc4"},"location":{"coordinates":[-73.9902611,40.6000814],"type":"Point"},"name":"Sake Japanese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056cc5"},"location":{"coordinates":[-73.99373229999999,40.7000385],"type":"Point"},"name":"Jack The Horse Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb056cc6"},"location":{"coordinates":[-73.9798129,40.5757419],"type":"Point"},"name":"Shalyapin Bar \u0026 Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb056cc7"},"location":{"coordinates":[-73.96566399999999,40.7550442],"type":"Point"},"name":"Ashiya V Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb056cc8"},"location":{"coordinates":[-73.99086199999999,40.719091],"type":"Point"},"name":"Berkli Parc Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056cc9"},"location":{"coordinates":[-73.99026099999999,40.728505],"type":"Point"},"name":"Aubreve Espresso"} +,{"_id":{"$oid":"55cba2476c522cafdb056cca"},"location":{"coordinates":[-73.9606684,40.6611406],"type":"Point"},"name":"New Peking Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056ccb"},"location":{"coordinates":[-73.8316911,40.714982],"type":"Point"},"name":"Hop Bo Palace"} +,{"_id":{"$oid":"55cba2476c522cafdb056ccc"},"location":{"coordinates":[-73.7720733,40.7661976],"type":"Point"},"name":"Maria'S"} +,{"_id":{"$oid":"55cba2476c522cafdb056ccd"},"location":{"coordinates":[-73.9812053,40.7406502],"type":"Point"},"name":"Abumi Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb056cce"},"location":{"coordinates":[-73.9057692,40.832696],"type":"Point"},"name":"Spring Garden Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056ccf"},"location":{"coordinates":[-73.9188703,40.7412706],"type":"Point"},"name":"Fresh Taco"} +,{"_id":{"$oid":"55cba2476c522cafdb056cd0"},"location":{"coordinates":[-73.94707989999999,40.7847818],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb056cd1"},"location":{"coordinates":[-73.930494,40.6945679],"type":"Point"},"name":"Goodbye Blue Monday"} +,{"_id":{"$oid":"55cba2476c522cafdb056cd2"},"location":{"coordinates":[-73.87539749999999,40.7508048],"type":"Point"},"name":"La Puntilla Bar \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056cd3"},"location":{"coordinates":[-73.99628009999999,40.7174204],"type":"Point"},"name":"Xo Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056cd4"},"location":{"coordinates":[-73.90678129999999,40.8774338],"type":"Point"},"name":"Pick Up Six Fresh Fast Asian Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb056cd5"},"location":{"coordinates":[-74.01099169999999,40.7151804],"type":"Point"},"name":"Yorganic"} +,{"_id":{"$oid":"55cba2476c522cafdb056cd6"},"location":{"coordinates":[-73.9807676,40.7455705],"type":"Point"},"name":"Ny Dc Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056cd7"},"location":{"coordinates":[-73.8623325,40.7295224],"type":"Point"},"name":"Rego Bagel"} +,{"_id":{"$oid":"55cba2476c522cafdb056cd8"},"location":{"coordinates":[-73.99806699999999,40.7140212],"type":"Point"},"name":"Hop Shing Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056cd9"},"location":{"coordinates":[-73.8166696,40.754705],"type":"Point"},"name":"Rico'S Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb056cda"},"location":{"coordinates":[-74.0060002,40.7262757],"type":"Point"},"name":"City Winery"} +,{"_id":{"$oid":"55cba2476c522cafdb056cdb"},"location":{"coordinates":[-73.9577769,40.770067],"type":"Point"},"name":"2Nd Ave Blue 9 Burger"} +,{"_id":{"$oid":"55cba2476c522cafdb056cdc"},"location":{"coordinates":[-73.8988353,40.7098845],"type":"Point"},"name":"Coco Lin Vegetarian House"} +,{"_id":{"$oid":"55cba2476c522cafdb056cdd"},"location":{"coordinates":[-73.918931,40.701885],"type":"Point"},"name":"Sol De Quito Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056cde"},"location":{"coordinates":[-73.95712089999999,40.7771463],"type":"Point"},"name":"Dulce Vida Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056cdf"},"location":{"coordinates":[-73.9410233,40.8386222],"type":"Point"},"name":"Antika Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb056ce0"},"location":{"coordinates":[-73.9441069,40.74626749999999],"type":"Point"},"name":"Brooks 1890 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056ce1"},"location":{"coordinates":[-73.94986510000001,40.65103089999999],"type":"Point"},"name":"Little Caesars"} +,{"_id":{"$oid":"55cba2476c522cafdb056ce2"},"location":{"coordinates":[-73.7650316,40.7182598],"type":"Point"},"name":"Popeye'S Chicken \u0026 Biscuits"} +,{"_id":{"$oid":"55cba2476c522cafdb056ce3"},"location":{"coordinates":[-73.915803,40.806427],"type":"Point"},"name":"The Pastelillos House \u0026 Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb056ce4"},"location":{"coordinates":[-73.8407349,40.6903501],"type":"Point"},"name":"New China House"} +,{"_id":{"$oid":"55cba2476c522cafdb056ce5"},"location":{"coordinates":[-74.00084199999999,40.64415700000001],"type":"Point"},"name":"18 Chinese Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb056ce6"},"location":{"coordinates":[-73.9499993,40.6779235],"type":"Point"},"name":"Sakura Tokyo"} +,{"_id":{"$oid":"55cba2476c522cafdb056ce7"},"location":{"coordinates":[-73.90781799999999,40.70008800000001],"type":"Point"},"name":"Coyote Bohemio"} +,{"_id":{"$oid":"55cba2476c522cafdb056ce8"},"location":{"coordinates":[-73.8888334,40.8649722],"type":"Point"},"name":"Florinda Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056ce9"},"location":{"coordinates":[-73.970207,40.643152],"type":"Point"},"name":"Gyro Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056cea"},"location":{"coordinates":[-73.9257919,40.6122955],"type":"Point"},"name":"Paco'S Tacos Of Brooklyn"} +,{"_id":{"$oid":"55cba2476c522cafdb056ceb"},"location":{"coordinates":[-73.986215,40.7330791],"type":"Point"},"name":"211 New Taco Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb056cec"},"location":{"coordinates":[-73.9567127,40.6092184],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb056ced"},"location":{"coordinates":[-74.01174999999999,40.70214],"type":"Point"},"name":"Morgan Stanley Employee Cafeteria"} +,{"_id":{"$oid":"55cba2476c522cafdb056cee"},"location":{"coordinates":[-73.8897095,40.7478639],"type":"Point"},"name":"Juju'S Bagels Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056cef"},"location":{"coordinates":[-73.916501,40.699188],"type":"Point"},"name":"Mi Pequena Cholula Deli Restaurante"} +,{"_id":{"$oid":"55cba2476c522cafdb056cf0"},"location":{"coordinates":[-73.7695028,40.76106730000001],"type":"Point"},"name":"Mekong East Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056cf1"},"location":{"coordinates":[-74.0178918,40.7081658],"type":"Point"},"name":"Liberty View Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056cf2"},"location":{"coordinates":[-73.9670728,40.63226239999999],"type":"Point"},"name":"Halal Gyro King"} +,{"_id":{"$oid":"55cba2476c522cafdb056cf3"},"location":{"coordinates":[-73.804411,40.759303],"type":"Point"},"name":"Red Sun Entertainment"} +,{"_id":{"$oid":"55cba2476c522cafdb056cf4"},"location":{"coordinates":[-73.984888,40.671308],"type":"Point"},"name":"Colombia Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056cf5"},"location":{"coordinates":[-74.0029832,40.7344879],"type":"Point"},"name":"Fedora"} +,{"_id":{"$oid":"55cba2476c522cafdb056cf6"},"location":{"coordinates":[-74.23440839999999,40.5233528],"type":"Point"},"name":"Ruby Falls Nightlife Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056cf7"},"location":{"coordinates":[-73.96332,40.613144],"type":"Point"},"name":"El Taous"} +,{"_id":{"$oid":"55cba2476c522cafdb056cf8"},"location":{"coordinates":[-74.01208799999999,40.6540372],"type":"Point"},"name":"Best Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb056cf9"},"location":{"coordinates":[-73.86765059999999,40.8986752],"type":"Point"},"name":"Katonah Pizza \u0026 Pasta"} +,{"_id":{"$oid":"55cba2476c522cafdb056cfa"},"location":{"coordinates":[-73.99426609999999,40.7508707],"type":"Point"},"name":"Club Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb056cfb"},"location":{"coordinates":[-73.94560539999999,40.5864995],"type":"Point"},"name":"Chinatown Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056cfc"},"location":{"coordinates":[-73.9538226,40.7108779],"type":"Point"},"name":"Lighthouse"} +,{"_id":{"$oid":"55cba2476c522cafdb056cfd"},"location":{"coordinates":[-73.8261582,40.830966],"type":"Point"},"name":"Legendary Bar \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056cfe"},"location":{"coordinates":[-73.9793564,40.7589426],"type":"Point"},"name":"Jacques Torres Chocolate"} +,{"_id":{"$oid":"55cba2476c522cafdb056cff"},"location":{"coordinates":[-73.906064,40.8037149],"type":"Point"},"name":"Vithas Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb056d00"},"location":{"coordinates":[-73.9423067,40.6654231],"type":"Point"},"name":"Kingston Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056d01"},"location":{"coordinates":[-73.9722489,40.7525305],"type":"Point"},"name":"Aburiya Kinnosuke"} +,{"_id":{"$oid":"55cba2476c522cafdb056d02"},"location":{"coordinates":[-73.94047139999999,40.8192368],"type":"Point"},"name":"Fu On Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb056d03"},"location":{"coordinates":[-73.8883887,40.8727537],"type":"Point"},"name":"Wai Kang Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb056d04"},"location":{"coordinates":[-73.8582965,40.8392972],"type":"Point"},"name":"Sing Hing Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056d05"},"location":{"coordinates":[-73.965699,40.6064905],"type":"Point"},"name":"Mabat"} +,{"_id":{"$oid":"55cba2476c522cafdb056d06"},"location":{"coordinates":[-73.99426609999999,40.7508707],"type":"Point"},"name":"Fy Theater"} +,{"_id":{"$oid":"55cba2476c522cafdb056d07"},"location":{"coordinates":[-73.99582610000002,40.6908789],"type":"Point"},"name":"Colonie"} +,{"_id":{"$oid":"55cba2476c522cafdb056d08"},"location":{"coordinates":[-74.119811,40.575464],"type":"Point"},"name":"Li'S Happy Family"} +,{"_id":{"$oid":"55cba2476c522cafdb056d09"},"location":{"coordinates":[-74.1506314,40.5514161],"type":"Point"},"name":"Talk Of The Town"} +,{"_id":{"$oid":"55cba2476c522cafdb056d0a"},"location":{"coordinates":[-73.922725,40.760967],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb056d0b"},"location":{"coordinates":[-73.990765,40.63938900000001],"type":"Point"},"name":"Milchig Bp Inc"} +,{"_id":{"$oid":"55cba2476c522cafdb056d0c"},"location":{"coordinates":[-73.90427919999999,40.8522925],"type":"Point"},"name":"Kennedy Fried Chicken \u0026 Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056d0d"},"location":{"coordinates":[-73.83535789999999,40.7569735],"type":"Point"},"name":"Chuck E Cheese'S"} +,{"_id":{"$oid":"55cba2476c522cafdb056d0e"},"location":{"coordinates":[-73.9810444,40.7290753],"type":"Point"},"name":"El Camion Cantina"} +,{"_id":{"$oid":"55cba2476c522cafdb056d0f"},"location":{"coordinates":[-73.9655836,40.5854918],"type":"Point"},"name":"Au Bon Pain / Cih Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056d10"},"location":{"coordinates":[-73.9634509,40.6773518],"type":"Point"},"name":"Udom Thai"} +,{"_id":{"$oid":"55cba2476c522cafdb056d11"},"location":{"coordinates":[-73.9981633,40.6782512],"type":"Point"},"name":"Nine_D Thai"} +,{"_id":{"$oid":"55cba2476c522cafdb056d12"},"location":{"coordinates":[-73.76820099999999,40.75892100000001],"type":"Point"},"name":"Jong Ro Bbq Restaurant/Golden Pig"} +,{"_id":{"$oid":"55cba2476c522cafdb056d13"},"location":{"coordinates":[-73.87444789999999,40.8297856],"type":"Point"},"name":"Danny'S Athens Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056d14"},"location":{"coordinates":[-73.98579409999999,40.747163],"type":"Point"},"name":"Small Peace Soup \u0026 Smoothie"} +,{"_id":{"$oid":"55cba2476c522cafdb056d15"},"location":{"coordinates":[-73.7947554,40.7824942],"type":"Point"},"name":"New Empire Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb056d16"},"location":{"coordinates":[-74.0059747,40.7331682],"type":"Point"},"name":"502 Hudson Bagel Corp"} +,{"_id":{"$oid":"55cba2476c522cafdb056d17"},"location":{"coordinates":[-74.009609,40.635763],"type":"Point"},"name":"Ibakery"} +,{"_id":{"$oid":"55cba2476c522cafdb056d18"},"location":{"coordinates":[-73.803551,40.761352],"type":"Point"},"name":"La Amistad Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb056d19"},"location":{"coordinates":[-73.91836730000001,40.7746577],"type":"Point"},"name":"Mosaic"} +,{"_id":{"$oid":"55cba2476c522cafdb056d1a"},"location":{"coordinates":[-73.7608449,40.7201488],"type":"Point"},"name":"Panda House"} +,{"_id":{"$oid":"55cba2476c522cafdb056d1b"},"location":{"coordinates":[-73.94528869999999,40.7110866],"type":"Point"},"name":"The Drink"} +,{"_id":{"$oid":"55cba2476c522cafdb056d1c"},"location":{"coordinates":[-73.958293,40.760153],"type":"Point"},"name":"Prime At The Bentley"} +,{"_id":{"$oid":"55cba2476c522cafdb056d1d"},"location":{"coordinates":[-73.7706038,40.710943],"type":"Point"},"name":"Crown Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb056d1e"},"location":{"coordinates":[-73.98318019999999,40.7675702],"type":"Point"},"name":"Blue Ribbon Sushi Bar \u0026 Grill Roof Deck"} +,{"_id":{"$oid":"55cba2476c522cafdb056d1f"},"location":{"coordinates":[-73.96674759999999,40.80460770000001],"type":"Point"},"name":"Five Guys Burgers And Fries"} +,{"_id":{"$oid":"55cba2476c522cafdb056d20"},"location":{"coordinates":[-73.9620515,40.8100006],"type":"Point"},"name":"Joe"} +,{"_id":{"$oid":"55cba2476c522cafdb056d21"},"location":{"coordinates":[-73.95643849999999,40.7711007],"type":"Point"},"name":"Go Burger"} +,{"_id":{"$oid":"55cba2476c522cafdb056d22"},"location":{"coordinates":[-73.89707,40.7543898],"type":"Point"},"name":"Pal Karajo"} +,{"_id":{"$oid":"55cba2476c522cafdb056d23"},"location":{"coordinates":[-73.9640797,40.679383],"type":"Point"},"name":"Shane'S Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056d24"},"location":{"coordinates":[-73.70746419999999,40.74947239999999],"type":"Point"},"name":"Liu'S Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb056d25"},"location":{"coordinates":[-73.8465457,40.72062349999999],"type":"Point"},"name":"Exo Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056d26"},"location":{"coordinates":[-73.992255,40.6837643],"type":"Point"},"name":"Uncle Louie G"} +,{"_id":{"$oid":"55cba2476c522cafdb056d27"},"location":{"coordinates":[-73.9216818,40.8408372],"type":"Point"},"name":"Emergency Snack Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb056d28"},"location":{"coordinates":[-73.9653622,40.6897478],"type":"Point"},"name":"Luigi Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb056d29"},"location":{"coordinates":[-73.96640579999999,40.597589],"type":"Point"},"name":"Fuji Hana Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056d2a"},"location":{"coordinates":[-73.947358,40.71107010000001],"type":"Point"},"name":"Red House"} +,{"_id":{"$oid":"55cba2476c522cafdb056d2b"},"location":{"coordinates":[-73.87338,40.8407849],"type":"Point"},"name":"New Wang Hong Kong"} +,{"_id":{"$oid":"55cba2476c522cafdb056d2c"},"location":{"coordinates":[-73.953541,40.770399],"type":"Point"},"name":"Jones Wood Foundry"} +,{"_id":{"$oid":"55cba2476c522cafdb056d2d"},"location":{"coordinates":[-73.784837,40.708172],"type":"Point"},"name":"Zhang'S Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb056d2e"},"location":{"coordinates":[-74.0014099,40.7279307],"type":"Point"},"name":"Miss Lily'S"} +,{"_id":{"$oid":"55cba2476c522cafdb056d2f"},"location":{"coordinates":[-73.9582704,40.82543769999999],"type":"Point"},"name":"Riverbank Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb056d30"},"location":{"coordinates":[-73.8792033,40.7025079],"type":"Point"},"name":"Edison Place"} +,{"_id":{"$oid":"55cba2476c522cafdb056d31"},"location":{"coordinates":[-73.959429,40.773917],"type":"Point"},"name":"Mamagyro"} +,{"_id":{"$oid":"55cba2476c522cafdb056d32"},"location":{"coordinates":[-74.0053022,40.7238476],"type":"Point"},"name":"Artifakt Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb056d33"},"location":{"coordinates":[-73.9138725,40.8237107],"type":"Point"},"name":"Restaurant Bate"} +,{"_id":{"$oid":"55cba2476c522cafdb056d34"},"location":{"coordinates":[-73.9743002,40.5796567],"type":"Point"},"name":"Hana Japanese Bistro"} +,{"_id":{"$oid":"55cba2476c522cafdb056d35"},"location":{"coordinates":[-73.8922473,40.8620651],"type":"Point"},"name":"Little China City"} +,{"_id":{"$oid":"55cba2476c522cafdb056d36"},"location":{"coordinates":[-73.76751999999999,40.755908],"type":"Point"},"name":"Mamma'S Pizza \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056d37"},"location":{"coordinates":[-73.842863,40.6734713],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb056d38"},"location":{"coordinates":[-73.9798711,40.7437056],"type":"Point"},"name":"Hummus Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb056d39"},"location":{"coordinates":[-73.975972,40.786907],"type":"Point"},"name":"Kitaro"} +,{"_id":{"$oid":"55cba2476c522cafdb056d3a"},"location":{"coordinates":[-74.10431,40.587052],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb056d3b"},"location":{"coordinates":[-73.9634748,40.7175279],"type":"Point"},"name":"Cantina Royal"} +,{"_id":{"$oid":"55cba2476c522cafdb056d3c"},"location":{"coordinates":[-74.14328669999999,40.6256917],"type":"Point"},"name":"Mandarin House"} +,{"_id":{"$oid":"55cba2476c522cafdb056d3d"},"location":{"coordinates":[-92.7280006,41.7461434],"type":"Point"},"name":"Grimaldi Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb056d3e"},"location":{"coordinates":[-73.9616503,40.7142634],"type":"Point"},"name":"Bar Oysters"} +,{"_id":{"$oid":"55cba2476c522cafdb056d3f"},"location":{"coordinates":[-73.99938999999999,40.729764],"type":"Point"},"name":"Happy Taco Burrito"} +,{"_id":{"$oid":"55cba2476c522cafdb056d40"},"location":{"coordinates":[-73.986722,40.6920552],"type":"Point"},"name":"Chang Heng"} +,{"_id":{"$oid":"55cba2476c522cafdb056d41"},"location":{"coordinates":[-73.945042,40.792039],"type":"Point"},"name":"Healthy Living 106"} +,{"_id":{"$oid":"55cba2476c522cafdb056d42"},"location":{"coordinates":[-73.9774302,40.7879804],"type":"Point"},"name":"Kasbah Bbq \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb056d43"},"location":{"coordinates":[-73.92937599999999,40.6421007],"type":"Point"},"name":"Tropical Paradise Restaurant And Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb056d44"},"location":{"coordinates":[-73.9749375,40.7522452],"type":"Point"},"name":"Pret A Manger"} +,{"_id":{"$oid":"55cba2476c522cafdb056d45"},"location":{"coordinates":[-73.991171,40.671673],"type":"Point"},"name":"Maria \u0026 Tony'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056d46"},"location":{"coordinates":[-73.8847792,40.83660440000001],"type":"Point"},"name":"Chinese Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb056d47"},"location":{"coordinates":[-73.964727,40.624387],"type":"Point"},"name":"Essen Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb056d48"},"location":{"coordinates":[-73.8427291,40.8696067],"type":"Point"},"name":"No.1 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056d49"},"location":{"coordinates":[-73.995757,40.602809],"type":"Point"},"name":"Hi Tea Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056d4a"},"location":{"coordinates":[-73.9900851,40.72048789999999],"type":"Point"},"name":"Red Mango"} +,{"_id":{"$oid":"55cba2476c522cafdb056d4b"},"location":{"coordinates":[-73.95097,40.660609],"type":"Point"},"name":"The New Red Brick Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056d4c"},"location":{"coordinates":[-73.8460186,40.7824483],"type":"Point"},"name":"Little Pepper Sichuan Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056d4d"},"location":{"coordinates":[-73.9841399,40.7456133],"type":"Point"},"name":"Roger Williams Hotel"} +,{"_id":{"$oid":"55cba2476c522cafdb056d4e"},"location":{"coordinates":[-73.8605724,40.8463706],"type":"Point"},"name":"Golden Eagle Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056d4f"},"location":{"coordinates":[-73.9596293,40.6909248],"type":"Point"},"name":"Cafe 232"} +,{"_id":{"$oid":"55cba2476c522cafdb056d50"},"location":{"coordinates":[-73.999713,40.719736],"type":"Point"},"name":"Mondrian Soho/ Isola"} +,{"_id":{"$oid":"55cba2476c522cafdb056d51"},"location":{"coordinates":[-73.84688919999999,40.8540686],"type":"Point"},"name":"Jacobi Towers Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056d52"},"location":{"coordinates":[-73.9022339,40.7504439],"type":"Point"},"name":"Woodside Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056d53"},"location":{"coordinates":[-74.0100463,40.72997609999999],"type":"Point"},"name":"The Westway"} +,{"_id":{"$oid":"55cba2476c522cafdb056d54"},"location":{"coordinates":[-73.8523355,40.7170456],"type":"Point"},"name":"Lillian Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb056d55"},"location":{"coordinates":[-73.9790742,40.7642826],"type":"Point"},"name":"Topaz Thai Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056d56"},"location":{"coordinates":[-74.0075402,40.7151466],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb056d57"},"location":{"coordinates":[-73.88575569999999,40.7557575],"type":"Point"},"name":"Gianni'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056d58"},"location":{"coordinates":[-73.8609908,40.75033],"type":"Point"},"name":"Manila Bar \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056d59"},"location":{"coordinates":[-73.84965849999999,40.8757544],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb056d5a"},"location":{"coordinates":[-73.7532178,40.6033212],"type":"Point"},"name":"La Palma Restaurant Of Far Rockaway"} +,{"_id":{"$oid":"55cba2476c522cafdb056d5b"},"location":{"coordinates":[-73.9487029,40.6339135],"type":"Point"},"name":"Healthy Blendz"} +,{"_id":{"$oid":"55cba2476c522cafdb056d5c"},"location":{"coordinates":[-73.91599,40.8290046],"type":"Point"},"name":"Doro'S Jamaican Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056d5d"},"location":{"coordinates":[-73.9638078,40.6769895],"type":"Point"},"name":"Bcakeny"} +,{"_id":{"$oid":"55cba2476c522cafdb056d5e"},"location":{"coordinates":[-73.8799148,40.7480772],"type":"Point"},"name":"Deum"} +,{"_id":{"$oid":"55cba2476c522cafdb056d5f"},"location":{"coordinates":[-73.8907656,40.8249362],"type":"Point"},"name":"Crown Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb056d60"},"location":{"coordinates":[-73.99968559999999,40.6840979],"type":"Point"},"name":"Maybelle'S Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056d61"},"location":{"coordinates":[-73.954104,40.82196099999999],"type":"Point"},"name":"Flor De Broadway Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056d62"},"location":{"coordinates":[-73.95096269999999,40.6678917],"type":"Point"},"name":"Annie 88 Express"} +,{"_id":{"$oid":"55cba2476c522cafdb056d63"},"location":{"coordinates":[-73.79474420000001,40.7332144],"type":"Point"},"name":"Bakhter Afghan Halal Kabab"} +,{"_id":{"$oid":"55cba2476c522cafdb056d64"},"location":{"coordinates":[-73.75421270000001,40.679068],"type":"Point"},"name":"Bella Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056d65"},"location":{"coordinates":[-73.8987236,40.8620407],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb056d66"},"location":{"coordinates":[-74.140592,40.629874],"type":"Point"},"name":"Mr. Rice Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056d67"},"location":{"coordinates":[-73.9574219,40.712158],"type":"Point"},"name":"Banter"} +,{"_id":{"$oid":"55cba2476c522cafdb056d68"},"location":{"coordinates":[-73.865689,40.675265],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb056d69"},"location":{"coordinates":[-73.836033,40.7863024],"type":"Point"},"name":"White Point Pizzeria \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056d6a"},"location":{"coordinates":[-73.8197976,40.7654095],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb056d6b"},"location":{"coordinates":[-73.90092960000001,40.7137699],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb056d6c"},"location":{"coordinates":[-73.8799003,40.7480787],"type":"Point"},"name":"La Abundancia Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb056d6d"},"location":{"coordinates":[-73.9912645,40.759954],"type":"Point"},"name":"Cafe Jolie"} +,{"_id":{"$oid":"55cba2476c522cafdb056d6e"},"location":{"coordinates":[-74.00803379999999,40.7137041],"type":"Point"},"name":"Darkhorse"} +,{"_id":{"$oid":"55cba2476c522cafdb056d6f"},"location":{"coordinates":[-73.93505569999999,40.696651],"type":"Point"},"name":"Xing Wang Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056d70"},"location":{"coordinates":[-74.0842335,40.597161],"type":"Point"},"name":"No. 1 Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb056d71"},"location":{"coordinates":[-73.9936347,40.7536157],"type":"Point"},"name":"Royal Thai Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb056d72"},"location":{"coordinates":[-73.820161,40.6001075],"type":"Point"},"name":"Grassy Point Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb056d73"},"location":{"coordinates":[-73.9966882,40.7139264],"type":"Point"},"name":"Lunch Box Buffet"} +,{"_id":{"$oid":"55cba2476c522cafdb056d74"},"location":{"coordinates":[-74.0637572,40.5974051],"type":"Point"},"name":"Basilio'S Inn Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056d75"},"location":{"coordinates":[-73.70242999999999,40.7523459],"type":"Point"},"name":"Skyline Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb056d76"},"location":{"coordinates":[-73.9888122,40.7218445],"type":"Point"},"name":"Konditori"} +,{"_id":{"$oid":"55cba2476c522cafdb056d77"},"location":{"coordinates":[-74.0914961,40.5867953],"type":"Point"},"name":"Goodfella'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb056d78"},"location":{"coordinates":[-73.8077373,40.7145874],"type":"Point"},"name":"John'S Pizzeria And Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056d79"},"location":{"coordinates":[-73.95013,40.640702],"type":"Point"},"name":"Step On Top Take Out Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056d7a"},"location":{"coordinates":[-73.95588099999999,40.772583],"type":"Point"},"name":"Mxco"} +,{"_id":{"$oid":"55cba2476c522cafdb056d7b"},"location":{"coordinates":[-73.99042469999999,40.7141531],"type":"Point"},"name":"162 Eb Corp Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb056d7c"},"location":{"coordinates":[-73.9827543,40.6737771],"type":"Point"},"name":"Ginza"} +,{"_id":{"$oid":"55cba2476c522cafdb056d7d"},"location":{"coordinates":[-73.89646309999999,40.8469139],"type":"Point"},"name":"Jimbo'S Hamburger"} +,{"_id":{"$oid":"55cba2476c522cafdb056d7e"},"location":{"coordinates":[-73.9938576,40.6860497],"type":"Point"},"name":"Van Horn Sandwich Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb056d7f"},"location":{"coordinates":[-73.98092799999999,40.7534986],"type":"Point"},"name":"Circle Line Brooklyn"} +,{"_id":{"$oid":"55cba2476c522cafdb056d80"},"location":{"coordinates":[-73.98092799999999,40.7534986],"type":"Point"},"name":"Circle Line Queens"} +,{"_id":{"$oid":"55cba2476c522cafdb056d81"},"location":{"coordinates":[-73.98092799999999,40.7534986],"type":"Point"},"name":"Circle Line Xvi"} +,{"_id":{"$oid":"55cba2476c522cafdb056d82"},"location":{"coordinates":[-73.98092799999999,40.7534986],"type":"Point"},"name":"Circle Line Xvii"} +,{"_id":{"$oid":"55cba2476c522cafdb056d83"},"location":{"coordinates":[-73.98092799999999,40.7534986],"type":"Point"},"name":"Circle Line Manhattan"} +,{"_id":{"$oid":"55cba2476c522cafdb056d84"},"location":{"coordinates":[-73.98030659999999,40.7560527],"type":"Point"},"name":"Antalia Turkish Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb056d85"},"location":{"coordinates":[-73.967049,40.762816],"type":"Point"},"name":"Brinkley'S Station"} +,{"_id":{"$oid":"55cba2476c522cafdb056d86"},"location":{"coordinates":[-73.9868473,40.6923262],"type":"Point"},"name":"99 Cents Fresh Hot Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056d87"},"location":{"coordinates":[-73.98092799999999,40.7534986],"type":"Point"},"name":"Circle Line Xii"} +,{"_id":{"$oid":"55cba2476c522cafdb056d88"},"location":{"coordinates":[-73.913589,40.819833],"type":"Point"},"name":"Domino'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056d89"},"location":{"coordinates":[-73.8898747,40.7470316],"type":"Point"},"name":"Chautari Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056d8a"},"location":{"coordinates":[-73.96795399999999,40.6477242],"type":"Point"},"name":"El Acuario Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056d8b"},"location":{"coordinates":[-74.01183600000002,40.70463],"type":"Point"},"name":"Flavors Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056d8c"},"location":{"coordinates":[-74.0076595,40.7145744],"type":"Point"},"name":"Sophie'S Cuban Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb056d8d"},"location":{"coordinates":[-73.9726086,40.7855227],"type":"Point"},"name":"Cotta"} +,{"_id":{"$oid":"55cba2476c522cafdb056d8e"},"location":{"coordinates":[-73.952592,40.650336],"type":"Point"},"name":"Kerry'S Bk"} +,{"_id":{"$oid":"55cba2476c522cafdb056d8f"},"location":{"coordinates":[-73.989212,40.728205],"type":"Point"},"name":"East Village Thai Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056d90"},"location":{"coordinates":[-73.9163312,40.7027902],"type":"Point"},"name":"Jade Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb056d91"},"location":{"coordinates":[-73.978329,40.6896508],"type":"Point"},"name":"Hot Chix"} +,{"_id":{"$oid":"55cba2476c522cafdb056d92"},"location":{"coordinates":[-74.0069199,40.638368],"type":"Point"},"name":"Mr. Q'S Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb056d93"},"location":{"coordinates":[-73.9815071,40.6666132],"type":"Point"},"name":"Hanoi"} +,{"_id":{"$oid":"55cba2476c522cafdb056d94"},"location":{"coordinates":[-73.8706907,40.6758054],"type":"Point"},"name":"Fra Amici Pizzeria \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056d95"},"location":{"coordinates":[-73.9928068,40.73327440000001],"type":"Point"},"name":"Pop Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb056d96"},"location":{"coordinates":[-73.95568519999999,40.77900899999999],"type":"Point"},"name":"Koffeecake Corner"} +,{"_id":{"$oid":"55cba2476c522cafdb056d97"},"location":{"coordinates":[-73.9128443,40.8436636],"type":"Point"},"name":"D'Angie Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056d98"},"location":{"coordinates":[-73.98935349999999,40.6202396],"type":"Point"},"name":"Lww Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb056d99"},"location":{"coordinates":[-73.99492029999999,40.6025894],"type":"Point"},"name":"Happy Seafood Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056d9a"},"location":{"coordinates":[-74.0054881,40.7254587],"type":"Point"},"name":"Trump Soho Main Kitchen Cafeteria"} +,{"_id":{"$oid":"55cba2476c522cafdb056d9b"},"location":{"coordinates":[-73.99132809999999,40.7606458],"type":"Point"},"name":"Obao"} +,{"_id":{"$oid":"55cba2476c522cafdb056d9c"},"location":{"coordinates":[-73.9040576,40.7006853],"type":"Point"},"name":"Rudy'S Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb056d9d"},"location":{"coordinates":[-73.8630356,40.7327192],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb056d9e"},"location":{"coordinates":[-73.959661,40.814513],"type":"Point"},"name":"Flafel On Broadway"} +,{"_id":{"$oid":"55cba2476c522cafdb056d9f"},"location":{"coordinates":[-73.9966611,40.7205753],"type":"Point"},"name":"Crudo Cucina \u0026 Vineria"} +,{"_id":{"$oid":"55cba2476c522cafdb056da0"},"location":{"coordinates":[-74.19175709999999,40.5327722],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb056da1"},"location":{"coordinates":[-74.00629200000002,40.73525799999999],"type":"Point"},"name":"Spasso"} +,{"_id":{"$oid":"55cba2476c522cafdb056da2"},"location":{"coordinates":[-73.83018100000001,40.7601218],"type":"Point"},"name":"Taipan Snacks"} +,{"_id":{"$oid":"55cba2476c522cafdb056da3"},"location":{"coordinates":[-73.9851564,40.7192669],"type":"Point"},"name":"Do Dompa"} +,{"_id":{"$oid":"55cba2476c522cafdb056da4"},"location":{"coordinates":[-74.010261,40.64444599999999],"type":"Point"},"name":"Herbalife"} +,{"_id":{"$oid":"55cba2476c522cafdb056da5"},"location":{"coordinates":[-73.991434,40.600175],"type":"Point"},"name":"Sun Mario Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb056da6"},"location":{"coordinates":[-73.9119167,40.636822],"type":"Point"},"name":"Mei Wei Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056da7"},"location":{"coordinates":[-73.999813,40.683876],"type":"Point"},"name":"Ling Ling Young"} +,{"_id":{"$oid":"55cba2476c522cafdb056da8"},"location":{"coordinates":[-73.9636257,40.6938952],"type":"Point"},"name":"Bamboo Lounge \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb056da9"},"location":{"coordinates":[-73.7953884,40.7064805],"type":"Point"},"name":"Deli \u0026 Coffee Corp. Breakfast \u0026 Lunch"} +,{"_id":{"$oid":"55cba2476c522cafdb056daa"},"location":{"coordinates":[-73.9892,40.713883],"type":"Point"},"name":"Hawa Smoothies"} +,{"_id":{"$oid":"55cba2476c522cafdb056dab"},"location":{"coordinates":[-73.96860040000001,40.7571903],"type":"Point"},"name":"Rain Thai Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056dac"},"location":{"coordinates":[-73.9826937,40.7457347],"type":"Point"},"name":"Guy \u0026 Gallard"} +,{"_id":{"$oid":"55cba2476c522cafdb056dad"},"location":{"coordinates":[-73.95240489999999,40.7841781],"type":"Point"},"name":"Rizzos"} +,{"_id":{"$oid":"55cba2476c522cafdb056dae"},"location":{"coordinates":[-73.924188,40.761142],"type":"Point"},"name":"Omonia Next Door"} +,{"_id":{"$oid":"55cba2476c522cafdb056daf"},"location":{"coordinates":[-73.866756,40.8734467],"type":"Point"},"name":"502 Bar Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb056db0"},"location":{"coordinates":[-73.924267,40.757222],"type":"Point"},"name":"The Astor Room"} +,{"_id":{"$oid":"55cba2476c522cafdb056db1"},"location":{"coordinates":[-73.9767319,40.6437617],"type":"Point"},"name":"Sake Japanese Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb056db2"},"location":{"coordinates":[-73.8595442,40.6844394],"type":"Point"},"name":"Enzo'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056db3"},"location":{"coordinates":[-73.9828813,40.7610785],"type":"Point"},"name":"Nathan'S Famous"} +,{"_id":{"$oid":"55cba2476c522cafdb056db4"},"location":{"coordinates":[-73.9907769,40.76030189999999],"type":"Point"},"name":"El Rancho Burritos"} +,{"_id":{"$oid":"55cba2476c522cafdb056db5"},"location":{"coordinates":[-73.9721672,40.7522029],"type":"Point"},"name":"The Comfort Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb056db6"},"location":{"coordinates":[-73.91986039999999,40.7590447],"type":"Point"},"name":"La Sabrosura"} +,{"_id":{"$oid":"55cba2476c522cafdb056db7"},"location":{"coordinates":[-74.00788229999999,40.7293605],"type":"Point"},"name":"Kapeteria"} +,{"_id":{"$oid":"55cba2476c522cafdb056db8"},"location":{"coordinates":[-73.9914308,40.7606391],"type":"Point"},"name":"Southern Hospitality"} +,{"_id":{"$oid":"55cba2476c522cafdb056db9"},"location":{"coordinates":[-73.9771044,40.650791],"type":"Point"},"name":"Kathy'S Gourmet Italian Ices \u0026 Ice Cream"} +,{"_id":{"$oid":"55cba2476c522cafdb056dba"},"location":{"coordinates":[-73.82703699999999,40.700945],"type":"Point"},"name":"Hing Yuan Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb056dbb"},"location":{"coordinates":[-73.7921719,40.7062117],"type":"Point"},"name":"Dunkin Donuts Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb056dbc"},"location":{"coordinates":[-73.7915694,40.7025424],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb056dbd"},"location":{"coordinates":[-73.911171,40.676599],"type":"Point"},"name":"Kennedy Fried Chicken \u0026 Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056dbe"},"location":{"coordinates":[-73.7721207,40.7105007],"type":"Point"},"name":"Dunkin Donuts Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb056dbf"},"location":{"coordinates":[-73.8823568,40.7478177],"type":"Point"},"name":"El Tucanazo Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb056dc0"},"location":{"coordinates":[-73.8450965,40.7097624],"type":"Point"},"name":"Hookahloopa Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb056dc1"},"location":{"coordinates":[-73.84941220000002,40.5789073],"type":"Point"},"name":"Beach Bagel"} +,{"_id":{"$oid":"55cba2476c522cafdb056dc2"},"location":{"coordinates":[-73.90248799999999,40.8360119],"type":"Point"},"name":"U.S Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb056dc3"},"location":{"coordinates":[-73.75759649999999,40.7486218],"type":"Point"},"name":"Patoug Restaurant \u0026 Catering"} +,{"_id":{"$oid":"55cba2476c522cafdb056dc4"},"location":{"coordinates":[-73.947379,40.633208],"type":"Point"},"name":"Popeyes Chicken \u0026 Biscuits"} +,{"_id":{"$oid":"55cba2476c522cafdb056dc5"},"location":{"coordinates":[-73.9036653,40.7751816],"type":"Point"},"name":"Apicius Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056dc6"},"location":{"coordinates":[-73.962706,40.6901764],"type":"Point"},"name":"Pratt Design Center/Starbucks"} +,{"_id":{"$oid":"55cba2476c522cafdb056dc7"},"location":{"coordinates":[-74.0032238,40.7398274],"type":"Point"},"name":"Rocky'S I Pizza \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056dc8"},"location":{"coordinates":[-73.9841812,40.7472108],"type":"Point"},"name":"Nelly Spillane'S"} +,{"_id":{"$oid":"55cba2476c522cafdb056dc9"},"location":{"coordinates":[-73.786363,40.846198],"type":"Point"},"name":"Bistro Sk"} +,{"_id":{"$oid":"55cba2476c522cafdb056dca"},"location":{"coordinates":[-73.725387,40.7666309],"type":"Point"},"name":"Colbeh Caterers"} +,{"_id":{"$oid":"55cba2476c522cafdb056dcb"},"location":{"coordinates":[-73.99922529999999,40.7279984],"type":"Point"},"name":"Gmt Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb056dcc"},"location":{"coordinates":[-74.0091604,40.7050758],"type":"Point"},"name":"Cafe Hanover"} +,{"_id":{"$oid":"55cba2476c522cafdb056dcd"},"location":{"coordinates":[-73.9087571,40.8539355],"type":"Point"},"name":"Ming Wong Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056dce"},"location":{"coordinates":[-73.9967865,40.7199065],"type":"Point"},"name":"Benito One"} +,{"_id":{"$oid":"55cba2476c522cafdb056dcf"},"location":{"coordinates":[-114.6787351,33.4631523],"type":"Point"},"name":"George'S Sidestreet Deli \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb056dd0"},"location":{"coordinates":[-73.992293,40.6346563],"type":"Point"},"name":"Zislick"} +,{"_id":{"$oid":"55cba2476c522cafdb056dd1"},"location":{"coordinates":[-73.95940499999999,40.601223],"type":"Point"},"name":"Becec, Inc/ Bambi Day Care Center"} +,{"_id":{"$oid":"55cba2476c522cafdb056dd2"},"location":{"coordinates":[-73.853447,40.8490593],"type":"Point"},"name":"Scaglione Brothers Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb056dd3"},"location":{"coordinates":[-73.90307390000001,40.8121383],"type":"Point"},"name":"La Espiga Mexican Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056dd4"},"location":{"coordinates":[-73.9802376,40.6293203],"type":"Point"},"name":"Tiliki Health Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb056dd5"},"location":{"coordinates":[-73.99916069999999,40.7164209],"type":"Point"},"name":"H.K Wonton Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb056dd6"},"location":{"coordinates":[-73.927222,40.755181],"type":"Point"},"name":"Ecuadorian Restaurant Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb056dd7"},"location":{"coordinates":[-73.8498307,40.8282305],"type":"Point"},"name":"Juices For Life"} +,{"_id":{"$oid":"55cba2476c522cafdb056dd8"},"location":{"coordinates":[-73.94368399999999,40.79336500000001],"type":"Point"},"name":"Make \u0026 Bake Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056dd9"},"location":{"coordinates":[-73.98543579999999,40.7229984],"type":"Point"},"name":"Fdr 99¢ Slice Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056dda"},"location":{"coordinates":[-74.11313899999999,40.5720396],"type":"Point"},"name":"Pizzeria Giove"} +,{"_id":{"$oid":"55cba2476c522cafdb056ddb"},"location":{"coordinates":[-73.9957448,40.7439654],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb056ddc"},"location":{"coordinates":[-73.9059971,40.7124069],"type":"Point"},"name":"Piekielko Grill Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb056ddd"},"location":{"coordinates":[-73.8981455,40.8670345],"type":"Point"},"name":"Top Com Tam Ninh Kieu Vietnamese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056dde"},"location":{"coordinates":[-73.9534067,40.8068241],"type":"Point"},"name":"Bad Horse Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056ddf"},"location":{"coordinates":[-73.9339581,40.7974876],"type":"Point"},"name":"Wing Wah"} +,{"_id":{"$oid":"55cba2476c522cafdb056de0"},"location":{"coordinates":[-73.93051299999999,40.649615],"type":"Point"},"name":"Dutch Pot Jamaican Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056de1"},"location":{"coordinates":[-73.82012,40.824861],"type":"Point"},"name":"Mcgee'S Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb056de2"},"location":{"coordinates":[-73.997776,40.718889],"type":"Point"},"name":"Sofia'S Little Italy"} +,{"_id":{"$oid":"55cba2476c522cafdb056de3"},"location":{"coordinates":[-73.9713541,40.6898314],"type":"Point"},"name":"Dick And Jane'S"} +,{"_id":{"$oid":"55cba2476c522cafdb056de4"},"location":{"coordinates":[-73.9546798,40.8048926],"type":"Point"},"name":"Lido"} +,{"_id":{"$oid":"55cba2476c522cafdb056de5"},"location":{"coordinates":[-73.978135,40.746153],"type":"Point"},"name":"Bare Burger"} +,{"_id":{"$oid":"55cba2476c522cafdb056de6"},"location":{"coordinates":[-73.9612635,40.7168807],"type":"Point"},"name":"Viva Toro"} +,{"_id":{"$oid":"55cba2476c522cafdb056de7"},"location":{"coordinates":[-73.8966648,40.8609327],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb056de8"},"location":{"coordinates":[-73.9850992,40.7193599],"type":"Point"},"name":"C \u0026 C Prosperity Dumplings"} +,{"_id":{"$oid":"55cba2476c522cafdb056de9"},"location":{"coordinates":[-73.951061,40.661419],"type":"Point"},"name":"The Original Culpeppers Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056dea"},"location":{"coordinates":[-74.1325061,40.5911842],"type":"Point"},"name":"Framboise Events"} +,{"_id":{"$oid":"55cba2476c522cafdb056deb"},"location":{"coordinates":[-73.938324,40.7536721],"type":"Point"},"name":"Friendly Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056dec"},"location":{"coordinates":[-73.9924705,40.6208002],"type":"Point"},"name":"Quetzal Restaurant \u0026 Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb056ded"},"location":{"coordinates":[-74.0102534,40.7183216],"type":"Point"},"name":"Sarabeth'S"} +,{"_id":{"$oid":"55cba2476c522cafdb056dee"},"location":{"coordinates":[-73.900572,40.8432175],"type":"Point"},"name":"Mela'S Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056def"},"location":{"coordinates":[-74.12067400000001,40.603003],"type":"Point"},"name":"Pepperjack Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb056df0"},"location":{"coordinates":[-73.8309388,40.6850354],"type":"Point"},"name":"Ho Wan Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056df1"},"location":{"coordinates":[-73.96902349999999,40.6412483],"type":"Point"},"name":"Mashallah Sweets And Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056df2"},"location":{"coordinates":[-73.87770019999999,40.8720743],"type":"Point"},"name":"Sing Wok Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056df3"},"location":{"coordinates":[-73.80275859999999,40.779919],"type":"Point"},"name":"Puccini Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056df4"},"location":{"coordinates":[-73.9888385,40.7580783],"type":"Point"},"name":"Mcdonalds"} +,{"_id":{"$oid":"55cba2476c522cafdb056df5"},"location":{"coordinates":[-73.96280759999999,40.6737522],"type":"Point"},"name":"Eve'S Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb056df6"},"location":{"coordinates":[-73.9799463,40.7600118],"type":"Point"},"name":"Radio City Music Hall"} +,{"_id":{"$oid":"55cba2476c522cafdb056df7"},"location":{"coordinates":[-73.9799463,40.7600118],"type":"Point"},"name":"Radio City Music Hall"} +,{"_id":{"$oid":"55cba2476c522cafdb056df8"},"location":{"coordinates":[-73.9799463,40.7600118],"type":"Point"},"name":"Radio City Music Hall"} +,{"_id":{"$oid":"55cba2476c522cafdb056df9"},"location":{"coordinates":[-73.9799463,40.7600118],"type":"Point"},"name":"Radio City Music Hall"} +,{"_id":{"$oid":"55cba2476c522cafdb056dfa"},"location":{"coordinates":[-73.9799463,40.7600118],"type":"Point"},"name":"Radio City Music Hall"} +,{"_id":{"$oid":"55cba2476c522cafdb056dfb"},"location":{"coordinates":[-73.9799463,40.7600118],"type":"Point"},"name":"Radio City Music Hall"} +,{"_id":{"$oid":"55cba2476c522cafdb056dfc"},"location":{"coordinates":[-73.9920875,40.6847543],"type":"Point"},"name":"Hophap"} +,{"_id":{"$oid":"55cba2476c522cafdb056dfd"},"location":{"coordinates":[-73.9364449,40.6697832],"type":"Point"},"name":"El Ranchito Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056dfe"},"location":{"coordinates":[-73.987831,40.757855],"type":"Point"},"name":"The Helen Hayes Theatre"} +,{"_id":{"$oid":"55cba2476c522cafdb056dff"},"location":{"coordinates":[-73.984927,40.727188],"type":"Point"},"name":"Physical Graffiti"} +,{"_id":{"$oid":"55cba2476c522cafdb056e00"},"location":{"coordinates":[-73.8006797,40.7115178],"type":"Point"},"name":"New China Star"} +,{"_id":{"$oid":"55cba2476c522cafdb056e01"},"location":{"coordinates":[-73.8794643,40.8818092],"type":"Point"},"name":"Blimpie"} +,{"_id":{"$oid":"55cba2476c522cafdb056e02"},"location":{"coordinates":[-73.9562906,40.674394],"type":"Point"},"name":"Sweet Basil"} +,{"_id":{"$oid":"55cba2476c522cafdb056e03"},"location":{"coordinates":[-73.86398729999999,40.7303929],"type":"Point"},"name":"Tandoor \u0026 Co"} +,{"_id":{"$oid":"55cba2476c522cafdb056e04"},"location":{"coordinates":[-73.977412,40.75001899999999],"type":"Point"},"name":"Nirvana"} +,{"_id":{"$oid":"55cba2476c522cafdb056e05"},"location":{"coordinates":[-73.95488019999999,40.686991],"type":"Point"},"name":"Sud Wine Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb056e06"},"location":{"coordinates":[-73.9983656,40.7373402],"type":"Point"},"name":"Sodexo America"} +,{"_id":{"$oid":"55cba2476c522cafdb056e07"},"location":{"coordinates":[-73.9812493,40.778724],"type":"Point"},"name":"Haagen-Dazs"} +,{"_id":{"$oid":"55cba2476c522cafdb056e08"},"location":{"coordinates":[-74.1354379,40.635531],"type":"Point"},"name":"El Paraiso Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb056e09"},"location":{"coordinates":[-73.9783518,40.777683],"type":"Point"},"name":"A.G Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb056e0a"},"location":{"coordinates":[-73.9189897,40.8254821],"type":"Point"},"name":"Checkers"} +,{"_id":{"$oid":"55cba2476c522cafdb056e0b"},"location":{"coordinates":[-74.01784669999999,40.6479187],"type":"Point"},"name":"The Lutheran Halal Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056e0c"},"location":{"coordinates":[-74.136768,40.62590489999999],"type":"Point"},"name":"Plaza Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb056e0d"},"location":{"coordinates":[-73.98635039999999,40.7596825],"type":"Point"},"name":"The Rum House"} +,{"_id":{"$oid":"55cba2476c522cafdb056e0e"},"location":{"coordinates":[-73.989847,40.673315],"type":"Point"},"name":"Halyards"} +,{"_id":{"$oid":"55cba2476c522cafdb056e0f"},"location":{"coordinates":[-74.0725099,40.6434772],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb056e10"},"location":{"coordinates":[-73.9253064,40.8636575],"type":"Point"},"name":"Nayelin Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056e11"},"location":{"coordinates":[-73.9734479,40.7525712],"type":"Point"},"name":"Bierhaus"} +,{"_id":{"$oid":"55cba2476c522cafdb056e12"},"location":{"coordinates":[-73.9829917,40.766993],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb056e13"},"location":{"coordinates":[-73.97843999999999,40.755533],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb056e14"},"location":{"coordinates":[-73.982002,40.74767],"type":"Point"},"name":"Dunkin Donuts, Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb056e15"},"location":{"coordinates":[-73.8324959,40.7603239],"type":"Point"},"name":"Prince Noodle House"} +,{"_id":{"$oid":"55cba2476c522cafdb056e16"},"location":{"coordinates":[-73.989025,40.759994],"type":"Point"},"name":"Bar Centrale"} +,{"_id":{"$oid":"55cba2476c522cafdb056e17"},"location":{"coordinates":[-73.92532059999999,40.7050632],"type":"Point"},"name":"Cafe Ghia"} +,{"_id":{"$oid":"55cba2476c522cafdb056e18"},"location":{"coordinates":[-73.9930147,40.7524427],"type":"Point"},"name":"Famous Famiglia"} +,{"_id":{"$oid":"55cba2476c522cafdb056e19"},"location":{"coordinates":[-73.9372767,40.70913729999999],"type":"Point"},"name":"The Anchored Inn"} +,{"_id":{"$oid":"55cba2476c522cafdb056e1a"},"location":{"coordinates":[-73.9192676,40.6339511],"type":"Point"},"name":"Yummy"} +,{"_id":{"$oid":"55cba2476c522cafdb056e1b"},"location":{"coordinates":[-73.9499398,40.6523547],"type":"Point"},"name":"New Northwest Aaa"} +,{"_id":{"$oid":"55cba2476c522cafdb056e1c"},"location":{"coordinates":[-74.0090342,40.7168674],"type":"Point"},"name":"Brushstroke (30 Hudson St)"} +,{"_id":{"$oid":"55cba2476c522cafdb056e1d"},"location":{"coordinates":[-73.8466183,40.721023],"type":"Point"},"name":"Agora Taverna"} +,{"_id":{"$oid":"55cba2476c522cafdb056e1e"},"location":{"coordinates":[-74.142335,40.624501],"type":"Point"},"name":"Lunch Box"} +,{"_id":{"$oid":"55cba2476c522cafdb056e1f"},"location":{"coordinates":[-73.9502055,40.6591579],"type":"Point"},"name":"Joy Ii Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb056e20"},"location":{"coordinates":[-73.90689449999999,40.85068769999999],"type":"Point"},"name":"Golden Dragon Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056e21"},"location":{"coordinates":[-73.9551865,40.7643715],"type":"Point"},"name":"Au Bon Pain"} +,{"_id":{"$oid":"55cba2476c522cafdb056e22"},"location":{"coordinates":[-73.869945,40.7704394],"type":"Point"},"name":"Mexi Joe'S Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb056e23"},"location":{"coordinates":[-73.9020754,40.7608643],"type":"Point"},"name":"Ultimate Fitness, Queens"} +,{"_id":{"$oid":"55cba2476c522cafdb056e24"},"location":{"coordinates":[-73.81133559999999,40.7022559],"type":"Point"},"name":"Marina Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056e25"},"location":{"coordinates":[-74.1348058,40.6356708],"type":"Point"},"name":"San Martin Mexican Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056e26"},"location":{"coordinates":[-73.8657649,40.71035759999999],"type":"Point"},"name":"Top China Buffet"} +,{"_id":{"$oid":"55cba2476c522cafdb056e27"},"location":{"coordinates":[-74.0016191,40.7405578],"type":"Point"},"name":"Blue Ginger"} +,{"_id":{"$oid":"55cba2476c522cafdb056e28"},"location":{"coordinates":[-73.93338159999999,40.6714859],"type":"Point"},"name":"Happy Family"} +,{"_id":{"$oid":"55cba2476c522cafdb056e29"},"location":{"coordinates":[-73.99494659999999,40.7661872],"type":"Point"},"name":"Restaurant Associates @ Kenneth Cole"} +,{"_id":{"$oid":"55cba2476c522cafdb056e2a"},"location":{"coordinates":[-73.94049799999999,40.792782],"type":"Point"},"name":"Las Panteras Negras Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056e2b"},"location":{"coordinates":[-73.8485762,40.8226926],"type":"Point"},"name":"Crown Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb056e2c"},"location":{"coordinates":[-73.9237629,40.704621],"type":"Point"},"name":"Greenstreets Salads"} +,{"_id":{"$oid":"55cba2476c522cafdb056e2d"},"location":{"coordinates":[-73.924864,40.762078],"type":"Point"},"name":"Starbucks # 14840"} +,{"_id":{"$oid":"55cba2476c522cafdb056e2e"},"location":{"coordinates":[-73.9345384,40.7978207],"type":"Point"},"name":"Evelyn'S Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb056e2f"},"location":{"coordinates":[-74.0045746,40.7300993],"type":"Point"},"name":"Grand Sichuan"} +,{"_id":{"$oid":"55cba2476c522cafdb056e30"},"location":{"coordinates":[-73.9506138,40.7789898],"type":"Point"},"name":"Shoga-Sushi \u0026 Oyster Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb056e31"},"location":{"coordinates":[-73.85060899999999,40.6939319],"type":"Point"},"name":"Independence Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056e32"},"location":{"coordinates":[-73.9446202,40.7473653],"type":"Point"},"name":"Pumpernickel Bagel"} +,{"_id":{"$oid":"55cba2476c522cafdb056e33"},"location":{"coordinates":[-73.8799004,40.7480787],"type":"Point"},"name":"Carvel Ice Cream"} +,{"_id":{"$oid":"55cba2476c522cafdb056e34"},"location":{"coordinates":[-74.0069963,40.6373829],"type":"Point"},"name":"Lp 28 Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056e35"},"location":{"coordinates":[-74.0021187,40.7409573],"type":"Point"},"name":"Google-Truck Pit"} +,{"_id":{"$oid":"55cba2476c522cafdb056e36"},"location":{"coordinates":[-73.9886598,40.7565811],"type":"Point"},"name":"Amc Theatres Empire 25"} +,{"_id":{"$oid":"55cba2476c522cafdb056e37"},"location":{"coordinates":[-73.9886598,40.7565811],"type":"Point"},"name":"Amc Theatres Empire 25"} +,{"_id":{"$oid":"55cba2476c522cafdb056e38"},"location":{"coordinates":[-73.92293289999999,40.7432047],"type":"Point"},"name":"Salt And Fat"} +,{"_id":{"$oid":"55cba2476c522cafdb056e39"},"location":{"coordinates":[-73.9098999,40.694258],"type":"Point"},"name":"Angela'S Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb056e3a"},"location":{"coordinates":[-73.9886598,40.7565811],"type":"Point"},"name":"Amc Theatres Empire 25"} +,{"_id":{"$oid":"55cba2476c522cafdb056e3b"},"location":{"coordinates":[-73.9886598,40.7565811],"type":"Point"},"name":"Amc Theatres Empire 25"} +,{"_id":{"$oid":"55cba2476c522cafdb056e3c"},"location":{"coordinates":[-73.9795366,40.7437408],"type":"Point"},"name":"Teqa"} +,{"_id":{"$oid":"55cba2476c522cafdb056e3d"},"location":{"coordinates":[-73.9357517,40.7992616],"type":"Point"},"name":"Wimpy'S Restaurant 5"} +,{"_id":{"$oid":"55cba2476c522cafdb056e3e"},"location":{"coordinates":[-73.7181414,40.7588236],"type":"Point"},"name":"North Shore Towers And Country Club"} +,{"_id":{"$oid":"55cba2476c522cafdb056e3f"},"location":{"coordinates":[-73.97469099999999,40.5970163],"type":"Point"},"name":"Tasty House"} +,{"_id":{"$oid":"55cba2476c522cafdb056e40"},"location":{"coordinates":[-73.9536579,40.683256],"type":"Point"},"name":"Green City Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb056e41"},"location":{"coordinates":[-73.96751460000002,40.6931234],"type":"Point"},"name":"Thai 101"} +,{"_id":{"$oid":"55cba2476c522cafdb056e42"},"location":{"coordinates":[-74.00008199999999,40.720807],"type":"Point"},"name":"The International Culinary Institute"} +,{"_id":{"$oid":"55cba2476c522cafdb056e43"},"location":{"coordinates":[-73.987107,40.721218],"type":"Point"},"name":"Souvlaki Gr Les"} +,{"_id":{"$oid":"55cba2476c522cafdb056e44"},"location":{"coordinates":[-73.7796482,40.7298486],"type":"Point"},"name":"Turquoise Kosher Fish Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056e45"},"location":{"coordinates":[-73.9591846,40.6532337],"type":"Point"},"name":"Green Lake"} +,{"_id":{"$oid":"55cba2476c522cafdb056e46"},"location":{"coordinates":[-74.00314689999999,40.7341333],"type":"Point"},"name":"Empellon"} +,{"_id":{"$oid":"55cba2476c522cafdb056e47"},"location":{"coordinates":[-73.9494634,40.6805429],"type":"Point"},"name":"Golden Krust Carribean Bakery \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb056e48"},"location":{"coordinates":[-92.72719889999999,41.7461409],"type":"Point"},"name":"Just Salad"} +,{"_id":{"$oid":"55cba2476c522cafdb056e49"},"location":{"coordinates":[-73.991461,40.74345],"type":"Point"},"name":"Tappo"} +,{"_id":{"$oid":"55cba2476c522cafdb056e4a"},"location":{"coordinates":[-74.0035553,40.7311971],"type":"Point"},"name":"Bosie Tea Parlor"} +,{"_id":{"$oid":"55cba2476c522cafdb056e4b"},"location":{"coordinates":[-73.851439,40.6939421],"type":"Point"},"name":"Chinese No. 1 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056e4c"},"location":{"coordinates":[-73.9803096,40.6600549],"type":"Point"},"name":"#1 Garden Chinese"} +,{"_id":{"$oid":"55cba2476c522cafdb056e4d"},"location":{"coordinates":[-73.9356671,40.7543636],"type":"Point"},"name":"Vista Sky Lounge \u0026 Catering (Sheraton Four Points)"} +,{"_id":{"$oid":"55cba2476c522cafdb056e4e"},"location":{"coordinates":[-73.9400488,40.7942388],"type":"Point"},"name":"The Duck"} +,{"_id":{"$oid":"55cba2476c522cafdb056e4f"},"location":{"coordinates":[-73.9968889,40.7211057],"type":"Point"},"name":"Tobys Public House"} +,{"_id":{"$oid":"55cba2476c522cafdb056e50"},"location":{"coordinates":[-73.83390820000001,40.7560273],"type":"Point"},"name":"Ceo Ktv \u0026 Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056e51"},"location":{"coordinates":[-73.9356671,40.7543636],"type":"Point"},"name":"Michael'S Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056e52"},"location":{"coordinates":[-73.980874,40.6601799],"type":"Point"},"name":"Windsor Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056e53"},"location":{"coordinates":[-73.86168599999999,40.74726099999999],"type":"Point"},"name":"Fiesta Latina Sports Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb056e54"},"location":{"coordinates":[-73.9392579,40.826971],"type":"Point"},"name":"Hot Pot Under De' Tree"} +,{"_id":{"$oid":"55cba2476c522cafdb056e55"},"location":{"coordinates":[-73.9488607,40.7503248],"type":"Point"},"name":"Aunt Rosie'S Coffee Shop \u0026 Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb056e56"},"location":{"coordinates":[-73.9997829,40.605147],"type":"Point"},"name":"Antojitos Deli Food"} +,{"_id":{"$oid":"55cba2476c522cafdb056e57"},"location":{"coordinates":[-73.9211359,40.7635015],"type":"Point"},"name":"Pachanga Patterson"} +,{"_id":{"$oid":"55cba2476c522cafdb056e58"},"location":{"coordinates":[-73.9889706,40.730246],"type":"Point"},"name":"Birdbath"} +,{"_id":{"$oid":"55cba2476c522cafdb056e59"},"location":{"coordinates":[-73.9534855,40.7293442],"type":"Point"},"name":"Upright Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb056e5a"},"location":{"coordinates":[-73.8826526,40.8174504],"type":"Point"},"name":"Chinese Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb056e5b"},"location":{"coordinates":[-73.9981438,40.71660199999999],"type":"Point"},"name":"Hoy Wong Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056e5c"},"location":{"coordinates":[-73.85544689999999,40.8314663],"type":"Point"},"name":"Vidaelva"} +,{"_id":{"$oid":"55cba2476c522cafdb056e5d"},"location":{"coordinates":[-73.89496930000001,40.70113629999999],"type":"Point"},"name":"Trattoria Cerbone"} +,{"_id":{"$oid":"55cba2476c522cafdb056e5e"},"location":{"coordinates":[-73.98266149999999,40.73898519999999],"type":"Point"},"name":"Taproom No. 307"} +,{"_id":{"$oid":"55cba2476c522cafdb056e5f"},"location":{"coordinates":[-73.9205039,40.86729769999999],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb056e60"},"location":{"coordinates":[-73.8260645,40.751886],"type":"Point"},"name":"Choopan Kabab Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056e61"},"location":{"coordinates":[-73.95648039999999,40.76908110000001],"type":"Point"},"name":"Hospoda"} +,{"_id":{"$oid":"55cba2476c522cafdb056e62"},"location":{"coordinates":[-73.918398,40.846452],"type":"Point"},"name":"Empire Chinese Restaurant Zheng"} +,{"_id":{"$oid":"55cba2476c522cafdb056e63"},"location":{"coordinates":[-73.98452390000001,40.7401539],"type":"Point"},"name":"Coco Fresh Tea \u0026 Juice"} +,{"_id":{"$oid":"55cba2476c522cafdb056e64"},"location":{"coordinates":[-73.94981,40.780043],"type":"Point"},"name":"Baluchi'S Indian Food"} +,{"_id":{"$oid":"55cba2476c522cafdb056e65"},"location":{"coordinates":[-73.8640056,40.8325644],"type":"Point"},"name":"King Sunshine Jerk Center"} +,{"_id":{"$oid":"55cba2476c522cafdb056e66"},"location":{"coordinates":[-73.954416,40.777652],"type":"Point"},"name":"Chipotle Mexican Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb056e67"},"location":{"coordinates":[-73.9237689,40.761455],"type":"Point"},"name":"Romanos Famous Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056e68"},"location":{"coordinates":[-73.867966,40.752118],"type":"Point"},"name":"China Delight"} +,{"_id":{"$oid":"55cba2476c522cafdb056e69"},"location":{"coordinates":[-73.8474284,40.7818022],"type":"Point"},"name":"Party Zone"} +,{"_id":{"$oid":"55cba2476c522cafdb056e6a"},"location":{"coordinates":[-73.944913,40.793707],"type":"Point"},"name":"Taqueria Guadalupe"} +,{"_id":{"$oid":"55cba2476c522cafdb056e6b"},"location":{"coordinates":[-73.862045,40.88554999999999],"type":"Point"},"name":"Domino'S Pizza 3537"} +,{"_id":{"$oid":"55cba2476c522cafdb056e6c"},"location":{"coordinates":[-73.846963,40.8768377],"type":"Point"},"name":"Domino'S Pizza 3657"} +,{"_id":{"$oid":"55cba2476c522cafdb056e6d"},"location":{"coordinates":[-73.7182483,40.7437646],"type":"Point"},"name":"Sagar Chinese"} +,{"_id":{"$oid":"55cba2476c522cafdb056e6e"},"location":{"coordinates":[-73.9571974,40.6734473],"type":"Point"},"name":"Chavela'S"} +,{"_id":{"$oid":"55cba2476c522cafdb056e6f"},"location":{"coordinates":[-73.97900469999999,40.68466189999999],"type":"Point"},"name":"Bacchus"} +,{"_id":{"$oid":"55cba2476c522cafdb056e70"},"location":{"coordinates":[-74.0005429,40.72955899999999],"type":"Point"},"name":"Thelewala"} +,{"_id":{"$oid":"55cba2476c522cafdb056e71"},"location":{"coordinates":[-73.9879345,40.7203953],"type":"Point"},"name":"Local 138"} +,{"_id":{"$oid":"55cba2476c522cafdb056e72"},"location":{"coordinates":[-73.9901478,40.7733326],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb056e73"},"location":{"coordinates":[-73.9777797,40.78348580000001],"type":"Point"},"name":"Swagat"} +,{"_id":{"$oid":"55cba2476c522cafdb056e74"},"location":{"coordinates":[-73.9195383,40.8650725],"type":"Point"},"name":"D'Fruit O-Ppia Le-Fruitis Plaza"} +,{"_id":{"$oid":"55cba2476c522cafdb056e75"},"location":{"coordinates":[-73.8671384,40.69110879999999],"type":"Point"},"name":"Eastern Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056e76"},"location":{"coordinates":[-74.0158213,40.7149813],"type":"Point"},"name":"Shake Shack"} +,{"_id":{"$oid":"55cba2476c522cafdb056e77"},"location":{"coordinates":[-74.0018603,40.7453162],"type":"Point"},"name":"Billy'S Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb056e78"},"location":{"coordinates":[-73.85060770000001,40.8313716],"type":"Point"},"name":"Marisco Centro"} +,{"_id":{"$oid":"55cba2476c522cafdb056e79"},"location":{"coordinates":[-74.1171975,40.6352751],"type":"Point"},"name":"Aaa Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb056e7a"},"location":{"coordinates":[-73.9464869,40.8161242],"type":"Point"},"name":"New Crispy Bamboo"} +,{"_id":{"$oid":"55cba2476c522cafdb056e7b"},"location":{"coordinates":[-73.955343,40.772429],"type":"Point"},"name":"Bocca"} +,{"_id":{"$oid":"55cba2476c522cafdb056e7c"},"location":{"coordinates":[-74.216489,40.52226599999999],"type":"Point"},"name":"New Midfield Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb056e7d"},"location":{"coordinates":[-73.98089999999999,40.741425],"type":"Point"},"name":"Mia Chef Gelateria"} +,{"_id":{"$oid":"55cba2476c522cafdb056e7e"},"location":{"coordinates":[-90.336697,38.727557],"type":"Point"},"name":"Crust"} +,{"_id":{"$oid":"55cba2476c522cafdb056e7f"},"location":{"coordinates":[-73.9742747,40.7642202],"type":"Point"},"name":"Fp Patisserie"} +,{"_id":{"$oid":"55cba2476c522cafdb056e80"},"location":{"coordinates":[-74.001312,40.727951],"type":"Point"},"name":"Melvins Juice Shopmiss Lily'S"} +,{"_id":{"$oid":"55cba2476c522cafdb056e81"},"location":{"coordinates":[-73.9508101,40.6589962],"type":"Point"},"name":"Picky Eaters Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056e82"},"location":{"coordinates":[-73.7822056,40.6434612],"type":"Point"},"name":"Lavazza Espresso Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb056e83"},"location":{"coordinates":[-73.9631911,40.6491624],"type":"Point"},"name":"Ju Ju'S Hot Spot"} +,{"_id":{"$oid":"55cba2476c522cafdb056e84"},"location":{"coordinates":[-73.8303783,40.7698362],"type":"Point"},"name":"Kung Fu Tea"} +,{"_id":{"$oid":"55cba2476c522cafdb056e85"},"location":{"coordinates":[-73.96638999999999,40.760397],"type":"Point"},"name":"Dawat"} +,{"_id":{"$oid":"55cba2476c522cafdb056e86"},"location":{"coordinates":[-73.9336783,40.6001292],"type":"Point"},"name":"New Knapp St Lucky Star"} +,{"_id":{"$oid":"55cba2476c522cafdb056e87"},"location":{"coordinates":[-73.9607528,40.7195575],"type":"Point"},"name":"Rosarito Fish Shack \u0026 Shelter Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056e88"},"location":{"coordinates":[-73.914861,40.814618],"type":"Point"},"name":"La Granja Peruvian Restaurant ."} +,{"_id":{"$oid":"55cba2476c522cafdb056e89"},"location":{"coordinates":[-73.985356,40.751509],"type":"Point"},"name":"Cafe 37"} +,{"_id":{"$oid":"55cba2476c522cafdb056e8a"},"location":{"coordinates":[-73.98837499999999,40.725499],"type":"Point"},"name":"Wasan"} +,{"_id":{"$oid":"55cba2476c522cafdb056e8b"},"location":{"coordinates":[-73.9182402,40.7588787],"type":"Point"},"name":"The Queens Kickshaw"} +,{"_id":{"$oid":"55cba2476c522cafdb056e8c"},"location":{"coordinates":[-73.8134862,40.7884884],"type":"Point"},"name":"Cozy Diner \u0026 Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056e8d"},"location":{"coordinates":[-74.1122015,40.5715708],"type":"Point"},"name":"Something Sweet"} +,{"_id":{"$oid":"55cba2476c522cafdb056e8e"},"location":{"coordinates":[-73.9988889,40.7477778],"type":"Point"},"name":"Chickpea"} +,{"_id":{"$oid":"55cba2476c522cafdb056e8f"},"location":{"coordinates":[-73.9705791,40.7587571],"type":"Point"},"name":"Chickpea"} +,{"_id":{"$oid":"55cba2476c522cafdb056e90"},"location":{"coordinates":[-73.95900170000002,40.6523702],"type":"Point"},"name":"Jen'S Roti Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb056e91"},"location":{"coordinates":[-73.9876708,40.7613296],"type":"Point"},"name":"Patzeria Family \u0026 Friends"} +,{"_id":{"$oid":"55cba2476c522cafdb056e92"},"location":{"coordinates":[-73.99212949999999,40.76458],"type":"Point"},"name":"Meemo"} +,{"_id":{"$oid":"55cba2476c522cafdb056e93"},"location":{"coordinates":[-73.96264250000002,40.6103463],"type":"Point"},"name":"Subsational"} +,{"_id":{"$oid":"55cba2476c522cafdb056e94"},"location":{"coordinates":[-73.9637962,40.7734307],"type":"Point"},"name":"Untitled"} +,{"_id":{"$oid":"55cba2476c522cafdb056e95"},"location":{"coordinates":[-73.9610261,40.7141287],"type":"Point"},"name":"Breukelen Bier Merchants"} +,{"_id":{"$oid":"55cba2476c522cafdb056e96"},"location":{"coordinates":[-73.732154,40.7208759],"type":"Point"},"name":"Stella'S Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb056e97"},"location":{"coordinates":[-73.95362899999999,40.775834],"type":"Point"},"name":"Om"} +,{"_id":{"$oid":"55cba2476c522cafdb056e98"},"location":{"coordinates":[-74.017979,40.645036],"type":"Point"},"name":"Los Compadres Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056e99"},"location":{"coordinates":[-73.9309111,40.6603805],"type":"Point"},"name":"Dacta Bird Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb056e9a"},"location":{"coordinates":[-73.9182288,40.767363],"type":"Point"},"name":"El-Omda"} +,{"_id":{"$oid":"55cba2476c522cafdb056e9b"},"location":{"coordinates":[-77.41197009999999,37.2845625],"type":"Point"},"name":"Jamaican Flavors"} +,{"_id":{"$oid":"55cba2476c522cafdb056e9c"},"location":{"coordinates":[-73.95585009999999,40.7770708],"type":"Point"},"name":"Indian Tandoor Oven"} +,{"_id":{"$oid":"55cba2476c522cafdb056e9d"},"location":{"coordinates":[-73.9088453,40.7608389],"type":"Point"},"name":"Shillelagh Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb056e9e"},"location":{"coordinates":[-73.99016,40.6867023],"type":"Point"},"name":"Van Leeuwen Artisan Ice Cream"} +,{"_id":{"$oid":"55cba2476c522cafdb056e9f"},"location":{"coordinates":[-73.989166,40.729513],"type":"Point"},"name":"Van Leeuwen Artisan Ice Cream"} +,{"_id":{"$oid":"55cba2476c522cafdb056ea0"},"location":{"coordinates":[-73.924661,40.66064799999999],"type":"Point"},"name":"S \u0026 P Internet Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056ea1"},"location":{"coordinates":[-73.74346369999999,40.6968435],"type":"Point"},"name":"Hi Tea"} +,{"_id":{"$oid":"55cba2476c522cafdb056ea2"},"location":{"coordinates":[-73.8516264,40.7266189],"type":"Point"},"name":"Stix Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056ea3"},"location":{"coordinates":[-73.9714731,40.7567935],"type":"Point"},"name":"The Met Grill/Double Tree Hotel"} +,{"_id":{"$oid":"55cba2476c522cafdb056ea4"},"location":{"coordinates":[-73.8610267,40.6832591],"type":"Point"},"name":"Jim Byrne Wee Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb056ea5"},"location":{"coordinates":[-73.90131099999999,40.746555],"type":"Point"},"name":"Natalia Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb056ea6"},"location":{"coordinates":[-73.80872099999999,40.7020279],"type":"Point"},"name":"Little Caesars Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056ea7"},"location":{"coordinates":[-73.8434426,40.7207874],"type":"Point"},"name":"Banter"} +,{"_id":{"$oid":"55cba2476c522cafdb056ea8"},"location":{"coordinates":[-73.909071,40.851431],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb056ea9"},"location":{"coordinates":[-74.07234,40.621825],"type":"Point"},"name":"Kum Fung Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb056eaa"},"location":{"coordinates":[-73.9487244,40.6339119],"type":"Point"},"name":"Mcbeans Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056eab"},"location":{"coordinates":[-73.987678,40.740434],"type":"Point"},"name":"Lin'S Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056eac"},"location":{"coordinates":[-73.9581293,40.8150606],"type":"Point"},"name":"Lincoln Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb056ead"},"location":{"coordinates":[-73.9961909,40.7208794],"type":"Point"},"name":"Asia Dog"} +,{"_id":{"$oid":"55cba2476c522cafdb056eae"},"location":{"coordinates":[-73.987776,40.722326],"type":"Point"},"name":"Taqueria Lower East Side"} +,{"_id":{"$oid":"55cba2476c522cafdb056eaf"},"location":{"coordinates":[-73.8076119,40.7002833],"type":"Point"},"name":"Air Bar/ Ny Deli/ Tim Hortons"} +,{"_id":{"$oid":"55cba2476c522cafdb056eb0"},"location":{"coordinates":[-73.95085499999999,40.77958],"type":"Point"},"name":"The Brown Cup"} +,{"_id":{"$oid":"55cba2476c522cafdb056eb1"},"location":{"coordinates":[-73.891508,40.829339],"type":"Point"},"name":"Luke'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056eb2"},"location":{"coordinates":[-73.881249,40.756259],"type":"Point"},"name":"Wine Garden Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056eb3"},"location":{"coordinates":[-73.85290710000001,40.7109781],"type":"Point"},"name":"Wafa'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056eb4"},"location":{"coordinates":[-74.03026899999999,40.616307],"type":"Point"},"name":"Supreme Bagels"} +,{"_id":{"$oid":"55cba2476c522cafdb056eb5"},"location":{"coordinates":[-74.2385704,40.5235634],"type":"Point"},"name":"The Loft At Ariana'S Grand"} +,{"_id":{"$oid":"55cba2476c522cafdb056eb6"},"location":{"coordinates":[-73.9259928,40.82713630000001],"type":"Point"},"name":"Yankee Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb056eb7"},"location":{"coordinates":[-73.96064299999999,40.772188],"type":"Point"},"name":"Eats"} +,{"_id":{"$oid":"55cba2476c522cafdb056eb8"},"location":{"coordinates":[-74.01094309999999,40.7045767],"type":"Point"},"name":"Luke'S Lobster"} +,{"_id":{"$oid":"55cba2476c522cafdb056eb9"},"location":{"coordinates":[-74.000607,40.736125],"type":"Point"},"name":"The Meatball Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb056eba"},"location":{"coordinates":[-73.950306,40.78033],"type":"Point"},"name":"Mole Cantina Mexicana"} +,{"_id":{"$oid":"55cba2476c522cafdb056ebb"},"location":{"coordinates":[-73.9576213,40.7182749],"type":"Point"},"name":"The Meatball Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb056ebc"},"location":{"coordinates":[-73.872922,40.675505],"type":"Point"},"name":"Sea Four A Change Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056ebd"},"location":{"coordinates":[-73.9244026,40.8281746],"type":"Point"},"name":"New Sunflower"} +,{"_id":{"$oid":"55cba2476c522cafdb056ebe"},"location":{"coordinates":[-74.0842335,40.597161],"type":"Point"},"name":"Brooklyns Finest Pizza \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056ebf"},"location":{"coordinates":[-73.9210406,40.7629293],"type":"Point"},"name":"Djerdan"} +,{"_id":{"$oid":"55cba2476c522cafdb056ec0"},"location":{"coordinates":[-73.9387594,40.755693],"type":"Point"},"name":"Something'S Cooking Catering"} +,{"_id":{"$oid":"55cba2476c522cafdb056ec1"},"location":{"coordinates":[-73.99451169999999,40.7479738],"type":"Point"},"name":"Banana Leaf Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056ec2"},"location":{"coordinates":[-73.988585,40.691002],"type":"Point"},"name":"Shuk Mediterranean Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb056ec3"},"location":{"coordinates":[-73.9775295,40.75950750000001],"type":"Point"},"name":"Simply Food"} +,{"_id":{"$oid":"55cba2476c522cafdb056ec4"},"location":{"coordinates":[-73.97917699999999,40.754208],"type":"Point"},"name":"Nissi'S"} +,{"_id":{"$oid":"55cba2476c522cafdb056ec5"},"location":{"coordinates":[-73.7822056,40.6434612],"type":"Point"},"name":"Wok \u0026 Roll"} +,{"_id":{"$oid":"55cba2476c522cafdb056ec6"},"location":{"coordinates":[-74.0068953,40.70999219999999],"type":"Point"},"name":"Red Mango"} +,{"_id":{"$oid":"55cba2476c522cafdb056ec7"},"location":{"coordinates":[-73.881615,40.828093],"type":"Point"},"name":"Sabana Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb056ec8"},"location":{"coordinates":[-74.00345759999999,40.6513824],"type":"Point"},"name":"Kofte Piyaz Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056ec9"},"location":{"coordinates":[-73.991051,40.737643],"type":"Point"},"name":"Laut"} +,{"_id":{"$oid":"55cba2476c522cafdb056eca"},"location":{"coordinates":[-73.9367005,40.8497744],"type":"Point"},"name":"Ana'S Pastry Shop Corp."} +,{"_id":{"$oid":"55cba2476c522cafdb056ecb"},"location":{"coordinates":[-73.9465235,40.6001588],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb056ecc"},"location":{"coordinates":[-74.0057727,40.7356767],"type":"Point"},"name":"Frankies 570 Spuntino"} +,{"_id":{"$oid":"55cba2476c522cafdb056ecd"},"location":{"coordinates":[-73.932304,40.850705],"type":"Point"},"name":"Mi Ranchito Mexican Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056ece"},"location":{"coordinates":[-74.0005429,40.72955899999999],"type":"Point"},"name":"Creperie"} +,{"_id":{"$oid":"55cba2476c522cafdb056ecf"},"location":{"coordinates":[-73.9284397,40.7042856],"type":"Point"},"name":"Burger It Up"} +,{"_id":{"$oid":"55cba2476c522cafdb056ed0"},"location":{"coordinates":[-73.9473611,40.6293314],"type":"Point"},"name":"Napoli Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056ed1"},"location":{"coordinates":[-73.98384,40.6716819],"type":"Point"},"name":"Surfish Bistro"} +,{"_id":{"$oid":"55cba2476c522cafdb056ed2"},"location":{"coordinates":[-73.8934987,40.7473809],"type":"Point"},"name":"Gourmet Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056ed3"},"location":{"coordinates":[-73.7630032,40.7136132],"type":"Point"},"name":"Hardat Bakery And Roti Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb056ed4"},"location":{"coordinates":[-73.7741743,40.6709568],"type":"Point"},"name":"Early B Jamaican Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb056ed5"},"location":{"coordinates":[-73.98404099999999,40.739827],"type":"Point"},"name":"Ralph'S Famous Italian Ices"} +,{"_id":{"$oid":"55cba2476c522cafdb056ed6"},"location":{"coordinates":[-73.9521563,40.7819119],"type":"Point"},"name":"Kaia Wine Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb056ed7"},"location":{"coordinates":[-74.0059984,40.719229],"type":"Point"},"name":"Cafe Clementine"} +,{"_id":{"$oid":"55cba2476c522cafdb056ed8"},"location":{"coordinates":[-73.91769359999999,40.7466788],"type":"Point"},"name":"Saffron Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb056ed9"},"location":{"coordinates":[-94.7347535,39.6673607],"type":"Point"},"name":"La Boulangerie"} +,{"_id":{"$oid":"55cba2476c522cafdb056eda"},"location":{"coordinates":[-73.9736794,40.752446],"type":"Point"},"name":"Le Pain Quotidien"} +,{"_id":{"$oid":"55cba2476c522cafdb056edb"},"location":{"coordinates":[-74.00115,40.612889],"type":"Point"},"name":"Good View Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb056edc"},"location":{"coordinates":[-73.962751,40.5754141],"type":"Point"},"name":"Tatiana'S Cafe \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb056edd"},"location":{"coordinates":[-73.9329164,40.61925919999999],"type":"Point"},"name":"Smokeshack"} +,{"_id":{"$oid":"55cba2476c522cafdb056ede"},"location":{"coordinates":[-73.9924795,40.7396687],"type":"Point"},"name":"Zio"} +,{"_id":{"$oid":"55cba2476c522cafdb056edf"},"location":{"coordinates":[-73.967995,40.797753],"type":"Point"},"name":"Warique"} +,{"_id":{"$oid":"55cba2476c522cafdb056ee0"},"location":{"coordinates":[-73.98974299999999,40.688513],"type":"Point"},"name":"Two8Two Bar \u0026 Burger"} +,{"_id":{"$oid":"55cba2476c522cafdb056ee1"},"location":{"coordinates":[-73.879053,40.740749],"type":"Point"},"name":"Uncle Zhou Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056ee2"},"location":{"coordinates":[-73.98569599999999,40.7318981],"type":"Point"},"name":"Momofuku Milk Bar Ev"} +,{"_id":{"$oid":"55cba2476c522cafdb056ee3"},"location":{"coordinates":[-73.9387383,40.7971943],"type":"Point"},"name":"Taco Mix Usa"} +,{"_id":{"$oid":"55cba2476c522cafdb056ee4"},"location":{"coordinates":[-73.9492097,40.7138638],"type":"Point"},"name":"Bagelsmith"} +,{"_id":{"$oid":"55cba2476c522cafdb056ee5"},"location":{"coordinates":[-74.0048829,40.7304821],"type":"Point"},"name":"Almanac"} +,{"_id":{"$oid":"55cba2476c522cafdb056ee6"},"location":{"coordinates":[-73.981477,40.74439599999999],"type":"Point"},"name":"Hong Kong Noodle"} +,{"_id":{"$oid":"55cba2476c522cafdb056ee7"},"location":{"coordinates":[-73.9350126,40.7439997],"type":"Point"},"name":"Mbj Cafeteria/Laguardia Community College"} +,{"_id":{"$oid":"55cba2476c522cafdb056ee8"},"location":{"coordinates":[-73.7655162,40.6816715],"type":"Point"},"name":"New Hong Kong"} +,{"_id":{"$oid":"55cba2476c522cafdb056ee9"},"location":{"coordinates":[-73.9865514,40.7670877],"type":"Point"},"name":"Hanami Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb056eea"},"location":{"coordinates":[-73.7298088,40.6739117],"type":"Point"},"name":"Island Taste Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb056eeb"},"location":{"coordinates":[-74.0032189,40.73036159999999],"type":"Point"},"name":"Victory Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb056eec"},"location":{"coordinates":[-73.8514395,40.6939419],"type":"Point"},"name":"Panda King House"} +,{"_id":{"$oid":"55cba2476c522cafdb056eed"},"location":{"coordinates":[-73.992818,40.69415300000001],"type":"Point"},"name":"Nanatori Japanese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056eee"},"location":{"coordinates":[-73.946192,40.650744],"type":"Point"},"name":"China Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb056eef"},"location":{"coordinates":[-73.91770199999999,40.81496],"type":"Point"},"name":"El Nuevo Delicioso Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056ef0"},"location":{"coordinates":[-74.1476328,40.5601338],"type":"Point"},"name":"Great Kills Little League Inc"} +,{"_id":{"$oid":"55cba2476c522cafdb056ef1"},"location":{"coordinates":[-73.9517668,40.5990999],"type":"Point"},"name":"Golden Sands Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056ef2"},"location":{"coordinates":[-73.98865700000002,40.665959],"type":"Point"},"name":"Princess Pizza \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056ef3"},"location":{"coordinates":[-73.97338529999999,40.761523],"type":"Point"},"name":"Rieu Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056ef4"},"location":{"coordinates":[-73.81998159999999,40.88958940000001],"type":"Point"},"name":"Wendy'S"} +,{"_id":{"$oid":"55cba2476c522cafdb056ef5"},"location":{"coordinates":[-73.7381812,40.7142907],"type":"Point"},"name":"Tropical Jerk"} +,{"_id":{"$oid":"55cba2476c522cafdb056ef6"},"location":{"coordinates":[-73.9799053,40.68966959999999],"type":"Point"},"name":"Smashburger"} +,{"_id":{"$oid":"55cba2476c522cafdb056ef7"},"location":{"coordinates":[-73.8453981,40.8428749],"type":"Point"},"name":"Wendy'S"} +,{"_id":{"$oid":"55cba2476c522cafdb056ef8"},"location":{"coordinates":[-74.1690114,40.55854],"type":"Point"},"name":"Pronto Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056ef9"},"location":{"coordinates":[-73.98978509999999,40.7487912],"type":"Point"},"name":"Cafe R"} +,{"_id":{"$oid":"55cba2476c522cafdb056efa"},"location":{"coordinates":[-73.99320840000001,40.7001795],"type":"Point"},"name":"Tutt Heights Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056efb"},"location":{"coordinates":[-73.9830865,40.7731303],"type":"Point"},"name":"Arpeggio @ Avery Fisher Hall"} +,{"_id":{"$oid":"55cba2476c522cafdb056efc"},"location":{"coordinates":[-73.9830865,40.7731303],"type":"Point"},"name":"American Table Cafe And Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb056efd"},"location":{"coordinates":[-73.9892141,40.6653294],"type":"Point"},"name":"Der Kommissar"} +,{"_id":{"$oid":"55cba2476c522cafdb056efe"},"location":{"coordinates":[-73.9661501,40.7628067],"type":"Point"},"name":"Brgr"} +,{"_id":{"$oid":"55cba2476c522cafdb056eff"},"location":{"coordinates":[-73.9938411,40.7460955],"type":"Point"},"name":"Brgr"} +,{"_id":{"$oid":"55cba2476c522cafdb056f00"},"location":{"coordinates":[-73.8573467,40.8929225],"type":"Point"},"name":"Golden Krust Caribbean Bakery \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb056f01"},"location":{"coordinates":[-73.990259,40.715183],"type":"Point"},"name":"Cafe Grumpy Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb056f02"},"location":{"coordinates":[-73.92459,40.739546],"type":"Point"},"name":"Papa John'S"} +,{"_id":{"$oid":"55cba2476c522cafdb056f03"},"location":{"coordinates":[-73.8636097,40.8647293],"type":"Point"},"name":"Tulcimex Deli Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056f04"},"location":{"coordinates":[-74.06531749999999,40.6133159],"type":"Point"},"name":"Bin No 5"} +,{"_id":{"$oid":"55cba2476c522cafdb056f05"},"location":{"coordinates":[-73.763382,40.6803567],"type":"Point"},"name":"Reggae Food Restaurant \u0026 Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb056f06"},"location":{"coordinates":[-73.9826148,40.7778898],"type":"Point"},"name":"Little Italy Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056f07"},"location":{"coordinates":[-73.9609248,40.6597909],"type":"Point"},"name":"Golden Krust"} +,{"_id":{"$oid":"55cba2476c522cafdb056f08"},"location":{"coordinates":[-73.9505899,40.7797888],"type":"Point"},"name":"Midnight Express"} +,{"_id":{"$oid":"55cba2476c522cafdb056f09"},"location":{"coordinates":[-73.745029,40.677974],"type":"Point"},"name":"E \u0026 K Jamaican Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056f0a"},"location":{"coordinates":[-73.9794517,40.736112],"type":"Point"},"name":"Frank'S Trattoria"} +,{"_id":{"$oid":"55cba2476c522cafdb056f0b"},"location":{"coordinates":[-73.91807,40.75509599999999],"type":"Point"},"name":"Villa Brazil Cafe Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb056f0c"},"location":{"coordinates":[-73.9474772,40.7720882],"type":"Point"},"name":"East End Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb056f0d"},"location":{"coordinates":[-73.92852340000002,40.7050104],"type":"Point"},"name":"Kave Espresso Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb056f0e"},"location":{"coordinates":[-73.949916,40.651219],"type":"Point"},"name":"Caribbean Vibes Jamaican Restaurant And Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb056f0f"},"location":{"coordinates":[-73.86702149999999,40.74953439999999],"type":"Point"},"name":"Blackout Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb056f10"},"location":{"coordinates":[-73.9839278,40.725933],"type":"Point"},"name":"Mini Thai Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056f11"},"location":{"coordinates":[-73.8139966,40.7187636],"type":"Point"},"name":"Burgers Plus"} +,{"_id":{"$oid":"55cba2476c522cafdb056f12"},"location":{"coordinates":[-73.8628695,40.8834174],"type":"Point"},"name":"Gold Star Jerk Center"} +,{"_id":{"$oid":"55cba2476c522cafdb056f13"},"location":{"coordinates":[-73.945584,40.651248],"type":"Point"},"name":"Kal Bakery \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056f14"},"location":{"coordinates":[-73.904681,40.72408799999999],"type":"Point"},"name":"San Caffe"} +,{"_id":{"$oid":"55cba2476c522cafdb056f15"},"location":{"coordinates":[-73.81779759999999,40.7769904],"type":"Point"},"name":"Parkside Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb056f16"},"location":{"coordinates":[-74.0768064,40.6442909],"type":"Point"},"name":"M \u0026 K Spanish Restaurant Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb056f17"},"location":{"coordinates":[-73.86760509999999,40.8652727],"type":"Point"},"name":"Jr Primos Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056f18"},"location":{"coordinates":[-73.9132808,40.6786408],"type":"Point"},"name":"Crown Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb056f19"},"location":{"coordinates":[-74.0056918,40.6333101],"type":"Point"},"name":"Tengu Sushi \u0026 Noodle House"} +,{"_id":{"$oid":"55cba2476c522cafdb056f1a"},"location":{"coordinates":[-73.8912357,40.7471627],"type":"Point"},"name":"Phayul Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056f1b"},"location":{"coordinates":[-73.9930215,40.6983952],"type":"Point"},"name":"Vineapple"} +,{"_id":{"$oid":"55cba2476c522cafdb056f1c"},"location":{"coordinates":[-73.85089239999999,40.8327911],"type":"Point"},"name":"Empire Wok Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056f1d"},"location":{"coordinates":[-73.98171959999999,40.7499406],"type":"Point"},"name":"Piccolo Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056f1e"},"location":{"coordinates":[-73.9141571,40.65678630000001],"type":"Point"},"name":"Paradise 2 International Restaurant And Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb056f1f"},"location":{"coordinates":[-73.9634162,40.64193059999999],"type":"Point"},"name":"Bo Bo Kitchen Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056f20"},"location":{"coordinates":[-73.99219719999999,40.69965089999999],"type":"Point"},"name":"Asya Indian Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056f21"},"location":{"coordinates":[-73.912099,40.703438],"type":"Point"},"name":"D'Jimmy'S Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb056f22"},"location":{"coordinates":[-73.967816,40.757294],"type":"Point"},"name":"Jukai"} +,{"_id":{"$oid":"55cba2476c522cafdb056f23"},"location":{"coordinates":[-73.983171,40.746417],"type":"Point"},"name":"Silo Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056f24"},"location":{"coordinates":[-73.87829649999999,40.7560386],"type":"Point"},"name":"El Pollo Inka Peru"} +,{"_id":{"$oid":"55cba2476c522cafdb056f25"},"location":{"coordinates":[-73.9477979,40.8295932],"type":"Point"},"name":"New Happiness Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056f26"},"location":{"coordinates":[-73.9982078,40.7143443],"type":"Point"},"name":"Pulqueria"} +,{"_id":{"$oid":"55cba2476c522cafdb056f27"},"location":{"coordinates":[-73.8835059,40.8456604],"type":"Point"},"name":"El Nuevo Valle #2 Restaurant Lechonera"} +,{"_id":{"$oid":"55cba2476c522cafdb056f28"},"location":{"coordinates":[-73.9223493,40.8094409],"type":"Point"},"name":"King Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb056f29"},"location":{"coordinates":[-73.8797878,40.82852889999999],"type":"Point"},"name":"Little Caesars"} +,{"_id":{"$oid":"55cba2476c522cafdb056f2a"},"location":{"coordinates":[-73.8780309,40.82622],"type":"Point"},"name":"Great Wall Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056f2b"},"location":{"coordinates":[-73.872725,40.683243],"type":"Point"},"name":"Lee Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056f2c"},"location":{"coordinates":[-74.0023471,40.726683],"type":"Point"},"name":"Bella Donna Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056f2d"},"location":{"coordinates":[-73.976501,40.7570304],"type":"Point"},"name":"Madison Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb056f2e"},"location":{"coordinates":[-73.9896431,40.7229922],"type":"Point"},"name":"Lucky'S Famous Burgers"} +,{"_id":{"$oid":"55cba2476c522cafdb056f2f"},"location":{"coordinates":[-74.006519,40.734196],"type":"Point"},"name":"Red Farm/Decoy"} +,{"_id":{"$oid":"55cba2476c522cafdb056f30"},"location":{"coordinates":[-73.9401822,40.69250640000001],"type":"Point"},"name":"Due Fratelli Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056f31"},"location":{"coordinates":[-73.986858,40.7616668],"type":"Point"},"name":"West End Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb056f32"},"location":{"coordinates":[-73.9562947,40.71891189999999],"type":"Point"},"name":"Trix"} +,{"_id":{"$oid":"55cba2476c522cafdb056f33"},"location":{"coordinates":[-73.9705791,40.7587571],"type":"Point"},"name":"Melt Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb056f34"},"location":{"coordinates":[-74.003748,40.712931],"type":"Point"},"name":"Plaza Food Court"} +,{"_id":{"$oid":"55cba2476c522cafdb056f35"},"location":{"coordinates":[-73.9466461,40.7896665],"type":"Point"},"name":"Lechonera Tropical \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb056f36"},"location":{"coordinates":[-73.999939,40.738975],"type":"Point"},"name":"Coppelia Cuban Luncheonette"} +,{"_id":{"$oid":"55cba2476c522cafdb056f37"},"location":{"coordinates":[-73.96477709999999,40.6937488],"type":"Point"},"name":"Wray'S Caribbean And Seafood Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb056f38"},"location":{"coordinates":[-73.88424900000001,40.74465],"type":"Point"},"name":"New Taste Of China"} +,{"_id":{"$oid":"55cba2476c522cafdb056f39"},"location":{"coordinates":[-73.89696599999999,40.9046761],"type":"Point"},"name":"Bronx Burger House"} +,{"_id":{"$oid":"55cba2476c522cafdb056f3a"},"location":{"coordinates":[-74.00001,40.683416],"type":"Point"},"name":"Bar Bruno"} +,{"_id":{"$oid":"55cba2476c522cafdb056f3b"},"location":{"coordinates":[-73.8635717,40.7333304],"type":"Point"},"name":"Red Mango"} +,{"_id":{"$oid":"55cba2476c522cafdb056f3c"},"location":{"coordinates":[-73.9808149,40.7565934],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb056f3d"},"location":{"coordinates":[-74.0767097,40.64227109999999],"type":"Point"},"name":"Giuseppe'S Pizza At St George"} +,{"_id":{"$oid":"55cba2476c522cafdb056f3e"},"location":{"coordinates":[-73.9312712,40.6650086],"type":"Point"},"name":"Diamond Krust"} +,{"_id":{"$oid":"55cba2476c522cafdb056f3f"},"location":{"coordinates":[-74.00209389999999,40.7378037],"type":"Point"},"name":"Monument Lane"} +,{"_id":{"$oid":"55cba2476c522cafdb056f40"},"location":{"coordinates":[-73.93647650000001,40.6795326],"type":"Point"},"name":"Leon Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb056f41"},"location":{"coordinates":[-73.984213,40.663323],"type":"Point"},"name":"Couleur Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056f42"},"location":{"coordinates":[-73.9684738,40.67772679999999],"type":"Point"},"name":"Olde Brooklyn Bagel Shoppe"} +,{"_id":{"$oid":"55cba2476c522cafdb056f43"},"location":{"coordinates":[-73.8278593,40.69371940000001],"type":"Point"},"name":"India Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056f44"},"location":{"coordinates":[-73.9845608,40.7436369],"type":"Point"},"name":"Chicken Delicatessen"} +,{"_id":{"$oid":"55cba2476c522cafdb056f45"},"location":{"coordinates":[-74.03017899999999,40.62482],"type":"Point"},"name":"Caffe Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056f46"},"location":{"coordinates":[-73.9635,40.762265],"type":"Point"},"name":"Fresh N Delish"} +,{"_id":{"$oid":"55cba2476c522cafdb056f47"},"location":{"coordinates":[-73.98702279999999,40.7529687],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb056f48"},"location":{"coordinates":[-73.9036653,40.7751816],"type":"Point"},"name":"Cafe Milan"} +,{"_id":{"$oid":"55cba2476c522cafdb056f49"},"location":{"coordinates":[-73.9909459,40.754908],"type":"Point"},"name":"Nyc Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb056f4a"},"location":{"coordinates":[-73.9613036,40.7610875],"type":"Point"},"name":"Bistro 61"} +,{"_id":{"$oid":"55cba2476c522cafdb056f4b"},"location":{"coordinates":[-73.999916,40.7421099],"type":"Point"},"name":"City Cakes"} +,{"_id":{"$oid":"55cba2476c522cafdb056f4c"},"location":{"coordinates":[-73.96879229999999,40.7540432],"type":"Point"},"name":"Mee Noodle \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb056f4d"},"location":{"coordinates":[-73.9342442,40.8486483],"type":"Point"},"name":"La Nueva Espana"} +,{"_id":{"$oid":"55cba2476c522cafdb056f4e"},"location":{"coordinates":[-73.9257265,40.6700936],"type":"Point"},"name":"Sun Hing Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056f4f"},"location":{"coordinates":[-73.747896,40.715745],"type":"Point"},"name":"Bon Appetit Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056f50"},"location":{"coordinates":[-73.93011489999999,40.8319766],"type":"Point"},"name":"Chinese Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb056f51"},"location":{"coordinates":[-74.0220889,40.631651],"type":"Point"},"name":"Cedars Pastry"} +,{"_id":{"$oid":"55cba2476c522cafdb056f52"},"location":{"coordinates":[-73.9966611,40.7205753],"type":"Point"},"name":"Il Gelato"} +,{"_id":{"$oid":"55cba2476c522cafdb056f53"},"location":{"coordinates":[-73.77132189999999,40.7637306],"type":"Point"},"name":"Top Hot Bagels \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb056f54"},"location":{"coordinates":[-73.96405,40.67769000000001],"type":"Point"},"name":"Bearded Lady"} +,{"_id":{"$oid":"55cba2476c522cafdb056f55"},"location":{"coordinates":[-73.9844202,40.67103950000001],"type":"Point"},"name":"Dumplings \u0026 Things"} +,{"_id":{"$oid":"55cba2476c522cafdb056f56"},"location":{"coordinates":[-73.9450662,40.80785650000001],"type":"Point"},"name":"Mcdonalds"} +,{"_id":{"$oid":"55cba2476c522cafdb056f57"},"location":{"coordinates":[-73.9094827,40.6866047],"type":"Point"},"name":"Little Munchies"} +,{"_id":{"$oid":"55cba2476c522cafdb056f58"},"location":{"coordinates":[-73.94310449999999,40.8108763],"type":"Point"},"name":"Mcdonalds"} +,{"_id":{"$oid":"55cba2476c522cafdb056f59"},"location":{"coordinates":[-74.01290329999999,40.6771318],"type":"Point"},"name":"Hope \u0026 Anchor"} +,{"_id":{"$oid":"55cba2476c522cafdb056f5a"},"location":{"coordinates":[-73.9777266,40.7835508],"type":"Point"},"name":"Saravana Bhavan"} +,{"_id":{"$oid":"55cba2476c522cafdb056f5b"},"location":{"coordinates":[-73.983071,40.7414198],"type":"Point"},"name":"Saravana Bhavan"} +,{"_id":{"$oid":"55cba2476c522cafdb056f5c"},"location":{"coordinates":[-73.9216747,40.84576390000001],"type":"Point"},"name":"Cw Billar"} +,{"_id":{"$oid":"55cba2476c522cafdb056f5d"},"location":{"coordinates":[-73.99721319999999,40.7450216],"type":"Point"},"name":"Ports Coffee And Tea Co"} +,{"_id":{"$oid":"55cba2476c522cafdb056f5e"},"location":{"coordinates":[-74.00914399999999,40.64929],"type":"Point"},"name":"Famous Gourmet"} +,{"_id":{"$oid":"55cba2476c522cafdb056f5f"},"location":{"coordinates":[-73.9555135,40.6814912],"type":"Point"},"name":"Daily Press Bed-Stuy"} +,{"_id":{"$oid":"55cba2476c522cafdb056f60"},"location":{"coordinates":[-73.891161,40.854537],"type":"Point"},"name":"Real Azteca Ii Mexican Restaurant \u0026 Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb056f61"},"location":{"coordinates":[-73.9819129,40.77151449999999],"type":"Point"},"name":"Boulud Sud"} +,{"_id":{"$oid":"55cba2476c522cafdb056f62"},"location":{"coordinates":[-73.978859,40.7580598],"type":"Point"},"name":"Bouchon Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb056f63"},"location":{"coordinates":[-73.94976299999999,40.682025],"type":"Point"},"name":"Vodou Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb056f64"},"location":{"coordinates":[-73.98992799999999,40.7420207],"type":"Point"},"name":"Birreria (Eataly)"} +,{"_id":{"$oid":"55cba2476c522cafdb056f65"},"location":{"coordinates":[-73.97978119999999,40.7807149],"type":"Point"},"name":"16 Handles"} +,{"_id":{"$oid":"55cba2476c522cafdb056f66"},"location":{"coordinates":[-73.9858795,40.7571582],"type":"Point"},"name":"Bubba Gump Shrimp Co."} +,{"_id":{"$oid":"55cba2476c522cafdb056f67"},"location":{"coordinates":[-73.94601399999999,40.75108100000001],"type":"Point"},"name":"Five Star Banquet"} +,{"_id":{"$oid":"55cba2476c522cafdb056f68"},"location":{"coordinates":[-73.98935999999999,40.750927],"type":"Point"},"name":"Salt And Pepper Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb056f69"},"location":{"coordinates":[-73.95126359999999,40.7103737],"type":"Point"},"name":"Brooklyn Cupcake"} +,{"_id":{"$oid":"55cba2476c522cafdb056f6a"},"location":{"coordinates":[-73.987484,40.639801],"type":"Point"},"name":"Angela Restaurant Of Ny"} +,{"_id":{"$oid":"55cba2476c522cafdb056f6b"},"location":{"coordinates":[-74.00895469999999,40.7093329],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb056f6c"},"location":{"coordinates":[-74.00474899999999,40.604836],"type":"Point"},"name":"Jireh Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056f6d"},"location":{"coordinates":[-74.1212046,40.6052422],"type":"Point"},"name":"Manor Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb056f6e"},"location":{"coordinates":[-73.9100835,40.8860757],"type":"Point"},"name":"Metate Mexican Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056f6f"},"location":{"coordinates":[-73.7771542,40.6635078],"type":"Point"},"name":"Rockaway Plaza Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb056f70"},"location":{"coordinates":[-73.92520189999999,40.8623704],"type":"Point"},"name":"Dyckman Palace Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056f71"},"location":{"coordinates":[-73.9634171,40.6770524],"type":"Point"},"name":"Janelle'S Caribbean American Cuisine \u0026 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb056f72"},"location":{"coordinates":[-73.7217271,40.7253812],"type":"Point"},"name":"High Class Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056f73"},"location":{"coordinates":[-73.9508297,40.8208329],"type":"Point"},"name":"Bareplanet Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056f74"},"location":{"coordinates":[-73.9508297,40.8208329],"type":"Point"},"name":"Metropolitan Food Service"} +,{"_id":{"$oid":"55cba2476c522cafdb056f75"},"location":{"coordinates":[-73.8280733,40.8328567],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb056f76"},"location":{"coordinates":[-73.9865533,40.7263542],"type":"Point"},"name":"Upstate"} +,{"_id":{"$oid":"55cba2476c522cafdb056f77"},"location":{"coordinates":[-73.91416199999999,40.656691],"type":"Point"},"name":"Hillton Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056f78"},"location":{"coordinates":[-73.944499,40.715228],"type":"Point"},"name":"Sage"} +,{"_id":{"$oid":"55cba2476c522cafdb056f79"},"location":{"coordinates":[-73.9656112,40.7613728],"type":"Point"},"name":"The Carriage House"} +,{"_id":{"$oid":"55cba2476c522cafdb056f7a"},"location":{"coordinates":[-73.9694554,40.7588585],"type":"Point"},"name":"Omar'S Kitchen \u0026 Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb056f7b"},"location":{"coordinates":[-73.926957,40.652126],"type":"Point"},"name":"Rhapsody Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb056f7c"},"location":{"coordinates":[-73.88405589999999,40.8672504],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb056f7d"},"location":{"coordinates":[-73.99389819999999,40.7547177],"type":"Point"},"name":"Suger Flower Cake Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb056f7e"},"location":{"coordinates":[-73.98194200000002,40.61368299999999],"type":"Point"},"name":"Hop Fa Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb056f7f"},"location":{"coordinates":[-74.004308,40.71917699999999],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb056f80"},"location":{"coordinates":[-73.8106511,40.7643264],"type":"Point"},"name":"Seven Billiard"} +,{"_id":{"$oid":"55cba2476c522cafdb056f81"},"location":{"coordinates":[-73.978841,40.773515],"type":"Point"},"name":"The Leopard At Des Artistes"} +,{"_id":{"$oid":"55cba2476c522cafdb056f82"},"location":{"coordinates":[-73.9812215,40.7566971],"type":"Point"},"name":"Ceci Italian Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb056f83"},"location":{"coordinates":[-73.9889294,40.7203785],"type":"Point"},"name":"Goodfella'S Brick Oven Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056f84"},"location":{"coordinates":[-73.919561,40.8639994],"type":"Point"},"name":"Floridita Restaurant Uptown 2 Inc"} +,{"_id":{"$oid":"55cba2476c522cafdb056f85"},"location":{"coordinates":[-73.94780920000001,40.8246431],"type":"Point"},"name":"Falafel Tarboosh"} +,{"_id":{"$oid":"55cba2476c522cafdb056f86"},"location":{"coordinates":[-74.1349406,40.5599083],"type":"Point"},"name":"Uncle Louie G"} +,{"_id":{"$oid":"55cba2476c522cafdb056f87"},"location":{"coordinates":[-73.9915684,40.7408377],"type":"Point"},"name":"Trattoria Zero Otto Nove Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb056f88"},"location":{"coordinates":[-73.8790523,40.681492],"type":"Point"},"name":"Roti On The Run"} +,{"_id":{"$oid":"55cba2476c522cafdb056f89"},"location":{"coordinates":[-74.1157774,40.5738323],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb056f8a"},"location":{"coordinates":[-73.94187,40.8380118],"type":"Point"},"name":"Gogo-Gi"} +,{"_id":{"$oid":"55cba2476c522cafdb056f8b"},"location":{"coordinates":[-74.00504269999999,40.7113533],"type":"Point"},"name":"Pace University - Cafe 101"} +,{"_id":{"$oid":"55cba2476c522cafdb056f8c"},"location":{"coordinates":[-73.9923132,40.6835431],"type":"Point"},"name":"Jolie Cantina"} +,{"_id":{"$oid":"55cba2476c522cafdb056f8d"},"location":{"coordinates":[-73.913226,40.807391],"type":"Point"},"name":"Liang'S Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb056f8e"},"location":{"coordinates":[-73.9989464,40.7452401],"type":"Point"},"name":"Asuka Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb056f8f"},"location":{"coordinates":[-73.96119999999999,40.654848],"type":"Point"},"name":"Parkside Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb056f90"},"location":{"coordinates":[-73.93892199999999,40.837674],"type":"Point"},"name":"La Nueva Juquila Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056f91"},"location":{"coordinates":[-73.822776,40.754165],"type":"Point"},"name":"Mugi Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb056f92"},"location":{"coordinates":[-73.8823737,40.70167],"type":"Point"},"name":"King Wok"} +,{"_id":{"$oid":"55cba2476c522cafdb056f93"},"location":{"coordinates":[-73.9820513,40.732522],"type":"Point"},"name":"David'S Bagels"} +,{"_id":{"$oid":"55cba2476c522cafdb056f94"},"location":{"coordinates":[-92.72874879999999,41.7461464],"type":"Point"},"name":"Flavaboom"} +,{"_id":{"$oid":"55cba2476c522cafdb056f95"},"location":{"coordinates":[-73.9564468,40.8024825],"type":"Point"},"name":"Atomic Wings"} +,{"_id":{"$oid":"55cba2476c522cafdb056f96"},"location":{"coordinates":[-73.9982588,40.7153689],"type":"Point"},"name":"Xi'An Famous Foods"} +,{"_id":{"$oid":"55cba2476c522cafdb056f97"},"location":{"coordinates":[-73.8800411,40.7408701],"type":"Point"},"name":"Shellcove \u0026 Chinger"} +,{"_id":{"$oid":"55cba2476c522cafdb056f98"},"location":{"coordinates":[-73.8846942,40.6595615],"type":"Point"},"name":"Lin'S No.1 Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb056f99"},"location":{"coordinates":[-74.0014541,40.7408231],"type":"Point"},"name":"Padthai Noodle Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb056f9a"},"location":{"coordinates":[-73.9872855,40.7477239],"type":"Point"},"name":"Music Story"} +,{"_id":{"$oid":"55cba2476c522cafdb056f9b"},"location":{"coordinates":[-73.7724374,40.7669121],"type":"Point"},"name":"Teaspoon Bake Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb056f9c"},"location":{"coordinates":[-73.8201924,40.8248556],"type":"Point"},"name":"Yamada Japanese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056f9d"},"location":{"coordinates":[-73.9399876,40.8514952],"type":"Point"},"name":"Le Cheile"} +,{"_id":{"$oid":"55cba2476c522cafdb056f9e"},"location":{"coordinates":[-73.9510928,40.7749003],"type":"Point"},"name":"Felice"} +,{"_id":{"$oid":"55cba2476c522cafdb056f9f"},"location":{"coordinates":[-73.8635717,40.7333304],"type":"Point"},"name":"Panera Bread"} +,{"_id":{"$oid":"55cba2476c522cafdb056fa0"},"location":{"coordinates":[-73.98681839999999,40.7619137],"type":"Point"},"name":"Donna Bell'S Bake Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb056fa1"},"location":{"coordinates":[-74.131095,40.64005],"type":"Point"},"name":"Latin Paradise"} +,{"_id":{"$oid":"55cba2476c522cafdb056fa2"},"location":{"coordinates":[-74.013832,40.7077779],"type":"Point"},"name":"Madici21 Ristorante"} +,{"_id":{"$oid":"55cba2476c522cafdb056fa3"},"location":{"coordinates":[-73.9064891,40.7288776],"type":"Point"},"name":"Bella Donna Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb056fa4"},"location":{"coordinates":[-92.72802709999999,41.746171],"type":"Point"},"name":"Hale \u0026 Hearty Soups"} +,{"_id":{"$oid":"55cba2476c522cafdb056fa5"},"location":{"coordinates":[-73.9152819,40.74431209999999],"type":"Point"},"name":"I Am Thai Express Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056fa6"},"location":{"coordinates":[-73.9786972,40.7528028],"type":"Point"},"name":"Bread \u0026 Company"} +,{"_id":{"$oid":"55cba2476c522cafdb056fa7"},"location":{"coordinates":[-73.94163999999999,40.805838],"type":"Point"},"name":"Uptown Veg"} +,{"_id":{"$oid":"55cba2476c522cafdb056fa8"},"location":{"coordinates":[-74.007994,40.716698],"type":"Point"},"name":"Tiny'S And The Bar Upstairs"} +,{"_id":{"$oid":"55cba2476c522cafdb056fa9"},"location":{"coordinates":[-73.967457,40.755774],"type":"Point"},"name":"The Irish Exit"} +,{"_id":{"$oid":"55cba2476c522cafdb056faa"},"location":{"coordinates":[-74.0113257,40.7085815],"type":"Point"},"name":"Subway (Store #38550)"} +,{"_id":{"$oid":"55cba2476c522cafdb056fab"},"location":{"coordinates":[-74.1161364,40.5736035],"type":"Point"},"name":"Cantina Mexicana"} +,{"_id":{"$oid":"55cba2476c522cafdb056fac"},"location":{"coordinates":[-73.9912956,40.7496155],"type":"Point"},"name":"Little Italy Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056fad"},"location":{"coordinates":[-73.9210275,40.6413138],"type":"Point"},"name":"Panera Bread"} +,{"_id":{"$oid":"55cba2476c522cafdb056fae"},"location":{"coordinates":[-73.777802,40.691716],"type":"Point"},"name":"L \u0026 K Jamaican Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056faf"},"location":{"coordinates":[-74.0019116,40.6430706],"type":"Point"},"name":"4618 Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb056fb0"},"location":{"coordinates":[-73.9598012,40.80857899999999],"type":"Point"},"name":"West Place"} +,{"_id":{"$oid":"55cba2476c522cafdb056fb1"},"location":{"coordinates":[-90.336697,38.727557],"type":"Point"},"name":"Marine Air Terminal Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb056fb2"},"location":{"coordinates":[-73.8612642,40.6692864],"type":"Point"},"name":"Linden Boulevard Multiplex Cinema"} +,{"_id":{"$oid":"55cba2476c522cafdb056fb3"},"location":{"coordinates":[-74.00386800000001,40.750611],"type":"Point"},"name":"Sleep No More At The Mckittrick Hotel"} +,{"_id":{"$oid":"55cba2476c522cafdb056fb4"},"location":{"coordinates":[-73.9866749,40.7623368],"type":"Point"},"name":"Ichimasa Japanese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056fb5"},"location":{"coordinates":[-73.93059509999999,40.8532978],"type":"Point"},"name":"Tacos El Paisa"} +,{"_id":{"$oid":"55cba2476c522cafdb056fb6"},"location":{"coordinates":[-73.8766736,40.7486393],"type":"Point"},"name":"La Pequena Taste Of Italy Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb056fb7"},"location":{"coordinates":[-73.9858975,40.6855675],"type":"Point"},"name":"Rucola"} +,{"_id":{"$oid":"55cba2476c522cafdb056fb8"},"location":{"coordinates":[-73.85578939999999,40.73706610000001],"type":"Point"},"name":"City Place Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb056fb9"},"location":{"coordinates":[-73.97943649999999,40.7821643],"type":"Point"},"name":"The Cottage"} +,{"_id":{"$oid":"55cba2476c522cafdb056fba"},"location":{"coordinates":[-73.9941607,40.7454328],"type":"Point"},"name":"Argo Tea"} +,{"_id":{"$oid":"55cba2476c522cafdb056fbb"},"location":{"coordinates":[-73.9561559,40.640687],"type":"Point"},"name":"Quezada Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056fbc"},"location":{"coordinates":[-74.002017,40.737496],"type":"Point"},"name":"Juice Generation"} +,{"_id":{"$oid":"55cba2476c522cafdb056fbd"},"location":{"coordinates":[-73.8290939,40.759362],"type":"Point"},"name":"M S Han Song Ting"} +,{"_id":{"$oid":"55cba2476c522cafdb056fbe"},"location":{"coordinates":[-73.996572,40.711867],"type":"Point"},"name":"Bread Talk"} +,{"_id":{"$oid":"55cba2476c522cafdb056fbf"},"location":{"coordinates":[-73.98860669999999,40.6921225],"type":"Point"},"name":"Shake Shack"} +,{"_id":{"$oid":"55cba2476c522cafdb056fc0"},"location":{"coordinates":[-73.73424039999999,40.7722265],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb056fc1"},"location":{"coordinates":[-73.9845816,40.7421034],"type":"Point"},"name":"Bread \u0026 Tulips"} +,{"_id":{"$oid":"55cba2476c522cafdb056fc2"},"location":{"coordinates":[-74.010229,40.635231],"type":"Point"},"name":"Vip Kingly Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb056fc3"},"location":{"coordinates":[-73.919241,40.765623],"type":"Point"},"name":"La Sabrosura"} +,{"_id":{"$oid":"55cba2476c522cafdb056fc4"},"location":{"coordinates":[-73.96944049999999,40.7607723],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb056fc5"},"location":{"coordinates":[-73.82812190000001,40.83235699999999],"type":"Point"},"name":"Twist-It"} +,{"_id":{"$oid":"55cba2476c522cafdb056fc6"},"location":{"coordinates":[-74.0036235,40.7420877],"type":"Point"},"name":"Bodega Negra"} +,{"_id":{"$oid":"55cba2476c522cafdb056fc7"},"location":{"coordinates":[-73.9677109,40.7632918],"type":"Point"},"name":"Sprinkles Cupcakes"} +,{"_id":{"$oid":"55cba2476c522cafdb056fc8"},"location":{"coordinates":[-73.9887163,40.7393229],"type":"Point"},"name":"Harding'S"} +,{"_id":{"$oid":"55cba2476c522cafdb056fc9"},"location":{"coordinates":[-74.0036235,40.7420877],"type":"Point"},"name":"Phd"} +,{"_id":{"$oid":"55cba2476c522cafdb056fca"},"location":{"coordinates":[-74.0036235,40.7420877],"type":"Point"},"name":"Electric Room"} +,{"_id":{"$oid":"55cba2476c522cafdb056fcb"},"location":{"coordinates":[-73.94135399999999,40.7920906],"type":"Point"},"name":"Rong Sheng Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056fcc"},"location":{"coordinates":[-74.0024789,40.750566],"type":"Point"},"name":"Chelsea Deli \u0026 Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056fcd"},"location":{"coordinates":[-73.9982843,40.7291553],"type":"Point"},"name":"Millefeuille Bakery Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb056fce"},"location":{"coordinates":[-74.109837,40.566729],"type":"Point"},"name":"Hylan Plaza 5-Theatre Next To Babiesrus In Mall"} +,{"_id":{"$oid":"55cba2476c522cafdb056fcf"},"location":{"coordinates":[-74.00288189999999,40.6531175],"type":"Point"},"name":"Green Fig Bakery Caffe"} +,{"_id":{"$oid":"55cba2476c522cafdb056fd0"},"location":{"coordinates":[-73.9775125,40.635873],"type":"Point"},"name":"Old Baku"} +,{"_id":{"$oid":"55cba2476c522cafdb056fd1"},"location":{"coordinates":[-73.9671324,40.7988429],"type":"Point"},"name":"Busters Nyc"} +,{"_id":{"$oid":"55cba2476c522cafdb056fd2"},"location":{"coordinates":[-73.9510983,40.7943054],"type":"Point"},"name":"Maoz Vegetarian"} +,{"_id":{"$oid":"55cba2476c522cafdb056fd3"},"location":{"coordinates":[-73.8630946,40.7292664],"type":"Point"},"name":"Tasty \u0026 Co"} +,{"_id":{"$oid":"55cba2476c522cafdb056fd4"},"location":{"coordinates":[-73.990779,40.741739],"type":"Point"},"name":"Pret A Manger"} +,{"_id":{"$oid":"55cba2476c522cafdb056fd5"},"location":{"coordinates":[-73.83065959999999,40.7592019],"type":"Point"},"name":"Yee Mei Fong Taiwan Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb056fd6"},"location":{"coordinates":[-73.9896311,40.7388288],"type":"Point"},"name":"Beecher'S Handmade Cheese"} +,{"_id":{"$oid":"55cba2476c522cafdb056fd7"},"location":{"coordinates":[-73.8290939,40.759362],"type":"Point"},"name":"New Flushing Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb056fd8"},"location":{"coordinates":[-73.87544849999999,40.8295377],"type":"Point"},"name":"Excelente Gil Cafeteria \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056fd9"},"location":{"coordinates":[-73.974454,40.635729],"type":"Point"},"name":"Cafe Afsona"} +,{"_id":{"$oid":"55cba2476c522cafdb056fda"},"location":{"coordinates":[-73.88368400000002,40.7468152],"type":"Point"},"name":"La Delecia En Pandebono"} +,{"_id":{"$oid":"55cba2476c522cafdb056fdb"},"location":{"coordinates":[-74.1142356,40.6289343],"type":"Point"},"name":"Green Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb056fdc"},"location":{"coordinates":[-73.8622046,40.8172901],"type":"Point"},"name":"Papa Antonio (Roka) Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056fdd"},"location":{"coordinates":[-73.8839793,40.8540475],"type":"Point"},"name":"Joe'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056fde"},"location":{"coordinates":[-73.8890509,40.8187924],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb056fdf"},"location":{"coordinates":[-73.8717806,40.7488982],"type":"Point"},"name":"New Spring Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb056fe0"},"location":{"coordinates":[-73.9613245,40.7687394],"type":"Point"},"name":"Tasti D-Lite"} +,{"_id":{"$oid":"55cba2476c522cafdb056fe1"},"location":{"coordinates":[-73.9738709,40.7503722],"type":"Point"},"name":"Westin Hotel"} +,{"_id":{"$oid":"55cba2476c522cafdb056fe2"},"location":{"coordinates":[-73.9738709,40.7503722],"type":"Point"},"name":"Lcl Bar And Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb056fe3"},"location":{"coordinates":[-73.8371078,40.8659043],"type":"Point"},"name":"7 Spices"} +,{"_id":{"$oid":"55cba2476c522cafdb056fe4"},"location":{"coordinates":[-73.9315903,40.6093281],"type":"Point"},"name":"Sundaes By The Park"} +,{"_id":{"$oid":"55cba2476c522cafdb056fe5"},"location":{"coordinates":[-73.9743584,40.7534139],"type":"Point"},"name":"Coco Tea"} +,{"_id":{"$oid":"55cba2476c522cafdb056fe6"},"location":{"coordinates":[-73.9596167,40.7200363],"type":"Point"},"name":"Fat Goose"} +,{"_id":{"$oid":"55cba2476c522cafdb056fe7"},"location":{"coordinates":[-73.95876559999999,40.7191908],"type":"Point"},"name":"The Burger Guru"} +,{"_id":{"$oid":"55cba2476c522cafdb056fe8"},"location":{"coordinates":[-73.950431,40.6732129],"type":"Point"},"name":"O'S Grill Spot Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056fe9"},"location":{"coordinates":[-73.969045,40.693321],"type":"Point"},"name":"Putnam'S"} +,{"_id":{"$oid":"55cba2476c522cafdb056fea"},"location":{"coordinates":[-73.9689178,40.7910171],"type":"Point"},"name":"Elizabeths Neighborhood Table"} +,{"_id":{"$oid":"55cba2476c522cafdb056feb"},"location":{"coordinates":[-74.0000836,40.7436902],"type":"Point"},"name":"Spice"} +,{"_id":{"$oid":"55cba2476c522cafdb056fec"},"location":{"coordinates":[-74.1638354,40.543263],"type":"Point"},"name":"Burger King"} +,{"_id":{"$oid":"55cba2476c522cafdb056fed"},"location":{"coordinates":[-73.884254,40.7393344],"type":"Point"},"name":"Club Glazz"} +,{"_id":{"$oid":"55cba2476c522cafdb056fee"},"location":{"coordinates":[-73.993894,40.732917],"type":"Point"},"name":"Amorino"} +,{"_id":{"$oid":"55cba2476c522cafdb056fef"},"location":{"coordinates":[-73.99279890000001,40.76254489999999],"type":"Point"},"name":"Meske Ethiopian Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056ff0"},"location":{"coordinates":[-73.982142,40.6658046],"type":"Point"},"name":"Kiku"} +,{"_id":{"$oid":"55cba2476c522cafdb056ff1"},"location":{"coordinates":[-73.974239,40.784187],"type":"Point"},"name":"The Original Ray'S Pizza Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb056ff2"},"location":{"coordinates":[-73.98925299999999,40.7625],"type":"Point"},"name":"Chili Thai"} +,{"_id":{"$oid":"55cba2476c522cafdb056ff3"},"location":{"coordinates":[-74.000125,40.742497],"type":"Point"},"name":"Grand Sichuan Eastern"} +,{"_id":{"$oid":"55cba2476c522cafdb056ff4"},"location":{"coordinates":[-74.157467,40.613871],"type":"Point"},"name":"Pho Mac Vietnamese Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb056ff5"},"location":{"coordinates":[-73.9857016,40.76253990000001],"type":"Point"},"name":"Famous Amadeus Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb056ff6"},"location":{"coordinates":[-73.8573661,40.8928913],"type":"Point"},"name":"Kennedy'S Chicken \u0026 Sandwiches"} +,{"_id":{"$oid":"55cba2476c522cafdb056ff7"},"location":{"coordinates":[-73.9599302,40.7618944],"type":"Point"},"name":"Totoya"} +,{"_id":{"$oid":"55cba2476c522cafdb056ff8"},"location":{"coordinates":[-73.9800358,40.781189],"type":"Point"},"name":"Simply Divine At The Jcc"} +,{"_id":{"$oid":"55cba2476c522cafdb056ff9"},"location":{"coordinates":[-73.95806,40.669466],"type":"Point"},"name":"Fever Grass"} +,{"_id":{"$oid":"55cba2476c522cafdb056ffa"},"location":{"coordinates":[-74.0106655,40.7033922],"type":"Point"},"name":"Obao Noodles \u0026 Bbq"} +,{"_id":{"$oid":"55cba2476c522cafdb056ffb"},"location":{"coordinates":[-73.81306579999999,40.5845016],"type":"Point"},"name":"Rockway Beach Club"} +,{"_id":{"$oid":"55cba2476c522cafdb056ffc"},"location":{"coordinates":[-73.901479,40.847471],"type":"Point"},"name":"Centro Hainero/Maximo'S Place"} +,{"_id":{"$oid":"55cba2476c522cafdb056ffd"},"location":{"coordinates":[-73.939159,40.8216897],"type":"Point"},"name":"Reggae Sun Delights Natural Juice Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb056ffe"},"location":{"coordinates":[-73.8133591,40.5842894],"type":"Point"},"name":"Rippers"} +,{"_id":{"$oid":"55cba2476c522cafdb056fff"},"location":{"coordinates":[-73.8260751,40.5805679],"type":"Point"},"name":"Caracas Beach Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057000"},"location":{"coordinates":[-73.915318,40.81486599999999],"type":"Point"},"name":"Delmy Food"} +,{"_id":{"$oid":"55cba2476c522cafdb057001"},"location":{"coordinates":[-73.9124736,40.7087783],"type":"Point"},"name":"Sabores Restaurant \u0026 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb057002"},"location":{"coordinates":[-73.99777639999999,40.7151927],"type":"Point"},"name":"My Bubbly Tea"} +,{"_id":{"$oid":"55cba2476c522cafdb057003"},"location":{"coordinates":[-73.78163339999999,40.7131225],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb057004"},"location":{"coordinates":[-73.9121155,40.7003499],"type":"Point"},"name":"Lucky Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb057005"},"location":{"coordinates":[-74.0105051,40.7040805],"type":"Point"},"name":"Terrace Fish \u0026 Chips"} +,{"_id":{"$oid":"55cba2476c522cafdb057006"},"location":{"coordinates":[-74.234529,40.522773],"type":"Point"},"name":"Orange Leaf"} +,{"_id":{"$oid":"55cba2476c522cafdb057007"},"location":{"coordinates":[-74.003748,40.712931],"type":"Point"},"name":"Nixtamalito"} +,{"_id":{"$oid":"55cba2476c522cafdb057008"},"location":{"coordinates":[-73.9778048,40.7793602],"type":"Point"},"name":"Pappardella"} +,{"_id":{"$oid":"55cba2476c522cafdb057009"},"location":{"coordinates":[-73.964513,40.693846],"type":"Point"},"name":"Soco Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05700a"},"location":{"coordinates":[-73.9578092,40.8115585],"type":"Point"},"name":"123 Nikko"} +,{"_id":{"$oid":"55cba2476c522cafdb05700b"},"location":{"coordinates":[-73.9653429,40.8066004],"type":"Point"},"name":"Amir'S"} +,{"_id":{"$oid":"55cba2476c522cafdb05700c"},"location":{"coordinates":[-73.89643339999999,40.8627805],"type":"Point"},"name":"Fordham Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05700d"},"location":{"coordinates":[-73.9945726,40.7116876],"type":"Point"},"name":"Cc'S Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05700e"},"location":{"coordinates":[-73.87466789999999,40.828955],"type":"Point"},"name":"New Flying Dragon"} +,{"_id":{"$oid":"55cba2476c522cafdb05700f"},"location":{"coordinates":[-73.97579209999999,40.6866432],"type":"Point"},"name":"Frank'S Lounge \u0026 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb057010"},"location":{"coordinates":[-73.994027,40.68714],"type":"Point"},"name":"Darna Falafel"} +,{"_id":{"$oid":"55cba2476c522cafdb057011"},"location":{"coordinates":[-74.0021187,40.7409573],"type":"Point"},"name":"Google Water Tower Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057012"},"location":{"coordinates":[-73.9423754,40.7952269],"type":"Point"},"name":"Zahlaya'S Bistro"} +,{"_id":{"$oid":"55cba2476c522cafdb057013"},"location":{"coordinates":[-73.90536279999999,40.852944],"type":"Point"},"name":"New Gang Hua Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb057014"},"location":{"coordinates":[-73.9954917,40.7178014],"type":"Point"},"name":"Feng Cheng Yuan Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057015"},"location":{"coordinates":[-73.991412,40.718035],"type":"Point"},"name":"New Spring Boy Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057016"},"location":{"coordinates":[-73.947875,40.631739],"type":"Point"},"name":"Nostrand Express"} +,{"_id":{"$oid":"55cba2476c522cafdb057017"},"location":{"coordinates":[-73.979261,40.67864280000001],"type":"Point"},"name":"New China Tung Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057018"},"location":{"coordinates":[-73.9010311,40.8310108],"type":"Point"},"name":"Sing Sing Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb057019"},"location":{"coordinates":[-74.1481845,40.6243659],"type":"Point"},"name":"Umi Sushi Hibachi"} +,{"_id":{"$oid":"55cba2476c522cafdb05701a"},"location":{"coordinates":[-73.90686079999999,40.8872049],"type":"Point"},"name":"The Corner Cafe \u0026 Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb05701b"},"location":{"coordinates":[-73.9947839,40.7134005],"type":"Point"},"name":"Good Good Taste"} +,{"_id":{"$oid":"55cba2476c522cafdb05701c"},"location":{"coordinates":[-74.002303,40.730627],"type":"Point"},"name":"Dos Toros Taqueria"} +,{"_id":{"$oid":"55cba2476c522cafdb05701d"},"location":{"coordinates":[-73.9885633,40.7234639],"type":"Point"},"name":"Bluebird Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb05701e"},"location":{"coordinates":[-73.9929595,40.752232],"type":"Point"},"name":"Roastown"} +,{"_id":{"$oid":"55cba2476c522cafdb05701f"},"location":{"coordinates":[-73.95383799999999,40.822491],"type":"Point"},"name":"Olga'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb057020"},"location":{"coordinates":[-73.8786113,40.8502883],"type":"Point"},"name":"Dippin Dots Kiosk-Ts"} +,{"_id":{"$oid":"55cba2476c522cafdb057021"},"location":{"coordinates":[-74.0032389,40.734322],"type":"Point"},"name":"Windsor Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057022"},"location":{"coordinates":[-74.00337090000001,40.717271],"type":"Point"},"name":"Roll And Go"} +,{"_id":{"$oid":"55cba2476c522cafdb057023"},"location":{"coordinates":[-73.99645029999999,40.72348239999999],"type":"Point"},"name":"Bottega Falai"} +,{"_id":{"$oid":"55cba2476c522cafdb057024"},"location":{"coordinates":[-74.011588,40.63239799999999],"type":"Point"},"name":"Atlantic Adult Day Care Center Inc"} +,{"_id":{"$oid":"55cba2476c522cafdb057025"},"location":{"coordinates":[-73.98317569999999,40.7220223],"type":"Point"},"name":"Cornerstone Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057026"},"location":{"coordinates":[-73.8459045,40.8424888],"type":"Point"},"name":"Lucky Eastern Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057027"},"location":{"coordinates":[-73.89607099999999,40.6378569],"type":"Point"},"name":"Jireh Hot Bagel \u0026 Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057028"},"location":{"coordinates":[-73.999462,40.74346],"type":"Point"},"name":"Tomyum"} +,{"_id":{"$oid":"55cba2476c522cafdb057029"},"location":{"coordinates":[-73.9988054,40.7443479],"type":"Point"},"name":"Mthai"} +,{"_id":{"$oid":"55cba2476c522cafdb05702a"},"location":{"coordinates":[-73.8290939,40.759362],"type":"Point"},"name":"Casserole.Big Bowl Of Noodle"} +,{"_id":{"$oid":"55cba2476c522cafdb05702b"},"location":{"coordinates":[-73.9161301,40.8200851],"type":"Point"},"name":"Landin Macaroni And Cheese"} +,{"_id":{"$oid":"55cba2476c522cafdb05702c"},"location":{"coordinates":[-74.01321329999999,40.7013064],"type":"Point"},"name":"Centra`L Market All American Grill ( Staten Island Ferry Terminal)"} +,{"_id":{"$oid":"55cba2476c522cafdb05702d"},"location":{"coordinates":[-73.9950832,40.6901703],"type":"Point"},"name":"Water Falls Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05702e"},"location":{"coordinates":[-73.91512159999999,40.8183107],"type":"Point"},"name":"Caribbean Hut"} +,{"_id":{"$oid":"55cba2476c522cafdb05702f"},"location":{"coordinates":[-73.987193,40.6776067],"type":"Point"},"name":"Monte'S"} +,{"_id":{"$oid":"55cba2476c522cafdb057030"},"location":{"coordinates":[-73.8943275,40.6648897],"type":"Point"},"name":"Grand Sun Hing Take-Out Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057031"},"location":{"coordinates":[-73.93980119999999,40.6993041],"type":"Point"},"name":"Brooklyn Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057032"},"location":{"coordinates":[-73.915024,40.8186279],"type":"Point"},"name":"Healthy Juicy Blends"} +,{"_id":{"$oid":"55cba2476c522cafdb057033"},"location":{"coordinates":[-73.880504,40.747784],"type":"Point"},"name":"Tradiciones Latinas Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057034"},"location":{"coordinates":[-73.85987999999999,40.8365911],"type":"Point"},"name":"New Dynasty Chinese Restaurant Llc"} +,{"_id":{"$oid":"55cba2476c522cafdb057035"},"location":{"coordinates":[-73.80931679999999,40.7049919],"type":"Point"},"name":"Dai Hing Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057036"},"location":{"coordinates":[-73.955376,40.7353862],"type":"Point"},"name":"Lobster Joint"} +,{"_id":{"$oid":"55cba2476c522cafdb057037"},"location":{"coordinates":[-73.967164,40.7571292],"type":"Point"},"name":"Session House"} +,{"_id":{"$oid":"55cba2476c522cafdb057038"},"location":{"coordinates":[-73.8290939,40.759362],"type":"Point"},"name":"Kung Fu Tea"} +,{"_id":{"$oid":"55cba2476c522cafdb057039"},"location":{"coordinates":[-73.9754142,40.6749427],"type":"Point"},"name":"Faros Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05703a"},"location":{"coordinates":[-73.917199,40.820946],"type":"Point"},"name":"Los Primos Seafood Market"} +,{"_id":{"$oid":"55cba2476c522cafdb05703b"},"location":{"coordinates":[-73.89159599999999,40.8303168],"type":"Point"},"name":"Happy Wok No.1"} +,{"_id":{"$oid":"55cba2476c522cafdb05703c"},"location":{"coordinates":[-74.0060622,40.6420044],"type":"Point"},"name":"Bon Appetite Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb05703d"},"location":{"coordinates":[-74.0181261,40.6770754],"type":"Point"},"name":"Liberty Events Lcc"} +,{"_id":{"$oid":"55cba2476c522cafdb05703e"},"location":{"coordinates":[-73.961725,40.600056],"type":"Point"},"name":"Skazka"} +,{"_id":{"$oid":"55cba2476c522cafdb05703f"},"location":{"coordinates":[-73.96805750000001,40.8028278],"type":"Point"},"name":"Cascabel Taqueria"} +,{"_id":{"$oid":"55cba2476c522cafdb057040"},"location":{"coordinates":[-73.9926842,40.7137855],"type":"Point"},"name":"Drink Tea"} +,{"_id":{"$oid":"55cba2476c522cafdb057041"},"location":{"coordinates":[-100.707166,47.13706149999999],"type":"Point"},"name":"Pierre Loti Midtown"} +,{"_id":{"$oid":"55cba2476c522cafdb057042"},"location":{"coordinates":[-73.9927853,40.7549995],"type":"Point"},"name":"Casa Nonna"} +,{"_id":{"$oid":"55cba2476c522cafdb057043"},"location":{"coordinates":[-73.9877989,40.7197418],"type":"Point"},"name":"Famous Champion Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb057044"},"location":{"coordinates":[-73.75422309999999,40.6006196],"type":"Point"},"name":"New Cheung Chow"} +,{"_id":{"$oid":"55cba2476c522cafdb057045"},"location":{"coordinates":[-73.97271479999999,40.763118],"type":"Point"},"name":"All About Food"} +,{"_id":{"$oid":"55cba2476c522cafdb057046"},"location":{"coordinates":[-73.988826,40.7585393],"type":"Point"},"name":"Copacabana"} +,{"_id":{"$oid":"55cba2476c522cafdb057047"},"location":{"coordinates":[-73.9076831,40.8726171],"type":"Point"},"name":"Starbucks Coffee #9282"} +,{"_id":{"$oid":"55cba2476c522cafdb057048"},"location":{"coordinates":[-74.00306499999999,40.7436605],"type":"Point"},"name":"Salinas"} +,{"_id":{"$oid":"55cba2476c522cafdb057049"},"location":{"coordinates":[-73.9483315,40.6387906],"type":"Point"},"name":"Big New York Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb05704a"},"location":{"coordinates":[-73.9543817,40.7695385],"type":"Point"},"name":"2Nd Avenue Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb05704b"},"location":{"coordinates":[-73.92043149999999,40.7414366],"type":"Point"},"name":"Lenny'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05704c"},"location":{"coordinates":[-73.9723873,40.7858585],"type":"Point"},"name":"Machiavelli"} +,{"_id":{"$oid":"55cba2476c522cafdb05704d"},"location":{"coordinates":[-73.8294362,40.7590825],"type":"Point"},"name":"Noodle Village So Good"} +,{"_id":{"$oid":"55cba2476c522cafdb05704e"},"location":{"coordinates":[-73.97646759999999,40.6819339],"type":"Point"},"name":"Kulushkat Gourmet Falafel"} +,{"_id":{"$oid":"55cba2476c522cafdb05704f"},"location":{"coordinates":[-74.01163799999999,40.6334664],"type":"Point"},"name":"6321 Yuan Bao"} +,{"_id":{"$oid":"55cba2476c522cafdb057050"},"location":{"coordinates":[-73.99580639999999,40.6819722],"type":"Point"},"name":"Monteleone Bakery Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057051"},"location":{"coordinates":[-74.010521,40.71510869999999],"type":"Point"},"name":"Il Giglio"} +,{"_id":{"$oid":"55cba2476c522cafdb057052"},"location":{"coordinates":[-73.916912,40.764514],"type":"Point"},"name":"Sugar Freak"} +,{"_id":{"$oid":"55cba2476c522cafdb057053"},"location":{"coordinates":[-73.98746299999999,40.764956],"type":"Point"},"name":"Wondee Siam Thai Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057054"},"location":{"coordinates":[-73.97990879999999,40.6767385],"type":"Point"},"name":"Bierkraft"} +,{"_id":{"$oid":"55cba2476c522cafdb057055"},"location":{"coordinates":[-73.8767672,40.7487202],"type":"Point"},"name":"Maravillas Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057056"},"location":{"coordinates":[-73.9015673,40.8906248],"type":"Point"},"name":"Cafe 1853"} +,{"_id":{"$oid":"55cba2476c522cafdb057057"},"location":{"coordinates":[-74.111099,40.571467],"type":"Point"},"name":"Pronto Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb057058"},"location":{"coordinates":[-73.9015673,40.8906248],"type":"Point"},"name":"Locke'S Loft"} +,{"_id":{"$oid":"55cba2476c522cafdb057059"},"location":{"coordinates":[-73.9641006,40.6826839],"type":"Point"},"name":"Cochinita"} +,{"_id":{"$oid":"55cba2476c522cafdb05705a"},"location":{"coordinates":[-73.9102309,40.7697955],"type":"Point"},"name":"Mijana"} +,{"_id":{"$oid":"55cba2476c522cafdb05705b"},"location":{"coordinates":[-73.99751499999999,40.593113],"type":"Point"},"name":"Nature'S Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb05705c"},"location":{"coordinates":[-73.9756857,40.7558198],"type":"Point"},"name":"J P Morgan Chase"} +,{"_id":{"$oid":"55cba2476c522cafdb05705d"},"location":{"coordinates":[-73.9924766,40.756474],"type":"Point"},"name":"Fairfield Inn"} +,{"_id":{"$oid":"55cba2476c522cafdb05705e"},"location":{"coordinates":[-73.9500071,40.67786479999999],"type":"Point"},"name":"No Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05705f"},"location":{"coordinates":[-73.961665,40.800306],"type":"Point"},"name":"Zanny'S Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057060"},"location":{"coordinates":[-73.94875429999999,40.6452937],"type":"Point"},"name":"Pizzalicious"} +,{"_id":{"$oid":"55cba2476c522cafdb057061"},"location":{"coordinates":[-73.99136229999999,40.759445],"type":"Point"},"name":"Producers Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb057062"},"location":{"coordinates":[-73.9906438,40.7373777],"type":"Point"},"name":"Chloe'S Soft Serve Fruit Co."} +,{"_id":{"$oid":"55cba2476c522cafdb057063"},"location":{"coordinates":[-74.00681229999999,40.7069645],"type":"Point"},"name":"Potbelly Sandwich Shop (Store #251)"} +,{"_id":{"$oid":"55cba2476c522cafdb057064"},"location":{"coordinates":[-73.965659,40.7142097],"type":"Point"},"name":"Crown Victoria Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb057065"},"location":{"coordinates":[-73.97424629999999,40.7521067],"type":"Point"},"name":"Potbelly Sandwich Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb057066"},"location":{"coordinates":[-73.954819,40.680689],"type":"Point"},"name":"Hing Wong Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057067"},"location":{"coordinates":[-73.977919,40.784163],"type":"Point"},"name":"Cafe Con Leche"} +,{"_id":{"$oid":"55cba2476c522cafdb057068"},"location":{"coordinates":[-73.995611,40.747126],"type":"Point"},"name":"Moda Espresso Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb057069"},"location":{"coordinates":[-73.8256124,40.8684692],"type":"Point"},"name":"Haagen-Dazs"} +,{"_id":{"$oid":"55cba2476c522cafdb05706a"},"location":{"coordinates":[-73.97737130000002,40.7515595],"type":"Point"},"name":"Bistro Marketplace"} +,{"_id":{"$oid":"55cba2476c522cafdb05706b"},"location":{"coordinates":[-73.7795649,40.7134136],"type":"Point"},"name":"Crown Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb05706c"},"location":{"coordinates":[-73.9048756,40.8572328],"type":"Point"},"name":"Nueva Bellavista Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05706d"},"location":{"coordinates":[-73.8923533,40.8209857],"type":"Point"},"name":"Real Azteca Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05706e"},"location":{"coordinates":[-73.9794819,40.7278125],"type":"Point"},"name":"Y Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05706f"},"location":{"coordinates":[-73.9572821,40.6720698],"type":"Point"},"name":"Barboncino"} +,{"_id":{"$oid":"55cba2476c522cafdb057070"},"location":{"coordinates":[-73.8573309,40.89295329999999],"type":"Point"},"name":"New Double Dragon Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057071"},"location":{"coordinates":[-74.1245886,40.6316391],"type":"Point"},"name":"Restaurant San Miguel"} +,{"_id":{"$oid":"55cba2476c522cafdb057072"},"location":{"coordinates":[-73.950656,40.7438232],"type":"Point"},"name":"Malu"} +,{"_id":{"$oid":"55cba2476c522cafdb057073"},"location":{"coordinates":[-73.9898872,40.7522799],"type":"Point"},"name":"Cafe Del Sol"} +,{"_id":{"$oid":"55cba2476c522cafdb057074"},"location":{"coordinates":[-73.9833124,40.7277147],"type":"Point"},"name":"Zucker Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb057075"},"location":{"coordinates":[-73.98262199999999,40.728253],"type":"Point"},"name":"The Juice Press"} +,{"_id":{"$oid":"55cba2476c522cafdb057076"},"location":{"coordinates":[-73.8801853,40.7369598],"type":"Point"},"name":"Ping'S"} +,{"_id":{"$oid":"55cba2476c522cafdb057077"},"location":{"coordinates":[-73.976146,40.750372],"type":"Point"},"name":"Num Pang Sandwich Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb057078"},"location":{"coordinates":[-73.99844399999999,40.717685],"type":"Point"},"name":"Ristorante Luna"} +,{"_id":{"$oid":"55cba2476c522cafdb057079"},"location":{"coordinates":[-73.81711469999999,40.5887326],"type":"Point"},"name":"Thai Rock"} +,{"_id":{"$oid":"55cba2476c522cafdb05707a"},"location":{"coordinates":[-73.985221,40.64131],"type":"Point"},"name":"Panaderia Puebla Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05707b"},"location":{"coordinates":[-73.95992799999999,40.717078],"type":"Point"},"name":"Two Door Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb05707c"},"location":{"coordinates":[-73.9699669,40.7515059],"type":"Point"},"name":"Shih Lee Chinese Goodeats"} +,{"_id":{"$oid":"55cba2476c522cafdb05707d"},"location":{"coordinates":[-73.92043799999999,40.695118],"type":"Point"},"name":"Chang Yu Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05707e"},"location":{"coordinates":[-73.91402839999999,40.7459438],"type":"Point"},"name":"New Szechuan House"} +,{"_id":{"$oid":"55cba2476c522cafdb05707f"},"location":{"coordinates":[-74.0014392,40.6080438],"type":"Point"},"name":"Tato'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb057080"},"location":{"coordinates":[-73.894041,40.661655],"type":"Point"},"name":"China Panda"} +,{"_id":{"$oid":"55cba2476c522cafdb057081"},"location":{"coordinates":[-73.8328389,40.6729864],"type":"Point"},"name":"Baccarat Club"} +,{"_id":{"$oid":"55cba2476c522cafdb057082"},"location":{"coordinates":[-73.9525223,40.7812596],"type":"Point"},"name":"Enthaice"} +,{"_id":{"$oid":"55cba2476c522cafdb057083"},"location":{"coordinates":[-73.878163,40.736496],"type":"Point"},"name":"Los Paisitas Bakery \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057084"},"location":{"coordinates":[-73.97705599999999,40.752998],"type":"Point"},"name":"Golden Krust"} +,{"_id":{"$oid":"55cba2476c522cafdb057085"},"location":{"coordinates":[-73.8706606,40.7342757],"type":"Point"},"name":"Ranch One"} +,{"_id":{"$oid":"55cba2476c522cafdb057086"},"location":{"coordinates":[-73.8328389,40.6729864],"type":"Point"},"name":"Genting Palace"} +,{"_id":{"$oid":"55cba2476c522cafdb057087"},"location":{"coordinates":[-73.8328389,40.6729864],"type":"Point"},"name":"Palm Beach Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb057088"},"location":{"coordinates":[-73.8540964,40.8737543],"type":"Point"},"name":"Kentucky Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb057089"},"location":{"coordinates":[-73.981301,40.757134],"type":"Point"},"name":"Upstairs Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05708a"},"location":{"coordinates":[-73.8388925,40.8808092],"type":"Point"},"name":"Kentucky Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb05708b"},"location":{"coordinates":[-73.9564228,40.7787097],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb05708c"},"location":{"coordinates":[-73.954883,40.686746],"type":"Point"},"name":"Do Or Dine"} +,{"_id":{"$oid":"55cba2476c522cafdb05708d"},"location":{"coordinates":[-73.8605128,40.6803806],"type":"Point"},"name":"Rose Bengal"} +,{"_id":{"$oid":"55cba2476c522cafdb05708e"},"location":{"coordinates":[-73.88995659999999,40.8099917],"type":"Point"},"name":"Delfini Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05708f"},"location":{"coordinates":[-73.9213548,40.7070652],"type":"Point"},"name":"Pearl'S Social \u0026 Billy Club"} +,{"_id":{"$oid":"55cba2476c522cafdb057090"},"location":{"coordinates":[-73.96664299999999,40.763903],"type":"Point"},"name":"Mon Petit Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057091"},"location":{"coordinates":[-73.8328389,40.6729864],"type":"Point"},"name":"Queens Burgers"} +,{"_id":{"$oid":"55cba2476c522cafdb057092"},"location":{"coordinates":[-73.8328389,40.6729864],"type":"Point"},"name":"Rw Prime"} +,{"_id":{"$oid":"55cba2476c522cafdb057093"},"location":{"coordinates":[-73.8328389,40.6729864],"type":"Point"},"name":"Good Friends Noodle House"} +,{"_id":{"$oid":"55cba2476c522cafdb057094"},"location":{"coordinates":[-73.8328389,40.6729864],"type":"Point"},"name":"Artichoke Basilles Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb057095"},"location":{"coordinates":[-73.8328389,40.6729864],"type":"Point"},"name":"Stage Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb057096"},"location":{"coordinates":[-73.8328389,40.6729864],"type":"Point"},"name":"Bar 360"} +,{"_id":{"$oid":"55cba2476c522cafdb057097"},"location":{"coordinates":[-73.8328389,40.6729864],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb057098"},"location":{"coordinates":[-73.8328389,40.6729864],"type":"Point"},"name":"Cups And Cones"} +,{"_id":{"$oid":"55cba2476c522cafdb057099"},"location":{"coordinates":[-73.8328389,40.6729864],"type":"Point"},"name":"Popeyes Chicken \u0026 Biscuits"} +,{"_id":{"$oid":"55cba2476c522cafdb05709a"},"location":{"coordinates":[-73.962565,40.715975],"type":"Point"},"name":"Nitehawk Cinema"} +,{"_id":{"$oid":"55cba2476c522cafdb05709b"},"location":{"coordinates":[-73.8328389,40.6729864],"type":"Point"},"name":"Resorts World Casino Ground Level ( Employee Dining)"} +,{"_id":{"$oid":"55cba2476c522cafdb05709c"},"location":{"coordinates":[-74.0014547,40.70786349999999],"type":"Point"},"name":"Acqua Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05709d"},"location":{"coordinates":[-73.88537339999999,40.6794832],"type":"Point"},"name":"Crown Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb05709e"},"location":{"coordinates":[-73.98224669999999,40.6735972],"type":"Point"},"name":"Jpan Sushi Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05709f"},"location":{"coordinates":[-73.97422,40.747616],"type":"Point"},"name":"Best Wingers"} +,{"_id":{"$oid":"55cba2476c522cafdb0570a0"},"location":{"coordinates":[-73.812946,40.682602],"type":"Point"},"name":"El Castillo Del Pollo Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb0570a1"},"location":{"coordinates":[-73.863131,40.747256],"type":"Point"},"name":"La Marina Bar Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0570a2"},"location":{"coordinates":[-73.977389,40.762958],"type":"Point"},"name":"Pizzarte"} +,{"_id":{"$oid":"55cba2476c522cafdb0570a3"},"location":{"coordinates":[-73.9107435,40.6947377],"type":"Point"},"name":"Aris Pollos A La Brasa"} +,{"_id":{"$oid":"55cba2476c522cafdb0570a4"},"location":{"coordinates":[-73.9414635,40.8331316],"type":"Point"},"name":"La Oaxaquena Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0570a5"},"location":{"coordinates":[-73.987572,40.732268],"type":"Point"},"name":"Ngam"} +,{"_id":{"$oid":"55cba2476c522cafdb0570a6"},"location":{"coordinates":[-73.9576445,40.6442177],"type":"Point"},"name":"Jen'S Roti Shop \u0026 Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0570a7"},"location":{"coordinates":[-73.98583909999999,40.727506],"type":"Point"},"name":"William Barnacle"} +,{"_id":{"$oid":"55cba2476c522cafdb0570a8"},"location":{"coordinates":[-73.9947277,40.6853784],"type":"Point"},"name":"Karloff"} +,{"_id":{"$oid":"55cba2476c522cafdb0570a9"},"location":{"coordinates":[-73.8814481,40.7421702],"type":"Point"},"name":"Double Rainbow"} +,{"_id":{"$oid":"55cba2476c522cafdb0570aa"},"location":{"coordinates":[-73.9432409,40.7054747],"type":"Point"},"name":"Geminis Ii Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0570ab"},"location":{"coordinates":[-73.962887,40.69403],"type":"Point"},"name":"Pushkin Creperie Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0570ac"},"location":{"coordinates":[-73.9109628,40.76853759999999],"type":"Point"},"name":"Layali Dubai"} +,{"_id":{"$oid":"55cba2476c522cafdb0570ad"},"location":{"coordinates":[-73.8026136,40.779836],"type":"Point"},"name":"Bagel Mart Plus"} +,{"_id":{"$oid":"55cba2476c522cafdb0570ae"},"location":{"coordinates":[-73.8290939,40.759362],"type":"Point"},"name":"Come Buy Bubble Tea"} +,{"_id":{"$oid":"55cba2476c522cafdb0570af"},"location":{"coordinates":[-73.8190374,40.6879523],"type":"Point"},"name":"Sparkles Bar \u0026 Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb0570b0"},"location":{"coordinates":[-73.9931119,40.7531751],"type":"Point"},"name":"International Gourmet Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0570b1"},"location":{"coordinates":[-73.9780133,40.7858837],"type":"Point"},"name":"Hale \u0026 Hearty Soup"} +,{"_id":{"$oid":"55cba2476c522cafdb0570b2"},"location":{"coordinates":[-73.83535789999999,40.7569735],"type":"Point"},"name":"Hershey'S Ice Cream"} +,{"_id":{"$oid":"55cba2476c522cafdb0570b3"},"location":{"coordinates":[-73.995498,40.669588],"type":"Point"},"name":"Srb Brooklyn"} +,{"_id":{"$oid":"55cba2476c522cafdb0570b4"},"location":{"coordinates":[-73.97545939999999,40.67513340000001],"type":"Point"},"name":"Cafe Regular"} +,{"_id":{"$oid":"55cba2476c522cafdb0570b5"},"location":{"coordinates":[-73.9977956,40.76083149999999],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0570b6"},"location":{"coordinates":[-74.1358142,40.6348676],"type":"Point"},"name":"Nutricion Familiar"} +,{"_id":{"$oid":"55cba2476c522cafdb0570b7"},"location":{"coordinates":[-73.95038,40.776976],"type":"Point"},"name":"Tisane Pharmacy"} +,{"_id":{"$oid":"55cba2476c522cafdb0570b8"},"location":{"coordinates":[-74.00485499999999,40.728707],"type":"Point"},"name":"Arbor Bistro"} +,{"_id":{"$oid":"55cba2476c522cafdb0570b9"},"location":{"coordinates":[-73.830497,40.759167],"type":"Point"},"name":"Chatime"} +,{"_id":{"$oid":"55cba2476c522cafdb0570ba"},"location":{"coordinates":[-87.638594,41.816556],"type":"Point"},"name":"Macmenamins Nyc Hells Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0570bb"},"location":{"coordinates":[-73.9096211,40.8521139],"type":"Point"},"name":"Elena'S Restuarant"} +,{"_id":{"$oid":"55cba2476c522cafdb0570bc"},"location":{"coordinates":[-73.92077280000001,40.8540264],"type":"Point"},"name":"My Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0570bd"},"location":{"coordinates":[-73.82985099999999,40.758158],"type":"Point"},"name":"Hong Tai Yang"} +,{"_id":{"$oid":"55cba2476c522cafdb0570be"},"location":{"coordinates":[-73.948109,40.774082],"type":"Point"},"name":"Mumtaz"} +,{"_id":{"$oid":"55cba2476c522cafdb0570bf"},"location":{"coordinates":[-73.99457579999999,40.6802342],"type":"Point"},"name":"Smith Canteen"} +,{"_id":{"$oid":"55cba2476c522cafdb0570c0"},"location":{"coordinates":[-73.9452943,40.5843966],"type":"Point"},"name":"Draft Barn"} +,{"_id":{"$oid":"55cba2476c522cafdb0570c1"},"location":{"coordinates":[-73.9832188,40.7173116],"type":"Point"},"name":"La Isla Cafe Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0570c2"},"location":{"coordinates":[-73.95548269999999,40.8047482],"type":"Point"},"name":"Harlem Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb0570c3"},"location":{"coordinates":[-73.8341856,40.7576487],"type":"Point"},"name":"Sky Food Court(Sky Mall)"} +,{"_id":{"$oid":"55cba2476c522cafdb0570c4"},"location":{"coordinates":[-73.831718,40.7150031],"type":"Point"},"name":"Biu Bella"} +,{"_id":{"$oid":"55cba2476c522cafdb0570c5"},"location":{"coordinates":[-74.1552194,40.6256089],"type":"Point"},"name":"Rinconcito Paisa-Colombian Bakery \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0570c6"},"location":{"coordinates":[-73.9571318,40.7854597],"type":"Point"},"name":"Lox At Cafe Weissman"} +,{"_id":{"$oid":"55cba2476c522cafdb0570c7"},"location":{"coordinates":[-73.9942945,40.730306],"type":"Point"},"name":"Apple Restaurant \u0026 Bom Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0570c8"},"location":{"coordinates":[-74.2356563,40.5220818],"type":"Point"},"name":"Casale'S Bakery \u0026 Specialty Foods"} +,{"_id":{"$oid":"55cba2476c522cafdb0570c9"},"location":{"coordinates":[-74.01066019999999,40.6341365],"type":"Point"},"name":"Kulu Desserts"} +,{"_id":{"$oid":"55cba2476c522cafdb0570ca"},"location":{"coordinates":[-73.9902397,40.6720613],"type":"Point"},"name":"Four \u0026 Twenty Blackbirds"} +,{"_id":{"$oid":"55cba2476c522cafdb0570cb"},"location":{"coordinates":[-73.912984,40.6127296],"type":"Point"},"name":"Strike 10 Lanes (Sports Bar)"} +,{"_id":{"$oid":"55cba2476c522cafdb0570cc"},"location":{"coordinates":[-73.8290939,40.759362],"type":"Point"},"name":"Li'S Lanzhou Hand-Stretched Noodles"} +,{"_id":{"$oid":"55cba2476c522cafdb0570cd"},"location":{"coordinates":[-73.9591315,40.7639315],"type":"Point"},"name":"Wong Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0570ce"},"location":{"coordinates":[-73.9804058,40.6768929],"type":"Point"},"name":"Blueprint"} +,{"_id":{"$oid":"55cba2476c522cafdb0570cf"},"location":{"coordinates":[-73.88441619999999,40.81218870000001],"type":"Point"},"name":"Randall Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0570d0"},"location":{"coordinates":[-73.8792548,40.7384376],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0570d1"},"location":{"coordinates":[-73.8360332,40.7867062],"type":"Point"},"name":"Ralph'S Ices"} +,{"_id":{"$oid":"55cba2476c522cafdb0570d2"},"location":{"coordinates":[-73.836179,40.697852],"type":"Point"},"name":"Naciones Unidas"} +,{"_id":{"$oid":"55cba2476c522cafdb0570d3"},"location":{"coordinates":[-74.004604,40.650198],"type":"Point"},"name":"El Tesoro Ecuatoriano Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0570d4"},"location":{"coordinates":[-73.9412215,40.7174895],"type":"Point"},"name":"Tar Pit"} +,{"_id":{"$oid":"55cba2476c522cafdb0570d5"},"location":{"coordinates":[-74.006115,40.72698],"type":"Point"},"name":"San Marino Ristorante"} +,{"_id":{"$oid":"55cba2476c522cafdb0570d6"},"location":{"coordinates":[-73.975526,40.68380579999999],"type":"Point"},"name":"Auntie Anne'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0570d7"},"location":{"coordinates":[-74.1453425,40.5425832],"type":"Point"},"name":"New Sake One Fusion Japanese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0570d8"},"location":{"coordinates":[-73.98593699999999,40.74713],"type":"Point"},"name":"Turntable"} +,{"_id":{"$oid":"55cba2476c522cafdb0570d9"},"location":{"coordinates":[-73.9897591,40.6786225],"type":"Point"},"name":"Lavender Lake"} +,{"_id":{"$oid":"55cba2476c522cafdb0570da"},"location":{"coordinates":[-73.879126,40.740802],"type":"Point"},"name":"Joju"} +,{"_id":{"$oid":"55cba2476c522cafdb0570db"},"location":{"coordinates":[-73.9681538,40.6786003],"type":"Point"},"name":"Ample Hills Creamery"} +,{"_id":{"$oid":"55cba2476c522cafdb0570dc"},"location":{"coordinates":[-74.0014755,40.7366571],"type":"Point"},"name":"Vin Sur Vingt"} +,{"_id":{"$oid":"55cba2476c522cafdb0570dd"},"location":{"coordinates":[-74.0016674,40.7405164],"type":"Point"},"name":"Wrapido"} +,{"_id":{"$oid":"55cba2476c522cafdb0570de"},"location":{"coordinates":[-73.978764,40.596599],"type":"Point"},"name":"Cafe On The Hill"} +,{"_id":{"$oid":"55cba2476c522cafdb0570df"},"location":{"coordinates":[-73.990259,40.715183],"type":"Point"},"name":"Cafe Grumpy Les Llc"} +,{"_id":{"$oid":"55cba2476c522cafdb0570e0"},"location":{"coordinates":[-73.995162,40.63319440000001],"type":"Point"},"name":"Daniela'S Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0570e1"},"location":{"coordinates":[-74.1339519,40.636649],"type":"Point"},"name":"Taqueria La Roqueta"} +,{"_id":{"$oid":"55cba2476c522cafdb0570e2"},"location":{"coordinates":[-73.8606607,40.8263678],"type":"Point"},"name":"Taco Bell"} +,{"_id":{"$oid":"55cba2476c522cafdb0570e3"},"location":{"coordinates":[-73.8368291,40.7696452],"type":"Point"},"name":"Moe'S Gourmet Food \u0026 Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0570e4"},"location":{"coordinates":[-73.9834836,40.6805527],"type":"Point"},"name":"Fairfield Inn \u0026 Suites"} +,{"_id":{"$oid":"55cba2476c522cafdb0570e5"},"location":{"coordinates":[-73.9781102,40.72898440000001],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0570e6"},"location":{"coordinates":[-74.079983,40.6378172],"type":"Point"},"name":"El Bronkito Pizzaria Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0570e7"},"location":{"coordinates":[-73.9797686,40.6616085],"type":"Point"},"name":"The Pavilion"} +,{"_id":{"$oid":"55cba2476c522cafdb0570e8"},"location":{"coordinates":[-73.778435,40.78064930000001],"type":"Point"},"name":"Bay Terrace Pool \u0026 Tennis Center"} +,{"_id":{"$oid":"55cba2476c522cafdb0570e9"},"location":{"coordinates":[-73.7900093,40.7118568],"type":"Point"},"name":"Tikka Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb0570ea"},"location":{"coordinates":[-73.970671,40.7515735],"type":"Point"},"name":"La Trattoria"} +,{"_id":{"$oid":"55cba2476c522cafdb0570eb"},"location":{"coordinates":[-74.0286916,40.6299123],"type":"Point"},"name":"Lamoza"} +,{"_id":{"$oid":"55cba2476c522cafdb0570ec"},"location":{"coordinates":[-74.1662872,40.5598088],"type":"Point"},"name":"Hot Bagels \u0026 More"} +,{"_id":{"$oid":"55cba2476c522cafdb0570ed"},"location":{"coordinates":[-73.985473,40.761459],"type":"Point"},"name":"E \u0026 E Grill House"} +,{"_id":{"$oid":"55cba2476c522cafdb0570ee"},"location":{"coordinates":[-73.930553,40.6608329],"type":"Point"},"name":"Cafe Soul Jamaican Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0570ef"},"location":{"coordinates":[-73.9164134,40.7427303],"type":"Point"},"name":"Mila'S Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0570f0"},"location":{"coordinates":[-73.95573460000001,40.7154389],"type":"Point"},"name":"Gimme Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0570f1"},"location":{"coordinates":[-73.803814,40.7599724],"type":"Point"},"name":"Bao Ding"} +,{"_id":{"$oid":"55cba2476c522cafdb0570f2"},"location":{"coordinates":[-73.79976669999999,40.7032155],"type":"Point"},"name":"Jamaica Multi Plex Cinemas"} +,{"_id":{"$oid":"55cba2476c522cafdb0570f3"},"location":{"coordinates":[-73.9808063,40.6895078],"type":"Point"},"name":"2 Bros Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0570f4"},"location":{"coordinates":[-73.9211014,40.8251389],"type":"Point"},"name":"Concourse Plaza Multiplex Cinemas"} +,{"_id":{"$oid":"55cba2476c522cafdb0570f5"},"location":{"coordinates":[-73.8352918,40.7716451],"type":"Point"},"name":"College Point Multiplex Cinemas"} +,{"_id":{"$oid":"55cba2476c522cafdb0570f6"},"location":{"coordinates":[-73.9543635,40.6841334],"type":"Point"},"name":"Joloff 2"} +,{"_id":{"$oid":"55cba2476c522cafdb0570f7"},"location":{"coordinates":[-73.99419999999999,40.6018832],"type":"Point"},"name":"Golden Bun Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0570f8"},"location":{"coordinates":[-73.80823199999999,40.70071799999999],"type":"Point"},"name":"China King Express"} +,{"_id":{"$oid":"55cba2476c522cafdb0570f9"},"location":{"coordinates":[-73.9164545,40.7547664],"type":"Point"},"name":"Homemade Taqueria"} +,{"_id":{"$oid":"55cba2476c522cafdb0570fa"},"location":{"coordinates":[-74.01216099999999,40.647281],"type":"Point"},"name":"Las Cenizas Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0570fb"},"location":{"coordinates":[-73.8287771,40.86952309999999],"type":"Point"},"name":"Palombo Bakery Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0570fc"},"location":{"coordinates":[-73.965436,40.759558],"type":"Point"},"name":"Pita Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0570fd"},"location":{"coordinates":[-74.0101038,40.6484571],"type":"Point"},"name":"Cafe Lore"} +,{"_id":{"$oid":"55cba2476c522cafdb0570fe"},"location":{"coordinates":[-73.9274327,40.82120159999999],"type":"Point"},"name":"Brothers Seafood"} +,{"_id":{"$oid":"55cba2476c522cafdb0570ff"},"location":{"coordinates":[-73.97472139999999,40.6868734],"type":"Point"},"name":"Pequena"} +,{"_id":{"$oid":"55cba2476c522cafdb057100"},"location":{"coordinates":[-73.95371,40.769136],"type":"Point"},"name":"Oslo Coffee Roasters"} +,{"_id":{"$oid":"55cba2476c522cafdb057101"},"location":{"coordinates":[-73.9806361,40.7635061],"type":"Point"},"name":"Thi Iii New York"} +,{"_id":{"$oid":"55cba2476c522cafdb057102"},"location":{"coordinates":[-73.94717399999999,40.626981],"type":"Point"},"name":"Spoons"} +,{"_id":{"$oid":"55cba2476c522cafdb057103"},"location":{"coordinates":[-74.0025683,40.73015480000001],"type":"Point"},"name":"Trattoria Spaghetto"} +,{"_id":{"$oid":"55cba2476c522cafdb057104"},"location":{"coordinates":[-73.9132496,40.7563013],"type":"Point"},"name":"Raven'S Head Public House"} +,{"_id":{"$oid":"55cba2476c522cafdb057105"},"location":{"coordinates":[-73.9170608,40.6990867],"type":"Point"},"name":"Popeye'S Louisiana Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb057106"},"location":{"coordinates":[-73.8383132,40.6545261],"type":"Point"},"name":"Empire Buffet"} +,{"_id":{"$oid":"55cba2476c522cafdb057107"},"location":{"coordinates":[-73.82786899999999,40.766517],"type":"Point"},"name":"Gaji Gaji"} +,{"_id":{"$oid":"55cba2476c522cafdb057108"},"location":{"coordinates":[-73.94017199999999,40.79315099999999],"type":"Point"},"name":"La Nostra Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb057109"},"location":{"coordinates":[-73.985002,40.745462],"type":"Point"},"name":"Miss K'S Italian Eatery \u0026 Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05710a"},"location":{"coordinates":[-73.989747,40.73078599999999],"type":"Point"},"name":"Prime \u0026 Beyond New York"} +,{"_id":{"$oid":"55cba2476c522cafdb05710b"},"location":{"coordinates":[-73.929902,40.7027829],"type":"Point"},"name":"Cain'S Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb05710c"},"location":{"coordinates":[-73.85840739999999,40.692406],"type":"Point"},"name":"Double Happy Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb05710d"},"location":{"coordinates":[-73.8970695,40.7543899],"type":"Point"},"name":"Taco Bell"} +,{"_id":{"$oid":"55cba2476c522cafdb05710e"},"location":{"coordinates":[-73.75643579999999,40.7479927],"type":"Point"},"name":"River Japanese Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb05710f"},"location":{"coordinates":[-73.86641209999999,40.8542479],"type":"Point"},"name":"El Acatlan Mexican Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057110"},"location":{"coordinates":[-73.93637989999999,40.7361744],"type":"Point"},"name":"Fairfield Inn Marriott"} +,{"_id":{"$oid":"55cba2476c522cafdb057111"},"location":{"coordinates":[-74.003748,40.712931],"type":"Point"},"name":"Koki \u0026 Vegi"} +,{"_id":{"$oid":"55cba2476c522cafdb057112"},"location":{"coordinates":[-73.8004923,40.7038358],"type":"Point"},"name":"Avenita Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb057113"},"location":{"coordinates":[-73.96945749999999,40.5908545],"type":"Point"},"name":"Max'S Burgers And Steaks"} +,{"_id":{"$oid":"55cba2476c522cafdb057114"},"location":{"coordinates":[-73.9839619,40.7579064],"type":"Point"},"name":"Margon Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057115"},"location":{"coordinates":[-73.9255529,40.861612],"type":"Point"},"name":"Mi-Nido Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb057116"},"location":{"coordinates":[-73.9177,40.826181],"type":"Point"},"name":"Italian Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb057117"},"location":{"coordinates":[-73.96415999999999,40.641057],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb057118"},"location":{"coordinates":[-73.8695504,40.7241575],"type":"Point"},"name":"Gyro Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb057119"},"location":{"coordinates":[-73.9455116,40.7510895],"type":"Point"},"name":"Show Palace"} +,{"_id":{"$oid":"55cba2476c522cafdb05711a"},"location":{"coordinates":[-73.8635998,40.8766918],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb05711b"},"location":{"coordinates":[-73.9474364,40.7520234],"type":"Point"},"name":"Z Hotel"} +,{"_id":{"$oid":"55cba2476c522cafdb05711c"},"location":{"coordinates":[-73.99894619999999,40.7141973],"type":"Point"},"name":"Wo Hop City"} +,{"_id":{"$oid":"55cba2476c522cafdb05711d"},"location":{"coordinates":[-73.8977708,40.6769083],"type":"Point"},"name":"Us Fried Chicken \u0026 Home Made Biscuit"} +,{"_id":{"$oid":"55cba2476c522cafdb05711e"},"location":{"coordinates":[-73.9064501,40.66818809999999],"type":"Point"},"name":"Manny'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05711f"},"location":{"coordinates":[-73.9774498,40.6803906],"type":"Point"},"name":"Shinju Iii Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb057120"},"location":{"coordinates":[-74.081171,40.624358],"type":"Point"},"name":"Three Brothers Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb057121"},"location":{"coordinates":[-73.9246301,40.8270987],"type":"Point"},"name":"Eat Healthy \u0026 Bomber'S Stadium Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb057122"},"location":{"coordinates":[-74.230729,40.527271],"type":"Point"},"name":"Z-Two Diner \u0026 Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb057123"},"location":{"coordinates":[-73.983392,40.779668],"type":"Point"},"name":"Sushi Yasaka"} +,{"_id":{"$oid":"55cba2476c522cafdb057124"},"location":{"coordinates":[-74.00657989999999,40.7147013],"type":"Point"},"name":"Maxwell'S"} +,{"_id":{"$oid":"55cba2476c522cafdb057125"},"location":{"coordinates":[-74.23948,40.5320584],"type":"Point"},"name":"Cousin'S Pizza Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057126"},"location":{"coordinates":[-73.886879,40.7434768],"type":"Point"},"name":"Jugos Y Tacos"} +,{"_id":{"$oid":"55cba2476c522cafdb057127"},"location":{"coordinates":[-73.7685432,40.7552134],"type":"Point"},"name":"Joe'S Sicilian Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb057128"},"location":{"coordinates":[-73.97936729999999,40.7769815],"type":"Point"},"name":"Cafe Tallulah"} +,{"_id":{"$oid":"55cba2476c522cafdb057129"},"location":{"coordinates":[-73.938525,40.797001],"type":"Point"},"name":"Pasteles Capy"} +,{"_id":{"$oid":"55cba2476c522cafdb05712a"},"location":{"coordinates":[-73.9171281,40.7646773],"type":"Point"},"name":"William Hallet"} +,{"_id":{"$oid":"55cba2476c522cafdb05712b"},"location":{"coordinates":[-73.8723274,40.7490202],"type":"Point"},"name":"La Casa Del Pollo Peruano"} +,{"_id":{"$oid":"55cba2476c522cafdb05712c"},"location":{"coordinates":[-73.8321798,40.7615159],"type":"Point"},"name":"Good Kitchen Seafood Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05712d"},"location":{"coordinates":[-73.8190494,40.84639019999999],"type":"Point"},"name":"International Caterers"} +,{"_id":{"$oid":"55cba2476c522cafdb05712e"},"location":{"coordinates":[-74.0051644,40.6338002],"type":"Point"},"name":"Spicy Pot"} +,{"_id":{"$oid":"55cba2476c522cafdb05712f"},"location":{"coordinates":[-73.94827529999999,40.78741429999999],"type":"Point"},"name":"Gong Thai Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057130"},"location":{"coordinates":[-73.96016159999999,40.7614842],"type":"Point"},"name":"Anatolia Mediterranean Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb057131"},"location":{"coordinates":[-73.8706606,40.7342757],"type":"Point"},"name":"Kido Sushi (Queens Center Mall)"} +,{"_id":{"$oid":"55cba2476c522cafdb057132"},"location":{"coordinates":[-73.9033421,40.7453516],"type":"Point"},"name":"Los Mangos"} +,{"_id":{"$oid":"55cba2476c522cafdb057133"},"location":{"coordinates":[-73.9087924,40.8232639],"type":"Point"},"name":"New Panda Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057134"},"location":{"coordinates":[-73.7977928,40.864318],"type":"Point"},"name":"Havana Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057135"},"location":{"coordinates":[-73.978904,40.64853],"type":"Point"},"name":"Steeplechase Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb057136"},"location":{"coordinates":[-73.9777689,40.6807729],"type":"Point"},"name":"Wolf And Deer Brooklyn"} +,{"_id":{"$oid":"55cba2476c522cafdb057137"},"location":{"coordinates":[-73.7431634,40.7167671],"type":"Point"},"name":"Ahuachapan"} +,{"_id":{"$oid":"55cba2476c522cafdb057138"},"location":{"coordinates":[-73.8601016,40.728795],"type":"Point"},"name":"Forest Hills Bagels"} +,{"_id":{"$oid":"55cba2476c522cafdb057139"},"location":{"coordinates":[-73.9165452,40.7648671],"type":"Point"},"name":"Via Trenta"} +,{"_id":{"$oid":"55cba2476c522cafdb05713a"},"location":{"coordinates":[-74.0062401,40.7397546],"type":"Point"},"name":"Tertulia"} +,{"_id":{"$oid":"55cba2476c522cafdb05713b"},"location":{"coordinates":[-73.8290939,40.759362],"type":"Point"},"name":"Lao Ma Ma La Tang"} +,{"_id":{"$oid":"55cba2476c522cafdb05713c"},"location":{"coordinates":[-73.844126,40.676531],"type":"Point"},"name":"Yummy Yummy Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05713d"},"location":{"coordinates":[-74.0092313,40.7188434],"type":"Point"},"name":"Jung Sik"} +,{"_id":{"$oid":"55cba2476c522cafdb05713e"},"location":{"coordinates":[-73.98768199999999,40.721902],"type":"Point"},"name":"Taverna Di Bacco"} +,{"_id":{"$oid":"55cba2476c522cafdb05713f"},"location":{"coordinates":[-73.962377,40.597949],"type":"Point"},"name":"Galaxy Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057140"},"location":{"coordinates":[-73.84719799999999,40.8767915],"type":"Point"},"name":"Boston Road China"} +,{"_id":{"$oid":"55cba2476c522cafdb057141"},"location":{"coordinates":[-73.9182239,40.770287],"type":"Point"},"name":"El Cafetal Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057142"},"location":{"coordinates":[-73.95632309999999,40.71321560000001],"type":"Point"},"name":"High Horse Saloon"} +,{"_id":{"$oid":"55cba2476c522cafdb057143"},"location":{"coordinates":[-74.135592,40.633918],"type":"Point"},"name":"Casey'S Public House"} +,{"_id":{"$oid":"55cba2476c522cafdb057144"},"location":{"coordinates":[-73.944109,40.5999893],"type":"Point"},"name":"Lloyd \u0026 Jay'S Kosher Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb057145"},"location":{"coordinates":[-73.9550419,40.7334793],"type":"Point"},"name":"Troost"} +,{"_id":{"$oid":"55cba2476c522cafdb057146"},"location":{"coordinates":[-73.9763,40.672778],"type":"Point"},"name":"Numero 28 Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb057147"},"location":{"coordinates":[-73.9723988,40.6934188],"type":"Point"},"name":"The Red Lantern"} +,{"_id":{"$oid":"55cba2476c522cafdb057148"},"location":{"coordinates":[-73.9193731,40.8647918],"type":"Point"},"name":"Disfruta"} +,{"_id":{"$oid":"55cba2476c522cafdb057149"},"location":{"coordinates":[-73.8041841,40.7622091],"type":"Point"},"name":"Village Bakery Company"} +,{"_id":{"$oid":"55cba2476c522cafdb05714a"},"location":{"coordinates":[-73.9573022,40.6086016],"type":"Point"},"name":"Paraiso Azteca Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05714b"},"location":{"coordinates":[-73.97358919999999,40.6548081],"type":"Point"},"name":"Johnnys Ices"} +,{"_id":{"$oid":"55cba2476c522cafdb05714c"},"location":{"coordinates":[-73.9747189,40.6869439],"type":"Point"},"name":"Mo'S Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05714d"},"location":{"coordinates":[-73.86018899999999,40.7311337],"type":"Point"},"name":"Jc Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb05714e"},"location":{"coordinates":[-73.8341856,40.7576487],"type":"Point"},"name":"Five Guys Burgers And Fries"} +,{"_id":{"$oid":"55cba2476c522cafdb05714f"},"location":{"coordinates":[-73.9785586,40.75892839999999],"type":"Point"},"name":"Del Frisco'S Grille"} +,{"_id":{"$oid":"55cba2476c522cafdb057150"},"location":{"coordinates":[-73.97501079999999,40.6746103],"type":"Point"},"name":"Roma Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb057151"},"location":{"coordinates":[-73.95197399999999,40.769844],"type":"Point"},"name":"Le Moulin A Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057152"},"location":{"coordinates":[-73.8739128,40.73324059999999],"type":"Point"},"name":"East Dragon"} +,{"_id":{"$oid":"55cba2476c522cafdb057153"},"location":{"coordinates":[-73.9670091,40.8029095],"type":"Point"},"name":"The Manchester Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb057154"},"location":{"coordinates":[-73.94236599999999,40.79925799999999],"type":"Point"},"name":"El Rancho Sports Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb057155"},"location":{"coordinates":[-73.972285,40.756056],"type":"Point"},"name":"W Hotel"} +,{"_id":{"$oid":"55cba2476c522cafdb057156"},"location":{"coordinates":[-73.9589714,40.8203314],"type":"Point"},"name":"Hudson River Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057157"},"location":{"coordinates":[-73.9944769,40.685893],"type":"Point"},"name":"Sam'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057158"},"location":{"coordinates":[-73.9241548,40.8124378],"type":"Point"},"name":"Thomas Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb057159"},"location":{"coordinates":[-73.9795453,40.5732168],"type":"Point"},"name":"Coney'S Cones"} +,{"_id":{"$oid":"55cba2476c522cafdb05715a"},"location":{"coordinates":[-73.9508199,40.711201],"type":"Point"},"name":"Williams \u0026 Bailey"} +,{"_id":{"$oid":"55cba2476c522cafdb05715b"},"location":{"coordinates":[-73.984552,40.6913986],"type":"Point"},"name":"Aloft New York Brooklyn/Brooklyn Terrace"} +,{"_id":{"$oid":"55cba2476c522cafdb05715c"},"location":{"coordinates":[-73.92377859999999,40.7610102],"type":"Point"},"name":"Junko Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb05715d"},"location":{"coordinates":[-73.871566,40.75348],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb05715e"},"location":{"coordinates":[-74.0002331,40.7174105],"type":"Point"},"name":"Mika Japanese Cuisine \u0026 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05715f"},"location":{"coordinates":[-73.992368,40.75639],"type":"Point"},"name":"Four Points Sheraton"} +,{"_id":{"$oid":"55cba2476c522cafdb057160"},"location":{"coordinates":[-73.87957,40.712446],"type":"Point"},"name":"Green Leaf Chinese And Thai Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb057161"},"location":{"coordinates":[-73.954047,40.787883],"type":"Point"},"name":"Pure Food"} +,{"_id":{"$oid":"55cba2476c522cafdb057162"},"location":{"coordinates":[-73.97331679999999,40.75482770000001],"type":"Point"},"name":"The Lexington Hotel New York"} +,{"_id":{"$oid":"55cba2476c522cafdb057163"},"location":{"coordinates":[-73.9936184,40.73907760000001],"type":"Point"},"name":"Incognito Bistro"} +,{"_id":{"$oid":"55cba2476c522cafdb057164"},"location":{"coordinates":[-74.01159559999999,40.6335064],"type":"Point"},"name":"Tbaar"} +,{"_id":{"$oid":"55cba2476c522cafdb057165"},"location":{"coordinates":[-73.8762672,40.7489192],"type":"Point"},"name":"Tacos Al Suadero"} +,{"_id":{"$oid":"55cba2476c522cafdb057166"},"location":{"coordinates":[-73.98542859999999,40.6166131],"type":"Point"},"name":"La Cemita Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057167"},"location":{"coordinates":[-73.9524212,40.7922919],"type":"Point"},"name":"Cafe On 5Th/Sterling Affair"} +,{"_id":{"$oid":"55cba2476c522cafdb057168"},"location":{"coordinates":[-73.97705599999999,40.752998],"type":"Point"},"name":"Manhattan Chili Co./Thai Toon"} +,{"_id":{"$oid":"55cba2476c522cafdb057169"},"location":{"coordinates":[-73.9230101,40.8624228],"type":"Point"},"name":"Agua Roja Bar \u0026 Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb05716a"},"location":{"coordinates":[-73.9416849,40.822537],"type":"Point"},"name":"Jumbo'S Hamburgers"} +,{"_id":{"$oid":"55cba2476c522cafdb05716b"},"location":{"coordinates":[-73.982714,40.757223],"type":"Point"},"name":"Starbucks Coffee # 15440"} +,{"_id":{"$oid":"55cba2476c522cafdb05716c"},"location":{"coordinates":[-73.93409630000001,40.6960867],"type":"Point"},"name":"Club Republic"} +,{"_id":{"$oid":"55cba2476c522cafdb05716d"},"location":{"coordinates":[-73.89425400000002,40.6610749],"type":"Point"},"name":"Flava Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb05716e"},"location":{"coordinates":[-73.82791569999999,40.7658206],"type":"Point"},"name":"Chao Fang Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05716f"},"location":{"coordinates":[-73.797263,40.7040122],"type":"Point"},"name":"Gourmet Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb057170"},"location":{"coordinates":[-73.816774,40.584352],"type":"Point"},"name":"Connolly'S"} +,{"_id":{"$oid":"55cba2476c522cafdb057171"},"location":{"coordinates":[-73.8837752,40.7560055],"type":"Point"},"name":"Banana King"} +,{"_id":{"$oid":"55cba2476c522cafdb057172"},"location":{"coordinates":[-73.99337179999999,40.7568844],"type":"Point"},"name":"Tabata Noodle Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057173"},"location":{"coordinates":[-73.8637064,40.7288059],"type":"Point"},"name":"Bella Roza"} +,{"_id":{"$oid":"55cba2476c522cafdb057174"},"location":{"coordinates":[-73.8723931,40.7508817],"type":"Point"},"name":"Mi Pequeno El Salvador Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057175"},"location":{"coordinates":[-73.948633,40.77844],"type":"Point"},"name":"Luigi Pizzeria \u0026 Ristorante"} +,{"_id":{"$oid":"55cba2476c522cafdb057176"},"location":{"coordinates":[-73.9525496,40.6760317],"type":"Point"},"name":"Taste Of India"} +,{"_id":{"$oid":"55cba2476c522cafdb057177"},"location":{"coordinates":[-73.96940219999999,40.7558733],"type":"Point"},"name":"Wild Ginger"} +,{"_id":{"$oid":"55cba2476c522cafdb057178"},"location":{"coordinates":[-73.98820789999999,40.7457214],"type":"Point"},"name":"Stumptown Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb057179"},"location":{"coordinates":[-73.9967789,40.716908],"type":"Point"},"name":"Xo Taste"} +,{"_id":{"$oid":"55cba2476c522cafdb05717a"},"location":{"coordinates":[-73.9696361,40.643425],"type":"Point"},"name":"Red Mist"} +,{"_id":{"$oid":"55cba2476c522cafdb05717b"},"location":{"coordinates":[-73.9900535,40.6877048],"type":"Point"},"name":"Bien Cuit"} +,{"_id":{"$oid":"55cba2476c522cafdb05717c"},"location":{"coordinates":[-74.0025233,40.7393217],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb05717d"},"location":{"coordinates":[-74.03442009999999,40.6158229],"type":"Point"},"name":"Panda Garden Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05717e"},"location":{"coordinates":[-74.0250022,40.6231678],"type":"Point"},"name":"Full Moon Saloon"} +,{"_id":{"$oid":"55cba2476c522cafdb05717f"},"location":{"coordinates":[-74.007446,40.604355],"type":"Point"},"name":"Las Margaritas Deli Grocery"} +,{"_id":{"$oid":"55cba2476c522cafdb057180"},"location":{"coordinates":[-73.980744,40.613757],"type":"Point"},"name":"Soho Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb057181"},"location":{"coordinates":[-74.12388589999999,40.6132066],"type":"Point"},"name":"Danny Boys Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb057182"},"location":{"coordinates":[-73.991288,40.7026834],"type":"Point"},"name":"Grace \u0026 Sung 7 Stars Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb057183"},"location":{"coordinates":[-73.92148089999999,40.8406998],"type":"Point"},"name":"D'Blass Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057184"},"location":{"coordinates":[-73.9850196,40.7524629],"type":"Point"},"name":"Mars Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057185"},"location":{"coordinates":[-73.9943138,40.624557],"type":"Point"},"name":"Santos Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057186"},"location":{"coordinates":[-73.926613,40.621162],"type":"Point"},"name":"Katou Fin Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057187"},"location":{"coordinates":[-73.98667999999999,40.72625379999999],"type":"Point"},"name":"Sigiri"} +,{"_id":{"$oid":"55cba2476c522cafdb057188"},"location":{"coordinates":[-73.9533679,40.7457803],"type":"Point"},"name":"Alobar Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057189"},"location":{"coordinates":[-73.832859,40.69985],"type":"Point"},"name":"Alfie'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05718a"},"location":{"coordinates":[-73.98920199999999,40.72705],"type":"Point"},"name":"Cooper'S Craft \u0026 Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb05718b"},"location":{"coordinates":[-73.8299444,40.8518607],"type":"Point"},"name":"Lee Xing Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05718c"},"location":{"coordinates":[-73.93115089999999,40.6656696],"type":"Point"},"name":"Golden Krust"} +,{"_id":{"$oid":"55cba2476c522cafdb05718d"},"location":{"coordinates":[-74.0097816,40.7145348],"type":"Point"},"name":"Saleya"} +,{"_id":{"$oid":"55cba2476c522cafdb05718e"},"location":{"coordinates":[-74.0067308,40.7351272],"type":"Point"},"name":"Left Bank"} +,{"_id":{"$oid":"55cba2476c522cafdb05718f"},"location":{"coordinates":[-73.7905127,40.7263702],"type":"Point"},"name":"Umi Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb057190"},"location":{"coordinates":[-74.00489689999999,40.7419343],"type":"Point"},"name":"Google Chelsea Market"} +,{"_id":{"$oid":"55cba2476c522cafdb057191"},"location":{"coordinates":[-73.96572350000001,40.6936645],"type":"Point"},"name":"Waza Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb057192"},"location":{"coordinates":[-73.9736712,40.7830649],"type":"Point"},"name":"Calle Ocho"} +,{"_id":{"$oid":"55cba2476c522cafdb057193"},"location":{"coordinates":[-73.860524,40.749908],"type":"Point"},"name":"New Ming Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb057194"},"location":{"coordinates":[-73.832701,40.758926],"type":"Point"},"name":"New Mei Hua"} +,{"_id":{"$oid":"55cba2476c522cafdb057195"},"location":{"coordinates":[-74.00502999999999,40.629857],"type":"Point"},"name":"May May Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb057196"},"location":{"coordinates":[-73.9582523,40.7107319],"type":"Point"},"name":"Kabob Shack"} +,{"_id":{"$oid":"55cba2476c522cafdb057197"},"location":{"coordinates":[-73.8742384,40.7435622],"type":"Point"},"name":"Taqueria Juarez Deli Grocery \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057198"},"location":{"coordinates":[-73.8528029,40.7526486],"type":"Point"},"name":"La Picardia Poblana Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb057199"},"location":{"coordinates":[-73.7762364,40.7589006],"type":"Point"},"name":"Bayside Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb05719a"},"location":{"coordinates":[-73.9510153,40.7113994],"type":"Point"},"name":"Santos Anne"} +,{"_id":{"$oid":"55cba2476c522cafdb05719b"},"location":{"coordinates":[-73.82511160000001,40.761814],"type":"Point"},"name":"Flushing House Residence For Adults (Senior Home)"} +,{"_id":{"$oid":"55cba2476c522cafdb05719c"},"location":{"coordinates":[-73.94024,40.70780999999999],"type":"Point"},"name":"Cup"} +,{"_id":{"$oid":"55cba2476c522cafdb05719d"},"location":{"coordinates":[-73.8780628,40.8286983],"type":"Point"},"name":"Jo Jo Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05719e"},"location":{"coordinates":[-74.00951599999999,40.7143257],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb05719f"},"location":{"coordinates":[-73.94002669999999,40.8153973],"type":"Point"},"name":"Pizza Stop"} +,{"_id":{"$oid":"55cba2476c522cafdb0571a0"},"location":{"coordinates":[-73.9716854,40.5973153],"type":"Point"},"name":"Blue Velvet Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb0571a1"},"location":{"coordinates":[-74.00068499999999,40.7416179],"type":"Point"},"name":"Dd Maru Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb0571a2"},"location":{"coordinates":[-73.97873489999999,40.7860511],"type":"Point"},"name":"Barnes \u0026 Noble Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0571a3"},"location":{"coordinates":[-73.99929999999999,40.720719],"type":"Point"},"name":"Saturdays Surf Nyc"} +,{"_id":{"$oid":"55cba2476c522cafdb0571a4"},"location":{"coordinates":[-73.8289593,40.7588413],"type":"Point"},"name":"Red Chopstick"} +,{"_id":{"$oid":"55cba2476c522cafdb0571a5"},"location":{"coordinates":[-73.811629,40.765087],"type":"Point"},"name":"Hanra Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0571a6"},"location":{"coordinates":[-73.98510900000001,40.763129],"type":"Point"},"name":"Peking Roast Duck"} +,{"_id":{"$oid":"55cba2476c522cafdb0571a7"},"location":{"coordinates":[-73.9786168,40.64335450000001],"type":"Point"},"name":"Friendly'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0571a8"},"location":{"coordinates":[-73.80348699999999,40.81013000000001],"type":"Point"},"name":"Paddy'S On The Bay"} +,{"_id":{"$oid":"55cba2476c522cafdb0571a9"},"location":{"coordinates":[-73.86268,40.88317199999999],"type":"Point"},"name":"Chai Hwa Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0571aa"},"location":{"coordinates":[-73.8774009,40.7360867],"type":"Point"},"name":"Sabor Colombiano Cafe Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0571ab"},"location":{"coordinates":[-73.95121619999999,40.7237678],"type":"Point"},"name":"Nights And Weekends"} +,{"_id":{"$oid":"55cba2476c522cafdb0571ac"},"location":{"coordinates":[-73.9751792,40.67987],"type":"Point"},"name":"Purbird"} +,{"_id":{"$oid":"55cba2476c522cafdb0571ad"},"location":{"coordinates":[-73.9786752,40.7821681],"type":"Point"},"name":"Francesca La Vela Cucina"} +,{"_id":{"$oid":"55cba2476c522cafdb0571ae"},"location":{"coordinates":[-73.7472748,40.7355725],"type":"Point"},"name":"New Golden Star"} +,{"_id":{"$oid":"55cba2476c522cafdb0571af"},"location":{"coordinates":[-73.792343,40.75805400000001],"type":"Point"},"name":"Damian Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb0571b0"},"location":{"coordinates":[-74.0090803,40.71848110000001],"type":"Point"},"name":"Zutto"} +,{"_id":{"$oid":"55cba2476c522cafdb0571b1"},"location":{"coordinates":[-73.997373,40.719862],"type":"Point"},"name":"Amici Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb0571b2"},"location":{"coordinates":[-73.9332575,40.8504572],"type":"Point"},"name":"Lucky Seven Tapas Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0571b3"},"location":{"coordinates":[-74.09564209999999,40.5829476],"type":"Point"},"name":"Joe'S Lobster House"} +,{"_id":{"$oid":"55cba2476c522cafdb0571b4"},"location":{"coordinates":[-73.90441,40.841629],"type":"Point"},"name":"Mcdonald"} +,{"_id":{"$oid":"55cba2476c522cafdb0571b5"},"location":{"coordinates":[-74.07531399999999,40.62652200000001],"type":"Point"},"name":"Tu Ranchito Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0571b6"},"location":{"coordinates":[-73.8404544,40.6600815],"type":"Point"},"name":"Bruno'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0571b7"},"location":{"coordinates":[-73.883262,40.74610699999999],"type":"Point"},"name":"Guayacos Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0571b8"},"location":{"coordinates":[-73.86447249999999,40.7264515],"type":"Point"},"name":"Tony'S Pizza Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0571b9"},"location":{"coordinates":[-73.85001989999999,40.9038435],"type":"Point"},"name":"New Happy Joy"} +,{"_id":{"$oid":"55cba2476c522cafdb0571ba"},"location":{"coordinates":[-73.977738,40.671931],"type":"Point"},"name":"Bareburger"} +,{"_id":{"$oid":"55cba2476c522cafdb0571bb"},"location":{"coordinates":[-73.9903052,40.7130127],"type":"Point"},"name":"Mee Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0571bc"},"location":{"coordinates":[-73.8673867,40.8543008],"type":"Point"},"name":"La Pentola Italian Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb0571bd"},"location":{"coordinates":[-73.9793564,40.7589426],"type":"Point"},"name":"Harry'S Italian Pizza Parlor"} +,{"_id":{"$oid":"55cba2476c522cafdb0571be"},"location":{"coordinates":[-73.9801861,40.6872992],"type":"Point"},"name":"Livingston Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb0571bf"},"location":{"coordinates":[-76.8172742,40.8486073],"type":"Point"},"name":"Potbelly Sandwich Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb0571c0"},"location":{"coordinates":[-73.9744259,40.675474],"type":"Point"},"name":"Spice"} +,{"_id":{"$oid":"55cba2476c522cafdb0571c1"},"location":{"coordinates":[-73.9840944,40.7264293],"type":"Point"},"name":"Big Gay Ice Cream Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb0571c2"},"location":{"coordinates":[-73.9188988,40.6347588],"type":"Point"},"name":"Sally'S West Indian Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0571c3"},"location":{"coordinates":[-73.9926842,40.7137855],"type":"Point"},"name":"King Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0571c4"},"location":{"coordinates":[-73.9703226,40.6893738],"type":"Point"},"name":"Black Iris Middle Eastern Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb0571c5"},"location":{"coordinates":[-73.9940398,40.7117387],"type":"Point"},"name":"Food King Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0571c6"},"location":{"coordinates":[-73.82005099999999,40.765317],"type":"Point"},"name":"Tong Tong Tonkatsu"} +,{"_id":{"$oid":"55cba2476c522cafdb0571c7"},"location":{"coordinates":[-73.912099,40.669692],"type":"Point"},"name":"Avenue Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0571c8"},"location":{"coordinates":[-73.94058799999999,40.692363],"type":"Point"},"name":"J \u0026 D Asian Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0571c9"},"location":{"coordinates":[-73.87259120000002,40.6837174],"type":"Point"},"name":"Fu Xing House"} +,{"_id":{"$oid":"55cba2476c522cafdb0571ca"},"location":{"coordinates":[-73.9893263,40.7204716],"type":"Point"},"name":"Sauce"} +,{"_id":{"$oid":"55cba2476c522cafdb0571cb"},"location":{"coordinates":[-74.0336281,40.6165926],"type":"Point"},"name":"Embers"} +,{"_id":{"$oid":"55cba2476c522cafdb0571cc"},"location":{"coordinates":[-73.9195517,40.75772389999999],"type":"Point"},"name":"Mamas Empanadas"} +,{"_id":{"$oid":"55cba2476c522cafdb0571cd"},"location":{"coordinates":[-73.8700438,40.7492865],"type":"Point"},"name":"Mini Picanteria El Guayaquileno Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb0571ce"},"location":{"coordinates":[-73.8265948,40.77146510000001],"type":"Point"},"name":"Shillas Restaurant \u0026 Korean Bbq"} +,{"_id":{"$oid":"55cba2476c522cafdb0571cf"},"location":{"coordinates":[-73.9036034,40.646061],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0571d0"},"location":{"coordinates":[-73.9199067,40.8661003],"type":"Point"},"name":"Delios Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0571d1"},"location":{"coordinates":[-73.812224,40.675042],"type":"Point"},"name":"Victor'S Coffee Shop Deli \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0571d2"},"location":{"coordinates":[-73.97572559999999,40.6747488],"type":"Point"},"name":"Kiwiana Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0571d3"},"location":{"coordinates":[-74.1211853,40.6046525],"type":"Point"},"name":"Krispy Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0571d4"},"location":{"coordinates":[-73.9841959,40.6633945],"type":"Point"},"name":"Henry"} +,{"_id":{"$oid":"55cba2476c522cafdb0571d5"},"location":{"coordinates":[-73.95315169999999,40.6382774],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb0571d6"},"location":{"coordinates":[-74.00255,40.730096],"type":"Point"},"name":"Molly'S Cupcakes"} +,{"_id":{"$oid":"55cba2476c522cafdb0571d7"},"location":{"coordinates":[-73.824773,40.8285777],"type":"Point"},"name":"Alley Cat"} +,{"_id":{"$oid":"55cba2476c522cafdb0571d8"},"location":{"coordinates":[-73.8830342,40.7560464],"type":"Point"},"name":"Amaru"} +,{"_id":{"$oid":"55cba2476c522cafdb0571d9"},"location":{"coordinates":[-73.9529791,40.71654849999999],"type":"Point"},"name":"Muchmore'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0571da"},"location":{"coordinates":[-73.8485005,40.7102928],"type":"Point"},"name":"Hang Shing Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0571db"},"location":{"coordinates":[-73.987776,40.722326],"type":"Point"},"name":"Aaa Ichiban Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb0571dc"},"location":{"coordinates":[-73.926729,40.762592],"type":"Point"},"name":"The New Portales Taqueria"} +,{"_id":{"$oid":"55cba2476c522cafdb0571dd"},"location":{"coordinates":[-73.80845529999999,40.7869333],"type":"Point"},"name":"King'S Chef"} +,{"_id":{"$oid":"55cba2476c522cafdb0571de"},"location":{"coordinates":[-73.9204929,40.688864],"type":"Point"},"name":"Reggae Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0571df"},"location":{"coordinates":[-73.99050299999999,40.761854],"type":"Point"},"name":"Fuel"} +,{"_id":{"$oid":"55cba2476c522cafdb0571e0"},"location":{"coordinates":[-73.9532758,40.806208],"type":"Point"},"name":"Cedric"} +,{"_id":{"$oid":"55cba2476c522cafdb0571e1"},"location":{"coordinates":[-73.9505712,40.6669964],"type":"Point"},"name":"New China Wok"} +,{"_id":{"$oid":"55cba2476c522cafdb0571e2"},"location":{"coordinates":[-73.9069581,40.8774013],"type":"Point"},"name":"La Nueva Estrella Pizza And Deli Grocery"} +,{"_id":{"$oid":"55cba2476c522cafdb0571e3"},"location":{"coordinates":[-73.9769559,40.7495955],"type":"Point"},"name":"Hunan Manor Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0571e4"},"location":{"coordinates":[-73.97219,40.7513376],"type":"Point"},"name":"Fabio Piccolo Fiore"} +,{"_id":{"$oid":"55cba2476c522cafdb0571e5"},"location":{"coordinates":[-73.9504927,40.7762275],"type":"Point"},"name":"Ryan'S Daughter Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0571e6"},"location":{"coordinates":[-74.0102115,40.713174],"type":"Point"},"name":"Pret A Manger"} +,{"_id":{"$oid":"55cba2476c522cafdb0571e7"},"location":{"coordinates":[-73.925275,40.81560899999999],"type":"Point"},"name":"Mike'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0571e8"},"location":{"coordinates":[-73.9702695,40.755019],"type":"Point"},"name":"Bukhara Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0571e9"},"location":{"coordinates":[-73.982291,40.728228],"type":"Point"},"name":"Tompkins Square Bagels"} +,{"_id":{"$oid":"55cba2476c522cafdb0571ea"},"location":{"coordinates":[-73.9332352,40.772728],"type":"Point"},"name":"El Rodeo"} +,{"_id":{"$oid":"55cba2476c522cafdb0571eb"},"location":{"coordinates":[-73.94891299999999,40.781225],"type":"Point"},"name":"Off The Rails"} +,{"_id":{"$oid":"55cba2476c522cafdb0571ec"},"location":{"coordinates":[-73.9607692,40.5820337],"type":"Point"},"name":"China Long"} +,{"_id":{"$oid":"55cba2476c522cafdb0571ed"},"location":{"coordinates":[-73.9923829,40.7481246],"type":"Point"},"name":"Mexicue"} +,{"_id":{"$oid":"55cba2476c522cafdb0571ee"},"location":{"coordinates":[-73.8290939,40.759362],"type":"Point"},"name":"Beautiful Memory Desserts"} +,{"_id":{"$oid":"55cba2476c522cafdb0571ef"},"location":{"coordinates":[-73.92329699999999,40.763946],"type":"Point"},"name":"Mermaid Go Go And Sport Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0571f0"},"location":{"coordinates":[-73.81455799999999,40.765443],"type":"Point"},"name":"Vine Tree Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0571f1"},"location":{"coordinates":[-73.8917139,40.8622605],"type":"Point"},"name":"Little Caesars"} +,{"_id":{"$oid":"55cba2476c522cafdb0571f2"},"location":{"coordinates":[-73.9395157,40.8514155],"type":"Point"},"name":"Yu Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb0571f3"},"location":{"coordinates":[-73.993049,40.74187999999999],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0571f4"},"location":{"coordinates":[-73.9788903,40.7605367],"type":"Point"},"name":"Earl Of Sandwich"} +,{"_id":{"$oid":"55cba2476c522cafdb0571f5"},"location":{"coordinates":[-73.9807354,40.7516336],"type":"Point"},"name":"Epicure Cafe \u0026 Caterers"} +,{"_id":{"$oid":"55cba2476c522cafdb0571f6"},"location":{"coordinates":[-74.00347839999999,40.6512678],"type":"Point"},"name":"El Gallito Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0571f7"},"location":{"coordinates":[-40.2596146,-20.2102107],"type":"Point"},"name":"Wok \u0026 Roll"} +,{"_id":{"$oid":"55cba2476c522cafdb0571f8"},"location":{"coordinates":[-73.94873299999999,40.781465],"type":"Point"},"name":"Delizia 92"} +,{"_id":{"$oid":"55cba2476c522cafdb0571f9"},"location":{"coordinates":[-73.94881699999999,40.710755],"type":"Point"},"name":"De La Vega Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0571fa"},"location":{"coordinates":[-74.00379,40.641363],"type":"Point"},"name":"Fu Hai Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0571fb"},"location":{"coordinates":[-73.968259,40.6801378],"type":"Point"},"name":"Chuko"} +,{"_id":{"$oid":"55cba2476c522cafdb0571fc"},"location":{"coordinates":[-73.97675749999999,40.748162],"type":"Point"},"name":"Delectica"} +,{"_id":{"$oid":"55cba2476c522cafdb0571fd"},"location":{"coordinates":[-73.9480418,40.7229137],"type":"Point"},"name":"El Toro Taqueria"} +,{"_id":{"$oid":"55cba2476c522cafdb0571fe"},"location":{"coordinates":[-73.834706,40.7174945],"type":"Point"},"name":"Bagels For You"} +,{"_id":{"$oid":"55cba2476c522cafdb0571ff"},"location":{"coordinates":[-73.85553809999999,40.85502959999999],"type":"Point"},"name":"Ming'S Great Wall Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb057200"},"location":{"coordinates":[-73.9922052,40.7465708],"type":"Point"},"name":"Ajisen Ramen"} +,{"_id":{"$oid":"55cba2476c522cafdb057201"},"location":{"coordinates":[-74.0166519,40.7121536],"type":"Point"},"name":"Pier 25 Snack Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb057202"},"location":{"coordinates":[-73.7768826,40.7784485],"type":"Point"},"name":"Yogurt Couture"} +,{"_id":{"$oid":"55cba2476c522cafdb057203"},"location":{"coordinates":[-73.88706640000001,40.8540872],"type":"Point"},"name":"Cakor Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057204"},"location":{"coordinates":[-73.797263,40.7040122],"type":"Point"},"name":"My Cup Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb057205"},"location":{"coordinates":[-73.8161136,40.736296],"type":"Point"},"name":"Dairy Stop"} +,{"_id":{"$oid":"55cba2476c522cafdb057206"},"location":{"coordinates":[-73.99446900000001,40.57579],"type":"Point"},"name":"Crown Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb057207"},"location":{"coordinates":[-73.9642973,40.6348046],"type":"Point"},"name":"Melanies 2009 Inc Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057208"},"location":{"coordinates":[-73.82813,40.76033],"type":"Point"},"name":"Chatime"} +,{"_id":{"$oid":"55cba2476c522cafdb057209"},"location":{"coordinates":[-73.94148899999999,40.6266092],"type":"Point"},"name":"Top Taco Top China"} +,{"_id":{"$oid":"55cba2476c522cafdb05720a"},"location":{"coordinates":[-73.9288381,40.63967170000001],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb05720b"},"location":{"coordinates":[-73.989238,40.728955],"type":"Point"},"name":"Ihop"} +,{"_id":{"$oid":"55cba2476c522cafdb05720c"},"location":{"coordinates":[-73.9845362,40.7620434],"type":"Point"},"name":"Allianz Cafeteria"} +,{"_id":{"$oid":"55cba2476c522cafdb05720d"},"location":{"coordinates":[-73.9581031,40.7172542],"type":"Point"},"name":"Bedford Fusion Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05720e"},"location":{"coordinates":[-73.7826405,40.7669207],"type":"Point"},"name":"Chow Superb Chinese Food"} +,{"_id":{"$oid":"55cba2476c522cafdb05720f"},"location":{"coordinates":[-73.9219475,40.8404629],"type":"Point"},"name":"D'Barbaros Billiards"} +,{"_id":{"$oid":"55cba2476c522cafdb057210"},"location":{"coordinates":[-73.999073,40.659854],"type":"Point"},"name":"La Cuarta Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057211"},"location":{"coordinates":[-73.80465199999999,40.7328535],"type":"Point"},"name":"Futigi"} +,{"_id":{"$oid":"55cba2476c522cafdb057212"},"location":{"coordinates":[-73.8342381,40.8367509],"type":"Point"},"name":"Suarez Family Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb057213"},"location":{"coordinates":[-73.9168329,40.818165],"type":"Point"},"name":"Healthier Life"} +,{"_id":{"$oid":"55cba2476c522cafdb057214"},"location":{"coordinates":[-73.864502,40.871605],"type":"Point"},"name":"Richie Rich Caibbean And American Cuisine Inc."} +,{"_id":{"$oid":"55cba2476c522cafdb057215"},"location":{"coordinates":[-73.9822459,40.76189919999999],"type":"Point"},"name":"Sidley Austin Cafeteria"} +,{"_id":{"$oid":"55cba2476c522cafdb057216"},"location":{"coordinates":[-73.7822056,40.6434612],"type":"Point"},"name":"Delta Sky Club"} +,{"_id":{"$oid":"55cba2476c522cafdb057217"},"location":{"coordinates":[-73.9011064,40.8622094],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb057218"},"location":{"coordinates":[-73.9872855,40.7477239],"type":"Point"},"name":"Mukeunji Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb057219"},"location":{"coordinates":[-74.0306674,40.6178541],"type":"Point"},"name":"Goustaro"} +,{"_id":{"$oid":"55cba2476c522cafdb05721a"},"location":{"coordinates":[-73.9684761,40.75542739999999],"type":"Point"},"name":"Barkogi"} +,{"_id":{"$oid":"55cba2476c522cafdb05721b"},"location":{"coordinates":[-73.948769,40.646405],"type":"Point"},"name":"Abc Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb05721c"},"location":{"coordinates":[-73.961681,40.77759400000001],"type":"Point"},"name":"Crown"} +,{"_id":{"$oid":"55cba2476c522cafdb05721d"},"location":{"coordinates":[-73.8514391,40.6939421],"type":"Point"},"name":"El Puerto Mexicano"} +,{"_id":{"$oid":"55cba2476c522cafdb05721e"},"location":{"coordinates":[-73.98579099999999,40.732386],"type":"Point"},"name":"Baohaus"} +,{"_id":{"$oid":"55cba2476c522cafdb05721f"},"location":{"coordinates":[-73.90469,40.8493155],"type":"Point"},"name":"Peking"} +,{"_id":{"$oid":"55cba2476c522cafdb057220"},"location":{"coordinates":[-73.9958687,40.63139930000001],"type":"Point"},"name":"Glatt Vostok"} +,{"_id":{"$oid":"55cba2476c522cafdb057221"},"location":{"coordinates":[-73.8644386,40.7532626],"type":"Point"},"name":"China Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb057222"},"location":{"coordinates":[-73.98153370000001,40.7388319],"type":"Point"},"name":"Flatiron Green Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057223"},"location":{"coordinates":[-73.8707599,40.7514596],"type":"Point"},"name":"La Abundancia"} +,{"_id":{"$oid":"55cba2476c522cafdb057224"},"location":{"coordinates":[-73.9208984,40.66274569999999],"type":"Point"},"name":"Little Caesars"} +,{"_id":{"$oid":"55cba2476c522cafdb057225"},"location":{"coordinates":[-73.9728511,40.6457573],"type":"Point"},"name":"Xpress Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb057226"},"location":{"coordinates":[-73.9246646,40.8420949],"type":"Point"},"name":"Family Chef Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057227"},"location":{"coordinates":[-73.9309055,40.6604344],"type":"Point"},"name":"Little Caesars"} +,{"_id":{"$oid":"55cba2476c522cafdb057228"},"location":{"coordinates":[-73.8482879,40.8354659],"type":"Point"},"name":"Dada'S Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb057229"},"location":{"coordinates":[-73.8739659,40.7769271],"type":"Point"},"name":"American Airlines Admirals Club"} +,{"_id":{"$oid":"55cba2476c522cafdb05722a"},"location":{"coordinates":[-73.9928156,40.7526007],"type":"Point"},"name":"Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb05722b"},"location":{"coordinates":[-74.14819779999999,40.62430579999999],"type":"Point"},"name":"Ihop"} +,{"_id":{"$oid":"55cba2476c522cafdb05722c"},"location":{"coordinates":[-73.9728615,40.7621749],"type":"Point"},"name":"Obika Mozzarella Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05722d"},"location":{"coordinates":[-74.007066,40.647849],"type":"Point"},"name":"New Great Wall Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05722e"},"location":{"coordinates":[-73.9130988,40.6465998],"type":"Point"},"name":"Chopstick"} +,{"_id":{"$oid":"55cba2476c522cafdb05722f"},"location":{"coordinates":[-74.0315091,40.622991],"type":"Point"},"name":"Ho'Brah"} +,{"_id":{"$oid":"55cba2476c522cafdb057230"},"location":{"coordinates":[-74.01012899999999,40.635027],"type":"Point"},"name":"Super Lucky Seafood Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057231"},"location":{"coordinates":[-73.89987599999999,40.8153861],"type":"Point"},"name":"Little Chopsticks Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb057232"},"location":{"coordinates":[-73.982496,40.613146],"type":"Point"},"name":"Longevousjoy"} +,{"_id":{"$oid":"55cba2476c522cafdb057233"},"location":{"coordinates":[-73.9937535,40.7462574],"type":"Point"},"name":"Kobeyaki"} +,{"_id":{"$oid":"55cba2476c522cafdb057234"},"location":{"coordinates":[-73.95656009999999,40.6553397],"type":"Point"},"name":"Mike'S Pizza Of Brooklyn"} +,{"_id":{"$oid":"55cba2476c522cafdb057235"},"location":{"coordinates":[-73.96956589999999,40.758484],"type":"Point"},"name":"Barnes \u0026 Noble Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057236"},"location":{"coordinates":[-73.983149,40.7232879],"type":"Point"},"name":"The Cardinal"} +,{"_id":{"$oid":"55cba2476c522cafdb057237"},"location":{"coordinates":[-73.9634234,40.6749749],"type":"Point"},"name":"Super No. 1 Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb057238"},"location":{"coordinates":[-73.74366400000001,40.6967882],"type":"Point"},"name":"Happy House Express"} +,{"_id":{"$oid":"55cba2476c522cafdb057239"},"location":{"coordinates":[-74.0327392,40.618568],"type":"Point"},"name":"Peking Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb05723a"},"location":{"coordinates":[-73.9714006,40.7871769],"type":"Point"},"name":"Momofuko Milk Bar Uws"} +,{"_id":{"$oid":"55cba2476c522cafdb05723b"},"location":{"coordinates":[-73.88238,40.701578],"type":"Point"},"name":"Courtside Lounge Sports Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05723c"},"location":{"coordinates":[-73.9650371,40.68148],"type":"Point"},"name":"The Social Butterfly"} +,{"_id":{"$oid":"55cba2476c522cafdb05723d"},"location":{"coordinates":[-73.8032091,40.6745322],"type":"Point"},"name":"New Kabab Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb05723e"},"location":{"coordinates":[-73.9773211,40.7841238],"type":"Point"},"name":"Vai"} +,{"_id":{"$oid":"55cba2476c522cafdb05723f"},"location":{"coordinates":[-73.95410199999999,40.779215],"type":"Point"},"name":"Guzan Japanese Cuisine \u0026 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb057240"},"location":{"coordinates":[-73.807605,40.716551],"type":"Point"},"name":"Supreme Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb057241"},"location":{"coordinates":[-73.9498179,40.725859],"type":"Point"},"name":"Lunchbox Brooklyn"} +,{"_id":{"$oid":"55cba2476c522cafdb057242"},"location":{"coordinates":[-73.9912551,40.7163673],"type":"Point"},"name":"Lost Weekend"} +,{"_id":{"$oid":"55cba2476c522cafdb057243"},"location":{"coordinates":[-73.99448699999999,40.68582869999999],"type":"Point"},"name":"Moo Burger"} +,{"_id":{"$oid":"55cba2476c522cafdb057244"},"location":{"coordinates":[-73.899801,40.8678083],"type":"Point"},"name":"Mi Casa Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb057245"},"location":{"coordinates":[-73.8648998,40.83250049999999],"type":"Point"},"name":"New No.1 Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057246"},"location":{"coordinates":[-73.86320599999999,40.837745],"type":"Point"},"name":"Great Wall"} +,{"_id":{"$oid":"55cba2476c522cafdb057247"},"location":{"coordinates":[-73.9944533,40.7170132],"type":"Point"},"name":"Kung Fu Tea"} +,{"_id":{"$oid":"55cba2476c522cafdb057248"},"location":{"coordinates":[-73.957714,40.7661653],"type":"Point"},"name":"Starbucks"} +,{"_id":{"$oid":"55cba2476c522cafdb057249"},"location":{"coordinates":[-74.0292095,40.6211676],"type":"Point"},"name":"Ponte Vecchio"} +,{"_id":{"$oid":"55cba2476c522cafdb05724a"},"location":{"coordinates":[-73.7874367,40.7581296],"type":"Point"},"name":"Gal Bi Ma Eul"} +,{"_id":{"$oid":"55cba2476c522cafdb05724b"},"location":{"coordinates":[-74.1218652,40.6088283],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb05724c"},"location":{"coordinates":[-73.889588,40.745693],"type":"Point"},"name":"City Snooker Pool House"} +,{"_id":{"$oid":"55cba2476c522cafdb05724d"},"location":{"coordinates":[-74.00972399999999,40.639125],"type":"Point"},"name":"Lucky \u0026 Happy Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05724e"},"location":{"coordinates":[-73.8258859,40.7435129],"type":"Point"},"name":"Kan Wah Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb05724f"},"location":{"coordinates":[-73.969291,40.756594],"type":"Point"},"name":"Bar Mishima"} +,{"_id":{"$oid":"55cba2476c522cafdb057250"},"location":{"coordinates":[-74.2123306,40.5517194],"type":"Point"},"name":"Heartland Bagels 11"} +,{"_id":{"$oid":"55cba2476c522cafdb057251"},"location":{"coordinates":[-73.92926800000001,40.8335814],"type":"Point"},"name":"Paradise Cafe Ny Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057252"},"location":{"coordinates":[-73.9478427,40.71148340000001],"type":"Point"},"name":"Noorman'S Kil"} +,{"_id":{"$oid":"55cba2476c522cafdb057253"},"location":{"coordinates":[-74.0284827,40.6291068],"type":"Point"},"name":"Mythai Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057254"},"location":{"coordinates":[-73.9125455,40.7745714],"type":"Point"},"name":"Flower Drum House"} +,{"_id":{"$oid":"55cba2476c522cafdb057255"},"location":{"coordinates":[-74.018804,40.64698],"type":"Point"},"name":"Pier 53 Coffee \u0026 Sandwich Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb057256"},"location":{"coordinates":[-73.9927901,40.7224657],"type":"Point"},"name":"The Bowery Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb057257"},"location":{"coordinates":[-73.8466653,40.8370761],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb057258"},"location":{"coordinates":[-73.7789294,40.7300568],"type":"Point"},"name":"Annie Chan'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057259"},"location":{"coordinates":[-73.88319299999999,40.84505000000001],"type":"Point"},"name":"Lung Fong Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05725a"},"location":{"coordinates":[-73.9989949,40.604695],"type":"Point"},"name":"F.L.H. Seafood Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05725b"},"location":{"coordinates":[-73.9584635,40.6179979],"type":"Point"},"name":"Blueberry"} +,{"_id":{"$oid":"55cba2476c522cafdb05725c"},"location":{"coordinates":[-73.9422567,40.6660797],"type":"Point"},"name":"Prime Sandwich"} +,{"_id":{"$oid":"55cba2476c522cafdb05725d"},"location":{"coordinates":[-73.9414752,40.7121339],"type":"Point"},"name":"Sri Thai Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05725e"},"location":{"coordinates":[-74.101219,40.5915214],"type":"Point"},"name":"Max'S Es-Ca Restaurant And Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05725f"},"location":{"coordinates":[-73.95787779999999,40.7739274],"type":"Point"},"name":"Shanghai Pavilion"} +,{"_id":{"$oid":"55cba2476c522cafdb057260"},"location":{"coordinates":[-73.985756,40.734793],"type":"Point"},"name":"J East"} +,{"_id":{"$oid":"55cba2476c522cafdb057261"},"location":{"coordinates":[-73.966261,40.757508],"type":"Point"},"name":"Taksim"} +,{"_id":{"$oid":"55cba2476c522cafdb057262"},"location":{"coordinates":[-73.98183329999999,40.6102242],"type":"Point"},"name":"D.K. Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb057263"},"location":{"coordinates":[-73.95215619999999,40.7348366],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb057264"},"location":{"coordinates":[-73.883859,40.868017],"type":"Point"},"name":"Kennedy Fried Chicken \u0026 Biscuit"} +,{"_id":{"$oid":"55cba2476c522cafdb057265"},"location":{"coordinates":[-73.9600574,40.6581279],"type":"Point"},"name":"Delroy'S"} +,{"_id":{"$oid":"55cba2476c522cafdb057266"},"location":{"coordinates":[-73.87469109999999,40.7415676],"type":"Point"},"name":"El Manantial"} +,{"_id":{"$oid":"55cba2476c522cafdb057267"},"location":{"coordinates":[-73.977963,40.78410299999999],"type":"Point"},"name":"Island Burgers \u0026 Shakes"} +,{"_id":{"$oid":"55cba2476c522cafdb057268"},"location":{"coordinates":[-73.8927511,40.7491924],"type":"Point"},"name":"Delicias Calenas #2"} +,{"_id":{"$oid":"55cba2476c522cafdb057269"},"location":{"coordinates":[-74.0072857,40.7056213],"type":"Point"},"name":"Holiday Inn Express"} +,{"_id":{"$oid":"55cba2476c522cafdb05726a"},"location":{"coordinates":[-73.9925122,40.726512],"type":"Point"},"name":"Il Buco Vineria"} +,{"_id":{"$oid":"55cba2476c522cafdb05726b"},"location":{"coordinates":[-74.0001315,40.742576],"type":"Point"},"name":"El Cid Tapas Bar \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05726c"},"location":{"coordinates":[-73.9575419,40.7269881],"type":"Point"},"name":"Jimmy'S"} +,{"_id":{"$oid":"55cba2476c522cafdb05726d"},"location":{"coordinates":[-73.97108999999999,40.616583],"type":"Point"},"name":"First Stop Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb05726e"},"location":{"coordinates":[-74.0265814,40.6339292],"type":"Point"},"name":"Glow Thai Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05726f"},"location":{"coordinates":[-73.8290939,40.759362],"type":"Point"},"name":"Haagen Dazs"} +,{"_id":{"$oid":"55cba2476c522cafdb057270"},"location":{"coordinates":[-73.9554713,40.5874887],"type":"Point"},"name":"Sagdiana"} +,{"_id":{"$oid":"55cba2476c522cafdb057271"},"location":{"coordinates":[-73.804092,40.7622047],"type":"Point"},"name":"Sweetie \u0026 Vip"} +,{"_id":{"$oid":"55cba2476c522cafdb057272"},"location":{"coordinates":[-73.9391936,40.7512416],"type":"Point"},"name":"Resobox"} +,{"_id":{"$oid":"55cba2476c522cafdb057273"},"location":{"coordinates":[-74.007679,40.710078],"type":"Point"},"name":"Financier Patisserie"} +,{"_id":{"$oid":"55cba2476c522cafdb057274"},"location":{"coordinates":[-82.1365766,29.3892033],"type":"Point"},"name":"Accra Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057275"},"location":{"coordinates":[-73.8304685,40.7596083],"type":"Point"},"name":"Coco Tea"} +,{"_id":{"$oid":"55cba2476c522cafdb057276"},"location":{"coordinates":[-73.98663359999999,40.7291106],"type":"Point"},"name":"Mudspot"} +,{"_id":{"$oid":"55cba2476c522cafdb057277"},"location":{"coordinates":[-73.9747651,40.6861975],"type":"Point"},"name":"Greene Grape Annex"} +,{"_id":{"$oid":"55cba2476c522cafdb057278"},"location":{"coordinates":[-74.0183297,40.6360244],"type":"Point"},"name":"East Harbor Seafood Palace"} +,{"_id":{"$oid":"55cba2476c522cafdb057279"},"location":{"coordinates":[-74.014607,40.648205],"type":"Point"},"name":"Juquilita Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05727a"},"location":{"coordinates":[-73.98752739999999,40.7408815],"type":"Point"},"name":"Schnipper'S"} +,{"_id":{"$oid":"55cba2476c522cafdb05727b"},"location":{"coordinates":[-73.80248399999999,40.7608866],"type":"Point"},"name":"Rolly Kimbab"} +,{"_id":{"$oid":"55cba2476c522cafdb05727c"},"location":{"coordinates":[-73.89001929999999,40.825342],"type":"Point"},"name":"Wang Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb05727d"},"location":{"coordinates":[-73.8559753,40.870764],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb05727e"},"location":{"coordinates":[-73.9593799,40.7738278],"type":"Point"},"name":"Dos Toros Taqueria"} +,{"_id":{"$oid":"55cba2476c522cafdb05727f"},"location":{"coordinates":[-73.91767399999999,40.703042],"type":"Point"},"name":"Guadalajara De Dia"} +,{"_id":{"$oid":"55cba2476c522cafdb057280"},"location":{"coordinates":[-73.98179999999999,40.741266],"type":"Point"},"name":"Shawarma Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb057281"},"location":{"coordinates":[-73.8298944,40.6849289],"type":"Point"},"name":"Silver Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb057282"},"location":{"coordinates":[-73.9486019,40.644228],"type":"Point"},"name":"Alhpa Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057283"},"location":{"coordinates":[-73.9445137,40.83540319999999],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb057284"},"location":{"coordinates":[-73.984447,40.7384909],"type":"Point"},"name":"Mihoko'S 21 Grams"} +,{"_id":{"$oid":"55cba2476c522cafdb057285"},"location":{"coordinates":[-73.9991359,40.733692],"type":"Point"},"name":"Dunkin Donuts/Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb057286"},"location":{"coordinates":[-73.9244313,40.8276846],"type":"Point"},"name":"Bronx Lala Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb057287"},"location":{"coordinates":[-73.9823066,40.74244729999999],"type":"Point"},"name":"Chote Nawab"} +,{"_id":{"$oid":"55cba2476c522cafdb057288"},"location":{"coordinates":[-73.8459045,40.8424888],"type":"Point"},"name":"Dunkin Donuts Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb057289"},"location":{"coordinates":[-73.9004692,40.8251648],"type":"Point"},"name":"Dunkin Donuts Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb05728a"},"location":{"coordinates":[-73.8590224,40.86513739999999],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb05728b"},"location":{"coordinates":[-73.9742804,40.680569],"type":"Point"},"name":"Chick P"} +,{"_id":{"$oid":"55cba2476c522cafdb05728c"},"location":{"coordinates":[-74.01331669999999,40.7090409],"type":"Point"},"name":"Blue Planet Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb05728d"},"location":{"coordinates":[-73.9728418,40.78523149999999],"type":"Point"},"name":"Primo Pizza 84"} +,{"_id":{"$oid":"55cba2476c522cafdb05728e"},"location":{"coordinates":[-73.8226712,40.8653497],"type":"Point"},"name":"Andy'S Teriyaki \u0026 Taco"} +,{"_id":{"$oid":"55cba2476c522cafdb05728f"},"location":{"coordinates":[-74.0262398,40.6218772],"type":"Point"},"name":"Burger King, Popeye'S Chicken \u0026 Biscuits"} +,{"_id":{"$oid":"55cba2476c522cafdb057290"},"location":{"coordinates":[-73.9452902,40.7828775],"type":"Point"},"name":"Andaman Thai Bistro"} +,{"_id":{"$oid":"55cba2476c522cafdb057291"},"location":{"coordinates":[-73.95794149999999,40.6183865],"type":"Point"},"name":"Posh Tomato"} +,{"_id":{"$oid":"55cba2476c522cafdb057292"},"location":{"coordinates":[-73.927675,40.80708509999999],"type":"Point"},"name":"Wish 37 Restaurant/Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb057293"},"location":{"coordinates":[-74.2164432,40.5224946],"type":"Point"},"name":"Citi Bagel \u0026 Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb057294"},"location":{"coordinates":[-73.991759,40.7391161],"type":"Point"},"name":"Nasha Rasha"} +,{"_id":{"$oid":"55cba2476c522cafdb057295"},"location":{"coordinates":[-73.95178659999999,40.7250093],"type":"Point"},"name":"A+ Lollipop"} +,{"_id":{"$oid":"55cba2476c522cafdb057296"},"location":{"coordinates":[-73.974547,40.7888779],"type":"Point"},"name":"Mamajuana Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057297"},"location":{"coordinates":[-73.8328389,40.6729864],"type":"Point"},"name":"Rw Prime Service Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb057298"},"location":{"coordinates":[-73.8328389,40.6729864],"type":"Point"},"name":"Colony Lounge Service Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb057299"},"location":{"coordinates":[-73.9866522,40.7536411],"type":"Point"},"name":"The Coffee Bean \u0026 Tea Leaf"} +,{"_id":{"$oid":"55cba2476c522cafdb05729a"},"location":{"coordinates":[-73.8328389,40.6729864],"type":"Point"},"name":"Liberty Bar Service Bar- Service Bar 7"} +,{"_id":{"$oid":"55cba2476c522cafdb05729b"},"location":{"coordinates":[-73.8328389,40.6729864],"type":"Point"},"name":"Uptown Express Service Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05729c"},"location":{"coordinates":[-73.8328389,40.6729864],"type":"Point"},"name":"Third Service Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05729d"},"location":{"coordinates":[-73.8328389,40.6729864],"type":"Point"},"name":"First Service Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05729e"},"location":{"coordinates":[-73.8328389,40.6729864],"type":"Point"},"name":"Second Service Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05729f"},"location":{"coordinates":[-73.8328389,40.6729864],"type":"Point"},"name":"Long Shots"} +,{"_id":{"$oid":"55cba2476c522cafdb0572a0"},"location":{"coordinates":[-73.8328389,40.6729864],"type":"Point"},"name":"Winner'S Circle Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb0572a1"},"location":{"coordinates":[-73.8328389,40.6729864],"type":"Point"},"name":"Triple Crown Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0572a2"},"location":{"coordinates":[-73.8328389,40.6729864],"type":"Point"},"name":"Champs Bars"} +,{"_id":{"$oid":"55cba2476c522cafdb0572a3"},"location":{"coordinates":[-73.8328389,40.6729864],"type":"Point"},"name":"Equestris"} +,{"_id":{"$oid":"55cba2476c522cafdb0572a4"},"location":{"coordinates":[-73.9634926,40.6750939],"type":"Point"},"name":"Kimchi Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0572a5"},"location":{"coordinates":[-73.9810431,40.780456],"type":"Point"},"name":"Beacon Theatre"} +,{"_id":{"$oid":"55cba2476c522cafdb0572a6"},"location":{"coordinates":[-73.9810431,40.780456],"type":"Point"},"name":"Beacon Theatre"} +,{"_id":{"$oid":"55cba2476c522cafdb0572a7"},"location":{"coordinates":[-73.9810431,40.780456],"type":"Point"},"name":"Beacon Theatre"} +,{"_id":{"$oid":"55cba2476c522cafdb0572a8"},"location":{"coordinates":[-73.9810431,40.780456],"type":"Point"},"name":"Beacon Theatre"} +,{"_id":{"$oid":"55cba2476c522cafdb0572a9"},"location":{"coordinates":[-73.9810431,40.780456],"type":"Point"},"name":"Beacon Theatre"} +,{"_id":{"$oid":"55cba2476c522cafdb0572aa"},"location":{"coordinates":[-73.9728982,40.6329754],"type":"Point"},"name":"Pizza King"} +,{"_id":{"$oid":"55cba2476c522cafdb0572ab"},"location":{"coordinates":[-73.950903,40.7742689],"type":"Point"},"name":"Il Tesoro Ristorante"} +,{"_id":{"$oid":"55cba2476c522cafdb0572ac"},"location":{"coordinates":[-73.8106511,40.7643264],"type":"Point"},"name":"Dotori (Roosevelt Ave)"} +,{"_id":{"$oid":"55cba2476c522cafdb0572ad"},"location":{"coordinates":[-73.9874078,40.7659887],"type":"Point"},"name":"Valhalla"} +,{"_id":{"$oid":"55cba2476c522cafdb0572ae"},"location":{"coordinates":[-73.97297900000001,40.755247],"type":"Point"},"name":"Lexington Brass"} +,{"_id":{"$oid":"55cba2476c522cafdb0572af"},"location":{"coordinates":[-74.00649949999999,40.7398326],"type":"Point"},"name":"Catch"} +,{"_id":{"$oid":"55cba2476c522cafdb0572b0"},"location":{"coordinates":[-73.99566399999999,40.683254],"type":"Point"},"name":"Brooklyn Buschenschank"} +,{"_id":{"$oid":"55cba2476c522cafdb0572b1"},"location":{"coordinates":[-73.9940235,40.7302296],"type":"Point"},"name":"Kuku Canteen"} +,{"_id":{"$oid":"55cba2476c522cafdb0572b2"},"location":{"coordinates":[-73.9956765,40.7229659],"type":"Point"},"name":"The Grey Dog Mulberry"} +,{"_id":{"$oid":"55cba2476c522cafdb0572b3"},"location":{"coordinates":[-73.966663,40.7617968],"type":"Point"},"name":"Magnolia Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0572b4"},"location":{"coordinates":[-73.7945861,40.724247],"type":"Point"},"name":"St. John'S University-Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0572b5"},"location":{"coordinates":[-73.9594836,40.6764444],"type":"Point"},"name":"Neptune Diner Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb0572b6"},"location":{"coordinates":[-73.9749779,40.680155],"type":"Point"},"name":"Woodland"} +,{"_id":{"$oid":"55cba2476c522cafdb0572b7"},"location":{"coordinates":[-73.85564699999999,40.6925192],"type":"Point"},"name":"Tropical Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0572b8"},"location":{"coordinates":[-73.97891419999999,40.6843706],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0572b9"},"location":{"coordinates":[-74.0028912,40.7252362],"type":"Point"},"name":"Dominique Ansel Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0572ba"},"location":{"coordinates":[-73.9810431,40.780456],"type":"Point"},"name":"Beacon Theatre"} +,{"_id":{"$oid":"55cba2476c522cafdb0572bb"},"location":{"coordinates":[-74.008657,40.710034],"type":"Point"},"name":"The Irish American"} +,{"_id":{"$oid":"55cba2476c522cafdb0572bc"},"location":{"coordinates":[-73.83158159999999,40.8464084],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0572bd"},"location":{"coordinates":[-73.82218410000002,40.8263536],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0572be"},"location":{"coordinates":[-73.99478409999999,40.6951241],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0572bf"},"location":{"coordinates":[-73.961606,40.607664],"type":"Point"},"name":"Mish Mash Gourmet"} +,{"_id":{"$oid":"55cba2476c522cafdb0572c0"},"location":{"coordinates":[-73.94802299999999,40.774128],"type":"Point"},"name":"Yorkville Creperie/Saloon"} +,{"_id":{"$oid":"55cba2476c522cafdb0572c1"},"location":{"coordinates":[-80.0548245,41.8061806],"type":"Point"},"name":"Papa Ye Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0572c2"},"location":{"coordinates":[-73.9414388,40.7009835],"type":"Point"},"name":"Ihop"} +,{"_id":{"$oid":"55cba2476c522cafdb0572c3"},"location":{"coordinates":[-73.917481,40.8785138],"type":"Point"},"name":"19A Empire Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0572c4"},"location":{"coordinates":[-73.8292993,40.7472848],"type":"Point"},"name":"Recovery Room"} +,{"_id":{"$oid":"55cba2476c522cafdb0572c5"},"location":{"coordinates":[-73.9119149,40.7019209],"type":"Point"},"name":"La Casita Verde"} +,{"_id":{"$oid":"55cba2476c522cafdb0572c6"},"location":{"coordinates":[-73.96538,40.763756],"type":"Point"},"name":"The Juice Press"} +,{"_id":{"$oid":"55cba2476c522cafdb0572c7"},"location":{"coordinates":[-73.9560601,40.74225089999999],"type":"Point"},"name":"Alewife"} +,{"_id":{"$oid":"55cba2476c522cafdb0572c8"},"location":{"coordinates":[-73.9226707,40.6644655],"type":"Point"},"name":"Golden Krust"} +,{"_id":{"$oid":"55cba2476c522cafdb0572c9"},"location":{"coordinates":[-73.9086307,40.7033497],"type":"Point"},"name":"Sabor Y Rumba"} +,{"_id":{"$oid":"55cba2476c522cafdb0572ca"},"location":{"coordinates":[-73.9617639,40.7142205],"type":"Point"},"name":"Black Brick"} +,{"_id":{"$oid":"55cba2476c522cafdb0572cb"},"location":{"coordinates":[-73.975899,40.65293399999999],"type":"Point"},"name":"Le Paddock"} +,{"_id":{"$oid":"55cba2476c522cafdb0572cc"},"location":{"coordinates":[-73.993647,40.74627],"type":"Point"},"name":"Green Tomato"} +,{"_id":{"$oid":"55cba2476c522cafdb0572cd"},"location":{"coordinates":[-73.9909326,40.7330079],"type":"Point"},"name":"The Bean"} +,{"_id":{"$oid":"55cba2476c522cafdb0572ce"},"location":{"coordinates":[-73.9814512,40.7642886],"type":"Point"},"name":"Premier Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0572cf"},"location":{"coordinates":[-73.9779202,40.7832245],"type":"Point"},"name":"Amsterdam Gourmet"} +,{"_id":{"$oid":"55cba2476c522cafdb0572d0"},"location":{"coordinates":[-73.73824479999999,40.71431219999999],"type":"Point"},"name":"Fountain Of Youth Juice Bar And Cafe Inc."} +,{"_id":{"$oid":"55cba2476c522cafdb0572d1"},"location":{"coordinates":[-73.935675,40.796422],"type":"Point"},"name":"Harley'S Smoke Shack"} +,{"_id":{"$oid":"55cba2476c522cafdb0572d2"},"location":{"coordinates":[-73.826697,40.690025],"type":"Point"},"name":"Punjabi Virsa Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0572d3"},"location":{"coordinates":[-73.8667371,40.752854],"type":"Point"},"name":"Las Serranitas Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0572d4"},"location":{"coordinates":[-73.9663868,40.7707621],"type":"Point"},"name":"Laduree"} +,{"_id":{"$oid":"55cba2476c522cafdb0572d5"},"location":{"coordinates":[-73.941029,40.701186],"type":"Point"},"name":"New Golden House"} +,{"_id":{"$oid":"55cba2476c522cafdb0572d6"},"location":{"coordinates":[-73.9835609,40.7518817],"type":"Point"},"name":"Culture Club"} +,{"_id":{"$oid":"55cba2476c522cafdb0572d7"},"location":{"coordinates":[-73.9663185,40.7152561],"type":"Point"},"name":"Ran Tea House"} +,{"_id":{"$oid":"55cba2476c522cafdb0572d8"},"location":{"coordinates":[-73.96643449999999,40.7641697],"type":"Point"},"name":"Korean Take Out Express"} +,{"_id":{"$oid":"55cba2476c522cafdb0572d9"},"location":{"coordinates":[-74.00934699999999,40.709193],"type":"Point"},"name":"A La Saigon"} +,{"_id":{"$oid":"55cba2476c522cafdb0572da"},"location":{"coordinates":[-73.94825,40.77789900000001],"type":"Point"},"name":"New Sunny East 88 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0572db"},"location":{"coordinates":[-73.9970289,40.7240841],"type":"Point"},"name":"Juice Generation Cafe Group"} +,{"_id":{"$oid":"55cba2476c522cafdb0572dc"},"location":{"coordinates":[-73.96620399999999,40.76439999999999],"type":"Point"},"name":"Juice Generation Cafe Group"} +,{"_id":{"$oid":"55cba2476c522cafdb0572dd"},"location":{"coordinates":[-73.880647,40.80984],"type":"Point"},"name":"Fratelli'S Pizza \u0026 Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0572de"},"location":{"coordinates":[-73.98526389999999,40.7269998],"type":"Point"},"name":"Luke'S Lobster"} +,{"_id":{"$oid":"55cba2476c522cafdb0572df"},"location":{"coordinates":[-73.9794704,40.7433621],"type":"Point"},"name":"Terroir Wine Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0572e0"},"location":{"coordinates":[-73.9334853,40.8556939],"type":"Point"},"name":"Salute Pizza \u0026 Restorante"} +,{"_id":{"$oid":"55cba2476c522cafdb0572e1"},"location":{"coordinates":[-73.9889985,40.68828329999999],"type":"Point"},"name":"Sotto Casa"} +,{"_id":{"$oid":"55cba2476c522cafdb0572e2"},"location":{"coordinates":[-73.9502679,40.8025539],"type":"Point"},"name":"Amy Ruth'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0572e3"},"location":{"coordinates":[-73.9923409,40.6992833],"type":"Point"},"name":"Bevacco Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0572e4"},"location":{"coordinates":[-73.9553474,40.7682492],"type":"Point"},"name":"Petaluma"} +,{"_id":{"$oid":"55cba2476c522cafdb0572e5"},"location":{"coordinates":[-73.7473724,40.7158247],"type":"Point"},"name":"Our Village Roti Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb0572e6"},"location":{"coordinates":[-73.7317327,40.6923736],"type":"Point"},"name":"La Baguette La Kay Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb0572e7"},"location":{"coordinates":[-73.867619,40.8999807],"type":"Point"},"name":"Linda'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0572e8"},"location":{"coordinates":[-73.98224820000002,40.73221789999999],"type":"Point"},"name":"Asiam Thai Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb0572e9"},"location":{"coordinates":[-74.1866798,40.5941957],"type":"Point"},"name":"The West Shore Inn Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0572ea"},"location":{"coordinates":[-73.9576823,40.74464469999999],"type":"Point"},"name":"Skinny'S Cantina"} +,{"_id":{"$oid":"55cba2476c522cafdb0572eb"},"location":{"coordinates":[-73.9511899,40.7138617],"type":"Point"},"name":"Yola'S Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0572ec"},"location":{"coordinates":[-73.99524860000001,40.7441252],"type":"Point"},"name":"The Best $1.00 Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0572ed"},"location":{"coordinates":[-73.9032884,40.8808943],"type":"Point"},"name":"Silhouette Restaurant Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb0572ee"},"location":{"coordinates":[-73.9653426,40.7141271],"type":"Point"},"name":"Isa"} +,{"_id":{"$oid":"55cba2476c522cafdb0572ef"},"location":{"coordinates":[-73.987961,40.765312],"type":"Point"},"name":"Flaming Saddles Saloon"} +,{"_id":{"$oid":"55cba2476c522cafdb0572f0"},"location":{"coordinates":[-74.12346579999999,40.6179007],"type":"Point"},"name":"Island Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb0572f1"},"location":{"coordinates":[-73.9931484,40.7675385],"type":"Point"},"name":"Il Baretto"} +,{"_id":{"$oid":"55cba2476c522cafdb0572f2"},"location":{"coordinates":[-73.99836309999999,40.7158265],"type":"Point"},"name":"Wonton Noodle Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb0572f3"},"location":{"coordinates":[-73.9646646,40.7687069],"type":"Point"},"name":"Hunter College Food Court"} +,{"_id":{"$oid":"55cba2476c522cafdb0572f4"},"location":{"coordinates":[-73.9646646,40.7687069],"type":"Point"},"name":"Hunter College"} +,{"_id":{"$oid":"55cba2476c522cafdb0572f5"},"location":{"coordinates":[-73.938634,40.679526],"type":"Point"},"name":"The New Millenium"} +,{"_id":{"$oid":"55cba2476c522cafdb0572f6"},"location":{"coordinates":[-73.9847695,40.7475145],"type":"Point"},"name":"Little Italy Pizza/Papaya Dog"} +,{"_id":{"$oid":"55cba2476c522cafdb0572f7"},"location":{"coordinates":[-73.9646646,40.7687069],"type":"Point"},"name":"Hunter College Catering"} +,{"_id":{"$oid":"55cba2476c522cafdb0572f8"},"location":{"coordinates":[-73.9646646,40.7687069],"type":"Point"},"name":"Hunter College Proudly Brew Starbucks"} +,{"_id":{"$oid":"55cba2476c522cafdb0572f9"},"location":{"coordinates":[-74.000134,40.7333349],"type":"Point"},"name":"Onegin"} +,{"_id":{"$oid":"55cba2476c522cafdb0572fa"},"location":{"coordinates":[-73.9922928,40.68371],"type":"Point"},"name":"Hana Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0572fb"},"location":{"coordinates":[-73.9527841,40.7422445],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0572fc"},"location":{"coordinates":[-73.94138339999999,40.6509931],"type":"Point"},"name":"Fishnet"} +,{"_id":{"$oid":"55cba2476c522cafdb0572fd"},"location":{"coordinates":[-73.81966,40.722967],"type":"Point"},"name":"Pita Hot Kburger"} +,{"_id":{"$oid":"55cba2476c522cafdb0572fe"},"location":{"coordinates":[-73.91603119999999,40.6496952],"type":"Point"},"name":"Fortune Cookies"} +,{"_id":{"$oid":"55cba2476c522cafdb0572ff"},"location":{"coordinates":[-74.1311028,40.6309339],"type":"Point"},"name":"Veronica'S Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb057300"},"location":{"coordinates":[-73.8885889,40.678477],"type":"Point"},"name":"Little Caesars"} +,{"_id":{"$oid":"55cba2476c522cafdb057301"},"location":{"coordinates":[-73.9289889,40.8553475],"type":"Point"},"name":"El Nuevo Caridad Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057302"},"location":{"coordinates":[-74.0935037,40.5847627],"type":"Point"},"name":"China Taste"} +,{"_id":{"$oid":"55cba2476c522cafdb057303"},"location":{"coordinates":[-73.9819771,40.6341541],"type":"Point"},"name":"Stars Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb057304"},"location":{"coordinates":[-73.972197,40.693407],"type":"Point"},"name":"Hardee"} +,{"_id":{"$oid":"55cba2476c522cafdb057305"},"location":{"coordinates":[-73.92713499999999,40.861071],"type":"Point"},"name":"Mangos Paradise Smoothies"} +,{"_id":{"$oid":"55cba2476c522cafdb057306"},"location":{"coordinates":[-73.9553918,40.77635009999999],"type":"Point"},"name":"Plenty Cafe Bakery Catering"} +,{"_id":{"$oid":"55cba2476c522cafdb057307"},"location":{"coordinates":[-73.9588495,40.8153944],"type":"Point"},"name":"Jin Ramen"} +,{"_id":{"$oid":"55cba2476c522cafdb057308"},"location":{"coordinates":[-74.0216457,40.6189176],"type":"Point"},"name":"Szechuan Delight"} +,{"_id":{"$oid":"55cba2476c522cafdb057309"},"location":{"coordinates":[-74.0077172,40.64734290000001],"type":"Point"},"name":"Floridita Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05730a"},"location":{"coordinates":[-74.1643832,40.55945740000001],"type":"Point"},"name":"Ho Wok"} +,{"_id":{"$oid":"55cba2476c522cafdb05730b"},"location":{"coordinates":[-73.95878809999999,40.8154715],"type":"Point"},"name":"Kissaten Jin"} +,{"_id":{"$oid":"55cba2476c522cafdb05730c"},"location":{"coordinates":[-73.9928465,40.7241271],"type":"Point"},"name":"Bowery Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb05730d"},"location":{"coordinates":[-73.8748134,40.7416235],"type":"Point"},"name":"Esmeraldas Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05730e"},"location":{"coordinates":[-73.9565666,40.6751066],"type":"Point"},"name":"Gueros Brooklyn"} +,{"_id":{"$oid":"55cba2476c522cafdb05730f"},"location":{"coordinates":[-73.9881539,40.7273943],"type":"Point"},"name":"Hot Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb057310"},"location":{"coordinates":[-73.9853756,40.7572091],"type":"Point"},"name":"Cookie Party(@Toy ''R'' Us)"} +,{"_id":{"$oid":"55cba2476c522cafdb057311"},"location":{"coordinates":[-73.98686430000001,40.7521049],"type":"Point"},"name":"Subway/Uno Express"} +,{"_id":{"$oid":"55cba2476c522cafdb057312"},"location":{"coordinates":[-73.994584,40.717339],"type":"Point"},"name":"Tao Hong Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb057313"},"location":{"coordinates":[-73.9866681,40.7219227],"type":"Point"},"name":"The Masala Wala"} +,{"_id":{"$oid":"55cba2476c522cafdb057314"},"location":{"coordinates":[-73.8259659,40.829864],"type":"Point"},"name":"Taqueria Lupita"} +,{"_id":{"$oid":"55cba2476c522cafdb057315"},"location":{"coordinates":[-73.961339,40.685176],"type":"Point"},"name":"Intotea"} +,{"_id":{"$oid":"55cba2476c522cafdb057316"},"location":{"coordinates":[-74.0037366,40.7206828],"type":"Point"},"name":"Kung Fu Tea"} +,{"_id":{"$oid":"55cba2476c522cafdb057317"},"location":{"coordinates":[-74.0040301,40.7223412],"type":"Point"},"name":"Taka Taka"} +,{"_id":{"$oid":"55cba2476c522cafdb057318"},"location":{"coordinates":[-73.9529699,40.638131],"type":"Point"},"name":"Fritaye Five Star"} +,{"_id":{"$oid":"55cba2476c522cafdb057319"},"location":{"coordinates":[-73.9012169,40.8684799],"type":"Point"},"name":"Perista Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05731a"},"location":{"coordinates":[-73.860179,40.69265],"type":"Point"},"name":"Mistura Peruana Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05731b"},"location":{"coordinates":[-73.94065739999999,40.6826583],"type":"Point"},"name":"Rocco Pizza Iii"} +,{"_id":{"$oid":"55cba2476c522cafdb05731c"},"location":{"coordinates":[-73.94764169999999,40.71147089999999],"type":"Point"},"name":"The Saint Austere"} +,{"_id":{"$oid":"55cba2476c522cafdb05731d"},"location":{"coordinates":[-73.771294,40.761665],"type":"Point"},"name":"Romanian Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb05731e"},"location":{"coordinates":[-73.937699,40.8185813],"type":"Point"},"name":"Makkah Pizza Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05731f"},"location":{"coordinates":[-73.989153,40.619751],"type":"Point"},"name":"Hong Bao Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057320"},"location":{"coordinates":[-73.8849433,40.8586328],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb057321"},"location":{"coordinates":[-73.9066387,40.6944694],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb057322"},"location":{"coordinates":[-74.0058659,40.6393762],"type":"Point"},"name":"Mister Hotpot"} +,{"_id":{"$oid":"55cba2476c522cafdb057323"},"location":{"coordinates":[-73.86652219999999,40.8543674],"type":"Point"},"name":"Peking Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb057324"},"location":{"coordinates":[-73.9049303,40.9061393],"type":"Point"},"name":"Gruenebaum'S Bakery \u0026Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057325"},"location":{"coordinates":[-73.983777,40.7756629],"type":"Point"},"name":"Blossom Du Jour"} +,{"_id":{"$oid":"55cba2476c522cafdb057326"},"location":{"coordinates":[-73.9730208,40.7582695],"type":"Point"},"name":"Nfl-Huddle Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057327"},"location":{"coordinates":[-73.8215589,40.753259],"type":"Point"},"name":"Daro'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb057328"},"location":{"coordinates":[-74.0251521,40.6211361],"type":"Point"},"name":"Swirl Fun"} +,{"_id":{"$oid":"55cba2476c522cafdb057329"},"location":{"coordinates":[-73.9395991,40.6991473],"type":"Point"},"name":"Asian Yummy House"} +,{"_id":{"$oid":"55cba2476c522cafdb05732a"},"location":{"coordinates":[-74.0092865,40.7389045],"type":"Point"},"name":"Bakehouse"} +,{"_id":{"$oid":"55cba2476c522cafdb05732b"},"location":{"coordinates":[-74.0073905,40.7182039],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb05732c"},"location":{"coordinates":[-73.98328409999999,40.7456857],"type":"Point"},"name":"Akura Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb05732d"},"location":{"coordinates":[-73.92810589999999,40.62869120000001],"type":"Point"},"name":"Island Choiz Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05732e"},"location":{"coordinates":[-73.83109929999999,40.84766],"type":"Point"},"name":"M.M.K Tony'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05732f"},"location":{"coordinates":[-73.9636611,40.8093296],"type":"Point"},"name":"Liz'S Place-Barnard College"} +,{"_id":{"$oid":"55cba2476c522cafdb057330"},"location":{"coordinates":[-73.99548610000001,40.7296991],"type":"Point"},"name":"Argotea"} +,{"_id":{"$oid":"55cba2476c522cafdb057331"},"location":{"coordinates":[-74.00489689999999,40.7419343],"type":"Point"},"name":"The Tippler"} +,{"_id":{"$oid":"55cba2476c522cafdb057332"},"location":{"coordinates":[-73.947497,40.748397],"type":"Point"},"name":"Meera Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb057333"},"location":{"coordinates":[-74.0115843,40.6369626],"type":"Point"},"name":"Minhui Snack"} +,{"_id":{"$oid":"55cba2476c522cafdb057334"},"location":{"coordinates":[-73.9558745,40.7663345],"type":"Point"},"name":"The Allie Way Sports Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb057335"},"location":{"coordinates":[-73.86702799999999,40.86457],"type":"Point"},"name":"Simply Seafood"} +,{"_id":{"$oid":"55cba2476c522cafdb057336"},"location":{"coordinates":[-73.99274,40.6984459],"type":"Point"},"name":"Fortune House"} +,{"_id":{"$oid":"55cba2476c522cafdb057337"},"location":{"coordinates":[-73.98744649999999,40.7193235],"type":"Point"},"name":"Shopsins General Store (Store #16)"} +,{"_id":{"$oid":"55cba2476c522cafdb057338"},"location":{"coordinates":[-73.8447027,40.7208474],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb057339"},"location":{"coordinates":[-73.9783467,40.6895906],"type":"Point"},"name":"Gourmet Garden 8"} +,{"_id":{"$oid":"55cba2476c522cafdb05733a"},"location":{"coordinates":[-73.984883,40.7235745],"type":"Point"},"name":"Ucb East"} +,{"_id":{"$oid":"55cba2476c522cafdb05733b"},"location":{"coordinates":[-73.7378856,40.7541547],"type":"Point"},"name":"Movie World Douglaston"} +,{"_id":{"$oid":"55cba2476c522cafdb05733c"},"location":{"coordinates":[-73.9872855,40.7477239],"type":"Point"},"name":"The Spot Karaoke Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb05733d"},"location":{"coordinates":[-73.8847571,40.84212770000001],"type":"Point"},"name":"Villa Vasquez Bar \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05733e"},"location":{"coordinates":[-73.9931355,40.7339197],"type":"Point"},"name":"Dorado"} +,{"_id":{"$oid":"55cba2476c522cafdb05733f"},"location":{"coordinates":[-73.863123,40.750188],"type":"Point"},"name":"Rincon Latino"} +,{"_id":{"$oid":"55cba2476c522cafdb057340"},"location":{"coordinates":[-73.839339,40.841092],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb057341"},"location":{"coordinates":[-73.8901293,40.7459601],"type":"Point"},"name":"First Taste Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb057342"},"location":{"coordinates":[-73.8461959,40.8367087],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb057343"},"location":{"coordinates":[-73.8530543,40.8493194],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb057344"},"location":{"coordinates":[-73.8734537,40.8232312],"type":"Point"},"name":"Dunkin Donuts Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb057345"},"location":{"coordinates":[-73.8671435,40.8656634],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb057346"},"location":{"coordinates":[-73.8631296,40.8766966],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb057347"},"location":{"coordinates":[-73.9404694,40.6928276],"type":"Point"},"name":"Mary'S Coffee Shop \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057348"},"location":{"coordinates":[-73.98467620000001,40.7270843],"type":"Point"},"name":"Proletariat Ny"} +,{"_id":{"$oid":"55cba2476c522cafdb057349"},"location":{"coordinates":[-73.943679,40.695837],"type":"Point"},"name":"Elisa Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05734a"},"location":{"coordinates":[-73.8591129,40.837491],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb05734b"},"location":{"coordinates":[-74.00945,40.611007],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb05734c"},"location":{"coordinates":[-73.8652819,40.8637789],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb05734d"},"location":{"coordinates":[-73.9849492,40.7599577],"type":"Point"},"name":"Starbucks"} +,{"_id":{"$oid":"55cba2476c522cafdb05734e"},"location":{"coordinates":[-73.94861399999999,40.7953059],"type":"Point"},"name":"China House Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05734f"},"location":{"coordinates":[-73.9858514,40.6693226],"type":"Point"},"name":"Sai Thai Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb057350"},"location":{"coordinates":[-73.976015,40.745086],"type":"Point"},"name":"Ruay Thai Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057351"},"location":{"coordinates":[-73.9045393,40.8870746],"type":"Point"},"name":"Fenwicks"} +,{"_id":{"$oid":"55cba2476c522cafdb057352"},"location":{"coordinates":[-73.98542139999999,40.7567516],"type":"Point"},"name":"O'Donoghues"} +,{"_id":{"$oid":"55cba2476c522cafdb057353"},"location":{"coordinates":[-73.98855499999999,40.759486],"type":"Point"},"name":"Chicken Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb057354"},"location":{"coordinates":[-73.9750239,40.6804379],"type":"Point"},"name":"67 Burger"} +,{"_id":{"$oid":"55cba2476c522cafdb057355"},"location":{"coordinates":[-73.9982363,40.6209702],"type":"Point"},"name":"China King"} +,{"_id":{"$oid":"55cba2476c522cafdb057356"},"location":{"coordinates":[-73.98396269999999,40.7261118],"type":"Point"},"name":"Gingersnap'S Organic"} +,{"_id":{"$oid":"55cba2476c522cafdb057357"},"location":{"coordinates":[-74.0031594,40.7435544],"type":"Point"},"name":"Stone Street Coffee Company"} +,{"_id":{"$oid":"55cba2476c522cafdb057358"},"location":{"coordinates":[-73.8866496,40.8273516],"type":"Point"},"name":"Pizzazzz Pizzeria Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb057359"},"location":{"coordinates":[-73.8208721,40.8250275],"type":"Point"},"name":"Reina Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05735a"},"location":{"coordinates":[-73.960915,40.7589123],"type":"Point"},"name":"Morso"} +,{"_id":{"$oid":"55cba2476c522cafdb05735b"},"location":{"coordinates":[-73.99252369999999,40.747919],"type":"Point"},"name":"Five Guys Burgers \u0026 Fries"} +,{"_id":{"$oid":"55cba2476c522cafdb05735c"},"location":{"coordinates":[-73.888577,40.85394],"type":"Point"},"name":"Umai Japanese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05735d"},"location":{"coordinates":[-73.8151505,40.7398586],"type":"Point"},"name":"Kissena Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05735e"},"location":{"coordinates":[-73.9811835,40.730016],"type":"Point"},"name":"Phoenix"} +,{"_id":{"$oid":"55cba2476c522cafdb05735f"},"location":{"coordinates":[-74.1038244,40.6160044],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb057360"},"location":{"coordinates":[-74.029265,40.6285201],"type":"Point"},"name":"Giacomo'S Wood Fired Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb057361"},"location":{"coordinates":[-73.8528331,40.8728954],"type":"Point"},"name":"Country Boyz Jerk Yard Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057362"},"location":{"coordinates":[-73.99426609999999,40.7508707],"type":"Point"},"name":"Hot Dog Concession"} +,{"_id":{"$oid":"55cba2476c522cafdb057363"},"location":{"coordinates":[-73.99426609999999,40.7508707],"type":"Point"},"name":"Press Room"} +,{"_id":{"$oid":"55cba2476c522cafdb057364"},"location":{"coordinates":[-73.99426609999999,40.7508707],"type":"Point"},"name":"Events Level Club"} +,{"_id":{"$oid":"55cba2476c522cafdb057365"},"location":{"coordinates":[-73.99426609999999,40.7508707],"type":"Point"},"name":"The Green Room"} +,{"_id":{"$oid":"55cba2476c522cafdb057366"},"location":{"coordinates":[-73.99426609999999,40.7508707],"type":"Point"},"name":"Suite 200, 1879"} +,{"_id":{"$oid":"55cba2476c522cafdb057367"},"location":{"coordinates":[-73.99426609999999,40.7508707],"type":"Point"},"name":"Hot Dog Concession"} +,{"_id":{"$oid":"55cba2476c522cafdb057368"},"location":{"coordinates":[-73.99426609999999,40.7508707],"type":"Point"},"name":"Hot Dog Concession"} +,{"_id":{"$oid":"55cba2476c522cafdb057369"},"location":{"coordinates":[-73.99426609999999,40.7508707],"type":"Point"},"name":"Hot Dog Concession"} +,{"_id":{"$oid":"55cba2476c522cafdb05736a"},"location":{"coordinates":[-73.99426609999999,40.7508707],"type":"Point"},"name":"Hot Dog Concession"} +,{"_id":{"$oid":"55cba2476c522cafdb05736b"},"location":{"coordinates":[-73.99426609999999,40.7508707],"type":"Point"},"name":"Hot Dog Concession A803-1"} +,{"_id":{"$oid":"55cba2476c522cafdb05736c"},"location":{"coordinates":[-73.99426609999999,40.7508707],"type":"Point"},"name":"Hot Dog Concession"} +,{"_id":{"$oid":"55cba2476c522cafdb05736d"},"location":{"coordinates":[-73.99426609999999,40.7508707],"type":"Point"},"name":"Pizzeria Dell' Orto"} +,{"_id":{"$oid":"55cba2476c522cafdb05736e"},"location":{"coordinates":[-73.99426609999999,40.7508707],"type":"Point"},"name":"Bridge Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb05736f"},"location":{"coordinates":[-73.99426609999999,40.7508707],"type":"Point"},"name":"Hill Country"} +,{"_id":{"$oid":"55cba2476c522cafdb057370"},"location":{"coordinates":[-73.99426609999999,40.7508707],"type":"Point"},"name":"Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb057371"},"location":{"coordinates":[-73.954195,40.7433539],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb057372"},"location":{"coordinates":[-73.99426609999999,40.7508707],"type":"Point"},"name":"Casa Nonna"} +,{"_id":{"$oid":"55cba2476c522cafdb057373"},"location":{"coordinates":[-73.99426609999999,40.7508707],"type":"Point"},"name":"Simply Chicken \u0026 Carnegie Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb057374"},"location":{"coordinates":[-73.99426609999999,40.7508707],"type":"Point"},"name":"Sausage Boss"} +,{"_id":{"$oid":"55cba2476c522cafdb057375"},"location":{"coordinates":[-73.9170601,40.7650883],"type":"Point"},"name":"Create"} +,{"_id":{"$oid":"55cba2476c522cafdb057376"},"location":{"coordinates":[-73.99426609999999,40.7508707],"type":"Point"},"name":"Chicken-Fries"} +,{"_id":{"$oid":"55cba2476c522cafdb057377"},"location":{"coordinates":[-73.99426609999999,40.7508707],"type":"Point"},"name":"Bar At The Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb057378"},"location":{"coordinates":[-73.99426609999999,40.7508707],"type":"Point"},"name":"Garden Market"} +,{"_id":{"$oid":"55cba2476c522cafdb057379"},"location":{"coordinates":[-73.99426609999999,40.7508707],"type":"Point"},"name":"Employee Feeding"} +,{"_id":{"$oid":"55cba2476c522cafdb05737a"},"location":{"coordinates":[-73.99426609999999,40.7508707],"type":"Point"},"name":"Simply Tacos"} +,{"_id":{"$oid":"55cba2476c522cafdb05737b"},"location":{"coordinates":[-73.99426609999999,40.7508707],"type":"Point"},"name":"Hot Dog Concession"} +,{"_id":{"$oid":"55cba2476c522cafdb05737c"},"location":{"coordinates":[-73.98008399999999,40.685329],"type":"Point"},"name":"Mob Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05737d"},"location":{"coordinates":[-73.99426609999999,40.7508707],"type":"Point"},"name":"Garden Market Simply Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb05737e"},"location":{"coordinates":[-73.99426609999999,40.7508707],"type":"Point"},"name":"Hot Dog Concession"} +,{"_id":{"$oid":"55cba2476c522cafdb05737f"},"location":{"coordinates":[-73.99426609999999,40.7508707],"type":"Point"},"name":"Carnegie Deli East"} +,{"_id":{"$oid":"55cba2476c522cafdb057380"},"location":{"coordinates":[-73.99426609999999,40.7508707],"type":"Point"},"name":"Simply Chicken-Lobster Roll East"} +,{"_id":{"$oid":"55cba2476c522cafdb057381"},"location":{"coordinates":[-73.98744649999999,40.7193235],"type":"Point"},"name":"Brooklyn Taco"} +,{"_id":{"$oid":"55cba2476c522cafdb057382"},"location":{"coordinates":[-73.99426609999999,40.7508707],"type":"Point"},"name":"Ball Park Hot Dog"} +,{"_id":{"$oid":"55cba2476c522cafdb057383"},"location":{"coordinates":[-73.99426609999999,40.7508707],"type":"Point"},"name":"Hot Dog Concession"} +,{"_id":{"$oid":"55cba2476c522cafdb057384"},"location":{"coordinates":[-73.99426609999999,40.7508707],"type":"Point"},"name":"Healthy-At The Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb057385"},"location":{"coordinates":[-73.99426609999999,40.7508707],"type":"Point"},"name":"Senza Sushi/Lobster Shrimp Roll"} +,{"_id":{"$oid":"55cba2476c522cafdb057386"},"location":{"coordinates":[-73.99426609999999,40.7508707],"type":"Point"},"name":"Hill Country"} +,{"_id":{"$oid":"55cba2476c522cafdb057387"},"location":{"coordinates":[-73.99426609999999,40.7508707],"type":"Point"},"name":"Daily Burger-Sausage Boss"} +,{"_id":{"$oid":"55cba2476c522cafdb057388"},"location":{"coordinates":[-73.97401839999999,40.78452619999999],"type":"Point"},"name":"Spring Natural Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb057389"},"location":{"coordinates":[-74.14001189999999,40.5441467],"type":"Point"},"name":"Richmond County Yacht Club"} +,{"_id":{"$oid":"55cba2476c522cafdb05738a"},"location":{"coordinates":[-73.8290939,40.759362],"type":"Point"},"name":"Tian Fu Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb05738b"},"location":{"coordinates":[-73.91950489999999,40.6988602],"type":"Point"},"name":"Good Friend"} +,{"_id":{"$oid":"55cba2476c522cafdb05738c"},"location":{"coordinates":[-73.9346686,40.66234439999999],"type":"Point"},"name":"New Garden Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05738d"},"location":{"coordinates":[-73.85482309999999,40.7212369],"type":"Point"},"name":"Sushi Akio"} +,{"_id":{"$oid":"55cba2476c522cafdb05738e"},"location":{"coordinates":[-73.8986646,40.8898441],"type":"Point"},"name":"Broadway Chinese Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb05738f"},"location":{"coordinates":[-73.9603805,40.8101861],"type":"Point"},"name":"The Everett Cafe/Starbucks-Teachers College"} +,{"_id":{"$oid":"55cba2476c522cafdb057390"},"location":{"coordinates":[-73.9130863,40.6457128],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb057391"},"location":{"coordinates":[-73.994292,40.6608176],"type":"Point"},"name":"Mary'S Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb057392"},"location":{"coordinates":[-73.99304289999999,40.7338793],"type":"Point"},"name":"Tortaria"} +,{"_id":{"$oid":"55cba2476c522cafdb057393"},"location":{"coordinates":[-73.94698260000001,40.7083283],"type":"Point"},"name":"Testo"} +,{"_id":{"$oid":"55cba2476c522cafdb057394"},"location":{"coordinates":[-73.986389,40.75777799999999],"type":"Point"},"name":"Nuchas"} +,{"_id":{"$oid":"55cba2476c522cafdb057395"},"location":{"coordinates":[-74.0041198,40.6514119],"type":"Point"},"name":"Bar 483"} +,{"_id":{"$oid":"55cba2476c522cafdb057396"},"location":{"coordinates":[-73.91775,40.82609],"type":"Point"},"name":"Loly Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057397"},"location":{"coordinates":[-73.7948663,40.7727025],"type":"Point"},"name":"Matese Caterers, Ristorante \u0026 Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb057398"},"location":{"coordinates":[-73.9876239,40.7202075],"type":"Point"},"name":"Sons Of Essex"} +,{"_id":{"$oid":"55cba2476c522cafdb057399"},"location":{"coordinates":[-73.986548,40.7025211],"type":"Point"},"name":"Pedro'S Mexican Bar \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05739a"},"location":{"coordinates":[-73.954115,40.76985],"type":"Point"},"name":"Papadam"} +,{"_id":{"$oid":"55cba2476c522cafdb05739b"},"location":{"coordinates":[-73.930182,40.65317],"type":"Point"},"name":"Cj'S Jamaican Restaurant \u0026 Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb05739c"},"location":{"coordinates":[-73.8848675,40.7558502],"type":"Point"},"name":"La Pollera Colorada Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb05739d"},"location":{"coordinates":[-73.89762449999999,40.7460184],"type":"Point"},"name":"La Dulce Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb05739e"},"location":{"coordinates":[-73.9203914,40.8459635],"type":"Point"},"name":"Kennedy Chicken \u0026 Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05739f"},"location":{"coordinates":[-73.9104444,40.8568066],"type":"Point"},"name":"Au Bon Pain/ Andale Mexican Grill (Bxcc)"} +,{"_id":{"$oid":"55cba2476c522cafdb0573a0"},"location":{"coordinates":[-73.908811,40.880797],"type":"Point"},"name":"Golden Gate Express"} +,{"_id":{"$oid":"55cba2476c522cafdb0573a1"},"location":{"coordinates":[-74.1034414,40.5878494],"type":"Point"},"name":"Little Caesars"} +,{"_id":{"$oid":"55cba2476c522cafdb0573a2"},"location":{"coordinates":[-73.939251,40.6133126],"type":"Point"},"name":"T-Fusion Steak House"} +,{"_id":{"$oid":"55cba2476c522cafdb0573a3"},"location":{"coordinates":[-74.16953199999999,40.622455],"type":"Point"},"name":"Charlie Brown'S Steakhouse"} +,{"_id":{"$oid":"55cba2476c522cafdb0573a4"},"location":{"coordinates":[-73.80313699999999,40.7612406],"type":"Point"},"name":"Song'S Food"} +,{"_id":{"$oid":"55cba2476c522cafdb0573a5"},"location":{"coordinates":[-73.9875866,40.74099349999999],"type":"Point"},"name":"Osteria Del Principe"} +,{"_id":{"$oid":"55cba2476c522cafdb0573a6"},"location":{"coordinates":[-73.9282078,40.6568041],"type":"Point"},"name":"Happy House Of Chen"} +,{"_id":{"$oid":"55cba2476c522cafdb0573a7"},"location":{"coordinates":[-73.9508077,40.7107642],"type":"Point"},"name":"Burnside"} +,{"_id":{"$oid":"55cba2476c522cafdb0573a8"},"location":{"coordinates":[-73.7382502,40.6753073],"type":"Point"},"name":"Starz Banquet Hall"} +,{"_id":{"$oid":"55cba2476c522cafdb0573a9"},"location":{"coordinates":[-73.97048029999999,40.6929692],"type":"Point"},"name":"Energy Fuel"} +,{"_id":{"$oid":"55cba2476c522cafdb0573aa"},"location":{"coordinates":[-73.99293999999999,40.7625878],"type":"Point"},"name":"Anejo"} +,{"_id":{"$oid":"55cba2476c522cafdb0573ab"},"location":{"coordinates":[-73.96183769999999,40.7593194],"type":"Point"},"name":"Grata"} +,{"_id":{"$oid":"55cba2476c522cafdb0573ac"},"location":{"coordinates":[-73.97375629999999,40.5957097],"type":"Point"},"name":"Lounge Bar Cave"} +,{"_id":{"$oid":"55cba2476c522cafdb0573ad"},"location":{"coordinates":[-73.982649,40.74378],"type":"Point"},"name":"The Cannibal"} +,{"_id":{"$oid":"55cba2476c522cafdb0573ae"},"location":{"coordinates":[-73.74774409999999,40.7157192],"type":"Point"},"name":"New Yun Wah Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0573af"},"location":{"coordinates":[-73.99321619999999,40.74284859999999],"type":"Point"},"name":"Flavors"} +,{"_id":{"$oid":"55cba2476c522cafdb0573b0"},"location":{"coordinates":[-73.8708606,40.7734325],"type":"Point"},"name":"Maple Leaf Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb0573b1"},"location":{"coordinates":[-73.9782714,40.7554338],"type":"Point"},"name":"Gregory'S Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0573b2"},"location":{"coordinates":[-73.91280569999999,40.7741608],"type":"Point"},"name":"Bareburger"} +,{"_id":{"$oid":"55cba2476c522cafdb0573b3"},"location":{"coordinates":[-73.9422369,40.70763609999999],"type":"Point"},"name":"Brooklyn Mac"} +,{"_id":{"$oid":"55cba2476c522cafdb0573b4"},"location":{"coordinates":[-73.918193,40.746377],"type":"Point"},"name":"A Dog And Duck"} +,{"_id":{"$oid":"55cba2476c522cafdb0573b5"},"location":{"coordinates":[-73.8295961,40.760843],"type":"Point"},"name":"Lan Zhou Handmade Noodle"} +,{"_id":{"$oid":"55cba2476c522cafdb0573b6"},"location":{"coordinates":[-73.99426609999999,40.7508707],"type":"Point"},"name":"Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0573b7"},"location":{"coordinates":[-73.99426609999999,40.7508707],"type":"Point"},"name":"Hot Dog-Ice Cream Concession"} +,{"_id":{"$oid":"55cba2476c522cafdb0573b8"},"location":{"coordinates":[-73.99426609999999,40.7508707],"type":"Point"},"name":"East End Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0573b9"},"location":{"coordinates":[-73.99426609999999,40.7508707],"type":"Point"},"name":"Garden Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb0573ba"},"location":{"coordinates":[-73.99426609999999,40.7508707],"type":"Point"},"name":"Chicken-Fries Concession"} +,{"_id":{"$oid":"55cba2476c522cafdb0573bb"},"location":{"coordinates":[-73.86553740000001,40.8786312],"type":"Point"},"name":"Little Caesars"} +,{"_id":{"$oid":"55cba2476c522cafdb0573bc"},"location":{"coordinates":[-73.989908,40.762707],"type":"Point"},"name":"Gazala'S Place"} +,{"_id":{"$oid":"55cba2476c522cafdb0573bd"},"location":{"coordinates":[-73.94288530000001,40.664313],"type":"Point"},"name":"Sushi Spot Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb0573be"},"location":{"coordinates":[-73.99881630000002,40.7635699],"type":"Point"},"name":"Holiday Inn Express"} +,{"_id":{"$oid":"55cba2476c522cafdb0573bf"},"location":{"coordinates":[-73.9206756,40.7661763],"type":"Point"},"name":"Burger Club"} +,{"_id":{"$oid":"55cba2476c522cafdb0573c0"},"location":{"coordinates":[-74.00303889999999,40.73952999999999],"type":"Point"},"name":"Think Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0573c1"},"location":{"coordinates":[-73.830291,40.709573],"type":"Point"},"name":"Odradeks Coffee House"} +,{"_id":{"$oid":"55cba2476c522cafdb0573c2"},"location":{"coordinates":[-73.91732739999999,40.7035375],"type":"Point"},"name":"C.M. Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb0573c3"},"location":{"coordinates":[-73.9982793,40.7410839],"type":"Point"},"name":"The Commons Chelsea"} +,{"_id":{"$oid":"55cba2476c522cafdb0573c4"},"location":{"coordinates":[-73.8735915,40.7507194],"type":"Point"},"name":"El Puerto De Acapulco"} +,{"_id":{"$oid":"55cba2476c522cafdb0573c5"},"location":{"coordinates":[-73.8898674,40.65696639999999],"type":"Point"},"name":"Popeye'S Chicken \u0026 Biscuits"} +,{"_id":{"$oid":"55cba2476c522cafdb0573c6"},"location":{"coordinates":[-73.90925,40.69161],"type":"Point"},"name":"Beijing House"} +,{"_id":{"$oid":"55cba2476c522cafdb0573c7"},"location":{"coordinates":[-73.9977552,40.740088],"type":"Point"},"name":"Serai"} +,{"_id":{"$oid":"55cba2476c522cafdb0573c8"},"location":{"coordinates":[-73.99663249999999,40.66444389999999],"type":"Point"},"name":"Pizza \u0026 Bagel On 3Rd"} +,{"_id":{"$oid":"55cba2476c522cafdb0573c9"},"location":{"coordinates":[-74.2466845,40.5089911],"type":"Point"},"name":"Tottenville Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb0573ca"},"location":{"coordinates":[-73.92386499999999,40.809818],"type":"Point"},"name":"Taco Veloz Vip"} +,{"_id":{"$oid":"55cba2476c522cafdb0573cb"},"location":{"coordinates":[-73.98924219999999,40.7574272],"type":"Point"},"name":"Hotel Westin Main Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0573cc"},"location":{"coordinates":[-73.856387,40.740706],"type":"Point"},"name":"Tacos Gloria"} +,{"_id":{"$oid":"55cba2476c522cafdb0573cd"},"location":{"coordinates":[-73.9972196,40.7211662],"type":"Point"},"name":"Hoomoos Asli"} +,{"_id":{"$oid":"55cba2476c522cafdb0573ce"},"location":{"coordinates":[-73.98679720000001,40.7446893],"type":"Point"},"name":"Lulu \u0026 Me Gastrobar"} +,{"_id":{"$oid":"55cba2476c522cafdb0573cf"},"location":{"coordinates":[-73.94963349999999,40.822114],"type":"Point"},"name":"Cafeone"} +,{"_id":{"$oid":"55cba2476c522cafdb0573d0"},"location":{"coordinates":[-73.967868,40.755165],"type":"Point"},"name":"The Smith"} +,{"_id":{"$oid":"55cba2476c522cafdb0573d1"},"location":{"coordinates":[-73.9198289,40.807499],"type":"Point"},"name":"Little Caesars"} +,{"_id":{"$oid":"55cba2476c522cafdb0573d2"},"location":{"coordinates":[-73.9756047,40.7626292],"type":"Point"},"name":"Il Tinello Ristorante"} +,{"_id":{"$oid":"55cba2476c522cafdb0573d3"},"location":{"coordinates":[-73.98467620000001,40.7270843],"type":"Point"},"name":"Puddin By Clio"} +,{"_id":{"$oid":"55cba2476c522cafdb0573d4"},"location":{"coordinates":[-73.96256269999999,40.6729221],"type":"Point"},"name":"Colala Chinese \u0026 Japanese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0573d5"},"location":{"coordinates":[-73.99216,40.7636619],"type":"Point"},"name":"New Food King Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0573d6"},"location":{"coordinates":[-73.8969766,40.7546648],"type":"Point"},"name":"Sunshine Grill \u0026 Curry"} +,{"_id":{"$oid":"55cba2476c522cafdb0573d7"},"location":{"coordinates":[-74.0066253,40.7147527],"type":"Point"},"name":"Tre Sorelle"} +,{"_id":{"$oid":"55cba2476c522cafdb0573d8"},"location":{"coordinates":[-73.9277979,40.6522599],"type":"Point"},"name":"Mr. Taste Caterer"} +,{"_id":{"$oid":"55cba2476c522cafdb0573d9"},"location":{"coordinates":[-73.9936491,40.6608851],"type":"Point"},"name":"Sea Witch"} +,{"_id":{"$oid":"55cba2476c522cafdb0573da"},"location":{"coordinates":[-73.95099110000001,40.7772283],"type":"Point"},"name":"City Swiggers"} +,{"_id":{"$oid":"55cba2476c522cafdb0573db"},"location":{"coordinates":[-73.8065762,40.6829686],"type":"Point"},"name":"Grace Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0573dc"},"location":{"coordinates":[-73.84181319999999,40.8414625],"type":"Point"},"name":"Side Street Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb0573dd"},"location":{"coordinates":[-74.0047685,40.7297282],"type":"Point"},"name":"Ayza Wine \u0026 Chocolate Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0573de"},"location":{"coordinates":[-73.918055,40.703276],"type":"Point"},"name":"Caribel Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0573df"},"location":{"coordinates":[-73.9123079,40.6135553],"type":"Point"},"name":"Duet"} +,{"_id":{"$oid":"55cba2476c522cafdb0573e0"},"location":{"coordinates":[-73.9303798,40.6565721],"type":"Point"},"name":"Sugar Mill Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb0573e1"},"location":{"coordinates":[-73.9022789,40.776563],"type":"Point"},"name":"Mike'S Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb0573e2"},"location":{"coordinates":[-73.9607618,40.7144292],"type":"Point"},"name":"Spice Garden Indian Food"} +,{"_id":{"$oid":"55cba2476c522cafdb0573e3"},"location":{"coordinates":[-73.9388079,40.8457156],"type":"Point"},"name":"Mi Paso Centro Americano Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0573e4"},"location":{"coordinates":[-73.78719219999999,40.7579305],"type":"Point"},"name":"Cafe Bench"} +,{"_id":{"$oid":"55cba2476c522cafdb0573e5"},"location":{"coordinates":[-74.00081229999999,40.7293724],"type":"Point"},"name":"Turkiss"} +,{"_id":{"$oid":"55cba2476c522cafdb0573e6"},"location":{"coordinates":[-73.8000405,40.7029034],"type":"Point"},"name":"Popeye'S Chicken \u0026 Biscuits"} +,{"_id":{"$oid":"55cba2476c522cafdb0573e7"},"location":{"coordinates":[-74.0158213,40.7149813],"type":"Point"},"name":"Wei West/Beans \u0026 Greens"} +,{"_id":{"$oid":"55cba2476c522cafdb0573e8"},"location":{"coordinates":[-73.9117879,40.7689824],"type":"Point"},"name":"Hj'S Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb0573e9"},"location":{"coordinates":[-73.80304869999999,40.7613075],"type":"Point"},"name":"Arirang Usa"} +,{"_id":{"$oid":"55cba2476c522cafdb0573ea"},"location":{"coordinates":[-73.9558382,40.7844463],"type":"Point"},"name":"Table D'Hote"} +,{"_id":{"$oid":"55cba2476c522cafdb0573eb"},"location":{"coordinates":[-74.0040769,40.7385218],"type":"Point"},"name":"Barrio 47"} +,{"_id":{"$oid":"55cba2476c522cafdb0573ec"},"location":{"coordinates":[-73.9876283,40.74754009999999],"type":"Point"},"name":"39 Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb0573ed"},"location":{"coordinates":[-73.9429919,40.7075687],"type":"Point"},"name":"Kingdom Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0573ee"},"location":{"coordinates":[-73.8319791,40.8475976],"type":"Point"},"name":"Carvel"} +,{"_id":{"$oid":"55cba2476c522cafdb0573ef"},"location":{"coordinates":[-73.9881209,40.7623451],"type":"Point"},"name":"D'Vida Health Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0573f0"},"location":{"coordinates":[-73.979044,40.7409899],"type":"Point"},"name":"Hao Wei"} +,{"_id":{"$oid":"55cba2476c522cafdb0573f1"},"location":{"coordinates":[-73.8192749,40.8232244],"type":"Point"},"name":"Patricia'S Pizza \u0026 Pasta"} +,{"_id":{"$oid":"55cba2476c522cafdb0573f2"},"location":{"coordinates":[-73.8925517,40.8462404],"type":"Point"},"name":"New Rainbow Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0573f3"},"location":{"coordinates":[-73.920704,40.7667554],"type":"Point"},"name":"Namaste Indian Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb0573f4"},"location":{"coordinates":[-73.953322,40.6559409],"type":"Point"},"name":"Akwaaba Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0573f5"},"location":{"coordinates":[-73.96694459999999,40.675013],"type":"Point"},"name":"Blue Marble Ice Cream"} +,{"_id":{"$oid":"55cba2476c522cafdb0573f6"},"location":{"coordinates":[-73.9789487,40.7450181],"type":"Point"},"name":"Insomnia Cookies"} +,{"_id":{"$oid":"55cba2476c522cafdb0573f7"},"location":{"coordinates":[-73.9539336,40.7752837],"type":"Point"},"name":"Insomnia Cookies"} +,{"_id":{"$oid":"55cba2476c522cafdb0573f8"},"location":{"coordinates":[-74.0890536,40.5891025],"type":"Point"},"name":"Gennaro'S -- Country Lanes"} +,{"_id":{"$oid":"55cba2476c522cafdb0573f9"},"location":{"coordinates":[-73.99897299999999,40.728865],"type":"Point"},"name":"Toto Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb0573fa"},"location":{"coordinates":[-73.88557150000001,40.749798],"type":"Point"},"name":"Just Made 4 U"} +,{"_id":{"$oid":"55cba2476c522cafdb0573fb"},"location":{"coordinates":[-73.953705,40.78745079999999],"type":"Point"},"name":"Champignon"} +,{"_id":{"$oid":"55cba2476c522cafdb0573fc"},"location":{"coordinates":[-73.964501,40.757911],"type":"Point"},"name":"Cafe Aka"} +,{"_id":{"$oid":"55cba2476c522cafdb0573fd"},"location":{"coordinates":[-73.96130110000001,40.7118171],"type":"Point"},"name":"Bistro Petit"} +,{"_id":{"$oid":"55cba2476c522cafdb0573fe"},"location":{"coordinates":[-73.9811847,40.7465582],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0573ff"},"location":{"coordinates":[-73.8629739,40.74742070000001],"type":"Point"},"name":"La Estancia Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057400"},"location":{"coordinates":[-73.8831979,40.756027],"type":"Point"},"name":"Rubi Rosa Restaurant \u0026 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb057401"},"location":{"coordinates":[-74.00492559999999,40.7161935],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb057402"},"location":{"coordinates":[-73.9402643,40.7074134],"type":"Point"},"name":"Dun-Well Doughnuts"} +,{"_id":{"$oid":"55cba2476c522cafdb057403"},"location":{"coordinates":[-73.86603079999999,40.8542516],"type":"Point"},"name":"Delicious On Lydig"} +,{"_id":{"$oid":"55cba2476c522cafdb057404"},"location":{"coordinates":[-73.98710100000001,40.747578],"type":"Point"},"name":"Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb057405"},"location":{"coordinates":[-74.0142077,40.7148476],"type":"Point"},"name":"Fp Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb057406"},"location":{"coordinates":[-73.993956,40.687276],"type":"Point"},"name":"Blue Marble Ice Cream"} +,{"_id":{"$oid":"55cba2476c522cafdb057407"},"location":{"coordinates":[-73.90549910000001,40.7452301],"type":"Point"},"name":"Lucid Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057408"},"location":{"coordinates":[-73.9967552,40.7155585],"type":"Point"},"name":"Sing Kee Seafood Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057409"},"location":{"coordinates":[-73.9443007,40.7550744],"type":"Point"},"name":"New Champion Wok"} +,{"_id":{"$oid":"55cba2476c522cafdb05740a"},"location":{"coordinates":[-73.95017949999999,40.7231183],"type":"Point"},"name":"Charlotte Patisserie"} +,{"_id":{"$oid":"55cba2476c522cafdb05740b"},"location":{"coordinates":[-74.00793089999999,40.7098225],"type":"Point"},"name":"Mike'S Noodle House"} +,{"_id":{"$oid":"55cba2476c522cafdb05740c"},"location":{"coordinates":[-73.95265789999999,40.6746969],"type":"Point"},"name":"Juice Hugger"} +,{"_id":{"$oid":"55cba2476c522cafdb05740d"},"location":{"coordinates":[-73.8903587,40.678071],"type":"Point"},"name":"Golden Panda Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05740e"},"location":{"coordinates":[-73.9570914,40.6739092],"type":"Point"},"name":"At The Crown Inn"} +,{"_id":{"$oid":"55cba2476c522cafdb05740f"},"location":{"coordinates":[-73.98136699999999,40.7420015],"type":"Point"},"name":"Maguro Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb057410"},"location":{"coordinates":[-74.2313678,40.5267277],"type":"Point"},"name":"Pronto Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb057411"},"location":{"coordinates":[-73.9512553,40.7249545],"type":"Point"},"name":"In And Out Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb057412"},"location":{"coordinates":[-73.9652675,40.7598004],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb057413"},"location":{"coordinates":[-73.9911054,40.73732570000001],"type":"Point"},"name":"Potbelly Sandwich Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb057414"},"location":{"coordinates":[-73.9890813,40.7530156],"type":"Point"},"name":"Potbelly Sandwich Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb057415"},"location":{"coordinates":[-74.0103057,40.7111618],"type":"Point"},"name":"Millenium Hilton"} +,{"_id":{"$oid":"55cba2476c522cafdb057416"},"location":{"coordinates":[-74.0068953,40.70999219999999],"type":"Point"},"name":"Hale \u0026 Hearty"} +,{"_id":{"$oid":"55cba2476c522cafdb057417"},"location":{"coordinates":[-73.89514450000001,40.7401963],"type":"Point"},"name":"Riquisimo Cafe Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb057418"},"location":{"coordinates":[-73.923226,40.80955],"type":"Point"},"name":"Rinconcito Tepeyac"} +,{"_id":{"$oid":"55cba2476c522cafdb057419"},"location":{"coordinates":[-74.07913599999999,40.637893],"type":"Point"},"name":"Fresh Tortillas \u0026 Taco"} +,{"_id":{"$oid":"55cba2476c522cafdb05741a"},"location":{"coordinates":[-73.91322339999999,40.71505399999999],"type":"Point"},"name":"East Town"} +,{"_id":{"$oid":"55cba2476c522cafdb05741b"},"location":{"coordinates":[-74.0114152,40.6336766],"type":"Point"},"name":"Top Taste Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05741c"},"location":{"coordinates":[-73.9663212,40.7574176],"type":"Point"},"name":"Yamakage Tokyo"} +,{"_id":{"$oid":"55cba2476c522cafdb05741d"},"location":{"coordinates":[-73.8280906,40.7578466],"type":"Point"},"name":"K \u0026 H Sushi World"} +,{"_id":{"$oid":"55cba2476c522cafdb05741e"},"location":{"coordinates":[-73.8092492,40.7775793],"type":"Point"},"name":"Nonna'S Pizzeria \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05741f"},"location":{"coordinates":[-73.9931932,40.7350383],"type":"Point"},"name":"Corkbuzz Wine Studio"} +,{"_id":{"$oid":"55cba2476c522cafdb057420"},"location":{"coordinates":[-73.9477009,40.7905885],"type":"Point"},"name":"El Aguila"} +,{"_id":{"$oid":"55cba2476c522cafdb057421"},"location":{"coordinates":[-73.989096,40.727198],"type":"Point"},"name":"Lit Lounge Nyc"} +,{"_id":{"$oid":"55cba2476c522cafdb057422"},"location":{"coordinates":[-73.9156991,40.8403614],"type":"Point"},"name":"Happy Dragon"} +,{"_id":{"$oid":"55cba2476c522cafdb057423"},"location":{"coordinates":[-73.986177,40.7436884],"type":"Point"},"name":"Shorty'S"} +,{"_id":{"$oid":"55cba2476c522cafdb057424"},"location":{"coordinates":[-73.9809202,40.7290525],"type":"Point"},"name":"Double Wide Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb057425"},"location":{"coordinates":[-73.95013759999999,40.6764348],"type":"Point"},"name":"Crown Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb057426"},"location":{"coordinates":[-73.9606519,40.6938693],"type":"Point"},"name":"Brooklyn Tap House"} +,{"_id":{"$oid":"55cba2476c522cafdb057427"},"location":{"coordinates":[-74.0099017,40.7191049],"type":"Point"},"name":"Tribeca Taphouse"} +,{"_id":{"$oid":"55cba2476c522cafdb057428"},"location":{"coordinates":[-73.99265849999999,40.6831207],"type":"Point"},"name":"Battersby"} +,{"_id":{"$oid":"55cba2476c522cafdb057429"},"location":{"coordinates":[-73.896812,40.6717755],"type":"Point"},"name":"Paladar Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05742a"},"location":{"coordinates":[-80.3937377,27.6380607],"type":"Point"},"name":"Gino'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05742b"},"location":{"coordinates":[-73.9130389,40.7658992],"type":"Point"},"name":"La Canela Restaurant \u0026 Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05742c"},"location":{"coordinates":[-73.910275,40.6997902],"type":"Point"},"name":"El Coqui Billiard Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb05742d"},"location":{"coordinates":[-74.0069905,40.641766],"type":"Point"},"name":"New Hob Boh Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb05742e"},"location":{"coordinates":[-73.99956999999999,40.618227],"type":"Point"},"name":"Peggy'S Burger House"} +,{"_id":{"$oid":"55cba2476c522cafdb05742f"},"location":{"coordinates":[-74.004564,40.65458599999999],"type":"Point"},"name":"Zeng'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057430"},"location":{"coordinates":[-73.993889,40.757157],"type":"Point"},"name":"Troy Turkish Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb057431"},"location":{"coordinates":[-73.99353359999999,40.69027699999999],"type":"Point"},"name":"Mocha Hookah Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057432"},"location":{"coordinates":[-73.89106989999999,40.7472623],"type":"Point"},"name":"Humro Bhim'S Cafe,"} +,{"_id":{"$oid":"55cba2476c522cafdb057433"},"location":{"coordinates":[-74.02103819999999,40.6339502],"type":"Point"},"name":"Nablus Sweets"} +,{"_id":{"$oid":"55cba2476c522cafdb057434"},"location":{"coordinates":[-73.9185698,40.7438639],"type":"Point"},"name":"Bliss 46 Bistro"} +,{"_id":{"$oid":"55cba2476c522cafdb057435"},"location":{"coordinates":[-73.994355,40.76061199999999],"type":"Point"},"name":"Pio Pio"} +,{"_id":{"$oid":"55cba2476c522cafdb057436"},"location":{"coordinates":[-73.87994119999999,40.7480744],"type":"Point"},"name":"Mister Chicken To Go"} +,{"_id":{"$oid":"55cba2476c522cafdb057437"},"location":{"coordinates":[-73.9817253,40.7775486],"type":"Point"},"name":"Red Frog"} +,{"_id":{"$oid":"55cba2476c522cafdb057438"},"location":{"coordinates":[-73.99487359999999,40.7254036],"type":"Point"},"name":"Gasoline Alley Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb057439"},"location":{"coordinates":[-74.013656,40.6415],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb05743a"},"location":{"coordinates":[-73.8399785,40.6578184],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb05743b"},"location":{"coordinates":[-73.9567749,40.776356],"type":"Point"},"name":"Toloache"} +,{"_id":{"$oid":"55cba2476c522cafdb05743c"},"location":{"coordinates":[-73.9300493,40.8667828],"type":"Point"},"name":"Cloisters Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb05743d"},"location":{"coordinates":[-73.8251389,40.701346],"type":"Point"},"name":"El Pachangon Iii Restaurant \u0026 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05743e"},"location":{"coordinates":[-74.1147641,40.6293026],"type":"Point"},"name":"Emperor House"} +,{"_id":{"$oid":"55cba2476c522cafdb05743f"},"location":{"coordinates":[-73.98587959999999,40.6934915],"type":"Point"},"name":"La Defense"} +,{"_id":{"$oid":"55cba2476c522cafdb057440"},"location":{"coordinates":[-73.99229179999999,40.7478182],"type":"Point"},"name":"B \u0026 D Halal Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057441"},"location":{"coordinates":[-73.75898699999999,40.706525],"type":"Point"},"name":"Mina'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb057442"},"location":{"coordinates":[-73.93303,40.768372],"type":"Point"},"name":"Bear"} +,{"_id":{"$oid":"55cba2476c522cafdb057443"},"location":{"coordinates":[-73.950332,40.651039],"type":"Point"},"name":"Rama'S Roti Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb057444"},"location":{"coordinates":[-73.978191,40.5925332],"type":"Point"},"name":"New York Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb057445"},"location":{"coordinates":[-73.97367,40.748395],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb057446"},"location":{"coordinates":[-73.79482260000002,40.7053958],"type":"Point"},"name":"Big New York Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb057447"},"location":{"coordinates":[-73.987387,40.73687899999999],"type":"Point"},"name":"Tommy Lasagna"} +,{"_id":{"$oid":"55cba2476c522cafdb057448"},"location":{"coordinates":[-73.918933,40.6391619],"type":"Point"},"name":"N.Y. Tracks Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057449"},"location":{"coordinates":[-73.9016922,40.8474084],"type":"Point"},"name":"Makumba Restaurant And Catering Hall."} +,{"_id":{"$oid":"55cba2476c522cafdb05744a"},"location":{"coordinates":[-73.937817,40.641373],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb05744b"},"location":{"coordinates":[-73.8121693,40.764641],"type":"Point"},"name":"Da Heen Wangmandoo"} +,{"_id":{"$oid":"55cba2476c522cafdb05744c"},"location":{"coordinates":[-73.9047528,40.6961978],"type":"Point"},"name":"Hong Kong Express"} +,{"_id":{"$oid":"55cba2476c522cafdb05744d"},"location":{"coordinates":[-73.9036,40.745876],"type":"Point"},"name":"Station Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05744e"},"location":{"coordinates":[-73.880606,40.756327],"type":"Point"},"name":"El Palacio Del Colesterol"} +,{"_id":{"$oid":"55cba2476c522cafdb05744f"},"location":{"coordinates":[-73.82944599999999,40.8405692],"type":"Point"},"name":"Six Happiness Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057450"},"location":{"coordinates":[-73.992295,40.726054],"type":"Point"},"name":"Forcella"} +,{"_id":{"$oid":"55cba2476c522cafdb057451"},"location":{"coordinates":[-73.9863828,40.6773386],"type":"Point"},"name":"Littleneck"} +,{"_id":{"$oid":"55cba2476c522cafdb057452"},"location":{"coordinates":[-73.877848,40.748474],"type":"Point"},"name":"Tropicana"} +,{"_id":{"$oid":"55cba2476c522cafdb057453"},"location":{"coordinates":[-74.0305577,40.6237551],"type":"Point"},"name":"Golden Dragon Chinese \u0026 Thai Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb057454"},"location":{"coordinates":[-74.0001118,40.7344783],"type":"Point"},"name":"Whitehall"} +,{"_id":{"$oid":"55cba2476c522cafdb057455"},"location":{"coordinates":[-73.9134828,40.7227651],"type":"Point"},"name":"Goodfella'S Grill (Clinton Diner)"} +,{"_id":{"$oid":"55cba2476c522cafdb057456"},"location":{"coordinates":[-73.982942,40.7636829],"type":"Point"},"name":"Steak 'N Shake"} +,{"_id":{"$oid":"55cba2476c522cafdb057457"},"location":{"coordinates":[-73.9586776,40.6508008],"type":"Point"},"name":"C \u0026 J Ii Jamaican Restaurant \u0026 Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb057458"},"location":{"coordinates":[-74.140232,40.629661],"type":"Point"},"name":"Paula'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057459"},"location":{"coordinates":[-74.14692339999999,40.5416843],"type":"Point"},"name":"Dugout Pub South"} +,{"_id":{"$oid":"55cba2476c522cafdb05745a"},"location":{"coordinates":[-74.0776219,40.6381582],"type":"Point"},"name":"New Chef Hong Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb05745b"},"location":{"coordinates":[-74.0032124,40.7485943],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb05745c"},"location":{"coordinates":[-73.829437,40.757178],"type":"Point"},"name":"Yoz Shanghai"} +,{"_id":{"$oid":"55cba2476c522cafdb05745d"},"location":{"coordinates":[-74.0982604,40.64447639999999],"type":"Point"},"name":"Crispy Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05745e"},"location":{"coordinates":[-73.9948386,40.7135318],"type":"Point"},"name":"Shui Mei Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05745f"},"location":{"coordinates":[-73.98658259999999,40.665216],"type":"Point"},"name":"Piccoli Trattoria"} +,{"_id":{"$oid":"55cba2476c522cafdb057460"},"location":{"coordinates":[-73.985131,40.758895],"type":"Point"},"name":"Snack Box"} +,{"_id":{"$oid":"55cba2476c522cafdb057461"},"location":{"coordinates":[-73.86080880000002,40.8871115],"type":"Point"},"name":"224Th Corner Restaurant \u0026 Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb057462"},"location":{"coordinates":[-73.810315,40.76411299999999],"type":"Point"},"name":"Palazzo Grill \u0026 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb057463"},"location":{"coordinates":[-73.879587,40.8740695],"type":"Point"},"name":"Sodesh Restaurant."} +,{"_id":{"$oid":"55cba2476c522cafdb057464"},"location":{"coordinates":[-73.9899143,40.7562054],"type":"Point"},"name":"Wolfgang'S Steakhouse"} +,{"_id":{"$oid":"55cba2476c522cafdb057465"},"location":{"coordinates":[-73.9955415,40.7164456],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb057466"},"location":{"coordinates":[-73.976952,40.6290173],"type":"Point"},"name":"New York Nick'S Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb057467"},"location":{"coordinates":[-74.01929849999999,40.6465673],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb057468"},"location":{"coordinates":[-73.96336079999999,40.7693539],"type":"Point"},"name":"Corrado Bread And Pastry"} +,{"_id":{"$oid":"55cba2476c522cafdb057469"},"location":{"coordinates":[-73.9726772,40.7903618],"type":"Point"},"name":"Blockheads"} +,{"_id":{"$oid":"55cba2476c522cafdb05746a"},"location":{"coordinates":[-73.98789599999999,40.721452],"type":"Point"},"name":"No Fun"} +,{"_id":{"$oid":"55cba2476c522cafdb05746b"},"location":{"coordinates":[-73.8663289,40.757258],"type":"Point"},"name":"Salinas Ecuadorian Bar \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05746c"},"location":{"coordinates":[-73.9710837,40.7647762],"type":"Point"},"name":"Genes @ Barneys"} +,{"_id":{"$oid":"55cba2476c522cafdb05746d"},"location":{"coordinates":[-74.191682,40.562981],"type":"Point"},"name":"New Chen'S Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb05746e"},"location":{"coordinates":[-73.9560882,40.7197042],"type":"Point"},"name":"Allswell"} +,{"_id":{"$oid":"55cba2476c522cafdb05746f"},"location":{"coordinates":[-73.9902881,40.71273739999999],"type":"Point"},"name":"Chen Wong Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057470"},"location":{"coordinates":[-73.99078560000001,40.765615],"type":"Point"},"name":"Happy Joy"} +,{"_id":{"$oid":"55cba2476c522cafdb057471"},"location":{"coordinates":[-73.88042759999999,40.7478665],"type":"Point"},"name":"Cevicheria El Rey"} +,{"_id":{"$oid":"55cba2476c522cafdb057472"},"location":{"coordinates":[-73.93923579999999,40.8164916],"type":"Point"},"name":"United Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb057473"},"location":{"coordinates":[-73.99469479999999,40.7168935],"type":"Point"},"name":"Cong Ly Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057474"},"location":{"coordinates":[-74.1170896,40.6372286],"type":"Point"},"name":"Joe Joe Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb057475"},"location":{"coordinates":[-73.967985,40.757365],"type":"Point"},"name":"Ltk Little Thai Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb057476"},"location":{"coordinates":[-73.95766549999999,40.6443709],"type":"Point"},"name":"Cam Tak Express Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057477"},"location":{"coordinates":[-73.95982699999999,40.7621967],"type":"Point"},"name":"Honky Tonk Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb057478"},"location":{"coordinates":[-73.86026079999999,40.7299132],"type":"Point"},"name":"Chikurin"} +,{"_id":{"$oid":"55cba2476c522cafdb057479"},"location":{"coordinates":[-73.9537457,40.7072825],"type":"Point"},"name":"The Flat"} +,{"_id":{"$oid":"55cba2476c522cafdb05747a"},"location":{"coordinates":[-73.7935464,40.7775483],"type":"Point"},"name":"Kelly Chinese Restaurant."} +,{"_id":{"$oid":"55cba2476c522cafdb05747b"},"location":{"coordinates":[-74.00363779999999,40.7161361],"type":"Point"},"name":"Worth Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05747c"},"location":{"coordinates":[-74.23716519999999,40.5351028],"type":"Point"},"name":"Daddyo'S Barbeque And Sports Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05747d"},"location":{"coordinates":[-73.9865916,40.7041368],"type":"Point"},"name":"Punto Bianco"} +,{"_id":{"$oid":"55cba2476c522cafdb05747e"},"location":{"coordinates":[-73.9312209,40.66874809999999],"type":"Point"},"name":"Fisherman'S Cove"} +,{"_id":{"$oid":"55cba2476c522cafdb05747f"},"location":{"coordinates":[-73.96261299999999,40.711931],"type":"Point"},"name":"The Bagel Store"} +,{"_id":{"$oid":"55cba2476c522cafdb057480"},"location":{"coordinates":[-73.99654989999999,40.7205946],"type":"Point"},"name":"Sal'S Family Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb057481"},"location":{"coordinates":[-73.9959282,40.7391921],"type":"Point"},"name":"The Hummus \u0026 Pita"} +,{"_id":{"$oid":"55cba2476c522cafdb057482"},"location":{"coordinates":[-73.9830621,40.7547222],"type":"Point"},"name":"Stk"} +,{"_id":{"$oid":"55cba2476c522cafdb057483"},"location":{"coordinates":[-73.99853700000001,40.625774],"type":"Point"},"name":"Y \u0026 Y Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb057484"},"location":{"coordinates":[-73.92142419999999,40.86739379999999],"type":"Point"},"name":"''U'' Like Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057485"},"location":{"coordinates":[-73.9432915,40.810034],"type":"Point"},"name":"Lenox Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb057486"},"location":{"coordinates":[-73.9866285,40.7415086],"type":"Point"},"name":"Eleven Madison Park"} +,{"_id":{"$oid":"55cba2476c522cafdb057487"},"location":{"coordinates":[-73.9708277,40.7929693],"type":"Point"},"name":"Sasha'S Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb057488"},"location":{"coordinates":[-73.958108,40.731459],"type":"Point"},"name":"Oak \u0026 Iron"} +,{"_id":{"$oid":"55cba2476c522cafdb057489"},"location":{"coordinates":[-73.9739027,40.779424],"type":"Point"},"name":"Caffe Storico"} +,{"_id":{"$oid":"55cba2476c522cafdb05748a"},"location":{"coordinates":[-73.826965,40.76024],"type":"Point"},"name":"Feng Mao Bbq"} +,{"_id":{"$oid":"55cba2476c522cafdb05748b"},"location":{"coordinates":[-73.947549,40.634864],"type":"Point"},"name":"Caribbean Top Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb05748c"},"location":{"coordinates":[-73.9256511,40.7442787],"type":"Point"},"name":"Verdecchio Pizzeria \u0026 Ristorante"} +,{"_id":{"$oid":"55cba2476c522cafdb05748d"},"location":{"coordinates":[-73.984927,40.727188],"type":"Point"},"name":"Xe May"} +,{"_id":{"$oid":"55cba2476c522cafdb05748e"},"location":{"coordinates":[-73.9732004,40.68947360000001],"type":"Point"},"name":"Walter'S"} +,{"_id":{"$oid":"55cba2476c522cafdb05748f"},"location":{"coordinates":[-73.8494736,40.8760424],"type":"Point"},"name":"China Wok"} +,{"_id":{"$oid":"55cba2476c522cafdb057490"},"location":{"coordinates":[-74.006624,40.740834],"type":"Point"},"name":"Fancy Girl Catering"} +,{"_id":{"$oid":"55cba2476c522cafdb057491"},"location":{"coordinates":[-73.9637614,40.6489164],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb057492"},"location":{"coordinates":[-73.9828048,40.7426129],"type":"Point"},"name":"Anjappar Chettinad South Indian Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb057493"},"location":{"coordinates":[-73.9893599,40.7185813],"type":"Point"},"name":"Dl"} +,{"_id":{"$oid":"55cba2476c522cafdb057494"},"location":{"coordinates":[-74.0063756,40.7145629],"type":"Point"},"name":"Chipotle Mexican Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb057495"},"location":{"coordinates":[-73.796009,40.688696],"type":"Point"},"name":"Kelly D Jamaican And American Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057496"},"location":{"coordinates":[-73.9965422,40.7260258],"type":"Point"},"name":"Chipotle Mexican Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb057497"},"location":{"coordinates":[-73.997204,40.6042475],"type":"Point"},"name":"New H.K. Tea And Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb057498"},"location":{"coordinates":[-73.8960511,40.8169306],"type":"Point"},"name":"Fu Xing"} +,{"_id":{"$oid":"55cba2476c522cafdb057499"},"location":{"coordinates":[-74.0033262,40.7238441],"type":"Point"},"name":"Pera Soho"} +,{"_id":{"$oid":"55cba2476c522cafdb05749a"},"location":{"coordinates":[-73.82762819999999,40.8524709],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb05749b"},"location":{"coordinates":[-73.98676499999999,40.7479439],"type":"Point"},"name":"Players"} +,{"_id":{"$oid":"55cba2476c522cafdb05749c"},"location":{"coordinates":[-73.98311,40.741127],"type":"Point"},"name":"Luu'S Baguette"} +,{"_id":{"$oid":"55cba2476c522cafdb05749d"},"location":{"coordinates":[-73.9536856,40.7881659],"type":"Point"},"name":"Falafel Express"} +,{"_id":{"$oid":"55cba2476c522cafdb05749e"},"location":{"coordinates":[-73.99339499999999,40.6943851],"type":"Point"},"name":"Happy Days Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb05749f"},"location":{"coordinates":[-73.9769115,40.7498255],"type":"Point"},"name":"Bagel Express"} +,{"_id":{"$oid":"55cba2476c522cafdb0574a0"},"location":{"coordinates":[-73.98452150000001,40.7468521],"type":"Point"},"name":"Bangia Bar \u0026 Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb0574a1"},"location":{"coordinates":[-73.8598253,40.7576377],"type":"Point"},"name":"El Fogon Costeno Restaurant."} +,{"_id":{"$oid":"55cba2476c522cafdb0574a2"},"location":{"coordinates":[-73.8642598,40.8803411],"type":"Point"},"name":"Nana'S African Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0574a3"},"location":{"coordinates":[-73.9739661,40.7519248],"type":"Point"},"name":"Amaze Fusion Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb0574a4"},"location":{"coordinates":[-73.9431951,40.8360452],"type":"Point"},"name":"Silver Palace"} +,{"_id":{"$oid":"55cba2476c522cafdb0574a5"},"location":{"coordinates":[-74.1497515,40.5516661],"type":"Point"},"name":"Piccolino"} +,{"_id":{"$oid":"55cba2476c522cafdb0574a6"},"location":{"coordinates":[-73.831833,40.678578],"type":"Point"},"name":"Johnny'S Restaurant Bar \u0026 Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb0574a7"},"location":{"coordinates":[-73.97540099999999,40.786585],"type":"Point"},"name":"Jacob'S Pickles"} +,{"_id":{"$oid":"55cba2476c522cafdb0574a8"},"location":{"coordinates":[-74.00299,40.731648],"type":"Point"},"name":"Davidstea"} +,{"_id":{"$oid":"55cba2476c522cafdb0574a9"},"location":{"coordinates":[-73.8644862,40.7199046],"type":"Point"},"name":"East Meets West"} +,{"_id":{"$oid":"55cba2476c522cafdb0574aa"},"location":{"coordinates":[-74.0033472,40.7504236],"type":"Point"},"name":"The Americano Hotel"} +,{"_id":{"$oid":"55cba2476c522cafdb0574ab"},"location":{"coordinates":[-73.9732329,40.608085],"type":"Point"},"name":"Pyramida Billiards"} +,{"_id":{"$oid":"55cba2476c522cafdb0574ac"},"location":{"coordinates":[-73.98232,40.756047],"type":"Point"},"name":"Algonquin Hotel"} +,{"_id":{"$oid":"55cba2476c522cafdb0574ad"},"location":{"coordinates":[-73.8094297,40.7778508],"type":"Point"},"name":"Green Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb0574ae"},"location":{"coordinates":[-73.80382039999999,40.6960751],"type":"Point"},"name":"Jouvay Night Club"} +,{"_id":{"$oid":"55cba2476c522cafdb0574af"},"location":{"coordinates":[-73.99316569999999,40.7282208],"type":"Point"},"name":"La Cololmbe"} +,{"_id":{"$oid":"55cba2476c522cafdb0574b0"},"location":{"coordinates":[-73.8330494,40.7607303],"type":"Point"},"name":"Peking Roast Duck"} +,{"_id":{"$oid":"55cba2476c522cafdb0574b1"},"location":{"coordinates":[-73.9491551,40.7879431],"type":"Point"},"name":"Lloyd'S Carrot Cake"} +,{"_id":{"$oid":"55cba2476c522cafdb0574b2"},"location":{"coordinates":[-73.9339956,40.667598],"type":"Point"},"name":"New Imperial Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0574b3"},"location":{"coordinates":[-73.9557355,40.8132226],"type":"Point"},"name":"New Aroma"} +,{"_id":{"$oid":"55cba2476c522cafdb0574b4"},"location":{"coordinates":[-73.82556559999999,40.7643282],"type":"Point"},"name":"Peking Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0574b5"},"location":{"coordinates":[-73.9397139,40.6620591],"type":"Point"},"name":"Sole Of The Sea"} +,{"_id":{"$oid":"55cba2476c522cafdb0574b6"},"location":{"coordinates":[-73.94798589999999,40.6316677],"type":"Point"},"name":"Ovi'S Place"} +,{"_id":{"$oid":"55cba2476c522cafdb0574b7"},"location":{"coordinates":[-73.828296,40.685889],"type":"Point"},"name":"Gt Ricebowl Restaurant And Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb0574b8"},"location":{"coordinates":[-73.91425070000001,40.78232089999999],"type":"Point"},"name":"Just Combo"} +,{"_id":{"$oid":"55cba2476c522cafdb0574b9"},"location":{"coordinates":[-73.878623,40.741756],"type":"Point"},"name":"Asian Taste 86"} +,{"_id":{"$oid":"55cba2476c522cafdb0574ba"},"location":{"coordinates":[-73.963769,40.765846],"type":"Point"},"name":"Davidstea"} +,{"_id":{"$oid":"55cba2476c522cafdb0574bb"},"location":{"coordinates":[-73.9942131,40.7152034],"type":"Point"},"name":"Lao Di Fang Noodle House"} +,{"_id":{"$oid":"55cba2476c522cafdb0574bc"},"location":{"coordinates":[-74.0070554,40.7100732],"type":"Point"},"name":"121 Fulton Street"} +,{"_id":{"$oid":"55cba2476c522cafdb0574bd"},"location":{"coordinates":[-73.8032157,40.6745328],"type":"Point"},"name":"Grand Evergreen Chinese Food"} +,{"_id":{"$oid":"55cba2476c522cafdb0574be"},"location":{"coordinates":[-73.96515,40.622501],"type":"Point"},"name":"L' Chaim Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0574bf"},"location":{"coordinates":[-73.90382900000002,40.7450988],"type":"Point"},"name":"F.Ottomanelli Burgers \u0026 Belgium Fries"} +,{"_id":{"$oid":"55cba2476c522cafdb0574c0"},"location":{"coordinates":[-73.953512,40.774868],"type":"Point"},"name":"China Taste"} +,{"_id":{"$oid":"55cba2476c522cafdb0574c1"},"location":{"coordinates":[-73.9446356,40.7232395],"type":"Point"},"name":"Selamat Pagi"} +,{"_id":{"$oid":"55cba2476c522cafdb0574c2"},"location":{"coordinates":[-73.9113471,40.6994087],"type":"Point"},"name":"Kentucky Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb0574c3"},"location":{"coordinates":[-73.94509699999999,40.791549],"type":"Point"},"name":"Kentucky Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb0574c4"},"location":{"coordinates":[-73.7709501,40.7640558],"type":"Point"},"name":"Safari Beach Club"} +,{"_id":{"$oid":"55cba2476c522cafdb0574c5"},"location":{"coordinates":[-73.754696,40.6055444],"type":"Point"},"name":"Kentucky Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb0574c6"},"location":{"coordinates":[-73.8760337,40.8262459],"type":"Point"},"name":"Sientase De Maravilla"} +,{"_id":{"$oid":"55cba2476c522cafdb0574c7"},"location":{"coordinates":[-73.9554163,40.6892838],"type":"Point"},"name":"Kentucky Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb0574c8"},"location":{"coordinates":[-73.9758098,40.7818282],"type":"Point"},"name":"The Coffee Bean \u0026 Tea Leaf"} +,{"_id":{"$oid":"55cba2476c522cafdb0574c9"},"location":{"coordinates":[-73.8152801,40.7035995],"type":"Point"},"name":"Kentucky Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb0574ca"},"location":{"coordinates":[-73.9118187,40.6696968],"type":"Point"},"name":"Kentucky Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb0574cb"},"location":{"coordinates":[-73.74601799999999,40.6959086],"type":"Point"},"name":"Kentucky Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb0574cc"},"location":{"coordinates":[-73.93245399999999,40.6970398],"type":"Point"},"name":"Kentucky Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb0574cd"},"location":{"coordinates":[-73.9365102,40.8202205],"type":"Point"},"name":"Kentucky Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb0574ce"},"location":{"coordinates":[-73.77874729999999,40.6655445],"type":"Point"},"name":"Kentucky Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb0574cf"},"location":{"coordinates":[-73.8158837,40.6892263],"type":"Point"},"name":"Players Bar \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0574d0"},"location":{"coordinates":[-73.9493656,40.680207],"type":"Point"},"name":"Kentucky Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb0574d1"},"location":{"coordinates":[-73.8403191,40.6594189],"type":"Point"},"name":"Kentucky Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb0574d2"},"location":{"coordinates":[-73.851439,40.6939421],"type":"Point"},"name":"Kentucky Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb0574d3"},"location":{"coordinates":[-74.0951962,40.5719841],"type":"Point"},"name":"Cafe Gourmand"} +,{"_id":{"$oid":"55cba2476c522cafdb0574d4"},"location":{"coordinates":[-73.99372799999999,40.66495200000001],"type":"Point"},"name":"New Taste Of Oriental"} +,{"_id":{"$oid":"55cba2476c522cafdb0574d5"},"location":{"coordinates":[-73.9858991,40.7615384],"type":"Point"},"name":"Lillie'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0574d6"},"location":{"coordinates":[-73.948863,40.788199],"type":"Point"},"name":"My Ny Bakery Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0574d7"},"location":{"coordinates":[-73.947406,40.627767],"type":"Point"},"name":"Di Di Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0574d8"},"location":{"coordinates":[-73.9927793,40.7387488],"type":"Point"},"name":"Ootoya Japanese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0574d9"},"location":{"coordinates":[-73.9926734,40.7543306],"type":"Point"},"name":"Acuario Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0574da"},"location":{"coordinates":[-73.9876247,40.7333073],"type":"Point"},"name":"5 Napkin Burger"} +,{"_id":{"$oid":"55cba2476c522cafdb0574db"},"location":{"coordinates":[-73.9859414,40.6986772],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0574dc"},"location":{"coordinates":[-73.9886598,40.7565811],"type":"Point"},"name":"Liberty Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb0574dd"},"location":{"coordinates":[-73.9401836,40.7973404],"type":"Point"},"name":"New Fa Shing Chinese Restaurant."} +,{"_id":{"$oid":"55cba2476c522cafdb0574de"},"location":{"coordinates":[-73.8739013,40.75521639999999],"type":"Point"},"name":"Bello Amanecer"} +,{"_id":{"$oid":"55cba2476c522cafdb0574df"},"location":{"coordinates":[-73.99795150000001,40.6043983],"type":"Point"},"name":"Lian Won Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0574e0"},"location":{"coordinates":[-73.94986879999999,40.6788289],"type":"Point"},"name":"China King Guo'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0574e1"},"location":{"coordinates":[-73.9773754,40.6813089],"type":"Point"},"name":"Uncle Barry'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0574e2"},"location":{"coordinates":[-73.9917789,40.7702725],"type":"Point"},"name":"The Green Door"} +,{"_id":{"$oid":"55cba2476c522cafdb0574e3"},"location":{"coordinates":[-73.952562,40.5864504],"type":"Point"},"name":"Top Taco \u0026 Top China"} +,{"_id":{"$oid":"55cba2476c522cafdb0574e4"},"location":{"coordinates":[-74.0226709,40.6299799],"type":"Point"},"name":"Gino'S Restaurant \u0026 Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb0574e5"},"location":{"coordinates":[-73.9629278,40.7791655],"type":"Point"},"name":"Metropolitan Museum Roof Top Garden Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0574e6"},"location":{"coordinates":[-73.98874889999999,40.7366067],"type":"Point"},"name":"Studio"} +,{"_id":{"$oid":"55cba2476c522cafdb0574e7"},"location":{"coordinates":[-73.9794847,40.6697382],"type":"Point"},"name":"Konditori"} +,{"_id":{"$oid":"55cba2476c522cafdb0574e8"},"location":{"coordinates":[-73.87829289999999,40.7130641],"type":"Point"},"name":"Las Tias Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0574e9"},"location":{"coordinates":[-73.9939727,40.7146718],"type":"Point"},"name":"Yi Zhang Fishball"} +,{"_id":{"$oid":"55cba2476c522cafdb0574ea"},"location":{"coordinates":[-73.92577190000002,40.652409],"type":"Point"},"name":"Mr Chang'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0574eb"},"location":{"coordinates":[-73.98508,40.662349],"type":"Point"},"name":"Szechuan Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb0574ec"},"location":{"coordinates":[-73.9179119,40.6193581],"type":"Point"},"name":"China Tokyo Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0574ed"},"location":{"coordinates":[-73.97746090000001,40.7221228],"type":"Point"},"name":"China Wok Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0574ee"},"location":{"coordinates":[-73.84600019999999,40.784443],"type":"Point"},"name":"Canaan Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0574ef"},"location":{"coordinates":[-73.9266857,40.7547491],"type":"Point"},"name":"American Museum Of The Moving Image"} +,{"_id":{"$oid":"55cba2476c522cafdb0574f0"},"location":{"coordinates":[-73.958839,40.6690627],"type":"Point"},"name":"Shanghai Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0574f1"},"location":{"coordinates":[-74.07866299999999,40.582822],"type":"Point"},"name":"Guys Community Store"} +,{"_id":{"$oid":"55cba2476c522cafdb0574f2"},"location":{"coordinates":[-73.9132515,40.644515],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0574f3"},"location":{"coordinates":[-73.8275231,40.8821063],"type":"Point"},"name":"The Garage"} +,{"_id":{"$oid":"55cba2476c522cafdb0574f4"},"location":{"coordinates":[-73.9836078,40.7303678],"type":"Point"},"name":"Sao Mai Vietnamese Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb0574f5"},"location":{"coordinates":[-73.8737568,40.7575937],"type":"Point"},"name":"Pimpollo"} +,{"_id":{"$oid":"55cba2476c522cafdb0574f6"},"location":{"coordinates":[-73.997283,40.714946],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0574f7"},"location":{"coordinates":[-74.0049104,40.7082556],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0574f8"},"location":{"coordinates":[-73.7677549,40.657108],"type":"Point"},"name":"Pk Delicatessen"} +,{"_id":{"$oid":"55cba2476c522cafdb0574f9"},"location":{"coordinates":[-73.98925299999999,40.712947],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0574fa"},"location":{"coordinates":[-73.935705,40.73542399999999],"type":"Point"},"name":"Angelos Pizza \u0026 Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb0574fb"},"location":{"coordinates":[-74.0106828,40.71618410000001],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0574fc"},"location":{"coordinates":[-74.0062401,40.7397546],"type":"Point"},"name":"Chipotle Mexican Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0574fd"},"location":{"coordinates":[-73.96305439999999,40.7736017],"type":"Point"},"name":"The Hewitt School"} +,{"_id":{"$oid":"55cba2476c522cafdb0574fe"},"location":{"coordinates":[-73.9476258,40.824841],"type":"Point"},"name":"Food Hut Caribbean Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb0574ff"},"location":{"coordinates":[-73.80323349999999,40.6745342],"type":"Point"},"name":"New Haw Hing Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb057500"},"location":{"coordinates":[-73.9935331,40.682476],"type":"Point"},"name":"Vipa Thai Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb057501"},"location":{"coordinates":[-73.95371229999999,40.6805274],"type":"Point"},"name":"Abu'S Homestyle Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb057502"},"location":{"coordinates":[-74.0068685,40.72763399999999],"type":"Point"},"name":"Pret A Manger"} +,{"_id":{"$oid":"55cba2476c522cafdb057503"},"location":{"coordinates":[-74.17956099999999,40.606198],"type":"Point"},"name":"Commons Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057504"},"location":{"coordinates":[-74.002523,40.750507],"type":"Point"},"name":"Porteno"} +,{"_id":{"$oid":"55cba2476c522cafdb057505"},"location":{"coordinates":[-74.015316,40.647552],"type":"Point"},"name":"Usuluteco 2 Restaurante Salvadoreno"} +,{"_id":{"$oid":"55cba2476c522cafdb057506"},"location":{"coordinates":[-73.9463762,40.8161748],"type":"Point"},"name":"Lil Bite'S Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057507"},"location":{"coordinates":[-73.95239640000001,40.81101830000001],"type":"Point"},"name":"Tangs Jiang Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057508"},"location":{"coordinates":[-73.98838479999999,40.7211971],"type":"Point"},"name":"Hair Of The Dog"} +,{"_id":{"$oid":"55cba2476c522cafdb057509"},"location":{"coordinates":[-74.006083,40.6392],"type":"Point"},"name":"New Louxingta Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05750a"},"location":{"coordinates":[-73.7822056,40.6434612],"type":"Point"},"name":"Dunkin Donuts Coffee Express"} +,{"_id":{"$oid":"55cba2476c522cafdb05750b"},"location":{"coordinates":[-73.7822056,40.6434612],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb05750c"},"location":{"coordinates":[-73.9223315,40.7406067],"type":"Point"},"name":"Sunnyside Taco"} +,{"_id":{"$oid":"55cba2476c522cafdb05750d"},"location":{"coordinates":[-73.7822056,40.6434612],"type":"Point"},"name":"Jamba Juice"} +,{"_id":{"$oid":"55cba2476c522cafdb05750e"},"location":{"coordinates":[-73.7822056,40.6434612],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb05750f"},"location":{"coordinates":[-73.7822056,40.6434612],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb057510"},"location":{"coordinates":[-74.0158213,40.7149813],"type":"Point"},"name":"North End Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb057511"},"location":{"coordinates":[-74.0154946,40.7148288],"type":"Point"},"name":"Blue Smoke"} +,{"_id":{"$oid":"55cba2476c522cafdb057512"},"location":{"coordinates":[-73.9757812,40.6380974],"type":"Point"},"name":"Sheng Xing Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057513"},"location":{"coordinates":[-73.91318509999999,40.6455072],"type":"Point"},"name":"Golden Krust"} +,{"_id":{"$oid":"55cba2476c522cafdb057514"},"location":{"coordinates":[-73.9000846,40.7432915],"type":"Point"},"name":"Pl Lounge Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057515"},"location":{"coordinates":[-73.9994382,40.7146023],"type":"Point"},"name":"Le Baron"} +,{"_id":{"$oid":"55cba2476c522cafdb057516"},"location":{"coordinates":[-73.9555245,40.7189526],"type":"Point"},"name":"Sips \u0026 Bites"} +,{"_id":{"$oid":"55cba2476c522cafdb057517"},"location":{"coordinates":[-73.9933511,40.7344577],"type":"Point"},"name":"Strip House"} +,{"_id":{"$oid":"55cba2476c522cafdb057518"},"location":{"coordinates":[-74.0011854,40.7421535],"type":"Point"},"name":"Bareburger"} +,{"_id":{"$oid":"55cba2476c522cafdb057519"},"location":{"coordinates":[-73.9633539,40.64193119999999],"type":"Point"},"name":"Cafe Madeline"} +,{"_id":{"$oid":"55cba2476c522cafdb05751a"},"location":{"coordinates":[-73.84886639999999,40.8908518],"type":"Point"},"name":"Lammy'S"} +,{"_id":{"$oid":"55cba2476c522cafdb05751b"},"location":{"coordinates":[-73.983065,40.722907],"type":"Point"},"name":"Fonda"} +,{"_id":{"$oid":"55cba2476c522cafdb05751c"},"location":{"coordinates":[-73.9991333,40.737285],"type":"Point"},"name":"Sotto 13"} +,{"_id":{"$oid":"55cba2476c522cafdb05751d"},"location":{"coordinates":[-74.0049883,40.72132149999999],"type":"Point"},"name":"Roll And Go $1 Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05751e"},"location":{"coordinates":[-73.93215579999999,40.7057264],"type":"Point"},"name":"Shinobi Ramen"} +,{"_id":{"$oid":"55cba2476c522cafdb05751f"},"location":{"coordinates":[-73.925854,40.7719173],"type":"Point"},"name":"New King Wah"} +,{"_id":{"$oid":"55cba2476c522cafdb057520"},"location":{"coordinates":[-73.9941046,40.7543601],"type":"Point"},"name":"Doubletree Greenhouse 36"} +,{"_id":{"$oid":"55cba2476c522cafdb057521"},"location":{"coordinates":[-73.8517598,40.8339115],"type":"Point"},"name":"Dunkin Donuts Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb057522"},"location":{"coordinates":[-73.8004922,40.70383570000001],"type":"Point"},"name":"Dunkin Donuts/Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb057523"},"location":{"coordinates":[-73.97505459999999,40.698459],"type":"Point"},"name":"Ted \u0026 Honey At Building 92 (Brooklyn Navy Yard)"} +,{"_id":{"$oid":"55cba2476c522cafdb057524"},"location":{"coordinates":[-73.9572602,40.8148391],"type":"Point"},"name":"Ethio Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057525"},"location":{"coordinates":[-73.8629455,40.7499922],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb057526"},"location":{"coordinates":[-73.89598629999999,40.7366207],"type":"Point"},"name":"Lucky Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057527"},"location":{"coordinates":[-73.94251960000001,40.7014951],"type":"Point"},"name":"Dunkin Donuts Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb057528"},"location":{"coordinates":[-73.9281685,40.8515059],"type":"Point"},"name":"Golan Heights"} +,{"_id":{"$oid":"55cba2476c522cafdb057529"},"location":{"coordinates":[-73.771474,40.763946],"type":"Point"},"name":"Dunkin Donuts Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb05752a"},"location":{"coordinates":[-73.9744177,40.7603369],"type":"Point"},"name":"Valbella Midtown"} +,{"_id":{"$oid":"55cba2476c522cafdb05752b"},"location":{"coordinates":[-73.8645148,40.6859981],"type":"Point"},"name":"El Nuevo Triangulo Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05752c"},"location":{"coordinates":[-73.9878068,40.7521724],"type":"Point"},"name":"Pitopia"} +,{"_id":{"$oid":"55cba2476c522cafdb05752d"},"location":{"coordinates":[-73.869945,40.7704394],"type":"Point"},"name":"Healthy Gourmet"} +,{"_id":{"$oid":"55cba2476c522cafdb05752e"},"location":{"coordinates":[-73.9044242,40.8626469],"type":"Point"},"name":"Giovanni'S"} +,{"_id":{"$oid":"55cba2476c522cafdb05752f"},"location":{"coordinates":[-73.992201,40.726322],"type":"Point"},"name":"The Wren"} +,{"_id":{"$oid":"55cba2476c522cafdb057530"},"location":{"coordinates":[-73.952389,40.777473],"type":"Point"},"name":"Mee Noodle Shop \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb057531"},"location":{"coordinates":[-73.908896,40.823127],"type":"Point"},"name":"Superking Gourmet Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb057532"},"location":{"coordinates":[-73.92675200000001,40.7626021],"type":"Point"},"name":"Carioca Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb057533"},"location":{"coordinates":[-73.919842,40.758335],"type":"Point"},"name":"Love Street Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb057534"},"location":{"coordinates":[-73.83535789999999,40.7569735],"type":"Point"},"name":"Fay Da Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb057535"},"location":{"coordinates":[-73.876272,40.75072979999999],"type":"Point"},"name":"Golden Crust Pizza And Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb057536"},"location":{"coordinates":[-73.964367,40.6827294],"type":"Point"},"name":"Kings Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb057537"},"location":{"coordinates":[-73.94914940000001,40.7109609],"type":"Point"},"name":"Taj Kabab King Fine Indian Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb057538"},"location":{"coordinates":[-73.9465567,40.7800697],"type":"Point"},"name":"Yummy Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb057539"},"location":{"coordinates":[-73.9424243,40.6645883],"type":"Point"},"name":"Pomodori"} +,{"_id":{"$oid":"55cba2476c522cafdb05753a"},"location":{"coordinates":[-73.9646467,40.6237365],"type":"Point"},"name":"Pizza World Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05753b"},"location":{"coordinates":[-73.97729919999999,40.7524958],"type":"Point"},"name":"Tri Tip Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb05753c"},"location":{"coordinates":[-73.93566,40.8462857],"type":"Point"},"name":"Andiamo Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05753d"},"location":{"coordinates":[-73.93728949999999,40.79768019999999],"type":"Point"},"name":"Agua Fresca- Tapas Bar El Kallejon"} +,{"_id":{"$oid":"55cba2476c522cafdb05753e"},"location":{"coordinates":[-73.86222090000001,40.6917121],"type":"Point"},"name":"Nebu Hookah Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb05753f"},"location":{"coordinates":[-73.9820384,40.7562927],"type":"Point"},"name":"Pret A Manger"} +,{"_id":{"$oid":"55cba2476c522cafdb057540"},"location":{"coordinates":[-73.9845122,40.7175117],"type":"Point"},"name":"One Mile House"} +,{"_id":{"$oid":"55cba2476c522cafdb057541"},"location":{"coordinates":[-73.9799053,40.68966959999999],"type":"Point"},"name":"Sunny'S Bagels"} +,{"_id":{"$oid":"55cba2476c522cafdb057542"},"location":{"coordinates":[-73.99676649999999,40.7129536],"type":"Point"},"name":"J J Noodle"} +,{"_id":{"$oid":"55cba2476c522cafdb057543"},"location":{"coordinates":[-73.9754437,40.787631],"type":"Point"},"name":"Coffee Bean \u0026 Tea Leaf"} +,{"_id":{"$oid":"55cba2476c522cafdb057544"},"location":{"coordinates":[-73.9846077,40.5768589],"type":"Point"},"name":"Leanly Chinese Food"} +,{"_id":{"$oid":"55cba2476c522cafdb057545"},"location":{"coordinates":[-73.9841695,40.664142],"type":"Point"},"name":"Jai Dee Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057546"},"location":{"coordinates":[-73.9844621,40.7498904],"type":"Point"},"name":"Kristalbelli"} +,{"_id":{"$oid":"55cba2476c522cafdb057547"},"location":{"coordinates":[-73.9664899,40.714495],"type":"Point"},"name":"Clow \u0026 Clover"} +,{"_id":{"$oid":"55cba2476c522cafdb057548"},"location":{"coordinates":[-73.9394486,40.7500823],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb057549"},"location":{"coordinates":[-74.00514249999999,40.7275977],"type":"Point"},"name":"Il Tramezzino"} +,{"_id":{"$oid":"55cba2476c522cafdb05754a"},"location":{"coordinates":[-73.9667139,40.7605229],"type":"Point"},"name":"Land Of Plenty"} +,{"_id":{"$oid":"55cba2476c522cafdb05754b"},"location":{"coordinates":[-73.98964099999999,40.664741],"type":"Point"},"name":"Sandy'S Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05754c"},"location":{"coordinates":[-73.9619894,40.7138134],"type":"Point"},"name":"Vanessa'S Dumpling House"} +,{"_id":{"$oid":"55cba2476c522cafdb05754d"},"location":{"coordinates":[-73.9898438,40.6130395],"type":"Point"},"name":"Red Sun Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05754e"},"location":{"coordinates":[-74.11125059999999,40.5674433],"type":"Point"},"name":"New China Buffet"} +,{"_id":{"$oid":"55cba2476c522cafdb05754f"},"location":{"coordinates":[-73.9705791,40.7587571],"type":"Point"},"name":"Sushi-Teria"} +,{"_id":{"$oid":"55cba2476c522cafdb057550"},"location":{"coordinates":[-73.86381399999999,40.6788049],"type":"Point"},"name":"City Line Pizza \u0026 Pasta"} +,{"_id":{"$oid":"55cba2476c522cafdb057551"},"location":{"coordinates":[-73.7822056,40.6434612],"type":"Point"},"name":"Aa Admiral'S Club Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb057552"},"location":{"coordinates":[-73.9406039,40.72105800000001],"type":"Point"},"name":"One Stop Beer Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb057553"},"location":{"coordinates":[-73.9864795,40.7478833],"type":"Point"},"name":"Vu Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb057554"},"location":{"coordinates":[-73.76860769999999,40.6633609],"type":"Point"},"name":"Country Taste Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb057555"},"location":{"coordinates":[-73.7716648,40.7656104],"type":"Point"},"name":"Ayna Agra"} +,{"_id":{"$oid":"55cba2476c522cafdb057556"},"location":{"coordinates":[-73.9524859,40.718123],"type":"Point"},"name":"Rich Lane"} +,{"_id":{"$oid":"55cba2476c522cafdb057557"},"location":{"coordinates":[-73.98849349999999,40.7449462],"type":"Point"},"name":"Nomad"} +,{"_id":{"$oid":"55cba2476c522cafdb057558"},"location":{"coordinates":[-73.90953139999999,40.85193940000001],"type":"Point"},"name":"1St Mama Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057559"},"location":{"coordinates":[-73.9812037,40.576206],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb05755a"},"location":{"coordinates":[-73.8094122,40.7044408],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb05755b"},"location":{"coordinates":[-73.9969205,40.6802058],"type":"Point"},"name":"Bergen Hill"} +,{"_id":{"$oid":"55cba2476c522cafdb05755c"},"location":{"coordinates":[-73.93353499999999,40.669966],"type":"Point"},"name":"Vital Blends"} +,{"_id":{"$oid":"55cba2476c522cafdb05755d"},"location":{"coordinates":[-73.9487971,40.7186103],"type":"Point"},"name":"The Shanty"} +,{"_id":{"$oid":"55cba2476c522cafdb05755e"},"location":{"coordinates":[-73.8152638,40.7403042],"type":"Point"},"name":"Tori O'Tooles"} +,{"_id":{"$oid":"55cba2476c522cafdb05755f"},"location":{"coordinates":[-73.9689324,40.6782769],"type":"Point"},"name":"R \u0026 D Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057560"},"location":{"coordinates":[-73.867954,40.741936],"type":"Point"},"name":"New Taste Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057561"},"location":{"coordinates":[-73.92094639999999,40.8669717],"type":"Point"},"name":"Quick Fresh: Juices \u0026 Salads"} +,{"_id":{"$oid":"55cba2476c522cafdb057562"},"location":{"coordinates":[-73.9968774,40.7237486],"type":"Point"},"name":"Back Forty West"} +,{"_id":{"$oid":"55cba2476c522cafdb057563"},"location":{"coordinates":[-73.9797071,40.6453313],"type":"Point"},"name":"Chili Basil Amma Thai"} +,{"_id":{"$oid":"55cba2476c522cafdb057564"},"location":{"coordinates":[-73.86521549999999,40.7260459],"type":"Point"},"name":"Gabriels"} +,{"_id":{"$oid":"55cba2476c522cafdb057565"},"location":{"coordinates":[-73.8328389,40.6729864],"type":"Point"},"name":"Liberty Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb057566"},"location":{"coordinates":[-74.169415,40.5787401],"type":"Point"},"name":"Gino'S Villa Monte"} +,{"_id":{"$oid":"55cba2476c522cafdb057567"},"location":{"coordinates":[-73.9603391,40.6586808],"type":"Point"},"name":"Mike \u0026 Tony'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb057568"},"location":{"coordinates":[-73.8327338,40.76085519999999],"type":"Point"},"name":"Diy Billiards"} +,{"_id":{"$oid":"55cba2476c522cafdb057569"},"location":{"coordinates":[-73.919789,40.61112010000001],"type":"Point"},"name":"Starbucks"} +,{"_id":{"$oid":"55cba2476c522cafdb05756a"},"location":{"coordinates":[-73.89007939999999,40.8451017],"type":"Point"},"name":"Linda'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05756b"},"location":{"coordinates":[-73.81857219999999,40.76501030000001],"type":"Point"},"name":"Star Mini Mart/Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb05756c"},"location":{"coordinates":[-73.98197739999999,40.688416],"type":"Point"},"name":"Wingstop"} +,{"_id":{"$oid":"55cba2476c522cafdb05756d"},"location":{"coordinates":[-73.984809,40.7463],"type":"Point"},"name":"Take 31"} +,{"_id":{"$oid":"55cba2476c522cafdb05756e"},"location":{"coordinates":[-73.825705,40.75151400000001],"type":"Point"},"name":"First Hot Pot"} +,{"_id":{"$oid":"55cba2476c522cafdb05756f"},"location":{"coordinates":[-73.79476,40.709691],"type":"Point"},"name":"Grace Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057570"},"location":{"coordinates":[-73.9169366,40.7576719],"type":"Point"},"name":"Alegre Despertar"} +,{"_id":{"$oid":"55cba2476c522cafdb057571"},"location":{"coordinates":[-73.8617883,40.8783853],"type":"Point"},"name":"Hilltop Caribbean-American Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057572"},"location":{"coordinates":[-73.9563472,40.6810442],"type":"Point"},"name":"Rowe'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057573"},"location":{"coordinates":[-73.9803166,40.7750114],"type":"Point"},"name":"Vive La Crepe"} +,{"_id":{"$oid":"55cba2476c522cafdb057574"},"location":{"coordinates":[-73.9885967,40.7223016],"type":"Point"},"name":"Rockwood Music Hall (Stage Zero)"} +,{"_id":{"$oid":"55cba2476c522cafdb057575"},"location":{"coordinates":[-74.0088049,40.7046907],"type":"Point"},"name":"The Original Soupman/ Ranch 1"} +,{"_id":{"$oid":"55cba2476c522cafdb057576"},"location":{"coordinates":[-73.97199599999999,40.79364899999999],"type":"Point"},"name":"Long Grain"} +,{"_id":{"$oid":"55cba2476c522cafdb057577"},"location":{"coordinates":[-74.02246029999999,40.6305556],"type":"Point"},"name":"The Owl'S Head"} +,{"_id":{"$oid":"55cba2476c522cafdb057578"},"location":{"coordinates":[-73.82728209999999,40.7538476],"type":"Point"},"name":"New Qq Cafe And Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb057579"},"location":{"coordinates":[-73.9858872,40.7470355],"type":"Point"},"name":"Dong Chun Hong Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05757a"},"location":{"coordinates":[-73.88618799999999,40.755738],"type":"Point"},"name":"Sal'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05757b"},"location":{"coordinates":[-73.9956459,40.72302699999999],"type":"Point"},"name":"Parm"} +,{"_id":{"$oid":"55cba2476c522cafdb05757c"},"location":{"coordinates":[-74.0005917,40.7179876],"type":"Point"},"name":"Popeye'S Chicken \u0026 Biscuits"} +,{"_id":{"$oid":"55cba2476c522cafdb05757d"},"location":{"coordinates":[-73.9573095,40.7177444],"type":"Point"},"name":"Konditori"} +,{"_id":{"$oid":"55cba2476c522cafdb05757e"},"location":{"coordinates":[-73.9565561,40.5986529],"type":"Point"},"name":"Kung Fu Tea"} +,{"_id":{"$oid":"55cba2476c522cafdb05757f"},"location":{"coordinates":[-73.94267099999999,40.7987787],"type":"Point"},"name":"Red Star Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057580"},"location":{"coordinates":[-73.9429024,40.7940308],"type":"Point"},"name":"El Chevere Cuchifritos"} +,{"_id":{"$oid":"55cba2476c522cafdb057581"},"location":{"coordinates":[-74.15102399999999,40.536415],"type":"Point"},"name":"Richmond Bagel \u0026 Gourmet Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb057582"},"location":{"coordinates":[-73.90893489999999,40.691426],"type":"Point"},"name":"Jimmys Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb057583"},"location":{"coordinates":[-73.887545,40.755598],"type":"Point"},"name":"Los Toritos Bar Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057584"},"location":{"coordinates":[-73.98370899999999,40.7734882],"type":"Point"},"name":"Indie Food And Wine"} +,{"_id":{"$oid":"55cba2476c522cafdb057585"},"location":{"coordinates":[-73.88209069999999,40.7372978],"type":"Point"},"name":"Boca Juniors Steakhouse"} +,{"_id":{"$oid":"55cba2476c522cafdb057586"},"location":{"coordinates":[-73.9542913,40.7188753],"type":"Point"},"name":"Fushimi"} +,{"_id":{"$oid":"55cba2476c522cafdb057587"},"location":{"coordinates":[-73.8083453,40.7016618],"type":"Point"},"name":"New King Wok Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057588"},"location":{"coordinates":[-74.0277233,40.6193198],"type":"Point"},"name":"Twenty 3 Supper Club"} +,{"_id":{"$oid":"55cba2476c522cafdb057589"},"location":{"coordinates":[-73.799688,40.673943],"type":"Point"},"name":"2 Chill"} +,{"_id":{"$oid":"55cba2476c522cafdb05758a"},"location":{"coordinates":[-74.1377606,40.6116385],"type":"Point"},"name":"Good Wok Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05758b"},"location":{"coordinates":[-73.96099319999999,40.5920209],"type":"Point"},"name":"Five Brothers Pizza Place"} +,{"_id":{"$oid":"55cba2476c522cafdb05758c"},"location":{"coordinates":[-73.9834989,40.6601053],"type":"Point"},"name":"Giovannis Brooklyn Eats"} +,{"_id":{"$oid":"55cba2476c522cafdb05758d"},"location":{"coordinates":[-73.9929302,40.7333834],"type":"Point"},"name":"Village Taverna Greek Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb05758e"},"location":{"coordinates":[-73.86562599999999,40.8779918],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb05758f"},"location":{"coordinates":[-73.9815472,40.6141416],"type":"Point"},"name":"Pizza Daddy"} +,{"_id":{"$oid":"55cba2476c522cafdb057590"},"location":{"coordinates":[-73.9923663,40.7301971],"type":"Point"},"name":"Pret A Manger"} +,{"_id":{"$oid":"55cba2476c522cafdb057591"},"location":{"coordinates":[-73.90213760000002,40.6680897],"type":"Point"},"name":"Crown Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb057592"},"location":{"coordinates":[-73.98985259999999,40.7167318],"type":"Point"},"name":"Papa Johns Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb057593"},"location":{"coordinates":[-74.12814589999999,40.5645916],"type":"Point"},"name":"New Taste Of China"} +,{"_id":{"$oid":"55cba2476c522cafdb057594"},"location":{"coordinates":[-73.943575,40.814845],"type":"Point"},"name":"Elsie'S Caribbean Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057595"},"location":{"coordinates":[-73.9703234,40.6897168],"type":"Point"},"name":"The General Greene"} +,{"_id":{"$oid":"55cba2476c522cafdb057596"},"location":{"coordinates":[-73.88628229999999,40.6772579],"type":"Point"},"name":"Rico Chimi Cafeteria"} +,{"_id":{"$oid":"55cba2476c522cafdb057597"},"location":{"coordinates":[-73.972962,40.784821],"type":"Point"},"name":"Gastronomie 491"} +,{"_id":{"$oid":"55cba2476c522cafdb057598"},"location":{"coordinates":[-73.95943539999999,40.654369],"type":"Point"},"name":"Astramed Physician, P.C"} +,{"_id":{"$oid":"55cba2476c522cafdb057599"},"location":{"coordinates":[-73.989437,40.76067099999999],"type":"Point"},"name":"Dont Tell Mama"} +,{"_id":{"$oid":"55cba2476c522cafdb05759a"},"location":{"coordinates":[-73.87217389999999,40.7514397],"type":"Point"},"name":"Salud Perfecta"} +,{"_id":{"$oid":"55cba2476c522cafdb05759b"},"location":{"coordinates":[-73.967024,40.6322919],"type":"Point"},"name":"Halal Pizza \u0026 Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb05759c"},"location":{"coordinates":[-73.9485887,40.7102648],"type":"Point"},"name":"Warma Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05759d"},"location":{"coordinates":[-73.9757635,40.7544736],"type":"Point"},"name":"Financier Patisserie"} +,{"_id":{"$oid":"55cba2476c522cafdb05759e"},"location":{"coordinates":[-73.89893880000001,40.6753497],"type":"Point"},"name":"Bipolar Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb05759f"},"location":{"coordinates":[-74.1507542,40.5517575],"type":"Point"},"name":"Uncle Louie G Italian Ice Cream"} +,{"_id":{"$oid":"55cba2476c522cafdb0575a0"},"location":{"coordinates":[-73.89961699999999,40.6998573],"type":"Point"},"name":"Ridgewood Authentic Thai Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0575a1"},"location":{"coordinates":[-73.9334643,40.6719904],"type":"Point"},"name":"Brother'S Pizza Parlor"} +,{"_id":{"$oid":"55cba2476c522cafdb0575a2"},"location":{"coordinates":[-73.967012,40.6813545],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0575a3"},"location":{"coordinates":[-73.94007599999999,40.6800919],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0575a4"},"location":{"coordinates":[-73.9286419,40.6321222],"type":"Point"},"name":"Mcdonalds (#11542)"} +,{"_id":{"$oid":"55cba2476c522cafdb0575a5"},"location":{"coordinates":[-73.9503427,40.6806562],"type":"Point"},"name":"Mcdonalds"} +,{"_id":{"$oid":"55cba2476c522cafdb0575a6"},"location":{"coordinates":[-73.99192409999999,40.7548134],"type":"Point"},"name":"Cafe Tarantin"} +,{"_id":{"$oid":"55cba2476c522cafdb0575a7"},"location":{"coordinates":[-74.165716,40.5430344],"type":"Point"},"name":"Tomo Japanese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0575a8"},"location":{"coordinates":[-74.0178269,40.7149764],"type":"Point"},"name":"Richards Kibbie \u0026 Orbe Llp"} +,{"_id":{"$oid":"55cba2476c522cafdb0575a9"},"location":{"coordinates":[-73.8831822,40.701939],"type":"Point"},"name":"Taste Of Taco/Yummy China"} +,{"_id":{"$oid":"55cba2476c522cafdb0575aa"},"location":{"coordinates":[-73.8644386,40.7532626],"type":"Point"},"name":"360 Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb0575ab"},"location":{"coordinates":[-73.8969592,40.82928140000001],"type":"Point"},"name":"King Grill Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0575ac"},"location":{"coordinates":[-73.97260519999999,40.6032788],"type":"Point"},"name":"El Cerrito Del Carmen Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0575ad"},"location":{"coordinates":[-73.8578884,40.7282638],"type":"Point"},"name":"Bamboo Ya"} +,{"_id":{"$oid":"55cba2476c522cafdb0575ae"},"location":{"coordinates":[-73.999976,40.620993],"type":"Point"},"name":"Bao Lai'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0575af"},"location":{"coordinates":[-74.1666972,40.59000109999999],"type":"Point"},"name":"Peking Taste \u0026 Thai"} +,{"_id":{"$oid":"55cba2476c522cafdb0575b0"},"location":{"coordinates":[-73.946634,40.748864],"type":"Point"},"name":"Palace Chicken \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0575b1"},"location":{"coordinates":[-73.8290939,40.759362],"type":"Point"},"name":"Conway Bbq"} +,{"_id":{"$oid":"55cba2476c522cafdb0575b2"},"location":{"coordinates":[-73.9866322,40.7508705],"type":"Point"},"name":"5 Boro Burger"} +,{"_id":{"$oid":"55cba2476c522cafdb0575b3"},"location":{"coordinates":[-73.8239457,40.7598884],"type":"Point"},"name":"Sarangbang Two"} +,{"_id":{"$oid":"55cba2476c522cafdb0575b4"},"location":{"coordinates":[-73.9819588,40.7551243],"type":"Point"},"name":"City Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0575b5"},"location":{"coordinates":[-73.981068,40.7636788],"type":"Point"},"name":"My Choice"} +,{"_id":{"$oid":"55cba2476c522cafdb0575b6"},"location":{"coordinates":[-73.9844404,40.7435999],"type":"Point"},"name":"The Churchill Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb0575b7"},"location":{"coordinates":[-73.8316913,40.7149821],"type":"Point"},"name":"Express Soft Taco One"} +,{"_id":{"$oid":"55cba2476c522cafdb0575b8"},"location":{"coordinates":[-73.9952133,40.716076],"type":"Point"},"name":"Popeye'S Chicken \u0026 Biscuits"} +,{"_id":{"$oid":"55cba2476c522cafdb0575b9"},"location":{"coordinates":[-73.9568996,40.6181806],"type":"Point"},"name":"New Peking Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0575ba"},"location":{"coordinates":[-74.011352,40.633347],"type":"Point"},"name":"Sakura Teriyaki Express"} +,{"_id":{"$oid":"55cba2476c522cafdb0575bb"},"location":{"coordinates":[-73.897739,40.749603],"type":"Point"},"name":"Woodside Cafe Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0575bc"},"location":{"coordinates":[-73.98953999999999,40.72557399999999],"type":"Point"},"name":"The Bean"} +,{"_id":{"$oid":"55cba2476c522cafdb0575bd"},"location":{"coordinates":[-73.77877570000001,40.7135258],"type":"Point"},"name":"Kaieteur Restaurant \u0026 Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0575be"},"location":{"coordinates":[-73.953825,40.744456],"type":"Point"},"name":"The Laughing Devil Comedy Club"} +,{"_id":{"$oid":"55cba2476c522cafdb0575bf"},"location":{"coordinates":[-73.8597339,40.8262953],"type":"Point"},"name":"Ihop"} +,{"_id":{"$oid":"55cba2476c522cafdb0575c0"},"location":{"coordinates":[-73.9396311,40.72586709999999],"type":"Point"},"name":"Greenpoint Heights"} +,{"_id":{"$oid":"55cba2476c522cafdb0575c1"},"location":{"coordinates":[-73.995194,40.749246],"type":"Point"},"name":"Taco Bell"} +,{"_id":{"$oid":"55cba2476c522cafdb0575c2"},"location":{"coordinates":[-74.003186,40.7302912],"type":"Point"},"name":"Prodigy Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0575c3"},"location":{"coordinates":[-74.0103251,40.7044121],"type":"Point"},"name":"The Growler"} +,{"_id":{"$oid":"55cba2476c522cafdb0575c4"},"location":{"coordinates":[-73.887705,40.678717],"type":"Point"},"name":"Maria'S International Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0575c5"},"location":{"coordinates":[-73.9941121,40.7527918],"type":"Point"},"name":"Manhattan Center"} +,{"_id":{"$oid":"55cba2476c522cafdb0575c6"},"location":{"coordinates":[-74.011352,40.633347],"type":"Point"},"name":"Shall We Eat( Located In Food Court)"} +,{"_id":{"$oid":"55cba2476c522cafdb0575c7"},"location":{"coordinates":[-73.8317235,40.7150074],"type":"Point"},"name":"Gloria Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0575c8"},"location":{"coordinates":[-73.91856829999999,40.8389865],"type":"Point"},"name":"Sun Fung Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0575c9"},"location":{"coordinates":[-73.98106779999999,40.6678271],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0575ca"},"location":{"coordinates":[-73.9117965,40.712961],"type":"Point"},"name":"Metro Nutrition"} +,{"_id":{"$oid":"55cba2476c522cafdb0575cb"},"location":{"coordinates":[-73.917031,40.82871799999999],"type":"Point"},"name":"Brother'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0575cc"},"location":{"coordinates":[-73.98581779999999,40.7682107],"type":"Point"},"name":"Morning Star Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0575cd"},"location":{"coordinates":[-73.9586853,40.5939532],"type":"Point"},"name":"Sushi Mikasa"} +,{"_id":{"$oid":"55cba2476c522cafdb0575ce"},"location":{"coordinates":[-73.9926289,40.757935],"type":"Point"},"name":"New Panda Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0575cf"},"location":{"coordinates":[-74.0007913,40.738673],"type":"Point"},"name":"Jeanne \u0026 Gaston"} +,{"_id":{"$oid":"55cba2476c522cafdb0575d0"},"location":{"coordinates":[-73.89230599999999,40.6624387],"type":"Point"},"name":"Crown Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb0575d1"},"location":{"coordinates":[-73.98628699999999,40.726798],"type":"Point"},"name":"Empellon Cocina"} +,{"_id":{"$oid":"55cba2476c522cafdb0575d2"},"location":{"coordinates":[-73.96256269999999,40.6729221],"type":"Point"},"name":"Bar Corvo"} +,{"_id":{"$oid":"55cba2476c522cafdb0575d3"},"location":{"coordinates":[-73.875304,40.750874],"type":"Point"},"name":"Sea Star Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0575d4"},"location":{"coordinates":[-73.99994079999999,40.7338794],"type":"Point"},"name":"Tue Thai Food"} +,{"_id":{"$oid":"55cba2476c522cafdb0575d5"},"location":{"coordinates":[-73.90975089999999,40.7701314],"type":"Point"},"name":"Isis"} +,{"_id":{"$oid":"55cba2476c522cafdb0575d6"},"location":{"coordinates":[-73.8885777,40.6339139],"type":"Point"},"name":"Little Caesars"} +,{"_id":{"$oid":"55cba2476c522cafdb0575d7"},"location":{"coordinates":[-73.918947,40.640231],"type":"Point"},"name":"Tori'S Famous Sauces Deli \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0575d8"},"location":{"coordinates":[-73.8649823,40.87121519999999],"type":"Point"},"name":"La Estrella Tropical"} +,{"_id":{"$oid":"55cba2476c522cafdb0575d9"},"location":{"coordinates":[-73.7822056,40.6434612],"type":"Point"},"name":"Famous Famiglia"} +,{"_id":{"$oid":"55cba2476c522cafdb0575da"},"location":{"coordinates":[-73.95340879999999,40.6572086],"type":"Point"},"name":"Ramagi Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb0575db"},"location":{"coordinates":[-73.96069419999999,40.7720185],"type":"Point"},"name":"Joe Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0575dc"},"location":{"coordinates":[-73.9218808,40.760513],"type":"Point"},"name":"Portalia Ristorante Bar And Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb0575dd"},"location":{"coordinates":[-74.0235479,40.6281285],"type":"Point"},"name":"Casablanca Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0575de"},"location":{"coordinates":[-73.96567759999999,40.8008758],"type":"Point"},"name":"La Toulousaine Boulangerie Patisserie Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0575df"},"location":{"coordinates":[-73.89176290000002,40.7470984],"type":"Point"},"name":"Delhi Heights"} +,{"_id":{"$oid":"55cba2476c522cafdb0575e0"},"location":{"coordinates":[-73.9610872,40.8011609],"type":"Point"},"name":"Shahi Biryani \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0575e1"},"location":{"coordinates":[-73.90950529999999,40.6940628],"type":"Point"},"name":"Bombay Kitchen Indian Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb0575e2"},"location":{"coordinates":[-73.95926659999999,40.7178881],"type":"Point"},"name":"Toby'S Estate"} +,{"_id":{"$oid":"55cba2476c522cafdb0575e3"},"location":{"coordinates":[-73.98217,40.728398],"type":"Point"},"name":"Bad Burger"} +,{"_id":{"$oid":"55cba2476c522cafdb0575e4"},"location":{"coordinates":[-74.0724441,40.598086],"type":"Point"},"name":"Fortune Hawaii"} +,{"_id":{"$oid":"55cba2476c522cafdb0575e5"},"location":{"coordinates":[-73.9661211,40.5768376],"type":"Point"},"name":"Gulluoglu Baklava \u0026 Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0575e6"},"location":{"coordinates":[-73.987971,40.614852],"type":"Point"},"name":"Morelos Bakery \u0026 Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb0575e7"},"location":{"coordinates":[-73.89132599999999,40.701186],"type":"Point"},"name":"Esparks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0575e8"},"location":{"coordinates":[-73.8728885,40.6750709],"type":"Point"},"name":"Lee Good Taste Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0575e9"},"location":{"coordinates":[-73.9827142,40.7617014],"type":"Point"},"name":"Bistro Caterers"} +,{"_id":{"$oid":"55cba2476c522cafdb0575ea"},"location":{"coordinates":[-73.7958416,40.7072905],"type":"Point"},"name":"E.B. Flavors"} +,{"_id":{"$oid":"55cba2476c522cafdb0575eb"},"location":{"coordinates":[-73.953734,40.6389349],"type":"Point"},"name":"Lakay Buffet Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0575ec"},"location":{"coordinates":[-73.76689929999999,40.7560977],"type":"Point"},"name":"Christmas Karaoke"} +,{"_id":{"$oid":"55cba2476c522cafdb0575ed"},"location":{"coordinates":[-73.98953929999999,40.72911560000001],"type":"Point"},"name":"St Marks Karaoke"} +,{"_id":{"$oid":"55cba2476c522cafdb0575ee"},"location":{"coordinates":[-73.9811847,40.7465582],"type":"Point"},"name":"Le Pain Quotidien"} +,{"_id":{"$oid":"55cba2476c522cafdb0575ef"},"location":{"coordinates":[-73.9843818,40.750286],"type":"Point"},"name":"Atoyama Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb0575f0"},"location":{"coordinates":[-73.92386499999999,40.809818],"type":"Point"},"name":"Jing Xin Chinese Food Take Out"} +,{"_id":{"$oid":"55cba2476c522cafdb0575f1"},"location":{"coordinates":[-74.011352,40.633347],"type":"Point"},"name":"Shang Hai Family Dumpling"} +,{"_id":{"$oid":"55cba2476c522cafdb0575f2"},"location":{"coordinates":[-73.9813242,40.7527778],"type":"Point"},"name":"World Yacht - St. Charles"} +,{"_id":{"$oid":"55cba2476c522cafdb0575f3"},"location":{"coordinates":[-73.9827038,40.67743979999999],"type":"Point"},"name":"Taco Santo"} +,{"_id":{"$oid":"55cba2476c522cafdb0575f4"},"location":{"coordinates":[-73.9880666,40.5862017],"type":"Point"},"name":"Cropsey Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0575f5"},"location":{"coordinates":[-73.82274939999999,40.8268183],"type":"Point"},"name":"Kim'S Chinese \u0026 Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb0575f6"},"location":{"coordinates":[-73.9823852,40.7628592],"type":"Point"},"name":"Sentry Centers"} +,{"_id":{"$oid":"55cba2476c522cafdb0575f7"},"location":{"coordinates":[-73.9628575,40.7170216],"type":"Point"},"name":"Wythe Diner/ La Esquina"} +,{"_id":{"$oid":"55cba2476c522cafdb0575f8"},"location":{"coordinates":[-73.99765330000001,40.7182025],"type":"Point"},"name":"Original Puglia Ristorante Italiano"} +,{"_id":{"$oid":"55cba2476c522cafdb0575f9"},"location":{"coordinates":[-73.972527,40.7489149],"type":"Point"},"name":"Pazzo Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0575fa"},"location":{"coordinates":[-73.984291,40.671114],"type":"Point"},"name":"Mura"} +,{"_id":{"$oid":"55cba2476c522cafdb0575fb"},"location":{"coordinates":[-73.9025769,40.6451383],"type":"Point"},"name":"Golden Krust Caribbean Bakery \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0575fc"},"location":{"coordinates":[-73.9989969,40.73360030000001],"type":"Point"},"name":"Neta"} +,{"_id":{"$oid":"55cba2476c522cafdb0575fd"},"location":{"coordinates":[-73.87991339999999,40.7480773],"type":"Point"},"name":"Gangjong Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0575fe"},"location":{"coordinates":[-73.9864403,40.6613913],"type":"Point"},"name":"Sips 'N Bites"} +,{"_id":{"$oid":"55cba2476c522cafdb0575ff"},"location":{"coordinates":[-73.8680797,40.8557726],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb057600"},"location":{"coordinates":[-73.97229949999999,40.7637256],"type":"Point"},"name":"Dippin Dots"} +,{"_id":{"$oid":"55cba2476c522cafdb057601"},"location":{"coordinates":[-74.00489689999999,40.7419343],"type":"Point"},"name":"Giovanni Rana Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057602"},"location":{"coordinates":[-73.8606992,40.7581405],"type":"Point"},"name":"Rainhas"} +,{"_id":{"$oid":"55cba2476c522cafdb057603"},"location":{"coordinates":[-73.9219348,40.81853760000001],"type":"Point"},"name":"China King"} +,{"_id":{"$oid":"55cba2476c522cafdb057604"},"location":{"coordinates":[-73.8603917,40.7299295],"type":"Point"},"name":"Don Alex Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057605"},"location":{"coordinates":[-73.99981690000001,40.72016199999999],"type":"Point"},"name":"Cafe Integral"} +,{"_id":{"$oid":"55cba2476c522cafdb057606"},"location":{"coordinates":[-73.9550203,40.7774268],"type":"Point"},"name":"Juice Generation"} +,{"_id":{"$oid":"55cba2476c522cafdb057607"},"location":{"coordinates":[-73.90153389999999,40.8834165],"type":"Point"},"name":"The Bridge Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb057608"},"location":{"coordinates":[-73.96007589999999,40.6874998],"type":"Point"},"name":"Speedy Romeo"} +,{"_id":{"$oid":"55cba2476c522cafdb057609"},"location":{"coordinates":[-73.9352724,40.8467364],"type":"Point"},"name":"El Capri Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05760a"},"location":{"coordinates":[-73.8799005,40.7480787],"type":"Point"},"name":"El Picosito Bar Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb05760b"},"location":{"coordinates":[-73.95910169999999,40.7169856],"type":"Point"},"name":"Bay Leaf"} +,{"_id":{"$oid":"55cba2476c522cafdb05760c"},"location":{"coordinates":[-73.9534051,40.7456481],"type":"Point"},"name":"Petey'S Burger"} +,{"_id":{"$oid":"55cba2476c522cafdb05760d"},"location":{"coordinates":[-74.079907,40.637456],"type":"Point"},"name":"Cinderellas Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05760e"},"location":{"coordinates":[-73.9847763,40.76143680000001],"type":"Point"},"name":"Pure Health Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb05760f"},"location":{"coordinates":[-73.8649437,40.86399919999999],"type":"Point"},"name":"Gasolina Bar Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb057610"},"location":{"coordinates":[-73.9433408,40.7082957],"type":"Point"},"name":"The Graham"} +,{"_id":{"$oid":"55cba2476c522cafdb057611"},"location":{"coordinates":[-73.89738899999999,40.669223],"type":"Point"},"name":"Liang, Xian Garden,"} +,{"_id":{"$oid":"55cba2476c522cafdb057612"},"location":{"coordinates":[-73.96721520000001,40.7571667],"type":"Point"},"name":"Midtown 1015"} +,{"_id":{"$oid":"55cba2476c522cafdb057613"},"location":{"coordinates":[-73.84118149999999,40.6628132],"type":"Point"},"name":"Danny'S Szechuan Garden Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057614"},"location":{"coordinates":[-73.996481,40.762751],"type":"Point"},"name":"Pom Pom Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb057615"},"location":{"coordinates":[-73.99291889999999,40.748543],"type":"Point"},"name":"New Pizza Town"} +,{"_id":{"$oid":"55cba2476c522cafdb057616"},"location":{"coordinates":[-73.9917578,40.7591159],"type":"Point"},"name":"Turco Mediterranean Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb057617"},"location":{"coordinates":[-73.9522692,40.7181973],"type":"Point"},"name":"Over The Eight"} +,{"_id":{"$oid":"55cba2476c522cafdb057618"},"location":{"coordinates":[-73.8932667,40.8239653],"type":"Point"},"name":"Sabor Latino Cuchifrito"} +,{"_id":{"$oid":"55cba2476c522cafdb057619"},"location":{"coordinates":[-73.9560817,40.8041649],"type":"Point"},"name":"L Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb05761a"},"location":{"coordinates":[-74.001325,40.6872619],"type":"Point"},"name":"Pok Pok Ny"} +,{"_id":{"$oid":"55cba2476c522cafdb05761b"},"location":{"coordinates":[-73.986476,40.719281],"type":"Point"},"name":"Pok Pok Phat Thai"} +,{"_id":{"$oid":"55cba2476c522cafdb05761c"},"location":{"coordinates":[-73.9592559,40.722326],"type":"Point"},"name":"The Kent Ale House"} +,{"_id":{"$oid":"55cba2476c522cafdb05761d"},"location":{"coordinates":[-73.86558409999999,40.7480358],"type":"Point"},"name":"Momentos Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05761e"},"location":{"coordinates":[-74.0133481,40.6281926],"type":"Point"},"name":"El Penacho Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05761f"},"location":{"coordinates":[-73.9788875,40.7235528],"type":"Point"},"name":"Bobwhite Counter."} +,{"_id":{"$oid":"55cba2476c522cafdb057620"},"location":{"coordinates":[-74.24203609999999,40.511019],"type":"Point"},"name":"Reggiano'S Brick Oven Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb057621"},"location":{"coordinates":[-73.92908760000002,40.8079694],"type":"Point"},"name":"Charlies Bar \u0026 Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb057622"},"location":{"coordinates":[-73.9893056,40.7268043],"type":"Point"},"name":"Bareburger"} +,{"_id":{"$oid":"55cba2476c522cafdb057623"},"location":{"coordinates":[-73.9975527,40.722135],"type":"Point"},"name":"Jack'S Wife Freda"} +,{"_id":{"$oid":"55cba2476c522cafdb057624"},"location":{"coordinates":[-73.9054201,40.6431272],"type":"Point"},"name":"La Tranquilite Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057625"},"location":{"coordinates":[-73.969276,40.6933354],"type":"Point"},"name":"Yummy Yummy Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057626"},"location":{"coordinates":[-73.9894157,40.7674037],"type":"Point"},"name":"Inti N.Y.C."} +,{"_id":{"$oid":"55cba2476c522cafdb057627"},"location":{"coordinates":[-73.7218633,40.7424714],"type":"Point"},"name":"Majlis Lounge \u0026 Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057628"},"location":{"coordinates":[-73.9400993,40.6004993],"type":"Point"},"name":"Didi World Famous Food"} +,{"_id":{"$oid":"55cba2476c522cafdb057629"},"location":{"coordinates":[-73.994899,40.724419],"type":"Point"},"name":"La Churreria"} +,{"_id":{"$oid":"55cba2476c522cafdb05762a"},"location":{"coordinates":[-73.93982729999999,40.7614248],"type":"Point"},"name":"Niforos Corner"} +,{"_id":{"$oid":"55cba2476c522cafdb05762b"},"location":{"coordinates":[-73.7585801,40.7409415],"type":"Point"},"name":"Bell Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb05762c"},"location":{"coordinates":[-73.994528,40.723084],"type":"Point"},"name":"Prince St Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05762d"},"location":{"coordinates":[-73.8004922,40.7038358],"type":"Point"},"name":"Asian Food"} +,{"_id":{"$oid":"55cba2476c522cafdb05762e"},"location":{"coordinates":[-73.95064599999999,40.786764],"type":"Point"},"name":"Abv"} +,{"_id":{"$oid":"55cba2476c522cafdb05762f"},"location":{"coordinates":[-73.98911,40.7764061],"type":"Point"},"name":"Blu Cafe By Tavalon"} +,{"_id":{"$oid":"55cba2476c522cafdb057630"},"location":{"coordinates":[-73.8306039,40.762047],"type":"Point"},"name":"Dance Star"} +,{"_id":{"$oid":"55cba2476c522cafdb057631"},"location":{"coordinates":[-121.4158208,38.5319584],"type":"Point"},"name":"Antonio'S"} +,{"_id":{"$oid":"55cba2476c522cafdb057632"},"location":{"coordinates":[-73.88013529999999,40.8823449],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb057633"},"location":{"coordinates":[-73.91937949999999,40.86353889999999],"type":"Point"},"name":"Skyline Bar Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb057634"},"location":{"coordinates":[-73.98982099999999,40.762829],"type":"Point"},"name":"Viv"} +,{"_id":{"$oid":"55cba2476c522cafdb057635"},"location":{"coordinates":[-73.962513,40.6498616],"type":"Point"},"name":"Wok N Roll Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb057636"},"location":{"coordinates":[-74.02879949999999,40.6224781],"type":"Point"},"name":"Fantastic Bagels"} +,{"_id":{"$oid":"55cba2476c522cafdb057637"},"location":{"coordinates":[-74.00536559999999,40.6392297],"type":"Point"},"name":"No 1 Heyi Xiaochi"} +,{"_id":{"$oid":"55cba2476c522cafdb057638"},"location":{"coordinates":[-73.9935881,40.7571543],"type":"Point"},"name":"Zoob Zib Thai Noodle / Aura"} +,{"_id":{"$oid":"55cba2476c522cafdb057639"},"location":{"coordinates":[-73.96883199999999,40.755577],"type":"Point"},"name":"Karizma Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb05763a"},"location":{"coordinates":[-73.8600089,40.8361635],"type":"Point"},"name":"Mr. Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05763b"},"location":{"coordinates":[-73.9884113,40.7196523],"type":"Point"},"name":"Caffe Vita"} +,{"_id":{"$oid":"55cba2476c522cafdb05763c"},"location":{"coordinates":[-74.0057424,40.6384567],"type":"Point"},"name":"Funny B.B.Q. Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05763d"},"location":{"coordinates":[-73.97798130000001,40.7257125],"type":"Point"},"name":"F \u0026 F 99 Cents Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05763e"},"location":{"coordinates":[-73.988411,40.7196073],"type":"Point"},"name":"Via Tribunali"} +,{"_id":{"$oid":"55cba2476c522cafdb05763f"},"location":{"coordinates":[-74.0004608,40.6131388],"type":"Point"},"name":"Double Delight Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057640"},"location":{"coordinates":[-73.9599095,40.7663215],"type":"Point"},"name":"Gotham Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057641"},"location":{"coordinates":[-73.99981269999999,40.7439763],"type":"Point"},"name":"Joe'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb057642"},"location":{"coordinates":[-73.737279,40.729016],"type":"Point"},"name":"China King Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057643"},"location":{"coordinates":[-73.9396786,40.7500867],"type":"Point"},"name":"Triple Shot World Atlas"} +,{"_id":{"$oid":"55cba2476c522cafdb057644"},"location":{"coordinates":[-73.9813087,40.737837],"type":"Point"},"name":"Orion Diner \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb057645"},"location":{"coordinates":[-73.9769712,40.7496646],"type":"Point"},"name":"Giuseppes Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb057646"},"location":{"coordinates":[-73.85788930000001,40.7282641],"type":"Point"},"name":"Rego Park Sake"} +,{"_id":{"$oid":"55cba2476c522cafdb057647"},"location":{"coordinates":[-73.80327969999999,40.6745378],"type":"Point"},"name":"The Jockey'S Room"} +,{"_id":{"$oid":"55cba2476c522cafdb057648"},"location":{"coordinates":[-73.9510449,40.771047],"type":"Point"},"name":"Yefsi Estiatorio"} +,{"_id":{"$oid":"55cba2476c522cafdb057649"},"location":{"coordinates":[-73.86594570000001,40.7369503],"type":"Point"},"name":"Nutripan Colombian Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb05764a"},"location":{"coordinates":[-73.9993339,40.6050036],"type":"Point"},"name":"New Bay Coffee Shop Luncheonette"} +,{"_id":{"$oid":"55cba2476c522cafdb05764b"},"location":{"coordinates":[-73.9509516,40.58400030000001],"type":"Point"},"name":"Cafe Rokhat"} +,{"_id":{"$oid":"55cba2476c522cafdb05764c"},"location":{"coordinates":[-73.9958845,40.739749],"type":"Point"},"name":"Haven'S Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb05764d"},"location":{"coordinates":[-73.9445243,40.7139672],"type":"Point"},"name":"Basik"} +,{"_id":{"$oid":"55cba2476c522cafdb05764e"},"location":{"coordinates":[-73.95455299999999,40.688148],"type":"Point"},"name":"Villa Poncho Taqueria"} +,{"_id":{"$oid":"55cba2476c522cafdb05764f"},"location":{"coordinates":[-73.9979499,40.71609979999999],"type":"Point"},"name":"Amazing 66 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057650"},"location":{"coordinates":[-73.9270052,40.7016975],"type":"Point"},"name":"Miles"} +,{"_id":{"$oid":"55cba2476c522cafdb057651"},"location":{"coordinates":[-73.8360667,40.7864616],"type":"Point"},"name":"Planet Wings"} +,{"_id":{"$oid":"55cba2476c522cafdb057652"},"location":{"coordinates":[-73.7671853,40.76028650000001],"type":"Point"},"name":"Panda Garden Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057653"},"location":{"coordinates":[-73.9204756,40.8623406],"type":"Point"},"name":"Negro Claro"} +,{"_id":{"$oid":"55cba2476c522cafdb057654"},"location":{"coordinates":[-73.8969309,40.7460578],"type":"Point"},"name":"Maxim Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057655"},"location":{"coordinates":[-74.006936,40.6210949],"type":"Point"},"name":"Cafe Sicily"} +,{"_id":{"$oid":"55cba2476c522cafdb057656"},"location":{"coordinates":[-73.8462833,40.7209368],"type":"Point"},"name":"Sushi Yasu"} +,{"_id":{"$oid":"55cba2476c522cafdb057657"},"location":{"coordinates":[-73.9858266,40.5996039],"type":"Point"},"name":"Sidelines Luncheonette"} +,{"_id":{"$oid":"55cba2476c522cafdb057658"},"location":{"coordinates":[-73.94892899999999,40.592629],"type":"Point"},"name":"New House Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb057659"},"location":{"coordinates":[-74.0033923,40.731562],"type":"Point"},"name":"Cones"} +,{"_id":{"$oid":"55cba2476c522cafdb05765a"},"location":{"coordinates":[-74.00256499999999,40.6418958],"type":"Point"},"name":"Boat House \u0026 Cajun Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb05765b"},"location":{"coordinates":[-73.9953153,40.7224867],"type":"Point"},"name":"Yn"} +,{"_id":{"$oid":"55cba2476c522cafdb05765c"},"location":{"coordinates":[-73.879899,40.74807879999999],"type":"Point"},"name":"Kung Fu Tea"} +,{"_id":{"$oid":"55cba2476c522cafdb05765d"},"location":{"coordinates":[-73.949986,40.6771015],"type":"Point"},"name":"New John Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb05765e"},"location":{"coordinates":[-73.9377088,40.7963093],"type":"Point"},"name":"Xing Dragon"} +,{"_id":{"$oid":"55cba2476c522cafdb05765f"},"location":{"coordinates":[-73.9319424,40.8572822],"type":"Point"},"name":"Buddha Beer Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb057660"},"location":{"coordinates":[-73.9199958,40.6452418],"type":"Point"},"name":"Mr Chans Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057661"},"location":{"coordinates":[-73.93740609999999,40.8050359],"type":"Point"},"name":"Ihop"} +,{"_id":{"$oid":"55cba2476c522cafdb057662"},"location":{"coordinates":[-73.9580624,40.7173169],"type":"Point"},"name":"Vera Cruz"} +,{"_id":{"$oid":"55cba2476c522cafdb057663"},"location":{"coordinates":[-73.93184099999999,40.753531],"type":"Point"},"name":"Kanki Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb057664"},"location":{"coordinates":[-73.8976776,40.844506],"type":"Point"},"name":"Dunkin Donuts \u0026 Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb057665"},"location":{"coordinates":[-73.8788892,40.6819476],"type":"Point"},"name":"Tony'S Famous Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb057666"},"location":{"coordinates":[-73.857328,40.684097],"type":"Point"},"name":"Don Pollo"} +,{"_id":{"$oid":"55cba2476c522cafdb057667"},"location":{"coordinates":[-73.8317248,40.71500839999999],"type":"Point"},"name":"Cheeburger Cheeburger"} +,{"_id":{"$oid":"55cba2476c522cafdb057668"},"location":{"coordinates":[-73.9183395,40.6294478],"type":"Point"},"name":"Peking Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057669"},"location":{"coordinates":[-73.97994589999999,40.5983032],"type":"Point"},"name":"Reggi'S Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05766a"},"location":{"coordinates":[-73.9825426,40.6654582],"type":"Point"},"name":"Talde"} +,{"_id":{"$oid":"55cba2476c522cafdb05766b"},"location":{"coordinates":[-73.919264,40.8351857],"type":"Point"},"name":"Kennedy Chicken \u0026Sandwiches"} +,{"_id":{"$oid":"55cba2476c522cafdb05766c"},"location":{"coordinates":[-73.99711429999999,40.717498],"type":"Point"},"name":"Shanghai Heping Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05766d"},"location":{"coordinates":[-73.8325658,40.8357532],"type":"Point"},"name":"Babalu"} +,{"_id":{"$oid":"55cba2476c522cafdb05766e"},"location":{"coordinates":[-73.9101828,40.8507118],"type":"Point"},"name":"Dunkin Donuts \u0026 Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb05766f"},"location":{"coordinates":[-73.9782,40.783853],"type":"Point"},"name":"Hummus Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb057670"},"location":{"coordinates":[-73.9353242,40.6829325],"type":"Point"},"name":"Beso Restaurant And Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb057671"},"location":{"coordinates":[-73.9335425,40.8489923],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb057672"},"location":{"coordinates":[-73.93001079999999,40.8548801],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb057673"},"location":{"coordinates":[-73.8274646,40.8525956],"type":"Point"},"name":"Dunkin Donuts \u0026 Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb057674"},"location":{"coordinates":[-73.9753777,40.7850457],"type":"Point"},"name":"Say Cheese!"} +,{"_id":{"$oid":"55cba2476c522cafdb057675"},"location":{"coordinates":[-73.8971879,40.8672548],"type":"Point"},"name":"Dunkin Donuts \u0026 Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb057676"},"location":{"coordinates":[-74.0108283,40.7075827],"type":"Point"},"name":"Green Power Cafe @Equinox"} +,{"_id":{"$oid":"55cba2476c522cafdb057677"},"location":{"coordinates":[-73.73639299999999,40.733165],"type":"Point"},"name":"Szechuan Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb057678"},"location":{"coordinates":[-73.989943,40.7184028],"type":"Point"},"name":"Top Hops Beer Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb057679"},"location":{"coordinates":[-73.8259441,40.7436134],"type":"Point"},"name":"Asian Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05767a"},"location":{"coordinates":[-73.98716259999999,40.7510658],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb05767b"},"location":{"coordinates":[-73.829437,40.757178],"type":"Point"},"name":"Quan De Fu"} +,{"_id":{"$oid":"55cba2476c522cafdb05767c"},"location":{"coordinates":[-73.957488,40.70908],"type":"Point"},"name":"Slices"} +,{"_id":{"$oid":"55cba2476c522cafdb05767d"},"location":{"coordinates":[-73.994541,40.75377],"type":"Point"},"name":"The Gastro Bar At 35Th"} +,{"_id":{"$oid":"55cba2476c522cafdb05767e"},"location":{"coordinates":[-73.8439865,40.72144189999999],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb05767f"},"location":{"coordinates":[-73.9882472,40.7638919],"type":"Point"},"name":"Briciola"} +,{"_id":{"$oid":"55cba2476c522cafdb057680"},"location":{"coordinates":[-73.98304089999999,40.6694305],"type":"Point"},"name":"Haab Taqueria"} +,{"_id":{"$oid":"55cba2476c522cafdb057681"},"location":{"coordinates":[-73.8990358,40.8593428],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb057682"},"location":{"coordinates":[-73.920869,40.8676319],"type":"Point"},"name":"Dunkin Donuts \u0026 Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb057683"},"location":{"coordinates":[-73.984966,40.7607293],"type":"Point"},"name":"Caffe Bene"} +,{"_id":{"$oid":"55cba2476c522cafdb057684"},"location":{"coordinates":[-74.008667,40.647097],"type":"Point"},"name":"Fuego Royal Restaurant Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb057685"},"location":{"coordinates":[-73.8508003,40.66627],"type":"Point"},"name":"Tuscany Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb057686"},"location":{"coordinates":[-74.0777019,40.643727],"type":"Point"},"name":"Royal Indian Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057687"},"location":{"coordinates":[-73.9477009,40.7905885],"type":"Point"},"name":"Best Lexington Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb057688"},"location":{"coordinates":[-73.9909732,40.692922],"type":"Point"},"name":"Antonio'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb057689"},"location":{"coordinates":[-73.9850963,40.6709249],"type":"Point"},"name":"Backyard"} +,{"_id":{"$oid":"55cba2476c522cafdb05768a"},"location":{"coordinates":[-73.9779439,40.76493],"type":"Point"},"name":"Angelo'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb05768b"},"location":{"coordinates":[-92.72963969999999,41.746147],"type":"Point"},"name":"Crepe Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05768c"},"location":{"coordinates":[-73.9729402,40.7491569],"type":"Point"},"name":"765 Food Market"} +,{"_id":{"$oid":"55cba2476c522cafdb05768d"},"location":{"coordinates":[-73.7507115,40.7069227],"type":"Point"},"name":"Happy Hop'S Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb05768e"},"location":{"coordinates":[-73.9828596,40.7555234],"type":"Point"},"name":"Crave Sandwiches"} +,{"_id":{"$oid":"55cba2476c522cafdb05768f"},"location":{"coordinates":[-74.0084612,40.7160585],"type":"Point"},"name":"Lotus Blue"} +,{"_id":{"$oid":"55cba2476c522cafdb057690"},"location":{"coordinates":[-73.8518543,40.6823081],"type":"Point"},"name":"Long River Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057691"},"location":{"coordinates":[-73.9803017,40.7745108],"type":"Point"},"name":"Joanne Trattoria"} +,{"_id":{"$oid":"55cba2476c522cafdb057692"},"location":{"coordinates":[-73.912116,40.6696331],"type":"Point"},"name":"Golden Krust"} +,{"_id":{"$oid":"55cba2476c522cafdb057693"},"location":{"coordinates":[-73.84553,40.679922],"type":"Point"},"name":"La Cabana Peruana"} +,{"_id":{"$oid":"55cba2476c522cafdb057694"},"location":{"coordinates":[-73.9084278,40.6799322],"type":"Point"},"name":"New Jin Bu Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057695"},"location":{"coordinates":[-73.8957854,40.6694566],"type":"Point"},"name":"China Tastes"} +,{"_id":{"$oid":"55cba2476c522cafdb057696"},"location":{"coordinates":[-73.950705,40.802764],"type":"Point"},"name":"Keur Coumba Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057697"},"location":{"coordinates":[-73.9660208,40.8003949],"type":"Point"},"name":"Mario Gourmet Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb057698"},"location":{"coordinates":[-73.9173819,40.8066045],"type":"Point"},"name":"Good Choice China House"} +,{"_id":{"$oid":"55cba2476c522cafdb057699"},"location":{"coordinates":[-73.933189,40.635361],"type":"Point"},"name":"Cascades Catering Hall"} +,{"_id":{"$oid":"55cba2476c522cafdb05769a"},"location":{"coordinates":[-73.9839052,40.7316048],"type":"Point"},"name":"Artichoke Basile'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05769b"},"location":{"coordinates":[-73.9261343,40.7625922],"type":"Point"},"name":"Aliada"} +,{"_id":{"$oid":"55cba2476c522cafdb05769c"},"location":{"coordinates":[-73.7900081,40.7118572],"type":"Point"},"name":"Sbs Hillside Inn"} +,{"_id":{"$oid":"55cba2476c522cafdb05769d"},"location":{"coordinates":[-73.9593676,40.7678058],"type":"Point"},"name":"Bottega Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05769e"},"location":{"coordinates":[-73.9799006,40.7730414],"type":"Point"},"name":"Cafe 47"} +,{"_id":{"$oid":"55cba2476c522cafdb05769f"},"location":{"coordinates":[-73.9808247,40.7734615],"type":"Point"},"name":"Disney Abc Cafeteria"} +,{"_id":{"$oid":"55cba2476c522cafdb0576a0"},"location":{"coordinates":[-74.00665699999999,40.739633],"type":"Point"},"name":"Serafina"} +,{"_id":{"$oid":"55cba2476c522cafdb0576a1"},"location":{"coordinates":[-73.9805895,40.7822187],"type":"Point"},"name":"Serafina"} +,{"_id":{"$oid":"55cba2476c522cafdb0576a2"},"location":{"coordinates":[-73.9879613,40.7758388],"type":"Point"},"name":"Disney Abc Cafeteria"} +,{"_id":{"$oid":"55cba2476c522cafdb0576a3"},"location":{"coordinates":[-73.9246265,40.812228],"type":"Point"},"name":"Gio'S Pizza \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0576a4"},"location":{"coordinates":[-73.9604956,40.6604043],"type":"Point"},"name":"Jus Fishy"} +,{"_id":{"$oid":"55cba2476c522cafdb0576a5"},"location":{"coordinates":[-73.8218728,40.753412],"type":"Point"},"name":"Biryani And Chat"} +,{"_id":{"$oid":"55cba2476c522cafdb0576a6"},"location":{"coordinates":[-74.0158213,40.7149813],"type":"Point"},"name":"Conrad New York Main Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0576a7"},"location":{"coordinates":[-74.0158213,40.7149813],"type":"Point"},"name":"Conrad New York"} +,{"_id":{"$oid":"55cba2476c522cafdb0576a8"},"location":{"coordinates":[-73.983921,40.611868],"type":"Point"},"name":"Y \u0026 M Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0576a9"},"location":{"coordinates":[-73.9450154,40.808573],"type":"Point"},"name":"Corner Social"} +,{"_id":{"$oid":"55cba2476c522cafdb0576aa"},"location":{"coordinates":[-73.94523269999999,40.7078753],"type":"Point"},"name":"La Nueva Clasica Antillana"} +,{"_id":{"$oid":"55cba2476c522cafdb0576ab"},"location":{"coordinates":[-73.978549,40.755583],"type":"Point"},"name":"Vitae"} +,{"_id":{"$oid":"55cba2476c522cafdb0576ac"},"location":{"coordinates":[-73.8548327,40.8491816],"type":"Point"},"name":"Luke'S Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb0576ad"},"location":{"coordinates":[-73.954948,40.77015],"type":"Point"},"name":"Jbird"} +,{"_id":{"$oid":"55cba2476c522cafdb0576ae"},"location":{"coordinates":[-73.9301732,40.8537702],"type":"Point"},"name":"El Caribe Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0576af"},"location":{"coordinates":[-73.97008199999999,40.646825],"type":"Point"},"name":"Am Thai Bistro"} +,{"_id":{"$oid":"55cba2476c522cafdb0576b0"},"location":{"coordinates":[-73.98570699999999,40.726576],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0576b1"},"location":{"coordinates":[-73.9952319,40.7592276],"type":"Point"},"name":"Signature Cafe And Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0576b2"},"location":{"coordinates":[-73.8545481,40.7421626],"type":"Point"},"name":"Ny Double Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0576b3"},"location":{"coordinates":[-73.9953177,40.7436585],"type":"Point"},"name":"Vivi Bubble Tea"} +,{"_id":{"$oid":"55cba2476c522cafdb0576b4"},"location":{"coordinates":[-73.97797229999999,40.6804519],"type":"Point"},"name":"Pure Bistro"} +,{"_id":{"$oid":"55cba2476c522cafdb0576b5"},"location":{"coordinates":[-73.9857261,40.7442193],"type":"Point"},"name":"Byblos"} +,{"_id":{"$oid":"55cba2476c522cafdb0576b6"},"location":{"coordinates":[-73.95453119999999,40.7797238],"type":"Point"},"name":"Franklin Hotel"} +,{"_id":{"$oid":"55cba2476c522cafdb0576b7"},"location":{"coordinates":[-73.95513199999999,40.7684629],"type":"Point"},"name":"Bare Burgers"} +,{"_id":{"$oid":"55cba2476c522cafdb0576b8"},"location":{"coordinates":[-73.828012,40.762757],"type":"Point"},"name":"Ji Cheng Han Song Ting"} +,{"_id":{"$oid":"55cba2476c522cafdb0576b9"},"location":{"coordinates":[-73.9045457,40.7042039],"type":"Point"},"name":"Checkpoint Ben Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0576ba"},"location":{"coordinates":[-73.895011,40.7506904],"type":"Point"},"name":"Lins Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0576bb"},"location":{"coordinates":[-73.8904484,40.8696601],"type":"Point"},"name":"Hong Kong Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0576bc"},"location":{"coordinates":[-73.99004579999999,40.7593023],"type":"Point"},"name":"Gyu-Kaku"} +,{"_id":{"$oid":"55cba2476c522cafdb0576bd"},"location":{"coordinates":[-73.9212242,40.8266888],"type":"Point"},"name":"Sheridan Market"} +,{"_id":{"$oid":"55cba2476c522cafdb0576be"},"location":{"coordinates":[-74.00354999999999,40.731748],"type":"Point"},"name":"Kumo Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb0576bf"},"location":{"coordinates":[-73.9582308,40.7693371],"type":"Point"},"name":"Szechuan Gourmet"} +,{"_id":{"$oid":"55cba2476c522cafdb0576c0"},"location":{"coordinates":[-73.98369579999999,40.7663485],"type":"Point"},"name":"Balducci'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0576c1"},"location":{"coordinates":[-73.9449154,40.8086991],"type":"Point"},"name":"Cove Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb0576c2"},"location":{"coordinates":[-73.9190919,40.7435468],"type":"Point"},"name":"1 Buen Sabor"} +,{"_id":{"$oid":"55cba2476c522cafdb0576c3"},"location":{"coordinates":[-73.87010599999999,40.7029939],"type":"Point"},"name":"New Sweet Rice"} +,{"_id":{"$oid":"55cba2476c522cafdb0576c4"},"location":{"coordinates":[-73.8721667,40.7337976],"type":"Point"},"name":"Haveli"} +,{"_id":{"$oid":"55cba2476c522cafdb0576c5"},"location":{"coordinates":[-73.8433697,40.8471942],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0576c6"},"location":{"coordinates":[-73.9663585,40.7111584],"type":"Point"},"name":"Tba"} +,{"_id":{"$oid":"55cba2476c522cafdb0576c7"},"location":{"coordinates":[-73.7812888,40.7288973],"type":"Point"},"name":"Turnpike Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0576c8"},"location":{"coordinates":[-73.956816,40.7840582],"type":"Point"},"name":"Gina La Fornarina"} +,{"_id":{"$oid":"55cba2476c522cafdb0576c9"},"location":{"coordinates":[-73.91558599999999,40.699235],"type":"Point"},"name":"Esmeralda'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0576ca"},"location":{"coordinates":[-73.85670739999999,40.7174831],"type":"Point"},"name":"Village Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0576cb"},"location":{"coordinates":[-73.9701257,40.7598454],"type":"Point"},"name":"Red Olive"} +,{"_id":{"$oid":"55cba2476c522cafdb0576cc"},"location":{"coordinates":[-73.8760331,40.8261942],"type":"Point"},"name":"Ricuras Ecuadorian Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0576cd"},"location":{"coordinates":[-73.9949369,40.7195442],"type":"Point"},"name":"Randolph Beer"} +,{"_id":{"$oid":"55cba2476c522cafdb0576ce"},"location":{"coordinates":[-73.9023886,40.8123979],"type":"Point"},"name":"El Porton Bar \u0026 Mexican Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0576cf"},"location":{"coordinates":[-73.9553931,40.5876486],"type":"Point"},"name":"Osaka Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb0576d0"},"location":{"coordinates":[-73.9103908,40.8246173],"type":"Point"},"name":"Merry Land Buffet"} +,{"_id":{"$oid":"55cba2476c522cafdb0576d1"},"location":{"coordinates":[-74.0090766,40.7141797],"type":"Point"},"name":"Woodrows"} +,{"_id":{"$oid":"55cba2476c522cafdb0576d2"},"location":{"coordinates":[-73.980113,40.7576138],"type":"Point"},"name":"Arcade Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0576d3"},"location":{"coordinates":[-73.997427,40.722675],"type":"Point"},"name":"Chipotle Mexican Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0576d4"},"location":{"coordinates":[-73.9276146,40.8169727],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0576d5"},"location":{"coordinates":[-73.912876,40.63608],"type":"Point"},"name":"Lucky Star Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0576d6"},"location":{"coordinates":[-73.8797297,40.8752253],"type":"Point"},"name":"Sal'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0576d7"},"location":{"coordinates":[-73.76218190000002,40.6985349],"type":"Point"},"name":"Maxine On The Boulevard"} +,{"_id":{"$oid":"55cba2476c522cafdb0576d8"},"location":{"coordinates":[-74.10320759999999,40.5776724],"type":"Point"},"name":"Papa John'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0576d9"},"location":{"coordinates":[-73.9160814,40.7646877],"type":"Point"},"name":"16 Handles"} +,{"_id":{"$oid":"55cba2476c522cafdb0576da"},"location":{"coordinates":[-73.9068885,40.8873972],"type":"Point"},"name":"Yo-Burger"} +,{"_id":{"$oid":"55cba2476c522cafdb0576db"},"location":{"coordinates":[-73.91047309999999,40.8498989],"type":"Point"},"name":"Las Sirenas"} +,{"_id":{"$oid":"55cba2476c522cafdb0576dc"},"location":{"coordinates":[-73.7939359,40.68593449999999],"type":"Point"},"name":"Little Caesar'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0576dd"},"location":{"coordinates":[-74.00325409999999,40.7300906],"type":"Point"},"name":"Cafe Blossom"} +,{"_id":{"$oid":"55cba2476c522cafdb0576de"},"location":{"coordinates":[-73.928534,40.681765],"type":"Point"},"name":"New Sin Lee Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0576df"},"location":{"coordinates":[-73.91062579999999,40.6941262],"type":"Point"},"name":"Chen Yuan Chinese Food"} +,{"_id":{"$oid":"55cba2476c522cafdb0576e0"},"location":{"coordinates":[-73.8040505,40.7626313],"type":"Point"},"name":"Bada Story"} +,{"_id":{"$oid":"55cba2476c522cafdb0576e1"},"location":{"coordinates":[-73.99284030000001,40.7345875],"type":"Point"},"name":"Taboonette"} +,{"_id":{"$oid":"55cba2476c522cafdb0576e2"},"location":{"coordinates":[-73.8389858,40.6533522],"type":"Point"},"name":"Old Country Bagel"} +,{"_id":{"$oid":"55cba2476c522cafdb0576e3"},"location":{"coordinates":[-73.9966087,40.7598213],"type":"Point"},"name":"Xl Night Club"} +,{"_id":{"$oid":"55cba2476c522cafdb0576e4"},"location":{"coordinates":[-73.979838,40.596455],"type":"Point"},"name":"Sweet Heart Lovely Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0576e5"},"location":{"coordinates":[-74.0042689,40.6812741],"type":"Point"},"name":"Jalopy Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb0576e6"},"location":{"coordinates":[-73.75748,40.706387],"type":"Point"},"name":"Tastee Jerk"} +,{"_id":{"$oid":"55cba2476c522cafdb0576e7"},"location":{"coordinates":[-74.00018700000001,40.71961599999999],"type":"Point"},"name":"Smile To Go"} +,{"_id":{"$oid":"55cba2476c522cafdb0576e8"},"location":{"coordinates":[-73.9696538,40.7598946],"type":"Point"},"name":"Little Collins"} +,{"_id":{"$oid":"55cba2476c522cafdb0576e9"},"location":{"coordinates":[-73.923148,40.69952],"type":"Point"},"name":"El Castillo Bar Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0576ea"},"location":{"coordinates":[-73.987557,40.714042],"type":"Point"},"name":"Happy Family Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0576eb"},"location":{"coordinates":[-73.91708799999999,40.807894],"type":"Point"},"name":"Saint Anns Cafe Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0576ec"},"location":{"coordinates":[-73.9920877,40.753274],"type":"Point"},"name":"Chicken House"} +,{"_id":{"$oid":"55cba2476c522cafdb0576ed"},"location":{"coordinates":[-73.89254919999999,40.6803278],"type":"Point"},"name":"China Garden Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0576ee"},"location":{"coordinates":[-73.979523,40.783337],"type":"Point"},"name":"Irving Farm"} +,{"_id":{"$oid":"55cba2476c522cafdb0576ef"},"location":{"coordinates":[-74.0102115,40.713174],"type":"Point"},"name":"Aroma Espresso Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0576f0"},"location":{"coordinates":[-73.95848450000001,40.6441227],"type":"Point"},"name":"China Tang Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0576f1"},"location":{"coordinates":[-73.988263,40.6663349],"type":"Point"},"name":"Bagels \u0026 Wraps"} +,{"_id":{"$oid":"55cba2476c522cafdb0576f2"},"location":{"coordinates":[-73.8087102,40.7187013],"type":"Point"},"name":"Sunrise Bagel- Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb0576f3"},"location":{"coordinates":[-74.0068685,40.72763399999999],"type":"Point"},"name":"Hale \u0026 Hearty"} +,{"_id":{"$oid":"55cba2476c522cafdb0576f4"},"location":{"coordinates":[-73.9978915,40.7142049],"type":"Point"},"name":"Tasty Hand-Pulled Noodles"} +,{"_id":{"$oid":"55cba2476c522cafdb0576f5"},"location":{"coordinates":[-73.9309481,40.6276227],"type":"Point"},"name":"Plum Tree Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0576f6"},"location":{"coordinates":[-73.9798995,40.6692055],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0576f7"},"location":{"coordinates":[-73.993945,40.596534],"type":"Point"},"name":"Mamma Mia Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb0576f8"},"location":{"coordinates":[-73.8959586,40.63793099999999],"type":"Point"},"name":"Good Friends Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0576f9"},"location":{"coordinates":[-73.81363379999999,40.764994],"type":"Point"},"name":"Mat Ba Ram"} +,{"_id":{"$oid":"55cba2476c522cafdb0576fa"},"location":{"coordinates":[-73.843605,40.67153800000001],"type":"Point"},"name":"Scoops"} +,{"_id":{"$oid":"55cba2476c522cafdb0576fb"},"location":{"coordinates":[-73.8799147,40.7480772],"type":"Point"},"name":"El Sancho Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0576fc"},"location":{"coordinates":[-74.028092,40.63133],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0576fd"},"location":{"coordinates":[-73.9933113,40.7478417],"type":"Point"},"name":"Panera Bread"} +,{"_id":{"$oid":"55cba2476c522cafdb0576fe"},"location":{"coordinates":[-73.9033673,40.7212065],"type":"Point"},"name":"Joe'S Pizzeria Restaurant \u0026 Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb0576ff"},"location":{"coordinates":[-73.857281,40.743673],"type":"Point"},"name":"Tacos Y Quesadillas Mexico"} +,{"_id":{"$oid":"55cba2476c522cafdb057700"},"location":{"coordinates":[-73.90817899999999,40.7031187],"type":"Point"},"name":"Susano'S Pizzeria \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057701"},"location":{"coordinates":[-73.7971565,40.5904747],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb057702"},"location":{"coordinates":[-73.99959729999999,40.7237675],"type":"Point"},"name":"Georgetown Cupcake Soho"} +,{"_id":{"$oid":"55cba2476c522cafdb057703"},"location":{"coordinates":[-73.83031199999999,40.70865],"type":"Point"},"name":"Singas Pizza/Mni Burger"} +,{"_id":{"$oid":"55cba2476c522cafdb057704"},"location":{"coordinates":[-73.82933299999999,40.758736],"type":"Point"},"name":"7Th Mansion Ktv"} +,{"_id":{"$oid":"55cba2476c522cafdb057705"},"location":{"coordinates":[-73.8288431,40.7575194],"type":"Point"},"name":"No. 1. East Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057706"},"location":{"coordinates":[-73.8285403,40.7579589],"type":"Point"},"name":"Fay Da Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb057707"},"location":{"coordinates":[-92.7182167,41.7467777],"type":"Point"},"name":"Nbc"} +,{"_id":{"$oid":"55cba2476c522cafdb057708"},"location":{"coordinates":[-73.9920817,40.7601021],"type":"Point"},"name":"Wine Escape"} +,{"_id":{"$oid":"55cba2476c522cafdb057709"},"location":{"coordinates":[-73.8319405,40.8461246],"type":"Point"},"name":"Crosby Pizza Stop"} +,{"_id":{"$oid":"55cba2476c522cafdb05770a"},"location":{"coordinates":[-73.8782852,40.7365156],"type":"Point"},"name":"Tangra Masala"} +,{"_id":{"$oid":"55cba2476c522cafdb05770b"},"location":{"coordinates":[-73.9214599,40.8360151],"type":"Point"},"name":"Little Caesars"} +,{"_id":{"$oid":"55cba2476c522cafdb05770c"},"location":{"coordinates":[-73.966289,40.758407],"type":"Point"},"name":"Off The Wall"} +,{"_id":{"$oid":"55cba2476c522cafdb05770d"},"location":{"coordinates":[-73.9147942,40.83937700000001],"type":"Point"},"name":"La Rosa Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb05770e"},"location":{"coordinates":[-73.9402008,40.7081781],"type":"Point"},"name":"Tradesman"} +,{"_id":{"$oid":"55cba2476c522cafdb05770f"},"location":{"coordinates":[-73.8259441,40.7436134],"type":"Point"},"name":"New Bodai"} +,{"_id":{"$oid":"55cba2476c522cafdb057710"},"location":{"coordinates":[-74.0003289,40.71798099999999],"type":"Point"},"name":"Cafe Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb057711"},"location":{"coordinates":[-73.8979777,40.8837949],"type":"Point"},"name":"New Guan Hin Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057712"},"location":{"coordinates":[-73.9922321,40.7248891],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb057713"},"location":{"coordinates":[-73.9562787,40.8027991],"type":"Point"},"name":"Harlem Food Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb057714"},"location":{"coordinates":[-73.8970487,40.7072799],"type":"Point"},"name":"Gyro-Village"} +,{"_id":{"$oid":"55cba2476c522cafdb057715"},"location":{"coordinates":[-73.9821244,40.7551156],"type":"Point"},"name":"Liberty Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057716"},"location":{"coordinates":[-73.9890822,40.7587725],"type":"Point"},"name":"Smith'S"} +,{"_id":{"$oid":"55cba2476c522cafdb057717"},"location":{"coordinates":[-73.9388347,40.6870832],"type":"Point"},"name":"Sun Hing Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057718"},"location":{"coordinates":[-73.8999475,40.7459222],"type":"Point"},"name":"El Sabroso Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb057719"},"location":{"coordinates":[-73.85561899999999,40.8421523],"type":"Point"},"name":"Jimmy Deli Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb05771a"},"location":{"coordinates":[-73.9839082,40.5878885],"type":"Point"},"name":"John'S Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb05771b"},"location":{"coordinates":[-73.79853,40.673826],"type":"Point"},"name":"Grand Dragon"} +,{"_id":{"$oid":"55cba2476c522cafdb05771c"},"location":{"coordinates":[-73.9831882,40.7684252],"type":"Point"},"name":"Time Warner Executive Dining Room"} +,{"_id":{"$oid":"55cba2476c522cafdb05771d"},"location":{"coordinates":[-73.9403643,40.83481769999999],"type":"Point"},"name":"Crown Fried Chiken"} +,{"_id":{"$oid":"55cba2476c522cafdb05771e"},"location":{"coordinates":[-73.955184,40.769396],"type":"Point"},"name":"Numero 28"} +,{"_id":{"$oid":"55cba2476c522cafdb05771f"},"location":{"coordinates":[-73.8786113,40.8502883],"type":"Point"},"name":"4D"} +,{"_id":{"$oid":"55cba2476c522cafdb057720"},"location":{"coordinates":[-73.8786113,40.8502883],"type":"Point"},"name":"Asia Bazarr"} +,{"_id":{"$oid":"55cba2476c522cafdb057721"},"location":{"coordinates":[-73.936806,40.641435],"type":"Point"},"name":"Taco King"} +,{"_id":{"$oid":"55cba2476c522cafdb057722"},"location":{"coordinates":[-74.005287,40.608535],"type":"Point"},"name":"Fu Ke Lai Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb057723"},"location":{"coordinates":[-73.869945,40.7704394],"type":"Point"},"name":"Delta Sky Club"} +,{"_id":{"$oid":"55cba2476c522cafdb057724"},"location":{"coordinates":[-73.89,40.854679],"type":"Point"},"name":"Oriental House"} +,{"_id":{"$oid":"55cba2476c522cafdb057725"},"location":{"coordinates":[-73.9886922,40.7439948],"type":"Point"},"name":"Starbucks (Store 16628)"} +,{"_id":{"$oid":"55cba2476c522cafdb057726"},"location":{"coordinates":[-73.994064,40.575342],"type":"Point"},"name":"Not Ray'S Leo'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb057727"},"location":{"coordinates":[-73.9396261,40.74986860000001],"type":"Point"},"name":"Checkers"} +,{"_id":{"$oid":"55cba2476c522cafdb057728"},"location":{"coordinates":[-74.20203699999999,40.5260871],"type":"Point"},"name":"Cucumber Sushi \u0026 Salad Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb057729"},"location":{"coordinates":[-74.0046179,40.653652],"type":"Point"},"name":"Enjoy My Bagels"} +,{"_id":{"$oid":"55cba2476c522cafdb05772a"},"location":{"coordinates":[-73.95423509999999,40.7433938],"type":"Point"},"name":"Casa Enrique"} +,{"_id":{"$oid":"55cba2476c522cafdb05772b"},"location":{"coordinates":[-73.891836,40.747489],"type":"Point"},"name":"Lhasa Fast Food"} +,{"_id":{"$oid":"55cba2476c522cafdb05772c"},"location":{"coordinates":[-73.90326,40.879967],"type":"Point"},"name":"Raine"} +,{"_id":{"$oid":"55cba2476c522cafdb05772d"},"location":{"coordinates":[-74.00241319999999,40.6419966],"type":"Point"},"name":"Kai Feng Fu Dumpling House"} +,{"_id":{"$oid":"55cba2476c522cafdb05772e"},"location":{"coordinates":[-73.95929199999999,40.768015],"type":"Point"},"name":"Jean Claude French Bistro"} +,{"_id":{"$oid":"55cba2476c522cafdb05772f"},"location":{"coordinates":[-73.985732,40.719125],"type":"Point"},"name":"Yopparai"} +,{"_id":{"$oid":"55cba2476c522cafdb057730"},"location":{"coordinates":[-73.992255,40.749712],"type":"Point"},"name":"Haagen Dazs/Beer Cart"} +,{"_id":{"$oid":"55cba2476c522cafdb057731"},"location":{"coordinates":[-73.966385,40.71505690000001],"type":"Point"},"name":"Glasslands"} +,{"_id":{"$oid":"55cba2476c522cafdb057732"},"location":{"coordinates":[-73.7822056,40.6434612],"type":"Point"},"name":"Cibo Market Express Gourmet Markets"} +,{"_id":{"$oid":"55cba2476c522cafdb057733"},"location":{"coordinates":[-74.0158213,40.7149813],"type":"Point"},"name":"Union Square Events"} +,{"_id":{"$oid":"55cba2476c522cafdb057734"},"location":{"coordinates":[-73.829627,40.7577646],"type":"Point"},"name":"Wu Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057735"},"location":{"coordinates":[-74.16273989999999,40.5417142],"type":"Point"},"name":"Richmond Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb057736"},"location":{"coordinates":[-73.99573699999999,40.7411492],"type":"Point"},"name":"Gezunte Bagel"} +,{"_id":{"$oid":"55cba2476c522cafdb057737"},"location":{"coordinates":[-73.98844,40.754501],"type":"Point"},"name":"Nicks Place"} +,{"_id":{"$oid":"55cba2476c522cafdb057738"},"location":{"coordinates":[-73.9982425,40.7298729],"type":"Point"},"name":"Nyu Gcasl Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb057739"},"location":{"coordinates":[-73.9930862,40.7026287],"type":"Point"},"name":"Gran Electrica"} +,{"_id":{"$oid":"55cba2476c522cafdb05773a"},"location":{"coordinates":[-73.9866995,40.7627595],"type":"Point"},"name":"Don Antonio Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05773b"},"location":{"coordinates":[-73.9955382,40.6827365],"type":"Point"},"name":"The Brooklyn Strategist"} +,{"_id":{"$oid":"55cba2476c522cafdb05773c"},"location":{"coordinates":[-73.8746937,40.7344224],"type":"Point"},"name":"Boulevard Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb05773d"},"location":{"coordinates":[-74.0074194,40.7422626],"type":"Point"},"name":"Blue Bottle Coffee Co"} +,{"_id":{"$oid":"55cba2476c522cafdb05773e"},"location":{"coordinates":[-73.978859,40.7580598],"type":"Point"},"name":"Blue Bottle Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb05773f"},"location":{"coordinates":[-74.0058154,40.714299],"type":"Point"},"name":"Potbelly Sandwich Works"} +,{"_id":{"$oid":"55cba2476c522cafdb057740"},"location":{"coordinates":[-73.98468919999999,40.7491101],"type":"Point"},"name":"Potbelly Sandwich Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb057741"},"location":{"coordinates":[-73.84303369999999,40.71971569999999],"type":"Point"},"name":"Bareburger"} +,{"_id":{"$oid":"55cba2476c522cafdb057742"},"location":{"coordinates":[-73.97609500000002,40.76417],"type":"Point"},"name":"Betony"} +,{"_id":{"$oid":"55cba2476c522cafdb057743"},"location":{"coordinates":[-73.9852861,40.7507196],"type":"Point"},"name":"Jerusalem Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057744"},"location":{"coordinates":[-73.98863399999999,40.644023],"type":"Point"},"name":"Zaragoza Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057745"},"location":{"coordinates":[-73.96660829999999,40.7579643],"type":"Point"},"name":"Angelo'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb057746"},"location":{"coordinates":[-73.98188499999999,40.595754],"type":"Point"},"name":"Avenue U Caffe"} +,{"_id":{"$oid":"55cba2476c522cafdb057747"},"location":{"coordinates":[-73.8504379,40.9036634],"type":"Point"},"name":"Peppinos Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb057748"},"location":{"coordinates":[-73.95050499999999,40.656733],"type":"Point"},"name":"Jing Lung Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057749"},"location":{"coordinates":[-73.80950159999999,40.72037359999999],"type":"Point"},"name":"Zen Fusion Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb05774a"},"location":{"coordinates":[-73.9321228,40.6519275],"type":"Point"},"name":"Wien Far Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb05774b"},"location":{"coordinates":[-73.9777786,40.7250221],"type":"Point"},"name":"The Wayland"} +,{"_id":{"$oid":"55cba2476c522cafdb05774c"},"location":{"coordinates":[-73.8374454,40.7858441],"type":"Point"},"name":"Bar 131"} +,{"_id":{"$oid":"55cba2476c522cafdb05774d"},"location":{"coordinates":[-73.8901762,40.7706366],"type":"Point"},"name":"Rocco'S Brick Oven Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb05774e"},"location":{"coordinates":[-73.7159257,40.73542399999999],"type":"Point"},"name":"Off The Hookah"} +,{"_id":{"$oid":"55cba2476c522cafdb05774f"},"location":{"coordinates":[-73.9796016,40.6781091],"type":"Point"},"name":"The V Spot"} +,{"_id":{"$oid":"55cba2476c522cafdb057750"},"location":{"coordinates":[-73.985666,40.669171],"type":"Point"},"name":"Empire Express Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057751"},"location":{"coordinates":[-73.9927832,40.7226197],"type":"Point"},"name":"Cata"} +,{"_id":{"$oid":"55cba2476c522cafdb057752"},"location":{"coordinates":[-73.8747611,40.7353074],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb057753"},"location":{"coordinates":[-73.869607,40.7336999],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb057754"},"location":{"coordinates":[-73.862937,40.7301054],"type":"Point"},"name":"Dunkin' Donuts/Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb057755"},"location":{"coordinates":[-73.8706606,40.7342757],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb057756"},"location":{"coordinates":[-74.00206899999999,40.75112300000001],"type":"Point"},"name":"Gastromarket"} +,{"_id":{"$oid":"55cba2476c522cafdb057757"},"location":{"coordinates":[-73.9566536,40.7125087],"type":"Point"},"name":"Full Circle Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb057758"},"location":{"coordinates":[-73.968071,40.757405],"type":"Point"},"name":"The Kati Roll Company"} +,{"_id":{"$oid":"55cba2476c522cafdb057759"},"location":{"coordinates":[-73.9976602,40.7326132],"type":"Point"},"name":"Amelie"} +,{"_id":{"$oid":"55cba2476c522cafdb05775a"},"location":{"coordinates":[-74.0165978,40.6393627],"type":"Point"},"name":"Uncle Louie G And Cupcake Stand"} +,{"_id":{"$oid":"55cba2476c522cafdb05775b"},"location":{"coordinates":[-73.9370314,40.8492494],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb05775c"},"location":{"coordinates":[-74.23888149999999,40.5221791],"type":"Point"},"name":"Muscle Maker Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb05775d"},"location":{"coordinates":[-73.98181029999999,40.5948904],"type":"Point"},"name":"The Lights Of Baku"} +,{"_id":{"$oid":"55cba2476c522cafdb05775e"},"location":{"coordinates":[-73.96284100000001,40.5770275],"type":"Point"},"name":"Oleandr Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05775f"},"location":{"coordinates":[-73.8328389,40.6729864],"type":"Point"},"name":"Portable Bar 4 \u0026 5"} +,{"_id":{"$oid":"55cba2476c522cafdb057760"},"location":{"coordinates":[-73.900762,40.863732],"type":"Point"},"name":"Tulcingo Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb057761"},"location":{"coordinates":[-73.982109,40.7802499],"type":"Point"},"name":"Cafe Margot Patisserie"} +,{"_id":{"$oid":"55cba2476c522cafdb057762"},"location":{"coordinates":[-73.7219188,40.7251409],"type":"Point"},"name":"Chiqui Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057763"},"location":{"coordinates":[-74.004144,40.730752],"type":"Point"},"name":"Rafele"} +,{"_id":{"$oid":"55cba2476c522cafdb057764"},"location":{"coordinates":[-73.94393699999999,40.6803219],"type":"Point"},"name":"Little Caesars"} +,{"_id":{"$oid":"55cba2476c522cafdb057765"},"location":{"coordinates":[-74.01730979999999,40.7054986],"type":"Point"},"name":"The Ritz Carlton New York Battery Park"} +,{"_id":{"$oid":"55cba2476c522cafdb057766"},"location":{"coordinates":[-74.01730979999999,40.7054986],"type":"Point"},"name":"The Ritz Carlton New York Battery Park"} +,{"_id":{"$oid":"55cba2476c522cafdb057767"},"location":{"coordinates":[-73.993724,40.7455179],"type":"Point"},"name":"Rare View Rooftop"} +,{"_id":{"$oid":"55cba2476c522cafdb057768"},"location":{"coordinates":[-73.96003929999999,40.7197595],"type":"Point"},"name":"Cafe Mogador"} +,{"_id":{"$oid":"55cba2476c522cafdb057769"},"location":{"coordinates":[-73.9174317,40.8064963],"type":"Point"},"name":"Estilo De Nutricion"} +,{"_id":{"$oid":"55cba2476c522cafdb05776a"},"location":{"coordinates":[-73.98899,40.739404],"type":"Point"},"name":"Almayass"} +,{"_id":{"$oid":"55cba2476c522cafdb05776b"},"location":{"coordinates":[-73.90213760000002,40.6680897],"type":"Point"},"name":"Little Caesars"} +,{"_id":{"$oid":"55cba2476c522cafdb05776c"},"location":{"coordinates":[-73.945756,40.621815],"type":"Point"},"name":"Crisp"} +,{"_id":{"$oid":"55cba2476c522cafdb05776d"},"location":{"coordinates":[-73.8577067,40.6924062],"type":"Point"},"name":"Bagel Bin"} +,{"_id":{"$oid":"55cba2476c522cafdb05776e"},"location":{"coordinates":[-73.9558168,40.7126028],"type":"Point"},"name":"St Mazie"} +,{"_id":{"$oid":"55cba2476c522cafdb05776f"},"location":{"coordinates":[-73.9948498,40.6148077],"type":"Point"},"name":"Wasabi Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057770"},"location":{"coordinates":[-73.97041899999999,40.795947],"type":"Point"},"name":"16 Handles"} +,{"_id":{"$oid":"55cba2476c522cafdb057771"},"location":{"coordinates":[-73.9054854,40.8794154],"type":"Point"},"name":"Pioneer Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057772"},"location":{"coordinates":[-73.9584649,40.8096251],"type":"Point"},"name":"Panini D Parma"} +,{"_id":{"$oid":"55cba2476c522cafdb057773"},"location":{"coordinates":[-73.9852557,40.7189729],"type":"Point"},"name":"Yunnan Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb057774"},"location":{"coordinates":[-73.9998839,40.7163214],"type":"Point"},"name":"Nam Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057775"},"location":{"coordinates":[-73.997141,40.717349],"type":"Point"},"name":"102 Noodles Town Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057776"},"location":{"coordinates":[-73.93772710000002,40.74283339999999],"type":"Point"},"name":"Mike'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb057777"},"location":{"coordinates":[-74.003741,40.725148],"type":"Point"},"name":"The Frog'S Crown Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb057778"},"location":{"coordinates":[-73.9827037,40.7684141],"type":"Point"},"name":"On Tap"} +,{"_id":{"$oid":"55cba2476c522cafdb057779"},"location":{"coordinates":[-73.9390916,40.7995179],"type":"Point"},"name":"Yankee'S Sk Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05777a"},"location":{"coordinates":[-73.76532689999999,40.6815706],"type":"Point"},"name":"Ocean Side Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05777b"},"location":{"coordinates":[-73.989908,40.761685],"type":"Point"},"name":"Amarone Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05777c"},"location":{"coordinates":[-73.9525362,40.8230441],"type":"Point"},"name":"Silver Palace"} +,{"_id":{"$oid":"55cba2476c522cafdb05777d"},"location":{"coordinates":[-73.9865514,40.7670877],"type":"Point"},"name":"Kilo"} +,{"_id":{"$oid":"55cba2476c522cafdb05777e"},"location":{"coordinates":[-73.975841,40.748356],"type":"Point"},"name":"Hiroshi Japanese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05777f"},"location":{"coordinates":[-73.89621,40.737447],"type":"Point"},"name":"Luke Kellys"} +,{"_id":{"$oid":"55cba2476c522cafdb057780"},"location":{"coordinates":[-73.955193,40.776654],"type":"Point"},"name":"Coffee Bean Tea \u0026 Leaf"} +,{"_id":{"$oid":"55cba2476c522cafdb057781"},"location":{"coordinates":[-73.7168773,40.7442436],"type":"Point"},"name":"Cheung Khei Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057782"},"location":{"coordinates":[-73.9262469,40.6127157],"type":"Point"},"name":"Mandarin House"} +,{"_id":{"$oid":"55cba2476c522cafdb057783"},"location":{"coordinates":[-73.9498881,40.6766113],"type":"Point"},"name":"Chop Chop Grub Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb057784"},"location":{"coordinates":[-74.10986799999999,40.6349055],"type":"Point"},"name":"Island Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb057785"},"location":{"coordinates":[-90.36698349999999,38.74246230000001],"type":"Point"},"name":"Fix Coffee \u0026 Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb057786"},"location":{"coordinates":[-74.08736209999999,40.6377161],"type":"Point"},"name":"Famous New York Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb057787"},"location":{"coordinates":[-74.1055512,40.6179186],"type":"Point"},"name":"The Lake Club"} +,{"_id":{"$oid":"55cba2476c522cafdb057788"},"location":{"coordinates":[-73.98779329999999,40.5981367],"type":"Point"},"name":"L And Z Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb057789"},"location":{"coordinates":[-73.9196805,40.7412402],"type":"Point"},"name":"Juventud Salud Y Vida (Hebalife)"} +,{"_id":{"$oid":"55cba2476c522cafdb05778a"},"location":{"coordinates":[-73.99004579999999,40.7593023],"type":"Point"},"name":"New York Beer Company"} +,{"_id":{"$oid":"55cba2476c522cafdb05778b"},"location":{"coordinates":[-73.877326,40.760366],"type":"Point"},"name":"La Nueva Colombia Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb05778c"},"location":{"coordinates":[-73.9572049,40.6737859],"type":"Point"},"name":"Little Zelda"} +,{"_id":{"$oid":"55cba2476c522cafdb05778d"},"location":{"coordinates":[-73.876892,40.84037],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb05778e"},"location":{"coordinates":[-74.15034229999999,40.5510232],"type":"Point"},"name":"La Iguana Azul"} +,{"_id":{"$oid":"55cba2476c522cafdb05778f"},"location":{"coordinates":[-73.990678,40.757924],"type":"Point"},"name":"Mike'S Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb057790"},"location":{"coordinates":[-73.8706606,40.7342757],"type":"Point"},"name":"Bocboc Chicken Delicious"} +,{"_id":{"$oid":"55cba2476c522cafdb057791"},"location":{"coordinates":[-73.987107,40.667757],"type":"Point"},"name":"Skylark"} +,{"_id":{"$oid":"55cba2476c522cafdb057792"},"location":{"coordinates":[-73.8194887,40.702271],"type":"Point"},"name":"2 Palmitas Mexican Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb057793"},"location":{"coordinates":[-73.84613139999999,40.8703854],"type":"Point"},"name":"Nick'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb057794"},"location":{"coordinates":[-73.9886647,40.7609205],"type":"Point"},"name":"Haven Rooftop / Sanctuary Hotel"} +,{"_id":{"$oid":"55cba2476c522cafdb057795"},"location":{"coordinates":[-74.235526,40.5221813],"type":"Point"},"name":"Ziototo Restaurante \u0026 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb057796"},"location":{"coordinates":[-73.97324569999999,40.78460949999999],"type":"Point"},"name":"Matsu Japanese Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb057797"},"location":{"coordinates":[-73.972285,40.756056],"type":"Point"},"name":"W New York Banquet Kitchen And Cafeteria"} +,{"_id":{"$oid":"55cba2476c522cafdb057798"},"location":{"coordinates":[-73.9480495,40.6398755],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb057799"},"location":{"coordinates":[-73.9865052,40.7297781],"type":"Point"},"name":"Nicoletta"} +,{"_id":{"$oid":"55cba2476c522cafdb05779a"},"location":{"coordinates":[-73.9759584,40.7653143],"type":"Point"},"name":"The Ritz-Carlton Hotel"} +,{"_id":{"$oid":"55cba2476c522cafdb05779b"},"location":{"coordinates":[-73.936708,40.8140894],"type":"Point"},"name":"New King Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb05779c"},"location":{"coordinates":[-73.9759584,40.7653143],"type":"Point"},"name":"The Big Apple (Ritz Carlton Hotel Employee Cafeteria)"} +,{"_id":{"$oid":"55cba2476c522cafdb05779d"},"location":{"coordinates":[-73.9938174,40.7150098],"type":"Point"},"name":"Food World Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05779e"},"location":{"coordinates":[-73.9759584,40.7653143],"type":"Point"},"name":"The Ritz-Carlton Pastry Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb05779f"},"location":{"coordinates":[-73.9945576,40.7172728],"type":"Point"},"name":"C \u0026 L Dumpling House"} +,{"_id":{"$oid":"55cba2476c522cafdb0577a0"},"location":{"coordinates":[-73.8956877,40.7370431],"type":"Point"},"name":"69 Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb0577a1"},"location":{"coordinates":[-73.84317039999999,40.6850532],"type":"Point"},"name":"Uncle Louie"} +,{"_id":{"$oid":"55cba2476c522cafdb0577a2"},"location":{"coordinates":[-73.943071,40.790294],"type":"Point"},"name":"Milk Burger Express"} +,{"_id":{"$oid":"55cba2476c522cafdb0577a3"},"location":{"coordinates":[-73.94842729999999,40.8286954],"type":"Point"},"name":"Harlem Public Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0577a4"},"location":{"coordinates":[-73.9988493,40.73848539999999],"type":"Point"},"name":"El Paraiso"} +,{"_id":{"$oid":"55cba2476c522cafdb0577a5"},"location":{"coordinates":[-73.8589926,40.8336773],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0577a6"},"location":{"coordinates":[-73.96783409999999,40.6795878],"type":"Point"},"name":"Inaka"} +,{"_id":{"$oid":"55cba2476c522cafdb0577a7"},"location":{"coordinates":[-73.9626122,40.7128921],"type":"Point"},"name":"Potlikker"} +,{"_id":{"$oid":"55cba2476c522cafdb0577a8"},"location":{"coordinates":[-73.9775928,40.6870841],"type":"Point"},"name":"La Caye Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0577a9"},"location":{"coordinates":[-73.95007729999999,40.7060492],"type":"Point"},"name":"China Express"} +,{"_id":{"$oid":"55cba2476c522cafdb0577aa"},"location":{"coordinates":[-73.9616957,40.716755],"type":"Point"},"name":"Egg"} +,{"_id":{"$oid":"55cba2476c522cafdb0577ab"},"location":{"coordinates":[-73.9981532,40.756804],"type":"Point"},"name":"Clyde Frazier'S Wine And Dine"} +,{"_id":{"$oid":"55cba2476c522cafdb0577ac"},"location":{"coordinates":[-73.98805639999999,40.72024469999999],"type":"Point"},"name":"Mikey'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0577ad"},"location":{"coordinates":[-73.9514961,40.6362149],"type":"Point"},"name":"Mei Jung Mei Chinese Resaturant"} +,{"_id":{"$oid":"55cba2476c522cafdb0577ae"},"location":{"coordinates":[-73.9707298,40.7547209],"type":"Point"},"name":"Da Noi"} +,{"_id":{"$oid":"55cba2476c522cafdb0577af"},"location":{"coordinates":[-73.91333589999999,40.765482],"type":"Point"},"name":"Chubby Burgers \u0026 Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb0577b0"},"location":{"coordinates":[-74.0757603,40.6394573],"type":"Point"},"name":"120 Bay Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0577b1"},"location":{"coordinates":[-73.94948529999999,40.678037],"type":"Point"},"name":"Richol Cafe \u0026 Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0577b2"},"location":{"coordinates":[-73.95667949999999,40.6667997],"type":"Point"},"name":"Skylight Cafe (Medgar Evers College)"} +,{"_id":{"$oid":"55cba2476c522cafdb0577b3"},"location":{"coordinates":[-73.92431049999999,40.7565257],"type":"Point"},"name":"East Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb0577b4"},"location":{"coordinates":[-73.9594469,40.6875982],"type":"Point"},"name":"Clementine Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0577b5"},"location":{"coordinates":[-73.814522,40.690577],"type":"Point"},"name":"Shisha Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb0577b6"},"location":{"coordinates":[-73.82919989999999,40.6934876],"type":"Point"},"name":"Suhna Punjab"} +,{"_id":{"$oid":"55cba2476c522cafdb0577b7"},"location":{"coordinates":[-73.99578799999999,40.679373],"type":"Point"},"name":"Momofuku Milk Bar Cg"} +,{"_id":{"$oid":"55cba2476c522cafdb0577b8"},"location":{"coordinates":[-73.9174383,40.6987514],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0577b9"},"location":{"coordinates":[-73.905896,40.691425],"type":"Point"},"name":"Cana Y Cafe Bar Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0577ba"},"location":{"coordinates":[-74.0076014,40.6371052],"type":"Point"},"name":"805 Zheng Yuan Bao Gourmet"} +,{"_id":{"$oid":"55cba2476c522cafdb0577bb"},"location":{"coordinates":[-73.78205799999999,40.694662],"type":"Point"},"name":"A Plate Of Soul"} +,{"_id":{"$oid":"55cba2476c522cafdb0577bc"},"location":{"coordinates":[-73.97964999999999,40.6771695],"type":"Point"},"name":"The Burger Bistro"} +,{"_id":{"$oid":"55cba2476c522cafdb0577bd"},"location":{"coordinates":[-73.999026,40.7295],"type":"Point"},"name":"Go Go Curry"} +,{"_id":{"$oid":"55cba2476c522cafdb0577be"},"location":{"coordinates":[-73.7785112,40.6795704],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb0577bf"},"location":{"coordinates":[-73.98142800000001,40.6747119],"type":"Point"},"name":"Beauty Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0577c0"},"location":{"coordinates":[-73.9275974,40.8071592],"type":"Point"},"name":"Ceetay"} +,{"_id":{"$oid":"55cba2476c522cafdb0577c1"},"location":{"coordinates":[-74.0015832,40.6431793],"type":"Point"},"name":"Famous Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb0577c2"},"location":{"coordinates":[-74.1077385,40.6453928],"type":"Point"},"name":"Blue"} +,{"_id":{"$oid":"55cba2476c522cafdb0577c3"},"location":{"coordinates":[-73.88596290000001,40.8660271],"type":"Point"},"name":"La Rola Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0577c4"},"location":{"coordinates":[-73.91721199999999,40.841435],"type":"Point"},"name":"El Patron Nightclub Cabaret-Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0577c5"},"location":{"coordinates":[-73.98427099999999,40.609936],"type":"Point"},"name":"Dumpling King Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0577c6"},"location":{"coordinates":[-73.99925689999999,40.6749476],"type":"Point"},"name":"The Treats Truck Stop"} +,{"_id":{"$oid":"55cba2476c522cafdb0577c7"},"location":{"coordinates":[-73.7822056,40.6434612],"type":"Point"},"name":"Admirals Club Conc C"} +,{"_id":{"$oid":"55cba2476c522cafdb0577c8"},"location":{"coordinates":[-73.83196819999999,40.75950539999999],"type":"Point"},"name":"Iris Tea \u0026 Bakery/ Quickly"} +,{"_id":{"$oid":"55cba2476c522cafdb0577c9"},"location":{"coordinates":[-73.9825259,40.73508899999999],"type":"Point"},"name":"Gramercy Park Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0577ca"},"location":{"coordinates":[-73.88413930000002,40.7554166],"type":"Point"},"name":"La Perrada De Chalo"} +,{"_id":{"$oid":"55cba2476c522cafdb0577cb"},"location":{"coordinates":[-73.93036529999999,40.6187065],"type":"Point"},"name":"Murette'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0577cc"},"location":{"coordinates":[-73.9508029,40.65953700000001],"type":"Point"},"name":"Perfect Touch Cuisine Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb0577cd"},"location":{"coordinates":[-73.973908,40.5945279],"type":"Point"},"name":"Cafe Kafeneja Jone Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb0577ce"},"location":{"coordinates":[-74.0062401,40.7397546],"type":"Point"},"name":"Fay Da Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0577cf"},"location":{"coordinates":[-73.9405519,40.8062629],"type":"Point"},"name":"Jahlookova"} +,{"_id":{"$oid":"55cba2476c522cafdb0577d0"},"location":{"coordinates":[-73.9922178,40.7579922],"type":"Point"},"name":"Merci Market"} +,{"_id":{"$oid":"55cba2476c522cafdb0577d1"},"location":{"coordinates":[-73.819531,40.67591300000001],"type":"Point"},"name":"Meat Veggies \u0026 Pasta Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0577d2"},"location":{"coordinates":[-73.98931019999999,40.7440592],"type":"Point"},"name":"Toshi'S Living Room"} +,{"_id":{"$oid":"55cba2476c522cafdb0577d3"},"location":{"coordinates":[-73.9675441,40.8009369],"type":"Point"},"name":"Five Lamps Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb0577d4"},"location":{"coordinates":[-73.918047,40.7653208],"type":"Point"},"name":"Max"} +,{"_id":{"$oid":"55cba2476c522cafdb0577d5"},"location":{"coordinates":[-73.8093635,40.7050912],"type":"Point"},"name":"Bella'S Place"} +,{"_id":{"$oid":"55cba2476c522cafdb0577d6"},"location":{"coordinates":[-73.8549994,40.8352516],"type":"Point"},"name":"Mehman Sweets Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0577d7"},"location":{"coordinates":[-73.832828,40.759771],"type":"Point"},"name":"Liang'S Kitchen Flushing Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0577d8"},"location":{"coordinates":[-73.860018,40.752453],"type":"Point"},"name":"Stephanie'S Mexican Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0577d9"},"location":{"coordinates":[-73.954548,40.7745379],"type":"Point"},"name":"Jaiya Thai \u0026 Oriental Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0577da"},"location":{"coordinates":[-73.9831015,40.7228305],"type":"Point"},"name":"China Wok"} +,{"_id":{"$oid":"55cba2476c522cafdb0577db"},"location":{"coordinates":[-73.8194803,40.5848875],"type":"Point"},"name":"Xing Xing Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0577dc"},"location":{"coordinates":[-73.9400398,40.7514885],"type":"Point"},"name":"Packard Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0577dd"},"location":{"coordinates":[-73.763352,40.674456],"type":"Point"},"name":"Springfield \u0026 La Bari Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb0577de"},"location":{"coordinates":[-73.73742399999999,40.718094],"type":"Point"},"name":"Dee'S Catering Services"} +,{"_id":{"$oid":"55cba2476c522cafdb0577df"},"location":{"coordinates":[-73.8753401,40.6724742],"type":"Point"},"name":"New Ming Fat Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0577e0"},"location":{"coordinates":[-73.98581899999999,40.73470500000001],"type":"Point"},"name":"Jack'S Sliders And Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb0577e1"},"location":{"coordinates":[-73.7315557,40.7600939],"type":"Point"},"name":"Noodle House"} +,{"_id":{"$oid":"55cba2476c522cafdb0577e2"},"location":{"coordinates":[-73.98527659999999,40.6054805],"type":"Point"},"name":"Del Rio Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb0577e3"},"location":{"coordinates":[-74.0212854,40.6334887],"type":"Point"},"name":"Bahary Fish Market"} +,{"_id":{"$oid":"55cba2476c522cafdb0577e4"},"location":{"coordinates":[-73.9111954,40.8615124],"type":"Point"},"name":"Bibbies Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0577e5"},"location":{"coordinates":[-73.785758,40.752324],"type":"Point"},"name":"The Tin House Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb0577e6"},"location":{"coordinates":[-74.2150624,40.5217699],"type":"Point"},"name":"Ambrosino'S Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb0577e7"},"location":{"coordinates":[-73.890768,40.85709440000001],"type":"Point"},"name":"Bruce'S Fish And Chips"} +,{"_id":{"$oid":"55cba2476c522cafdb0577e8"},"location":{"coordinates":[-73.981231,40.7822006],"type":"Point"},"name":"Coffee Bean Tea \u0026 Leaf"} +,{"_id":{"$oid":"55cba2476c522cafdb0577e9"},"location":{"coordinates":[-73.9892179,40.72594],"type":"Point"},"name":"Gelato Ti Amo"} +,{"_id":{"$oid":"55cba2476c522cafdb0577ea"},"location":{"coordinates":[-73.80324259999999,40.6745349],"type":"Point"},"name":"Rockaway Roti Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb0577eb"},"location":{"coordinates":[-73.93660899999999,40.710856],"type":"Point"},"name":"The Paper Box"} +,{"_id":{"$oid":"55cba2476c522cafdb0577ec"},"location":{"coordinates":[-73.95929799999999,40.815009],"type":"Point"},"name":"Peking Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb0577ed"},"location":{"coordinates":[-74.07497699999999,40.62948799999999],"type":"Point"},"name":"House Of Billiards"} +,{"_id":{"$oid":"55cba2476c522cafdb0577ee"},"location":{"coordinates":[-73.9130582,40.7658627],"type":"Point"},"name":"Khan Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb0577ef"},"location":{"coordinates":[-73.8933266,40.8159746],"type":"Point"},"name":"Platinum Pleasures Of Ny"} +,{"_id":{"$oid":"55cba2476c522cafdb0577f0"},"location":{"coordinates":[-73.8733474,40.8785897],"type":"Point"},"name":"Kennedy'S Chicken And Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0577f1"},"location":{"coordinates":[-73.850354,40.710562],"type":"Point"},"name":"Taci'S Authentic Turkish Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0577f2"},"location":{"coordinates":[-73.9892928,40.7626829],"type":"Point"},"name":"Mickey Spillane'S Hell'S Kitchen Nyc"} +,{"_id":{"$oid":"55cba2476c522cafdb0577f3"},"location":{"coordinates":[-73.8460901,40.7821462],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0577f4"},"location":{"coordinates":[-73.9907857,40.7279316],"type":"Point"},"name":"The Standard East Village"} +,{"_id":{"$oid":"55cba2476c522cafdb0577f5"},"location":{"coordinates":[-73.9535788,40.7449626],"type":"Point"},"name":"Corner Bistro"} +,{"_id":{"$oid":"55cba2476c522cafdb0577f6"},"location":{"coordinates":[-73.8592362,40.6923007],"type":"Point"},"name":"Pan Ugo Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0577f7"},"location":{"coordinates":[-73.9945365,40.7233661],"type":"Point"},"name":"The Juice Press"} +,{"_id":{"$oid":"55cba2476c522cafdb0577f8"},"location":{"coordinates":[-73.96623989999999,40.6868385],"type":"Point"},"name":"Primrose Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0577f9"},"location":{"coordinates":[-73.9476679,40.636058],"type":"Point"},"name":"Ambiance Express"} +,{"_id":{"$oid":"55cba2476c522cafdb0577fa"},"location":{"coordinates":[-73.95421569999999,40.7092105],"type":"Point"},"name":"Knife"} +,{"_id":{"$oid":"55cba2476c522cafdb0577fb"},"location":{"coordinates":[-74.0115663,40.6355417],"type":"Point"},"name":"Superstar Family Fun Center Inc"} +,{"_id":{"$oid":"55cba2476c522cafdb0577fc"},"location":{"coordinates":[-73.93948920000001,40.7072521],"type":"Point"},"name":"Post No Bills"} +,{"_id":{"$oid":"55cba2476c522cafdb0577fd"},"location":{"coordinates":[-73.95808199999999,40.7220977],"type":"Point"},"name":"Wythe Hotel Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0577fe"},"location":{"coordinates":[-73.8510002,40.8753384],"type":"Point"},"name":"King Barka Jamaican"} +,{"_id":{"$oid":"55cba2476c522cafdb0577ff"},"location":{"coordinates":[-73.95808199999999,40.7220977],"type":"Point"},"name":"Reynards"} +,{"_id":{"$oid":"55cba2476c522cafdb057800"},"location":{"coordinates":[-73.9233907,40.7401408],"type":"Point"},"name":"La Pollera Colorada Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057801"},"location":{"coordinates":[-73.99150089999999,40.7187868],"type":"Point"},"name":"Ghost"} +,{"_id":{"$oid":"55cba2476c522cafdb057802"},"location":{"coordinates":[-74.20058519999999,40.5257248],"type":"Point"},"name":"Fratelli Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb057803"},"location":{"coordinates":[-73.999427,40.743507],"type":"Point"},"name":"Intermezzo"} +,{"_id":{"$oid":"55cba2476c522cafdb057804"},"location":{"coordinates":[-73.8449909,40.684289],"type":"Point"},"name":"Elimatt Galleria Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb057805"},"location":{"coordinates":[-73.9862536,40.7585799],"type":"Point"},"name":"Travel Traders (Melita Pastries)"} +,{"_id":{"$oid":"55cba2476c522cafdb057806"},"location":{"coordinates":[-73.949001,40.781107],"type":"Point"},"name":"La Tarte Flambee"} +,{"_id":{"$oid":"55cba2476c522cafdb057807"},"location":{"coordinates":[-73.8290939,40.759362],"type":"Point"},"name":"Tea Twitter"} +,{"_id":{"$oid":"55cba2476c522cafdb057808"},"location":{"coordinates":[-73.989901,40.718227],"type":"Point"},"name":"Tache Artisan Chocolate"} +,{"_id":{"$oid":"55cba2476c522cafdb057809"},"location":{"coordinates":[-74.0795864,40.6246078],"type":"Point"},"name":"Frank'S Bay Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05780a"},"location":{"coordinates":[-74.0012622,40.7304695],"type":"Point"},"name":"Perla"} +,{"_id":{"$oid":"55cba2476c522cafdb05780b"},"location":{"coordinates":[-73.9721629,40.7919587],"type":"Point"},"name":"New Asia"} +,{"_id":{"$oid":"55cba2476c522cafdb05780c"},"location":{"coordinates":[-73.9884716,40.69277659999999],"type":"Point"},"name":"Panera Bread"} +,{"_id":{"$oid":"55cba2476c522cafdb05780d"},"location":{"coordinates":[-73.95627499999999,40.771083],"type":"Point"},"name":"Voila 76"} +,{"_id":{"$oid":"55cba2476c522cafdb05780e"},"location":{"coordinates":[-73.93794,40.797258],"type":"Point"},"name":"El Nuevo Sandy Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05780f"},"location":{"coordinates":[-74.0218467,40.6319768],"type":"Point"},"name":"Yemen Alsaed Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057810"},"location":{"coordinates":[-73.99703819999999,40.7262028],"type":"Point"},"name":"Gonzalez Y Gonzalez"} +,{"_id":{"$oid":"55cba2476c522cafdb057811"},"location":{"coordinates":[-73.9752697,40.7905977],"type":"Point"},"name":"Candle Cafe West"} +,{"_id":{"$oid":"55cba2476c522cafdb057812"},"location":{"coordinates":[-73.95591399999999,40.7662842],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb057813"},"location":{"coordinates":[-74.013987,40.708573],"type":"Point"},"name":"Boonrasa Thai Food"} +,{"_id":{"$oid":"55cba2476c522cafdb057814"},"location":{"coordinates":[-74.009681,40.720908],"type":"Point"},"name":"Kaffe 1668"} +,{"_id":{"$oid":"55cba2476c522cafdb057815"},"location":{"coordinates":[-73.87384899999999,40.7426109],"type":"Point"},"name":"Tropic Pollo"} +,{"_id":{"$oid":"55cba2476c522cafdb057816"},"location":{"coordinates":[-73.97882400000002,40.596593],"type":"Point"},"name":"U Bo Sing"} +,{"_id":{"$oid":"55cba2476c522cafdb057817"},"location":{"coordinates":[-73.995761,40.687798],"type":"Point"},"name":"La Vara"} +,{"_id":{"$oid":"55cba2476c522cafdb057818"},"location":{"coordinates":[-73.995976,40.723919],"type":"Point"},"name":"Pravda"} +,{"_id":{"$oid":"55cba2476c522cafdb057819"},"location":{"coordinates":[-73.8317459,40.715025],"type":"Point"},"name":"New East Ocean Palace"} +,{"_id":{"$oid":"55cba2476c522cafdb05781a"},"location":{"coordinates":[-73.9030552,40.7454672],"type":"Point"},"name":"Metro Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb05781b"},"location":{"coordinates":[-73.8769362,40.7258631],"type":"Point"},"name":"Yee Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb05781c"},"location":{"coordinates":[-73.9980727,40.73305800000001],"type":"Point"},"name":"Sticky'S Finger Joint #1"} +,{"_id":{"$oid":"55cba2476c522cafdb05781d"},"location":{"coordinates":[-73.82903499999999,40.7622799],"type":"Point"},"name":"Little Sheep Mongolian Hot Pot"} +,{"_id":{"$oid":"55cba2476c522cafdb05781e"},"location":{"coordinates":[-73.985097,40.726465],"type":"Point"},"name":"Tinks Bake House"} +,{"_id":{"$oid":"55cba2476c522cafdb05781f"},"location":{"coordinates":[-73.967446,40.680689],"type":"Point"},"name":"Beny'S Delice"} +,{"_id":{"$oid":"55cba2476c522cafdb057820"},"location":{"coordinates":[-73.90675530000001,40.6901581],"type":"Point"},"name":"Empire Taco"} +,{"_id":{"$oid":"55cba2476c522cafdb057821"},"location":{"coordinates":[-73.7521106,40.6796785],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb057822"},"location":{"coordinates":[-73.88973,40.818964],"type":"Point"},"name":"Pablo'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb057823"},"location":{"coordinates":[-73.918742,40.818928],"type":"Point"},"name":"Kennedy Chicken \u0026 Sandwiches"} +,{"_id":{"$oid":"55cba2476c522cafdb057824"},"location":{"coordinates":[-73.9819129,40.77151449999999],"type":"Point"},"name":"The Smith"} +,{"_id":{"$oid":"55cba2476c522cafdb057825"},"location":{"coordinates":[-73.9415373,40.7037435],"type":"Point"},"name":"La Cocina Ii Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057826"},"location":{"coordinates":[-73.794084,40.6860787],"type":"Point"},"name":"Ebenezer Pizzeria Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057827"},"location":{"coordinates":[-73.964236,40.5766992],"type":"Point"},"name":"Ocean View Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057828"},"location":{"coordinates":[-73.9808238,40.6055108],"type":"Point"},"name":"Mekong Brooklyn"} +,{"_id":{"$oid":"55cba2476c522cafdb057829"},"location":{"coordinates":[-73.9272984,40.8338973],"type":"Point"},"name":"Dong King"} +,{"_id":{"$oid":"55cba2476c522cafdb05782a"},"location":{"coordinates":[-73.9839689,40.7520904],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb05782b"},"location":{"coordinates":[-73.9128441,40.7626524],"type":"Point"},"name":"De Mole Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05782c"},"location":{"coordinates":[-74.001361,40.741901],"type":"Point"},"name":"Koffeecake Corner"} +,{"_id":{"$oid":"55cba2476c522cafdb05782d"},"location":{"coordinates":[-73.9260571,40.7006192],"type":"Point"},"name":"Vivir En Abundancia"} +,{"_id":{"$oid":"55cba2476c522cafdb05782e"},"location":{"coordinates":[-73.90889489999999,40.7608591],"type":"Point"},"name":"New Super China Pagoda"} +,{"_id":{"$oid":"55cba2476c522cafdb05782f"},"location":{"coordinates":[-73.992255,40.749712],"type":"Point"},"name":"Dunkin Donuts/Hudson Newsg"} +,{"_id":{"$oid":"55cba2476c522cafdb057830"},"location":{"coordinates":[-73.8637557,40.6915674],"type":"Point"},"name":"Salud Divina/Herbalife"} +,{"_id":{"$oid":"55cba2476c522cafdb057831"},"location":{"coordinates":[-73.992255,40.749712],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb057832"},"location":{"coordinates":[-73.992255,40.749712],"type":"Point"},"name":"Hudson News/Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb057833"},"location":{"coordinates":[-73.92202499999999,40.8135702],"type":"Point"},"name":"Foo Hing Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb057834"},"location":{"coordinates":[-73.9035379,40.8435923],"type":"Point"},"name":"Adaya African American Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057835"},"location":{"coordinates":[-73.7928033,40.7530189],"type":"Point"},"name":"Blazin Burgers \u0026 Rotisserie Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb057836"},"location":{"coordinates":[-73.9504201,40.7237146],"type":"Point"},"name":"Pizza Prince"} +,{"_id":{"$oid":"55cba2476c522cafdb057837"},"location":{"coordinates":[-74.011769,40.612476],"type":"Point"},"name":"Baby Olive"} +,{"_id":{"$oid":"55cba2476c522cafdb057838"},"location":{"coordinates":[-73.95669029999999,40.6733958],"type":"Point"},"name":"739 Franklin Bar \u0026 Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb057839"},"location":{"coordinates":[-73.99561430000001,40.690794],"type":"Point"},"name":"Chez Moi"} +,{"_id":{"$oid":"55cba2476c522cafdb05783a"},"location":{"coordinates":[-73.9829721,40.7423736],"type":"Point"},"name":"Kokum"} +,{"_id":{"$oid":"55cba2476c522cafdb05783b"},"location":{"coordinates":[-73.946028,40.8160858],"type":"Point"},"name":"Abyssinia Ethiopian Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05783c"},"location":{"coordinates":[-74.1633963,40.6071029],"type":"Point"},"name":"A \u0026 S Caterers"} +,{"_id":{"$oid":"55cba2476c522cafdb05783d"},"location":{"coordinates":[-73.8367602,40.5788594],"type":"Point"},"name":"Cuisine By Claudette"} +,{"_id":{"$oid":"55cba2476c522cafdb05783e"},"location":{"coordinates":[-73.8706606,40.7342757],"type":"Point"},"name":"Nathans Famous"} +,{"_id":{"$oid":"55cba2476c522cafdb05783f"},"location":{"coordinates":[-73.912498,40.755681],"type":"Point"},"name":"New Win Shing"} +,{"_id":{"$oid":"55cba2476c522cafdb057840"},"location":{"coordinates":[-73.9507181,40.6691162],"type":"Point"},"name":"Crown Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb057841"},"location":{"coordinates":[-73.92044899999999,40.76615],"type":"Point"},"name":"New York Bakery Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057842"},"location":{"coordinates":[-74.0074983,40.734147],"type":"Point"},"name":"Mojo Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb057843"},"location":{"coordinates":[-73.951216,40.775354],"type":"Point"},"name":"83 1/2"} +,{"_id":{"$oid":"55cba2476c522cafdb057844"},"location":{"coordinates":[-73.9378765,40.8382073],"type":"Point"},"name":"Pie Pie Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb057845"},"location":{"coordinates":[-73.9945212,40.6951214],"type":"Point"},"name":"Le Pain Quotidien"} +,{"_id":{"$oid":"55cba2476c522cafdb057846"},"location":{"coordinates":[-73.9913807,40.6705926],"type":"Point"},"name":"Lucey'S Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb057847"},"location":{"coordinates":[-73.90930589999999,40.7748021],"type":"Point"},"name":"Hinomaru Ramen"} +,{"_id":{"$oid":"55cba2476c522cafdb057848"},"location":{"coordinates":[-73.9599696,40.773843],"type":"Point"},"name":"Butterfield Express"} +,{"_id":{"$oid":"55cba2476c522cafdb057849"},"location":{"coordinates":[-73.99902589999999,40.6764673],"type":"Point"},"name":"Wing Hua 508"} +,{"_id":{"$oid":"55cba2476c522cafdb05784a"},"location":{"coordinates":[-77.667109,43.22342],"type":"Point"},"name":"French Cafe Gourmand"} +,{"_id":{"$oid":"55cba2476c522cafdb05784b"},"location":{"coordinates":[-73.9798807,40.5733586],"type":"Point"},"name":"Nathan'S"} +,{"_id":{"$oid":"55cba2476c522cafdb05784c"},"location":{"coordinates":[-73.97890629999999,40.7839916],"type":"Point"},"name":"Grill 212"} +,{"_id":{"$oid":"55cba2476c522cafdb05784d"},"location":{"coordinates":[-73.9579196,40.7137512],"type":"Point"},"name":"Miller'S Tavern Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05784e"},"location":{"coordinates":[-73.926361,40.819499],"type":"Point"},"name":"Capitol International"} +,{"_id":{"$oid":"55cba2476c522cafdb05784f"},"location":{"coordinates":[-73.9768727,40.6845666],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb057850"},"location":{"coordinates":[-73.81700900000001,40.707332],"type":"Point"},"name":"Los Bucaros"} +,{"_id":{"$oid":"55cba2476c522cafdb057851"},"location":{"coordinates":[-73.7652225,40.6816039],"type":"Point"},"name":"Little Caesars"} +,{"_id":{"$oid":"55cba2476c522cafdb057852"},"location":{"coordinates":[-73.9811505,40.6757664],"type":"Point"},"name":"Dizzy'S On 5Th"} +,{"_id":{"$oid":"55cba2476c522cafdb057853"},"location":{"coordinates":[-73.88671440000002,40.7016181],"type":"Point"},"name":"Happiness Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057854"},"location":{"coordinates":[-73.9615402,40.6253374],"type":"Point"},"name":"Ready To Roll"} +,{"_id":{"$oid":"55cba2476c522cafdb057855"},"location":{"coordinates":[-73.992255,40.749712],"type":"Point"},"name":"Chop-N-Toss Cafe Bar/Red Mango"} +,{"_id":{"$oid":"55cba2476c522cafdb057856"},"location":{"coordinates":[-73.795295,40.7100873],"type":"Point"},"name":"King Kabab"} +,{"_id":{"$oid":"55cba2476c522cafdb057857"},"location":{"coordinates":[-74.196348,40.513677],"type":"Point"},"name":"Lily Reds"} +,{"_id":{"$oid":"55cba2476c522cafdb057858"},"location":{"coordinates":[-73.780017,40.7577021],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb057859"},"location":{"coordinates":[-73.7703612,40.76283129999999],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb05785a"},"location":{"coordinates":[-73.8290069,40.8522129],"type":"Point"},"name":"Bar Pelham"} +,{"_id":{"$oid":"55cba2476c522cafdb05785b"},"location":{"coordinates":[-74.01370589999999,40.6422323],"type":"Point"},"name":"Dunkin Donuts/Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb05785c"},"location":{"coordinates":[-73.9462238,40.656571],"type":"Point"},"name":"Andy'S Cafeteria"} +,{"_id":{"$oid":"55cba2476c522cafdb05785d"},"location":{"coordinates":[-73.9844723,40.7514255],"type":"Point"},"name":"38Th Street Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb05785e"},"location":{"coordinates":[-73.9665921,40.686438],"type":"Point"},"name":"Aita Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05785f"},"location":{"coordinates":[-73.9819595,40.6661139],"type":"Point"},"name":"Red Hot Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb057860"},"location":{"coordinates":[-73.9099433,40.66571070000001],"type":"Point"},"name":"Tropical Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb057861"},"location":{"coordinates":[-73.94380070000001,40.7932722],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb057862"},"location":{"coordinates":[-73.953581,40.7826278],"type":"Point"},"name":"Saba'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb057863"},"location":{"coordinates":[-73.788966,40.7576359],"type":"Point"},"name":"Silk Hookah Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb057864"},"location":{"coordinates":[-73.952662,40.771813],"type":"Point"},"name":"Harvest Chinese \u0026Thai Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb057865"},"location":{"coordinates":[-73.988438,40.722135],"type":"Point"},"name":"Blue Ribbon Sushi Izakaya"} +,{"_id":{"$oid":"55cba2476c522cafdb057866"},"location":{"coordinates":[-73.9528732,40.7716597],"type":"Point"},"name":"East Side Bagel Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057867"},"location":{"coordinates":[-73.9824347,40.7578271],"type":"Point"},"name":"Simon Sips"} +,{"_id":{"$oid":"55cba2476c522cafdb057868"},"location":{"coordinates":[-73.8778753,40.7561346],"type":"Point"},"name":"La Montana Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb057869"},"location":{"coordinates":[-73.9526217,40.7512449],"type":"Point"},"name":"Con Edison/ The Learning Center"} +,{"_id":{"$oid":"55cba2476c522cafdb05786a"},"location":{"coordinates":[-73.9514435,40.7148944],"type":"Point"},"name":"Chimu"} +,{"_id":{"$oid":"55cba2476c522cafdb05786b"},"location":{"coordinates":[-73.9789507,40.7541212],"type":"Point"},"name":"Le Pain Quotidien"} +,{"_id":{"$oid":"55cba2476c522cafdb05786c"},"location":{"coordinates":[-73.9525395,40.57720279999999],"type":"Point"},"name":"Pomme Rouge"} +,{"_id":{"$oid":"55cba2476c522cafdb05786d"},"location":{"coordinates":[-73.92005449999999,40.6830278],"type":"Point"},"name":"Delhi Heights"} +,{"_id":{"$oid":"55cba2476c522cafdb05786e"},"location":{"coordinates":[-73.9185059,40.765794],"type":"Point"},"name":"Dominies"} +,{"_id":{"$oid":"55cba2476c522cafdb05786f"},"location":{"coordinates":[-73.7467024,40.6959944],"type":"Point"},"name":"Little Caesars"} +,{"_id":{"$oid":"55cba2476c522cafdb057870"},"location":{"coordinates":[-73.825195,40.8245212],"type":"Point"},"name":"Alfie'S Place"} +,{"_id":{"$oid":"55cba2476c522cafdb057871"},"location":{"coordinates":[-73.9104622,40.8373157],"type":"Point"},"name":"Taino Taste Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057872"},"location":{"coordinates":[-73.90676619999999,40.7793039],"type":"Point"},"name":"Con Edison - Astoria"} +,{"_id":{"$oid":"55cba2476c522cafdb057873"},"location":{"coordinates":[-73.941814,40.5999436],"type":"Point"},"name":"Popeyes Louisiana Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb057874"},"location":{"coordinates":[-73.942076,40.655657],"type":"Point"},"name":"Popeyes Louisiana Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb057875"},"location":{"coordinates":[-73.990219,40.718826],"type":"Point"},"name":"Grey Lady"} +,{"_id":{"$oid":"55cba2476c522cafdb057876"},"location":{"coordinates":[-74.0900595,40.58845],"type":"Point"},"name":"Paco'S"} +,{"_id":{"$oid":"55cba2476c522cafdb057877"},"location":{"coordinates":[-73.959553,40.697733],"type":"Point"},"name":"Aperion Production"} +,{"_id":{"$oid":"55cba2476c522cafdb057878"},"location":{"coordinates":[-73.9905512,40.7607674],"type":"Point"},"name":"Ai'S Sushi Japanese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057879"},"location":{"coordinates":[-73.9729681,40.693039],"type":"Point"},"name":"Lulu \u0026 Po"} +,{"_id":{"$oid":"55cba2476c522cafdb05787a"},"location":{"coordinates":[-73.9734647,40.5971009],"type":"Point"},"name":"2Fl"} +,{"_id":{"$oid":"55cba2476c522cafdb05787b"},"location":{"coordinates":[-73.8688188,40.6785931],"type":"Point"},"name":"Liberty Fresh Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05787c"},"location":{"coordinates":[-73.9068789,40.8538949],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb05787d"},"location":{"coordinates":[-73.961118,40.59397999999999],"type":"Point"},"name":"New Times Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05787e"},"location":{"coordinates":[-73.9583631,40.6813984],"type":"Point"},"name":"My Arena"} +,{"_id":{"$oid":"55cba2476c522cafdb05787f"},"location":{"coordinates":[-74.0144696,40.6408534],"type":"Point"},"name":"Taste Of China"} +,{"_id":{"$oid":"55cba2476c522cafdb057880"},"location":{"coordinates":[-73.89654019999999,40.6693466],"type":"Point"},"name":"Cupido'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057881"},"location":{"coordinates":[-74.0067722,40.7309367],"type":"Point"},"name":"Doma Na Rohu"} +,{"_id":{"$oid":"55cba2476c522cafdb057882"},"location":{"coordinates":[-73.9329806,40.8487357],"type":"Point"},"name":"181 St Caridad Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057883"},"location":{"coordinates":[-73.9515911,40.787327],"type":"Point"},"name":"The Guthrie Inn"} +,{"_id":{"$oid":"55cba2476c522cafdb057884"},"location":{"coordinates":[-73.9855374,40.7497401],"type":"Point"},"name":"The Liberty"} +,{"_id":{"$oid":"55cba2476c522cafdb057885"},"location":{"coordinates":[-73.9916243,40.7332675],"type":"Point"},"name":"Ribalta"} +,{"_id":{"$oid":"55cba2476c522cafdb057886"},"location":{"coordinates":[-73.8199001,40.8243721],"type":"Point"},"name":"China Wok"} +,{"_id":{"$oid":"55cba2476c522cafdb057887"},"location":{"coordinates":[-73.82976889999999,40.7572039],"type":"Point"},"name":"Won Bossam"} +,{"_id":{"$oid":"55cba2476c522cafdb057888"},"location":{"coordinates":[-73.91678560000001,40.8497096],"type":"Point"},"name":"My Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb057889"},"location":{"coordinates":[-73.9911822,40.7559338],"type":"Point"},"name":"Beer Authority"} +,{"_id":{"$oid":"55cba2476c522cafdb05788a"},"location":{"coordinates":[-73.9189778,40.7043624],"type":"Point"},"name":"Lee Garden Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05788b"},"location":{"coordinates":[-73.9833092,40.7253616],"type":"Point"},"name":"Purple Ginger"} +,{"_id":{"$oid":"55cba2476c522cafdb05788c"},"location":{"coordinates":[-73.8288517,40.758467],"type":"Point"},"name":"Pho Hoang"} +,{"_id":{"$oid":"55cba2476c522cafdb05788d"},"location":{"coordinates":[-73.94335099999999,40.711955],"type":"Point"},"name":"Mahzen Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb05788e"},"location":{"coordinates":[-73.7997187,40.7042655],"type":"Point"},"name":"Erica'S Spanish Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb05788f"},"location":{"coordinates":[-73.9801213,40.5734042],"type":"Point"},"name":"Ruby'S"} +,{"_id":{"$oid":"55cba2476c522cafdb057890"},"location":{"coordinates":[-74.0116539,40.6355],"type":"Point"},"name":"99 Favor Taste"} +,{"_id":{"$oid":"55cba2476c522cafdb057891"},"location":{"coordinates":[-73.8351733,40.7458097],"type":"Point"},"name":"Golden Corner Noodles"} +,{"_id":{"$oid":"55cba2476c522cafdb057892"},"location":{"coordinates":[-73.90296099999999,40.878459],"type":"Point"},"name":"Mei Chung Mei Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057893"},"location":{"coordinates":[-73.8178721,40.5852085],"type":"Point"},"name":"Rockaway Taco"} +,{"_id":{"$oid":"55cba2476c522cafdb057894"},"location":{"coordinates":[-73.8068397,40.6836001],"type":"Point"},"name":"La Quinta Inn \u0026 Suites"} +,{"_id":{"$oid":"55cba2476c522cafdb057895"},"location":{"coordinates":[-73.9208577,40.7628144],"type":"Point"},"name":"Zenon Taverna Greek Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057896"},"location":{"coordinates":[-73.77874729999999,40.6655446],"type":"Point"},"name":"Onyx Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb057897"},"location":{"coordinates":[-73.8617295,40.7538996],"type":"Point"},"name":"El Bacilon Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057898"},"location":{"coordinates":[-73.9897514,40.7403389],"type":"Point"},"name":"Le Pain Quotidien"} +,{"_id":{"$oid":"55cba2476c522cafdb057899"},"location":{"coordinates":[-73.9380556,40.8050029],"type":"Point"},"name":"2 Bros Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05789a"},"location":{"coordinates":[-73.9791599,40.642615],"type":"Point"},"name":"Gyro Place"} +,{"_id":{"$oid":"55cba2476c522cafdb05789b"},"location":{"coordinates":[-73.950014,40.657276],"type":"Point"},"name":"Immaculee Bakery \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05789c"},"location":{"coordinates":[-73.82484079999999,40.7426222],"type":"Point"},"name":"Lake Pavilion Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05789d"},"location":{"coordinates":[-73.91821,40.866836],"type":"Point"},"name":"Mickie'S Ice Cream"} +,{"_id":{"$oid":"55cba2476c522cafdb05789e"},"location":{"coordinates":[-73.759833,40.672659],"type":"Point"},"name":"Husky P Meals Direct"} +,{"_id":{"$oid":"55cba2476c522cafdb05789f"},"location":{"coordinates":[-73.8529053,40.72705149999999],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0578a0"},"location":{"coordinates":[-73.8626,40.883314],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb0578a1"},"location":{"coordinates":[-74.00713259999999,40.7256013],"type":"Point"},"name":"Parlor Club Nyc"} +,{"_id":{"$oid":"55cba2476c522cafdb0578a2"},"location":{"coordinates":[-74.14989779999999,40.5373008],"type":"Point"},"name":"Ralph'S Ices"} +,{"_id":{"$oid":"55cba2476c522cafdb0578a3"},"location":{"coordinates":[-74.00113999999999,40.729529],"type":"Point"},"name":"Slice \u0026 Co. Brick Oven Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0578a4"},"location":{"coordinates":[-73.9160162,40.819972],"type":"Point"},"name":"Melrose Wellnes Nutrition Center"} +,{"_id":{"$oid":"55cba2476c522cafdb0578a5"},"location":{"coordinates":[-73.963398,40.5814669],"type":"Point"},"name":"New China"} +,{"_id":{"$oid":"55cba2476c522cafdb0578a6"},"location":{"coordinates":[-73.9584666,40.6819478],"type":"Point"},"name":"Alice'S Arbor"} +,{"_id":{"$oid":"55cba2476c522cafdb0578a7"},"location":{"coordinates":[-73.9557725,40.6907329],"type":"Point"},"name":"Brooklyn Kolache Co."} +,{"_id":{"$oid":"55cba2476c522cafdb0578a8"},"location":{"coordinates":[-73.94979119999999,40.6802198],"type":"Point"},"name":"Prince $1 Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0578a9"},"location":{"coordinates":[-73.9589481,40.677332],"type":"Point"},"name":"Crosby Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0578aa"},"location":{"coordinates":[-73.90754,40.847254],"type":"Point"},"name":"Delicious Fruits"} +,{"_id":{"$oid":"55cba2476c522cafdb0578ab"},"location":{"coordinates":[-73.9673078,40.6837158],"type":"Point"},"name":"Mac Shack"} +,{"_id":{"$oid":"55cba2476c522cafdb0578ac"},"location":{"coordinates":[-74.0010168,40.6130429],"type":"Point"},"name":"68 Mei Mei Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0578ad"},"location":{"coordinates":[-73.829437,40.757178],"type":"Point"},"name":"New Ruyi Noodle"} +,{"_id":{"$oid":"55cba2476c522cafdb0578ae"},"location":{"coordinates":[-73.9141935,40.773926],"type":"Point"},"name":"Kitaku Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb0578af"},"location":{"coordinates":[-73.9360054,40.7999067],"type":"Point"},"name":"Mama'S Restaurant Jamaican And American Food"} +,{"_id":{"$oid":"55cba2476c522cafdb0578b0"},"location":{"coordinates":[-74.01399099999999,40.64199000000001],"type":"Point"},"name":"Capy"} +,{"_id":{"$oid":"55cba2476c522cafdb0578b1"},"location":{"coordinates":[-73.98031499999999,40.57527899999999],"type":"Point"},"name":"Popeyes"} +,{"_id":{"$oid":"55cba2476c522cafdb0578b2"},"location":{"coordinates":[-73.995162,40.63319440000001],"type":"Point"},"name":"Mi Pequeno Ranchito"} +,{"_id":{"$oid":"55cba2476c522cafdb0578b3"},"location":{"coordinates":[-73.93011659999999,40.8219403],"type":"Point"},"name":"Marisco Centro Seafood Restaurant \u0026 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0578b4"},"location":{"coordinates":[-73.9950659,40.7423982],"type":"Point"},"name":"Joe Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0578b5"},"location":{"coordinates":[-73.817345,40.7017219],"type":"Point"},"name":"Hang Yan"} +,{"_id":{"$oid":"55cba2476c522cafdb0578b6"},"location":{"coordinates":[-73.970175,40.645157],"type":"Point"},"name":"Cancun Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0578b7"},"location":{"coordinates":[-73.863041,40.75335099999999],"type":"Point"},"name":"El Gran Sabor Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0578b8"},"location":{"coordinates":[-73.9804602,40.7173394],"type":"Point"},"name":"World Pizza Champion"} +,{"_id":{"$oid":"55cba2476c522cafdb0578b9"},"location":{"coordinates":[-73.884012,40.747425],"type":"Point"},"name":"La Gata Golosa/Yogurtberry"} +,{"_id":{"$oid":"55cba2476c522cafdb0578ba"},"location":{"coordinates":[-73.9842944,40.6715966],"type":"Point"},"name":"Chagall Bistro"} +,{"_id":{"$oid":"55cba2476c522cafdb0578bb"},"location":{"coordinates":[-73.8383048,40.670626],"type":"Point"},"name":"C \u0026 C Italian Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb0578bc"},"location":{"coordinates":[-73.9476263,40.7071162],"type":"Point"},"name":"On Montrose Ave Eatery"} +,{"_id":{"$oid":"55cba2476c522cafdb0578bd"},"location":{"coordinates":[-73.8638838,40.7281002],"type":"Point"},"name":"Grill House"} +,{"_id":{"$oid":"55cba2476c522cafdb0578be"},"location":{"coordinates":[-73.9641006,40.7566992],"type":"Point"},"name":"Jubilee"} +,{"_id":{"$oid":"55cba2476c522cafdb0578bf"},"location":{"coordinates":[-73.921791,40.674391],"type":"Point"},"name":"Crown Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb0578c0"},"location":{"coordinates":[-73.97724670000001,40.7541977],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0578c1"},"location":{"coordinates":[-73.9549971,40.5991902],"type":"Point"},"name":"Luigis Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb0578c2"},"location":{"coordinates":[-73.9341677,40.7042159],"type":"Point"},"name":"Lange Noir Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0578c3"},"location":{"coordinates":[-73.77878419999999,40.7786934],"type":"Point"},"name":"Asian Terrace Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0578c4"},"location":{"coordinates":[-74.0287297,40.6298064],"type":"Point"},"name":"The Harp"} +,{"_id":{"$oid":"55cba2476c522cafdb0578c5"},"location":{"coordinates":[-73.8340858,40.7568178],"type":"Point"},"name":"Crazy Crab/ Bona Food"} +,{"_id":{"$oid":"55cba2476c522cafdb0578c6"},"location":{"coordinates":[-73.89122560000001,40.7471137],"type":"Point"},"name":"Merit Kabab Palace"} +,{"_id":{"$oid":"55cba2476c522cafdb0578c7"},"location":{"coordinates":[-73.9130935,40.7658249],"type":"Point"},"name":"Crystal Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb0578c8"},"location":{"coordinates":[-74.20658449999999,40.54289199999999],"type":"Point"},"name":"Pio Hot Bagels"} +,{"_id":{"$oid":"55cba2476c522cafdb0578c9"},"location":{"coordinates":[-73.9945709,40.6857884],"type":"Point"},"name":"Awash Ethiopian Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0578ca"},"location":{"coordinates":[-73.9882329,40.7406689],"type":"Point"},"name":"Chop'T"} +,{"_id":{"$oid":"55cba2476c522cafdb0578cb"},"location":{"coordinates":[-73.9899729,40.7584383],"type":"Point"},"name":"Hakkasan"} +,{"_id":{"$oid":"55cba2476c522cafdb0578cc"},"location":{"coordinates":[-73.8639917,40.6787919],"type":"Point"},"name":"El Castillo Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0578cd"},"location":{"coordinates":[-73.9532739,40.655675],"type":"Point"},"name":"Yard Style Jamaican Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb0578ce"},"location":{"coordinates":[-73.9442651,40.7945723],"type":"Point"},"name":"Napoli Pizza \u0026 Pasta"} +,{"_id":{"$oid":"55cba2476c522cafdb0578cf"},"location":{"coordinates":[-73.9272113,40.86592599999999],"type":"Point"},"name":"The Park View"} +,{"_id":{"$oid":"55cba2476c522cafdb0578d0"},"location":{"coordinates":[-73.8224393,40.8266666],"type":"Point"},"name":"Brewski'S Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0578d1"},"location":{"coordinates":[-73.9051732,40.858869],"type":"Point"},"name":"Mangos Paradise Smoothie"} +,{"_id":{"$oid":"55cba2476c522cafdb0578d2"},"location":{"coordinates":[-74.00022349999999,40.7179807],"type":"Point"},"name":"Cha-Time"} +,{"_id":{"$oid":"55cba2476c522cafdb0578d3"},"location":{"coordinates":[-73.9445484,40.8092015],"type":"Point"},"name":"Lenox Saphire"} +,{"_id":{"$oid":"55cba2476c522cafdb0578d4"},"location":{"coordinates":[-73.820501,40.7024011],"type":"Point"},"name":"Rong Hua Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0578d5"},"location":{"coordinates":[-73.94848999999999,40.774567],"type":"Point"},"name":"Sushi Suki Yorker"} +,{"_id":{"$oid":"55cba2476c522cafdb0578d6"},"location":{"coordinates":[-73.9709608,40.7519381],"type":"Point"},"name":"Super Dumpling"} +,{"_id":{"$oid":"55cba2476c522cafdb0578d7"},"location":{"coordinates":[-73.9625078,40.6122255],"type":"Point"},"name":"Maria'S Pizzeria Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0578d8"},"location":{"coordinates":[-73.8778063,40.7413626],"type":"Point"},"name":"Chao Thai Too"} +,{"_id":{"$oid":"55cba2476c522cafdb0578d9"},"location":{"coordinates":[-73.7997187,40.7042655],"type":"Point"},"name":"Chicken Perfect"} +,{"_id":{"$oid":"55cba2476c522cafdb0578da"},"location":{"coordinates":[-73.9839365,40.6180306],"type":"Point"},"name":"Lin Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb0578db"},"location":{"coordinates":[-73.9068368,40.8870447],"type":"Point"},"name":"Tin Marin Restaurant \u0026 Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb0578dc"},"location":{"coordinates":[-73.9728133,40.69784509999999],"type":"Point"},"name":"J\u0026J Navy Yard Sub Shoppe"} +,{"_id":{"$oid":"55cba2476c522cafdb0578dd"},"location":{"coordinates":[-73.957864,40.7179091],"type":"Point"},"name":"Station"} +,{"_id":{"$oid":"55cba2476c522cafdb0578de"},"location":{"coordinates":[-73.9680532,40.7569459],"type":"Point"},"name":"Club Max"} +,{"_id":{"$oid":"55cba2476c522cafdb0578df"},"location":{"coordinates":[-73.8502165,40.8980928],"type":"Point"},"name":"Cooler Runnings Jamaican Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0578e0"},"location":{"coordinates":[-73.9366897,40.80175819999999],"type":"Point"},"name":"Sabor Borinqueno # 2"} +,{"_id":{"$oid":"55cba2476c522cafdb0578e1"},"location":{"coordinates":[-73.94764649999999,40.82524859999999],"type":"Point"},"name":"Sugar Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0578e2"},"location":{"coordinates":[-73.95658929999999,40.7784846],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0578e3"},"location":{"coordinates":[-74.10349479999999,40.5759513],"type":"Point"},"name":"Sorry Babushka"} +,{"_id":{"$oid":"55cba2476c522cafdb0578e4"},"location":{"coordinates":[-73.771118,40.764483],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0578e5"},"location":{"coordinates":[-73.822259,40.7538039],"type":"Point"},"name":"Red Mountain Noodle House"} +,{"_id":{"$oid":"55cba2476c522cafdb0578e6"},"location":{"coordinates":[-73.9499952,40.8065346],"type":"Point"},"name":"New King Wok Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0578e7"},"location":{"coordinates":[-73.9821351,40.766613],"type":"Point"},"name":"Fpb Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0578e8"},"location":{"coordinates":[-74.002476,40.6077129],"type":"Point"},"name":"86 Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0578e9"},"location":{"coordinates":[-74.0165782,40.67533359999999],"type":"Point"},"name":"Brooklyn Crab"} +,{"_id":{"$oid":"55cba2476c522cafdb0578ea"},"location":{"coordinates":[-74.079376,40.6382884],"type":"Point"},"name":"Tony'S Original"} +,{"_id":{"$oid":"55cba2476c522cafdb0578eb"},"location":{"coordinates":[-73.9254353,40.5927793],"type":"Point"},"name":"The Gather Inn Again"} +,{"_id":{"$oid":"55cba2476c522cafdb0578ec"},"location":{"coordinates":[-73.98580009999999,40.7292442],"type":"Point"},"name":"Rai Rai Ken"} +,{"_id":{"$oid":"55cba2476c522cafdb0578ed"},"location":{"coordinates":[-73.9848258,40.7672648],"type":"Point"},"name":"Sfilatino Italian Gourmet"} +,{"_id":{"$oid":"55cba2476c522cafdb0578ee"},"location":{"coordinates":[-73.9107379,40.8406398],"type":"Point"},"name":"New Fu Xing Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0578ef"},"location":{"coordinates":[-73.89144519999999,40.8575054],"type":"Point"},"name":"Chinese Delight Lucky Coming"} +,{"_id":{"$oid":"55cba2476c522cafdb0578f0"},"location":{"coordinates":[-73.910658,40.704815],"type":"Point"},"name":"Jim'S China King"} +,{"_id":{"$oid":"55cba2476c522cafdb0578f1"},"location":{"coordinates":[-73.9407308,40.808995],"type":"Point"},"name":"World Class Eatery"} +,{"_id":{"$oid":"55cba2476c522cafdb0578f2"},"location":{"coordinates":[-73.78270119999999,40.7082455],"type":"Point"},"name":"T.J. Restaurant Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0578f3"},"location":{"coordinates":[-73.92583119999999,40.7617397],"type":"Point"},"name":"Broadway China Station"} +,{"_id":{"$oid":"55cba2476c522cafdb0578f4"},"location":{"coordinates":[-73.8131915,40.7877377],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0578f5"},"location":{"coordinates":[-73.9664971,40.6296397],"type":"Point"},"name":"Good Taste Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0578f6"},"location":{"coordinates":[-74.000451,40.74201499999999],"type":"Point"},"name":"Pounds \u0026 Ounces"} +,{"_id":{"$oid":"55cba2476c522cafdb0578f7"},"location":{"coordinates":[-73.9871124,40.6919763],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0578f8"},"location":{"coordinates":[-73.952108,40.588016],"type":"Point"},"name":"Chikurin Japanese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0578f9"},"location":{"coordinates":[-73.844572,40.8784594],"type":"Point"},"name":"China Top"} +,{"_id":{"$oid":"55cba2476c522cafdb0578fa"},"location":{"coordinates":[-74.0130866,40.7045399],"type":"Point"},"name":"Rosens Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0578fb"},"location":{"coordinates":[-73.98658429999999,40.7661802],"type":"Point"},"name":"Noodies"} +,{"_id":{"$oid":"55cba2476c522cafdb0578fc"},"location":{"coordinates":[-73.9333218,40.8495018],"type":"Point"},"name":"Papi'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb0578fd"},"location":{"coordinates":[-73.8953066,40.70071610000001],"type":"Point"},"name":"Carvel"} +,{"_id":{"$oid":"55cba2476c522cafdb0578fe"},"location":{"coordinates":[-73.92973789999999,40.8551541],"type":"Point"},"name":"Kukaramakara Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0578ff"},"location":{"coordinates":[-73.928811,40.8557041],"type":"Point"},"name":"Lulo Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057900"},"location":{"coordinates":[-73.9670115,40.7605013],"type":"Point"},"name":"Banzobar"} +,{"_id":{"$oid":"55cba2476c522cafdb057901"},"location":{"coordinates":[-74.063603,40.61019100000001],"type":"Point"},"name":"New Island Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb057902"},"location":{"coordinates":[-73.7619636,40.7614151],"type":"Point"},"name":"Bcd Tofu House"} +,{"_id":{"$oid":"55cba2476c522cafdb057903"},"location":{"coordinates":[-73.992311,40.747348],"type":"Point"},"name":"Canaan Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb057904"},"location":{"coordinates":[-73.9659551,40.7544974],"type":"Point"},"name":"Ethos Gallery"} +,{"_id":{"$oid":"55cba2476c522cafdb057905"},"location":{"coordinates":[-73.9883188,40.7330915],"type":"Point"},"name":"Shara Citi Restaurant Inc"} +,{"_id":{"$oid":"55cba2476c522cafdb057906"},"location":{"coordinates":[-73.9315,40.651428],"type":"Point"},"name":"Tc Take Out Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb057907"},"location":{"coordinates":[-73.76797020000001,40.6566189],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb057908"},"location":{"coordinates":[-73.9932142,40.7469589],"type":"Point"},"name":"Gigi Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057909"},"location":{"coordinates":[-73.9132754,40.6990251],"type":"Point"},"name":"Herbalife"} +,{"_id":{"$oid":"55cba2476c522cafdb05790a"},"location":{"coordinates":[-73.9658486,40.7113666],"type":"Point"},"name":"Bia Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb05790b"},"location":{"coordinates":[-73.98076929999999,40.7342684],"type":"Point"},"name":"Adriatic Restaurant Pizzeria Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05790c"},"location":{"coordinates":[-73.94793229999999,40.7792645],"type":"Point"},"name":"Pip'S Place"} +,{"_id":{"$oid":"55cba2476c522cafdb05790d"},"location":{"coordinates":[-74.125248,40.6337],"type":"Point"},"name":"La Pinela"} +,{"_id":{"$oid":"55cba2476c522cafdb05790e"},"location":{"coordinates":[-73.9694809,40.7608512],"type":"Point"},"name":"My Pie"} +,{"_id":{"$oid":"55cba2476c522cafdb05790f"},"location":{"coordinates":[-73.9932244,40.7579416],"type":"Point"},"name":"Rendezvous (Pier 81)"} +,{"_id":{"$oid":"55cba2476c522cafdb057910"},"location":{"coordinates":[-74.0062487,40.6382507],"type":"Point"},"name":"Pacificana Rest"} +,{"_id":{"$oid":"55cba2476c522cafdb057911"},"location":{"coordinates":[-74.006795,40.603962],"type":"Point"},"name":"Best Luncheonette"} +,{"_id":{"$oid":"55cba2476c522cafdb057912"},"location":{"coordinates":[-73.9542662,40.7318988],"type":"Point"},"name":"Great Wall No 1 Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb057913"},"location":{"coordinates":[-73.799381,40.744241],"type":"Point"},"name":"Kissena Park Golf Club"} +,{"_id":{"$oid":"55cba2476c522cafdb057914"},"location":{"coordinates":[-74.0006794,40.7474006],"type":"Point"},"name":"Sullivan Street Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb057915"},"location":{"coordinates":[-74.000648,40.7258437],"type":"Point"},"name":"Thompson Alchemists"} +,{"_id":{"$oid":"55cba2476c522cafdb057916"},"location":{"coordinates":[-74.16420579999999,40.6262656],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb057917"},"location":{"coordinates":[-73.9663924,40.6868328],"type":"Point"},"name":"New Marios Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb057918"},"location":{"coordinates":[-74.007891,40.637407],"type":"Point"},"name":"Little Thanh Da"} +,{"_id":{"$oid":"55cba2476c522cafdb057919"},"location":{"coordinates":[-73.90298899999999,40.8353043],"type":"Point"},"name":"Dragon Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05791a"},"location":{"coordinates":[-74.0985281,40.6338468],"type":"Point"},"name":"A \u0026 M Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05791b"},"location":{"coordinates":[-73.866252,40.7530069],"type":"Point"},"name":"La Vida Loca Restaurant And Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05791c"},"location":{"coordinates":[-73.9927374,40.7634312],"type":"Point"},"name":"Fairytales Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb05791d"},"location":{"coordinates":[-73.9878734,40.7643857],"type":"Point"},"name":"Kahve"} +,{"_id":{"$oid":"55cba2476c522cafdb05791e"},"location":{"coordinates":[-74.1033446,40.6306423],"type":"Point"},"name":"Beans And Leaves"} +,{"_id":{"$oid":"55cba2476c522cafdb05791f"},"location":{"coordinates":[-73.9640742,40.7642465],"type":"Point"},"name":"Tony'S Di Napoli"} +,{"_id":{"$oid":"55cba2476c522cafdb057920"},"location":{"coordinates":[-73.8133205,40.789057],"type":"Point"},"name":"Takara Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb057921"},"location":{"coordinates":[-73.9170376,40.8788279],"type":"Point"},"name":"Siam Sqaure Thai Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb057922"},"location":{"coordinates":[-73.9664625,40.757689],"type":"Point"},"name":"Tenzan"} +,{"_id":{"$oid":"55cba2476c522cafdb057923"},"location":{"coordinates":[-73.9579528,40.7766333],"type":"Point"},"name":"Food Passion Catering"} +,{"_id":{"$oid":"55cba2476c522cafdb057924"},"location":{"coordinates":[-73.9887284,40.770473],"type":"Point"},"name":"Mbj Food Services"} +,{"_id":{"$oid":"55cba2476c522cafdb057925"},"location":{"coordinates":[-73.923711,40.740124],"type":"Point"},"name":"Prima Sarabella Bar/Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057926"},"location":{"coordinates":[-73.96943759999999,40.7572813],"type":"Point"},"name":"Subway Sandwich"} +,{"_id":{"$oid":"55cba2476c522cafdb057927"},"location":{"coordinates":[-73.87840179999999,40.7480566],"type":"Point"},"name":"Asia Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb057928"},"location":{"coordinates":[-73.8915822,40.8245554],"type":"Point"},"name":"Checkers"} +,{"_id":{"$oid":"55cba2476c522cafdb057929"},"location":{"coordinates":[-73.98013329999999,40.7802717],"type":"Point"},"name":"Piccolo Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05792a"},"location":{"coordinates":[-73.9885998,40.7181664],"type":"Point"},"name":"Sun Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb05792b"},"location":{"coordinates":[-73.9499997,40.6811758],"type":"Point"},"name":"Le Paris Dakar"} +,{"_id":{"$oid":"55cba2476c522cafdb05792c"},"location":{"coordinates":[-73.9927419,40.7257512],"type":"Point"},"name":"Mile End Sandwich"} +,{"_id":{"$oid":"55cba2476c522cafdb05792d"},"location":{"coordinates":[-74.003834,40.641319],"type":"Point"},"name":"Metro Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05792e"},"location":{"coordinates":[-73.98979899999999,40.71843],"type":"Point"},"name":"Cafe Dancer"} +,{"_id":{"$oid":"55cba2476c522cafdb05792f"},"location":{"coordinates":[-73.8890742,40.8367838],"type":"Point"},"name":"Aenos Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb057930"},"location":{"coordinates":[-73.92211809999999,40.6766672],"type":"Point"},"name":"Popeyes"} +,{"_id":{"$oid":"55cba2476c522cafdb057931"},"location":{"coordinates":[-73.9742747,40.7642202],"type":"Point"},"name":"William Greenberg Dessert"} +,{"_id":{"$oid":"55cba2476c522cafdb057932"},"location":{"coordinates":[-73.8635142,40.8356014],"type":"Point"},"name":"Halal Hot Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb057933"},"location":{"coordinates":[-73.9610886,40.7163847],"type":"Point"},"name":"Retro Fitness"} +,{"_id":{"$oid":"55cba2476c522cafdb057934"},"location":{"coordinates":[-73.8886595,40.8481591],"type":"Point"},"name":"Dragon Sea"} +,{"_id":{"$oid":"55cba2476c522cafdb057935"},"location":{"coordinates":[-73.768344,40.755227],"type":"Point"},"name":"Nan Bei Ho"} +,{"_id":{"$oid":"55cba2476c522cafdb057936"},"location":{"coordinates":[-73.99605369999999,40.6778884],"type":"Point"},"name":"Hbh Sandwiches"} +,{"_id":{"$oid":"55cba2476c522cafdb057937"},"location":{"coordinates":[-73.909941,40.7759295],"type":"Point"},"name":"Bubbas"} +,{"_id":{"$oid":"55cba2476c522cafdb057938"},"location":{"coordinates":[-73.939381,40.7912309],"type":"Point"},"name":"Restaurant San Cristobal"} +,{"_id":{"$oid":"55cba2476c522cafdb057939"},"location":{"coordinates":[-73.9923878,40.7473778],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb05793a"},"location":{"coordinates":[-73.93659679999999,40.7596461],"type":"Point"},"name":"Sam Lee Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb05793b"},"location":{"coordinates":[-73.981921,40.7386229],"type":"Point"},"name":"Sea King"} +,{"_id":{"$oid":"55cba2476c522cafdb05793c"},"location":{"coordinates":[-73.91089339999999,40.6723952],"type":"Point"},"name":"Great Wall Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05793d"},"location":{"coordinates":[-73.967708,40.7109189],"type":"Point"},"name":"Donna"} +,{"_id":{"$oid":"55cba2476c522cafdb05793e"},"location":{"coordinates":[-74.0031555,40.7486894],"type":"Point"},"name":"Chop Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb05793f"},"location":{"coordinates":[-73.96441399999999,40.802767],"type":"Point"},"name":"The Dam"} +,{"_id":{"$oid":"55cba2476c522cafdb057940"},"location":{"coordinates":[-73.9061632,40.812369],"type":"Point"},"name":"Seis Vecinos Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057941"},"location":{"coordinates":[-73.8773628,40.7483138],"type":"Point"},"name":"Pastes Kiko'S New York"} +,{"_id":{"$oid":"55cba2476c522cafdb057942"},"location":{"coordinates":[-73.7092333,40.7533837],"type":"Point"},"name":"Au Bon Pain"} +,{"_id":{"$oid":"55cba2476c522cafdb057943"},"location":{"coordinates":[-73.9889649,40.739068],"type":"Point"},"name":"Mizu"} +,{"_id":{"$oid":"55cba2476c522cafdb057944"},"location":{"coordinates":[-74.0137534,40.7092191],"type":"Point"},"name":"Go Burger"} +,{"_id":{"$oid":"55cba2476c522cafdb057945"},"location":{"coordinates":[-73.9446224,40.5839607],"type":"Point"},"name":"Opera Cafe Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb057946"},"location":{"coordinates":[-73.899799,40.8568423],"type":"Point"},"name":"Lulo Restaurant Bronx"} +,{"_id":{"$oid":"55cba2476c522cafdb057947"},"location":{"coordinates":[-73.99698939999999,40.7190658],"type":"Point"},"name":"Grand Appetito"} +,{"_id":{"$oid":"55cba2476c522cafdb057948"},"location":{"coordinates":[-73.887316,40.876228],"type":"Point"},"name":"Valbona Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057949"},"location":{"coordinates":[-73.83260899999999,40.699166],"type":"Point"},"name":"Mi Casa Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05794a"},"location":{"coordinates":[-73.9889479,40.7568894],"type":"Point"},"name":"Chevys Fresh Mex"} +,{"_id":{"$oid":"55cba2476c522cafdb05794b"},"location":{"coordinates":[-73.9907663,40.760148],"type":"Point"},"name":"Schmackary'S"} +,{"_id":{"$oid":"55cba2476c522cafdb05794c"},"location":{"coordinates":[-73.82916639999999,40.8856729],"type":"Point"},"name":"Fish N Ting Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05794d"},"location":{"coordinates":[-74.01321329999999,40.7013064],"type":"Point"},"name":"Len'S Papaya"} +,{"_id":{"$oid":"55cba2476c522cafdb05794e"},"location":{"coordinates":[-73.951132,40.72491300000001],"type":"Point"},"name":"Beloved"} +,{"_id":{"$oid":"55cba2476c522cafdb05794f"},"location":{"coordinates":[-73.88313889999999,40.8380259],"type":"Point"},"name":"Little Caesars"} +,{"_id":{"$oid":"55cba2476c522cafdb057950"},"location":{"coordinates":[-73.9051465,40.8394583],"type":"Point"},"name":"Gravity Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb057951"},"location":{"coordinates":[-73.9363157,40.7985948],"type":"Point"},"name":"Ricardo Ocean Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb057952"},"location":{"coordinates":[-73.99197389999999,40.7427988],"type":"Point"},"name":"The Spot Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057953"},"location":{"coordinates":[-73.950341,40.775034],"type":"Point"},"name":"Epazote"} +,{"_id":{"$oid":"55cba2476c522cafdb057954"},"location":{"coordinates":[-73.8725587,40.7511374],"type":"Point"},"name":"Andy Boy Mexican Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057955"},"location":{"coordinates":[-73.8924473,40.8603391],"type":"Point"},"name":"Carvel"} +,{"_id":{"$oid":"55cba2476c522cafdb057956"},"location":{"coordinates":[-73.8182358,40.8202162],"type":"Point"},"name":"Xing Hui Linda Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb057957"},"location":{"coordinates":[-74.1622198,40.6261838],"type":"Point"},"name":"Joe Broadways Billiards"} +,{"_id":{"$oid":"55cba2476c522cafdb057958"},"location":{"coordinates":[-73.99371099999999,40.694863],"type":"Point"},"name":"The Custom House"} +,{"_id":{"$oid":"55cba2476c522cafdb057959"},"location":{"coordinates":[-73.9979029,40.7161727],"type":"Point"},"name":"House Of Vegetarian"} +,{"_id":{"$oid":"55cba2476c522cafdb05795a"},"location":{"coordinates":[-73.8730436,40.6754296],"type":"Point"},"name":"China King"} +,{"_id":{"$oid":"55cba2476c522cafdb05795b"},"location":{"coordinates":[-74.114807,40.573447],"type":"Point"},"name":"Piece-A-Cake Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb05795c"},"location":{"coordinates":[-73.85097929999999,40.9016331],"type":"Point"},"name":"Karma Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb05795d"},"location":{"coordinates":[-73.8719084,40.842064],"type":"Point"},"name":"Bar \u0026 Restaurant El Salvadoreno"} +,{"_id":{"$oid":"55cba2476c522cafdb05795e"},"location":{"coordinates":[-73.81388919999999,40.7890046],"type":"Point"},"name":"Freddy'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05795f"},"location":{"coordinates":[-73.967304,40.683309],"type":"Point"},"name":"Holland Cafe Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057960"},"location":{"coordinates":[-73.92432600000001,40.7565064],"type":"Point"},"name":"Malagueta Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057961"},"location":{"coordinates":[-73.82643170000001,40.7639017],"type":"Point"},"name":"Cafe Y"} +,{"_id":{"$oid":"55cba2476c522cafdb057962"},"location":{"coordinates":[-74.114113,40.573079],"type":"Point"},"name":"Crown Palace Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057963"},"location":{"coordinates":[-73.8813674,40.8823625],"type":"Point"},"name":"B.F. National Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb057964"},"location":{"coordinates":[-73.93095129999999,40.6947311],"type":"Point"},"name":"Terry'S Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057965"},"location":{"coordinates":[-73.9931457,40.7247545],"type":"Point"},"name":"Siggy'S Nyc"} +,{"_id":{"$oid":"55cba2476c522cafdb057966"},"location":{"coordinates":[-74.00168579999999,40.6432899],"type":"Point"},"name":"Lorax Yogurt"} +,{"_id":{"$oid":"55cba2476c522cafdb057967"},"location":{"coordinates":[-74.00051719999999,40.7178164],"type":"Point"},"name":"9 \u0026 8 Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057968"},"location":{"coordinates":[-73.9663649,40.7582445],"type":"Point"},"name":"Arata Japanese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057969"},"location":{"coordinates":[-73.9862759,40.7341042],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb05796a"},"location":{"coordinates":[-73.797263,40.7040122],"type":"Point"},"name":"John'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05796b"},"location":{"coordinates":[-74.0797177,40.598797],"type":"Point"},"name":"Fuji Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb05796c"},"location":{"coordinates":[-73.9742747,40.7642202],"type":"Point"},"name":"Three Tarts"} +,{"_id":{"$oid":"55cba2476c522cafdb05796d"},"location":{"coordinates":[-74.003421,40.7621171],"type":"Point"},"name":"World Yacht Princess"} +,{"_id":{"$oid":"55cba2476c522cafdb05796e"},"location":{"coordinates":[-73.9837737,40.5960915],"type":"Point"},"name":"Deli Doroj Fried Chicken And Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05796f"},"location":{"coordinates":[-74.003421,40.7621171],"type":"Point"},"name":"World Yacht Duchess"} +,{"_id":{"$oid":"55cba2476c522cafdb057970"},"location":{"coordinates":[-73.9375598,40.6344784],"type":"Point"},"name":"Lello'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb057971"},"location":{"coordinates":[-73.81867629999999,40.6880951],"type":"Point"},"name":"New Chun Feng Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057972"},"location":{"coordinates":[-73.960517,40.761072],"type":"Point"},"name":"The Nuaa"} +,{"_id":{"$oid":"55cba2476c522cafdb057973"},"location":{"coordinates":[-74.0016868,40.72808209999999],"type":"Point"},"name":"Da Marcella"} +,{"_id":{"$oid":"55cba2476c522cafdb057974"},"location":{"coordinates":[-73.9547937,40.5829764],"type":"Point"},"name":"Lotus Cafe \u0026 Bagels"} +,{"_id":{"$oid":"55cba2476c522cafdb057975"},"location":{"coordinates":[-73.98452390000001,40.725114],"type":"Point"},"name":"Fei Ma"} +,{"_id":{"$oid":"55cba2476c522cafdb057976"},"location":{"coordinates":[-73.962235,40.719413],"type":"Point"},"name":"Sweetleaf Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb057977"},"location":{"coordinates":[-73.86309899999999,40.75122],"type":"Point"},"name":"La Brisa Del Cibao"} +,{"_id":{"$oid":"55cba2476c522cafdb057978"},"location":{"coordinates":[-73.9744989,40.7647267],"type":"Point"},"name":"Lukes Lobster"} +,{"_id":{"$oid":"55cba2476c522cafdb057979"},"location":{"coordinates":[-73.965964,40.7943209],"type":"Point"},"name":"The Mandell School"} +,{"_id":{"$oid":"55cba2476c522cafdb05797a"},"location":{"coordinates":[-73.89842519999999,40.7089603],"type":"Point"},"name":"Twist It Top It - Uncle Louie G"} +,{"_id":{"$oid":"55cba2476c522cafdb05797b"},"location":{"coordinates":[-73.84045689999999,40.66016570000001],"type":"Point"},"name":"Twist It Top It Frozen Yogurt"} +,{"_id":{"$oid":"55cba2476c522cafdb05797c"},"location":{"coordinates":[-73.993844,40.615132],"type":"Point"},"name":"Tenzan Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb05797d"},"location":{"coordinates":[-73.99435299999999,40.623996],"type":"Point"},"name":"Red Wolf"} +,{"_id":{"$oid":"55cba2476c522cafdb05797e"},"location":{"coordinates":[-73.918607,40.68724599999999],"type":"Point"},"name":"East Broadway Pizza \u0026 Fried Chicken Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05797f"},"location":{"coordinates":[-74.0008579,40.7174247],"type":"Point"},"name":"Queen Bakery Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb057980"},"location":{"coordinates":[-77.340572,40.1112976],"type":"Point"},"name":"Auntie Ann'S Pretzels"} +,{"_id":{"$oid":"55cba2476c522cafdb057981"},"location":{"coordinates":[-73.9738828,40.7520277],"type":"Point"},"name":"44Th Street Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb057982"},"location":{"coordinates":[-73.993157,40.7156197],"type":"Point"},"name":"Changle Xin Fan Zhuang"} +,{"_id":{"$oid":"55cba2476c522cafdb057983"},"location":{"coordinates":[-73.9872287,40.66764269999999],"type":"Point"},"name":"The Monro"} +,{"_id":{"$oid":"55cba2476c522cafdb057984"},"location":{"coordinates":[-73.9958218,40.6820951],"type":"Point"},"name":"16 Handles"} +,{"_id":{"$oid":"55cba2476c522cafdb057985"},"location":{"coordinates":[-73.9246841,40.8420608],"type":"Point"},"name":"China King Ogden Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057986"},"location":{"coordinates":[-74.00630199999999,40.718892],"type":"Point"},"name":"Maslow 6 Wine Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb057987"},"location":{"coordinates":[-73.9787801,40.7294661],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb057988"},"location":{"coordinates":[-73.8609298,40.68449469999999],"type":"Point"},"name":"Flirt"} +,{"_id":{"$oid":"55cba2476c522cafdb057989"},"location":{"coordinates":[-73.9195653,40.7419486],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb05798a"},"location":{"coordinates":[-74.003657,40.742209],"type":"Point"},"name":"No. 8"} +,{"_id":{"$oid":"55cba2476c522cafdb05798b"},"location":{"coordinates":[-74.0147978,40.7151304],"type":"Point"},"name":"Harry'S Italian"} +,{"_id":{"$oid":"55cba2476c522cafdb05798c"},"location":{"coordinates":[-73.923006,40.760584],"type":"Point"},"name":"Donato'S Italian Bistro"} +,{"_id":{"$oid":"55cba2476c522cafdb05798d"},"location":{"coordinates":[-73.9584424,40.8114066],"type":"Point"},"name":"Say It With Cake"} +,{"_id":{"$oid":"55cba2476c522cafdb05798e"},"location":{"coordinates":[-73.95408700000002,40.7709059],"type":"Point"},"name":"American Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05798f"},"location":{"coordinates":[-73.9744316,40.6803252],"type":"Point"},"name":"Hungry Ghost Coffee Bar And Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057990"},"location":{"coordinates":[-73.953931,40.68096],"type":"Point"},"name":"Cheikh Umar Futiyu Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057991"},"location":{"coordinates":[-73.9887358,40.6209061],"type":"Point"},"name":"Good Day Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057992"},"location":{"coordinates":[-74.0069006,40.7434885],"type":"Point"},"name":"Blue Bottle Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb057993"},"location":{"coordinates":[-73.975526,40.68380579999999],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb057994"},"location":{"coordinates":[-73.9945316,40.7243206],"type":"Point"},"name":"Cafetal Social Club"} +,{"_id":{"$oid":"55cba2476c522cafdb057995"},"location":{"coordinates":[-73.9742747,40.7642202],"type":"Point"},"name":"Billy'S Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb057996"},"location":{"coordinates":[-73.98874889999999,40.7366067],"type":"Point"},"name":"The W Hotel Banquets"} +,{"_id":{"$oid":"55cba2476c522cafdb057997"},"location":{"coordinates":[-74.0057757,40.6394718],"type":"Point"},"name":"Mr. Q'S Noodle"} +,{"_id":{"$oid":"55cba2476c522cafdb057998"},"location":{"coordinates":[-73.8421011,40.7191325],"type":"Point"},"name":"718 Hookah Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb057999"},"location":{"coordinates":[-73.9685614,40.7553247],"type":"Point"},"name":"Socarrat East"} +,{"_id":{"$oid":"55cba2476c522cafdb05799a"},"location":{"coordinates":[-74.00153,40.729076],"type":"Point"},"name":"Percy'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05799b"},"location":{"coordinates":[-73.9541551,40.7749987],"type":"Point"},"name":"Amura Japanese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05799c"},"location":{"coordinates":[-73.9075553,40.8261248],"type":"Point"},"name":"Lechonero Pollo Sabroso"} +,{"_id":{"$oid":"55cba2476c522cafdb05799d"},"location":{"coordinates":[-73.9085522,40.851469],"type":"Point"},"name":"Fantasy Bar And Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05799e"},"location":{"coordinates":[-73.9795089,40.746004],"type":"Point"},"name":"V {Iv} Regional Thai Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb05799f"},"location":{"coordinates":[-73.8326848,40.7525152],"type":"Point"},"name":"Pizza Con Vitaminas"} +,{"_id":{"$oid":"55cba2476c522cafdb0579a0"},"location":{"coordinates":[-73.9205891,40.86821],"type":"Point"},"name":"Darling Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0579a1"},"location":{"coordinates":[-73.9027179,40.822386],"type":"Point"},"name":"Johnson Bar-B-Q"} +,{"_id":{"$oid":"55cba2476c522cafdb0579a2"},"location":{"coordinates":[-73.97551039999999,40.75092619999999],"type":"Point"},"name":"Sinigual Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0579a3"},"location":{"coordinates":[-73.9485248,40.8286011],"type":"Point"},"name":"The Chipped Cup"} +,{"_id":{"$oid":"55cba2476c522cafdb0579a4"},"location":{"coordinates":[-73.9438157,40.61268829999999],"type":"Point"},"name":"Rolls"} +,{"_id":{"$oid":"55cba2476c522cafdb0579a5"},"location":{"coordinates":[-73.8204147,40.724243],"type":"Point"},"name":"Bakhtar Kabab"} +,{"_id":{"$oid":"55cba2476c522cafdb0579a6"},"location":{"coordinates":[-73.8612006,40.8865358],"type":"Point"},"name":"Papa Johns Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0579a7"},"location":{"coordinates":[-73.9984186,40.73292560000001],"type":"Point"},"name":"Pink Elephant"} +,{"_id":{"$oid":"55cba2476c522cafdb0579a8"},"location":{"coordinates":[-74.0850586,40.6183936],"type":"Point"},"name":"Mona'S Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb0579a9"},"location":{"coordinates":[-73.8917737,40.7012199],"type":"Point"},"name":"Sakura Iv"} +,{"_id":{"$oid":"55cba2476c522cafdb0579aa"},"location":{"coordinates":[-73.9629697,40.7586969],"type":"Point"},"name":"Tasti Dlite"} +,{"_id":{"$oid":"55cba2476c522cafdb0579ab"},"location":{"coordinates":[-73.940344,40.8365966],"type":"Point"},"name":"Aroma Cafe Bakery \u0026 Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb0579ac"},"location":{"coordinates":[-73.777592,40.6794594],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0579ad"},"location":{"coordinates":[-73.9683549,40.8004109],"type":"Point"},"name":"Amla Cuisine Of India"} +,{"_id":{"$oid":"55cba2476c522cafdb0579ae"},"location":{"coordinates":[-73.989502,40.760198],"type":"Point"},"name":"Sangria 46"} +,{"_id":{"$oid":"55cba2476c522cafdb0579af"},"location":{"coordinates":[-73.98795989999999,40.7244258],"type":"Point"},"name":"Aziza'S Cafe \u0026 Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb0579b0"},"location":{"coordinates":[-73.9725886,40.6778527],"type":"Point"},"name":"Elberta"} +,{"_id":{"$oid":"55cba2476c522cafdb0579b1"},"location":{"coordinates":[-74.00273779999999,40.726854],"type":"Point"},"name":"The Little Prince"} +,{"_id":{"$oid":"55cba2476c522cafdb0579b2"},"location":{"coordinates":[-73.9351149,40.7514116],"type":"Point"},"name":"Fairfield Inn \u0026 Suites"} +,{"_id":{"$oid":"55cba2476c522cafdb0579b3"},"location":{"coordinates":[-73.95607199999999,40.59496],"type":"Point"},"name":"Bing Deli Grocery"} +,{"_id":{"$oid":"55cba2476c522cafdb0579b4"},"location":{"coordinates":[-73.963402,40.617481],"type":"Point"},"name":"Wolf \u0026 Lamb"} +,{"_id":{"$oid":"55cba2476c522cafdb0579b5"},"location":{"coordinates":[-73.9897417,40.7253158],"type":"Point"},"name":"Proto'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0579b6"},"location":{"coordinates":[-74.127704,40.564994],"type":"Point"},"name":"Justinos Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb0579b7"},"location":{"coordinates":[-73.8706606,40.7342757],"type":"Point"},"name":"16 Handles Frozen Yogurt"} +,{"_id":{"$oid":"55cba2476c522cafdb0579b8"},"location":{"coordinates":[-73.9440645,40.714687],"type":"Point"},"name":"Brooklyn Seoul"} +,{"_id":{"$oid":"55cba2476c522cafdb0579b9"},"location":{"coordinates":[-73.8938249,40.7464681],"type":"Point"},"name":"Playground"} +,{"_id":{"$oid":"55cba2476c522cafdb0579ba"},"location":{"coordinates":[-73.9585061,40.71044759999999],"type":"Point"},"name":"Xixa"} +,{"_id":{"$oid":"55cba2476c522cafdb0579bb"},"location":{"coordinates":[-73.9965057,40.7139266],"type":"Point"},"name":"Im Star Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0579bc"},"location":{"coordinates":[-73.9183061,40.7705291],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0579bd"},"location":{"coordinates":[-73.93175699999999,40.665583],"type":"Point"},"name":"Happy Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb0579be"},"location":{"coordinates":[-73.9325477,40.707101],"type":"Point"},"name":"Alaska Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0579bf"},"location":{"coordinates":[-73.986533,40.7483755],"type":"Point"},"name":"Rae'S Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb0579c0"},"location":{"coordinates":[-73.75211300000001,40.694239],"type":"Point"},"name":"Golden Krust"} +,{"_id":{"$oid":"55cba2476c522cafdb0579c1"},"location":{"coordinates":[-73.9871945,40.72876249999999],"type":"Point"},"name":"Fresco Gelateria"} +,{"_id":{"$oid":"55cba2476c522cafdb0579c2"},"location":{"coordinates":[-73.98427869999999,40.7444482],"type":"Point"},"name":"Lalibela Ethiopian Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0579c3"},"location":{"coordinates":[-73.9744989,40.7647267],"type":"Point"},"name":"Lady M Confections (Plaza Hotel 770 5Th Avenue)"} +,{"_id":{"$oid":"55cba2476c522cafdb0579c4"},"location":{"coordinates":[-73.9304255,40.7562918],"type":"Point"},"name":"Palladium"} +,{"_id":{"$oid":"55cba2476c522cafdb0579c5"},"location":{"coordinates":[-74.0728632,40.6228826],"type":"Point"},"name":"Tapas Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb0579c6"},"location":{"coordinates":[-73.9742747,40.7642202],"type":"Point"},"name":"Pain D'Avignonat The Plaza"} +,{"_id":{"$oid":"55cba2476c522cafdb0579c7"},"location":{"coordinates":[-74.011352,40.633347],"type":"Point"},"name":"D.M Tea"} +,{"_id":{"$oid":"55cba2476c522cafdb0579c8"},"location":{"coordinates":[-73.98064200000002,40.660391],"type":"Point"},"name":"212 Shawarma Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0579c9"},"location":{"coordinates":[-73.886635,40.679483],"type":"Point"},"name":"El Tipico"} +,{"_id":{"$oid":"55cba2476c522cafdb0579ca"},"location":{"coordinates":[-73.95428179999999,40.7697576],"type":"Point"},"name":"The Pony Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0579cb"},"location":{"coordinates":[-73.886456,40.747602],"type":"Point"},"name":"Melao"} +,{"_id":{"$oid":"55cba2476c522cafdb0579cc"},"location":{"coordinates":[-73.9143303,40.8359759],"type":"Point"},"name":"New Golden Pond Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0579cd"},"location":{"coordinates":[-73.9998833,40.742822],"type":"Point"},"name":"16 Handles"} +,{"_id":{"$oid":"55cba2476c522cafdb0579ce"},"location":{"coordinates":[-73.80508999999999,40.701733],"type":"Point"},"name":"El Encanto Centro-Americano Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0579cf"},"location":{"coordinates":[-73.9427879,40.711973],"type":"Point"},"name":"A.K.A. Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0579d0"},"location":{"coordinates":[-73.983414,40.7285899],"type":"Point"},"name":"Molecule Water Store"} +,{"_id":{"$oid":"55cba2476c522cafdb0579d1"},"location":{"coordinates":[-73.9543154,40.6838008],"type":"Point"},"name":"Napoleon'S Southern Cuisine \u0026 Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0579d2"},"location":{"coordinates":[-73.989254,40.729529],"type":"Point"},"name":"Jum Mum"} +,{"_id":{"$oid":"55cba2476c522cafdb0579d3"},"location":{"coordinates":[-73.9858715,40.7516571],"type":"Point"},"name":"The Picnic Basket"} +,{"_id":{"$oid":"55cba2476c522cafdb0579d4"},"location":{"coordinates":[-73.76065,40.720211],"type":"Point"},"name":"Tropical Flavors"} +,{"_id":{"$oid":"55cba2476c522cafdb0579d5"},"location":{"coordinates":[-73.9838285,40.76430269999999],"type":"Point"},"name":"54 Below"} +,{"_id":{"$oid":"55cba2476c522cafdb0579d6"},"location":{"coordinates":[-73.793509,40.757457],"type":"Point"},"name":"Taco Bell"} +,{"_id":{"$oid":"55cba2476c522cafdb0579d7"},"location":{"coordinates":[-73.95025989999999,40.6571097],"type":"Point"},"name":"Us Fried Chicken \u0026 Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0579d8"},"location":{"coordinates":[-73.9567469,40.642952],"type":"Point"},"name":"Nous Les Amis Restaurant \u0026 Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0579d9"},"location":{"coordinates":[-73.97939,40.729685],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0579da"},"location":{"coordinates":[-73.9885482,40.7570301],"type":"Point"},"name":"Five Guys Burgers And Fries"} +,{"_id":{"$oid":"55cba2476c522cafdb0579db"},"location":{"coordinates":[-73.911656,40.7442131],"type":"Point"},"name":"La Adelita Mexican Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0579dc"},"location":{"coordinates":[-73.952417,40.819202],"type":"Point"},"name":"Sum Hing Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0579dd"},"location":{"coordinates":[-73.8844265,40.7447175],"type":"Point"},"name":"Miracali Iii"} +,{"_id":{"$oid":"55cba2476c522cafdb0579de"},"location":{"coordinates":[-73.8774085,40.7480572],"type":"Point"},"name":"Plaza Garibaldi"} +,{"_id":{"$oid":"55cba2476c522cafdb0579df"},"location":{"coordinates":[-73.804259,40.762147],"type":"Point"},"name":"Sorang Korean Bbq Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0579e0"},"location":{"coordinates":[-73.78447680000001,40.7127815],"type":"Point"},"name":"Rocoto"} +,{"_id":{"$oid":"55cba2476c522cafdb0579e1"},"location":{"coordinates":[-73.927348,40.75524000000001],"type":"Point"},"name":"36Th Ave Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb0579e2"},"location":{"coordinates":[-73.97210679999999,40.6929986],"type":"Point"},"name":"Le Petit Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0579e3"},"location":{"coordinates":[-74.02838059999999,40.6220669],"type":"Point"},"name":"Bari'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0579e4"},"location":{"coordinates":[-73.984347,40.6099279],"type":"Point"},"name":"Guatemex Restaurant, Inc."} +,{"_id":{"$oid":"55cba2476c522cafdb0579e5"},"location":{"coordinates":[-73.9274579,40.8188226],"type":"Point"},"name":"Planet Wings"} +,{"_id":{"$oid":"55cba2476c522cafdb0579e6"},"location":{"coordinates":[-73.9729818,40.7857781],"type":"Point"},"name":"Birdbath"} +,{"_id":{"$oid":"55cba2476c522cafdb0579e7"},"location":{"coordinates":[-73.90336669999999,40.8438643],"type":"Point"},"name":"Kfc/Taco Bell"} +,{"_id":{"$oid":"55cba2476c522cafdb0579e8"},"location":{"coordinates":[-74.000688,40.729389],"type":"Point"},"name":"Forbidden Fruit Nyc"} +,{"_id":{"$oid":"55cba2476c522cafdb0579e9"},"location":{"coordinates":[-73.998104,40.715717],"type":"Point"},"name":"Simply Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0579ea"},"location":{"coordinates":[-73.9204947,40.744976],"type":"Point"},"name":"New Wah Yeung'S Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0579eb"},"location":{"coordinates":[-74.1096681,40.57101919999999],"type":"Point"},"name":"Kfc"} +,{"_id":{"$oid":"55cba2476c522cafdb0579ec"},"location":{"coordinates":[-73.99129099999999,40.6184026],"type":"Point"},"name":"Columbus Delicatessen"} +,{"_id":{"$oid":"55cba2476c522cafdb0579ed"},"location":{"coordinates":[-73.90121549999999,40.8559237],"type":"Point"},"name":"Fabene Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0579ee"},"location":{"coordinates":[-73.8542396,40.8724921],"type":"Point"},"name":"Royal Coach Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb0579ef"},"location":{"coordinates":[-73.95307199999999,40.7883387],"type":"Point"},"name":"Chickpea-Red Mango"} +,{"_id":{"$oid":"55cba2476c522cafdb0579f0"},"location":{"coordinates":[-74.205496,40.550844],"type":"Point"},"name":"Grand Oaks Country Club/Boxwood Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0579f1"},"location":{"coordinates":[-73.9013842,40.86305290000001],"type":"Point"},"name":"Kfc"} +,{"_id":{"$oid":"55cba2476c522cafdb0579f2"},"location":{"coordinates":[-74.1370547,40.6246115],"type":"Point"},"name":"Kfc"} +,{"_id":{"$oid":"55cba2476c522cafdb0579f3"},"location":{"coordinates":[-73.9184054,40.8165333],"type":"Point"},"name":"Kfc"} +,{"_id":{"$oid":"55cba2476c522cafdb0579f4"},"location":{"coordinates":[-74.0161844,40.6426461],"type":"Point"},"name":"Breeze Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0579f5"},"location":{"coordinates":[-73.92327399999999,40.760681],"type":"Point"},"name":"Sunrise"} +,{"_id":{"$oid":"55cba2476c522cafdb0579f6"},"location":{"coordinates":[-74.006455,40.734248],"type":"Point"},"name":"Swine"} +,{"_id":{"$oid":"55cba2476c522cafdb0579f7"},"location":{"coordinates":[-73.6679269,40.688575],"type":"Point"},"name":"Surf Shack"} +,{"_id":{"$oid":"55cba2476c522cafdb0579f8"},"location":{"coordinates":[-73.9839547,40.7443019],"type":"Point"},"name":"Tavern 29"} +,{"_id":{"$oid":"55cba2476c522cafdb0579f9"},"location":{"coordinates":[-73.9547278,40.7803316],"type":"Point"},"name":"Bocado Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0579fa"},"location":{"coordinates":[-74.009377,40.618827],"type":"Point"},"name":"Tryst Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb0579fb"},"location":{"coordinates":[-73.9742459,40.675714],"type":"Point"},"name":"Cafe Dada"} +,{"_id":{"$oid":"55cba2476c522cafdb0579fc"},"location":{"coordinates":[-73.9996043,40.7287099],"type":"Point"},"name":"Toloache"} +,{"_id":{"$oid":"55cba2476c522cafdb0579fd"},"location":{"coordinates":[-73.9742747,40.7642202],"type":"Point"},"name":"Frannie'S Yoart"} +,{"_id":{"$oid":"55cba2476c522cafdb0579fe"},"location":{"coordinates":[-73.972096,40.7563609],"type":"Point"},"name":"The National"} +,{"_id":{"$oid":"55cba2476c522cafdb0579ff"},"location":{"coordinates":[-73.9022782,40.8191659],"type":"Point"},"name":"Delicious Juice Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb057a00"},"location":{"coordinates":[-73.9955805,40.7370866],"type":"Point"},"name":"Potbelly Sandwich Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb057a01"},"location":{"coordinates":[-73.97073379999999,40.7571834],"type":"Point"},"name":"Potbelly Sandwich Works"} +,{"_id":{"$oid":"55cba2476c522cafdb057a02"},"location":{"coordinates":[-73.9623046,40.7995416],"type":"Point"},"name":"Lura"} +,{"_id":{"$oid":"55cba2476c522cafdb057a03"},"location":{"coordinates":[-73.97677279999999,40.7630139],"type":"Point"},"name":"Potbelly Sandwich Works"} +,{"_id":{"$oid":"55cba2476c522cafdb057a04"},"location":{"coordinates":[-73.8635742,40.7282047],"type":"Point"},"name":"Morning Glory Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb057a05"},"location":{"coordinates":[-73.98070729999999,40.75612770000001],"type":"Point"},"name":"The Cock \u0026 Bull"} +,{"_id":{"$oid":"55cba2476c522cafdb057a06"},"location":{"coordinates":[-73.817238,40.751569],"type":"Point"},"name":"Delicias Pizza And Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb057a07"},"location":{"coordinates":[-73.994013,40.694482],"type":"Point"},"name":"Starbucks Coffee Company"} +,{"_id":{"$oid":"55cba2476c522cafdb057a08"},"location":{"coordinates":[-73.913381,40.766266],"type":"Point"},"name":"Mazag Hookah Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb057a09"},"location":{"coordinates":[-73.7711693,40.7644434],"type":"Point"},"name":"D'Alessandro'S Corner Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb057a0a"},"location":{"coordinates":[-73.857017,40.751499],"type":"Point"},"name":"Prolonga Tu Vida"} +,{"_id":{"$oid":"55cba2476c522cafdb057a0b"},"location":{"coordinates":[-73.85937,40.752574],"type":"Point"},"name":"The King Of Empanadas"} +,{"_id":{"$oid":"55cba2476c522cafdb057a0c"},"location":{"coordinates":[-73.95283239999999,40.7675668],"type":"Point"},"name":"Tanoshi"} +,{"_id":{"$oid":"55cba2476c522cafdb057a0d"},"location":{"coordinates":[-73.92349399999999,40.706685],"type":"Point"},"name":"The Cobra Club"} +,{"_id":{"$oid":"55cba2476c522cafdb057a0e"},"location":{"coordinates":[-73.87240609999999,40.7513323],"type":"Point"},"name":"Emily Bar Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057a0f"},"location":{"coordinates":[-74.0065429,40.628389],"type":"Point"},"name":"Q \u0026 L Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb057a10"},"location":{"coordinates":[-73.9670062,40.6339835],"type":"Point"},"name":"Famous Pita"} +,{"_id":{"$oid":"55cba2476c522cafdb057a11"},"location":{"coordinates":[-73.98846309999999,40.7383813],"type":"Point"},"name":"Gramercy Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb057a12"},"location":{"coordinates":[-73.991368,40.7369648],"type":"Point"},"name":"Union Square Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057a13"},"location":{"coordinates":[-73.999026,40.6763488],"type":"Point"},"name":"Kumo Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb057a14"},"location":{"coordinates":[-73.82186999999999,40.676289],"type":"Point"},"name":"Masala Guyanese Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb057a15"},"location":{"coordinates":[-74.00744399999999,40.715858],"type":"Point"},"name":"Mehtaphor"} +,{"_id":{"$oid":"55cba2476c522cafdb057a16"},"location":{"coordinates":[-73.9501002,40.6816125],"type":"Point"},"name":"M.A'S Fish \u0026 Chips Plus"} +,{"_id":{"$oid":"55cba2476c522cafdb057a17"},"location":{"coordinates":[-73.9594779,40.6549693],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb057a18"},"location":{"coordinates":[-73.983507,40.673157],"type":"Point"},"name":"Events At Stone Park"} +,{"_id":{"$oid":"55cba2476c522cafdb057a19"},"location":{"coordinates":[-73.912919,40.7668184],"type":"Point"},"name":"Jasmin Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb057a1a"},"location":{"coordinates":[-73.8037262,40.7620502],"type":"Point"},"name":"Hyung Je Haejank Guk"} +,{"_id":{"$oid":"55cba2476c522cafdb057a1b"},"location":{"coordinates":[-73.9715141,40.7955465],"type":"Point"},"name":"Texas Rotisserie \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb057a1c"},"location":{"coordinates":[-73.9879945,40.733615],"type":"Point"},"name":"Beyond Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb057a1d"},"location":{"coordinates":[-73.829342,40.7570059],"type":"Point"},"name":"Tian Mei"} +,{"_id":{"$oid":"55cba2476c522cafdb057a1e"},"location":{"coordinates":[-73.784879,40.727661],"type":"Point"},"name":"Royal Caterers"} +,{"_id":{"$oid":"55cba2476c522cafdb057a1f"},"location":{"coordinates":[-73.99621859999999,40.6950374],"type":"Point"},"name":"Dellarocco'S Of Brooklyn"} +,{"_id":{"$oid":"55cba2476c522cafdb057a20"},"location":{"coordinates":[-73.9896947,40.7261659],"type":"Point"},"name":"Calliope"} +,{"_id":{"$oid":"55cba2476c522cafdb057a21"},"location":{"coordinates":[-73.939059,40.6799287],"type":"Point"},"name":"Ric'S Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb057a22"},"location":{"coordinates":[-73.8829228,40.7560748],"type":"Point"},"name":"Original Mama'S Empanadas"} +,{"_id":{"$oid":"55cba2476c522cafdb057a23"},"location":{"coordinates":[-73.9165575,40.8501632],"type":"Point"},"name":"Grand No. 1 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057a24"},"location":{"coordinates":[-73.9932872,40.7602619],"type":"Point"},"name":"Mchale'S Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb057a25"},"location":{"coordinates":[-73.96220029999999,40.6788593],"type":"Point"},"name":"Puerto Viejo Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057a26"},"location":{"coordinates":[-73.8437976,40.8630966],"type":"Point"},"name":"Fratelli Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057a27"},"location":{"coordinates":[-73.97377469999999,40.7598045],"type":"Point"},"name":"Essen"} +,{"_id":{"$oid":"55cba2476c522cafdb057a28"},"location":{"coordinates":[-73.9956289,40.74876],"type":"Point"},"name":"374 Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb057a29"},"location":{"coordinates":[-73.9914142,40.7145175],"type":"Point"},"name":"Forgtmenot"} +,{"_id":{"$oid":"55cba2476c522cafdb057a2a"},"location":{"coordinates":[-73.8231093,40.7646232],"type":"Point"},"name":"Sweets Boutique Bakery \u0026 Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057a2b"},"location":{"coordinates":[-73.9176402,40.7048689],"type":"Point"},"name":"Barcey'S Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb057a2c"},"location":{"coordinates":[-73.7395761,40.6600483],"type":"Point"},"name":"Kozy Korner"} +,{"_id":{"$oid":"55cba2476c522cafdb057a2d"},"location":{"coordinates":[-73.94206550000001,40.6678315],"type":"Point"},"name":"Holsome Bagel"} +,{"_id":{"$oid":"55cba2476c522cafdb057a2e"},"location":{"coordinates":[-73.8741447,40.7580176],"type":"Point"},"name":"Markie B'S Jamaican Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb057a2f"},"location":{"coordinates":[-73.83843689999999,40.6527973],"type":"Point"},"name":"Howard Beach Bagel Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057a30"},"location":{"coordinates":[-73.9503412,40.7112458],"type":"Point"},"name":"Dar 525"} +,{"_id":{"$oid":"55cba2476c522cafdb057a31"},"location":{"coordinates":[-74.0029586,40.7445494],"type":"Point"},"name":"Bocca Di Bacco"} +,{"_id":{"$oid":"55cba2476c522cafdb057a32"},"location":{"coordinates":[-73.920497,40.76682479999999],"type":"Point"},"name":"Cafe To Go"} +,{"_id":{"$oid":"55cba2476c522cafdb057a33"},"location":{"coordinates":[-74.00973950000001,40.7039923],"type":"Point"},"name":"Guardian Life Employee Cafeteria"} +,{"_id":{"$oid":"55cba2476c522cafdb057a34"},"location":{"coordinates":[-73.9839689,40.7520904],"type":"Point"},"name":"Joy Curry \u0026 Tandoor"} +,{"_id":{"$oid":"55cba2476c522cafdb057a35"},"location":{"coordinates":[-73.9990961,40.6100977],"type":"Point"},"name":"Happy \u0026 Healthy"} +,{"_id":{"$oid":"55cba2476c522cafdb057a36"},"location":{"coordinates":[-73.9559736,40.8030984],"type":"Point"},"name":"Jado Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb057a37"},"location":{"coordinates":[-74.00892689999999,40.7133533],"type":"Point"},"name":"27 Shinjuku Sushi Inc"} +,{"_id":{"$oid":"55cba2476c522cafdb057a38"},"location":{"coordinates":[-73.9717036,40.7598454],"type":"Point"},"name":"The Coffee Bean \u0026 Tea Leaf"} +,{"_id":{"$oid":"55cba2476c522cafdb057a39"},"location":{"coordinates":[-73.7668913,40.6821835],"type":"Point"},"name":"Edge Bar \u0026 Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb057a3a"},"location":{"coordinates":[-73.8964151,40.6784682],"type":"Point"},"name":"Macorix Restaurant Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb057a3b"},"location":{"coordinates":[-73.9879344,40.7239155],"type":"Point"},"name":"Hade Bade"} +,{"_id":{"$oid":"55cba2476c522cafdb057a3c"},"location":{"coordinates":[-73.86161799999999,40.885091],"type":"Point"},"name":"Infinity Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb057a3d"},"location":{"coordinates":[-73.956801,40.7781335],"type":"Point"},"name":"Thai @ Lex"} +,{"_id":{"$oid":"55cba2476c522cafdb057a3e"},"location":{"coordinates":[-74.001206,40.7293393],"type":"Point"},"name":"Coffee Bean Tea \u0026 Leaf"} +,{"_id":{"$oid":"55cba2476c522cafdb057a3f"},"location":{"coordinates":[-73.9696649,40.79812889999999],"type":"Point"},"name":"Cool Fresh Juice Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb057a40"},"location":{"coordinates":[-73.97689919999999,40.7548319],"type":"Point"},"name":"Uncle Pauls Pizza Ny"} +,{"_id":{"$oid":"55cba2476c522cafdb057a41"},"location":{"coordinates":[-73.98627359999999,40.7476713],"type":"Point"},"name":"Maru"} +,{"_id":{"$oid":"55cba2476c522cafdb057a42"},"location":{"coordinates":[-73.969291,40.756594],"type":"Point"},"name":"Somethin' Jazz Club"} +,{"_id":{"$oid":"55cba2476c522cafdb057a43"},"location":{"coordinates":[-73.94255900000002,40.668384],"type":"Point"},"name":"Sweet Expressions"} +,{"_id":{"$oid":"55cba2476c522cafdb057a44"},"location":{"coordinates":[-73.8056414,40.8715846],"type":"Point"},"name":"Havana Cafe (Section 5)"} +,{"_id":{"$oid":"55cba2476c522cafdb057a45"},"location":{"coordinates":[-73.8056414,40.8715846],"type":"Point"},"name":"Havana Cafe (Section 10)"} +,{"_id":{"$oid":"55cba2476c522cafdb057a46"},"location":{"coordinates":[-73.7609152,40.72044],"type":"Point"},"name":"Hillside Hot Bagels"} +,{"_id":{"$oid":"55cba2476c522cafdb057a47"},"location":{"coordinates":[-74.1660553,40.5823983],"type":"Point"},"name":"Doc Popcorn"} +,{"_id":{"$oid":"55cba2476c522cafdb057a48"},"location":{"coordinates":[-73.96263019999999,40.7120808],"type":"Point"},"name":"Bedford Baking Studio"} +,{"_id":{"$oid":"55cba2476c522cafdb057a49"},"location":{"coordinates":[-73.9795085,40.6773514],"type":"Point"},"name":"Brooklyn Crepe And Juice"} +,{"_id":{"$oid":"55cba2476c522cafdb057a4a"},"location":{"coordinates":[-73.77038,40.761713],"type":"Point"},"name":"Bareburger"} +,{"_id":{"$oid":"55cba2476c522cafdb057a4b"},"location":{"coordinates":[-73.8414835,40.8409501],"type":"Point"},"name":"Legacy Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb057a4c"},"location":{"coordinates":[-73.88485659999999,40.7643467],"type":"Point"},"name":"Kings Taste Of Astoria"} +,{"_id":{"$oid":"55cba2476c522cafdb057a4d"},"location":{"coordinates":[-74.16423979999999,40.5910441],"type":"Point"},"name":"Qdoba Mexican Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb057a4e"},"location":{"coordinates":[-73.9843207,40.7605538],"type":"Point"},"name":"Sbarro"} +,{"_id":{"$oid":"55cba2476c522cafdb057a4f"},"location":{"coordinates":[-73.957854,40.7129537],"type":"Point"},"name":"Nuovo Fiore"} +,{"_id":{"$oid":"55cba2476c522cafdb057a50"},"location":{"coordinates":[-73.9573916,40.7177706],"type":"Point"},"name":"Oasis Williamsburg"} +,{"_id":{"$oid":"55cba2476c522cafdb057a51"},"location":{"coordinates":[-74.00682599999999,40.7428114],"type":"Point"},"name":"People'S Pops"} +,{"_id":{"$oid":"55cba2476c522cafdb057a52"},"location":{"coordinates":[-74.0134798,40.6275189],"type":"Point"},"name":"Maria Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb057a53"},"location":{"coordinates":[-73.91151479999999,40.7624259],"type":"Point"},"name":"Markis Place"} +,{"_id":{"$oid":"55cba2476c522cafdb057a54"},"location":{"coordinates":[-73.9939151,40.7359258],"type":"Point"},"name":"Famous Ben'S Pizza Of Soho"} +,{"_id":{"$oid":"55cba2476c522cafdb057a55"},"location":{"coordinates":[-74.007032,40.7196857],"type":"Point"},"name":"Girello"} +,{"_id":{"$oid":"55cba2476c522cafdb057a56"},"location":{"coordinates":[-73.7462228,40.71577569999999],"type":"Point"},"name":"Eastern Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057a57"},"location":{"coordinates":[-74.0011067,40.7365117],"type":"Point"},"name":"Rosemary'S"} +,{"_id":{"$oid":"55cba2476c522cafdb057a58"},"location":{"coordinates":[-74.000385,40.636179],"type":"Point"},"name":"Progreso Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057a59"},"location":{"coordinates":[-74.00008199999999,40.734346],"type":"Point"},"name":"Niu Noodle House"} +,{"_id":{"$oid":"55cba2476c522cafdb057a5a"},"location":{"coordinates":[-73.8933073,40.754667],"type":"Point"},"name":"Alton'S Pizza \u0026 Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb057a5b"},"location":{"coordinates":[-73.9142598,40.7643685],"type":"Point"},"name":"Delphins Foods"} +,{"_id":{"$oid":"55cba2476c522cafdb057a5c"},"location":{"coordinates":[-73.9906797,40.7501636],"type":"Point"},"name":"Sbarro"} +,{"_id":{"$oid":"55cba2476c522cafdb057a5d"},"location":{"coordinates":[-73.7125286,40.73667630000001],"type":"Point"},"name":"Sunshine Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057a5e"},"location":{"coordinates":[-73.9007417,40.7023023],"type":"Point"},"name":"Norma'S"} +,{"_id":{"$oid":"55cba2476c522cafdb057a5f"},"location":{"coordinates":[-73.91719599999999,40.6205671],"type":"Point"},"name":"Fontana'S Pasta And Heros"} +,{"_id":{"$oid":"55cba2476c522cafdb057a60"},"location":{"coordinates":[-73.9802564,40.7518458],"type":"Point"},"name":"Essen"} +,{"_id":{"$oid":"55cba2476c522cafdb057a61"},"location":{"coordinates":[-73.9851819,40.76308849999999],"type":"Point"},"name":"Tutti Frutti Frozen Yogurt"} +,{"_id":{"$oid":"55cba2476c522cafdb057a62"},"location":{"coordinates":[-73.892102,40.6482082],"type":"Point"},"name":"Peking Chef"} +,{"_id":{"$oid":"55cba2476c522cafdb057a63"},"location":{"coordinates":[-73.887976,40.853711],"type":"Point"},"name":"Fruit And Vegetables Anayelys Boutique"} +,{"_id":{"$oid":"55cba2476c522cafdb057a64"},"location":{"coordinates":[-73.9569075,40.7779786],"type":"Point"},"name":"Le Churro"} +,{"_id":{"$oid":"55cba2476c522cafdb057a65"},"location":{"coordinates":[-73.9532074,40.7754699],"type":"Point"},"name":"The Penrose"} +,{"_id":{"$oid":"55cba2476c522cafdb057a66"},"location":{"coordinates":[-73.9561281,40.587784],"type":"Point"},"name":"Puff Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057a67"},"location":{"coordinates":[-73.9435414,40.8263004],"type":"Point"},"name":"Mama K'S Soup Or Salad"} +,{"_id":{"$oid":"55cba2476c522cafdb057a68"},"location":{"coordinates":[-73.985756,40.734793],"type":"Point"},"name":"La Paloma Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057a69"},"location":{"coordinates":[-73.9843815,40.7472094],"type":"Point"},"name":"La Vie En Szechuan Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057a6a"},"location":{"coordinates":[-73.98616969999999,40.6029632],"type":"Point"},"name":"Empire House Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057a6b"},"location":{"coordinates":[-73.94060499999999,40.7616947],"type":"Point"},"name":"Napoli Pizza And Pasta"} +,{"_id":{"$oid":"55cba2476c522cafdb057a6c"},"location":{"coordinates":[-73.909008,40.8515313],"type":"Point"},"name":"Cr Salud Natural Y Multiservicios"} +,{"_id":{"$oid":"55cba2476c522cafdb057a6d"},"location":{"coordinates":[-73.942303,40.7952778],"type":"Point"},"name":"New Dragon Town Of Manhattan"} +,{"_id":{"$oid":"55cba2476c522cafdb057a6e"},"location":{"coordinates":[-73.99793249999999,40.6052484],"type":"Point"},"name":"China King"} +,{"_id":{"$oid":"55cba2476c522cafdb057a6f"},"location":{"coordinates":[-73.9298117,40.6706785],"type":"Point"},"name":"East Coast Remix"} +,{"_id":{"$oid":"55cba2476c522cafdb057a70"},"location":{"coordinates":[-73.9390568,40.8509392],"type":"Point"},"name":"Bangkok Heights"} +,{"_id":{"$oid":"55cba2476c522cafdb057a71"},"location":{"coordinates":[-74.0055055,40.7101506],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb057a72"},"location":{"coordinates":[-73.91499979999999,40.7522272],"type":"Point"},"name":"Italian Affair"} +,{"_id":{"$oid":"55cba2476c522cafdb057a73"},"location":{"coordinates":[-73.97846030000001,40.7826187],"type":"Point"},"name":"Sugar And Plumm"} +,{"_id":{"$oid":"55cba2476c522cafdb057a74"},"location":{"coordinates":[-73.8107477,40.7312471],"type":"Point"},"name":"Eastern"} +,{"_id":{"$oid":"55cba2476c522cafdb057a75"},"location":{"coordinates":[-74.0035606,40.7428034],"type":"Point"},"name":"Papa Kebab"} +,{"_id":{"$oid":"55cba2476c522cafdb057a76"},"location":{"coordinates":[-73.7953162,40.7021631],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb057a77"},"location":{"coordinates":[-73.8095444,40.7198425],"type":"Point"},"name":"Salad Shack"} +,{"_id":{"$oid":"55cba2476c522cafdb057a78"},"location":{"coordinates":[-73.96264649999999,40.6129356],"type":"Point"},"name":"Moldova"} +,{"_id":{"$oid":"55cba2476c522cafdb057a79"},"location":{"coordinates":[-73.8794738,40.7482253],"type":"Point"},"name":"Casa Colombia Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057a7a"},"location":{"coordinates":[-74.0008579,40.7174247],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb057a7b"},"location":{"coordinates":[-74.0009353,40.7234512],"type":"Point"},"name":"Onassis Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057a7c"},"location":{"coordinates":[-73.78724749999999,40.6910547],"type":"Point"},"name":"York College Cafeteria"} +,{"_id":{"$oid":"55cba2476c522cafdb057a7d"},"location":{"coordinates":[-73.9524247,40.5870038],"type":"Point"},"name":"Esquire Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb057a7e"},"location":{"coordinates":[-73.95340639999999,40.7304565],"type":"Point"},"name":"Adelina'S"} +,{"_id":{"$oid":"55cba2476c522cafdb057a7f"},"location":{"coordinates":[-73.9887284,40.770473],"type":"Point"},"name":"Jj'S Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057a80"},"location":{"coordinates":[-74.0312644,40.6223584],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb057a81"},"location":{"coordinates":[-73.984638,40.7372057],"type":"Point"},"name":"Gramercy Bagel"} +,{"_id":{"$oid":"55cba2476c522cafdb057a82"},"location":{"coordinates":[-73.9814446,40.7640435],"type":"Point"},"name":"Cafe Oliviero"} +,{"_id":{"$oid":"55cba2476c522cafdb057a83"},"location":{"coordinates":[-73.9673814,40.63341399999999],"type":"Point"},"name":"Bahar Masala"} +,{"_id":{"$oid":"55cba2476c522cafdb057a84"},"location":{"coordinates":[-73.9736983,40.6862331],"type":"Point"},"name":"Prospect"} +,{"_id":{"$oid":"55cba2476c522cafdb057a85"},"location":{"coordinates":[-73.8992679,40.8259754],"type":"Point"},"name":"King'S Chef Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057a86"},"location":{"coordinates":[-73.99279159999999,40.747471],"type":"Point"},"name":"Cafe Guy \u0026 Gallard"} +,{"_id":{"$oid":"55cba2476c522cafdb057a87"},"location":{"coordinates":[-73.98316179999999,40.727317],"type":"Point"},"name":"Tacos Morelos"} +,{"_id":{"$oid":"55cba2476c522cafdb057a88"},"location":{"coordinates":[-73.97896,40.7640254],"type":"Point"},"name":"Chop'T"} +,{"_id":{"$oid":"55cba2476c522cafdb057a89"},"location":{"coordinates":[-73.9799635,40.6766802],"type":"Point"},"name":"Zito'S Sandwich Shoppe"} +,{"_id":{"$oid":"55cba2476c522cafdb057a8a"},"location":{"coordinates":[-73.9413517,40.71168],"type":"Point"},"name":"La Gringa"} +,{"_id":{"$oid":"55cba2476c522cafdb057a8b"},"location":{"coordinates":[-73.8336125,40.7559127],"type":"Point"},"name":"Homers Taste Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057a8c"},"location":{"coordinates":[-73.9739489,40.7436315],"type":"Point"},"name":"Panini Tost Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057a8d"},"location":{"coordinates":[-74.0169032,40.6418826],"type":"Point"},"name":"The Haven"} +,{"_id":{"$oid":"55cba2476c522cafdb057a8e"},"location":{"coordinates":[-73.9616202,40.7606559],"type":"Point"},"name":"A Aso Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb057a8f"},"location":{"coordinates":[-74.0058365,40.70910060000001],"type":"Point"},"name":"Asian Wok"} +,{"_id":{"$oid":"55cba2476c522cafdb057a90"},"location":{"coordinates":[-74.0033519,40.7302398],"type":"Point"},"name":"P.S Burgers"} +,{"_id":{"$oid":"55cba2476c522cafdb057a91"},"location":{"coordinates":[-73.813255,40.765479],"type":"Point"},"name":"New Han Yang Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb057a92"},"location":{"coordinates":[-73.81779259999999,40.8309211],"type":"Point"},"name":"Brew Coffeehouse"} +,{"_id":{"$oid":"55cba2476c522cafdb057a93"},"location":{"coordinates":[-73.98169899999999,40.75073220000001],"type":"Point"},"name":"Japas 38"} +,{"_id":{"$oid":"55cba2476c522cafdb057a94"},"location":{"coordinates":[-73.9874778,40.7481797],"type":"Point"},"name":"Bleu Ele"} +,{"_id":{"$oid":"55cba2476c522cafdb057a95"},"location":{"coordinates":[-73.95354850000001,40.7719575],"type":"Point"},"name":"Iron Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb057a96"},"location":{"coordinates":[-73.8402287,40.6857145],"type":"Point"},"name":"Mario'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb057a97"},"location":{"coordinates":[-73.9183819,40.8183719],"type":"Point"},"name":"Kim Hua"} +,{"_id":{"$oid":"55cba2476c522cafdb057a98"},"location":{"coordinates":[-73.998993,40.74718060000001],"type":"Point"},"name":"Westside Brewhouse"} +,{"_id":{"$oid":"55cba2476c522cafdb057a99"},"location":{"coordinates":[-74.0069006,40.7434885],"type":"Point"},"name":"People'S Pop'S"} +,{"_id":{"$oid":"55cba2476c522cafdb057a9a"},"location":{"coordinates":[-73.9802208,40.760996],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb057a9b"},"location":{"coordinates":[-73.9412584,40.711692],"type":"Point"},"name":"Crown Grill \u0026 Salad"} +,{"_id":{"$oid":"55cba2476c522cafdb057a9c"},"location":{"coordinates":[-74.00143,40.643612],"type":"Point"},"name":"Good View Delicious Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb057a9d"},"location":{"coordinates":[-73.8660491,40.83210709999999],"type":"Point"},"name":"Yo Angel Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb057a9e"},"location":{"coordinates":[-73.7997066,40.7038108],"type":"Point"},"name":"Lets Get Juiced Lucky'S Juice Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb057a9f"},"location":{"coordinates":[-73.9793564,40.7589426],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb057aa0"},"location":{"coordinates":[-73.8327709,40.759986],"type":"Point"},"name":"Bangkok Thai Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb057aa1"},"location":{"coordinates":[-73.8715933,40.8422271],"type":"Point"},"name":"Wellness Center"} +,{"_id":{"$oid":"55cba2476c522cafdb057aa2"},"location":{"coordinates":[-73.9258068,40.8612379],"type":"Point"},"name":"Tacos \u0026 Burritos El Primito"} +,{"_id":{"$oid":"55cba2476c522cafdb057aa3"},"location":{"coordinates":[-73.9492271,40.5838777],"type":"Point"},"name":"Lundy'S Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057aa4"},"location":{"coordinates":[-73.97126899999999,40.757499],"type":"Point"},"name":"Oxford Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057aa5"},"location":{"coordinates":[-73.9665924,40.6931784],"type":"Point"},"name":"Yamashiro"} +,{"_id":{"$oid":"55cba2476c522cafdb057aa6"},"location":{"coordinates":[-73.9872409,40.7654155],"type":"Point"},"name":"Alfie'S"} +,{"_id":{"$oid":"55cba2476c522cafdb057aa7"},"location":{"coordinates":[-73.997305,40.7561275],"type":"Point"},"name":"Tampopo Catering"} +,{"_id":{"$oid":"55cba2476c522cafdb057aa8"},"location":{"coordinates":[-73.95631519999999,40.7795808],"type":"Point"},"name":"Panera Bread"} +,{"_id":{"$oid":"55cba2476c522cafdb057aa9"},"location":{"coordinates":[-74.0162369,40.7033145],"type":"Point"},"name":"Table Green"} +,{"_id":{"$oid":"55cba2476c522cafdb057aaa"},"location":{"coordinates":[-73.8634835,40.7374821],"type":"Point"},"name":"Lefrak Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb057aab"},"location":{"coordinates":[-73.9685612,40.60932400000001],"type":"Point"},"name":"Moshe'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb057aac"},"location":{"coordinates":[-73.96342179999999,40.6934457],"type":"Point"},"name":"Bergen Bagels"} +,{"_id":{"$oid":"55cba2476c522cafdb057aad"},"location":{"coordinates":[-73.9878068,40.7521724],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb057aae"},"location":{"coordinates":[-74.00840149999999,40.6191216],"type":"Point"},"name":"Tony'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb057aaf"},"location":{"coordinates":[-74.1574104,40.6117346],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb057ab0"},"location":{"coordinates":[-73.9875974,40.7267856],"type":"Point"},"name":"Zerza"} +,{"_id":{"$oid":"55cba2476c522cafdb057ab1"},"location":{"coordinates":[-73.9835546,40.5768707],"type":"Point"},"name":"Famous Rotisserie \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb057ab2"},"location":{"coordinates":[-73.98510900000001,40.671015],"type":"Point"},"name":"Luck Thai Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057ab3"},"location":{"coordinates":[-74.0162369,40.7033145],"type":"Point"},"name":"Table Green Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057ab4"},"location":{"coordinates":[-73.90275179999999,40.7498753],"type":"Point"},"name":"Gulshan Terrace"} +,{"_id":{"$oid":"55cba2476c522cafdb057ab5"},"location":{"coordinates":[-73.84603940000001,40.7203786],"type":"Point"},"name":"Martha'S Country Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb057ab6"},"location":{"coordinates":[-74.0068953,40.70999219999999],"type":"Point"},"name":"Grk Fresh Greek"} +,{"_id":{"$oid":"55cba2476c522cafdb057ab7"},"location":{"coordinates":[-73.96874129999999,40.7551499],"type":"Point"},"name":"Crave Fish Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb057ab8"},"location":{"coordinates":[-74.0070861,40.7067469],"type":"Point"},"name":"Ramen.Co"} +,{"_id":{"$oid":"55cba2476c522cafdb057ab9"},"location":{"coordinates":[-73.944558,40.792205],"type":"Point"},"name":"Little Caesars"} +,{"_id":{"$oid":"55cba2476c522cafdb057aba"},"location":{"coordinates":[-73.97737130000002,40.7515595],"type":"Point"},"name":"The Yogurt Culture Co"} +,{"_id":{"$oid":"55cba2476c522cafdb057abb"},"location":{"coordinates":[-73.9755199,40.6744718],"type":"Point"},"name":"People'S Pops"} +,{"_id":{"$oid":"55cba2476c522cafdb057abc"},"location":{"coordinates":[-74.00193550000002,40.7358761],"type":"Point"},"name":"Saturdays Surf"} +,{"_id":{"$oid":"55cba2476c522cafdb057abd"},"location":{"coordinates":[-73.9921992,40.7411152],"type":"Point"},"name":"1200 Miles"} +,{"_id":{"$oid":"55cba2476c522cafdb057abe"},"location":{"coordinates":[-73.9910491,40.743242],"type":"Point"},"name":"Tre Stelle"} +,{"_id":{"$oid":"55cba2476c522cafdb057abf"},"location":{"coordinates":[-73.9866778,40.688223],"type":"Point"},"name":"The Little Sweet Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057ac0"},"location":{"coordinates":[-73.96555889999999,40.7951002],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb057ac1"},"location":{"coordinates":[-97.40487,27.7767669],"type":"Point"},"name":"Mini Express"} +,{"_id":{"$oid":"55cba2476c522cafdb057ac2"},"location":{"coordinates":[-73.8771567,40.7371906],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb057ac3"},"location":{"coordinates":[-73.9509034,40.7080823],"type":"Point"},"name":"Williamsburg Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb057ac4"},"location":{"coordinates":[-73.9885709,40.691742],"type":"Point"},"name":"Starbucks Coffee #16608"} +,{"_id":{"$oid":"55cba2476c522cafdb057ac5"},"location":{"coordinates":[-73.9930679,40.6826601],"type":"Point"},"name":"Dassara"} +,{"_id":{"$oid":"55cba2476c522cafdb057ac6"},"location":{"coordinates":[-73.9648784,40.7720619],"type":"Point"},"name":"Salumeria Rosi Parmacotto"} +,{"_id":{"$oid":"55cba2476c522cafdb057ac7"},"location":{"coordinates":[-74.0031916,40.731208],"type":"Point"},"name":"Murray'S Cheese Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb057ac8"},"location":{"coordinates":[-73.985061,40.728405],"type":"Point"},"name":"The Bean"} +,{"_id":{"$oid":"55cba2476c522cafdb057ac9"},"location":{"coordinates":[-73.979884,40.64235499999999],"type":"Point"},"name":"Green House Restaurant \u0026 Party Hall"} +,{"_id":{"$oid":"55cba2476c522cafdb057aca"},"location":{"coordinates":[-73.94219,40.651362],"type":"Point"},"name":"Golden Star"} +,{"_id":{"$oid":"55cba2476c522cafdb057acb"},"location":{"coordinates":[-73.9959855,40.7328453],"type":"Point"},"name":"Le Pain Quotidien (Kiosk)"} +,{"_id":{"$oid":"55cba2476c522cafdb057acc"},"location":{"coordinates":[-73.9320616,40.8520015],"type":"Point"},"name":"Charlie'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb057acd"},"location":{"coordinates":[-73.8701166,40.7510008],"type":"Point"},"name":"Sarku Japan"} +,{"_id":{"$oid":"55cba2476c522cafdb057ace"},"location":{"coordinates":[-73.9878566,40.6593619],"type":"Point"},"name":"Greenwood Park"} +,{"_id":{"$oid":"55cba2476c522cafdb057acf"},"location":{"coordinates":[-73.9600902,40.8140929],"type":"Point"},"name":"Kuro Kuma Espresso \u0026 Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb057ad0"},"location":{"coordinates":[-73.98505639999999,40.7492649],"type":"Point"},"name":"The Stellan"} +,{"_id":{"$oid":"55cba2476c522cafdb057ad1"},"location":{"coordinates":[-73.7785196,40.7089594],"type":"Point"},"name":"El Jacal Mexicano Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb057ad2"},"location":{"coordinates":[-73.88235499999999,40.844641],"type":"Point"},"name":"Giovanis Big Pizza Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb057ad3"},"location":{"coordinates":[-73.9517041,40.7432457],"type":"Point"},"name":"Sweetleaf"} +,{"_id":{"$oid":"55cba2476c522cafdb057ad4"},"location":{"coordinates":[-74.011352,40.633347],"type":"Point"},"name":"Yogurt City"} +,{"_id":{"$oid":"55cba2476c522cafdb057ad5"},"location":{"coordinates":[-73.8515213,40.8723787],"type":"Point"},"name":"Mandarin Wok Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb057ad6"},"location":{"coordinates":[-73.79394839999999,40.6860815],"type":"Point"},"name":"Yummy Taco"} +,{"_id":{"$oid":"55cba2476c522cafdb057ad7"},"location":{"coordinates":[-73.9747211,40.7577175],"type":"Point"},"name":"Maloney \u0026 Porcelli"} +,{"_id":{"$oid":"55cba2476c522cafdb057ad8"},"location":{"coordinates":[-73.9557681,40.7209693],"type":"Point"},"name":"The Elm"} +,{"_id":{"$oid":"55cba2476c522cafdb057ad9"},"location":{"coordinates":[-74.1408853,40.5612533],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb057ada"},"location":{"coordinates":[-73.9376973,40.68194039999999],"type":"Point"},"name":"Brooklyn Swirl"} +,{"_id":{"$oid":"55cba2476c522cafdb057adb"},"location":{"coordinates":[-73.91178409999999,40.7752633],"type":"Point"},"name":"32 Degree Froyo Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb057adc"},"location":{"coordinates":[-74.0764379,40.6453515],"type":"Point"},"name":"1St Base Concession Stand"} +,{"_id":{"$oid":"55cba2476c522cafdb057add"},"location":{"coordinates":[-74.0764379,40.6453515],"type":"Point"},"name":"Suite Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb057ade"},"location":{"coordinates":[-74.0764379,40.6453515],"type":"Point"},"name":"Left Field Concession Stand"} +,{"_id":{"$oid":"55cba2476c522cafdb057adf"},"location":{"coordinates":[-74.0764379,40.6453515],"type":"Point"},"name":"Third Base Concession Stand"} +,{"_id":{"$oid":"55cba2476c522cafdb057ae0"},"location":{"coordinates":[-74.0764379,40.6453515],"type":"Point"},"name":"Right Field Beer Express"} +,{"_id":{"$oid":"55cba2476c522cafdb057ae1"},"location":{"coordinates":[-157.8887924,21.3158403],"type":"Point"},"name":"Au Bon Pain"} +,{"_id":{"$oid":"55cba2476c522cafdb057ae2"},"location":{"coordinates":[-73.87770309999999,40.7552722],"type":"Point"},"name":"Paraiso Saludable"} +,{"_id":{"$oid":"55cba2476c522cafdb057ae3"},"location":{"coordinates":[-74.0764379,40.6453515],"type":"Point"},"name":"Short Right Field Concession Stand"} +,{"_id":{"$oid":"55cba2476c522cafdb057ae4"},"location":{"coordinates":[-74.00649949999999,40.7398326],"type":"Point"},"name":"Spice Market"} +,{"_id":{"$oid":"55cba2476c522cafdb057ae5"},"location":{"coordinates":[-73.98864499999999,40.7552071],"type":"Point"},"name":"Hale \u0026 Hearty"} +,{"_id":{"$oid":"55cba2476c522cafdb057ae6"},"location":{"coordinates":[-73.885544,40.747795],"type":"Point"},"name":"Juventud Eterna"} +,{"_id":{"$oid":"55cba2476c522cafdb057ae7"},"location":{"coordinates":[-73.864201,40.748646],"type":"Point"},"name":"Mejorando La Salud"} +,{"_id":{"$oid":"55cba2476c522cafdb057ae8"},"location":{"coordinates":[-74.00973950000001,40.7039923],"type":"Point"},"name":"Robusta Espresso Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb057ae9"},"location":{"coordinates":[-73.95421600000002,40.804251],"type":"Point"},"name":"Reataurant La Savane"} +,{"_id":{"$oid":"55cba2476c522cafdb057aea"},"location":{"coordinates":[-73.9737975,40.5902976],"type":"Point"},"name":"Sushi Ave X"} +,{"_id":{"$oid":"55cba2476c522cafdb057aeb"},"location":{"coordinates":[-73.801827,40.760273],"type":"Point"},"name":"Jjack Bar-Room (Basement)"} +,{"_id":{"$oid":"55cba2476c522cafdb057aec"},"location":{"coordinates":[-73.88261299999999,40.666148],"type":"Point"},"name":"Loma # 3 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057aed"},"location":{"coordinates":[-73.96671649999999,40.7985827],"type":"Point"},"name":"Big Apple Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057aee"},"location":{"coordinates":[-73.92345089999999,40.6902692],"type":"Point"},"name":"Tasty Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb057aef"},"location":{"coordinates":[-73.77505219999999,40.6719027],"type":"Point"},"name":"Magic Soul Food"} +,{"_id":{"$oid":"55cba2476c522cafdb057af0"},"location":{"coordinates":[-73.98950599999999,40.718343],"type":"Point"},"name":"Leftfield"} +,{"_id":{"$oid":"55cba2476c522cafdb057af1"},"location":{"coordinates":[-74.0001898,40.6845089],"type":"Point"},"name":"Take Root"} +,{"_id":{"$oid":"55cba2476c522cafdb057af2"},"location":{"coordinates":[-73.83922199999999,40.6578552],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb057af3"},"location":{"coordinates":[-73.9809525,40.7287361],"type":"Point"},"name":"Bugs"} +,{"_id":{"$oid":"55cba2476c522cafdb057af4"},"location":{"coordinates":[-73.71808779999999,40.7352161],"type":"Point"},"name":"King Of India"} +,{"_id":{"$oid":"55cba2476c522cafdb057af5"},"location":{"coordinates":[-73.98380399999999,40.730374],"type":"Point"},"name":"Thai Terminal"} +,{"_id":{"$oid":"55cba2476c522cafdb057af6"},"location":{"coordinates":[-74.1476516,40.6095412],"type":"Point"},"name":"Cafe Del Mondo"} +,{"_id":{"$oid":"55cba2476c522cafdb057af7"},"location":{"coordinates":[-73.98966589999999,40.7336443],"type":"Point"},"name":"Glaze Teriyaki Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb057af8"},"location":{"coordinates":[-73.765484,40.6812978],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb057af9"},"location":{"coordinates":[-73.96402929999999,40.7184008],"type":"Point"},"name":"Pudge Knuckles"} +,{"_id":{"$oid":"55cba2476c522cafdb057afa"},"location":{"coordinates":[-74.001407,40.721674],"type":"Point"},"name":"Galli Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057afb"},"location":{"coordinates":[-73.9961458,40.7186459],"type":"Point"},"name":"Paris Sandwich"} +,{"_id":{"$oid":"55cba2476c522cafdb057afc"},"location":{"coordinates":[-73.9128161,40.6360828],"type":"Point"},"name":"Franks Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb057afd"},"location":{"coordinates":[-73.874067,40.74264],"type":"Point"},"name":"El Tucan"} +,{"_id":{"$oid":"55cba2476c522cafdb057afe"},"location":{"coordinates":[-73.9153189,40.7537811],"type":"Point"},"name":"Sushi X 9"} +,{"_id":{"$oid":"55cba2476c522cafdb057aff"},"location":{"coordinates":[-73.84569139999999,40.783034],"type":"Point"},"name":"Happy Town Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057b00"},"location":{"coordinates":[-73.815142,40.762528],"type":"Point"},"name":"Ya Shi Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057b01"},"location":{"coordinates":[-73.8218187,40.7533775],"type":"Point"},"name":"New Kissena Chinese Food"} +,{"_id":{"$oid":"55cba2476c522cafdb057b02"},"location":{"coordinates":[-73.9685066,40.7571103],"type":"Point"},"name":"Angelo Bellini"} +,{"_id":{"$oid":"55cba2476c522cafdb057b03"},"location":{"coordinates":[-73.8679624,40.8651938],"type":"Point"},"name":"Vesuvio Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb057b04"},"location":{"coordinates":[-73.9318764,40.8689496],"type":"Point"},"name":"La Marina"} +,{"_id":{"$oid":"55cba2476c522cafdb057b05"},"location":{"coordinates":[-73.8282729,40.7643832],"type":"Point"},"name":"Chung -Ah Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057b06"},"location":{"coordinates":[-73.968592,40.7593],"type":"Point"},"name":"Ranch1"} +,{"_id":{"$oid":"55cba2476c522cafdb057b07"},"location":{"coordinates":[-74.00432909999999,40.7214509],"type":"Point"},"name":"Everyman Espresso"} +,{"_id":{"$oid":"55cba2476c522cafdb057b08"},"location":{"coordinates":[-73.98747209999999,40.7477469],"type":"Point"},"name":"5Bar Karaoke"} +,{"_id":{"$oid":"55cba2476c522cafdb057b09"},"location":{"coordinates":[-73.769038,40.758992],"type":"Point"},"name":"Happy Day"} +,{"_id":{"$oid":"55cba2476c522cafdb057b0a"},"location":{"coordinates":[-73.82590809999999,40.7434027],"type":"Point"},"name":"Kung Fu Xiao Long Bao"} +,{"_id":{"$oid":"55cba2476c522cafdb057b0b"},"location":{"coordinates":[-74.0080433,40.7132703],"type":"Point"},"name":"Manhattan Proper"} +,{"_id":{"$oid":"55cba2476c522cafdb057b0c"},"location":{"coordinates":[-73.944949,40.791998],"type":"Point"},"name":"La Fonda Restaurant And Tapas Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb057b0d"},"location":{"coordinates":[-73.9236651,40.7677423],"type":"Point"},"name":"Tapioca Story"} +,{"_id":{"$oid":"55cba2476c522cafdb057b0e"},"location":{"coordinates":[-73.902664,40.831753],"type":"Point"},"name":"West African Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057b0f"},"location":{"coordinates":[-73.94243399999999,40.7906304],"type":"Point"},"name":"El Nuevo Caridad Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057b10"},"location":{"coordinates":[-73.902332,40.845929],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb057b11"},"location":{"coordinates":[-73.9748709,40.638485],"type":"Point"},"name":"Sonali Cafe \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057b12"},"location":{"coordinates":[-73.944503,40.699517],"type":"Point"},"name":"Genao"} +,{"_id":{"$oid":"55cba2476c522cafdb057b13"},"location":{"coordinates":[-73.9400943,40.59002110000001],"type":"Point"},"name":"Cactus"} +,{"_id":{"$oid":"55cba2476c522cafdb057b14"},"location":{"coordinates":[-73.99099149999999,40.7499318],"type":"Point"},"name":"Charley'S Grilled Subs"} +,{"_id":{"$oid":"55cba2476c522cafdb057b15"},"location":{"coordinates":[-74.00091499999999,40.6006829],"type":"Point"},"name":"Bath Beach Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb057b16"},"location":{"coordinates":[-73.9617109,40.771567],"type":"Point"},"name":"Arlington Club"} +,{"_id":{"$oid":"55cba2476c522cafdb057b17"},"location":{"coordinates":[-74.0069199,40.638368],"type":"Point"},"name":"Bds Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb057b18"},"location":{"coordinates":[-73.9741244,40.6041866],"type":"Point"},"name":"Nikki'S Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057b19"},"location":{"coordinates":[-73.9249234,40.810098],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb057b1a"},"location":{"coordinates":[-73.7265984,40.763927],"type":"Point"},"name":"Wild Cherry"} +,{"_id":{"$oid":"55cba2476c522cafdb057b1b"},"location":{"coordinates":[-73.948718,40.645402],"type":"Point"},"name":"Golden Bird"} +,{"_id":{"$oid":"55cba2476c522cafdb057b1c"},"location":{"coordinates":[-74.0798712,40.6382579],"type":"Point"},"name":"Fiesta Poblana"} +,{"_id":{"$oid":"55cba2476c522cafdb057b1d"},"location":{"coordinates":[-73.8032151,40.6745327],"type":"Point"},"name":"China King Kitchen 88"} +,{"_id":{"$oid":"55cba2476c522cafdb057b1e"},"location":{"coordinates":[-73.957504,40.598953],"type":"Point"},"name":"J-M Pizza Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb057b1f"},"location":{"coordinates":[-73.9943541,40.6019899],"type":"Point"},"name":"Kung Fu Tea"} +,{"_id":{"$oid":"55cba2476c522cafdb057b20"},"location":{"coordinates":[-73.969415,40.755512],"type":"Point"},"name":"Degrezia"} +,{"_id":{"$oid":"55cba2476c522cafdb057b21"},"location":{"coordinates":[-73.9633059,40.7982927],"type":"Point"},"name":"Imperial Pizzeria Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057b22"},"location":{"coordinates":[-73.7611304,40.6862705],"type":"Point"},"name":"Kim Po Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057b23"},"location":{"coordinates":[-73.924514,40.81009],"type":"Point"},"name":"El Arca Restaurant \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb057b24"},"location":{"coordinates":[-73.9718299,40.7511145],"type":"Point"},"name":"Alcala Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057b25"},"location":{"coordinates":[-73.9505161,40.6723828],"type":"Point"},"name":"Masago Bistro"} +,{"_id":{"$oid":"55cba2476c522cafdb057b26"},"location":{"coordinates":[-73.9962551,40.7597516],"type":"Point"},"name":"Ktchn"} +,{"_id":{"$oid":"55cba2476c522cafdb057b27"},"location":{"coordinates":[-74.08306739999999,40.604816],"type":"Point"},"name":"Indian Clove"} +,{"_id":{"$oid":"55cba2476c522cafdb057b28"},"location":{"coordinates":[-73.89978359999999,40.88662799999999],"type":"Point"},"name":"Gaelic Park"} +,{"_id":{"$oid":"55cba2476c522cafdb057b29"},"location":{"coordinates":[-73.90818019999999,40.7740271],"type":"Point"},"name":"Aji Sushi House"} +,{"_id":{"$oid":"55cba2476c522cafdb057b2a"},"location":{"coordinates":[-73.9728413,40.7536217],"type":"Point"},"name":"Macaron"} +,{"_id":{"$oid":"55cba2476c522cafdb057b2b"},"location":{"coordinates":[-73.986597,40.669605],"type":"Point"},"name":"The Owl Farm"} +,{"_id":{"$oid":"55cba2476c522cafdb057b2c"},"location":{"coordinates":[-74.01320299999999,40.627635],"type":"Point"},"name":"Fu Lai No. 1 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057b2d"},"location":{"coordinates":[-73.986312,40.75034369999999],"type":"Point"},"name":"Hampton Inn Empire State Building"} +,{"_id":{"$oid":"55cba2476c522cafdb057b2e"},"location":{"coordinates":[-74.000334,40.643953],"type":"Point"},"name":"Mei Hao Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057b2f"},"location":{"coordinates":[-73.8047601,40.7560382],"type":"Point"},"name":"New Dragon Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb057b30"},"location":{"coordinates":[-73.949764,40.780093],"type":"Point"},"name":"Noche De Margaritas Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057b31"},"location":{"coordinates":[-73.9665543,40.6294797],"type":"Point"},"name":"Turkish Express"} +,{"_id":{"$oid":"55cba2476c522cafdb057b32"},"location":{"coordinates":[-73.8937483,40.8507793],"type":"Point"},"name":"Johnny'S Pizza Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057b33"},"location":{"coordinates":[-73.84842499999999,40.69485299999999],"type":"Point"},"name":"Tajadas Bakery \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057b34"},"location":{"coordinates":[-73.9945377,40.6020743],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb057b35"},"location":{"coordinates":[-73.9095445,40.8862015],"type":"Point"},"name":"Aoyu Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb057b36"},"location":{"coordinates":[-73.98533549999999,40.6105241],"type":"Point"},"name":"Peking Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb057b37"},"location":{"coordinates":[-73.907223,40.907286],"type":"Point"},"name":"The Skyview Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057b38"},"location":{"coordinates":[-74.0075488,40.7081095],"type":"Point"},"name":"Blue Spoon"} +,{"_id":{"$oid":"55cba2476c522cafdb057b39"},"location":{"coordinates":[-73.94851799999999,40.788678],"type":"Point"},"name":"Evergreen Asian Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb057b3a"},"location":{"coordinates":[-73.982968,40.745815],"type":"Point"},"name":"The Cutting Room"} +,{"_id":{"$oid":"55cba2476c522cafdb057b3b"},"location":{"coordinates":[-74.0011667,40.7257582],"type":"Point"},"name":"Chobani Soho"} +,{"_id":{"$oid":"55cba2476c522cafdb057b3c"},"location":{"coordinates":[-74.004193,40.7511654],"type":"Point"},"name":"Pinch Food Design"} +,{"_id":{"$oid":"55cba2476c522cafdb057b3d"},"location":{"coordinates":[-73.9685492,40.7542919],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb057b3e"},"location":{"coordinates":[-73.9565786,40.5985874],"type":"Point"},"name":"El Mexicano Restaurante \u0026 Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057b3f"},"location":{"coordinates":[-73.7247661,40.7336391],"type":"Point"},"name":"Hillside Delicatessen And Caterers"} +,{"_id":{"$oid":"55cba2476c522cafdb057b40"},"location":{"coordinates":[-73.82834179999999,40.7645536],"type":"Point"},"name":"Union St Pojangmacha"} +,{"_id":{"$oid":"55cba2476c522cafdb057b41"},"location":{"coordinates":[-73.746246,40.716108],"type":"Point"},"name":"Caribbean Flavors"} +,{"_id":{"$oid":"55cba2476c522cafdb057b42"},"location":{"coordinates":[-73.84160010000001,40.6857671],"type":"Point"},"name":"Shadow Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb057b43"},"location":{"coordinates":[-73.98498719999999,40.7237135],"type":"Point"},"name":"Two Boots Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb057b44"},"location":{"coordinates":[-73.980088,40.5757959],"type":"Point"},"name":"Grimaldi'S"} +,{"_id":{"$oid":"55cba2476c522cafdb057b45"},"location":{"coordinates":[-73.88435350000002,40.8740928],"type":"Point"},"name":"New China Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb057b46"},"location":{"coordinates":[-73.9534652,40.7456749],"type":"Point"},"name":"Cyclo"} +,{"_id":{"$oid":"55cba2476c522cafdb057b47"},"location":{"coordinates":[-73.9460576,40.651129],"type":"Point"},"name":"Samuels Top Ranking Fish Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb057b48"},"location":{"coordinates":[-73.962688,40.798967],"type":"Point"},"name":"Saiguette"} +,{"_id":{"$oid":"55cba2476c522cafdb057b49"},"location":{"coordinates":[-73.849862,40.8755731],"type":"Point"},"name":"Richie Rich Caribbean Taste Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb057b4a"},"location":{"coordinates":[-73.92245059999999,40.7672007],"type":"Point"},"name":"Place Of Dreams/Herbalife"} +,{"_id":{"$oid":"55cba2476c522cafdb057b4b"},"location":{"coordinates":[-73.9708163,40.7577483],"type":"Point"},"name":"Shearman \u0026 Sterling"} +,{"_id":{"$oid":"55cba2476c522cafdb057b4c"},"location":{"coordinates":[-73.9360884,40.6222954],"type":"Point"},"name":"Jr. Bella'S Pizza \u0026 Pasta 2"} +,{"_id":{"$oid":"55cba2476c522cafdb057b4d"},"location":{"coordinates":[-73.9515483,40.7161335],"type":"Point"},"name":"Exley"} +,{"_id":{"$oid":"55cba2476c522cafdb057b4e"},"location":{"coordinates":[-73.786046,40.84684],"type":"Point"},"name":"Ale House City Island"} +,{"_id":{"$oid":"55cba2476c522cafdb057b4f"},"location":{"coordinates":[-73.992156,40.75964],"type":"Point"},"name":"Blossom Du Jour"} +,{"_id":{"$oid":"55cba2476c522cafdb057b50"},"location":{"coordinates":[-73.95920199999999,40.6531593],"type":"Point"},"name":"Green Lake Express"} +,{"_id":{"$oid":"55cba2476c522cafdb057b51"},"location":{"coordinates":[-73.9899619,40.7613505],"type":"Point"},"name":"Saigon 9 West Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057b52"},"location":{"coordinates":[-73.8897824,40.8724494],"type":"Point"},"name":"Red Star Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057b53"},"location":{"coordinates":[-73.83176069999999,40.7150367],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb057b54"},"location":{"coordinates":[-73.814415,40.765431],"type":"Point"},"name":"Cafe De Cupping"} +,{"_id":{"$oid":"55cba2476c522cafdb057b55"},"location":{"coordinates":[-73.9635,40.762265],"type":"Point"},"name":"Atami Japanese Fusion"} +,{"_id":{"$oid":"55cba2476c522cafdb057b56"},"location":{"coordinates":[-73.8994639,40.7102007],"type":"Point"},"name":"Bella Lena"} +,{"_id":{"$oid":"55cba2476c522cafdb057b57"},"location":{"coordinates":[-73.98866199999999,40.769442],"type":"Point"},"name":"Moshiko Falafel \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb057b58"},"location":{"coordinates":[-73.99230399999999,40.763467],"type":"Point"},"name":"Punjabi Tadka \u0026 Kebab"} +,{"_id":{"$oid":"55cba2476c522cafdb057b59"},"location":{"coordinates":[-73.9136068,40.7653024],"type":"Point"},"name":"Gyro Uno"} +,{"_id":{"$oid":"55cba2476c522cafdb057b5a"},"location":{"coordinates":[-74.1576494,40.6134805],"type":"Point"},"name":"Esplanade Staten Island"} +,{"_id":{"$oid":"55cba2476c522cafdb057b5b"},"location":{"coordinates":[-73.80356499999999,40.761249],"type":"Point"},"name":"Life And Hope"} +,{"_id":{"$oid":"55cba2476c522cafdb057b5c"},"location":{"coordinates":[-73.8745526,40.7343202],"type":"Point"},"name":"Tomo Japanese Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057b5d"},"location":{"coordinates":[-73.9701895,40.6468122],"type":"Point"},"name":"Lark"} +,{"_id":{"$oid":"55cba2476c522cafdb057b5e"},"location":{"coordinates":[-73.8801795,40.7501762],"type":"Point"},"name":"Tomo Japanese Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb057b5f"},"location":{"coordinates":[-73.9822236,40.7411412],"type":"Point"},"name":"Little Basil"} +,{"_id":{"$oid":"55cba2476c522cafdb057b60"},"location":{"coordinates":[-73.98940259999999,40.5995555],"type":"Point"},"name":"Audrey'S Concerto"} +,{"_id":{"$oid":"55cba2476c522cafdb057b61"},"location":{"coordinates":[-74.00553810000001,40.70893299999999],"type":"Point"},"name":"R\u0026R Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb057b62"},"location":{"coordinates":[-73.902693,40.7759659],"type":"Point"},"name":"Central"} +,{"_id":{"$oid":"55cba2476c522cafdb057b63"},"location":{"coordinates":[-73.9763009,40.6736316],"type":"Point"},"name":"La Bagel Delight"} +,{"_id":{"$oid":"55cba2476c522cafdb057b64"},"location":{"coordinates":[-73.95011,40.7489102],"type":"Point"},"name":"John Brown Serious Bbq"} +,{"_id":{"$oid":"55cba2476c522cafdb057b65"},"location":{"coordinates":[-73.919026,40.703881],"type":"Point"},"name":"Look For Healthy Energy"} +,{"_id":{"$oid":"55cba2476c522cafdb057b66"},"location":{"coordinates":[-73.93150179999999,40.6975567],"type":"Point"},"name":"Norbert'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb057b67"},"location":{"coordinates":[-73.97019499999999,40.76414399999999],"type":"Point"},"name":"Ilmulino"} +,{"_id":{"$oid":"55cba2476c522cafdb057b68"},"location":{"coordinates":[-73.9311979,40.6677896],"type":"Point"},"name":"Conrad Famous Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb057b69"},"location":{"coordinates":[-74.0120762,40.7133882],"type":"Point"},"name":"Wilmer Hale"} +,{"_id":{"$oid":"55cba2476c522cafdb057b6a"},"location":{"coordinates":[-73.8915576,40.6766153],"type":"Point"},"name":"Mi Casita Grill Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057b6b"},"location":{"coordinates":[-73.88561299999999,40.745005],"type":"Point"},"name":"Au Bon Pain"} +,{"_id":{"$oid":"55cba2476c522cafdb057b6c"},"location":{"coordinates":[-73.857198,40.74366699999999],"type":"Point"},"name":"Despierta Con Energia/Herbalife"} +,{"_id":{"$oid":"55cba2476c522cafdb057b6d"},"location":{"coordinates":[-73.9626229,40.598382],"type":"Point"},"name":"Yogurt City"} +,{"_id":{"$oid":"55cba2476c522cafdb057b6e"},"location":{"coordinates":[-73.90446299999999,40.8799332],"type":"Point"},"name":"Little Caesars"} +,{"_id":{"$oid":"55cba2476c522cafdb057b6f"},"location":{"coordinates":[-73.97099399999999,40.793661],"type":"Point"},"name":"Opai Thai"} +,{"_id":{"$oid":"55cba2476c522cafdb057b70"},"location":{"coordinates":[-73.8357281,40.8383359],"type":"Point"},"name":"Jen'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057b71"},"location":{"coordinates":[-73.937483,40.6347636],"type":"Point"},"name":"New Man Do Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057b72"},"location":{"coordinates":[-73.9604595,40.7620943],"type":"Point"},"name":"Moti Mahal Delux"} +,{"_id":{"$oid":"55cba2476c522cafdb057b73"},"location":{"coordinates":[-73.9860887,40.6763747],"type":"Point"},"name":"Shapeshifter Lab"} +,{"_id":{"$oid":"55cba2476c522cafdb057b74"},"location":{"coordinates":[-73.956336,40.6751574],"type":"Point"},"name":"Rosco'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb057b75"},"location":{"coordinates":[-73.9157524,40.76427169999999],"type":"Point"},"name":"Mmm...Thats A Wrap"} +,{"_id":{"$oid":"55cba2476c522cafdb057b76"},"location":{"coordinates":[-73.8969303,40.8634594],"type":"Point"},"name":"Corky'S Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb057b77"},"location":{"coordinates":[-73.8511542,40.6748047],"type":"Point"},"name":"New Good Taste Food"} +,{"_id":{"$oid":"55cba2476c522cafdb057b78"},"location":{"coordinates":[-73.8792988,40.8409971],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb057b79"},"location":{"coordinates":[-73.9979838,40.603945],"type":"Point"},"name":"Munchies Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057b7a"},"location":{"coordinates":[-73.9889924,40.7476968],"type":"Point"},"name":"Gregory'S Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb057b7b"},"location":{"coordinates":[-73.9890008,40.7484443],"type":"Point"},"name":"Golf \u0026 Body Nyc"} +,{"_id":{"$oid":"55cba2476c522cafdb057b7c"},"location":{"coordinates":[-73.994593,40.7206906],"type":"Point"},"name":"The Butcher'S Daughter"} +,{"_id":{"$oid":"55cba2476c522cafdb057b7d"},"location":{"coordinates":[-73.841633,40.717144],"type":"Point"},"name":"Jack \u0026 Nellie'S"} +,{"_id":{"$oid":"55cba2476c522cafdb057b7e"},"location":{"coordinates":[-73.9954637,40.7502],"type":"Point"},"name":"Jessie'S Express Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057b7f"},"location":{"coordinates":[-73.9073063,40.8867343],"type":"Point"},"name":"Tiny'S Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb057b80"},"location":{"coordinates":[-73.922069,40.8367594],"type":"Point"},"name":"Titos Empanadas Y Mas"} +,{"_id":{"$oid":"55cba2476c522cafdb057b81"},"location":{"coordinates":[-73.8572619,40.685671],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb057b82"},"location":{"coordinates":[-73.95783159999999,40.7114602],"type":"Point"},"name":"Blue Collar Hamburgers"} +,{"_id":{"$oid":"55cba2476c522cafdb057b83"},"location":{"coordinates":[-73.9109139,40.6789721],"type":"Point"},"name":"J'S Jerk Hut"} +,{"_id":{"$oid":"55cba2476c522cafdb057b84"},"location":{"coordinates":[-73.993908,40.761275],"type":"Point"},"name":"New Kam Wei"} +,{"_id":{"$oid":"55cba2476c522cafdb057b85"},"location":{"coordinates":[-73.9968884,40.7368034],"type":"Point"},"name":"Meatball Obsession"} +,{"_id":{"$oid":"55cba2476c522cafdb057b86"},"location":{"coordinates":[-74.00150529999999,40.7458922],"type":"Point"},"name":"The Meatball Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb057b87"},"location":{"coordinates":[-73.92831079999999,40.8513311],"type":"Point"},"name":"Golden City"} +,{"_id":{"$oid":"55cba2476c522cafdb057b88"},"location":{"coordinates":[-73.9838287,40.7262866],"type":"Point"},"name":"Shervin'S Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057b89"},"location":{"coordinates":[-73.95817269999999,40.6437634],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb057b8a"},"location":{"coordinates":[-73.9250339,40.8269856],"type":"Point"},"name":"Flavas International Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb057b8b"},"location":{"coordinates":[-73.9862838,40.689077],"type":"Point"},"name":"Bed-Stuy Fish Fry"} +,{"_id":{"$oid":"55cba2476c522cafdb057b8c"},"location":{"coordinates":[-73.979462,40.745289],"type":"Point"},"name":"Middle Branch"} +,{"_id":{"$oid":"55cba2476c522cafdb057b8d"},"location":{"coordinates":[-73.89507259999999,40.70217299999999],"type":"Point"},"name":"E-Chiban Sushi Japanese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057b8e"},"location":{"coordinates":[-73.9902359,40.6436534],"type":"Point"},"name":"A \u0026 K Tacos"} +,{"_id":{"$oid":"55cba2476c522cafdb057b8f"},"location":{"coordinates":[-74.0025422,40.73063140000001],"type":"Point"},"name":"Bisous, Ciao"} +,{"_id":{"$oid":"55cba2476c522cafdb057b90"},"location":{"coordinates":[-74.01099169999999,40.7151804],"type":"Point"},"name":"Chipotle Mexican Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb057b91"},"location":{"coordinates":[-73.92861500000001,40.855985],"type":"Point"},"name":"Bombonada Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057b92"},"location":{"coordinates":[-73.9193779,40.7422962],"type":"Point"},"name":"Ave Coffee House"} +,{"_id":{"$oid":"55cba2476c522cafdb057b93"},"location":{"coordinates":[-73.91907599999999,40.807174],"type":"Point"},"name":"Maria Elena Restaurant Corp"} +,{"_id":{"$oid":"55cba2476c522cafdb057b94"},"location":{"coordinates":[-73.9907157,40.7137862],"type":"Point"},"name":"12 Corners"} +,{"_id":{"$oid":"55cba2476c522cafdb057b95"},"location":{"coordinates":[-74.0118845,40.70374289999999],"type":"Point"},"name":"Potbelly Sandwich Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb057b96"},"location":{"coordinates":[-73.9853174,40.7410815],"type":"Point"},"name":"Potbelly Sandwich Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb057b97"},"location":{"coordinates":[-73.8454391,40.7842452],"type":"Point"},"name":"Mangu Patio"} +,{"_id":{"$oid":"55cba2476c522cafdb057b98"},"location":{"coordinates":[-73.98879099999999,40.66569399999999],"type":"Point"},"name":"Prospect"} +,{"_id":{"$oid":"55cba2476c522cafdb057b99"},"location":{"coordinates":[-85.1946054,40.9455974],"type":"Point"},"name":"Best Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb057b9a"},"location":{"coordinates":[-73.98996,40.717833],"type":"Point"},"name":"Zest"} +,{"_id":{"$oid":"55cba2476c522cafdb057b9b"},"location":{"coordinates":[-73.9271644,40.794065],"type":"Point"},"name":"Lucky'S Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057b9c"},"location":{"coordinates":[-96.702326,43.8332898],"type":"Point"},"name":"Checkers"} +,{"_id":{"$oid":"55cba2476c522cafdb057b9d"},"location":{"coordinates":[-74.0010291,40.7296283],"type":"Point"},"name":"Greenwich Village Comedy Club"} +,{"_id":{"$oid":"55cba2476c522cafdb057b9e"},"location":{"coordinates":[-73.9224579,40.7441205],"type":"Point"},"name":"Takesushi"} +,{"_id":{"$oid":"55cba2476c522cafdb057b9f"},"location":{"coordinates":[-73.94102409999999,40.7554085],"type":"Point"},"name":"Oh Hot Bagels \u0026 Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057ba0"},"location":{"coordinates":[-73.9666659,40.6972696],"type":"Point"},"name":"Kosher Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057ba1"},"location":{"coordinates":[-74.0066889,40.7313212],"type":"Point"},"name":"Bread"} +,{"_id":{"$oid":"55cba2476c522cafdb057ba2"},"location":{"coordinates":[-73.99792819999999,40.75305290000001],"type":"Point"},"name":"Frame Gourmet Eatery"} +,{"_id":{"$oid":"55cba2476c522cafdb057ba3"},"location":{"coordinates":[-73.9026631,40.8162122],"type":"Point"},"name":"L\u0026J Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb057ba4"},"location":{"coordinates":[-73.95783159999999,40.7114602],"type":"Point"},"name":"Lake Trout"} +,{"_id":{"$oid":"55cba2476c522cafdb057ba5"},"location":{"coordinates":[-73.905327,40.830625],"type":"Point"},"name":"Jimmy'S On The Go"} +,{"_id":{"$oid":"55cba2476c522cafdb057ba6"},"location":{"coordinates":[-73.9823198,40.7556198],"type":"Point"},"name":"Royalton Hotel"} +,{"_id":{"$oid":"55cba2476c522cafdb057ba7"},"location":{"coordinates":[-74.068523,40.592674],"type":"Point"},"name":"La Nueva Canasta"} +,{"_id":{"$oid":"55cba2476c522cafdb057ba8"},"location":{"coordinates":[-73.70278170000002,40.7519489],"type":"Point"},"name":"Green Olive Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb057ba9"},"location":{"coordinates":[-73.81948919999999,40.70227089999999],"type":"Point"},"name":"829 Bar Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057baa"},"location":{"coordinates":[-73.8801814,40.8282743],"type":"Point"},"name":"Los Dos Potrillos"} +,{"_id":{"$oid":"55cba2476c522cafdb057bab"},"location":{"coordinates":[-73.9615283,40.6547688],"type":"Point"},"name":"Mcdonald'S Restaurant #3391"} +,{"_id":{"$oid":"55cba2476c522cafdb057bac"},"location":{"coordinates":[-73.94868129999999,40.6384422],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb057bad"},"location":{"coordinates":[-73.9410575,40.8384568],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb057bae"},"location":{"coordinates":[-73.8979706,40.88384730000001],"type":"Point"},"name":"Coral'S Lp Bar Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057baf"},"location":{"coordinates":[-73.9264942,40.7031682],"type":"Point"},"name":"Sweet And Shiny"} +,{"_id":{"$oid":"55cba2476c522cafdb057bb0"},"location":{"coordinates":[-73.9285494,40.8344751],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb057bb1"},"location":{"coordinates":[-73.8876009,40.8373733],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb057bb2"},"location":{"coordinates":[-74.0074997,40.6412138],"type":"Point"},"name":"Aa Chinese Resturant"} +,{"_id":{"$oid":"55cba2476c522cafdb057bb3"},"location":{"coordinates":[-73.8237363,40.7300868],"type":"Point"},"name":"Berrylicious Frozen Yogurt \u0026 Coffee Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb057bb4"},"location":{"coordinates":[-74.0008977,40.727988],"type":"Point"},"name":"Rockin' Raw"} +,{"_id":{"$oid":"55cba2476c522cafdb057bb5"},"location":{"coordinates":[-73.9661704,40.7615119],"type":"Point"},"name":"Asian Eatery"} +,{"_id":{"$oid":"55cba2476c522cafdb057bb6"},"location":{"coordinates":[-74.002511,40.73251399999999],"type":"Point"},"name":"Barrow Street Alehouse"} +,{"_id":{"$oid":"55cba2476c522cafdb057bb7"},"location":{"coordinates":[-73.75487609999999,40.6051946],"type":"Point"},"name":"Xiang Butterflies Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057bb8"},"location":{"coordinates":[-74.10958339999999,40.6296482],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb057bb9"},"location":{"coordinates":[-73.9313423,40.7443174],"type":"Point"},"name":"Empire Express"} +,{"_id":{"$oid":"55cba2476c522cafdb057bba"},"location":{"coordinates":[-73.9625476,40.6728692],"type":"Point"},"name":"Tooker Alley"} +,{"_id":{"$oid":"55cba2476c522cafdb057bbb"},"location":{"coordinates":[-73.83369400000001,40.8686791],"type":"Point"},"name":"Joyful Dragon Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057bbc"},"location":{"coordinates":[-73.95846000000002,40.647649],"type":"Point"},"name":"Popeyes"} +,{"_id":{"$oid":"55cba2476c522cafdb057bbd"},"location":{"coordinates":[-73.9901948,40.7545989],"type":"Point"},"name":"Kabila Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057bbe"},"location":{"coordinates":[-74.0064305,40.6380424],"type":"Point"},"name":"Kung Fu Tea"} +,{"_id":{"$oid":"55cba2476c522cafdb057bbf"},"location":{"coordinates":[-73.9950601,40.72085879999999],"type":"Point"},"name":"Little Rascal"} +,{"_id":{"$oid":"55cba2476c522cafdb057bc0"},"location":{"coordinates":[-73.9203069,40.743736],"type":"Point"},"name":"Yogurtberry"} +,{"_id":{"$oid":"55cba2476c522cafdb057bc1"},"location":{"coordinates":[-73.8328389,40.6729864],"type":"Point"},"name":"Flamingo Restaurant And Mantra Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb057bc2"},"location":{"coordinates":[-73.9869981,40.7446923],"type":"Point"},"name":"Comebuy"} +,{"_id":{"$oid":"55cba2476c522cafdb057bc3"},"location":{"coordinates":[-73.92960149999999,40.6935169],"type":"Point"},"name":"Mei Wei Hong Kong Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057bc4"},"location":{"coordinates":[-74.0088627,40.7092384],"type":"Point"},"name":"59 China"} +,{"_id":{"$oid":"55cba2476c522cafdb057bc5"},"location":{"coordinates":[-73.9932109,40.7169623],"type":"Point"},"name":"Spicy Village"} +,{"_id":{"$oid":"55cba2476c522cafdb057bc6"},"location":{"coordinates":[-73.936309,40.627391],"type":"Point"},"name":"Vinnie'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb057bc7"},"location":{"coordinates":[-73.8895648,40.7492106],"type":"Point"},"name":"Paradise Biryani Pointe"} +,{"_id":{"$oid":"55cba2476c522cafdb057bc8"},"location":{"coordinates":[-73.975526,40.68380579999999],"type":"Point"},"name":"Auntie Anne'S"} +,{"_id":{"$oid":"55cba2476c522cafdb057bc9"},"location":{"coordinates":[-73.9208965,40.7629439],"type":"Point"},"name":"Sze'S Golden Dragon"} +,{"_id":{"$oid":"55cba2476c522cafdb057bca"},"location":{"coordinates":[-73.9480597,40.7459382],"type":"Point"},"name":"M. Wells Dinette"} +,{"_id":{"$oid":"55cba2476c522cafdb057bcb"},"location":{"coordinates":[-73.99725049999999,40.714733],"type":"Point"},"name":"Chatime"} +,{"_id":{"$oid":"55cba2476c522cafdb057bcc"},"location":{"coordinates":[-73.9186187,40.8384782],"type":"Point"},"name":"Cafe Cousina Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057bcd"},"location":{"coordinates":[-73.8361587,40.7688844],"type":"Point"},"name":"Sarku Japan Teriyaki \u0026 Sushi Express"} +,{"_id":{"$oid":"55cba2476c522cafdb057bce"},"location":{"coordinates":[-73.948382,40.636423],"type":"Point"},"name":"Steph Zen Restaurant And Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb057bcf"},"location":{"coordinates":[-73.9432643,40.6320522],"type":"Point"},"name":"New Best Wok No 1"} +,{"_id":{"$oid":"55cba2476c522cafdb057bd0"},"location":{"coordinates":[-73.9737301,40.7597431],"type":"Point"},"name":"Blake And Todd"} +,{"_id":{"$oid":"55cba2476c522cafdb057bd1"},"location":{"coordinates":[-73.9843195,40.72107],"type":"Point"},"name":"Prohibition Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb057bd2"},"location":{"coordinates":[-73.81382409999999,40.7897531],"type":"Point"},"name":"Cristina Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb057bd3"},"location":{"coordinates":[-74.1973,40.559734],"type":"Point"},"name":"Golden Palace Chinese Food"} +,{"_id":{"$oid":"55cba2476c522cafdb057bd4"},"location":{"coordinates":[-73.916501,40.68603],"type":"Point"},"name":"S \u0026 J Restaurant And Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb057bd5"},"location":{"coordinates":[-73.8764259,40.7505674],"type":"Point"},"name":"Nuevas Brisas Del Valle"} +,{"_id":{"$oid":"55cba2476c522cafdb057bd6"},"location":{"coordinates":[-73.97067059999999,40.7592114],"type":"Point"},"name":"Clarke'S Standard"} +,{"_id":{"$oid":"55cba2476c522cafdb057bd7"},"location":{"coordinates":[-73.9898709,40.73751],"type":"Point"},"name":"Clarke'S Standard"} +,{"_id":{"$oid":"55cba2476c522cafdb057bd8"},"location":{"coordinates":[-73.8658093,40.8598382],"type":"Point"},"name":"China Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb057bd9"},"location":{"coordinates":[-73.9439847,40.6512456],"type":"Point"},"name":"Brooklyn Jerk Center"} +,{"_id":{"$oid":"55cba2476c522cafdb057bda"},"location":{"coordinates":[-73.9837634,40.7303095],"type":"Point"},"name":"Ducks Eatery"} +,{"_id":{"$oid":"55cba2476c522cafdb057bdb"},"location":{"coordinates":[-73.9237089,40.700593],"type":"Point"},"name":"Molasses Books"} +,{"_id":{"$oid":"55cba2476c522cafdb057bdc"},"location":{"coordinates":[-74.0277747,40.6320086],"type":"Point"},"name":"King Falafel"} +,{"_id":{"$oid":"55cba2476c522cafdb057bdd"},"location":{"coordinates":[-73.805026,40.702244],"type":"Point"},"name":"Puerto Plata Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057bde"},"location":{"coordinates":[-73.835363,40.697695],"type":"Point"},"name":"Jumbo Chinese Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb057bdf"},"location":{"coordinates":[-73.8170817,40.707659],"type":"Point"},"name":"Hado Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb057be0"},"location":{"coordinates":[-73.8795526,40.6614344],"type":"Point"},"name":"Crown Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb057be1"},"location":{"coordinates":[-73.91722200000001,40.76466],"type":"Point"},"name":"Antika Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb057be2"},"location":{"coordinates":[-73.9216859,40.705535],"type":"Point"},"name":"Heavy Woods"} +,{"_id":{"$oid":"55cba2476c522cafdb057be3"},"location":{"coordinates":[-88.2437425,30.678081],"type":"Point"},"name":"Island Soft Pretzel Stop"} +,{"_id":{"$oid":"55cba2476c522cafdb057be4"},"location":{"coordinates":[-73.965491,40.762167],"type":"Point"},"name":"Cafe Fresco"} +,{"_id":{"$oid":"55cba2476c522cafdb057be5"},"location":{"coordinates":[-73.994896,40.754769],"type":"Point"},"name":"Thai Select"} +,{"_id":{"$oid":"55cba2476c522cafdb057be6"},"location":{"coordinates":[-73.95837139999999,40.7183752],"type":"Point"},"name":"16 Handles"} +,{"_id":{"$oid":"55cba2476c522cafdb057be7"},"location":{"coordinates":[-73.9485127,40.8012472],"type":"Point"},"name":"Harvist Harlem"} +,{"_id":{"$oid":"55cba2476c522cafdb057be8"},"location":{"coordinates":[-73.8868367,40.7214676],"type":"Point"},"name":"Mooney'S Public House"} +,{"_id":{"$oid":"55cba2476c522cafdb057be9"},"location":{"coordinates":[-74.1488443,40.6244425],"type":"Point"},"name":"Chock Full Of Nuts"} +,{"_id":{"$oid":"55cba2476c522cafdb057bea"},"location":{"coordinates":[-73.9824251,40.7310701],"type":"Point"},"name":"14Th Street Pizza Bagel Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057beb"},"location":{"coordinates":[-74.0059515,40.7452343],"type":"Point"},"name":"Terroir At The Porch"} +,{"_id":{"$oid":"55cba2476c522cafdb057bec"},"location":{"coordinates":[-73.8181883,40.6887968],"type":"Point"},"name":"Darbars Halal Fried Chicken \u0026 Bbq Ribs"} +,{"_id":{"$oid":"55cba2476c522cafdb057bed"},"location":{"coordinates":[-73.97964329999999,40.6423907],"type":"Point"},"name":"Ghoroa Sweets \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057bee"},"location":{"coordinates":[-73.9880886,40.7651331],"type":"Point"},"name":"Ny Fresh Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb057bef"},"location":{"coordinates":[-73.9233023,40.760773],"type":"Point"},"name":"Vanilla Sky"} +,{"_id":{"$oid":"55cba2476c522cafdb057bf0"},"location":{"coordinates":[-73.9201657,40.6493664],"type":"Point"},"name":"No1 Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057bf1"},"location":{"coordinates":[-73.986237,40.689261],"type":"Point"},"name":"New Chuang Hing"} +,{"_id":{"$oid":"55cba2476c522cafdb057bf2"},"location":{"coordinates":[-73.920824,40.6609539],"type":"Point"},"name":"Fix-U-Plate"} +,{"_id":{"$oid":"55cba2476c522cafdb057bf3"},"location":{"coordinates":[-73.7863495,40.7272458],"type":"Point"},"name":"Two Bites Bake Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb057bf4"},"location":{"coordinates":[-73.9633994,40.7752711],"type":"Point"},"name":"The Mark Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057bf5"},"location":{"coordinates":[-74.19261519999999,40.5530453],"type":"Point"},"name":"Peking Taste"} +,{"_id":{"$oid":"55cba2476c522cafdb057bf6"},"location":{"coordinates":[-73.8831919,40.743362],"type":"Point"},"name":"Dunkin Donuts, Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb057bf7"},"location":{"coordinates":[-73.9869946,40.7575842],"type":"Point"},"name":"Jekyll And Hyde Club"} +,{"_id":{"$oid":"55cba2476c522cafdb057bf8"},"location":{"coordinates":[-73.832362,40.699336],"type":"Point"},"name":"Happy Brother'S Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb057bf9"},"location":{"coordinates":[-73.9549404,40.7695628],"type":"Point"},"name":"Vegan Divas"} +,{"_id":{"$oid":"55cba2476c522cafdb057bfa"},"location":{"coordinates":[-73.83340559999999,40.7605112],"type":"Point"},"name":"Kissa Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb057bfb"},"location":{"coordinates":[-73.81464609999999,40.7620191],"type":"Point"},"name":"Kono"} +,{"_id":{"$oid":"55cba2476c522cafdb057bfc"},"location":{"coordinates":[-73.998198,40.638277],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb057bfd"},"location":{"coordinates":[-73.82565,40.745482],"type":"Point"},"name":"Shanghai Cuisine 33"} +,{"_id":{"$oid":"55cba2476c522cafdb057bfe"},"location":{"coordinates":[-73.8677704,40.75718880000001],"type":"Point"},"name":"Patio Criollo Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057bff"},"location":{"coordinates":[-73.8569133,40.7172562],"type":"Point"},"name":"Gino'S Pizzeria Of Forest Hills"} +,{"_id":{"$oid":"55cba2476c522cafdb057c00"},"location":{"coordinates":[-73.99815199999999,40.7142426],"type":"Point"},"name":"Apotheke"} +,{"_id":{"$oid":"55cba2476c522cafdb057c01"},"location":{"coordinates":[-73.9977303,40.5985349],"type":"Point"},"name":"Piccolo'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb057c02"},"location":{"coordinates":[-73.9829747,40.7247937],"type":"Point"},"name":"Josie'S Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb057c03"},"location":{"coordinates":[-73.8908948,40.7471787],"type":"Point"},"name":"Friends Corner Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057c04"},"location":{"coordinates":[-73.96340889999999,40.66931719999999],"type":"Point"},"name":"Charles Sally \u0026 Charles"} +,{"_id":{"$oid":"55cba2476c522cafdb057c05"},"location":{"coordinates":[-73.9766631,40.7554701],"type":"Point"},"name":"Jpmc Cafeteria"} +,{"_id":{"$oid":"55cba2476c522cafdb057c06"},"location":{"coordinates":[-73.9832606,40.6888707],"type":"Point"},"name":"Ganso"} +,{"_id":{"$oid":"55cba2476c522cafdb057c07"},"location":{"coordinates":[-73.927289,40.771042],"type":"Point"},"name":"El Ancla De Astoria Restaurant \u0026 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb057c08"},"location":{"coordinates":[-73.9986242,40.6256719],"type":"Point"},"name":"Sabor Andino #2"} +,{"_id":{"$oid":"55cba2476c522cafdb057c09"},"location":{"coordinates":[-73.98579149999999,40.7403701],"type":"Point"},"name":"Fika"} +,{"_id":{"$oid":"55cba2476c522cafdb057c0a"},"location":{"coordinates":[-73.9915322,40.7137157],"type":"Point"},"name":"Yue Lai Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb057c0b"},"location":{"coordinates":[-73.992068,40.755953],"type":"Point"},"name":"Tir Na Nog Bar And Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb057c0c"},"location":{"coordinates":[-74.001229,40.643782],"type":"Point"},"name":"Sabor Private Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb057c0d"},"location":{"coordinates":[-73.8598682,40.7439032],"type":"Point"},"name":"Mundo Magico"} +,{"_id":{"$oid":"55cba2476c522cafdb057c0e"},"location":{"coordinates":[-73.860055,40.754359],"type":"Point"},"name":"Nueva Esperanza"} +,{"_id":{"$oid":"55cba2476c522cafdb057c0f"},"location":{"coordinates":[-73.9516337,40.7116651],"type":"Point"},"name":"Hope Garage"} +,{"_id":{"$oid":"55cba2476c522cafdb057c10"},"location":{"coordinates":[-73.9305834,40.6184687],"type":"Point"},"name":"Battista"} +,{"_id":{"$oid":"55cba2476c522cafdb057c11"},"location":{"coordinates":[-73.9776225,40.7591122],"type":"Point"},"name":"Pulse Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057c12"},"location":{"coordinates":[-71.3665955,41.5518592],"type":"Point"},"name":"Intrepid Sea-Air-Space Museum"} +,{"_id":{"$oid":"55cba2476c522cafdb057c13"},"location":{"coordinates":[-73.9948699,40.6798782],"type":"Point"},"name":"Avlee Greek Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb057c14"},"location":{"coordinates":[-73.8645591,40.871547],"type":"Point"},"name":"Essence"} +,{"_id":{"$oid":"55cba2476c522cafdb057c15"},"location":{"coordinates":[-74.0218101,40.6449112],"type":"Point"},"name":"Cafe 58"} +,{"_id":{"$oid":"55cba2476c522cafdb057c16"},"location":{"coordinates":[-73.955253,40.772271],"type":"Point"},"name":"Saffron Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb057c17"},"location":{"coordinates":[-73.8914945,40.6723204],"type":"Point"},"name":"Happy Garden Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057c18"},"location":{"coordinates":[-73.988376,40.62051599999999],"type":"Point"},"name":"Fay Wong Cafe Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb057c19"},"location":{"coordinates":[-73.8155026,40.8306243],"type":"Point"},"name":"1005 Catering"} +,{"_id":{"$oid":"55cba2476c522cafdb057c1a"},"location":{"coordinates":[-73.9897794,40.7348529],"type":"Point"},"name":"Panera Bread Company"} +,{"_id":{"$oid":"55cba2476c522cafdb057c1b"},"location":{"coordinates":[-73.9132813,40.7563158],"type":"Point"},"name":"Bagels \u0026 Brew"} +,{"_id":{"$oid":"55cba2476c522cafdb057c1c"},"location":{"coordinates":[-73.8226044,40.7537464],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb057c1d"},"location":{"coordinates":[-73.8288464,40.760455],"type":"Point"},"name":"Dunkin Donuts \u0026 Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb057c1e"},"location":{"coordinates":[-73.958938,40.729987],"type":"Point"},"name":"Red Star"} +,{"_id":{"$oid":"55cba2476c522cafdb057c1f"},"location":{"coordinates":[-73.832105,40.84635100000001],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb057c20"},"location":{"coordinates":[-73.9941521,40.7127476],"type":"Point"},"name":"Bamboo Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057c21"},"location":{"coordinates":[-73.84575869999999,40.781201],"type":"Point"},"name":"North East New Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057c22"},"location":{"coordinates":[-73.9868281,40.7028722],"type":"Point"},"name":"Archway Cafe (Unit 114)"} +,{"_id":{"$oid":"55cba2476c522cafdb057c23"},"location":{"coordinates":[-73.99277119999999,40.7159409],"type":"Point"},"name":"Sunrise Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057c24"},"location":{"coordinates":[-73.8737273,40.7384782],"type":"Point"},"name":"Max Bakery \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057c25"},"location":{"coordinates":[-73.94514,40.791488],"type":"Point"},"name":"Bm Deli \u0026 Grocery"} +,{"_id":{"$oid":"55cba2476c522cafdb057c26"},"location":{"coordinates":[-73.9819258,40.6855771],"type":"Point"},"name":"Hollow Nickel"} +,{"_id":{"$oid":"55cba2476c522cafdb057c27"},"location":{"coordinates":[-73.961314,40.76204],"type":"Point"},"name":"Dopo East"} +,{"_id":{"$oid":"55cba2476c522cafdb057c28"},"location":{"coordinates":[-73.9719755,40.6930005],"type":"Point"},"name":"Burger Urway"} +,{"_id":{"$oid":"55cba2476c522cafdb057c29"},"location":{"coordinates":[-73.79563089999999,40.7580174],"type":"Point"},"name":"Janchi Ny"} +,{"_id":{"$oid":"55cba2476c522cafdb057c2a"},"location":{"coordinates":[-73.9005356,40.7130942],"type":"Point"},"name":"Tropical Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057c2b"},"location":{"coordinates":[-73.993383,40.719744],"type":"Point"},"name":"The Boil"} +,{"_id":{"$oid":"55cba2476c522cafdb057c2c"},"location":{"coordinates":[-73.99296389999999,40.7350383],"type":"Point"},"name":"La Maison Du Croque Monsieur"} +,{"_id":{"$oid":"55cba2476c522cafdb057c2d"},"location":{"coordinates":[-73.9795329,40.6815044],"type":"Point"},"name":"Koelner Bier Halle"} +,{"_id":{"$oid":"55cba2476c522cafdb057c2e"},"location":{"coordinates":[-73.92284699999999,40.6828936],"type":"Point"},"name":"Brooklyn Burger"} +,{"_id":{"$oid":"55cba2476c522cafdb057c2f"},"location":{"coordinates":[-73.9388057,40.8167739],"type":"Point"},"name":"B \u0026 B Restaurant Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb057c30"},"location":{"coordinates":[-73.982653,40.7308232],"type":"Point"},"name":"Joey Pepperonis Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb057c31"},"location":{"coordinates":[-73.96766149999999,40.6837999],"type":"Point"},"name":"Sahara Ark"} +,{"_id":{"$oid":"55cba2476c522cafdb057c32"},"location":{"coordinates":[-73.9838041,40.727181],"type":"Point"},"name":"Macaron Parlour"} +,{"_id":{"$oid":"55cba2476c522cafdb057c33"},"location":{"coordinates":[-73.9664591,40.6935967],"type":"Point"},"name":"The Joint On Myrtle"} +,{"_id":{"$oid":"55cba2476c522cafdb057c34"},"location":{"coordinates":[-73.9729897,40.7513679],"type":"Point"},"name":"Soba Totto"} +,{"_id":{"$oid":"55cba2476c522cafdb057c35"},"location":{"coordinates":[-73.9169386,40.7809797],"type":"Point"},"name":"Agnanti Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057c36"},"location":{"coordinates":[-73.9301018,40.6891356],"type":"Point"},"name":"New King'S Food Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057c37"},"location":{"coordinates":[-73.9973037,40.6913317],"type":"Point"},"name":"Table 87"} +,{"_id":{"$oid":"55cba2476c522cafdb057c38"},"location":{"coordinates":[-73.9801323,40.7758864],"type":"Point"},"name":"El Mitote"} +,{"_id":{"$oid":"55cba2476c522cafdb057c39"},"location":{"coordinates":[-74.1265449,40.613047],"type":"Point"},"name":"The Beer Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb057c3a"},"location":{"coordinates":[-73.8433885,40.8624737],"type":"Point"},"name":"Carbo'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb057c3b"},"location":{"coordinates":[-73.9843661,40.736684],"type":"Point"},"name":"The Stand"} +,{"_id":{"$oid":"55cba2476c522cafdb057c3c"},"location":{"coordinates":[-74.0099709,40.716076],"type":"Point"},"name":"Dirty Bird To Go"} +,{"_id":{"$oid":"55cba2476c522cafdb057c3d"},"location":{"coordinates":[-73.846299,40.780297],"type":"Point"},"name":"El Vicentino Restaurant 2"} +,{"_id":{"$oid":"55cba2476c522cafdb057c3e"},"location":{"coordinates":[-73.92078409999999,40.7432377],"type":"Point"},"name":"Malingo Restaurant \u0026 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb057c3f"},"location":{"coordinates":[-73.94420389999999,40.8237974],"type":"Point"},"name":"Victorio'S Pizza Plus"} +,{"_id":{"$oid":"55cba2476c522cafdb057c40"},"location":{"coordinates":[-73.9858119,40.72738440000001],"type":"Point"},"name":"The Organic Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb057c41"},"location":{"coordinates":[-73.9193055,40.7657462],"type":"Point"},"name":"New Yajai Thai Food"} +,{"_id":{"$oid":"55cba2476c522cafdb057c42"},"location":{"coordinates":[-73.984212,40.671212],"type":"Point"},"name":"Du Jour Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb057c43"},"location":{"coordinates":[-73.788354,40.72669459999999],"type":"Point"},"name":"Cloud 9"} +,{"_id":{"$oid":"55cba2476c522cafdb057c44"},"location":{"coordinates":[-73.907326,40.8362149],"type":"Point"},"name":"Larimar Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057c45"},"location":{"coordinates":[-73.9190857,40.8681542],"type":"Point"},"name":"Jr Primos Ii Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057c46"},"location":{"coordinates":[-73.956103,40.681447],"type":"Point"},"name":"Hadja Marley Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057c47"},"location":{"coordinates":[-73.968797,40.640666],"type":"Point"},"name":"New Punjab Restaurant \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb057c48"},"location":{"coordinates":[-73.8065012,40.6980247],"type":"Point"},"name":"New Dragon City Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb057c49"},"location":{"coordinates":[-73.964618,40.801388],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb057c4a"},"location":{"coordinates":[-73.99443889999999,40.7175313],"type":"Point"},"name":"85 Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057c4b"},"location":{"coordinates":[-74.00438199999999,40.654759],"type":"Point"},"name":"Spiro'S Cafe \u0026 Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb057c4c"},"location":{"coordinates":[-73.9639807,40.8110082],"type":"Point"},"name":"The Spot At Center Court"} +,{"_id":{"$oid":"55cba2476c522cafdb057c4d"},"location":{"coordinates":[-74.1484622,40.6251488],"type":"Point"},"name":"Papa'S"} +,{"_id":{"$oid":"55cba2476c522cafdb057c4e"},"location":{"coordinates":[-73.9535815,40.6741202],"type":"Point"},"name":"Catfish"} +,{"_id":{"$oid":"55cba2476c522cafdb057c4f"},"location":{"coordinates":[-73.8650105,40.6914788],"type":"Point"},"name":"Bonao Chimi Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057c50"},"location":{"coordinates":[-73.949653,40.675919],"type":"Point"},"name":"Connecticut Muffin"} +,{"_id":{"$oid":"55cba2476c522cafdb057c51"},"location":{"coordinates":[-74.0223736,40.6306462],"type":"Point"},"name":"Blow Hookah Lounge \u0026 Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057c52"},"location":{"coordinates":[-73.86036849999999,40.7396614],"type":"Point"},"name":"The Corner Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb057c53"},"location":{"coordinates":[-73.829342,40.7570059],"type":"Point"},"name":"Jin Feng Fish Ball"} +,{"_id":{"$oid":"55cba2476c522cafdb057c54"},"location":{"coordinates":[-73.9435716,40.6003689],"type":"Point"},"name":"Zee Bagels"} +,{"_id":{"$oid":"55cba2476c522cafdb057c55"},"location":{"coordinates":[-73.98239319999999,40.6132415],"type":"Point"},"name":"Ta 40 Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057c56"},"location":{"coordinates":[-73.9559819,40.77560140000001],"type":"Point"},"name":"Campagna Quattro Gatti"} +,{"_id":{"$oid":"55cba2476c522cafdb057c57"},"location":{"coordinates":[-73.9803472,40.743164],"type":"Point"},"name":"16 Handles"} +,{"_id":{"$oid":"55cba2476c522cafdb057c58"},"location":{"coordinates":[-73.8703032,40.7492247],"type":"Point"},"name":"Mejor Vida"} +,{"_id":{"$oid":"55cba2476c522cafdb057c59"},"location":{"coordinates":[-73.9467221,40.7892993],"type":"Point"},"name":"Dreamer'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb057c5a"},"location":{"coordinates":[-73.9626837,40.7197979],"type":"Point"},"name":"Fabbrica"} +,{"_id":{"$oid":"55cba2476c522cafdb057c5b"},"location":{"coordinates":[-73.9824143,40.6742098],"type":"Point"},"name":"Terroir Park Slope"} +,{"_id":{"$oid":"55cba2476c522cafdb057c5c"},"location":{"coordinates":[-73.9383263,40.8027906],"type":"Point"},"name":"Pizza And French Taste Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb057c5d"},"location":{"coordinates":[-73.8514393,40.693942],"type":"Point"},"name":"Golden Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb057c5e"},"location":{"coordinates":[-73.7977928,40.76074300000001],"type":"Point"},"name":"Olmsted Cafeteria- Kiosk"} +,{"_id":{"$oid":"55cba2476c522cafdb057c5f"},"location":{"coordinates":[-74.0054313,40.7156594],"type":"Point"},"name":"Atomic Wings"} +,{"_id":{"$oid":"55cba2476c522cafdb057c60"},"location":{"coordinates":[-73.91567599999999,40.757126],"type":"Point"},"name":"Los Manjares Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057c61"},"location":{"coordinates":[-73.9597465,40.7713446],"type":"Point"},"name":"Maison Kayser"} +,{"_id":{"$oid":"55cba2476c522cafdb057c62"},"location":{"coordinates":[-73.8871794,40.7647266],"type":"Point"},"name":"Tikka Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb057c63"},"location":{"coordinates":[-73.87641959999999,40.7404685],"type":"Point"},"name":"Ta' Rico"} +,{"_id":{"$oid":"55cba2476c522cafdb057c64"},"location":{"coordinates":[-73.9073081,40.8538596],"type":"Point"},"name":"$1.25 Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb057c65"},"location":{"coordinates":[-74.0766235,40.6424228],"type":"Point"},"name":"Bella Giornata"} +,{"_id":{"$oid":"55cba2476c522cafdb057c66"},"location":{"coordinates":[-73.8859658,40.8586509],"type":"Point"},"name":"Pete'S Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057c67"},"location":{"coordinates":[-73.7956437,40.7094985],"type":"Point"},"name":"Chang Pai"} +,{"_id":{"$oid":"55cba2476c522cafdb057c68"},"location":{"coordinates":[-73.9210275,40.6413138],"type":"Point"},"name":"Cinnabon / 21 Toppings"} +,{"_id":{"$oid":"55cba2476c522cafdb057c69"},"location":{"coordinates":[-73.88311279999999,40.743049],"type":"Point"},"name":"Shun Won Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057c6a"},"location":{"coordinates":[-74.0916264,40.5879082],"type":"Point"},"name":"Cafe Latte"} +,{"_id":{"$oid":"55cba2476c522cafdb057c6b"},"location":{"coordinates":[-73.96444600000001,40.6827635],"type":"Point"},"name":"Eagle City Tex Mex Chinese Food"} +,{"_id":{"$oid":"55cba2476c522cafdb057c6c"},"location":{"coordinates":[-73.99087,40.724694],"type":"Point"},"name":"Red Rooster"} +,{"_id":{"$oid":"55cba2476c522cafdb057c6d"},"location":{"coordinates":[-73.9380379,40.84063099999999],"type":"Point"},"name":"San Francisco Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057c6e"},"location":{"coordinates":[-73.9413008,40.7555661],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb057c6f"},"location":{"coordinates":[-74.020995,40.63286799999999],"type":"Point"},"name":"Beit Jeddo"} +,{"_id":{"$oid":"55cba2476c522cafdb057c70"},"location":{"coordinates":[-74.1186954,40.6288477],"type":"Point"},"name":"Rusty'S Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb057c71"},"location":{"coordinates":[-73.9587164,40.7192265],"type":"Point"},"name":"Oregano"} +,{"_id":{"$oid":"55cba2476c522cafdb057c72"},"location":{"coordinates":[-73.8039581,40.6748382],"type":"Point"},"name":"Nanking"} +,{"_id":{"$oid":"55cba2476c522cafdb057c73"},"location":{"coordinates":[-73.9238584,40.74359279999999],"type":"Point"},"name":"La Hoguera Piasa Restaurant \u0026 Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb057c74"},"location":{"coordinates":[-74.007705,40.7157109],"type":"Point"},"name":"Nish Nush"} +,{"_id":{"$oid":"55cba2476c522cafdb057c75"},"location":{"coordinates":[-73.933402,40.703085],"type":"Point"},"name":"983 Bushwick Living Room"} +,{"_id":{"$oid":"55cba2476c522cafdb057c76"},"location":{"coordinates":[-74.003322,40.749418],"type":"Point"},"name":"Avenues - The World School"} +,{"_id":{"$oid":"55cba2476c522cafdb057c77"},"location":{"coordinates":[-74.005748,40.7245559],"type":"Point"},"name":"Taureau La Sirene"} +,{"_id":{"$oid":"55cba2476c522cafdb057c78"},"location":{"coordinates":[-73.9256482,40.6981635],"type":"Point"},"name":"Omg Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb057c79"},"location":{"coordinates":[-73.90681339999999,40.7456038],"type":"Point"},"name":"Big Bear Bubble Tea"} +,{"_id":{"$oid":"55cba2476c522cafdb057c7a"},"location":{"coordinates":[-73.9574374,40.5799239],"type":"Point"},"name":"Brick Oven Bread"} +,{"_id":{"$oid":"55cba2476c522cafdb057c7b"},"location":{"coordinates":[-73.981342,40.6748226],"type":"Point"},"name":"Pork Slope"} +,{"_id":{"$oid":"55cba2476c522cafdb057c7c"},"location":{"coordinates":[-73.981202,40.744722],"type":"Point"},"name":"Spice Symphony"} +,{"_id":{"$oid":"55cba2476c522cafdb057c7d"},"location":{"coordinates":[-73.96024729999999,40.7187027],"type":"Point"},"name":"Cameo"} +,{"_id":{"$oid":"55cba2476c522cafdb057c7e"},"location":{"coordinates":[-73.8408115,40.7812795],"type":"Point"},"name":"The Buffet"} +,{"_id":{"$oid":"55cba2476c522cafdb057c7f"},"location":{"coordinates":[-73.966629,40.5974843],"type":"Point"},"name":"Posh Tomato"} +,{"_id":{"$oid":"55cba2476c522cafdb057c80"},"location":{"coordinates":[-74.0060337,40.73396880000001],"type":"Point"},"name":"The Quarter"} +,{"_id":{"$oid":"55cba2476c522cafdb057c81"},"location":{"coordinates":[-73.89437889999999,40.8506876],"type":"Point"},"name":"El Diamante Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057c82"},"location":{"coordinates":[-73.8315744,40.75868759999999],"type":"Point"},"name":"Fu Ran Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057c83"},"location":{"coordinates":[-73.92072619999999,40.7597767],"type":"Point"},"name":"Homemade Falafel"} +,{"_id":{"$oid":"55cba2476c522cafdb057c84"},"location":{"coordinates":[-73.9079891,40.7738985],"type":"Point"},"name":"Buon Appetit"} +,{"_id":{"$oid":"55cba2476c522cafdb057c85"},"location":{"coordinates":[-73.9526408,40.6504836],"type":"Point"},"name":"Yoyo Fritaille"} +,{"_id":{"$oid":"55cba2476c522cafdb057c86"},"location":{"coordinates":[-73.9967521,40.7179244],"type":"Point"},"name":"Canton Kitchen Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057c87"},"location":{"coordinates":[-74.0284216,40.6232754],"type":"Point"},"name":"Top Thai Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057c88"},"location":{"coordinates":[-74.1656347,40.5443521],"type":"Point"},"name":"Kiku Japanese Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb057c89"},"location":{"coordinates":[-74.0299697,40.6254139],"type":"Point"},"name":"Grapevine Mediterranean Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb057c8a"},"location":{"coordinates":[-94.8123284,36.9581032],"type":"Point"},"name":"A Wai Lou Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057c8b"},"location":{"coordinates":[-73.9872729,40.757658],"type":"Point"},"name":"Guy'S American Kitchen \u0026 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb057c8c"},"location":{"coordinates":[-74.00473199999999,40.728786],"type":"Point"},"name":"Houston Hall"} +,{"_id":{"$oid":"55cba2476c522cafdb057c8d"},"location":{"coordinates":[-73.91459510000001,40.8333264],"type":"Point"},"name":"Better Taste Jamaican/American Cusine"} +,{"_id":{"$oid":"55cba2476c522cafdb057c8e"},"location":{"coordinates":[-73.9918752,40.7521284],"type":"Point"},"name":"Jack Doyles Pub \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057c8f"},"location":{"coordinates":[-74.0145153,40.6366272],"type":"Point"},"name":"Golden Imperial Seafood Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057c90"},"location":{"coordinates":[-73.94387689999999,40.8255961],"type":"Point"},"name":"Branson Got Juice"} +,{"_id":{"$oid":"55cba2476c522cafdb057c91"},"location":{"coordinates":[-74.00793089999999,40.7098225],"type":"Point"},"name":"Stamina Grill \u0026 Juice Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb057c92"},"location":{"coordinates":[-73.91377299999999,40.838],"type":"Point"},"name":"Better Health Club"} +,{"_id":{"$oid":"55cba2476c522cafdb057c93"},"location":{"coordinates":[-73.99368,40.6943849],"type":"Point"},"name":"Ani Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb057c94"},"location":{"coordinates":[-73.9931464,40.66853589999999],"type":"Point"},"name":"Crop To Cup Coffee Company"} +,{"_id":{"$oid":"55cba2476c522cafdb057c95"},"location":{"coordinates":[-73.82981199999999,40.713371],"type":"Point"},"name":"Hot \u0026 Tasty"} +,{"_id":{"$oid":"55cba2476c522cafdb057c96"},"location":{"coordinates":[-73.882177,40.7642609],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb057c97"},"location":{"coordinates":[-73.869945,40.7704394],"type":"Point"},"name":"Cibo Express/Vagabond"} +,{"_id":{"$oid":"55cba2476c522cafdb057c98"},"location":{"coordinates":[-73.9798268,40.7223012],"type":"Point"},"name":"Bikinis"} +,{"_id":{"$oid":"55cba2476c522cafdb057c99"},"location":{"coordinates":[-73.8794128,40.7409168],"type":"Point"},"name":"Broadway Chinese Seafood"} +,{"_id":{"$oid":"55cba2476c522cafdb057c9a"},"location":{"coordinates":[-73.92563299999999,40.700362],"type":"Point"},"name":"Cafeteria La Mejor"} +,{"_id":{"$oid":"55cba2476c522cafdb057c9b"},"location":{"coordinates":[-73.9801263,40.7616971],"type":"Point"},"name":"Starbucks Coffee Company"} +,{"_id":{"$oid":"55cba2476c522cafdb057c9c"},"location":{"coordinates":[-73.89235959999999,40.6365321],"type":"Point"},"name":"Golden Krust Caribbean Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb057c9d"},"location":{"coordinates":[-73.98429949999999,40.7403993],"type":"Point"},"name":"Starbucks"} +,{"_id":{"$oid":"55cba2476c522cafdb057c9e"},"location":{"coordinates":[-73.8408115,40.7812795],"type":"Point"},"name":"Sal'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb057c9f"},"location":{"coordinates":[-73.97254629999999,40.7629801],"type":"Point"},"name":"Starbucks Coffee (Store 17478)"} +,{"_id":{"$oid":"55cba2476c522cafdb057ca0"},"location":{"coordinates":[-74.1487697,40.5394799],"type":"Point"},"name":"Standard Burger"} +,{"_id":{"$oid":"55cba2476c522cafdb057ca1"},"location":{"coordinates":[-74.0647391,40.6125131],"type":"Point"},"name":"The Phunky Elephant"} +,{"_id":{"$oid":"55cba2476c522cafdb057ca2"},"location":{"coordinates":[-73.9922178,40.7579922],"type":"Point"},"name":"Starbucks Coffee Company"} +,{"_id":{"$oid":"55cba2476c522cafdb057ca3"},"location":{"coordinates":[-73.9862569,40.6774293],"type":"Point"},"name":"The Pines"} +,{"_id":{"$oid":"55cba2476c522cafdb057ca4"},"location":{"coordinates":[-73.9871299,40.702622],"type":"Point"},"name":"Little Muenster'S Tiny Takeout"} +,{"_id":{"$oid":"55cba2476c522cafdb057ca5"},"location":{"coordinates":[-73.7423487,40.6958505],"type":"Point"},"name":"Kam'S Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb057ca6"},"location":{"coordinates":[-73.97523029999999,40.6831182],"type":"Point"},"name":"Brooklyn Burgercalexico"} +,{"_id":{"$oid":"55cba2476c522cafdb057ca7"},"location":{"coordinates":[-73.93764279999999,40.855234],"type":"Point"},"name":"Cafe Buunni"} +,{"_id":{"$oid":"55cba2476c522cafdb057ca8"},"location":{"coordinates":[-73.9613119,40.7140415],"type":"Point"},"name":"Rosamunde Sausage Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb057ca9"},"location":{"coordinates":[-73.9972143,40.7196123],"type":"Point"},"name":"Italian Food Center"} +,{"_id":{"$oid":"55cba2476c522cafdb057caa"},"location":{"coordinates":[-73.97523029999999,40.6831182],"type":"Point"},"name":"Champagne Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb057cab"},"location":{"coordinates":[-73.97523029999999,40.6831182],"type":"Point"},"name":"Calvin Klein Courtside Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb057cac"},"location":{"coordinates":[-73.97523029999999,40.6831182],"type":"Point"},"name":"Press Dining \u0026 Beer Room"} +,{"_id":{"$oid":"55cba2476c522cafdb057cad"},"location":{"coordinates":[-73.97523029999999,40.6831182],"type":"Point"},"name":"Boomer And Carton"} +,{"_id":{"$oid":"55cba2476c522cafdb057cae"},"location":{"coordinates":[-73.97523029999999,40.6831182],"type":"Point"},"name":"Nathan'S"} +,{"_id":{"$oid":"55cba2476c522cafdb057caf"},"location":{"coordinates":[-73.97523029999999,40.6831182],"type":"Point"},"name":"Honda/Legends Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb057cb0"},"location":{"coordinates":[-73.98143040000001,40.7321383],"type":"Point"},"name":"Red Mango"} +,{"_id":{"$oid":"55cba2476c522cafdb057cb1"},"location":{"coordinates":[-73.97523029999999,40.6831182],"type":"Point"},"name":"Junior'S Blue Marble \u0026 More"} +,{"_id":{"$oid":"55cba2476c522cafdb057cb2"},"location":{"coordinates":[-73.97523029999999,40.6831182],"type":"Point"},"name":"Brooklyn Burger \u0026 Fresco By Scotto"} +,{"_id":{"$oid":"55cba2476c522cafdb057cb3"},"location":{"coordinates":[-73.97523029999999,40.6831182],"type":"Point"},"name":"Habana Outpost"} +,{"_id":{"$oid":"55cba2476c522cafdb057cb4"},"location":{"coordinates":[-73.97523029999999,40.6831182],"type":"Point"},"name":"Buffalo Boss"} +,{"_id":{"$oid":"55cba2476c522cafdb057cb5"},"location":{"coordinates":[-73.97523029999999,40.6831182],"type":"Point"},"name":"North Club Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb057cb6"},"location":{"coordinates":[-73.97523029999999,40.6831182],"type":"Point"},"name":"Robert Mondavi Winery"} +,{"_id":{"$oid":"55cba2476c522cafdb057cb7"},"location":{"coordinates":[-73.97523029999999,40.6831182],"type":"Point"},"name":"Mgm Foxwoods Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb057cb8"},"location":{"coordinates":[-73.97523029999999,40.6831182],"type":"Point"},"name":"Juniors"} +,{"_id":{"$oid":"55cba2476c522cafdb057cb9"},"location":{"coordinates":[-73.97523029999999,40.6831182],"type":"Point"},"name":"Abigael'S Brooklyn"} +,{"_id":{"$oid":"55cba2476c522cafdb057cba"},"location":{"coordinates":[-73.97523029999999,40.6831182],"type":"Point"},"name":"Clinton Hill Burgers"} +,{"_id":{"$oid":"55cba2476c522cafdb057cbb"},"location":{"coordinates":[-73.97523029999999,40.6831182],"type":"Point"},"name":"Lower Suites Stoli Bar South Club Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb057cbc"},"location":{"coordinates":[-73.97523029999999,40.6831182],"type":"Point"},"name":"76/Beers Of Brooklyn"} +,{"_id":{"$oid":"55cba2476c522cafdb057cbd"},"location":{"coordinates":[-73.97523029999999,40.6831182],"type":"Point"},"name":"L \u0026 B Spumoni Gardens"} +,{"_id":{"$oid":"55cba2476c522cafdb057cbe"},"location":{"coordinates":[-73.97523029999999,40.6831182],"type":"Point"},"name":"Paisano'S Butcher Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb057cbf"},"location":{"coordinates":[-73.97523029999999,40.6831182],"type":"Point"},"name":"David'S K Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb057cc0"},"location":{"coordinates":[-73.9595695,40.7178403],"type":"Point"},"name":"Ramen Yebisu/Baoburg"} +,{"_id":{"$oid":"55cba2476c522cafdb057cc1"},"location":{"coordinates":[-73.97523029999999,40.6831182],"type":"Point"},"name":"Fatty Cue Bbq"} +,{"_id":{"$oid":"55cba2476c522cafdb057cc2"},"location":{"coordinates":[-73.97523029999999,40.6831182],"type":"Point"},"name":"Brooklyn Bangers \u0026 Dogs"} +,{"_id":{"$oid":"55cba2476c522cafdb057cc3"},"location":{"coordinates":[-73.97523029999999,40.6831182],"type":"Point"},"name":"L\u0026B Spumoni Gardens And Beer Room"} +,{"_id":{"$oid":"55cba2476c522cafdb057cc4"},"location":{"coordinates":[-73.97523029999999,40.6831182],"type":"Point"},"name":"Nathan'S"} +,{"_id":{"$oid":"55cba2476c522cafdb057cc5"},"location":{"coordinates":[-73.97523029999999,40.6831182],"type":"Point"},"name":"Habana Outpost (Barclay Center)"} +,{"_id":{"$oid":"55cba2476c522cafdb057cc6"},"location":{"coordinates":[-73.97523029999999,40.6831182],"type":"Point"},"name":"Brooklyn Burger"} +,{"_id":{"$oid":"55cba2476c522cafdb057cc7"},"location":{"coordinates":[-73.97523029999999,40.6831182],"type":"Point"},"name":"Brooklyn Bangers \u0026 Dogs"} +,{"_id":{"$oid":"55cba2476c522cafdb057cc8"},"location":{"coordinates":[-73.97523029999999,40.6831182],"type":"Point"},"name":"Avlee Greek Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb057cc9"},"location":{"coordinates":[-73.97523029999999,40.6831182],"type":"Point"},"name":"Upper South Suite Stoli Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb057cca"},"location":{"coordinates":[-73.97523029999999,40.6831182],"type":"Point"},"name":"North Suite Stoli Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb057ccb"},"location":{"coordinates":[-73.9528591,40.7984353],"type":"Point"},"name":"Dunkin Donut"} +,{"_id":{"$oid":"55cba2476c522cafdb057ccc"},"location":{"coordinates":[-73.97523029999999,40.6831182],"type":"Point"},"name":"Fatty Cue"} +,{"_id":{"$oid":"55cba2476c522cafdb057ccd"},"location":{"coordinates":[-74.0054881,40.7254587],"type":"Point"},"name":"Koi Soho"} +,{"_id":{"$oid":"55cba2476c522cafdb057cce"},"location":{"coordinates":[-73.97523029999999,40.6831182],"type":"Point"},"name":"Brooklyn Burger"} +,{"_id":{"$oid":"55cba2476c522cafdb057ccf"},"location":{"coordinates":[-73.9989178,40.7541045],"type":"Point"},"name":"Food Depot 12*4"} +,{"_id":{"$oid":"55cba2476c522cafdb057cd0"},"location":{"coordinates":[-73.987145,40.7194829],"type":"Point"},"name":"The Falafel Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb057cd1"},"location":{"coordinates":[-73.886054,40.8662923],"type":"Point"},"name":"Caminito Sports Bar And Billiard"} +,{"_id":{"$oid":"55cba2476c522cafdb057cd2"},"location":{"coordinates":[-73.7804838,40.7291221],"type":"Point"},"name":"Zucca Buca Frozen Yogurt"} +,{"_id":{"$oid":"55cba2476c522cafdb057cd3"},"location":{"coordinates":[-74.00410099999999,40.7377139],"type":"Point"},"name":"The Beatrice Inn"} +,{"_id":{"$oid":"55cba2476c522cafdb057cd4"},"location":{"coordinates":[-74.00504269999999,40.7113533],"type":"Point"},"name":"Starbucks"} +,{"_id":{"$oid":"55cba2476c522cafdb057cd5"},"location":{"coordinates":[-73.9912818,40.7334799],"type":"Point"},"name":"Pret A Manger"} +,{"_id":{"$oid":"55cba2476c522cafdb057cd6"},"location":{"coordinates":[-73.8864486,40.7495474],"type":"Point"},"name":"Wok Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057cd7"},"location":{"coordinates":[-73.8087592,40.7632644],"type":"Point"},"name":"Emone Korean Family Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057cd8"},"location":{"coordinates":[-73.964878,40.6937898],"type":"Point"},"name":"Sapolo Chinese \u0026 Spanish Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057cd9"},"location":{"coordinates":[-118.402039,33.9444705],"type":"Point"},"name":"Q And N Deli Food"} +,{"_id":{"$oid":"55cba2476c522cafdb057cda"},"location":{"coordinates":[-73.988597,40.764529],"type":"Point"},"name":"Ageha Japanese Fusion"} +,{"_id":{"$oid":"55cba2476c522cafdb057cdb"},"location":{"coordinates":[-73.830865,40.761004],"type":"Point"},"name":"River Japanese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057cdc"},"location":{"coordinates":[-73.8495259,40.7335644],"type":"Point"},"name":"Salute Kosher Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057cdd"},"location":{"coordinates":[-73.9039626,40.7038941],"type":"Point"},"name":"Madison'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb057cde"},"location":{"coordinates":[-74.008468,40.7167708],"type":"Point"},"name":"Sushi Of Gari Tribeca"} +,{"_id":{"$oid":"55cba2476c522cafdb057cdf"},"location":{"coordinates":[-73.8968948,40.910483],"type":"Point"},"name":"King'S Wok Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb057ce0"},"location":{"coordinates":[-74.0670938,40.5980442],"type":"Point"},"name":"Via Ponte Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb057ce1"},"location":{"coordinates":[-73.9314168,40.7444682],"type":"Point"},"name":"Fresco Deli Corp"} +,{"_id":{"$oid":"55cba2476c522cafdb057ce2"},"location":{"coordinates":[-74.031285,40.623682],"type":"Point"},"name":"Vicolo Ristorante \u0026 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb057ce3"},"location":{"coordinates":[-73.9952545,40.7209168],"type":"Point"},"name":"Cocoron"} +,{"_id":{"$oid":"55cba2476c522cafdb057ce4"},"location":{"coordinates":[-74.02326219999999,40.6272965],"type":"Point"},"name":"David'S Brisket House"} +,{"_id":{"$oid":"55cba2476c522cafdb057ce5"},"location":{"coordinates":[-73.8829256,40.74975389999999],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb057ce6"},"location":{"coordinates":[-73.97523029999999,40.6831182],"type":"Point"},"name":"Calexico"} +,{"_id":{"$oid":"55cba2476c522cafdb057ce7"},"location":{"coordinates":[-73.97523029999999,40.6831182],"type":"Point"},"name":"40/40 Club Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb057ce8"},"location":{"coordinates":[-73.987234,40.69883919999999],"type":"Point"},"name":"City Tech Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057ce9"},"location":{"coordinates":[-73.98756809999999,40.6954929],"type":"Point"},"name":"Mbj South"} +,{"_id":{"$oid":"55cba2476c522cafdb057cea"},"location":{"coordinates":[-73.9782862,40.7827637],"type":"Point"},"name":"Cafe Noi Espresso Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb057ceb"},"location":{"coordinates":[-73.98662569999999,40.6920793],"type":"Point"},"name":"Dining Room"} +,{"_id":{"$oid":"55cba2476c522cafdb057cec"},"location":{"coordinates":[-73.988908,40.728814],"type":"Point"},"name":"Waga"} +,{"_id":{"$oid":"55cba2476c522cafdb057ced"},"location":{"coordinates":[-73.7865113,40.8472646],"type":"Point"},"name":"City Island Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057cee"},"location":{"coordinates":[-73.9884892,40.7636653],"type":"Point"},"name":"The Best Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb057cef"},"location":{"coordinates":[-73.98967309999999,40.7723466],"type":"Point"},"name":"Abraham Joshua Heschel School"} +,{"_id":{"$oid":"55cba2476c522cafdb057cf0"},"location":{"coordinates":[-74.00599319999999,40.7149312],"type":"Point"},"name":"Andy'S Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb057cf1"},"location":{"coordinates":[-73.94564869999999,40.7468608],"type":"Point"},"name":"The Inkan"} +,{"_id":{"$oid":"55cba2476c522cafdb057cf2"},"location":{"coordinates":[-73.990922,40.7653572],"type":"Point"},"name":"Kare Thai"} +,{"_id":{"$oid":"55cba2476c522cafdb057cf3"},"location":{"coordinates":[-73.73679369999999,40.7690036],"type":"Point"},"name":"Northern Manor"} +,{"_id":{"$oid":"55cba2476c522cafdb057cf4"},"location":{"coordinates":[-74.1304415,40.612717],"type":"Point"},"name":"Chopstix"} +,{"_id":{"$oid":"55cba2476c522cafdb057cf5"},"location":{"coordinates":[-73.9874249,40.7295377],"type":"Point"},"name":"Kingston Hall"} +,{"_id":{"$oid":"55cba2476c522cafdb057cf6"},"location":{"coordinates":[-73.9809432,40.7520477],"type":"Point"},"name":"Marche Madison"} +,{"_id":{"$oid":"55cba2476c522cafdb057cf7"},"location":{"coordinates":[-73.8040319,40.7610935],"type":"Point"},"name":"Parksanbal Babs"} +,{"_id":{"$oid":"55cba2476c522cafdb057cf8"},"location":{"coordinates":[-73.942544,40.695896],"type":"Point"},"name":"Crown Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb057cf9"},"location":{"coordinates":[-73.94073709999999,40.711665],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb057cfa"},"location":{"coordinates":[-73.98952609999999,40.7507917],"type":"Point"},"name":"Herald Square Cafe (Starbucks)"} +,{"_id":{"$oid":"55cba2476c522cafdb057cfb"},"location":{"coordinates":[-74.0015437,40.7370027],"type":"Point"},"name":"Barraca"} +,{"_id":{"$oid":"55cba2476c522cafdb057cfc"},"location":{"coordinates":[-73.9723649,40.689436],"type":"Point"},"name":"Martha"} +,{"_id":{"$oid":"55cba2476c522cafdb057cfd"},"location":{"coordinates":[-73.9845346,40.7015745],"type":"Point"},"name":"Annies First Wok Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057cfe"},"location":{"coordinates":[-73.98762119999999,40.6679363],"type":"Point"},"name":"Pearl Gate Frozen Yogurt"} +,{"_id":{"$oid":"55cba2476c522cafdb057cff"},"location":{"coordinates":[-73.980098,40.778275],"type":"Point"},"name":"Communal Oven \u0026 Earth"} +,{"_id":{"$oid":"55cba2476c522cafdb057d00"},"location":{"coordinates":[-73.9099813,40.68234690000001],"type":"Point"},"name":"Egg Roll Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057d01"},"location":{"coordinates":[-73.9848038,40.7192718],"type":"Point"},"name":"Pig \u0026 Khao"} +,{"_id":{"$oid":"55cba2476c522cafdb057d02"},"location":{"coordinates":[-73.8834043,40.7479284],"type":"Point"},"name":"Los Tres Potrillos"} +,{"_id":{"$oid":"55cba2476c522cafdb057d03"},"location":{"coordinates":[-73.986897,40.7268932],"type":"Point"},"name":"Elsewhere Espresso"} +,{"_id":{"$oid":"55cba2476c522cafdb057d04"},"location":{"coordinates":[-73.9544829,40.6105682],"type":"Point"},"name":"Nagoya Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb057d05"},"location":{"coordinates":[-73.9994126,40.605016],"type":"Point"},"name":"Nagoya"} +,{"_id":{"$oid":"55cba2476c522cafdb057d06"},"location":{"coordinates":[-73.8400128,40.8804474],"type":"Point"},"name":"Triple T Pizza \u0026 Burgers"} +,{"_id":{"$oid":"55cba2476c522cafdb057d07"},"location":{"coordinates":[-73.98747399999999,40.690619],"type":"Point"},"name":"Sophies Cuban Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb057d08"},"location":{"coordinates":[-73.98584989999999,40.753463],"type":"Point"},"name":"Pergola"} +,{"_id":{"$oid":"55cba2476c522cafdb057d09"},"location":{"coordinates":[-73.871697,40.753729],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb057d0a"},"location":{"coordinates":[-73.98928950000001,40.7290107],"type":"Point"},"name":"Han Joo"} +,{"_id":{"$oid":"55cba2476c522cafdb057d0b"},"location":{"coordinates":[-73.93320779999999,40.7041154],"type":"Point"},"name":"Tutu'S"} +,{"_id":{"$oid":"55cba2476c522cafdb057d0c"},"location":{"coordinates":[-73.99039549999999,40.7445435],"type":"Point"},"name":"The Flatiron Room"} +,{"_id":{"$oid":"55cba2476c522cafdb057d0d"},"location":{"coordinates":[-73.93016399999999,40.656419],"type":"Point"},"name":"Simone'S Jamaican Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb057d0e"},"location":{"coordinates":[-73.9179505,40.6260774],"type":"Point"},"name":"China Star Buffet"} +,{"_id":{"$oid":"55cba2476c522cafdb057d0f"},"location":{"coordinates":[-73.9136207,40.8536768],"type":"Point"},"name":"D' Postre Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057d10"},"location":{"coordinates":[-73.955557,40.718171],"type":"Point"},"name":"Tea Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb057d11"},"location":{"coordinates":[-73.9836013,40.7642999],"type":"Point"},"name":"Extreme Blendz (Crunch)"} +,{"_id":{"$oid":"55cba2476c522cafdb057d12"},"location":{"coordinates":[-74.086062,40.597552],"type":"Point"},"name":"Mds Lunchbox"} +,{"_id":{"$oid":"55cba2476c522cafdb057d13"},"location":{"coordinates":[-73.891808,40.861508],"type":"Point"},"name":"C \u0026 M Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb057d14"},"location":{"coordinates":[-73.7560881,40.74860169999999],"type":"Point"},"name":"Red Mango"} +,{"_id":{"$oid":"55cba2476c522cafdb057d15"},"location":{"coordinates":[-73.76257609999999,40.7610342],"type":"Point"},"name":"Koryodang Bakery And Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057d16"},"location":{"coordinates":[-73.9919172,40.7224662],"type":"Point"},"name":"Coctail Bodega"} +,{"_id":{"$oid":"55cba2476c522cafdb057d17"},"location":{"coordinates":[-73.94572699999999,40.7465944],"type":"Point"},"name":"Aanchal Indian Restaurant \u0026 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb057d18"},"location":{"coordinates":[-73.9945165,40.7554026],"type":"Point"},"name":"Tavola"} +,{"_id":{"$oid":"55cba2476c522cafdb057d19"},"location":{"coordinates":[-73.97884619999999,40.7236044],"type":"Point"},"name":"Abc Beer Co."} +,{"_id":{"$oid":"55cba2476c522cafdb057d1a"},"location":{"coordinates":[-73.985007,40.7325995],"type":"Point"},"name":"Bait \u0026 Hook"} +,{"_id":{"$oid":"55cba2476c522cafdb057d1b"},"location":{"coordinates":[-73.9792642,40.7455912],"type":"Point"},"name":"S'Mac"} +,{"_id":{"$oid":"55cba2476c522cafdb057d1c"},"location":{"coordinates":[-74.0049962,40.7071539],"type":"Point"},"name":"Starbucks"} +,{"_id":{"$oid":"55cba2476c522cafdb057d1d"},"location":{"coordinates":[-73.983248,40.7308499],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb057d1e"},"location":{"coordinates":[-73.9062285,40.8797888],"type":"Point"},"name":"Kingsbridge Donut Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb057d1f"},"location":{"coordinates":[-73.9291165,40.70290380000001],"type":"Point"},"name":"Dear Bushwick"} +,{"_id":{"$oid":"55cba2476c522cafdb057d20"},"location":{"coordinates":[-73.8408115,40.7812795],"type":"Point"},"name":"Mexican Trail Fast Food"} +,{"_id":{"$oid":"55cba2476c522cafdb057d21"},"location":{"coordinates":[-73.978017,40.729012],"type":"Point"},"name":"Pouring Ribbons"} +,{"_id":{"$oid":"55cba2476c522cafdb057d22"},"location":{"coordinates":[-73.9046822,40.7455812],"type":"Point"},"name":"New Panda Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb057d23"},"location":{"coordinates":[-73.9854325,40.7360103],"type":"Point"},"name":"Aji 18"} +,{"_id":{"$oid":"55cba2476c522cafdb057d24"},"location":{"coordinates":[-73.8295407,40.7581507],"type":"Point"},"name":"Shi Li Xiang Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057d25"},"location":{"coordinates":[-73.94339769999999,40.8107821],"type":"Point"},"name":"New Ocean"} +,{"_id":{"$oid":"55cba2476c522cafdb057d26"},"location":{"coordinates":[-73.953863,40.66622599999999],"type":"Point"},"name":"J \u0026 R West Indian Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057d27"},"location":{"coordinates":[-74.00682599999999,40.7428114],"type":"Point"},"name":"Bar Suzette Creperie"} +,{"_id":{"$oid":"55cba2476c522cafdb057d28"},"location":{"coordinates":[-73.9844169,40.742291],"type":"Point"},"name":"Forcella"} +,{"_id":{"$oid":"55cba2476c522cafdb057d29"},"location":{"coordinates":[-73.99607999999999,40.72208699999999],"type":"Point"},"name":"Taim"} +,{"_id":{"$oid":"55cba2476c522cafdb057d2a"},"location":{"coordinates":[-73.973925,40.751986],"type":"Point"},"name":"696 Gourmet Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb057d2b"},"location":{"coordinates":[-73.92636689999999,40.8196623],"type":"Point"},"name":"Great Wall"} +,{"_id":{"$oid":"55cba2476c522cafdb057d2c"},"location":{"coordinates":[-73.95559999999999,40.768902],"type":"Point"},"name":"Cafe Evergreen"} +,{"_id":{"$oid":"55cba2476c522cafdb057d2d"},"location":{"coordinates":[-73.8958136,40.7465575],"type":"Point"},"name":"Perlas"} +,{"_id":{"$oid":"55cba2476c522cafdb057d2e"},"location":{"coordinates":[-73.94375819999999,40.7123014],"type":"Point"},"name":"Action Burger"} +,{"_id":{"$oid":"55cba2476c522cafdb057d2f"},"location":{"coordinates":[-73.993366,40.682651],"type":"Point"},"name":"Union Grounds"} +,{"_id":{"$oid":"55cba2476c522cafdb057d30"},"location":{"coordinates":[-73.92150869999999,40.81044079999999],"type":"Point"},"name":"Chen'S Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb057d31"},"location":{"coordinates":[-73.9152362,40.6617763],"type":"Point"},"name":"Stumpy'S Spot"} +,{"_id":{"$oid":"55cba2476c522cafdb057d32"},"location":{"coordinates":[-73.75244889999999,40.60377889999999],"type":"Point"},"name":"Tio Pollo Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057d33"},"location":{"coordinates":[-73.92540420000002,40.7520234],"type":"Point"},"name":"Coffeed"} +,{"_id":{"$oid":"55cba2476c522cafdb057d34"},"location":{"coordinates":[-73.8345381,40.7566221],"type":"Point"},"name":"Dae Busan Night"} +,{"_id":{"$oid":"55cba2476c522cafdb057d35"},"location":{"coordinates":[-73.992272,40.721989],"type":"Point"},"name":"Experimental Cocktail"} +,{"_id":{"$oid":"55cba2476c522cafdb057d36"},"location":{"coordinates":[-73.829437,40.757178],"type":"Point"},"name":"Lamb Noodle Soup"} +,{"_id":{"$oid":"55cba2476c522cafdb057d37"},"location":{"coordinates":[-73.9111677,40.8434114],"type":"Point"},"name":"Grand Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057d38"},"location":{"coordinates":[-73.995986,40.765076],"type":"Point"},"name":"Rooftop 48"} +,{"_id":{"$oid":"55cba2476c522cafdb057d39"},"location":{"coordinates":[-73.9917475,40.75419],"type":"Point"},"name":"Ramini Espresso Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb057d3a"},"location":{"coordinates":[-73.88362219999999,40.7555924],"type":"Point"},"name":"Puerto Colombia"} +,{"_id":{"$oid":"55cba2476c522cafdb057d3b"},"location":{"coordinates":[-73.8408115,40.7812795],"type":"Point"},"name":"View De Point/Level Royal Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb057d3c"},"location":{"coordinates":[-73.998176,40.68733],"type":"Point"},"name":"Libertador"} +,{"_id":{"$oid":"55cba2476c522cafdb057d3d"},"location":{"coordinates":[-73.820622,40.89017],"type":"Point"},"name":"Smash Burger"} +,{"_id":{"$oid":"55cba2476c522cafdb057d3e"},"location":{"coordinates":[-73.9757918,40.744214],"type":"Point"},"name":"Chipotle Mexican Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb057d3f"},"location":{"coordinates":[-73.87854279999999,40.756034],"type":"Point"},"name":"Sam'S"} +,{"_id":{"$oid":"55cba2476c522cafdb057d40"},"location":{"coordinates":[-73.8042998,40.7562752],"type":"Point"},"name":"Gabriela Pizzeria \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057d41"},"location":{"coordinates":[-73.855614,40.743944],"type":"Point"},"name":"Lorenas Fruit"} +,{"_id":{"$oid":"55cba2476c522cafdb057d42"},"location":{"coordinates":[-73.8933425,40.63732],"type":"Point"},"name":"Long Won Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057d43"},"location":{"coordinates":[-73.9330888,40.849294],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb057d44"},"location":{"coordinates":[-73.96297000000001,40.799641],"type":"Point"},"name":"Coma Bueno Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057d45"},"location":{"coordinates":[-73.9338863,40.7533886],"type":"Point"},"name":"Hotel Vetiver"} +,{"_id":{"$oid":"55cba2476c522cafdb057d46"},"location":{"coordinates":[-73.701678,40.739023],"type":"Point"},"name":"Taste Of Kerala Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb057d47"},"location":{"coordinates":[-73.7714608,40.7637151],"type":"Point"},"name":"The Pour House"} +,{"_id":{"$oid":"55cba2476c522cafdb057d48"},"location":{"coordinates":[-73.999087,40.645929],"type":"Point"},"name":"Panda Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb057d49"},"location":{"coordinates":[-73.9875332,40.7486859],"type":"Point"},"name":"Petit Poulet"} +,{"_id":{"$oid":"55cba2476c522cafdb057d4a"},"location":{"coordinates":[-73.9181598,40.7389203],"type":"Point"},"name":"Sabrosura Dominicana Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057d4b"},"location":{"coordinates":[-73.9859221,40.677206],"type":"Point"},"name":"Runner \u0026 Stone"} +,{"_id":{"$oid":"55cba2476c522cafdb057d4c"},"location":{"coordinates":[-73.9827037,40.7684141],"type":"Point"},"name":"Center Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb057d4d"},"location":{"coordinates":[-73.984212,40.757148],"type":"Point"},"name":"Red Moon"} +,{"_id":{"$oid":"55cba2476c522cafdb057d4e"},"location":{"coordinates":[-73.990197,40.76049],"type":"Point"},"name":"Bangkok House"} +,{"_id":{"$oid":"55cba2476c522cafdb057d4f"},"location":{"coordinates":[-73.9856464,40.7234713],"type":"Point"},"name":"Angelina"} +,{"_id":{"$oid":"55cba2476c522cafdb057d50"},"location":{"coordinates":[-73.8004922,40.7038358],"type":"Point"},"name":"Swan Lake Asian Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb057d51"},"location":{"coordinates":[-74.0056304,40.7290031],"type":"Point"},"name":"Clarkson"} +,{"_id":{"$oid":"55cba2476c522cafdb057d52"},"location":{"coordinates":[-73.9385009,40.8222455],"type":"Point"},"name":"United Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb057d53"},"location":{"coordinates":[-73.963628,40.581425],"type":"Point"},"name":"Taqueria El Buen Gusto"} +,{"_id":{"$oid":"55cba2476c522cafdb057d54"},"location":{"coordinates":[-73.98645739999999,40.7489646],"type":"Point"},"name":"Sbarro"} +,{"_id":{"$oid":"55cba2476c522cafdb057d55"},"location":{"coordinates":[-73.9315939,40.7613659],"type":"Point"},"name":"Seoul Fusion Eatery"} +,{"_id":{"$oid":"55cba2476c522cafdb057d56"},"location":{"coordinates":[-74.009562,40.611072],"type":"Point"},"name":"Pacos Tacos"} +,{"_id":{"$oid":"55cba2476c522cafdb057d57"},"location":{"coordinates":[-73.99740589999999,40.7197962],"type":"Point"},"name":"La Bella Vita"} +,{"_id":{"$oid":"55cba2476c522cafdb057d58"},"location":{"coordinates":[-73.937673,40.641381],"type":"Point"},"name":"China Express Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057d59"},"location":{"coordinates":[-73.83161199999999,40.761745],"type":"Point"},"name":"Grand Shangai"} +,{"_id":{"$oid":"55cba2476c522cafdb057d5a"},"location":{"coordinates":[-73.9709791,40.6166267],"type":"Point"},"name":"Pizza Boss"} +,{"_id":{"$oid":"55cba2476c522cafdb057d5b"},"location":{"coordinates":[-74.0675964,40.59192850000001],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb057d5c"},"location":{"coordinates":[-73.950844,40.783674],"type":"Point"},"name":"Azure"} +,{"_id":{"$oid":"55cba2476c522cafdb057d5d"},"location":{"coordinates":[-73.74027699999999,40.675993],"type":"Point"},"name":"Golden Krust"} +,{"_id":{"$oid":"55cba2476c522cafdb057d5e"},"location":{"coordinates":[-73.90654099999999,40.82867400000001],"type":"Point"},"name":"Noches De Copas Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057d5f"},"location":{"coordinates":[-73.765593,40.658688],"type":"Point"},"name":"Best Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb057d60"},"location":{"coordinates":[-73.8280841,40.766013],"type":"Point"},"name":"The King"} +,{"_id":{"$oid":"55cba2476c522cafdb057d61"},"location":{"coordinates":[-73.9536059,40.7442082],"type":"Point"},"name":"Spice"} +,{"_id":{"$oid":"55cba2476c522cafdb057d62"},"location":{"coordinates":[-73.93052519999999,40.8541024],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb057d63"},"location":{"coordinates":[-73.9574234,40.7183959],"type":"Point"},"name":"Sweet Chick"} +,{"_id":{"$oid":"55cba2476c522cafdb057d64"},"location":{"coordinates":[-73.8975987,40.7007111],"type":"Point"},"name":"Kum Wei Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb057d65"},"location":{"coordinates":[-73.895602,40.6381911],"type":"Point"},"name":"Richard'S Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb057d66"},"location":{"coordinates":[-73.881897,40.7638509],"type":"Point"},"name":"Otb Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb057d67"},"location":{"coordinates":[-73.8686834,40.7473418],"type":"Point"},"name":"Blue Aroma Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057d68"},"location":{"coordinates":[-73.73536229999999,40.7709351],"type":"Point"},"name":"King Wok Chinese Food"} +,{"_id":{"$oid":"55cba2476c522cafdb057d69"},"location":{"coordinates":[-73.98073169999999,40.7552417],"type":"Point"},"name":"Strip House"} +,{"_id":{"$oid":"55cba2476c522cafdb057d6a"},"location":{"coordinates":[-73.8999324,40.731559],"type":"Point"},"name":"Yummy Yummy Express"} +,{"_id":{"$oid":"55cba2476c522cafdb057d6b"},"location":{"coordinates":[-73.847882,40.683964],"type":"Point"},"name":"M \u0026 O Bagels"} +,{"_id":{"$oid":"55cba2476c522cafdb057d6c"},"location":{"coordinates":[-73.98058,40.573335],"type":"Point"},"name":"Tom'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057d6d"},"location":{"coordinates":[-74.0075402,40.7151466],"type":"Point"},"name":"Sole Di Capri"} +,{"_id":{"$oid":"55cba2476c522cafdb057d6e"},"location":{"coordinates":[-73.9984128,40.7154157],"type":"Point"},"name":"Yeah Shanghai Deluxe"} +,{"_id":{"$oid":"55cba2476c522cafdb057d6f"},"location":{"coordinates":[-73.99090319999999,40.7447953],"type":"Point"},"name":"Melt Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb057d70"},"location":{"coordinates":[-73.8320832,40.7144763],"type":"Point"},"name":"Redwood Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb057d71"},"location":{"coordinates":[-73.9288381,40.63967170000001],"type":"Point"},"name":"Checkers"} +,{"_id":{"$oid":"55cba2476c522cafdb057d72"},"location":{"coordinates":[-73.9525822,40.5865107],"type":"Point"},"name":"Chayhana Salom"} +,{"_id":{"$oid":"55cba2476c522cafdb057d73"},"location":{"coordinates":[-73.97523029999999,40.6831182],"type":"Point"},"name":"Starbucks Coffee Company"} +,{"_id":{"$oid":"55cba2476c522cafdb057d74"},"location":{"coordinates":[-73.9859352,40.761195],"type":"Point"},"name":"Cielo At The Mayfair"} +,{"_id":{"$oid":"55cba2476c522cafdb057d75"},"location":{"coordinates":[-73.962076,40.771032],"type":"Point"},"name":"Alex Cafe \u0026 Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb057d76"},"location":{"coordinates":[-73.972942,40.76026700000001],"type":"Point"},"name":"Bill'S"} +,{"_id":{"$oid":"55cba2476c522cafdb057d77"},"location":{"coordinates":[-74.00014259999999,40.7272837],"type":"Point"},"name":"Fair Folks"} +,{"_id":{"$oid":"55cba2476c522cafdb057d78"},"location":{"coordinates":[-73.8341856,40.7576487],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb057d79"},"location":{"coordinates":[-73.913251,40.774977],"type":"Point"},"name":"Michaelangelo'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057d7a"},"location":{"coordinates":[-73.9727845,40.7527111],"type":"Point"},"name":"Gourmet 45"} +,{"_id":{"$oid":"55cba2476c522cafdb057d7b"},"location":{"coordinates":[-73.8291792,40.75830759999999],"type":"Point"},"name":"Kung Fu Tea Kissena"} +,{"_id":{"$oid":"55cba2476c522cafdb057d7c"},"location":{"coordinates":[-73.983267,40.612504],"type":"Point"},"name":"Howong Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057d7d"},"location":{"coordinates":[-74.0763212,40.6317757],"type":"Point"},"name":"New Choi Hee Chinese"} +,{"_id":{"$oid":"55cba2476c522cafdb057d7e"},"location":{"coordinates":[-74.1771674,40.6144973],"type":"Point"},"name":"Above Rooftop"} +,{"_id":{"$oid":"55cba2476c522cafdb057d7f"},"location":{"coordinates":[-73.8865891,40.7723001],"type":"Point"},"name":"Empire Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb057d80"},"location":{"coordinates":[-73.8865891,40.7723001],"type":"Point"},"name":"Cotto Market-Gate C30"} +,{"_id":{"$oid":"55cba2476c522cafdb057d81"},"location":{"coordinates":[-74.15722509999999,40.6080438],"type":"Point"},"name":"Sogogoogo Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb057d82"},"location":{"coordinates":[-73.8865891,40.7723001],"type":"Point"},"name":"Cibo Express-Main"} +,{"_id":{"$oid":"55cba2476c522cafdb057d83"},"location":{"coordinates":[-73.8724111,40.7079069],"type":"Point"},"name":"Saverio'S Stone Fire Bistro"} +,{"_id":{"$oid":"55cba2476c522cafdb057d84"},"location":{"coordinates":[-73.8739659,40.7769271],"type":"Point"},"name":"Cibo Express"} +,{"_id":{"$oid":"55cba2476c522cafdb057d85"},"location":{"coordinates":[-73.98778399999999,40.725252],"type":"Point"},"name":"La Sultana Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057d86"},"location":{"coordinates":[-74.0862636,40.6335243],"type":"Point"},"name":"Live Better"} +,{"_id":{"$oid":"55cba2476c522cafdb057d87"},"location":{"coordinates":[-73.982187,40.612666],"type":"Point"},"name":"B Bo Sing Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb057d88"},"location":{"coordinates":[-74.1771674,40.6144973],"type":"Point"},"name":"Above Ballroom"} +,{"_id":{"$oid":"55cba2476c522cafdb057d89"},"location":{"coordinates":[-73.70278170000002,40.7519489],"type":"Point"},"name":"Jassi'S Fine Indian Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb057d8a"},"location":{"coordinates":[-73.86692239999999,40.6911549],"type":"Point"},"name":"Little Caesars"} +,{"_id":{"$oid":"55cba2476c522cafdb057d8b"},"location":{"coordinates":[-73.7718953,40.7593418],"type":"Point"},"name":"Paris Baguette"} +,{"_id":{"$oid":"55cba2476c522cafdb057d8c"},"location":{"coordinates":[-74.02322649999999,40.6285444],"type":"Point"},"name":"David'S Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb057d8d"},"location":{"coordinates":[-73.82813,40.76033],"type":"Point"},"name":"Ma La Xiang Wok"} +,{"_id":{"$oid":"55cba2476c522cafdb057d8e"},"location":{"coordinates":[-73.908864,40.8231899],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb057d8f"},"location":{"coordinates":[-73.940603,40.8054821],"type":"Point"},"name":"Harlem Delight"} +,{"_id":{"$oid":"55cba2476c522cafdb057d90"},"location":{"coordinates":[-73.90868019999999,40.8237252],"type":"Point"},"name":"Cestras Ii Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb057d91"},"location":{"coordinates":[-73.7355635,40.7708654],"type":"Point"},"name":"Ace Hot Bagel \u0026 Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb057d92"},"location":{"coordinates":[-73.9080687,40.6906796],"type":"Point"},"name":"The Ave Lunch Box"} +,{"_id":{"$oid":"55cba2476c522cafdb057d93"},"location":{"coordinates":[-73.98328699999999,40.72182],"type":"Point"},"name":"Wafels \u0026 Dinges"} +,{"_id":{"$oid":"55cba2476c522cafdb057d94"},"location":{"coordinates":[-73.9378744,40.7084722],"type":"Point"},"name":"The Well"} +,{"_id":{"$oid":"55cba2476c522cafdb057d95"},"location":{"coordinates":[-73.8290939,40.759362],"type":"Point"},"name":"Hot Pot (Ste #4)"} +,{"_id":{"$oid":"55cba2476c522cafdb057d96"},"location":{"coordinates":[-74.0054,40.63984],"type":"Point"},"name":"Lucky Dragon Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb057d97"},"location":{"coordinates":[-74.08455850000001,40.614295],"type":"Point"},"name":"New China Garden Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057d98"},"location":{"coordinates":[-73.98454269999999,40.7246215],"type":"Point"},"name":"Croissanteria"} +,{"_id":{"$oid":"55cba2476c522cafdb057d99"},"location":{"coordinates":[-73.94194,40.7230909],"type":"Point"},"name":"Pie Corps"} +,{"_id":{"$oid":"55cba2476c522cafdb057d9a"},"location":{"coordinates":[-73.9879627,40.7478473],"type":"Point"},"name":"Gaonnuri"} +,{"_id":{"$oid":"55cba2476c522cafdb057d9b"},"location":{"coordinates":[-73.994191,40.735811],"type":"Point"},"name":"Hu Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb057d9c"},"location":{"coordinates":[-73.939505,40.810681],"type":"Point"},"name":"Harlem On Fifth - Shell'S Bistro"} +,{"_id":{"$oid":"55cba2476c522cafdb057d9d"},"location":{"coordinates":[-73.82285329999999,40.7646561],"type":"Point"},"name":"Chun Buro Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057d9e"},"location":{"coordinates":[-73.9585845,40.71879879999999],"type":"Point"},"name":"Antica Pesa"} +,{"_id":{"$oid":"55cba2476c522cafdb057d9f"},"location":{"coordinates":[-73.9206272,40.837419],"type":"Point"},"name":"Elvalle Restaurant Sport Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb057da0"},"location":{"coordinates":[-73.8937725,40.6371227],"type":"Point"},"name":"La Baguette Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb057da1"},"location":{"coordinates":[-73.94812759999999,40.8245061],"type":"Point"},"name":"La Nueva Caricia Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057da2"},"location":{"coordinates":[-73.88989529999999,40.6584836],"type":"Point"},"name":"Burger King"} +,{"_id":{"$oid":"55cba2476c522cafdb057da3"},"location":{"coordinates":[-73.8919493,40.7602115],"type":"Point"},"name":"Mr. Bruno'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb057da4"},"location":{"coordinates":[-73.95929149999999,40.7711105],"type":"Point"},"name":"Fp Pastisserie"} +,{"_id":{"$oid":"55cba2476c522cafdb057da5"},"location":{"coordinates":[-73.91848399999999,40.64053699999999],"type":"Point"},"name":"Burger King"} +,{"_id":{"$oid":"55cba2476c522cafdb057da6"},"location":{"coordinates":[-73.9815859,40.6468149],"type":"Point"},"name":"Burger King"} +,{"_id":{"$oid":"55cba2476c522cafdb057da7"},"location":{"coordinates":[-73.98840009999999,40.6921112],"type":"Point"},"name":"Burger King"} +,{"_id":{"$oid":"55cba2476c522cafdb057da8"},"location":{"coordinates":[-73.9259804,40.6137136],"type":"Point"},"name":"Burger King / Popeyes"} +,{"_id":{"$oid":"55cba2476c522cafdb057da9"},"location":{"coordinates":[-73.9898599,40.719354],"type":"Point"},"name":"Aka 99 Cents Fresh Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb057daa"},"location":{"coordinates":[-73.8391839,40.6543479],"type":"Point"},"name":"Burger King/Popeyes"} +,{"_id":{"$oid":"55cba2476c522cafdb057dab"},"location":{"coordinates":[-73.88850599999999,40.8514218],"type":"Point"},"name":"Los Tacos Locos Y Loncheria 2"} +,{"_id":{"$oid":"55cba2476c522cafdb057dac"},"location":{"coordinates":[-74.0086053,40.715012],"type":"Point"},"name":"China Red Gourment"} +,{"_id":{"$oid":"55cba2476c522cafdb057dad"},"location":{"coordinates":[-74.0027988,40.7293875],"type":"Point"},"name":"El Toro Blanco"} +,{"_id":{"$oid":"55cba2476c522cafdb057dae"},"location":{"coordinates":[-73.960044,40.578985],"type":"Point"},"name":"Gyro Express"} +,{"_id":{"$oid":"55cba2476c522cafdb057daf"},"location":{"coordinates":[-74.0027988,40.7293875],"type":"Point"},"name":"Jack'S Stir Brew Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb057db0"},"location":{"coordinates":[-73.83144999999999,40.684331],"type":"Point"},"name":"Mahaica Hot Spot \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057db1"},"location":{"coordinates":[-73.9627964,40.7161683],"type":"Point"},"name":"L'Isola Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057db2"},"location":{"coordinates":[-73.99426609999999,40.7508707],"type":"Point"},"name":"Fb9110 Hot Dog Concession"} +,{"_id":{"$oid":"55cba2476c522cafdb057db3"},"location":{"coordinates":[-74.0072541,40.6374083],"type":"Point"},"name":"Wang Village Seafood Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057db4"},"location":{"coordinates":[-73.99426609999999,40.7508707],"type":"Point"},"name":"Ba6110 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb057db5"},"location":{"coordinates":[-73.9864269,40.7298622],"type":"Point"},"name":"Farfasha"} +,{"_id":{"$oid":"55cba2476c522cafdb057db6"},"location":{"coordinates":[-73.99426609999999,40.7508707],"type":"Point"},"name":"Cd8010 Hamburger Concession"} +,{"_id":{"$oid":"55cba2476c522cafdb057db7"},"location":{"coordinates":[-73.952614,40.7988339],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb057db8"},"location":{"coordinates":[-73.9208283,40.7429804],"type":"Point"},"name":"Sunnyside Bagel"} +,{"_id":{"$oid":"55cba2476c522cafdb057db9"},"location":{"coordinates":[-73.9500734,40.6815226],"type":"Point"},"name":"Brooklyn Baby Cakes"} +,{"_id":{"$oid":"55cba2476c522cafdb057dba"},"location":{"coordinates":[-73.8953022,40.70071650000001],"type":"Point"},"name":"Fruitti Yummi"} +,{"_id":{"$oid":"55cba2476c522cafdb057dbb"},"location":{"coordinates":[-73.99426609999999,40.7508707],"type":"Point"},"name":"Cb8030 Sausage Concession"} +,{"_id":{"$oid":"55cba2476c522cafdb057dbc"},"location":{"coordinates":[-73.99426609999999,40.7508707],"type":"Point"},"name":"Fb8020 Pizza Concession"} +,{"_id":{"$oid":"55cba2476c522cafdb057dbd"},"location":{"coordinates":[-73.99426609999999,40.7508707],"type":"Point"},"name":"Garden Market"} +,{"_id":{"$oid":"55cba2476c522cafdb057dbe"},"location":{"coordinates":[-73.99426609999999,40.7508707],"type":"Point"},"name":"Madison Garden Beer Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb057dbf"},"location":{"coordinates":[-73.99426609999999,40.7508707],"type":"Point"},"name":"Fa8070 Hot Dog Concession"} +,{"_id":{"$oid":"55cba2476c522cafdb057dc0"},"location":{"coordinates":[-73.860745,40.757553],"type":"Point"},"name":"Dona Juana Bar \u0026 Grill Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057dc1"},"location":{"coordinates":[-73.99426609999999,40.7508707],"type":"Point"},"name":"Madison Club (Bb7184)"} +,{"_id":{"$oid":"55cba2476c522cafdb057dc2"},"location":{"coordinates":[-73.99426609999999,40.7508707],"type":"Point"},"name":"Fb1014 Hot Dog Concession"} +,{"_id":{"$oid":"55cba2476c522cafdb057dc3"},"location":{"coordinates":[-73.9177881,40.6539669],"type":"Point"},"name":"Popeyes"} +,{"_id":{"$oid":"55cba2476c522cafdb057dc4"},"location":{"coordinates":[-73.99426609999999,40.7508707],"type":"Point"},"name":"Garden Market 2"} +,{"_id":{"$oid":"55cba2476c522cafdb057dc5"},"location":{"coordinates":[-73.99426609999999,40.7508707],"type":"Point"},"name":"Fd1002 Hotdog Concession"} +,{"_id":{"$oid":"55cba2476c522cafdb057dc6"},"location":{"coordinates":[-73.99426609999999,40.7508707],"type":"Point"},"name":"Bc8140 Bar At The Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb057dc7"},"location":{"coordinates":[-73.99426609999999,40.7508707],"type":"Point"},"name":"Madison Garden Beer Pub 2"} +,{"_id":{"$oid":"55cba2476c522cafdb057dc8"},"location":{"coordinates":[-73.99426609999999,40.7508707],"type":"Point"},"name":"Fd8110 Hot Dog Concession"} +,{"_id":{"$oid":"55cba2476c522cafdb057dc9"},"location":{"coordinates":[-73.99426609999999,40.7508707],"type":"Point"},"name":"Fb9120 Hot Dog Concession"} +,{"_id":{"$oid":"55cba2476c522cafdb057dca"},"location":{"coordinates":[-73.99426609999999,40.7508707],"type":"Point"},"name":"Fb9090 Hot Dog Concession"} +,{"_id":{"$oid":"55cba2476c522cafdb057dcb"},"location":{"coordinates":[-73.99426609999999,40.7508707],"type":"Point"},"name":"Ba1019 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb057dcc"},"location":{"coordinates":[-74.0339556,40.61709829999999],"type":"Point"},"name":"The Wicked Monk"} +,{"_id":{"$oid":"55cba2476c522cafdb057dcd"},"location":{"coordinates":[-73.9485579,40.6437057],"type":"Point"},"name":"Football Restaurant \u0026 Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb057dce"},"location":{"coordinates":[-73.8576958,40.8621296],"type":"Point"},"name":"Imperial Restaurant Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb057dcf"},"location":{"coordinates":[-73.829437,40.757178],"type":"Point"},"name":"Chuanshi # 17"} +,{"_id":{"$oid":"55cba2476c522cafdb057dd0"},"location":{"coordinates":[-73.95245299999999,40.586247],"type":"Point"},"name":"Shinjuku"} +,{"_id":{"$oid":"55cba2476c522cafdb057dd1"},"location":{"coordinates":[-73.9578445,40.7657645],"type":"Point"},"name":"Yogurtland"} +,{"_id":{"$oid":"55cba2476c522cafdb057dd2"},"location":{"coordinates":[-73.829922,40.758296],"type":"Point"},"name":"On \u0026 On Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057dd3"},"location":{"coordinates":[-73.8306391,40.76187669999999],"type":"Point"},"name":"Imperial Palace"} +,{"_id":{"$oid":"55cba2476c522cafdb057dd4"},"location":{"coordinates":[-74.150932,40.54933],"type":"Point"},"name":"Bungalow18"} +,{"_id":{"$oid":"55cba2476c522cafdb057dd5"},"location":{"coordinates":[-73.9769793,40.6721076],"type":"Point"},"name":"Piccola Uva Wine Bar \u0026 Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb057dd6"},"location":{"coordinates":[-73.8624952,40.7499163],"type":"Point"},"name":"Delicias Bakery \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057dd7"},"location":{"coordinates":[-74.13656399999999,40.573198],"type":"Point"},"name":"Casa Verde"} +,{"_id":{"$oid":"55cba2476c522cafdb057dd8"},"location":{"coordinates":[-73.9934476,40.7552823],"type":"Point"},"name":"Coffee \u0026 Crumbs"} +,{"_id":{"$oid":"55cba2476c522cafdb057dd9"},"location":{"coordinates":[-73.95850399999999,40.768102],"type":"Point"},"name":"Trend Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb057dda"},"location":{"coordinates":[-73.99426609999999,40.7508707],"type":"Point"},"name":"Ba1002 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb057ddb"},"location":{"coordinates":[-73.9884716,40.69277659999999],"type":"Point"},"name":"Potbelly Sandwich Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb057ddc"},"location":{"coordinates":[-73.98168840000001,40.7549127],"type":"Point"},"name":"Dunkin Donuts Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb057ddd"},"location":{"coordinates":[-73.99426609999999,40.7508707],"type":"Point"},"name":"Fd8030 Chicken/Fries Concession"} +,{"_id":{"$oid":"55cba2476c522cafdb057dde"},"location":{"coordinates":[-73.9884466,40.7457233],"type":"Point"},"name":"No. 7 Sub"} +,{"_id":{"$oid":"55cba2476c522cafdb057ddf"},"location":{"coordinates":[-73.986417,40.687238],"type":"Point"},"name":"Krescendo"} +,{"_id":{"$oid":"55cba2476c522cafdb057de0"},"location":{"coordinates":[-73.99385509999999,40.6015036],"type":"Point"},"name":"Ichi Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb057de1"},"location":{"coordinates":[-73.82903499999999,40.7622799],"type":"Point"},"name":"718 Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb057de2"},"location":{"coordinates":[-73.985343,40.7469829],"type":"Point"},"name":"Cafe G"} +,{"_id":{"$oid":"55cba2476c522cafdb057de3"},"location":{"coordinates":[-73.80420590000001,40.76077],"type":"Point"},"name":"Kimchayul B.B.Q."} +,{"_id":{"$oid":"55cba2476c522cafdb057de4"},"location":{"coordinates":[-73.9408219,40.7185907],"type":"Point"},"name":"Ho May Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb057de5"},"location":{"coordinates":[-73.79936119999999,40.6739478],"type":"Point"},"name":"New Hunan Wok"} +,{"_id":{"$oid":"55cba2476c522cafdb057de6"},"location":{"coordinates":[-73.9945377,40.7552345],"type":"Point"},"name":"Donkin Donuts/Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb057de7"},"location":{"coordinates":[-73.9894142,40.7443236],"type":"Point"},"name":"Maysville"} +,{"_id":{"$oid":"55cba2476c522cafdb057de8"},"location":{"coordinates":[-73.76917399999999,40.759389],"type":"Point"},"name":"To Sok Chon"} +,{"_id":{"$oid":"55cba2476c522cafdb057de9"},"location":{"coordinates":[-74.0088894,40.6364955],"type":"Point"},"name":"Best Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb057dea"},"location":{"coordinates":[-73.8032066,40.674532],"type":"Point"},"name":"Prabhu Kirpa Sweets And Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057deb"},"location":{"coordinates":[-73.86165299999999,40.75036],"type":"Point"},"name":"Mala Noche No"} +,{"_id":{"$oid":"55cba2476c522cafdb057dec"},"location":{"coordinates":[-73.98192159999999,40.7522213],"type":"Point"},"name":"Panera Bread Company"} +,{"_id":{"$oid":"55cba2476c522cafdb057ded"},"location":{"coordinates":[-73.912961,40.7659935],"type":"Point"},"name":"Saba Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057dee"},"location":{"coordinates":[-73.9971988,40.6036802],"type":"Point"},"name":"Joy Luck Seafood Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057def"},"location":{"coordinates":[-73.9939204,40.6812556],"type":"Point"},"name":"Claudine'S"} +,{"_id":{"$oid":"55cba2476c522cafdb057df0"},"location":{"coordinates":[-73.9563053,40.7665825],"type":"Point"},"name":"Javatea"} +,{"_id":{"$oid":"55cba2476c522cafdb057df1"},"location":{"coordinates":[-73.9864387,40.7473643],"type":"Point"},"name":"Miss Korea"} +,{"_id":{"$oid":"55cba2476c522cafdb057df2"},"location":{"coordinates":[-73.9999631,40.64449339999999],"type":"Point"},"name":"Pho Viet"} +,{"_id":{"$oid":"55cba2476c522cafdb057df3"},"location":{"coordinates":[-73.96941,40.797215],"type":"Point"},"name":"New Empire"} +,{"_id":{"$oid":"55cba2476c522cafdb057df4"},"location":{"coordinates":[-73.9891044,40.7227167],"type":"Point"},"name":"Mezetto"} +,{"_id":{"$oid":"55cba2476c522cafdb057df5"},"location":{"coordinates":[-73.9952718,40.7170326],"type":"Point"},"name":"Elevate Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057df6"},"location":{"coordinates":[-73.8150077,40.7556821],"type":"Point"},"name":"John'S Pizza Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057df7"},"location":{"coordinates":[-73.92651339999999,40.6628143],"type":"Point"},"name":"New Lin'S Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb057df8"},"location":{"coordinates":[-73.8798989,40.7480789],"type":"Point"},"name":"Pico De Gallo"} +,{"_id":{"$oid":"55cba2476c522cafdb057df9"},"location":{"coordinates":[-116.1953488,43.5685249],"type":"Point"},"name":"La Picardia De Broadway"} +,{"_id":{"$oid":"55cba2476c522cafdb057dfa"},"location":{"coordinates":[-73.8475218,40.8361064],"type":"Point"},"name":"Salud Es Riqueza (Herbal Life)"} +,{"_id":{"$oid":"55cba2476c522cafdb057dfb"},"location":{"coordinates":[-73.86499130000001,40.8715524],"type":"Point"},"name":"Una Nueva Esperanza/ Herbalife"} +,{"_id":{"$oid":"55cba2476c522cafdb057dfc"},"location":{"coordinates":[-73.9238099,40.764534],"type":"Point"},"name":"Cafe Boulis"} +,{"_id":{"$oid":"55cba2476c522cafdb057dfd"},"location":{"coordinates":[-73.8838565,40.8807726],"type":"Point"},"name":"The Corner Pizza Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb057dfe"},"location":{"coordinates":[-73.9731043,40.6860728],"type":"Point"},"name":"Number Seven"} +,{"_id":{"$oid":"55cba2476c522cafdb057dff"},"location":{"coordinates":[-73.993449,40.601354],"type":"Point"},"name":"Lily Bloom Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb057e00"},"location":{"coordinates":[-73.91104229999999,40.7684173],"type":"Point"},"name":"Noisette Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057e01"},"location":{"coordinates":[-73.9805366,40.7558696],"type":"Point"},"name":"Potbelly Sandwich Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb057e02"},"location":{"coordinates":[-73.90804589999999,40.7741048],"type":"Point"},"name":"Tufino Pizzeria Napoletana"} +,{"_id":{"$oid":"55cba2476c522cafdb057e03"},"location":{"coordinates":[-73.901836,40.644365],"type":"Point"},"name":"Canarsie Jerk Center"} +,{"_id":{"$oid":"55cba2476c522cafdb057e04"},"location":{"coordinates":[-73.739205,40.660025],"type":"Point"},"name":"Crown Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb057e05"},"location":{"coordinates":[-73.8156819,40.755391],"type":"Point"},"name":"First Yao Shing Restaurat"} +,{"_id":{"$oid":"55cba2476c522cafdb057e06"},"location":{"coordinates":[-73.912365,40.8436209],"type":"Point"},"name":"Luigi'S Pizza \u0026 Pasta"} +,{"_id":{"$oid":"55cba2476c522cafdb057e07"},"location":{"coordinates":[-73.98448069999999,40.6759631],"type":"Point"},"name":"Breuckelen Colony"} +,{"_id":{"$oid":"55cba2476c522cafdb057e08"},"location":{"coordinates":[-73.84026899999999,40.695658],"type":"Point"},"name":"Fortune Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb057e09"},"location":{"coordinates":[-74.0784745,40.6459561],"type":"Point"},"name":"Stars \u0026 Stripes Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057e0a"},"location":{"coordinates":[-73.8986879,40.7431711],"type":"Point"},"name":"Papa'S Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb057e0b"},"location":{"coordinates":[-73.961974,40.7998819],"type":"Point"},"name":"Sheshe Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb057e0c"},"location":{"coordinates":[-73.9505155,40.8196311],"type":"Point"},"name":"Academia Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb057e0d"},"location":{"coordinates":[-73.88338300000001,40.841259],"type":"Point"},"name":"Chinatown Kitchen Lin Inc"} +,{"_id":{"$oid":"55cba2476c522cafdb057e0e"},"location":{"coordinates":[-73.91472929999999,40.7571989],"type":"Point"},"name":"Taste Of China"} +,{"_id":{"$oid":"55cba2476c522cafdb057e0f"},"location":{"coordinates":[-73.8537917,40.693076],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb057e10"},"location":{"coordinates":[-73.9505155,40.8196311],"type":"Point"},"name":"City College Marshak Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057e11"},"location":{"coordinates":[-73.807501,40.701226],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb057e12"},"location":{"coordinates":[-74.009517,40.635822],"type":"Point"},"name":"New Belacan Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057e13"},"location":{"coordinates":[-73.94780920000001,40.8246431],"type":"Point"},"name":"Famous Eddie'S Hotdogs"} +,{"_id":{"$oid":"55cba2476c522cafdb057e14"},"location":{"coordinates":[-73.8096147,40.7048754],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb057e15"},"location":{"coordinates":[-73.792785,40.705942],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb057e16"},"location":{"coordinates":[-73.9787503,40.7513403],"type":"Point"},"name":"Chop'T"} +,{"_id":{"$oid":"55cba2476c522cafdb057e17"},"location":{"coordinates":[-73.9896083,40.7519748],"type":"Point"},"name":"Pie Face"} +,{"_id":{"$oid":"55cba2476c522cafdb057e18"},"location":{"coordinates":[-73.95605139999999,40.7636811],"type":"Point"},"name":"Crc Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057e19"},"location":{"coordinates":[-73.992645,40.741708],"type":"Point"},"name":"Bxl Zoute"} +,{"_id":{"$oid":"55cba2476c522cafdb057e1a"},"location":{"coordinates":[-73.8820685,40.7499777],"type":"Point"},"name":"Don Alex Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057e1b"},"location":{"coordinates":[-73.9589499,40.8159927],"type":"Point"},"name":"Mcdonalds"} +,{"_id":{"$oid":"55cba2476c522cafdb057e1c"},"location":{"coordinates":[-73.82573099999999,40.677563],"type":"Point"},"name":"Kat'S Island Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb057e1d"},"location":{"coordinates":[-74.00775209999999,40.7271799],"type":"Point"},"name":"Westville"} +,{"_id":{"$oid":"55cba2476c522cafdb057e1e"},"location":{"coordinates":[-73.98380399999999,40.72102599999999],"type":"Point"},"name":"One More Thai"} +,{"_id":{"$oid":"55cba2476c522cafdb057e1f"},"location":{"coordinates":[-73.9629278,40.7791655],"type":"Point"},"name":"Metropolitan Museum Balcony Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb057e20"},"location":{"coordinates":[-73.9516927,40.8122374],"type":"Point"},"name":"Maison Harlem Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057e21"},"location":{"coordinates":[-74.00776800000001,40.6197181],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb057e22"},"location":{"coordinates":[-73.9813202,40.7367517],"type":"Point"},"name":"Pushcart Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb057e23"},"location":{"coordinates":[-73.98284079999999,40.7640732],"type":"Point"},"name":"Brittanya 54Th"} +,{"_id":{"$oid":"55cba2476c522cafdb057e24"},"location":{"coordinates":[-73.9745526,40.7596432],"type":"Point"},"name":"Sac Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057e25"},"location":{"coordinates":[-73.926643,40.642434],"type":"Point"},"name":"Silver Krust Restaurant \u0026 Catering"} +,{"_id":{"$oid":"55cba2476c522cafdb057e26"},"location":{"coordinates":[-73.91134629999999,40.6999165],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb057e27"},"location":{"coordinates":[-73.9770794,40.7581052],"type":"Point"},"name":"Cafe Sfa Nyc"} +,{"_id":{"$oid":"55cba2476c522cafdb057e28"},"location":{"coordinates":[-73.9770147,40.7573539],"type":"Point"},"name":"T49 Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057e29"},"location":{"coordinates":[-73.9770794,40.7581052],"type":"Point"},"name":"Snaks (At Saks)"} +,{"_id":{"$oid":"55cba2476c522cafdb057e2a"},"location":{"coordinates":[-73.9770794,40.7581052],"type":"Point"},"name":"New York Cafeteria"} +,{"_id":{"$oid":"55cba2476c522cafdb057e2b"},"location":{"coordinates":[-73.95091409999999,40.7611092],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb057e2c"},"location":{"coordinates":[-73.7518388,40.6612672],"type":"Point"},"name":"Charley Deli And Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb057e2d"},"location":{"coordinates":[-73.9949616,40.71721429999999],"type":"Point"},"name":"Teado Tea Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb057e2e"},"location":{"coordinates":[-73.98328459999999,40.68882420000001],"type":"Point"},"name":"99¢ Hot Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb057e2f"},"location":{"coordinates":[-73.96712,40.798503],"type":"Point"},"name":"Numero 28 Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb057e30"},"location":{"coordinates":[-74.0059891,40.6496093],"type":"Point"},"name":"Little Caesars"} +,{"_id":{"$oid":"55cba2476c522cafdb057e31"},"location":{"coordinates":[-73.993948,40.756057],"type":"Point"},"name":"Scallywag'S Irish Pub \u0026 Rest"} +,{"_id":{"$oid":"55cba2476c522cafdb057e32"},"location":{"coordinates":[-73.91076199999999,40.744888],"type":"Point"},"name":"Nanos Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057e33"},"location":{"coordinates":[-73.9182402,40.7588787],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb057e34"},"location":{"coordinates":[-73.989806,40.7181939],"type":"Point"},"name":"Jin Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb057e35"},"location":{"coordinates":[-73.7374227,40.6675985],"type":"Point"},"name":"Golden Krust Caribbean Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb057e36"},"location":{"coordinates":[-73.9530851,40.8107313],"type":"Point"},"name":"Mcdonalds"} +,{"_id":{"$oid":"55cba2476c522cafdb057e37"},"location":{"coordinates":[-92.7187785,41.7461977],"type":"Point"},"name":"The Eagle Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057e38"},"location":{"coordinates":[-73.901645,40.863013],"type":"Point"},"name":"Fordham Road Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb057e39"},"location":{"coordinates":[-73.88240689999999,40.7679103],"type":"Point"},"name":"Aviation Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057e3a"},"location":{"coordinates":[-73.95670199999999,40.6749297],"type":"Point"},"name":"Mayfield"} +,{"_id":{"$oid":"55cba2476c522cafdb057e3b"},"location":{"coordinates":[-73.7624342,40.6914435],"type":"Point"},"name":"Jamaican Flavors"} +,{"_id":{"$oid":"55cba2476c522cafdb057e3c"},"location":{"coordinates":[-74.0045228,40.6503632],"type":"Point"},"name":"China Delight"} +,{"_id":{"$oid":"55cba2476c522cafdb057e3d"},"location":{"coordinates":[-73.7537227,40.6034723],"type":"Point"},"name":"Mama'S Cooking"} +,{"_id":{"$oid":"55cba2476c522cafdb057e3e"},"location":{"coordinates":[-73.921758,40.705575],"type":"Point"},"name":"The Owl Juice Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb057e3f"},"location":{"coordinates":[-73.9045402,40.8789562],"type":"Point"},"name":"Gold Mine Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057e40"},"location":{"coordinates":[-73.822344,40.7537952],"type":"Point"},"name":"Lao Dong Bei Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057e41"},"location":{"coordinates":[-73.8863696,40.8713544],"type":"Point"},"name":"New Hung Hing Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057e42"},"location":{"coordinates":[-73.973606,40.6549546],"type":"Point"},"name":"Juice Pedaler"} +,{"_id":{"$oid":"55cba2476c522cafdb057e43"},"location":{"coordinates":[-92.7348663,41.7461489],"type":"Point"},"name":"Ciccio"} +,{"_id":{"$oid":"55cba2476c522cafdb057e44"},"location":{"coordinates":[-73.8414557,40.7188072],"type":"Point"},"name":"Sammie'S To Go"} +,{"_id":{"$oid":"55cba2476c522cafdb057e45"},"location":{"coordinates":[-73.9114223,40.8623691],"type":"Point"},"name":"Salsa Con Fuego"} +,{"_id":{"$oid":"55cba2476c522cafdb057e46"},"location":{"coordinates":[-73.95138949999999,40.7828406],"type":"Point"},"name":"Third Avenue Ale House"} +,{"_id":{"$oid":"55cba2476c522cafdb057e47"},"location":{"coordinates":[-73.9932199,40.763281],"type":"Point"},"name":"Hardware Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb057e48"},"location":{"coordinates":[-73.8345078,40.7069303],"type":"Point"},"name":"Fresh Tortillas Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb057e49"},"location":{"coordinates":[-73.982427,40.673754],"type":"Point"},"name":"Brooklyn Central"} +,{"_id":{"$oid":"55cba2476c522cafdb057e4a"},"location":{"coordinates":[-73.7942801,40.710398],"type":"Point"},"name":"Star Kabab \u0026 Chinease Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057e4b"},"location":{"coordinates":[-73.9665323,40.693586],"type":"Point"},"name":"Move With Grace"} +,{"_id":{"$oid":"55cba2476c522cafdb057e4c"},"location":{"coordinates":[-73.97405619999999,40.7845901],"type":"Point"},"name":"New Fresco Tortillas Taco"} +,{"_id":{"$oid":"55cba2476c522cafdb057e4d"},"location":{"coordinates":[-73.82878099999999,40.758925],"type":"Point"},"name":"Hot Pot House"} +,{"_id":{"$oid":"55cba2476c522cafdb057e4e"},"location":{"coordinates":[-73.9446091,40.68553989999999],"type":"Point"},"name":"Wonderful Asia Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057e4f"},"location":{"coordinates":[-74.1830026,40.5664155],"type":"Point"},"name":"Pk'S"} +,{"_id":{"$oid":"55cba2476c522cafdb057e50"},"location":{"coordinates":[-73.9389812,40.7977797],"type":"Point"},"name":"Hot Jalapeno Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057e51"},"location":{"coordinates":[-73.9687141,40.6771484],"type":"Point"},"name":"India Palace"} +,{"_id":{"$oid":"55cba2476c522cafdb057e52"},"location":{"coordinates":[-73.95713599999999,40.712239],"type":"Point"},"name":"Parlor Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb057e53"},"location":{"coordinates":[-73.974374,40.6756294],"type":"Point"},"name":"Banhmigos"} +,{"_id":{"$oid":"55cba2476c522cafdb057e54"},"location":{"coordinates":[-73.814892,40.76220259999999],"type":"Point"},"name":"Mapo Korean Bbq"} +,{"_id":{"$oid":"55cba2476c522cafdb057e55"},"location":{"coordinates":[-73.955299,40.776507],"type":"Point"},"name":"Brasserie Magritte"} +,{"_id":{"$oid":"55cba2476c522cafdb057e56"},"location":{"coordinates":[-73.9915633,40.7245941],"type":"Point"},"name":"L'Apicio"} +,{"_id":{"$oid":"55cba2476c522cafdb057e57"},"location":{"coordinates":[-73.9550683,40.820665],"type":"Point"},"name":"New Home Sing Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057e58"},"location":{"coordinates":[-73.95093299999999,40.783552],"type":"Point"},"name":"Bricklane Curry House"} +,{"_id":{"$oid":"55cba2476c522cafdb057e59"},"location":{"coordinates":[-73.977245,40.648573],"type":"Point"},"name":"Hamiltons"} +,{"_id":{"$oid":"55cba2476c522cafdb057e5a"},"location":{"coordinates":[-73.94046050000001,40.814843],"type":"Point"},"name":"Easy Corner Restaurant \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb057e5b"},"location":{"coordinates":[-73.9878185,40.6676987],"type":"Point"},"name":"Mezini Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057e5c"},"location":{"coordinates":[-73.90422099999999,40.749871],"type":"Point"},"name":"Maryann'S Woodside Events"} +,{"_id":{"$oid":"55cba2476c522cafdb057e5d"},"location":{"coordinates":[-73.98606140000001,40.67689379999999],"type":"Point"},"name":"Cotta Bene To Go"} +,{"_id":{"$oid":"55cba2476c522cafdb057e5e"},"location":{"coordinates":[-73.8807679,40.681259],"type":"Point"},"name":"El Huequito Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057e5f"},"location":{"coordinates":[-73.96928419999999,40.7533828],"type":"Point"},"name":"Karaoke Duet 48"} +,{"_id":{"$oid":"55cba2476c522cafdb057e60"},"location":{"coordinates":[-73.98380999999999,40.72672],"type":"Point"},"name":"East Village Social"} +,{"_id":{"$oid":"55cba2476c522cafdb057e61"},"location":{"coordinates":[-73.850037,40.826247],"type":"Point"},"name":"Ko Wong Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057e62"},"location":{"coordinates":[-73.9874851,40.7449974],"type":"Point"},"name":"L\u0026W Oyster Co."} +,{"_id":{"$oid":"55cba2476c522cafdb057e63"},"location":{"coordinates":[-73.87944209999999,40.7252832],"type":"Point"},"name":"Dunkin Donuts / Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb057e64"},"location":{"coordinates":[-73.810761,40.667325],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb057e65"},"location":{"coordinates":[-73.9866514,40.7620624],"type":"Point"},"name":"Pret A Manger"} +,{"_id":{"$oid":"55cba2476c522cafdb057e66"},"location":{"coordinates":[-73.9894305,40.7577585],"type":"Point"},"name":"Qi"} +,{"_id":{"$oid":"55cba2476c522cafdb057e67"},"location":{"coordinates":[-73.8698419,40.7494103],"type":"Point"},"name":"Magia En Tu Vida"} +,{"_id":{"$oid":"55cba2476c522cafdb057e68"},"location":{"coordinates":[-73.975906,40.785888],"type":"Point"},"name":"Bustan"} +,{"_id":{"$oid":"55cba2476c522cafdb057e69"},"location":{"coordinates":[-73.8269242,40.8855719],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb057e6a"},"location":{"coordinates":[-73.947239,40.726675],"type":"Point"},"name":"Best Margarita"} +,{"_id":{"$oid":"55cba2476c522cafdb057e6b"},"location":{"coordinates":[-74.134152,40.632998],"type":"Point"},"name":"Zumba Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057e6c"},"location":{"coordinates":[-73.9210473,40.608704],"type":"Point"},"name":"Sbarro"} +,{"_id":{"$oid":"55cba2476c522cafdb057e6d"},"location":{"coordinates":[-73.96582,40.6060898],"type":"Point"},"name":"Sushi Tokyo"} +,{"_id":{"$oid":"55cba2476c522cafdb057e6e"},"location":{"coordinates":[-73.9923409,40.6992833],"type":"Point"},"name":"New Great Wall Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057e6f"},"location":{"coordinates":[-73.997697,40.71516440000001],"type":"Point"},"name":"Cutting Board"} +,{"_id":{"$oid":"55cba2476c522cafdb057e70"},"location":{"coordinates":[-73.774588,40.714549],"type":"Point"},"name":"No. 1 Halal Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb057e71"},"location":{"coordinates":[-73.94365499999999,40.7593559],"type":"Point"},"name":"Ambassador Food Services"} +,{"_id":{"$oid":"55cba2476c522cafdb057e72"},"location":{"coordinates":[-73.87770309999999,40.7552722],"type":"Point"},"name":"La 90 Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb057e73"},"location":{"coordinates":[-73.7904555,40.7263973],"type":"Point"},"name":"Cj'S Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057e74"},"location":{"coordinates":[-73.9492703,40.7774361],"type":"Point"},"name":"The Burger Bistro"} +,{"_id":{"$oid":"55cba2476c522cafdb057e75"},"location":{"coordinates":[-73.8781535,40.6821421],"type":"Point"},"name":"Toribio Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057e76"},"location":{"coordinates":[-73.9036911,40.8121889],"type":"Point"},"name":"Lulu Juicy Fruit"} +,{"_id":{"$oid":"55cba2476c522cafdb057e77"},"location":{"coordinates":[-73.829219,40.756994],"type":"Point"},"name":"Northern Dumpling King"} +,{"_id":{"$oid":"55cba2476c522cafdb057e78"},"location":{"coordinates":[-73.8249706,40.8807921],"type":"Point"},"name":"City China Inn"} +,{"_id":{"$oid":"55cba2476c522cafdb057e79"},"location":{"coordinates":[-73.90323599999999,40.8156056],"type":"Point"},"name":"Florinda Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057e7a"},"location":{"coordinates":[-73.963014,40.799581],"type":"Point"},"name":"Curry King"} +,{"_id":{"$oid":"55cba2476c522cafdb057e7b"},"location":{"coordinates":[-74.01056109999999,40.7237394],"type":"Point"},"name":"Fika"} +,{"_id":{"$oid":"55cba2476c522cafdb057e7c"},"location":{"coordinates":[-73.960982,40.817998],"type":"Point"},"name":"Floridita Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057e7d"},"location":{"coordinates":[-73.93932459999999,40.8445624],"type":"Point"},"name":"Koronet Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb057e7e"},"location":{"coordinates":[-73.936289,40.734715],"type":"Point"},"name":"Sparta Deli And Restuarant"} +,{"_id":{"$oid":"55cba2476c522cafdb057e7f"},"location":{"coordinates":[-73.91564,40.84598210000001],"type":"Point"},"name":"El Valle"} +,{"_id":{"$oid":"55cba2476c522cafdb057e80"},"location":{"coordinates":[-73.9568647,40.7123897],"type":"Point"},"name":"Zizi Limona"} +,{"_id":{"$oid":"55cba2476c522cafdb057e81"},"location":{"coordinates":[-73.9385174,40.6844933],"type":"Point"},"name":"New China King Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057e82"},"location":{"coordinates":[-73.9039559,40.646969],"type":"Point"},"name":"Yummy Yummy Brooklyn"} +,{"_id":{"$oid":"55cba2476c522cafdb057e83"},"location":{"coordinates":[-73.9379543,40.8182292],"type":"Point"},"name":"88 Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057e84"},"location":{"coordinates":[-73.7959384,40.5927054],"type":"Point"},"name":"Happy Wok 88"} +,{"_id":{"$oid":"55cba2476c522cafdb057e85"},"location":{"coordinates":[-74.008884,40.704546],"type":"Point"},"name":"Complete Body"} +,{"_id":{"$oid":"55cba2476c522cafdb057e86"},"location":{"coordinates":[-73.945672,40.7923029],"type":"Point"},"name":"Fu Wing Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb057e87"},"location":{"coordinates":[-73.9966529,40.7478166],"type":"Point"},"name":"Gallow Green"} +,{"_id":{"$oid":"55cba2476c522cafdb057e88"},"location":{"coordinates":[-73.8194886,40.702271],"type":"Point"},"name":"El Chalaco Restaurant Peruano"} +,{"_id":{"$oid":"55cba2476c522cafdb057e89"},"location":{"coordinates":[-73.82025759999999,40.7019466],"type":"Point"},"name":"Indian Curry Express"} +,{"_id":{"$oid":"55cba2476c522cafdb057e8a"},"location":{"coordinates":[-73.99012479999999,40.6722074],"type":"Point"},"name":"Fletcher'S"} +,{"_id":{"$oid":"55cba2476c522cafdb057e8b"},"location":{"coordinates":[-73.94097459999999,40.71171349999999],"type":"Point"},"name":"Pedro'S Dumbo Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb057e8c"},"location":{"coordinates":[-74.1074002,40.634888],"type":"Point"},"name":"Randall Manor Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb057e8d"},"location":{"coordinates":[-73.9931853,40.7351805],"type":"Point"},"name":"Le Midi Bistro"} +,{"_id":{"$oid":"55cba2476c522cafdb057e8e"},"location":{"coordinates":[-74.0047475,40.7054793],"type":"Point"},"name":"Cones Cafe And Watermark Bar \u0026 Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb057e8f"},"location":{"coordinates":[-73.78950400000001,40.7664634],"type":"Point"},"name":"Ginza Japanese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057e90"},"location":{"coordinates":[-74.01094499999999,40.703337],"type":"Point"},"name":"Lenny'S"} +,{"_id":{"$oid":"55cba2476c522cafdb057e91"},"location":{"coordinates":[-73.96109969999999,40.6298862],"type":"Point"},"name":"Bella Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb057e92"},"location":{"coordinates":[-74.016542,40.7103433],"type":"Point"},"name":"Southwest Ny / Black Hound"} +,{"_id":{"$oid":"55cba2476c522cafdb057e93"},"location":{"coordinates":[-74.003871,40.719673],"type":"Point"},"name":"Church Street Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb057e94"},"location":{"coordinates":[-73.9697085,40.7601779],"type":"Point"},"name":"Juicy Cube"} +,{"_id":{"$oid":"55cba2476c522cafdb057e95"},"location":{"coordinates":[-73.8706606,40.7342757],"type":"Point"},"name":"Sbarro"} +,{"_id":{"$oid":"55cba2476c522cafdb057e96"},"location":{"coordinates":[-73.9404685,40.8299073],"type":"Point"},"name":"D'Milton Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057e97"},"location":{"coordinates":[-73.89988079999999,40.7238038],"type":"Point"},"name":"The New Maspeth Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb057e98"},"location":{"coordinates":[-73.98868150000001,40.71972299999999],"type":"Point"},"name":"Perfect Picnic"} +,{"_id":{"$oid":"55cba2476c522cafdb057e99"},"location":{"coordinates":[-73.98845,40.72798900000001],"type":"Point"},"name":"San Marzano"} +,{"_id":{"$oid":"55cba2476c522cafdb057e9a"},"location":{"coordinates":[-73.83196819999999,40.75950539999999],"type":"Point"},"name":"Sunway Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057e9b"},"location":{"coordinates":[-73.8767218,40.7482811],"type":"Point"},"name":"Bienestar Y Salud/ Herbalife"} +,{"_id":{"$oid":"55cba2476c522cafdb057e9c"},"location":{"coordinates":[-73.8207226,40.7098871],"type":"Point"},"name":"Stop \u0026 Go Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb057e9d"},"location":{"coordinates":[-74.0017276,40.7257169],"type":"Point"},"name":"Cocotte"} +,{"_id":{"$oid":"55cba2476c522cafdb057e9e"},"location":{"coordinates":[-73.8774808,40.7504857],"type":"Point"},"name":"Salud Y Energia"} +,{"_id":{"$oid":"55cba2476c522cafdb057e9f"},"location":{"coordinates":[-74.00597239999999,40.7217538],"type":"Point"},"name":"Aamanns-Copenhgen"} +,{"_id":{"$oid":"55cba2476c522cafdb057ea0"},"location":{"coordinates":[-73.99606279999999,40.720856],"type":"Point"},"name":"The Little Fox Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057ea1"},"location":{"coordinates":[-73.993923,40.75711099999999],"type":"Point"},"name":"Better Being"} +,{"_id":{"$oid":"55cba2476c522cafdb057ea2"},"location":{"coordinates":[-73.942441,40.79865100000001],"type":"Point"},"name":"Il Gnocchi Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057ea3"},"location":{"coordinates":[-73.9152312,40.8339116],"type":"Point"},"name":"Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb057ea4"},"location":{"coordinates":[-73.984274,40.74646],"type":"Point"},"name":"Cafe Cd"} +,{"_id":{"$oid":"55cba2476c522cafdb057ea5"},"location":{"coordinates":[-73.806332,40.7538648],"type":"Point"},"name":"Las Perlas Salvadoreno Restaurante"} +,{"_id":{"$oid":"55cba2476c522cafdb057ea6"},"location":{"coordinates":[-73.9653398,40.8014987],"type":"Point"},"name":"Pancho'S Antojitos Mexicanos"} +,{"_id":{"$oid":"55cba2476c522cafdb057ea7"},"location":{"coordinates":[-73.9793409,40.6699194],"type":"Point"},"name":"Davidstea"} +,{"_id":{"$oid":"55cba2476c522cafdb057ea8"},"location":{"coordinates":[-92.72757299999999,41.7461416],"type":"Point"},"name":"Davids Tea"} +,{"_id":{"$oid":"55cba2476c522cafdb057ea9"},"location":{"coordinates":[-73.8365699,40.7077407],"type":"Point"},"name":"Roka Turkish Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb057eaa"},"location":{"coordinates":[-73.9465567,40.8085797],"type":"Point"},"name":"Sarku Japan Teriyaki \u0026 Sushi Express"} +,{"_id":{"$oid":"55cba2476c522cafdb057eab"},"location":{"coordinates":[-73.9353276,40.7955647],"type":"Point"},"name":"Aromas Boutique Bakery \u0026 Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057eac"},"location":{"coordinates":[-73.9623012,40.6090667],"type":"Point"},"name":"5 Star Village Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057ead"},"location":{"coordinates":[-73.7726092,40.7595549],"type":"Point"},"name":"Korean Noodle House"} +,{"_id":{"$oid":"55cba2476c522cafdb057eae"},"location":{"coordinates":[-73.959553,40.697733],"type":"Point"},"name":"Chai Pizza \u0026 Sushi Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057eaf"},"location":{"coordinates":[-73.9842729,40.7257371],"type":"Point"},"name":"Banh Mi Zon"} +,{"_id":{"$oid":"55cba2476c522cafdb057eb0"},"location":{"coordinates":[-73.9530966,40.7192461],"type":"Point"},"name":"Cu29 Copper Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057eb1"},"location":{"coordinates":[-73.8711599,40.8348361],"type":"Point"},"name":"New Five Star Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057eb2"},"location":{"coordinates":[-73.8608031,40.8378263],"type":"Point"},"name":"Applebee'S Neighborhood Grill \u0026 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb057eb3"},"location":{"coordinates":[-73.7369302,40.69426929999999],"type":"Point"},"name":"Meritta'S Jamaican And American Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057eb4"},"location":{"coordinates":[-73.8438238,40.862662],"type":"Point"},"name":"Serie A Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057eb5"},"location":{"coordinates":[-73.98234939999999,40.6735019],"type":"Point"},"name":"Beygl"} +,{"_id":{"$oid":"55cba2476c522cafdb057eb6"},"location":{"coordinates":[-74.0294235,40.6279967],"type":"Point"},"name":"Kathy'S Dumpling"} +,{"_id":{"$oid":"55cba2476c522cafdb057eb7"},"location":{"coordinates":[-73.96193749999999,40.7138782],"type":"Point"},"name":"Videology"} +,{"_id":{"$oid":"55cba2476c522cafdb057eb8"},"location":{"coordinates":[-74.0064087,40.6042508],"type":"Point"},"name":"King'S Wok Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057eb9"},"location":{"coordinates":[-73.972055,40.7546308],"type":"Point"},"name":"The Sea Fire Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb057eba"},"location":{"coordinates":[-73.85538369999999,40.7520029],"type":"Point"},"name":"New King House"} +,{"_id":{"$oid":"55cba2476c522cafdb057ebb"},"location":{"coordinates":[-73.99264079999999,40.725745],"type":"Point"},"name":"Le Philosophe"} +,{"_id":{"$oid":"55cba2476c522cafdb057ebc"},"location":{"coordinates":[-73.8799185,40.7478161],"type":"Point"},"name":"Little Caesars"} +,{"_id":{"$oid":"55cba2476c522cafdb057ebd"},"location":{"coordinates":[-73.96332699999999,40.759932],"type":"Point"},"name":"Sasabune Express New York"} +,{"_id":{"$oid":"55cba2476c522cafdb057ebe"},"location":{"coordinates":[-73.9176177,40.7423683],"type":"Point"},"name":"La Bella Restaurant Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb057ebf"},"location":{"coordinates":[-73.8194891,40.702271],"type":"Point"},"name":"Whiskey"} +,{"_id":{"$oid":"55cba2476c522cafdb057ec0"},"location":{"coordinates":[-74.008223,40.716223],"type":"Point"},"name":"Bikini Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb057ec1"},"location":{"coordinates":[-73.8954608,40.7032655],"type":"Point"},"name":"Fresh Pond Road Pastry Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb057ec2"},"location":{"coordinates":[-73.8019186,40.7058655],"type":"Point"},"name":"Xela Ju Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057ec3"},"location":{"coordinates":[-73.9897522,40.7029349],"type":"Point"},"name":"West Elm Market"} +,{"_id":{"$oid":"55cba2476c522cafdb057ec4"},"location":{"coordinates":[-73.899084,40.635921],"type":"Point"},"name":"Richard'S Diner \u0026 Catering"} +,{"_id":{"$oid":"55cba2476c522cafdb057ec5"},"location":{"coordinates":[-74.00106699999999,40.72787],"type":"Point"},"name":"Rogue And Canon"} +,{"_id":{"$oid":"55cba2476c522cafdb057ec6"},"location":{"coordinates":[-73.879899,40.74807879999999],"type":"Point"},"name":"J \u0026 C Pastry Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb057ec7"},"location":{"coordinates":[-73.9612861,40.7143019],"type":"Point"},"name":"Food Sing Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057ec8"},"location":{"coordinates":[-73.8890732,40.8366015],"type":"Point"},"name":"Long Xin Chinese Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb057ec9"},"location":{"coordinates":[-73.983167,40.765751],"type":"Point"},"name":"Ivy"} +,{"_id":{"$oid":"55cba2476c522cafdb057eca"},"location":{"coordinates":[-73.9875069,40.760937],"type":"Point"},"name":"Latitude Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb057ecb"},"location":{"coordinates":[-73.97182889999999,40.6040338],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb057ecc"},"location":{"coordinates":[-73.87202479999999,40.7084143],"type":"Point"},"name":"Coffee Shop Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb057ecd"},"location":{"coordinates":[-74.0080705,40.7096285],"type":"Point"},"name":"Sabor De Mexico"} +,{"_id":{"$oid":"55cba2476c522cafdb057ece"},"location":{"coordinates":[-73.80317,40.762713],"type":"Point"},"name":"Flower Karaoke"} +,{"_id":{"$oid":"55cba2476c522cafdb057ecf"},"location":{"coordinates":[-73.8839969,40.659516],"type":"Point"},"name":"Stanley Coffee Shop Inc"} +,{"_id":{"$oid":"55cba2476c522cafdb057ed0"},"location":{"coordinates":[-73.99341299999999,40.7027764],"type":"Point"},"name":"Juliana'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb057ed1"},"location":{"coordinates":[-73.915866,40.814997],"type":"Point"},"name":"Mexicozina"} +,{"_id":{"$oid":"55cba2476c522cafdb057ed2"},"location":{"coordinates":[-73.8933021,40.7545178],"type":"Point"},"name":"Taste Of Lahore"} +,{"_id":{"$oid":"55cba2476c522cafdb057ed3"},"location":{"coordinates":[-73.8462208,40.7207041],"type":"Point"},"name":"Bubble Crepe"} +,{"_id":{"$oid":"55cba2476c522cafdb057ed4"},"location":{"coordinates":[-73.948618,40.774382],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb057ed5"},"location":{"coordinates":[-73.9004793,40.7505619],"type":"Point"},"name":"Orange Hut"} +,{"_id":{"$oid":"55cba2476c522cafdb057ed6"},"location":{"coordinates":[-73.99169180000001,40.6844878],"type":"Point"},"name":"Hunter'S"} +,{"_id":{"$oid":"55cba2476c522cafdb057ed7"},"location":{"coordinates":[-73.8565868,40.8947638],"type":"Point"},"name":"Chen Ji B.B.Q Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057ed8"},"location":{"coordinates":[-73.96135799999999,40.714718],"type":"Point"},"name":"Bliss Grand"} +,{"_id":{"$oid":"55cba2476c522cafdb057ed9"},"location":{"coordinates":[-73.9625337,40.6962048],"type":"Point"},"name":"Manzanilla"} +,{"_id":{"$oid":"55cba2476c522cafdb057eda"},"location":{"coordinates":[-74.008177,40.7235005],"type":"Point"},"name":"American Flatbread Tribeca Hearth"} +,{"_id":{"$oid":"55cba2476c522cafdb057edb"},"location":{"coordinates":[-73.9208477,40.8404146],"type":"Point"},"name":"Seafruits"} +,{"_id":{"$oid":"55cba2476c522cafdb057edc"},"location":{"coordinates":[-73.9878087,40.7224046],"type":"Point"},"name":"Empanada Mama Express"} +,{"_id":{"$oid":"55cba2476c522cafdb057edd"},"location":{"coordinates":[-73.9128065,40.79804],"type":"Point"},"name":"New York Post Cafeteria"} +,{"_id":{"$oid":"55cba2476c522cafdb057ede"},"location":{"coordinates":[-74.084969,40.615381],"type":"Point"},"name":"New Phoenix"} +,{"_id":{"$oid":"55cba2476c522cafdb057edf"},"location":{"coordinates":[-74.00268109999999,40.73004590000001],"type":"Point"},"name":"Noodle Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb057ee0"},"location":{"coordinates":[-73.9804197,40.6050185],"type":"Point"},"name":"Naniwa Japanese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057ee1"},"location":{"coordinates":[-73.904602,40.6414094],"type":"Point"},"name":"New Century Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057ee2"},"location":{"coordinates":[-73.9447335,40.6157831],"type":"Point"},"name":"New Ju Feng Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057ee3"},"location":{"coordinates":[-73.79642199999999,40.707139],"type":"Point"},"name":"China King Food"} +,{"_id":{"$oid":"55cba2476c522cafdb057ee4"},"location":{"coordinates":[-73.98312299999999,40.7658119],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb057ee5"},"location":{"coordinates":[-73.9837508,40.7622594],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb057ee6"},"location":{"coordinates":[-74.0052218,40.7157637],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb057ee7"},"location":{"coordinates":[-73.9387179,40.8467302],"type":"Point"},"name":"99 Cent Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb057ee8"},"location":{"coordinates":[-73.970671,40.7515735],"type":"Point"},"name":"Chopita"} +,{"_id":{"$oid":"55cba2476c522cafdb057ee9"},"location":{"coordinates":[-73.9793086,40.755617],"type":"Point"},"name":"Marlin Bar At Tommy Bahama And Tommy Bahama Restaurant And B"} +,{"_id":{"$oid":"55cba2476c522cafdb057eea"},"location":{"coordinates":[-73.9739396,40.7521314],"type":"Point"},"name":"44Th Street Minar"} +,{"_id":{"$oid":"55cba2476c522cafdb057eeb"},"location":{"coordinates":[-73.9944359,40.720289],"type":"Point"},"name":"168 Bowery Holding Llc"} +,{"_id":{"$oid":"55cba2476c522cafdb057eec"},"location":{"coordinates":[-73.9191847,40.8641073],"type":"Point"},"name":"The Tulcingo Azteca"} +,{"_id":{"$oid":"55cba2476c522cafdb057eed"},"location":{"coordinates":[-73.9547858,40.7809853],"type":"Point"},"name":"Green Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057eee"},"location":{"coordinates":[-73.9602714,40.5904205],"type":"Point"},"name":"Golden Sphinx Bar \u0026 Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb057eef"},"location":{"coordinates":[-73.92862459999999,40.6325537],"type":"Point"},"name":"Kim Fai Chinese Food"} +,{"_id":{"$oid":"55cba2476c522cafdb057ef0"},"location":{"coordinates":[-90.3900288,41.5313147],"type":"Point"},"name":"Wing Hing 1 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057ef1"},"location":{"coordinates":[-73.909071,40.70361],"type":"Point"},"name":"652 Lin'S Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb057ef2"},"location":{"coordinates":[-73.99673849999999,40.7411299],"type":"Point"},"name":"Go Go Thai"} +,{"_id":{"$oid":"55cba2476c522cafdb057ef3"},"location":{"coordinates":[-73.861193,40.749789],"type":"Point"},"name":"La Mitad Del Mundo Bar-Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057ef4"},"location":{"coordinates":[-73.97632519999999,40.6748163],"type":"Point"},"name":"Crab Spot Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057ef5"},"location":{"coordinates":[-73.95957299999999,40.762393],"type":"Point"},"name":"Lunetta Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb057ef6"},"location":{"coordinates":[-73.9634107,40.6747886],"type":"Point"},"name":"Sunshine Co."} +,{"_id":{"$oid":"55cba2476c522cafdb057ef7"},"location":{"coordinates":[-73.89144399999999,40.8245],"type":"Point"},"name":"Little Caesars"} +,{"_id":{"$oid":"55cba2476c522cafdb057ef8"},"location":{"coordinates":[-74.001587,40.6574956],"type":"Point"},"name":"New Twin Lin Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb057ef9"},"location":{"coordinates":[-73.98907129999999,40.7444764],"type":"Point"},"name":"Broadway Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb057efa"},"location":{"coordinates":[-73.8545663,40.6928733],"type":"Point"},"name":"Pollos Dona Maria"} +,{"_id":{"$oid":"55cba2476c522cafdb057efb"},"location":{"coordinates":[-73.8573766,40.7582707],"type":"Point"},"name":"Springhill Suite"} +,{"_id":{"$oid":"55cba2476c522cafdb057efc"},"location":{"coordinates":[-73.88277540000001,40.6736423],"type":"Point"},"name":"La Bona Pizza Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057efd"},"location":{"coordinates":[-73.9877829,40.737025],"type":"Point"},"name":"Ainsworth Park"} +,{"_id":{"$oid":"55cba2476c522cafdb057efe"},"location":{"coordinates":[-73.8355575,40.84329719999999],"type":"Point"},"name":"New Pearl Of China"} +,{"_id":{"$oid":"55cba2476c522cafdb057eff"},"location":{"coordinates":[-73.9828146,40.7442469],"type":"Point"},"name":"Pepela"} +,{"_id":{"$oid":"55cba2476c522cafdb057f00"},"location":{"coordinates":[-73.919879,40.852645],"type":"Point"},"name":"Chinese Gourmet"} +,{"_id":{"$oid":"55cba2476c522cafdb057f01"},"location":{"coordinates":[-73.9535076,40.5872178],"type":"Point"},"name":"Apani"} +,{"_id":{"$oid":"55cba2476c522cafdb057f02"},"location":{"coordinates":[-73.9758372,40.64415229999999],"type":"Point"},"name":"Moondos Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb057f03"},"location":{"coordinates":[-73.995037,40.6906733],"type":"Point"},"name":"Red Gravy"} +,{"_id":{"$oid":"55cba2476c522cafdb057f04"},"location":{"coordinates":[-73.8739659,40.7769271],"type":"Point"},"name":"Cibo Express"} +,{"_id":{"$oid":"55cba2476c522cafdb057f05"},"location":{"coordinates":[-73.8739659,40.7769271],"type":"Point"},"name":"Minnow"} +,{"_id":{"$oid":"55cba2476c522cafdb057f06"},"location":{"coordinates":[-73.91783699999999,40.76494599999999],"type":"Point"},"name":"Leli'S Bakery And Pastry Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb057f07"},"location":{"coordinates":[-73.794303,40.710485],"type":"Point"},"name":"Sagar Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057f08"},"location":{"coordinates":[-73.79280539999999,40.7111323],"type":"Point"},"name":"Sagar Chinese"} +,{"_id":{"$oid":"55cba2476c522cafdb057f09"},"location":{"coordinates":[-73.8046784,40.6743908],"type":"Point"},"name":"Dunkin Donuts/Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb057f0a"},"location":{"coordinates":[-73.96158299999999,40.599019],"type":"Point"},"name":"Blue Magic Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb057f0b"},"location":{"coordinates":[-73.9872651,40.7266816],"type":"Point"},"name":"Zen 6 Ramen \u0026 Gyoza House"} +,{"_id":{"$oid":"55cba2476c522cafdb057f0c"},"location":{"coordinates":[-73.9139533,40.8454871],"type":"Point"},"name":"Antojitos"} +,{"_id":{"$oid":"55cba2476c522cafdb057f0d"},"location":{"coordinates":[-73.9732496,40.7505583],"type":"Point"},"name":"Pfizer Broadway Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057f0e"},"location":{"coordinates":[-73.987291,40.720863],"type":"Point"},"name":"Two-Bits Retro Arcade"} +,{"_id":{"$oid":"55cba2476c522cafdb057f0f"},"location":{"coordinates":[-73.9793564,40.7589426],"type":"Point"},"name":"Studio 9C"} +,{"_id":{"$oid":"55cba2476c522cafdb057f10"},"location":{"coordinates":[-73.790887,40.6430002],"type":"Point"},"name":"Lufthansa Airlines Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb057f11"},"location":{"coordinates":[-73.875247,40.736999],"type":"Point"},"name":"Kung Fu Tea"} +,{"_id":{"$oid":"55cba2476c522cafdb057f12"},"location":{"coordinates":[-74.0071043,40.7078825],"type":"Point"},"name":"Felice"} +,{"_id":{"$oid":"55cba2476c522cafdb057f13"},"location":{"coordinates":[-73.9580029,40.7086467],"type":"Point"},"name":"Otha'S"} +,{"_id":{"$oid":"55cba2476c522cafdb057f14"},"location":{"coordinates":[-73.8414332,40.7187959],"type":"Point"},"name":"Happy Austin Fresh Tortillas"} +,{"_id":{"$oid":"55cba2476c522cafdb057f15"},"location":{"coordinates":[-73.8431179,40.8537991],"type":"Point"},"name":"The Famous Emilio'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb057f16"},"location":{"coordinates":[-73.9494168,40.7132051],"type":"Point"},"name":"Suzume"} +,{"_id":{"$oid":"55cba2476c522cafdb057f17"},"location":{"coordinates":[-73.984082,40.660374],"type":"Point"},"name":"Crespella Cafe And Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb057f18"},"location":{"coordinates":[-73.9425751,40.8370259],"type":"Point"},"name":"Flaco'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb057f19"},"location":{"coordinates":[-73.7822056,40.6434612],"type":"Point"},"name":"Jet Blue Cafeteria"} +,{"_id":{"$oid":"55cba2476c522cafdb057f1a"},"location":{"coordinates":[-73.88329399999999,40.756156],"type":"Point"},"name":"Sonriele A La Familia"} +,{"_id":{"$oid":"55cba2476c522cafdb057f1b"},"location":{"coordinates":[-73.96098599999999,40.5780032],"type":"Point"},"name":"Skovorodka Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057f1c"},"location":{"coordinates":[-73.98079129999999,40.7779552],"type":"Point"},"name":"Amcook Fusion Sushi \u0026 Asian Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb057f1d"},"location":{"coordinates":[-73.9826768,40.76704650000001],"type":"Point"},"name":"Juice Generation"} +,{"_id":{"$oid":"55cba2476c522cafdb057f1e"},"location":{"coordinates":[-73.7914368,40.6737593],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb057f1f"},"location":{"coordinates":[-73.846392,40.70999],"type":"Point"},"name":"My Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb057f20"},"location":{"coordinates":[-73.804851,40.76293],"type":"Point"},"name":"Shinjung Galbi Bbq Korean Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057f21"},"location":{"coordinates":[-73.70073649999999,40.73895599999999],"type":"Point"},"name":"Au Bon Pain"} +,{"_id":{"$oid":"55cba2476c522cafdb057f22"},"location":{"coordinates":[-73.956791,40.69094399999999],"type":"Point"},"name":"La Villa Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057f23"},"location":{"coordinates":[-73.8928346,40.7277324],"type":"Point"},"name":"Fresca Tortilla"} +,{"_id":{"$oid":"55cba2476c522cafdb057f24"},"location":{"coordinates":[-73.97210679999999,40.6929986],"type":"Point"},"name":"Sakura Tokyo Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb057f25"},"location":{"coordinates":[-73.8305945,40.6889004],"type":"Point"},"name":"Punjabi Sweets \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057f26"},"location":{"coordinates":[-73.90873789999999,40.7744143],"type":"Point"},"name":"The Thirsty Koala"} +,{"_id":{"$oid":"55cba2476c522cafdb057f27"},"location":{"coordinates":[-73.96295070000001,40.7114745],"type":"Point"},"name":"Delaney Barbecue"} +,{"_id":{"$oid":"55cba2476c522cafdb057f28"},"location":{"coordinates":[-73.9617799,40.7593464],"type":"Point"},"name":"Le Grand Caffe"} +,{"_id":{"$oid":"55cba2476c522cafdb057f29"},"location":{"coordinates":[-73.90951,40.775622],"type":"Point"},"name":"Mp Taverna"} +,{"_id":{"$oid":"55cba2476c522cafdb057f2a"},"location":{"coordinates":[-73.87135669999999,40.6814693],"type":"Point"},"name":"El Nuevo Barzola Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057f2b"},"location":{"coordinates":[-73.997584,40.744601],"type":"Point"},"name":"Off The Wall Frozen Yogurt"} +,{"_id":{"$oid":"55cba2476c522cafdb057f2c"},"location":{"coordinates":[-73.940978,40.5942756],"type":"Point"},"name":"Thai Basil Inc."} +,{"_id":{"$oid":"55cba2476c522cafdb057f2d"},"location":{"coordinates":[-73.995408,40.750087],"type":"Point"},"name":"Riko Peruvian Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb057f2e"},"location":{"coordinates":[-73.9859414,40.6986772],"type":"Point"},"name":"Don Nico'S"} +,{"_id":{"$oid":"55cba2476c522cafdb057f2f"},"location":{"coordinates":[-73.96405399999999,40.8021538],"type":"Point"},"name":"Lions Head Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb057f30"},"location":{"coordinates":[-73.9186988,40.6993003],"type":"Point"},"name":"Tony'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb057f31"},"location":{"coordinates":[-73.96433830000001,40.8079281],"type":"Point"},"name":"Vine"} +,{"_id":{"$oid":"55cba2476c522cafdb057f32"},"location":{"coordinates":[-73.95114989999999,40.585036],"type":"Point"},"name":"Asian Bay"} +,{"_id":{"$oid":"55cba2476c522cafdb057f33"},"location":{"coordinates":[-73.986358,40.752203],"type":"Point"},"name":"Bombay Junction"} +,{"_id":{"$oid":"55cba2476c522cafdb057f34"},"location":{"coordinates":[-73.990494,40.7569545],"type":"Point"},"name":"Cake Boss Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057f35"},"location":{"coordinates":[-73.983178,40.725376],"type":"Point"},"name":"Red Malbec"} +,{"_id":{"$oid":"55cba2476c522cafdb057f36"},"location":{"coordinates":[-73.826145,40.751983],"type":"Point"},"name":"Hly Chinese Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb057f37"},"location":{"coordinates":[-73.9210346,40.6103453],"type":"Point"},"name":"Auntie Annes Pretzels"} +,{"_id":{"$oid":"55cba2476c522cafdb057f38"},"location":{"coordinates":[-73.95824499999999,40.644702],"type":"Point"},"name":"Avenue Pizza Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb057f39"},"location":{"coordinates":[-73.7434557,40.6968671],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb057f3a"},"location":{"coordinates":[-73.78218799999999,40.669525],"type":"Point"},"name":"Tropical Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb057f3b"},"location":{"coordinates":[-73.8795049,40.8766092],"type":"Point"},"name":"Mar Y Tierra Restaurant \u0026 Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb057f3c"},"location":{"coordinates":[-73.93877499999999,40.8460675],"type":"Point"},"name":"El Conde Nuevo Bar \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057f3d"},"location":{"coordinates":[-73.87092,40.7423826],"type":"Point"},"name":"Tradiciones El Tejano"} +,{"_id":{"$oid":"55cba2476c522cafdb057f3e"},"location":{"coordinates":[-73.9752701,40.7527506],"type":"Point"},"name":"Sl Green Realty"} +,{"_id":{"$oid":"55cba2476c522cafdb057f3f"},"location":{"coordinates":[-73.8317631,40.7068071],"type":"Point"},"name":"Kosher Yama Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb057f40"},"location":{"coordinates":[-73.8706606,40.7342757],"type":"Point"},"name":"Chipotle Mexican Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb057f41"},"location":{"coordinates":[-73.9272823,40.76321009999999],"type":"Point"},"name":"The Strand Smoke House"} +,{"_id":{"$oid":"55cba2476c522cafdb057f42"},"location":{"coordinates":[-73.8459386,40.7203334],"type":"Point"},"name":"Chipotle Mexican Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb057f43"},"location":{"coordinates":[-73.970443,40.75844],"type":"Point"},"name":"Market Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb057f44"},"location":{"coordinates":[-73.8574268,40.728102],"type":"Point"},"name":"Keuka Kafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057f45"},"location":{"coordinates":[-73.94659659999999,40.7802574],"type":"Point"},"name":"International Wings Factory"} +,{"_id":{"$oid":"55cba2476c522cafdb057f46"},"location":{"coordinates":[-73.9175461,40.8787618],"type":"Point"},"name":"Kappock Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057f47"},"location":{"coordinates":[-73.99678109999999,40.6613698],"type":"Point"},"name":"Tin Cup Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057f48"},"location":{"coordinates":[-74.0025233,40.7393217],"type":"Point"},"name":"Juice Press"} +,{"_id":{"$oid":"55cba2476c522cafdb057f49"},"location":{"coordinates":[-73.9721553,40.7520969],"type":"Point"},"name":"Good To Go"} +,{"_id":{"$oid":"55cba2476c522cafdb057f4a"},"location":{"coordinates":[-73.9846247,40.721472],"type":"Point"},"name":"Subject"} +,{"_id":{"$oid":"55cba2476c522cafdb057f4b"},"location":{"coordinates":[-73.8760057,40.7484644],"type":"Point"},"name":"Tacos Veloz"} +,{"_id":{"$oid":"55cba2476c522cafdb057f4c"},"location":{"coordinates":[-73.873989,40.742507],"type":"Point"},"name":"New 21 Chinese Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb057f4d"},"location":{"coordinates":[-73.985823,40.750905],"type":"Point"},"name":"The Keg Room"} +,{"_id":{"$oid":"55cba2476c522cafdb057f4e"},"location":{"coordinates":[-73.991249,40.760816],"type":"Point"},"name":"Tartina"} +,{"_id":{"$oid":"55cba2476c522cafdb057f4f"},"location":{"coordinates":[-74.0091369,40.7142472],"type":"Point"},"name":"Benares"} +,{"_id":{"$oid":"55cba2476c522cafdb057f50"},"location":{"coordinates":[-74.073156,40.6457369],"type":"Point"},"name":"Zz'S Pizza \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb057f51"},"location":{"coordinates":[-73.9928876,40.6892494],"type":"Point"},"name":"Chipotle Mexican Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb057f52"},"location":{"coordinates":[-73.92581,40.7032485],"type":"Point"},"name":"Mominette"} +,{"_id":{"$oid":"55cba2476c522cafdb057f53"},"location":{"coordinates":[-74.1774049,40.601461],"type":"Point"},"name":"Hush Gentlemen'S Club"} +,{"_id":{"$oid":"55cba2476c522cafdb057f54"},"location":{"coordinates":[-74.01321329999999,40.7013064],"type":"Point"},"name":"Pizza Plus (Si Ferry Terminal)"} +,{"_id":{"$oid":"55cba2476c522cafdb057f55"},"location":{"coordinates":[-73.9545754,40.6105647],"type":"Point"},"name":"Dunkin Donuts/Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb057f56"},"location":{"coordinates":[-73.9939308,40.6150901],"type":"Point"},"name":"Dunkin Donuts/Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb057f57"},"location":{"coordinates":[-73.99968,40.624598],"type":"Point"},"name":"Dunkin Donuts/Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb057f58"},"location":{"coordinates":[-74.008392,40.619752],"type":"Point"},"name":"Dunkin Donuts/Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb057f59"},"location":{"coordinates":[-73.980516,40.7569159],"type":"Point"},"name":"Ninos 46"} +,{"_id":{"$oid":"55cba2476c522cafdb057f5a"},"location":{"coordinates":[-73.9858794,40.7396582],"type":"Point"},"name":"Stix Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057f5b"},"location":{"coordinates":[-73.953897,40.66583199999999],"type":"Point"},"name":"Li Wing Hing Restaurant Inc"} +,{"_id":{"$oid":"55cba2476c522cafdb057f5c"},"location":{"coordinates":[-73.8883175,40.8171134],"type":"Point"},"name":"Flor Delicia Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057f5d"},"location":{"coordinates":[-73.9858605,40.7347628],"type":"Point"},"name":"The Loop"} +,{"_id":{"$oid":"55cba2476c522cafdb057f5e"},"location":{"coordinates":[-73.97646259999999,40.7800758],"type":"Point"},"name":"Raku Ii Its Japanese"} +,{"_id":{"$oid":"55cba2476c522cafdb057f5f"},"location":{"coordinates":[-73.8315849,40.8882206],"type":"Point"},"name":"Royal Caribbean Bakery \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057f60"},"location":{"coordinates":[-73.7931459,40.698666],"type":"Point"},"name":"Maima Liberian Bistro"} +,{"_id":{"$oid":"55cba2476c522cafdb057f61"},"location":{"coordinates":[-73.8505172,40.722034],"type":"Point"},"name":"Tokyo Teriyaki"} +,{"_id":{"$oid":"55cba2476c522cafdb057f62"},"location":{"coordinates":[-73.76778809999999,40.7564538],"type":"Point"},"name":"S \u0026 J Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb057f63"},"location":{"coordinates":[-73.97848239999999,40.6702735],"type":"Point"},"name":"Yogurtland"} +,{"_id":{"$oid":"55cba2476c522cafdb057f64"},"location":{"coordinates":[-73.82878099999999,40.758925],"type":"Point"},"name":"Spring Fish Village"} +,{"_id":{"$oid":"55cba2476c522cafdb057f65"},"location":{"coordinates":[-73.88450379999999,40.8741081],"type":"Point"},"name":"House Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb057f66"},"location":{"coordinates":[-73.9888551,40.7384716],"type":"Point"},"name":"County Coffee \u0026 Cantina"} +,{"_id":{"$oid":"55cba2476c522cafdb057f67"},"location":{"coordinates":[-73.8281334,40.7629785],"type":"Point"},"name":"Mijurak Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057f68"},"location":{"coordinates":[-73.930705,40.6946563],"type":"Point"},"name":"Jubilee Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057f69"},"location":{"coordinates":[-73.9802571,40.7244176],"type":"Point"},"name":"Sake Bar Satsko"} +,{"_id":{"$oid":"55cba2476c522cafdb057f6a"},"location":{"coordinates":[-73.9096725,40.8798709],"type":"Point"},"name":"Little Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb057f6b"},"location":{"coordinates":[-74.0026804,40.734413],"type":"Point"},"name":"Bar Sardine"} +,{"_id":{"$oid":"55cba2476c522cafdb057f6c"},"location":{"coordinates":[-73.94517429999999,40.6887778],"type":"Point"},"name":"Good Friend Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057f6d"},"location":{"coordinates":[-73.9130064,40.7738147],"type":"Point"},"name":"Kopiaste"} +,{"_id":{"$oid":"55cba2476c522cafdb057f6e"},"location":{"coordinates":[-73.92796539999999,40.6979738],"type":"Point"},"name":"Bossa Nova Civic Club"} +,{"_id":{"$oid":"55cba2476c522cafdb057f6f"},"location":{"coordinates":[-73.9971527,40.722739],"type":"Point"},"name":"16 Handles"} +,{"_id":{"$oid":"55cba2476c522cafdb057f70"},"location":{"coordinates":[-73.8595544,40.7314795],"type":"Point"},"name":"Rego Park Deli \u0026 Pastry"} +,{"_id":{"$oid":"55cba2476c522cafdb057f71"},"location":{"coordinates":[-73.99178599999999,40.7471279],"type":"Point"},"name":"Pioneers Bar \u0026 Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb057f72"},"location":{"coordinates":[-74.1660553,40.5823983],"type":"Point"},"name":"Crepes Du Nord"} +,{"_id":{"$oid":"55cba2476c522cafdb057f73"},"location":{"coordinates":[-73.9458159,40.790473],"type":"Point"},"name":"Taco Bell"} +,{"_id":{"$oid":"55cba2476c522cafdb057f74"},"location":{"coordinates":[-73.9431415,40.7084809],"type":"Point"},"name":"Healthy Choice Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb057f75"},"location":{"coordinates":[-73.9106393,40.816274],"type":"Point"},"name":"Pizza Hut"} +,{"_id":{"$oid":"55cba2476c522cafdb057f76"},"location":{"coordinates":[-73.9912707,40.7546934],"type":"Point"},"name":"Roll N Go Pizza \u0026 Wok To Walk"} +,{"_id":{"$oid":"55cba2476c522cafdb057f77"},"location":{"coordinates":[-74.0096063,40.714478],"type":"Point"},"name":"The Cricketers Arms"} +,{"_id":{"$oid":"55cba2476c522cafdb057f78"},"location":{"coordinates":[-73.9126859,40.7456869],"type":"Point"},"name":"Lety Bakery \u0026 Caffe"} +,{"_id":{"$oid":"55cba2476c522cafdb057f79"},"location":{"coordinates":[-73.8734097,40.7339377],"type":"Point"},"name":"Popeyes Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb057f7a"},"location":{"coordinates":[-73.7992057,40.7046932],"type":"Point"},"name":"Pp Boy Japan"} +,{"_id":{"$oid":"55cba2476c522cafdb057f7b"},"location":{"coordinates":[-74.0766569,40.6437785],"type":"Point"},"name":"Simon'S Steaks"} +,{"_id":{"$oid":"55cba2476c522cafdb057f7c"},"location":{"coordinates":[-73.9508819,40.671403],"type":"Point"},"name":"The Butterfly Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb057f7d"},"location":{"coordinates":[-73.898303,40.847333],"type":"Point"},"name":"Jupiter Bar Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057f7e"},"location":{"coordinates":[-73.956401,40.7185481],"type":"Point"},"name":"Qi"} +,{"_id":{"$oid":"55cba2476c522cafdb057f7f"},"location":{"coordinates":[-73.953485,40.742815],"type":"Point"},"name":"Open Door"} +,{"_id":{"$oid":"55cba2476c522cafdb057f80"},"location":{"coordinates":[-73.90446299999999,40.8799332],"type":"Point"},"name":"Q Kachapa Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057f81"},"location":{"coordinates":[-73.90298899999999,40.8353043],"type":"Point"},"name":"Little Caesars"} +,{"_id":{"$oid":"55cba2476c522cafdb057f82"},"location":{"coordinates":[-73.9941942,40.6154482],"type":"Point"},"name":"Tong Xin Hot Pot"} +,{"_id":{"$oid":"55cba2476c522cafdb057f83"},"location":{"coordinates":[-73.966815,40.8032671],"type":"Point"},"name":"Legend Upper West"} +,{"_id":{"$oid":"55cba2476c522cafdb057f84"},"location":{"coordinates":[-73.8566154,40.86567549999999],"type":"Point"},"name":"Chef King Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057f85"},"location":{"coordinates":[-73.97734299999999,40.7433115],"type":"Point"},"name":"Fresh Tortillas Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb057f86"},"location":{"coordinates":[-73.9495416,40.7622312],"type":"Point"},"name":"Coach Scot'S Main Street Sweets"} +,{"_id":{"$oid":"55cba2476c522cafdb057f87"},"location":{"coordinates":[-73.82407400000001,40.730422],"type":"Point"},"name":"Lbella Pizzeria \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057f88"},"location":{"coordinates":[-73.88411599999999,40.747185],"type":"Point"},"name":"M2N Buffet"} +,{"_id":{"$oid":"55cba2476c522cafdb057f89"},"location":{"coordinates":[-73.981877,40.66652699999999],"type":"Point"},"name":"Gather"} +,{"_id":{"$oid":"55cba2476c522cafdb057f8a"},"location":{"coordinates":[-73.9416842,40.7982574],"type":"Point"},"name":"Crown Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb057f8b"},"location":{"coordinates":[-73.990467,40.759482],"type":"Point"},"name":"One Thai Chef"} +,{"_id":{"$oid":"55cba2476c522cafdb057f8c"},"location":{"coordinates":[-73.99065499999999,40.7483005],"type":"Point"},"name":"Pennsylvania 6"} +,{"_id":{"$oid":"55cba2476c522cafdb057f8d"},"location":{"coordinates":[-73.9864073,40.7432981],"type":"Point"},"name":"Essen"} +,{"_id":{"$oid":"55cba2476c522cafdb057f8e"},"location":{"coordinates":[-73.9995309,40.7188895],"type":"Point"},"name":"New Centre Buffet Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057f8f"},"location":{"coordinates":[-73.9665163,40.683261],"type":"Point"},"name":"Belli Osteria"} +,{"_id":{"$oid":"55cba2476c522cafdb057f90"},"location":{"coordinates":[-73.99904389999999,40.7296008],"type":"Point"},"name":"The Madelyn"} +,{"_id":{"$oid":"55cba2476c522cafdb057f91"},"location":{"coordinates":[-73.9974074,40.7176376],"type":"Point"},"name":"Paris Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057f92"},"location":{"coordinates":[-73.9157142,40.7572223],"type":"Point"},"name":"Saffron"} +,{"_id":{"$oid":"55cba2476c522cafdb057f93"},"location":{"coordinates":[-73.93781899999999,40.8073089],"type":"Point"},"name":"Perfect Taste"} +,{"_id":{"$oid":"55cba2476c522cafdb057f94"},"location":{"coordinates":[-73.801684,40.693965],"type":"Point"},"name":"Sutphin Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb057f95"},"location":{"coordinates":[-73.99383949999999,40.7200076],"type":"Point"},"name":"Sel Rrose"} +,{"_id":{"$oid":"55cba2476c522cafdb057f96"},"location":{"coordinates":[-73.95373529999999,40.7823216],"type":"Point"},"name":"Lolita'S Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb057f97"},"location":{"coordinates":[-74.0091249,40.7098261],"type":"Point"},"name":"Go Go Curry"} +,{"_id":{"$oid":"55cba2476c522cafdb057f98"},"location":{"coordinates":[-73.8919511,40.7277367],"type":"Point"},"name":"Wanka"} +,{"_id":{"$oid":"55cba2476c522cafdb057f99"},"location":{"coordinates":[-73.885747,40.7379635],"type":"Point"},"name":"Seven One Ocho"} +,{"_id":{"$oid":"55cba2476c522cafdb057f9a"},"location":{"coordinates":[-73.95734829999999,40.6732336],"type":"Point"},"name":"Pearl Indian Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057f9b"},"location":{"coordinates":[-74.12545089999999,40.63391],"type":"Point"},"name":"Taqueria Puebla"} +,{"_id":{"$oid":"55cba2476c522cafdb057f9c"},"location":{"coordinates":[-73.86678239999999,40.8314807],"type":"Point"},"name":"Johns Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb057f9d"},"location":{"coordinates":[-73.99066859999999,40.744179],"type":"Point"},"name":"Hanjan"} +,{"_id":{"$oid":"55cba2476c522cafdb057f9e"},"location":{"coordinates":[-74.0079542,40.7432086],"type":"Point"},"name":"Willow Road"} +,{"_id":{"$oid":"55cba2476c522cafdb057f9f"},"location":{"coordinates":[-73.910883,40.669055],"type":"Point"},"name":"Fish \u0026 Chips"} +,{"_id":{"$oid":"55cba2476c522cafdb057fa0"},"location":{"coordinates":[-73.9041575,40.8520637],"type":"Point"},"name":"Mi Casa Bakery \u0026 Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb057fa1"},"location":{"coordinates":[-73.98394569999999,40.7321705],"type":"Point"},"name":"Madman Espresso"} +,{"_id":{"$oid":"55cba2476c522cafdb057fa2"},"location":{"coordinates":[-74.0033119,40.73331700000001],"type":"Point"},"name":"Big Gay Ice Cream Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb057fa3"},"location":{"coordinates":[-73.7891592,40.7661384],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb057fa4"},"location":{"coordinates":[-73.99712,40.720344],"type":"Point"},"name":"Goldbar"} +,{"_id":{"$oid":"55cba2476c522cafdb057fa5"},"location":{"coordinates":[-73.98398569999999,40.7657788],"type":"Point"},"name":"The Bread Factory"} +,{"_id":{"$oid":"55cba2476c522cafdb057fa6"},"location":{"coordinates":[-73.9417369,40.5978342],"type":"Point"},"name":"Papa John'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb057fa7"},"location":{"coordinates":[-73.951132,40.770926],"type":"Point"},"name":"Salvo'S"} +,{"_id":{"$oid":"55cba2476c522cafdb057fa8"},"location":{"coordinates":[-73.9593367,40.71804590000001],"type":"Point"},"name":"Miyako"} +,{"_id":{"$oid":"55cba2476c522cafdb057fa9"},"location":{"coordinates":[-74.0260481,40.6221021],"type":"Point"},"name":"Mancini'S Brick Oven Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb057faa"},"location":{"coordinates":[-73.95388659999999,40.7878725],"type":"Point"},"name":"Famous Famiglia Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb057fab"},"location":{"coordinates":[-73.8720963,40.7487054],"type":"Point"},"name":"Nuevo Taco Al Suadero"} +,{"_id":{"$oid":"55cba2476c522cafdb057fac"},"location":{"coordinates":[-73.7123065,40.746909],"type":"Point"},"name":"Marcella'S Pizzeria \u0026 Catering"} +,{"_id":{"$oid":"55cba2476c522cafdb057fad"},"location":{"coordinates":[-73.8875755,40.8539628],"type":"Point"},"name":"Rugova Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb057fae"},"location":{"coordinates":[-74.00132409999999,40.7290437],"type":"Point"},"name":"Fukurou"} +,{"_id":{"$oid":"55cba2476c522cafdb057faf"},"location":{"coordinates":[-73.9941013,40.6402155],"type":"Point"},"name":"Golden Dragon Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057fb0"},"location":{"coordinates":[-73.9208946,40.74377],"type":"Point"},"name":"Foxy'S Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb057fb1"},"location":{"coordinates":[-73.98876790000001,40.7276359],"type":"Point"},"name":"Mighty Quinn'S Barbeque"} +,{"_id":{"$oid":"55cba2476c522cafdb057fb2"},"location":{"coordinates":[-73.91846819999999,40.7423025],"type":"Point"},"name":"Los Verdes"} +,{"_id":{"$oid":"55cba2476c522cafdb057fb3"},"location":{"coordinates":[-73.990467,40.759482],"type":"Point"},"name":"Smokey Burger Organic"} +,{"_id":{"$oid":"55cba2476c522cafdb057fb4"},"location":{"coordinates":[-73.9802022,40.7464441],"type":"Point"},"name":"East Pacific Pan Asian Bistro"} +,{"_id":{"$oid":"55cba2476c522cafdb057fb5"},"location":{"coordinates":[-73.98818299999999,40.72845],"type":"Point"},"name":"B \u0026 H Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057fb6"},"location":{"coordinates":[-73.998533,40.716055],"type":"Point"},"name":"New Mandarin Court"} +,{"_id":{"$oid":"55cba2476c522cafdb057fb7"},"location":{"coordinates":[-73.840907,40.683165],"type":"Point"},"name":"Denivan Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb057fb8"},"location":{"coordinates":[-73.9966627,40.71577509999999],"type":"Point"},"name":"Lucky Star Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb057fb9"},"location":{"coordinates":[-74.0079181,40.7106447],"type":"Point"},"name":"Baba Ghanouge"} +,{"_id":{"$oid":"55cba2476c522cafdb057fba"},"location":{"coordinates":[-73.900886,40.7599167],"type":"Point"},"name":"809 Perfect Deli."} +,{"_id":{"$oid":"55cba2476c522cafdb057fbb"},"location":{"coordinates":[-73.93502620000001,40.6836614],"type":"Point"},"name":"Ma-N-Pop Soul Food"} +,{"_id":{"$oid":"55cba2476c522cafdb057fbc"},"location":{"coordinates":[-73.9592569,40.7115327],"type":"Point"},"name":"Passenger Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb057fbd"},"location":{"coordinates":[-73.8560509,40.7512718],"type":"Point"},"name":"King House"} +,{"_id":{"$oid":"55cba2476c522cafdb057fbe"},"location":{"coordinates":[-73.87927169999999,40.747999],"type":"Point"},"name":"12 Corazones Restaurant \u0026 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb057fbf"},"location":{"coordinates":[-73.95233999999999,40.78048829999999],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb057fc0"},"location":{"coordinates":[-73.979035,40.596087],"type":"Point"},"name":"Palma Tacos Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb057fc1"},"location":{"coordinates":[-73.9446206,40.8237467],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb057fc2"},"location":{"coordinates":[-73.9929549,40.7388719],"type":"Point"},"name":"Manhattan'S Paradise Pizza, Inc"} +,{"_id":{"$oid":"55cba2476c522cafdb057fc3"},"location":{"coordinates":[-73.9546965,40.8210674],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb057fc4"},"location":{"coordinates":[-73.95018739999999,40.8270218],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb057fc5"},"location":{"coordinates":[-73.9249375,40.697952],"type":"Point"},"name":"Caribe Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057fc6"},"location":{"coordinates":[-73.9380874,40.8483411],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb057fc7"},"location":{"coordinates":[-73.85486929999999,40.83593949999999],"type":"Point"},"name":"Premium Sweets \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057fc8"},"location":{"coordinates":[-74.03147539999999,40.6375416],"type":"Point"},"name":"Hot Wok"} +,{"_id":{"$oid":"55cba2476c522cafdb057fc9"},"location":{"coordinates":[-73.92271780000002,40.6191788],"type":"Point"},"name":"Sunny John Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb057fca"},"location":{"coordinates":[-73.94025669999999,40.8150842],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb057fcb"},"location":{"coordinates":[-74.0028279,40.7500969],"type":"Point"},"name":"Marquee"} +,{"_id":{"$oid":"55cba2476c522cafdb057fcc"},"location":{"coordinates":[-73.993894,40.756239],"type":"Point"},"name":"Pomodoro"} +,{"_id":{"$oid":"55cba2476c522cafdb057fcd"},"location":{"coordinates":[-73.9341529,40.8482822],"type":"Point"},"name":"South Beach Restaurant \u0026 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb057fce"},"location":{"coordinates":[-73.959513,40.814716],"type":"Point"},"name":"Paddy'S"} +,{"_id":{"$oid":"55cba2476c522cafdb057fcf"},"location":{"coordinates":[-73.9006277,40.6763202],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb057fd0"},"location":{"coordinates":[-73.9469024,40.6247881],"type":"Point"},"name":"2460 Lucky Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb057fd1"},"location":{"coordinates":[-74.2161169,40.5235882],"type":"Point"},"name":"Amici Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb057fd2"},"location":{"coordinates":[-73.971586,40.7457608],"type":"Point"},"name":"Fresh Central Gourmet Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb057fd3"},"location":{"coordinates":[-73.97569779999999,40.7442952],"type":"Point"},"name":"Orange Leaf Nyc"} +,{"_id":{"$oid":"55cba2476c522cafdb057fd4"},"location":{"coordinates":[-73.9970158,40.6611437],"type":"Point"},"name":"M \u0026 F Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb057fd5"},"location":{"coordinates":[-73.9727279,40.7928619],"type":"Point"},"name":"Pinkberry"} +,{"_id":{"$oid":"55cba2476c522cafdb057fd6"},"location":{"coordinates":[-73.9230272,40.755907],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb057fd7"},"location":{"coordinates":[-73.9535463,40.8226562],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb057fd8"},"location":{"coordinates":[-73.9187611,40.8143493],"type":"Point"},"name":"Fishnet Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb057fd9"},"location":{"coordinates":[-73.8476273,40.8194648],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb057fda"},"location":{"coordinates":[-73.94067,40.789354],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb057fdb"},"location":{"coordinates":[-73.8341856,40.7576487],"type":"Point"},"name":"Catherine Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb057fdc"},"location":{"coordinates":[-73.981236,40.7305627],"type":"Point"},"name":"99¢ Famous Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb057fdd"},"location":{"coordinates":[-73.9321612,40.7955473],"type":"Point"},"name":"Applebee'S Neighborhood"} +,{"_id":{"$oid":"55cba2476c522cafdb057fde"},"location":{"coordinates":[-73.98710100000001,40.747578],"type":"Point"},"name":"Wa Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb057fdf"},"location":{"coordinates":[-73.917269,40.742454],"type":"Point"},"name":"El Azteca Rincon Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb057fe0"},"location":{"coordinates":[-73.98089999999999,40.741425],"type":"Point"},"name":"Fuel Express"} +,{"_id":{"$oid":"55cba2476c522cafdb057fe1"},"location":{"coordinates":[-73.9128191,40.744466],"type":"Point"},"name":"Rainbow Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057fe2"},"location":{"coordinates":[-73.9275851,40.8660953],"type":"Point"},"name":"Il Posto Trattoria Rustica"} +,{"_id":{"$oid":"55cba2476c522cafdb057fe3"},"location":{"coordinates":[-73.789508,40.853108],"type":"Point"},"name":"Sugar And Spice"} +,{"_id":{"$oid":"55cba2476c522cafdb057fe4"},"location":{"coordinates":[-73.92226099999999,40.700778],"type":"Point"},"name":"Green Sky Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057fe5"},"location":{"coordinates":[-73.9782479,40.78379],"type":"Point"},"name":"Pinkberry"} +,{"_id":{"$oid":"55cba2476c522cafdb057fe6"},"location":{"coordinates":[-73.85714399999999,40.833813],"type":"Point"},"name":"Pizza Hut# 28256"} +,{"_id":{"$oid":"55cba2476c522cafdb057fe7"},"location":{"coordinates":[-73.81818489999999,40.7091177],"type":"Point"},"name":"Corazon Latino"} +,{"_id":{"$oid":"55cba2476c522cafdb057fe8"},"location":{"coordinates":[-74.02649199999999,40.63535299999999],"type":"Point"},"name":"Grandmas Original Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb057fe9"},"location":{"coordinates":[-77.4120153,37.2845339],"type":"Point"},"name":"Ar Restaurant \u0026 Catering"} +,{"_id":{"$oid":"55cba2476c522cafdb057fea"},"location":{"coordinates":[-73.9880388,40.7209496],"type":"Point"},"name":"Sakamai"} +,{"_id":{"$oid":"55cba2476c522cafdb057feb"},"location":{"coordinates":[-73.98796999999999,40.759231],"type":"Point"},"name":"Daniela'S Trattoria"} +,{"_id":{"$oid":"55cba2476c522cafdb057fec"},"location":{"coordinates":[-73.9864,40.752145],"type":"Point"},"name":"Main Noodle House"} +,{"_id":{"$oid":"55cba2476c522cafdb057fed"},"location":{"coordinates":[-73.97702559999999,40.5967296],"type":"Point"},"name":"Papa Johns International"} +,{"_id":{"$oid":"55cba2476c522cafdb057fee"},"location":{"coordinates":[-73.9726666,40.7548652],"type":"Point"},"name":"Residence Inn Manhattan Midtown East"} +,{"_id":{"$oid":"55cba2476c522cafdb057fef"},"location":{"coordinates":[-73.9173531,40.6831042],"type":"Point"},"name":"New York Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb057ff0"},"location":{"coordinates":[-74.0166969,40.642064],"type":"Point"},"name":"Amy'S Cafe And Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb057ff1"},"location":{"coordinates":[-73.9909486,40.7329154],"type":"Point"},"name":"Mamagyro Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb057ff2"},"location":{"coordinates":[-73.9714546,40.6761661],"type":"Point"},"name":"Kami Asian"} +,{"_id":{"$oid":"55cba2476c522cafdb057ff3"},"location":{"coordinates":[-73.9993656,40.734915],"type":"Point"},"name":"Bee'S Knees Baking Co"} +,{"_id":{"$oid":"55cba2476c522cafdb057ff4"},"location":{"coordinates":[-74.0985469,40.6392681],"type":"Point"},"name":"Four Seasons Food Service Management"} +,{"_id":{"$oid":"55cba2476c522cafdb057ff5"},"location":{"coordinates":[-73.9131007,40.8048233],"type":"Point"},"name":"Caridad Express Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb057ff6"},"location":{"coordinates":[-73.9067818,40.8297878],"type":"Point"},"name":"Third Ave Car Wash \u0026 Delicatessen"} +,{"_id":{"$oid":"55cba2476c522cafdb057ff7"},"location":{"coordinates":[-73.9728615,40.7621749],"type":"Point"},"name":"Ibm Cafeteria"} +,{"_id":{"$oid":"55cba2476c522cafdb057ff8"},"location":{"coordinates":[-73.9377535,40.8042647],"type":"Point"},"name":"2058 Deli And Grocery"} +,{"_id":{"$oid":"55cba2476c522cafdb057ff9"},"location":{"coordinates":[-73.9875496,40.7222693],"type":"Point"},"name":"Lobster Joint"} +,{"_id":{"$oid":"55cba2476c522cafdb057ffa"},"location":{"coordinates":[-73.9758599,40.5777913],"type":"Point"},"name":"West 8 Happy Wok"} +,{"_id":{"$oid":"55cba2476c522cafdb057ffb"},"location":{"coordinates":[-73.92589,40.86606440000001],"type":"Point"},"name":"Gallery Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb057ffc"},"location":{"coordinates":[-73.8516909,40.6666004],"type":"Point"},"name":"Win Hou"} +,{"_id":{"$oid":"55cba2476c522cafdb057ffd"},"location":{"coordinates":[-73.9784226,40.7242517],"type":"Point"},"name":"The Third Man"} +,{"_id":{"$oid":"55cba2476c522cafdb057ffe"},"location":{"coordinates":[-73.97053149999999,40.7607674],"type":"Point"},"name":"Harlow"} +,{"_id":{"$oid":"55cba2476c522cafdb057fff"},"location":{"coordinates":[-74.00696030000002,40.71573739999999],"type":"Point"},"name":"Akimoto Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb058000"},"location":{"coordinates":[-73.994216,40.7414476],"type":"Point"},"name":"Pret A Manger"} +,{"_id":{"$oid":"55cba2476c522cafdb058001"},"location":{"coordinates":[-73.977553,40.7460624],"type":"Point"},"name":"Ramen Takumi"} +,{"_id":{"$oid":"55cba2476c522cafdb058002"},"location":{"coordinates":[-73.96658359999999,40.758352],"type":"Point"},"name":"Draught 55 Bar \u0026 Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb058003"},"location":{"coordinates":[-73.936335,40.65122],"type":"Point"},"name":"New Siu'S Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb058004"},"location":{"coordinates":[-73.9127927,40.69333049999999],"type":"Point"},"name":"Sabor Toribio Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058005"},"location":{"coordinates":[-73.8638297,40.83227979999999],"type":"Point"},"name":"Mi Casa Su Casa P.T.A"} +,{"_id":{"$oid":"55cba2476c522cafdb058006"},"location":{"coordinates":[-73.977633,40.7418607],"type":"Point"},"name":"Vanguard Wine Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb058007"},"location":{"coordinates":[-73.996732,40.718899],"type":"Point"},"name":"Red Mango"} +,{"_id":{"$oid":"55cba2476c522cafdb058008"},"location":{"coordinates":[-73.9506925,40.8214028],"type":"Point"},"name":"Coccola"} +,{"_id":{"$oid":"55cba2476c522cafdb058009"},"location":{"coordinates":[-73.8778193,40.8728598],"type":"Point"},"name":"Mama Ines Coffee Shop \u0026 Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb05800a"},"location":{"coordinates":[-73.9488166,40.6509905],"type":"Point"},"name":"Lenny'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb05800b"},"location":{"coordinates":[-73.9768121,40.7507385],"type":"Point"},"name":"Zucker'S Bagel"} +,{"_id":{"$oid":"55cba2476c522cafdb05800c"},"location":{"coordinates":[-73.9557413,40.7720266],"type":"Point"},"name":"Vella"} +,{"_id":{"$oid":"55cba2476c522cafdb05800d"},"location":{"coordinates":[-73.9196355,40.8074424],"type":"Point"},"name":"Express Brook Lunch Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05800e"},"location":{"coordinates":[-73.9733481,40.7527019],"type":"Point"},"name":"Benton Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05800f"},"location":{"coordinates":[-73.9928068,40.73327440000001],"type":"Point"},"name":"Peacefood Cafe Downtown"} +,{"_id":{"$oid":"55cba2476c522cafdb058010"},"location":{"coordinates":[-74.0712799,40.6129225],"type":"Point"},"name":"Pizza Mia"} +,{"_id":{"$oid":"55cba2476c522cafdb058011"},"location":{"coordinates":[-74.150739,40.537489],"type":"Point"},"name":"Cucumber Sushi \u0026 Salad Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb058012"},"location":{"coordinates":[-73.97137479999999,40.75398360000001],"type":"Point"},"name":"Bread \u0026 Butter"} +,{"_id":{"$oid":"55cba2476c522cafdb058013"},"location":{"coordinates":[-74.142939,40.554101],"type":"Point"},"name":"Genki Sushi House"} +,{"_id":{"$oid":"55cba2476c522cafdb058014"},"location":{"coordinates":[-73.9605021,40.6614159],"type":"Point"},"name":"De Hot Pot"} +,{"_id":{"$oid":"55cba2476c522cafdb058015"},"location":{"coordinates":[-73.9933803,40.7298639],"type":"Point"},"name":"Fresh \u0026 Co"} +,{"_id":{"$oid":"55cba2476c522cafdb058016"},"location":{"coordinates":[-73.9889929,40.7517319],"type":"Point"},"name":"Shanghai Broadway Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058017"},"location":{"coordinates":[-73.9517149,40.8038744],"type":"Point"},"name":"Juke Box Juice \u0026 Salad"} +,{"_id":{"$oid":"55cba2476c522cafdb058018"},"location":{"coordinates":[-73.957402,40.643124],"type":"Point"},"name":"Bakery St Marc"} +,{"_id":{"$oid":"55cba2476c522cafdb058019"},"location":{"coordinates":[-73.9390123,40.749463],"type":"Point"},"name":"Chickpea"} +,{"_id":{"$oid":"55cba2476c522cafdb05801a"},"location":{"coordinates":[-73.9800343,40.6883087],"type":"Point"},"name":"Fulton Street Bagels"} +,{"_id":{"$oid":"55cba2476c522cafdb05801b"},"location":{"coordinates":[-73.8871727,40.8154527],"type":"Point"},"name":"Xin Rong"} +,{"_id":{"$oid":"55cba2476c522cafdb05801c"},"location":{"coordinates":[-73.806759,40.762885],"type":"Point"},"name":"Gag Pocha"} +,{"_id":{"$oid":"55cba2476c522cafdb05801d"},"location":{"coordinates":[-73.9119047,40.7258004],"type":"Point"},"name":"Rouge"} +,{"_id":{"$oid":"55cba2476c522cafdb05801e"},"location":{"coordinates":[-73.9311956,40.6563028],"type":"Point"},"name":"Live Fast Food"} +,{"_id":{"$oid":"55cba2476c522cafdb05801f"},"location":{"coordinates":[-73.949877,40.680183],"type":"Point"},"name":"Smokey Island Grille"} +,{"_id":{"$oid":"55cba2476c522cafdb058020"},"location":{"coordinates":[-73.92610189999999,40.8630981],"type":"Point"},"name":"Pizza Nova"} +,{"_id":{"$oid":"55cba2476c522cafdb058021"},"location":{"coordinates":[-73.9822612,40.756815],"type":"Point"},"name":"Marsh \u0026 Mclennan Cafeteria"} +,{"_id":{"$oid":"55cba2476c522cafdb058022"},"location":{"coordinates":[-73.88285259999999,40.6664338],"type":"Point"},"name":"Crown Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb058023"},"location":{"coordinates":[-73.9290886,40.682232],"type":"Point"},"name":"Simplicity Wine Bar \u0026 Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058024"},"location":{"coordinates":[-73.8153387,40.7301087],"type":"Point"},"name":"Tony'S Deli Grocery"} +,{"_id":{"$oid":"55cba2476c522cafdb058025"},"location":{"coordinates":[-73.951959,40.65043],"type":"Point"},"name":"Shan King Gyro"} +,{"_id":{"$oid":"55cba2476c522cafdb058026"},"location":{"coordinates":[-73.8866022,40.8552904],"type":"Point"},"name":"Rancho Estrella Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058027"},"location":{"coordinates":[-73.9581321,40.7349934],"type":"Point"},"name":"Eagle Trading Co"} +,{"_id":{"$oid":"55cba2476c522cafdb058028"},"location":{"coordinates":[-73.98579149999999,40.7403701],"type":"Point"},"name":"Salad Pangea"} +,{"_id":{"$oid":"55cba2476c522cafdb058029"},"location":{"coordinates":[-73.9523687,40.8029364],"type":"Point"},"name":"Tropical Grill Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05802a"},"location":{"coordinates":[-73.96005099999999,40.588235],"type":"Point"},"name":"Cafe Gallery"} +,{"_id":{"$oid":"55cba2476c522cafdb05802b"},"location":{"coordinates":[-73.90401279999999,40.7006588],"type":"Point"},"name":"Nepalese Indian Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05802c"},"location":{"coordinates":[-73.98359280000001,40.7266547],"type":"Point"},"name":"Kura"} +,{"_id":{"$oid":"55cba2476c522cafdb05802d"},"location":{"coordinates":[-73.9586478,40.8008307],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb05802e"},"location":{"coordinates":[-73.8652314,40.8321852],"type":"Point"},"name":"El Buen Ambiente #2"} +,{"_id":{"$oid":"55cba2476c522cafdb05802f"},"location":{"coordinates":[-73.9799053,40.68966959999999],"type":"Point"},"name":"Tripp \u0026 Cooper Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058030"},"location":{"coordinates":[-73.98954429999999,40.7492872],"type":"Point"},"name":"Starbucks Coffee Company"} +,{"_id":{"$oid":"55cba2476c522cafdb058031"},"location":{"coordinates":[-73.970755,40.756386],"type":"Point"},"name":"Treehaus"} +,{"_id":{"$oid":"55cba2476c522cafdb058032"},"location":{"coordinates":[-73.9801351,40.77610170000001],"type":"Point"},"name":"Pain D'Epices"} +,{"_id":{"$oid":"55cba2476c522cafdb058033"},"location":{"coordinates":[-73.9326802,40.7641906],"type":"Point"},"name":"Vidali'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb058034"},"location":{"coordinates":[-73.9969739,40.7125434],"type":"Point"},"name":"Mei Yu Spring Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058035"},"location":{"coordinates":[-73.9708163,40.7577483],"type":"Point"},"name":"Au Bon Pain"} +,{"_id":{"$oid":"55cba2476c522cafdb058036"},"location":{"coordinates":[-73.981214,40.7498315],"type":"Point"},"name":"Reserve"} +,{"_id":{"$oid":"55cba2476c522cafdb058037"},"location":{"coordinates":[-73.9499281,40.6345708],"type":"Point"},"name":"Little Caesars"} +,{"_id":{"$oid":"55cba2476c522cafdb058038"},"location":{"coordinates":[-74.0091036,40.650248],"type":"Point"},"name":"Cafe Zona Sur"} +,{"_id":{"$oid":"55cba2476c522cafdb058039"},"location":{"coordinates":[-73.9270161,40.8365194],"type":"Point"},"name":"New Happy Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb05803a"},"location":{"coordinates":[-73.8206836,40.6700165],"type":"Point"},"name":"Gee'S Roti Hut"} +,{"_id":{"$oid":"55cba2476c522cafdb05803b"},"location":{"coordinates":[-73.9391696,40.7911679],"type":"Point"},"name":"Healthier Choices"} +,{"_id":{"$oid":"55cba2476c522cafdb05803c"},"location":{"coordinates":[-73.8915853,40.83025670000001],"type":"Point"},"name":"Kennedy'S Chicken \u0026 Sandwiches"} +,{"_id":{"$oid":"55cba2476c522cafdb05803d"},"location":{"coordinates":[-73.874492,40.748879],"type":"Point"},"name":"Veyta'S Bakery Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05803e"},"location":{"coordinates":[-73.862966,40.748119],"type":"Point"},"name":"Joy Siang Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05803f"},"location":{"coordinates":[-74.026387,40.635616],"type":"Point"},"name":"Felfla"} +,{"_id":{"$oid":"55cba2476c522cafdb058040"},"location":{"coordinates":[-73.989629,40.7732183],"type":"Point"},"name":"Pick-A-Bagel/Pizza Bolla"} +,{"_id":{"$oid":"55cba2476c522cafdb058041"},"location":{"coordinates":[-74.005028,40.622196],"type":"Point"},"name":"Taro Asian Food Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058042"},"location":{"coordinates":[-73.8878679,40.7435879],"type":"Point"},"name":"Pata Pa-Plean"} +,{"_id":{"$oid":"55cba2476c522cafdb058043"},"location":{"coordinates":[-74.014726,40.7153755],"type":"Point"},"name":"Pick-A-Bagel"} +,{"_id":{"$oid":"55cba2476c522cafdb058044"},"location":{"coordinates":[-73.9617471,40.8011789],"type":"Point"},"name":"Isola"} +,{"_id":{"$oid":"55cba2476c522cafdb058045"},"location":{"coordinates":[-74.0195899,40.640187],"type":"Point"},"name":"Angelo'S Pizzeria \u0026 B B Q"} +,{"_id":{"$oid":"55cba2476c522cafdb058046"},"location":{"coordinates":[-73.7606969,40.6921252],"type":"Point"},"name":"Mr. Demus Fishnet Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058047"},"location":{"coordinates":[-73.98346260000001,40.7494923],"type":"Point"},"name":"Peter Dillon'S"} +,{"_id":{"$oid":"55cba2476c522cafdb058048"},"location":{"coordinates":[-73.775623,40.709465],"type":"Point"},"name":"El Rinconcito Mexicano"} +,{"_id":{"$oid":"55cba2476c522cafdb058049"},"location":{"coordinates":[-73.7822056,40.6434612],"type":"Point"},"name":"Rockaway Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05804a"},"location":{"coordinates":[-73.949892,40.783851],"type":"Point"},"name":"The District"} +,{"_id":{"$oid":"55cba2476c522cafdb05804b"},"location":{"coordinates":[-73.9032735,40.7710493],"type":"Point"},"name":"Forno Siciliano"} +,{"_id":{"$oid":"55cba2476c522cafdb05804c"},"location":{"coordinates":[-74.00774129999999,40.71461],"type":"Point"},"name":"Saffron Indian Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb05804d"},"location":{"coordinates":[-73.9916566,40.7320936],"type":"Point"},"name":"Yooglers Frozen Yogurt"} +,{"_id":{"$oid":"55cba2476c522cafdb05804e"},"location":{"coordinates":[-73.8303347,40.7611508],"type":"Point"},"name":"Zebra Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb05804f"},"location":{"coordinates":[-73.901549,40.776191],"type":"Point"},"name":"Tavern On Steinway"} +,{"_id":{"$oid":"55cba2476c522cafdb058050"},"location":{"coordinates":[-73.84591,40.8424059],"type":"Point"},"name":"Erika'S Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb058051"},"location":{"coordinates":[-73.9906483,40.6911821],"type":"Point"},"name":"Piz-Zetta"} +,{"_id":{"$oid":"55cba2476c522cafdb058052"},"location":{"coordinates":[-73.9876705,40.7268324],"type":"Point"},"name":"Malai Marke"} +,{"_id":{"$oid":"55cba2476c522cafdb058053"},"location":{"coordinates":[-73.9226377,40.6651065],"type":"Point"},"name":"Crown Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb058054"},"location":{"coordinates":[-73.97721779999999,40.7628745],"type":"Point"},"name":"Tang Pavilion"} +,{"_id":{"$oid":"55cba2476c522cafdb058055"},"location":{"coordinates":[-73.75391979999999,40.6098962],"type":"Point"},"name":"Lucky Six Happy"} +,{"_id":{"$oid":"55cba2476c522cafdb058056"},"location":{"coordinates":[-73.931664,40.60931069999999],"type":"Point"},"name":"New Grand Wok"} +,{"_id":{"$oid":"55cba2476c522cafdb058057"},"location":{"coordinates":[-73.9802091,40.7802668],"type":"Point"},"name":"Fusha"} +,{"_id":{"$oid":"55cba2476c522cafdb058058"},"location":{"coordinates":[-73.95071949999999,40.774521],"type":"Point"},"name":"Inase Sushi Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058059"},"location":{"coordinates":[-73.9797722,40.7355665],"type":"Point"},"name":"Ess-A-Bagel 1"} +,{"_id":{"$oid":"55cba2476c522cafdb05805a"},"location":{"coordinates":[-73.94908939999999,40.643661],"type":"Point"},"name":"Thanksgiving Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05805b"},"location":{"coordinates":[-74.0039304,40.65098],"type":"Point"},"name":"Gina'S Pizzaeria/ Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb05805c"},"location":{"coordinates":[-73.9712797,40.7572872],"type":"Point"},"name":"Cafe Today"} +,{"_id":{"$oid":"55cba2476c522cafdb05805d"},"location":{"coordinates":[-73.933915,40.6959551],"type":"Point"},"name":"Bloom Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05805e"},"location":{"coordinates":[-73.9798888,40.7815249],"type":"Point"},"name":"Creative Juice"} +,{"_id":{"$oid":"55cba2476c522cafdb05805f"},"location":{"coordinates":[-73.9845362,40.7620434],"type":"Point"},"name":"Creative Juice"} +,{"_id":{"$oid":"55cba2476c522cafdb058060"},"location":{"coordinates":[-73.9265418,40.7601242],"type":"Point"},"name":"Kapeshnica"} +,{"_id":{"$oid":"55cba2476c522cafdb058061"},"location":{"coordinates":[-73.9878415,40.7458641],"type":"Point"},"name":"Chandni Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058062"},"location":{"coordinates":[-74.01278599999999,40.649971],"type":"Point"},"name":"Calixto'S Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb058063"},"location":{"coordinates":[-73.9871403,40.7141783],"type":"Point"},"name":"Eastwood"} +,{"_id":{"$oid":"55cba2476c522cafdb058064"},"location":{"coordinates":[-74.07731609999999,40.6420199],"type":"Point"},"name":"Not Guilty Delicatessen"} +,{"_id":{"$oid":"55cba2476c522cafdb058065"},"location":{"coordinates":[-73.9178766,40.7409617],"type":"Point"},"name":"Tacos Santa Fe"} +,{"_id":{"$oid":"55cba2476c522cafdb058066"},"location":{"coordinates":[-73.947701,40.8255806],"type":"Point"},"name":"New Kim Tong"} +,{"_id":{"$oid":"55cba2476c522cafdb058067"},"location":{"coordinates":[-73.95555999999999,40.6812614],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb058068"},"location":{"coordinates":[-73.984605,40.743799],"type":"Point"},"name":"Snafu 28"} +,{"_id":{"$oid":"55cba2476c522cafdb058069"},"location":{"coordinates":[-73.9865986,40.7279956],"type":"Point"},"name":"Sushi Lounge/Hot Pot"} +,{"_id":{"$oid":"55cba2476c522cafdb05806a"},"location":{"coordinates":[-73.8317197,40.7150044],"type":"Point"},"name":"Red Mango Frozen Yogurt"} +,{"_id":{"$oid":"55cba2476c522cafdb05806b"},"location":{"coordinates":[-73.97940849999999,40.7761133],"type":"Point"},"name":"Amber"} +,{"_id":{"$oid":"55cba2476c522cafdb05806c"},"location":{"coordinates":[-73.9801835,40.7554546],"type":"Point"},"name":"Cafe 45"} +,{"_id":{"$oid":"55cba2476c522cafdb05806d"},"location":{"coordinates":[-73.82581789999999,40.74300179999999],"type":"Point"},"name":"East Dim Sum"} +,{"_id":{"$oid":"55cba2476c522cafdb05806e"},"location":{"coordinates":[-73.94972,40.78015300000001],"type":"Point"},"name":"Il Vino City Wine Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05806f"},"location":{"coordinates":[-73.9440224,40.8156487],"type":"Point"},"name":"Herbalife"} +,{"_id":{"$oid":"55cba2476c522cafdb058070"},"location":{"coordinates":[-82.4899192,29.6892709],"type":"Point"},"name":"Cake House Win"} +,{"_id":{"$oid":"55cba2476c522cafdb058071"},"location":{"coordinates":[-74.0081333,40.7094561],"type":"Point"},"name":"Vivi Bubble Tea"} +,{"_id":{"$oid":"55cba2476c522cafdb058072"},"location":{"coordinates":[-73.985956,40.735544],"type":"Point"},"name":"Triona'S Bar Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058073"},"location":{"coordinates":[-73.9843697,40.7424126],"type":"Point"},"name":"Sarabeth'S"} +,{"_id":{"$oid":"55cba2476c522cafdb058074"},"location":{"coordinates":[-73.928151,40.6255693],"type":"Point"},"name":"New Hot Wok"} +,{"_id":{"$oid":"55cba2476c522cafdb058075"},"location":{"coordinates":[-73.8957258,40.73669700000001],"type":"Point"},"name":"69 Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb058076"},"location":{"coordinates":[-73.8047344,40.7624124],"type":"Point"},"name":"Cafe Originale"} +,{"_id":{"$oid":"55cba2476c522cafdb058077"},"location":{"coordinates":[-73.8505172,40.722034],"type":"Point"},"name":"Forest Hills Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb058078"},"location":{"coordinates":[-73.9662705,40.8000976],"type":"Point"},"name":"New Ranchito"} +,{"_id":{"$oid":"55cba2476c522cafdb058079"},"location":{"coordinates":[-73.88495619999999,40.8517534],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb05807a"},"location":{"coordinates":[-73.961641,40.661018],"type":"Point"},"name":"China House Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb05807b"},"location":{"coordinates":[-74.164141,40.5595521],"type":"Point"},"name":"Yogurt City"} +,{"_id":{"$oid":"55cba2476c522cafdb05807c"},"location":{"coordinates":[-73.98632769999999,40.7194306],"type":"Point"},"name":"Sweet Buttons"} +,{"_id":{"$oid":"55cba2476c522cafdb05807d"},"location":{"coordinates":[-73.9503667,40.6349956],"type":"Point"},"name":"D'Savannah"} +,{"_id":{"$oid":"55cba2476c522cafdb05807e"},"location":{"coordinates":[-73.82528099999999,40.8679386],"type":"Point"},"name":"Dallas Bbq"} +,{"_id":{"$oid":"55cba2476c522cafdb05807f"},"location":{"coordinates":[-73.8581593,40.8914112],"type":"Point"},"name":"Dragon State Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb058080"},"location":{"coordinates":[-74.00693079999999,40.7096482],"type":"Point"},"name":"Wanted Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb058081"},"location":{"coordinates":[-73.74669229999999,40.6959972],"type":"Point"},"name":"Panda Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058082"},"location":{"coordinates":[-73.9871981,40.7297161],"type":"Point"},"name":"Alder"} +,{"_id":{"$oid":"55cba2476c522cafdb058083"},"location":{"coordinates":[-73.9206487,40.7449667],"type":"Point"},"name":"Lentini Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb058084"},"location":{"coordinates":[-73.9833361,40.75079890000001],"type":"Point"},"name":"Rockefeller Foundation"} +,{"_id":{"$oid":"55cba2476c522cafdb058085"},"location":{"coordinates":[-73.8796399,40.701858],"type":"Point"},"name":"Glendale Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb058086"},"location":{"coordinates":[-73.9216929,40.6792662],"type":"Point"},"name":"Crown Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb058087"},"location":{"coordinates":[-73.7822056,40.6434612],"type":"Point"},"name":"Vino Volo"} +,{"_id":{"$oid":"55cba2476c522cafdb058088"},"location":{"coordinates":[-73.9495566,40.6521815],"type":"Point"},"name":"Ahmani'S Jus Juice \u0026 Health Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb058089"},"location":{"coordinates":[-73.814286,40.76221400000001],"type":"Point"},"name":"Caffeine Fix Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05808a"},"location":{"coordinates":[-73.9351848,40.8520738],"type":"Point"},"name":"Alex Steak House Bar \u0026 Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05808b"},"location":{"coordinates":[-73.97152990000001,40.5862565],"type":"Point"},"name":"Family Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb05808c"},"location":{"coordinates":[-73.9122874,40.6135998],"type":"Point"},"name":"Joseph Dream Burger"} +,{"_id":{"$oid":"55cba2476c522cafdb05808d"},"location":{"coordinates":[-73.9978624,40.6913843],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb05808e"},"location":{"coordinates":[-73.8203212,40.8251239],"type":"Point"},"name":"Sugi Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb05808f"},"location":{"coordinates":[-73.9937748,40.715124],"type":"Point"},"name":"27 Sheng Wang Noodle Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb058090"},"location":{"coordinates":[-73.91708299999999,40.828623],"type":"Point"},"name":"Bamboo Rest"} +,{"_id":{"$oid":"55cba2476c522cafdb058091"},"location":{"coordinates":[-73.92534479999999,40.6913821],"type":"Point"},"name":"Popeyes/Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb058092"},"location":{"coordinates":[-73.98476,40.752379],"type":"Point"},"name":"Evr"} +,{"_id":{"$oid":"55cba2476c522cafdb058093"},"location":{"coordinates":[-73.9863608,40.7225201],"type":"Point"},"name":"Boulton \u0026 Watt"} +,{"_id":{"$oid":"55cba2476c522cafdb058094"},"location":{"coordinates":[-73.9435,40.701896],"type":"Point"},"name":"New Fun Sing Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058095"},"location":{"coordinates":[-73.8686874,40.8396451],"type":"Point"},"name":"Burger One Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb058096"},"location":{"coordinates":[-74.2313678,40.5267277],"type":"Point"},"name":"Cheeburger Cheeburger"} +,{"_id":{"$oid":"55cba2476c522cafdb058097"},"location":{"coordinates":[-73.8794527,40.7410775],"type":"Point"},"name":"Starry Bakery \u0026 Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058098"},"location":{"coordinates":[-73.84472079999999,40.6848722],"type":"Point"},"name":"Sunrise Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058099"},"location":{"coordinates":[-73.9363765,40.8498569],"type":"Point"},"name":"New Golden Star Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05809a"},"location":{"coordinates":[-73.8438278,40.8480659],"type":"Point"},"name":"Bread And Butter Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05809b"},"location":{"coordinates":[-73.98314599999999,40.73106600000001],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb05809c"},"location":{"coordinates":[-74.129176,40.637733],"type":"Point"},"name":"Vall'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb05809d"},"location":{"coordinates":[-74.0115409,40.6123369],"type":"Point"},"name":"Sababa Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb05809e"},"location":{"coordinates":[-73.85901199999999,40.846573],"type":"Point"},"name":"900 Park"} +,{"_id":{"$oid":"55cba2476c522cafdb05809f"},"location":{"coordinates":[-73.919409,40.8654038],"type":"Point"},"name":"Little Caesers"} +,{"_id":{"$oid":"55cba2476c522cafdb0580a0"},"location":{"coordinates":[-73.9232231,40.835576],"type":"Point"},"name":"Checkers"} +,{"_id":{"$oid":"55cba2476c522cafdb0580a1"},"location":{"coordinates":[-73.9414388,40.7009835],"type":"Point"},"name":"Taco Bell And Pizza Hut"} +,{"_id":{"$oid":"55cba2476c522cafdb0580a2"},"location":{"coordinates":[-73.9607163,40.66058],"type":"Point"},"name":"Tugboat Tea Company"} +,{"_id":{"$oid":"55cba2476c522cafdb0580a3"},"location":{"coordinates":[-73.98421359999999,40.7578977],"type":"Point"},"name":"John'S Shanghai"} +,{"_id":{"$oid":"55cba2476c522cafdb0580a4"},"location":{"coordinates":[-74.007166,40.710222],"type":"Point"},"name":"Long Island Bagel Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0580a5"},"location":{"coordinates":[-73.8917305,40.7466313],"type":"Point"},"name":"Rainbow Bakery \u0026 Ice Cream"} +,{"_id":{"$oid":"55cba2476c522cafdb0580a6"},"location":{"coordinates":[-73.979964,40.604918],"type":"Point"},"name":"Great Wall"} +,{"_id":{"$oid":"55cba2476c522cafdb0580a7"},"location":{"coordinates":[-73.938599,40.82211110000001],"type":"Point"},"name":"Home Garden Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0580a8"},"location":{"coordinates":[-73.928078,40.704046],"type":"Point"},"name":"156 Tex Bar And Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb0580a9"},"location":{"coordinates":[-73.9766227,40.7493352],"type":"Point"},"name":"Salvation Taco"} +,{"_id":{"$oid":"55cba2476c522cafdb0580aa"},"location":{"coordinates":[-73.86227219999999,40.6798768],"type":"Point"},"name":"Yang Kee'S No.1 Chinese Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0580ab"},"location":{"coordinates":[-73.969526,40.622695],"type":"Point"},"name":"New York Kosher Caterers"} +,{"_id":{"$oid":"55cba2476c522cafdb0580ac"},"location":{"coordinates":[-73.999144,40.645872],"type":"Point"},"name":"Asea Fusion \u0026 Yakitori Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb0580ad"},"location":{"coordinates":[-73.86682309999999,40.8314649],"type":"Point"},"name":"John'S Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb0580ae"},"location":{"coordinates":[-73.9449412,40.8335032],"type":"Point"},"name":"Restaurante La Libertad"} +,{"_id":{"$oid":"55cba2476c522cafdb0580af"},"location":{"coordinates":[-73.8433624,40.6805708],"type":"Point"},"name":"Ho Ho Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb0580b0"},"location":{"coordinates":[-74.1305187,40.6128695],"type":"Point"},"name":"Lucy'S Cuban Cuisine Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0580b1"},"location":{"coordinates":[-73.95113959999999,40.7247891],"type":"Point"},"name":"La Nortena"} +,{"_id":{"$oid":"55cba2476c522cafdb0580b2"},"location":{"coordinates":[-73.96464619999999,40.6408367],"type":"Point"},"name":"Catskill Bagel Co."} +,{"_id":{"$oid":"55cba2476c522cafdb0580b3"},"location":{"coordinates":[-73.98809899999999,40.765214],"type":"Point"},"name":"Mi Nidito"} +,{"_id":{"$oid":"55cba2476c522cafdb0580b4"},"location":{"coordinates":[-73.888942,40.81147600000001],"type":"Point"},"name":"Riconcito"} +,{"_id":{"$oid":"55cba2476c522cafdb0580b5"},"location":{"coordinates":[-73.8567053,40.6926818],"type":"Point"},"name":"Las Nuevas Delicias De Acapulco"} +,{"_id":{"$oid":"55cba2476c522cafdb0580b6"},"location":{"coordinates":[-74.0068636,40.7096409],"type":"Point"},"name":"Magic Mix Juicery"} +,{"_id":{"$oid":"55cba2476c522cafdb0580b7"},"location":{"coordinates":[-73.84190819999999,40.6804503],"type":"Point"},"name":"Villa Marcello"} +,{"_id":{"$oid":"55cba2476c522cafdb0580b8"},"location":{"coordinates":[-73.8394326,40.6863194],"type":"Point"},"name":"China Wok Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb0580b9"},"location":{"coordinates":[-73.9580965,40.7318813],"type":"Point"},"name":"3 Roots"} +,{"_id":{"$oid":"55cba2476c522cafdb0580ba"},"location":{"coordinates":[-73.8271704,40.831331],"type":"Point"},"name":"Old Wah Yoan Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0580bb"},"location":{"coordinates":[-73.9084663,40.8474818],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb0580bc"},"location":{"coordinates":[-73.9839944,40.7508921],"type":"Point"},"name":"Reichenbach Hall"} +,{"_id":{"$oid":"55cba2476c522cafdb0580bd"},"location":{"coordinates":[-73.97958190000001,40.73601499999999],"type":"Point"},"name":"Moe'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0580be"},"location":{"coordinates":[-74.1560404,40.6262438],"type":"Point"},"name":"Nathan'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0580bf"},"location":{"coordinates":[-73.9970321,40.7218284],"type":"Point"},"name":"The Cleveland Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0580c0"},"location":{"coordinates":[-73.994686,40.575766],"type":"Point"},"name":"Panda Restaurant 2807"} +,{"_id":{"$oid":"55cba2476c522cafdb0580c1"},"location":{"coordinates":[-73.7981056,40.6913541],"type":"Point"},"name":"China Sing"} +,{"_id":{"$oid":"55cba2476c522cafdb0580c2"},"location":{"coordinates":[-73.99096899999999,40.663927],"type":"Point"},"name":"Energy Fuel Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0580c3"},"location":{"coordinates":[-73.9768215,40.6812791],"type":"Point"},"name":"The Montrose"} +,{"_id":{"$oid":"55cba2476c522cafdb0580c4"},"location":{"coordinates":[-74.0000702,40.7383432],"type":"Point"},"name":"Birch Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0580c5"},"location":{"coordinates":[-74.008754,40.636584],"type":"Point"},"name":"Good Good Taste"} +,{"_id":{"$oid":"55cba2476c522cafdb0580c6"},"location":{"coordinates":[-73.9017037,40.7783129],"type":"Point"},"name":"Singlecut Beersmiths"} +,{"_id":{"$oid":"55cba2476c522cafdb0580c7"},"location":{"coordinates":[-73.958811,40.714824],"type":"Point"},"name":"Isle Of Skye"} +,{"_id":{"$oid":"55cba2476c522cafdb0580c8"},"location":{"coordinates":[-73.98257319999999,40.7428778],"type":"Point"},"name":"Lahori Kabab"} +,{"_id":{"$oid":"55cba2476c522cafdb0580c9"},"location":{"coordinates":[-73.888322,40.7432329],"type":"Point"},"name":"Tea Cup Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0580ca"},"location":{"coordinates":[-74.0271769,40.6207798],"type":"Point"},"name":"Hl Spring Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb0580cb"},"location":{"coordinates":[-73.95956,40.73317],"type":"Point"},"name":"Achilles Heel"} +,{"_id":{"$oid":"55cba2476c522cafdb0580cc"},"location":{"coordinates":[-74.0141203,40.6760476],"type":"Point"},"name":"F\u0026M Cafe \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0580cd"},"location":{"coordinates":[-74.212501,40.5512508],"type":"Point"},"name":"Yogurt Down Under"} +,{"_id":{"$oid":"55cba2476c522cafdb0580ce"},"location":{"coordinates":[-73.9888235,40.7026714],"type":"Point"},"name":"Pinkberry"} +,{"_id":{"$oid":"55cba2476c522cafdb0580cf"},"location":{"coordinates":[-73.8771567,40.7371906],"type":"Point"},"name":"Subway/Carvel"} +,{"_id":{"$oid":"55cba2476c522cafdb0580d0"},"location":{"coordinates":[-73.9881678,40.7208366],"type":"Point"},"name":"La Margarita Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb0580d1"},"location":{"coordinates":[-73.9154128,40.7424227],"type":"Point"},"name":"Secrets Gentleman'S Club"} +,{"_id":{"$oid":"55cba2476c522cafdb0580d2"},"location":{"coordinates":[-73.8223359,40.7574409],"type":"Point"},"name":"Beijing Style Barbeque"} +,{"_id":{"$oid":"55cba2476c522cafdb0580d3"},"location":{"coordinates":[-73.964595,40.8023487],"type":"Point"},"name":"Concord Garden Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0580d4"},"location":{"coordinates":[-73.9204819,40.7677153],"type":"Point"},"name":"Taste Of Bengal"} +,{"_id":{"$oid":"55cba2476c522cafdb0580d5"},"location":{"coordinates":[-73.99534799999999,40.6840512],"type":"Point"},"name":"Court Pastry Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb0580d6"},"location":{"coordinates":[-73.8866821,40.8707912],"type":"Point"},"name":"Underground Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb0580d7"},"location":{"coordinates":[-74.0049883,40.72132149999999],"type":"Point"},"name":"Crave Espresso Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0580d8"},"location":{"coordinates":[-73.987214,40.761323],"type":"Point"},"name":"Social"} +,{"_id":{"$oid":"55cba2476c522cafdb0580d9"},"location":{"coordinates":[-73.992528,40.753474],"type":"Point"},"name":"Hyatt Place New York/Midtown South"} +,{"_id":{"$oid":"55cba2476c522cafdb0580da"},"location":{"coordinates":[-73.9104047,40.82462049999999],"type":"Point"},"name":"Running Cool Ii Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0580db"},"location":{"coordinates":[-73.9918713,40.7366165],"type":"Point"},"name":"Breads Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0580dc"},"location":{"coordinates":[-73.9691167,40.75499749999999],"type":"Point"},"name":"Sofia Wine Bar \u0026 Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0580dd"},"location":{"coordinates":[-73.9886561,40.6202475],"type":"Point"},"name":"Silver Star Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0580de"},"location":{"coordinates":[-52.7110167,47.5538228],"type":"Point"},"name":"Mooncake Foods"} +,{"_id":{"$oid":"55cba2476c522cafdb0580df"},"location":{"coordinates":[-73.8970681,40.75439],"type":"Point"},"name":"Sum Fung Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0580e0"},"location":{"coordinates":[-73.9914624,40.7461632],"type":"Point"},"name":"Fairfield Inn Chelsea"} +,{"_id":{"$oid":"55cba2476c522cafdb0580e1"},"location":{"coordinates":[-73.94882059999999,40.7633218],"type":"Point"},"name":"China 1 Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0580e2"},"location":{"coordinates":[-73.93889,40.7998327],"type":"Point"},"name":"Harlem Gourmet Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0580e3"},"location":{"coordinates":[-73.975743,40.6895499],"type":"Point"},"name":"Cammareri Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0580e4"},"location":{"coordinates":[-73.9236323,40.6288308],"type":"Point"},"name":"No.1 Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0580e5"},"location":{"coordinates":[-73.8515066,40.7472709],"type":"Point"},"name":"Delish By Amerivents"} +,{"_id":{"$oid":"55cba2476c522cafdb0580e6"},"location":{"coordinates":[-73.98090479999999,40.7414853],"type":"Point"},"name":"Amber"} +,{"_id":{"$oid":"55cba2476c522cafdb0580e7"},"location":{"coordinates":[-73.9716878,40.7510683],"type":"Point"},"name":"East Palace"} +,{"_id":{"$oid":"55cba2476c522cafdb0580e8"},"location":{"coordinates":[-73.95714509999999,40.7749728],"type":"Point"},"name":"Amber"} +,{"_id":{"$oid":"55cba2476c522cafdb0580e9"},"location":{"coordinates":[-73.9563494,40.6947217],"type":"Point"},"name":"Lins China Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb0580ea"},"location":{"coordinates":[-74.0266106,40.620672],"type":"Point"},"name":"Lone Star Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0580eb"},"location":{"coordinates":[-73.78896809999999,40.7578328],"type":"Point"},"name":"Gugontan Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb0580ec"},"location":{"coordinates":[-73.95784259999999,40.7222462],"type":"Point"},"name":"The Panther Room"} +,{"_id":{"$oid":"55cba2476c522cafdb0580ed"},"location":{"coordinates":[-73.95784259999999,40.7222462],"type":"Point"},"name":"Output Club"} +,{"_id":{"$oid":"55cba2476c522cafdb0580ee"},"location":{"coordinates":[-73.899564,40.746159],"type":"Point"},"name":"La Fonda Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0580ef"},"location":{"coordinates":[-74.02557,40.635931],"type":"Point"},"name":"Fu Lai O Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0580f0"},"location":{"coordinates":[-73.97422,40.747616],"type":"Point"},"name":"Six Happiness Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0580f1"},"location":{"coordinates":[-73.9905211,40.7155594],"type":"Point"},"name":"Barzinho"} +,{"_id":{"$oid":"55cba2476c522cafdb0580f2"},"location":{"coordinates":[-73.8142,40.6827759],"type":"Point"},"name":"World America Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0580f3"},"location":{"coordinates":[-73.819231,40.691586],"type":"Point"},"name":"New Cheun Hing Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0580f4"},"location":{"coordinates":[-73.986822,40.748773],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0580f5"},"location":{"coordinates":[-73.9885901,40.7349576],"type":"Point"},"name":"Headless Horseman"} +,{"_id":{"$oid":"55cba2476c522cafdb0580f6"},"location":{"coordinates":[-73.9213214,40.7139852],"type":"Point"},"name":"Bun-Ker Vietnamese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0580f7"},"location":{"coordinates":[-73.8070066,40.76340099999999],"type":"Point"},"name":"Misoya"} +,{"_id":{"$oid":"55cba2476c522cafdb0580f8"},"location":{"coordinates":[-73.957821,40.770006],"type":"Point"},"name":"Six Happiness"} +,{"_id":{"$oid":"55cba2476c522cafdb0580f9"},"location":{"coordinates":[-74.0004534,40.7311503],"type":"Point"},"name":"Francisca Pizzeria Bagel Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0580fa"},"location":{"coordinates":[-73.98971019999999,40.7331655],"type":"Point"},"name":"The Royal"} +,{"_id":{"$oid":"55cba2476c522cafdb0580fb"},"location":{"coordinates":[-73.981301,40.7411244],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0580fc"},"location":{"coordinates":[-73.9649501,40.6832396],"type":"Point"},"name":"Bergen Bagels"} +,{"_id":{"$oid":"55cba2476c522cafdb0580fd"},"location":{"coordinates":[-74.00253959999999,40.7579403],"type":"Point"},"name":"Market Place (Centerplate)"} +,{"_id":{"$oid":"55cba2476c522cafdb0580fe"},"location":{"coordinates":[-74.00253959999999,40.7579403],"type":"Point"},"name":"Cafe Kitchen (Centerplate Cafe And Kitchen)"} +,{"_id":{"$oid":"55cba2476c522cafdb0580ff"},"location":{"coordinates":[-73.9755346,40.7496967],"type":"Point"},"name":"Mccann Cafeteria"} +,{"_id":{"$oid":"55cba2476c522cafdb058100"},"location":{"coordinates":[-73.98952609999999,40.7507917],"type":"Point"},"name":"Stella 34"} +,{"_id":{"$oid":"55cba2476c522cafdb058101"},"location":{"coordinates":[-73.9130718,40.7040234],"type":"Point"},"name":"Arianita'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058102"},"location":{"coordinates":[-73.94771600000001,40.70379190000001],"type":"Point"},"name":"La Guira Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058103"},"location":{"coordinates":[-73.75347529999999,40.6938713],"type":"Point"},"name":"The Kountry Style"} +,{"_id":{"$oid":"55cba2476c522cafdb058104"},"location":{"coordinates":[-74.0036235,40.7420877],"type":"Point"},"name":"Cherry"} +,{"_id":{"$oid":"55cba2476c522cafdb058105"},"location":{"coordinates":[-73.93935359999999,40.74980410000001],"type":"Point"},"name":"Raj'S Indian Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb058106"},"location":{"coordinates":[-73.97835260000001,40.7775212],"type":"Point"},"name":"The Dakota Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb058107"},"location":{"coordinates":[-73.9841177,40.6776139],"type":"Point"},"name":"Dinosaur Bar-B-Que"} +,{"_id":{"$oid":"55cba2476c522cafdb058108"},"location":{"coordinates":[-73.9612765,40.6879835],"type":"Point"},"name":"Marietta"} +,{"_id":{"$oid":"55cba2476c522cafdb058109"},"location":{"coordinates":[-73.96382369999999,40.682663],"type":"Point"},"name":"Three Letters"} +,{"_id":{"$oid":"55cba2476c522cafdb05810a"},"location":{"coordinates":[-73.96364179999999,40.6153899],"type":"Point"},"name":"Day 5"} +,{"_id":{"$oid":"55cba2476c522cafdb05810b"},"location":{"coordinates":[-73.97032879999999,40.7554491],"type":"Point"},"name":"Radiance"} +,{"_id":{"$oid":"55cba2476c522cafdb05810c"},"location":{"coordinates":[-73.96943759999999,40.7572813],"type":"Point"},"name":"7 Green \u0026 Grain"} +,{"_id":{"$oid":"55cba2476c522cafdb05810d"},"location":{"coordinates":[-73.94704829999999,40.775547],"type":"Point"},"name":"Ottomanelli Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05810e"},"location":{"coordinates":[-73.9845776,40.7511624],"type":"Point"},"name":"Fairfield Inn B"} +,{"_id":{"$oid":"55cba2476c522cafdb05810f"},"location":{"coordinates":[-73.95268039999999,40.7830623],"type":"Point"},"name":"Effys At The 92Y"} +,{"_id":{"$oid":"55cba2476c522cafdb058110"},"location":{"coordinates":[-73.9796227,40.6694861],"type":"Point"},"name":"Just Salad"} +,{"_id":{"$oid":"55cba2476c522cafdb058111"},"location":{"coordinates":[-73.9512472,40.8246131],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb058112"},"location":{"coordinates":[-74.01393,40.6278],"type":"Point"},"name":"Indigo Murphy'S"} +,{"_id":{"$oid":"55cba2476c522cafdb058113"},"location":{"coordinates":[-73.9845467,40.6630725],"type":"Point"},"name":"Stoop Juice"} +,{"_id":{"$oid":"55cba2476c522cafdb058114"},"location":{"coordinates":[-73.9483126,40.6407058],"type":"Point"},"name":"Lenny'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb058115"},"location":{"coordinates":[-73.9156699,40.6612651],"type":"Point"},"name":"China City"} +,{"_id":{"$oid":"55cba2476c522cafdb058116"},"location":{"coordinates":[-73.957166,40.7770191],"type":"Point"},"name":"El Aguila"} +,{"_id":{"$oid":"55cba2476c522cafdb058117"},"location":{"coordinates":[-73.9806335,40.6919898],"type":"Point"},"name":"Seafood Fried Fish/Ocean Fresh Fish"} +,{"_id":{"$oid":"55cba2476c522cafdb058118"},"location":{"coordinates":[-73.96280949999999,40.763625],"type":"Point"},"name":"Brod Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb058119"},"location":{"coordinates":[-73.99135489999999,40.7266592],"type":"Point"},"name":"Wise Men"} +,{"_id":{"$oid":"55cba2476c522cafdb05811a"},"location":{"coordinates":[-73.969667,40.759771],"type":"Point"},"name":"Just Salad"} +,{"_id":{"$oid":"55cba2476c522cafdb05811b"},"location":{"coordinates":[-74.0180587,40.6416735],"type":"Point"},"name":"Rosa'S Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb05811c"},"location":{"coordinates":[-73.9375621,40.85512490000001],"type":"Point"},"name":"187 Yang Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb05811d"},"location":{"coordinates":[-73.8151426,40.7397295],"type":"Point"},"name":"Kissena Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05811e"},"location":{"coordinates":[-73.97273419999999,40.6091562],"type":"Point"},"name":"Cupola Samarkanda"} +,{"_id":{"$oid":"55cba2476c522cafdb05811f"},"location":{"coordinates":[-73.8914794,40.866889],"type":"Point"},"name":"Best King Wah Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058120"},"location":{"coordinates":[-73.9940419,40.632752],"type":"Point"},"name":"Bp Sub Express"} +,{"_id":{"$oid":"55cba2476c522cafdb058121"},"location":{"coordinates":[-73.91179,40.76819400000001],"type":"Point"},"name":"Aden Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058122"},"location":{"coordinates":[-73.9936124,40.7312238],"type":"Point"},"name":"Just Salad"} +,{"_id":{"$oid":"55cba2476c522cafdb058123"},"location":{"coordinates":[-74.0124168,40.633125],"type":"Point"},"name":"Sweet Dynasty"} +,{"_id":{"$oid":"55cba2476c522cafdb058124"},"location":{"coordinates":[-74.0089261,40.63606559999999],"type":"Point"},"name":"Ouyang Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058125"},"location":{"coordinates":[-73.9872819,40.76209739999999],"type":"Point"},"name":"Just Salad"} +,{"_id":{"$oid":"55cba2476c522cafdb058126"},"location":{"coordinates":[-73.9898838,40.7156745],"type":"Point"},"name":"Homemade Dumpling"} +,{"_id":{"$oid":"55cba2476c522cafdb058127"},"location":{"coordinates":[-73.988097,40.755396],"type":"Point"},"name":"Bar Catalonia"} +,{"_id":{"$oid":"55cba2476c522cafdb058128"},"location":{"coordinates":[-73.8177462,40.7497359],"type":"Point"},"name":"Good Fortune Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058129"},"location":{"coordinates":[-73.926799,40.703318],"type":"Point"},"name":"Nelson Paella Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05812a"},"location":{"coordinates":[-73.8749004,40.7393276],"type":"Point"},"name":"Blackthorn 51"} +,{"_id":{"$oid":"55cba2476c522cafdb05812b"},"location":{"coordinates":[-73.97775469999999,40.6799791],"type":"Point"},"name":"Pizza Town"} +,{"_id":{"$oid":"55cba2476c522cafdb05812c"},"location":{"coordinates":[-73.939612,40.79804],"type":"Point"},"name":"F \u0026 F 99 Cents Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05812d"},"location":{"coordinates":[-73.8539708,40.7421136],"type":"Point"},"name":"La Morenita Ecuatoriana Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05812e"},"location":{"coordinates":[-73.9797974,40.7388594],"type":"Point"},"name":"Kipsey'S"} +,{"_id":{"$oid":"55cba2476c522cafdb05812f"},"location":{"coordinates":[-73.989497,40.754057],"type":"Point"},"name":"Tagine"} +,{"_id":{"$oid":"55cba2476c522cafdb058130"},"location":{"coordinates":[-73.9460547,40.6317639],"type":"Point"},"name":"Doo Wop Griddle"} +,{"_id":{"$oid":"55cba2476c522cafdb058131"},"location":{"coordinates":[-73.93094700000002,40.6673199],"type":"Point"},"name":"Organic Love"} +,{"_id":{"$oid":"55cba2476c522cafdb058132"},"location":{"coordinates":[-74.0288656,40.6280576],"type":"Point"},"name":"Windy City Ale House"} +,{"_id":{"$oid":"55cba2476c522cafdb058133"},"location":{"coordinates":[-73.99249999999999,40.741648],"type":"Point"},"name":"Mira Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb058134"},"location":{"coordinates":[-74.0040836,40.6514755],"type":"Point"},"name":"China Wok"} +,{"_id":{"$oid":"55cba2476c522cafdb058135"},"location":{"coordinates":[-73.8051335,40.7629702],"type":"Point"},"name":"Java Day"} +,{"_id":{"$oid":"55cba2476c522cafdb058136"},"location":{"coordinates":[-73.98862799999999,40.755308],"type":"Point"},"name":"The Shadow Boxers"} +,{"_id":{"$oid":"55cba2476c522cafdb058137"},"location":{"coordinates":[-73.9025769,40.6451383],"type":"Point"},"name":"Canarsie Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb058138"},"location":{"coordinates":[-73.89313369999999,40.7219555],"type":"Point"},"name":"Golden Wok"} +,{"_id":{"$oid":"55cba2476c522cafdb058139"},"location":{"coordinates":[-74.13513720000002,40.6252815],"type":"Point"},"name":"Forest Ave Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05813a"},"location":{"coordinates":[-73.991072,40.754722],"type":"Point"},"name":"Li Yuan Restaurant And Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb05813b"},"location":{"coordinates":[-73.95400149999999,40.7753074],"type":"Point"},"name":"Burgerfi"} +,{"_id":{"$oid":"55cba2476c522cafdb05813c"},"location":{"coordinates":[-73.94546799999999,40.621094],"type":"Point"},"name":"Palace Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05813d"},"location":{"coordinates":[-73.9626285,40.6634695],"type":"Point"},"name":"Franny'S"} +,{"_id":{"$oid":"55cba2476c522cafdb05813e"},"location":{"coordinates":[-73.9985916,40.7447203],"type":"Point"},"name":"Royal Siam Thai \u0026 Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb05813f"},"location":{"coordinates":[-74.026754,40.63312699999999],"type":"Point"},"name":"Happy Garden Nyc Inc"} +,{"_id":{"$oid":"55cba2476c522cafdb058140"},"location":{"coordinates":[-73.98447809999999,40.6924115],"type":"Point"},"name":"New Golden Fried Dumpling"} +,{"_id":{"$oid":"55cba2476c522cafdb058141"},"location":{"coordinates":[-73.895569,40.732745],"type":"Point"},"name":"Forno Pizzeria \u0026 Trattoria"} +,{"_id":{"$oid":"55cba2476c522cafdb058142"},"location":{"coordinates":[-73.8295961,40.760843],"type":"Point"},"name":"Spring"} +,{"_id":{"$oid":"55cba2476c522cafdb058143"},"location":{"coordinates":[-73.8317236,40.84666319999999],"type":"Point"},"name":"Mangias Pizza And Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb058144"},"location":{"coordinates":[-73.86016500000001,40.846206],"type":"Point"},"name":"Smoke House Bbq Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058145"},"location":{"coordinates":[-74.00024599999999,40.729905],"type":"Point"},"name":"Choza"} +,{"_id":{"$oid":"55cba2476c522cafdb058146"},"location":{"coordinates":[-73.9819825,40.7385763],"type":"Point"},"name":"Gila'S Nosh"} +,{"_id":{"$oid":"55cba2476c522cafdb058147"},"location":{"coordinates":[-73.9469977,40.8058604],"type":"Point"},"name":"Boulevard Bistro"} +,{"_id":{"$oid":"55cba2476c522cafdb058148"},"location":{"coordinates":[-73.9900914,40.7179748],"type":"Point"},"name":"Irving Farm Coffee Roasters"} +,{"_id":{"$oid":"55cba2476c522cafdb058149"},"location":{"coordinates":[-73.9237078,40.7539069],"type":"Point"},"name":"Cafe Ole Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05814a"},"location":{"coordinates":[-73.8332226,40.7539173],"type":"Point"},"name":"Xingyun"} +,{"_id":{"$oid":"55cba2476c522cafdb05814b"},"location":{"coordinates":[-73.82985099999999,40.758158],"type":"Point"},"name":"Red Bean"} +,{"_id":{"$oid":"55cba2476c522cafdb05814c"},"location":{"coordinates":[-73.9367511,40.8198978],"type":"Point"},"name":"Sweet Mama'S Soul Food"} +,{"_id":{"$oid":"55cba2476c522cafdb05814d"},"location":{"coordinates":[-73.98918549999999,40.722535],"type":"Point"},"name":"Los Perros Locos"} +,{"_id":{"$oid":"55cba2476c522cafdb05814e"},"location":{"coordinates":[-73.9210346,40.6103453],"type":"Point"},"name":"Popeyes"} +,{"_id":{"$oid":"55cba2476c522cafdb05814f"},"location":{"coordinates":[-74.0855921,40.6337868],"type":"Point"},"name":"My Family Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb058150"},"location":{"coordinates":[-73.7957316,40.7924012],"type":"Point"},"name":"Logan'S Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058151"},"location":{"coordinates":[-73.97920239999999,40.5933027],"type":"Point"},"name":"Taste Of China Inc."} +,{"_id":{"$oid":"55cba2476c522cafdb058152"},"location":{"coordinates":[-73.9877276,40.7533511],"type":"Point"},"name":"Pie Face"} +,{"_id":{"$oid":"55cba2476c522cafdb058153"},"location":{"coordinates":[-73.793317,40.679976],"type":"Point"},"name":"Scaddies Caribbean Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058154"},"location":{"coordinates":[-73.768428,40.75931300000001],"type":"Point"},"name":"New Magic Chef"} +,{"_id":{"$oid":"55cba2476c522cafdb058155"},"location":{"coordinates":[-73.9952593,40.7544839],"type":"Point"},"name":"Pie Face"} +,{"_id":{"$oid":"55cba2476c522cafdb058156"},"location":{"coordinates":[-73.976987,40.78552200000001],"type":"Point"},"name":"Amaze"} +,{"_id":{"$oid":"55cba2476c522cafdb058157"},"location":{"coordinates":[-73.9776856,40.7499],"type":"Point"},"name":"Kajitsu"} +,{"_id":{"$oid":"55cba2476c522cafdb058158"},"location":{"coordinates":[-73.830854,40.758839],"type":"Point"},"name":"Traditional Hunan Style"} +,{"_id":{"$oid":"55cba2476c522cafdb058159"},"location":{"coordinates":[-73.9532771,40.8078669],"type":"Point"},"name":"Zoe Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05815a"},"location":{"coordinates":[-73.82086699999999,40.68018],"type":"Point"},"name":"Trinciti Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb05815b"},"location":{"coordinates":[-73.948291,40.633776],"type":"Point"},"name":"Wong'S Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb05815c"},"location":{"coordinates":[-73.9964983,40.7434156],"type":"Point"},"name":"Thai Plus"} +,{"_id":{"$oid":"55cba2476c522cafdb05815d"},"location":{"coordinates":[-73.9624807,40.6726965],"type":"Point"},"name":"Lincoln Station"} +,{"_id":{"$oid":"55cba2476c522cafdb05815e"},"location":{"coordinates":[-74.15872019999999,40.6119754],"type":"Point"},"name":"Mei Shi"} +,{"_id":{"$oid":"55cba2476c522cafdb05815f"},"location":{"coordinates":[-73.9607127,40.581555],"type":"Point"},"name":"Aqualina Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb058160"},"location":{"coordinates":[-73.8172403,40.7022819],"type":"Point"},"name":"St. Alban'S Ii Pizzeria \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058161"},"location":{"coordinates":[-73.98688229999999,40.703275],"type":"Point"},"name":"Olympia Wine Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb058162"},"location":{"coordinates":[-73.9987786,40.7179752],"type":"Point"},"name":"Aux Epices"} +,{"_id":{"$oid":"55cba2476c522cafdb058163"},"location":{"coordinates":[-74.006405,40.734609],"type":"Point"},"name":"Sweet Corner"} +,{"_id":{"$oid":"55cba2476c522cafdb058164"},"location":{"coordinates":[-73.940223,40.6254166],"type":"Point"},"name":"Best Wok Flatbush"} +,{"_id":{"$oid":"55cba2476c522cafdb058165"},"location":{"coordinates":[-74.0086171,40.7069298],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb058166"},"location":{"coordinates":[-73.98392799999999,40.762719],"type":"Point"},"name":"Gallagher'S"} +,{"_id":{"$oid":"55cba2476c522cafdb058167"},"location":{"coordinates":[-73.988511,40.768619],"type":"Point"},"name":"Bei Jing Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058168"},"location":{"coordinates":[-73.7458771,40.7362064],"type":"Point"},"name":"Osaka Japanese Fusion"} +,{"_id":{"$oid":"55cba2476c522cafdb058169"},"location":{"coordinates":[-73.7997187,40.7042655],"type":"Point"},"name":"New Sarkura Japan"} +,{"_id":{"$oid":"55cba2476c522cafdb05816a"},"location":{"coordinates":[-74.008957,40.605264],"type":"Point"},"name":"Mr. Simi #8 Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb05816b"},"location":{"coordinates":[-73.9822781,40.6052299],"type":"Point"},"name":"We Are Georgians"} +,{"_id":{"$oid":"55cba2476c522cafdb05816c"},"location":{"coordinates":[-73.9906268,40.7446014],"type":"Point"},"name":"Grey Bar \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05816d"},"location":{"coordinates":[-73.9125467,40.7745705],"type":"Point"},"name":"Frankie'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05816e"},"location":{"coordinates":[-74.003886,40.640595],"type":"Point"},"name":"Hometown Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb05816f"},"location":{"coordinates":[-73.99814099999999,40.750379],"type":"Point"},"name":"Aarons Chinese \u0026 Thai Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058170"},"location":{"coordinates":[-73.900712,40.769349],"type":"Point"},"name":"Sergio'S Pizza \u0026 Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb058171"},"location":{"coordinates":[-73.98046920000002,40.6598703],"type":"Point"},"name":"The Sicilian"} +,{"_id":{"$oid":"55cba2476c522cafdb058172"},"location":{"coordinates":[-74.10457,40.561155],"type":"Point"},"name":"Ariana'S Catering Hall"} +,{"_id":{"$oid":"55cba2476c522cafdb058173"},"location":{"coordinates":[-73.97574569999999,40.7442128],"type":"Point"},"name":"The Coffee Bean \u0026 Tea Leaf"} +,{"_id":{"$oid":"55cba2476c522cafdb058174"},"location":{"coordinates":[-73.8290939,40.759362],"type":"Point"},"name":"Szechuan Dish Dumpling"} +,{"_id":{"$oid":"55cba2476c522cafdb058175"},"location":{"coordinates":[-73.9798689,40.776393],"type":"Point"},"name":"Bar Rique"} +,{"_id":{"$oid":"55cba2476c522cafdb058176"},"location":{"coordinates":[-73.883189,40.746203],"type":"Point"},"name":"Cheong Hei Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058177"},"location":{"coordinates":[-73.8408115,40.7812795],"type":"Point"},"name":"10 Points Ktv"} +,{"_id":{"$oid":"55cba2476c522cafdb058178"},"location":{"coordinates":[-73.7612432,40.5999291],"type":"Point"},"name":"Chen Six Flags Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058179"},"location":{"coordinates":[-73.950369,40.792862],"type":"Point"},"name":"King Dragon"} +,{"_id":{"$oid":"55cba2476c522cafdb05817a"},"location":{"coordinates":[-73.994507,40.601984],"type":"Point"},"name":"Free Time Hangout"} +,{"_id":{"$oid":"55cba2476c522cafdb05817b"},"location":{"coordinates":[-73.8113193,40.7022529],"type":"Point"},"name":"Euphoria Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb05817c"},"location":{"coordinates":[-73.887006,40.854633],"type":"Point"},"name":"Home Plate Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05817d"},"location":{"coordinates":[-73.95326539999999,40.7719867],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb05817e"},"location":{"coordinates":[-73.8254346,40.6861786],"type":"Point"},"name":"Tommy'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05817f"},"location":{"coordinates":[-73.99338809999999,40.7451021],"type":"Point"},"name":"Peter Callahan Catering"} +,{"_id":{"$oid":"55cba2476c522cafdb058180"},"location":{"coordinates":[-74.01129399999999,40.636911],"type":"Point"},"name":"Seafood Hot Pot Buffet"} +,{"_id":{"$oid":"55cba2476c522cafdb058181"},"location":{"coordinates":[-73.7394869,40.6601664],"type":"Point"},"name":"Win Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058182"},"location":{"coordinates":[-73.7849391,40.7579646],"type":"Point"},"name":"Chicken Festival"} +,{"_id":{"$oid":"55cba2476c522cafdb058183"},"location":{"coordinates":[-94.8123282,36.9581032],"type":"Point"},"name":"40Th Road Lunch Box"} +,{"_id":{"$oid":"55cba2476c522cafdb058184"},"location":{"coordinates":[-73.9860073,40.7505175],"type":"Point"},"name":"Holiday Inn Express Herald Square"} +,{"_id":{"$oid":"55cba2476c522cafdb058185"},"location":{"coordinates":[-73.95117669999999,40.7748041],"type":"Point"},"name":"East End Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb058186"},"location":{"coordinates":[-87.34540609999999,44.9997715],"type":"Point"},"name":"New Bay Pkwy Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058187"},"location":{"coordinates":[-73.9624979,40.7662292],"type":"Point"},"name":"Phoenix Park"} +,{"_id":{"$oid":"55cba2476c522cafdb058188"},"location":{"coordinates":[-73.9167294,40.8695893],"type":"Point"},"name":"Carrot Top Pastries Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb058189"},"location":{"coordinates":[-73.94180039999999,40.839066],"type":"Point"},"name":"Carrot Top Pastries"} +,{"_id":{"$oid":"55cba2476c522cafdb05818a"},"location":{"coordinates":[-73.9835677,40.7523351],"type":"Point"},"name":"Szechuan Gourmet"} +,{"_id":{"$oid":"55cba2476c522cafdb05818b"},"location":{"coordinates":[-73.95910359999999,40.5783491],"type":"Point"},"name":"Kebeer Grill Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05818c"},"location":{"coordinates":[-73.921329,40.767445],"type":"Point"},"name":"Olde Prague Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb05818d"},"location":{"coordinates":[-74.0082771,40.7130634],"type":"Point"},"name":"Sabor De Mexico"} +,{"_id":{"$oid":"55cba2476c522cafdb05818e"},"location":{"coordinates":[-73.957577,40.598944],"type":"Point"},"name":"Season Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05818f"},"location":{"coordinates":[-73.9150281,40.6617767],"type":"Point"},"name":"Crown Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb058190"},"location":{"coordinates":[-73.995693,40.744522],"type":"Point"},"name":"Chinese Fast Wok"} +,{"_id":{"$oid":"55cba2476c522cafdb058191"},"location":{"coordinates":[-73.72270979999999,40.7251096],"type":"Point"},"name":"Chen Kam'S Garden Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058192"},"location":{"coordinates":[-74.0076053,40.7156902],"type":"Point"},"name":"Taco House"} +,{"_id":{"$oid":"55cba2476c522cafdb058193"},"location":{"coordinates":[-73.8110688,40.7658451],"type":"Point"},"name":"Korean Noodle House."} +,{"_id":{"$oid":"55cba2476c522cafdb058194"},"location":{"coordinates":[-73.8290939,40.759362],"type":"Point"},"name":"Dae Jang Geum"} +,{"_id":{"$oid":"55cba2476c522cafdb058195"},"location":{"coordinates":[-74.0058746,40.7414574],"type":"Point"},"name":"Manon"} +,{"_id":{"$oid":"55cba2476c522cafdb058196"},"location":{"coordinates":[-73.7822056,40.6434612],"type":"Point"},"name":"Euro Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058197"},"location":{"coordinates":[-73.945621,40.725221],"type":"Point"},"name":"The Standard"} +,{"_id":{"$oid":"55cba2476c522cafdb058198"},"location":{"coordinates":[-73.9540998,40.7877671],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb058199"},"location":{"coordinates":[-73.908973,40.744836],"type":"Point"},"name":"D \u0026 R Health \u0026 Nutrition/ Herbalife"} +,{"_id":{"$oid":"55cba2476c522cafdb05819a"},"location":{"coordinates":[-74.0295459,40.6264433],"type":"Point"},"name":"Ben'S Pizza And Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05819b"},"location":{"coordinates":[-73.89370699999999,40.861554],"type":"Point"},"name":"Merryland Buffet"} +,{"_id":{"$oid":"55cba2476c522cafdb05819c"},"location":{"coordinates":[-73.9887093,40.713254],"type":"Point"},"name":"Iguazu Cafe \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb05819d"},"location":{"coordinates":[-73.9631421,40.6824443],"type":"Point"},"name":"Visions Bar And Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb05819e"},"location":{"coordinates":[-73.90357589999999,40.8156243],"type":"Point"},"name":"Inocente Sport Bar Restaurant \u0026 Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb05819f"},"location":{"coordinates":[-73.9181399,40.765619],"type":"Point"},"name":"Shady Lady"} +,{"_id":{"$oid":"55cba2476c522cafdb0581a0"},"location":{"coordinates":[-73.9214274,40.7409452],"type":"Point"},"name":"I Love Paraguay"} +,{"_id":{"$oid":"55cba2476c522cafdb0581a1"},"location":{"coordinates":[-73.9464157,40.7116041],"type":"Point"},"name":"The Grand Bar And Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0581a2"},"location":{"coordinates":[-73.9589021,40.7807048],"type":"Point"},"name":"Morini Ristorante"} +,{"_id":{"$oid":"55cba2476c522cafdb0581a3"},"location":{"coordinates":[-73.99051229999999,40.7143105],"type":"Point"},"name":"28 Mr. Ming'S Caffe"} +,{"_id":{"$oid":"55cba2476c522cafdb0581a4"},"location":{"coordinates":[-73.8262441,40.7596116],"type":"Point"},"name":"Da Jin Hong"} +,{"_id":{"$oid":"55cba2476c522cafdb0581a5"},"location":{"coordinates":[-73.75804,40.7059179],"type":"Point"},"name":"Hung Cheung Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0581a6"},"location":{"coordinates":[-73.97221789999999,40.750918],"type":"Point"},"name":"Hampton Inn"} +,{"_id":{"$oid":"55cba2476c522cafdb0581a7"},"location":{"coordinates":[-73.7787486,40.665546],"type":"Point"},"name":"China Express Inn"} +,{"_id":{"$oid":"55cba2476c522cafdb0581a8"},"location":{"coordinates":[-73.8977683,40.6481196],"type":"Point"},"name":"Crown Fried Chicken And Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0581a9"},"location":{"coordinates":[-74.1317554,40.6267086],"type":"Point"},"name":"Myst Hookah Bar \u0026 Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb0581aa"},"location":{"coordinates":[-73.863742,40.75245899999999],"type":"Point"},"name":"Encuentro 103"} +,{"_id":{"$oid":"55cba2476c522cafdb0581ab"},"location":{"coordinates":[-73.983256,40.728521],"type":"Point"},"name":"Jennifer'S Way"} +,{"_id":{"$oid":"55cba2476c522cafdb0581ac"},"location":{"coordinates":[-73.8662887,40.8594314],"type":"Point"},"name":"Zymi Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0581ad"},"location":{"coordinates":[-73.976173,40.7488254],"type":"Point"},"name":"Ming'S Delight"} +,{"_id":{"$oid":"55cba2476c522cafdb0581ae"},"location":{"coordinates":[-73.901995,40.716485],"type":"Point"},"name":"A Love For Cakes"} +,{"_id":{"$oid":"55cba2476c522cafdb0581af"},"location":{"coordinates":[-73.9000748,40.7117422],"type":"Point"},"name":"Force Fusion Juice Bar \u0026 Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0581b0"},"location":{"coordinates":[-73.9253734,40.7565709],"type":"Point"},"name":"Sweets First Bakeshoppe \u0026 Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0581b1"},"location":{"coordinates":[-73.938389,40.8034589],"type":"Point"},"name":"China King"} +,{"_id":{"$oid":"55cba2476c522cafdb0581b2"},"location":{"coordinates":[-73.9263201,40.5850723],"type":"Point"},"name":"Clemente'S Maryland Crab House"} +,{"_id":{"$oid":"55cba2476c522cafdb0581b3"},"location":{"coordinates":[-73.983216,40.741211],"type":"Point"},"name":"Paradise Biryani Pointe And Gramercy Pizza Pasta"} +,{"_id":{"$oid":"55cba2476c522cafdb0581b4"},"location":{"coordinates":[-73.780383,40.708731],"type":"Point"},"name":"El Patio"} +,{"_id":{"$oid":"55cba2476c522cafdb0581b5"},"location":{"coordinates":[-73.9519596,40.7111761],"type":"Point"},"name":"A-Roma Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0581b6"},"location":{"coordinates":[-73.839596,40.673701],"type":"Point"},"name":"96 South Park"} +,{"_id":{"$oid":"55cba2476c522cafdb0581b7"},"location":{"coordinates":[-73.986144,40.766758],"type":"Point"},"name":"Kashkaval Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb0581b8"},"location":{"coordinates":[-73.9940003,40.7359927],"type":"Point"},"name":"Off The Wall"} +,{"_id":{"$oid":"55cba2476c522cafdb0581b9"},"location":{"coordinates":[-73.8968016,40.7462548],"type":"Point"},"name":"Daro'S Pizza And Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb0581ba"},"location":{"coordinates":[-73.992228,40.7555229],"type":"Point"},"name":"Cafe Mofongo"} +,{"_id":{"$oid":"55cba2476c522cafdb0581bb"},"location":{"coordinates":[-73.8290939,40.759362],"type":"Point"},"name":"Fresh Mojoilla"} +,{"_id":{"$oid":"55cba2476c522cafdb0581bc"},"location":{"coordinates":[-73.942441,40.79865100000001],"type":"Point"},"name":"D'Amore Caffe \u0026 Winebar"} +,{"_id":{"$oid":"55cba2476c522cafdb0581bd"},"location":{"coordinates":[-73.9405177,40.7078178],"type":"Point"},"name":"Omg Taco"} +,{"_id":{"$oid":"55cba2476c522cafdb0581be"},"location":{"coordinates":[-73.8290939,40.759362],"type":"Point"},"name":"Happy Su Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb0581bf"},"location":{"coordinates":[-73.9639685,40.7948433],"type":"Point"},"name":"Zhong Wah Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0581c0"},"location":{"coordinates":[-73.94877799999999,40.64651],"type":"Point"},"name":"Ethlyn'S Caribbean Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0581c1"},"location":{"coordinates":[-73.9986198,40.712032],"type":"Point"},"name":"Captain Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb0581c2"},"location":{"coordinates":[-73.9249324,40.8274822],"type":"Point"},"name":"Us Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb0581c3"},"location":{"coordinates":[-73.9814778,40.7378891],"type":"Point"},"name":"Marina Gourmet Deli."} +,{"_id":{"$oid":"55cba2476c522cafdb0581c4"},"location":{"coordinates":[-73.95376019999999,40.67350810000001],"type":"Point"},"name":"Cafe Rue Dix"} +,{"_id":{"$oid":"55cba2476c522cafdb0581c5"},"location":{"coordinates":[-73.94407760000001,40.7932928],"type":"Point"},"name":"Monique'S Lounge 108"} +,{"_id":{"$oid":"55cba2476c522cafdb0581c6"},"location":{"coordinates":[-73.791107,40.853597],"type":"Point"},"name":"Don Cogui"} +,{"_id":{"$oid":"55cba2476c522cafdb0581c7"},"location":{"coordinates":[-73.94904,40.787961],"type":"Point"},"name":"Yummy City"} +,{"_id":{"$oid":"55cba2476c522cafdb0581c8"},"location":{"coordinates":[-76.9703344,38.9683205],"type":"Point"},"name":"Nyc Gentlemans Club"} +,{"_id":{"$oid":"55cba2476c522cafdb0581c9"},"location":{"coordinates":[-73.9968015,40.7133347],"type":"Point"},"name":"M \u0026 W Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0581ca"},"location":{"coordinates":[-73.9439234,40.7143776],"type":"Point"},"name":"East Met West"} +,{"_id":{"$oid":"55cba2476c522cafdb0581cb"},"location":{"coordinates":[-73.9830194,40.7443779],"type":"Point"},"name":"Spreads"} +,{"_id":{"$oid":"55cba2476c522cafdb0581cc"},"location":{"coordinates":[-73.8657211,40.8656142],"type":"Point"},"name":"Isis Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0581cd"},"location":{"coordinates":[-73.8374628,40.5800887],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0581ce"},"location":{"coordinates":[-73.8493719,40.5787739],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0581cf"},"location":{"coordinates":[-73.9728241,40.5968613],"type":"Point"},"name":"New Li Hing Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0581d0"},"location":{"coordinates":[-73.7971565,40.5904747],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0581d1"},"location":{"coordinates":[-73.7546496,40.5963512],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0581d2"},"location":{"coordinates":[-73.99832049999999,40.7291015],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0581d3"},"location":{"coordinates":[-73.9575073,40.7452106],"type":"Point"},"name":"Sweet Leaf"} +,{"_id":{"$oid":"55cba2476c522cafdb0581d4"},"location":{"coordinates":[-73.854884,40.7516274],"type":"Point"},"name":"Bienvenidos Al Callao Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0581d5"},"location":{"coordinates":[-73.88280999999999,40.7560689],"type":"Point"},"name":"De La Mora Restaurant And Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0581d6"},"location":{"coordinates":[-74.0025325,40.73093],"type":"Point"},"name":"16 Handles"} +,{"_id":{"$oid":"55cba2476c522cafdb0581d7"},"location":{"coordinates":[-73.9005025,40.7292549],"type":"Point"},"name":"Martiniello'S Ii Pizzeria Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0581d8"},"location":{"coordinates":[-73.9980013,40.7327498],"type":"Point"},"name":"Stumptown Coffee Roasters"} +,{"_id":{"$oid":"55cba2476c522cafdb0581d9"},"location":{"coordinates":[-73.9805028,40.6678167],"type":"Point"},"name":"Istanbul Park"} +,{"_id":{"$oid":"55cba2476c522cafdb0581da"},"location":{"coordinates":[-73.93759109999999,40.6515511],"type":"Point"},"name":"Peaches Jamaican Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0581db"},"location":{"coordinates":[-73.95484189999999,40.7303805],"type":"Point"},"name":"The Bounty"} +,{"_id":{"$oid":"55cba2476c522cafdb0581dc"},"location":{"coordinates":[-73.94336679999999,40.8355688],"type":"Point"},"name":"Little Ceasars Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0581dd"},"location":{"coordinates":[-73.8720067,40.749013],"type":"Point"},"name":"La Abundancia"} +,{"_id":{"$oid":"55cba2476c522cafdb0581de"},"location":{"coordinates":[-73.9867822,40.6398823],"type":"Point"},"name":"Benny'S Brick Oven Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0581df"},"location":{"coordinates":[-73.9934408,40.6869483],"type":"Point"},"name":"Tropic Juice Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0581e0"},"location":{"coordinates":[-73.956481,40.6552063],"type":"Point"},"name":"Gandhi Indian Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0581e1"},"location":{"coordinates":[-73.9394619,40.8429552],"type":"Point"},"name":"Marcha Cocina Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0581e2"},"location":{"coordinates":[-73.879623,40.68134930000001],"type":"Point"},"name":"El Faro Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0581e3"},"location":{"coordinates":[-73.9668688,40.5860922],"type":"Point"},"name":"Balli Deli \u0026 Salad Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0581e4"},"location":{"coordinates":[-73.97724670000001,40.7541977],"type":"Point"},"name":"Juice4U"} +,{"_id":{"$oid":"55cba2476c522cafdb0581e5"},"location":{"coordinates":[-74.13570299999999,40.63411199999999],"type":"Point"},"name":"Mammy'S Sports Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0581e6"},"location":{"coordinates":[-74.1582069,40.61197809999999],"type":"Point"},"name":"Buffalo Wild Wings"} +,{"_id":{"$oid":"55cba2476c522cafdb0581e7"},"location":{"coordinates":[-73.9033058,40.87006969999999],"type":"Point"},"name":"Tropical Rotisserie Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb0581e8"},"location":{"coordinates":[-74.135257,40.635795],"type":"Point"},"name":"Tequila'S Flavor"} +,{"_id":{"$oid":"55cba2476c522cafdb0581e9"},"location":{"coordinates":[-73.7652531,40.6815344],"type":"Point"},"name":"Cheung Hing Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0581ea"},"location":{"coordinates":[-73.9892347,40.7434243],"type":"Point"},"name":"Num Pang Sandwich Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb0581eb"},"location":{"coordinates":[-73.9856736,40.7289903],"type":"Point"},"name":"Graffitti Me"} +,{"_id":{"$oid":"55cba2476c522cafdb0581ec"},"location":{"coordinates":[-73.9850597,40.7581421],"type":"Point"},"name":"Buca Di Beppo"} +,{"_id":{"$oid":"55cba2476c522cafdb0581ed"},"location":{"coordinates":[-73.9850597,40.7581421],"type":"Point"},"name":"Planet Hollywood"} +,{"_id":{"$oid":"55cba2476c522cafdb0581ee"},"location":{"coordinates":[-73.94858409999999,40.6507359],"type":"Point"},"name":"Deli El Bigotes"} +,{"_id":{"$oid":"55cba2476c522cafdb0581ef"},"location":{"coordinates":[-73.98057589999999,40.7709272],"type":"Point"},"name":"Gourmet To Go Market"} +,{"_id":{"$oid":"55cba2476c522cafdb0581f0"},"location":{"coordinates":[-74.0139508,40.7097089],"type":"Point"},"name":"Morton'S The Steakhouse"} +,{"_id":{"$oid":"55cba2476c522cafdb0581f1"},"location":{"coordinates":[-73.92877,40.810327],"type":"Point"},"name":"Relish Caterers"} +,{"_id":{"$oid":"55cba2476c522cafdb0581f2"},"location":{"coordinates":[-73.8630166,40.8713484],"type":"Point"},"name":"Amici Pizza And Pasta"} +,{"_id":{"$oid":"55cba2476c522cafdb0581f3"},"location":{"coordinates":[-73.9939488,40.74774439999999],"type":"Point"},"name":"Aa Ichiban Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb0581f4"},"location":{"coordinates":[-73.9254615,40.6699639],"type":"Point"},"name":"Ah Yah Suh Nice"} +,{"_id":{"$oid":"55cba2476c522cafdb0581f5"},"location":{"coordinates":[-73.9746565,40.75123250000001],"type":"Point"},"name":"Chop'T"} +,{"_id":{"$oid":"55cba2476c522cafdb0581f6"},"location":{"coordinates":[-73.8635717,40.7333304],"type":"Point"},"name":"Miller'S Nyc Ale House"} +,{"_id":{"$oid":"55cba2476c522cafdb0581f7"},"location":{"coordinates":[-73.9357859,40.7961521],"type":"Point"},"name":"In \u0026 Out Special Food"} +,{"_id":{"$oid":"55cba2476c522cafdb0581f8"},"location":{"coordinates":[-73.977919,40.784163],"type":"Point"},"name":"Oaxaca"} +,{"_id":{"$oid":"55cba2476c522cafdb0581f9"},"location":{"coordinates":[-73.9242785,40.6581726],"type":"Point"},"name":"New Mum'S Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0581fa"},"location":{"coordinates":[-73.9714731,40.7567935],"type":"Point"},"name":"De Marco Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0581fb"},"location":{"coordinates":[-73.9085046,40.6821539],"type":"Point"},"name":"Royal Fried Chicken \u0026 Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0581fc"},"location":{"coordinates":[-73.86773649999999,40.90059979999999],"type":"Point"},"name":"Patrizia'S Of Woodlawn"} +,{"_id":{"$oid":"55cba2476c522cafdb0581fd"},"location":{"coordinates":[-73.99917839999999,40.6750343],"type":"Point"},"name":"Teaffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0581fe"},"location":{"coordinates":[-73.995167,40.631535],"type":"Point"},"name":"Gobo'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0581ff"},"location":{"coordinates":[-73.9205788,40.7676296],"type":"Point"},"name":"Bella Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb058200"},"location":{"coordinates":[-73.98854659999999,40.7688071],"type":"Point"},"name":"Rex"} +,{"_id":{"$oid":"55cba2476c522cafdb058201"},"location":{"coordinates":[-73.9936571,40.7276352],"type":"Point"},"name":"Lafayette"} +,{"_id":{"$oid":"55cba2476c522cafdb058202"},"location":{"coordinates":[-73.9838036,40.7587108],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb058203"},"location":{"coordinates":[-73.9783746,40.766347],"type":"Point"},"name":"Jw Marriot Essex House"} +,{"_id":{"$oid":"55cba2476c522cafdb058204"},"location":{"coordinates":[-73.9954504,40.7594781],"type":"Point"},"name":"Kava Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058205"},"location":{"coordinates":[-73.9517089,40.82408],"type":"Point"},"name":"Sing Luck Garden Geisha"} +,{"_id":{"$oid":"55cba2476c522cafdb058206"},"location":{"coordinates":[-73.777169,40.787546],"type":"Point"},"name":"Water'S Edge Cafe \u0026 Convenience"} +,{"_id":{"$oid":"55cba2476c522cafdb058207"},"location":{"coordinates":[-73.9420116,40.6689584],"type":"Point"},"name":"Chocolatte"} +,{"_id":{"$oid":"55cba2476c522cafdb058208"},"location":{"coordinates":[-73.9901292,40.7153718],"type":"Point"},"name":"Beverly'S"} +,{"_id":{"$oid":"55cba2476c522cafdb058209"},"location":{"coordinates":[-73.88747719999999,40.860242],"type":"Point"},"name":"Lucchese Food Service"} +,{"_id":{"$oid":"55cba2476c522cafdb05820a"},"location":{"coordinates":[-73.99335990000002,40.6645242],"type":"Point"},"name":"Supercollider"} +,{"_id":{"$oid":"55cba2476c522cafdb05820b"},"location":{"coordinates":[-74.0013554,40.7257484],"type":"Point"},"name":"Juice Press 7"} +,{"_id":{"$oid":"55cba2476c522cafdb05820c"},"location":{"coordinates":[-73.949963,40.78671],"type":"Point"},"name":"Asian Gourmet"} +,{"_id":{"$oid":"55cba2476c522cafdb05820d"},"location":{"coordinates":[-73.9880562,40.7324567],"type":"Point"},"name":"Nevada Smiths"} +,{"_id":{"$oid":"55cba2476c522cafdb05820e"},"location":{"coordinates":[-73.9864023,40.7297238],"type":"Point"},"name":"Juice Press"} +,{"_id":{"$oid":"55cba2476c522cafdb05820f"},"location":{"coordinates":[-74.0032535,40.7250036],"type":"Point"},"name":"Piccola Cucina"} +,{"_id":{"$oid":"55cba2476c522cafdb058210"},"location":{"coordinates":[-73.9521055,40.8236484],"type":"Point"},"name":"La Cantina Ecua-Mex Bar \u0026 Billiard"} +,{"_id":{"$oid":"55cba2476c522cafdb058211"},"location":{"coordinates":[-73.95192229999999,40.7924979],"type":"Point"},"name":"Cafe (At The Museum Of The City Of New York)"} +,{"_id":{"$oid":"55cba2476c522cafdb058212"},"location":{"coordinates":[-73.858761,40.87463899999999],"type":"Point"},"name":"Rk Super Heroes"} +,{"_id":{"$oid":"55cba2476c522cafdb058213"},"location":{"coordinates":[-73.8217576,40.7258114],"type":"Point"},"name":"Elite Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058214"},"location":{"coordinates":[-73.8227505,40.7602117],"type":"Point"},"name":"Ralph'S Italian Ices"} +,{"_id":{"$oid":"55cba2476c522cafdb058215"},"location":{"coordinates":[-73.9956765,40.7229659],"type":"Point"},"name":"Barca"} +,{"_id":{"$oid":"55cba2476c522cafdb058216"},"location":{"coordinates":[-73.9948113,40.7498189],"type":"Point"},"name":"Taboo"} +,{"_id":{"$oid":"55cba2476c522cafdb058217"},"location":{"coordinates":[-73.9795518,40.75647439999999],"type":"Point"},"name":"Rancho 1"} +,{"_id":{"$oid":"55cba2476c522cafdb058218"},"location":{"coordinates":[-73.99275089999999,40.72493590000001],"type":"Point"},"name":"Duane Park"} +,{"_id":{"$oid":"55cba2476c522cafdb058219"},"location":{"coordinates":[-73.9143902,40.7790622],"type":"Point"},"name":"Mia Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05821a"},"location":{"coordinates":[-73.93025639999999,40.8543159],"type":"Point"},"name":"El Jobito Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05821b"},"location":{"coordinates":[-73.985517,40.7185858],"type":"Point"},"name":"Santo Domingo Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb05821c"},"location":{"coordinates":[-73.9910143,40.7448595],"type":"Point"},"name":"Red Mango"} +,{"_id":{"$oid":"55cba2476c522cafdb05821d"},"location":{"coordinates":[-73.80443,40.73286969999999],"type":"Point"},"name":"New China Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb05821e"},"location":{"coordinates":[-74.009073,40.63628],"type":"Point"},"name":"Mr.Q'S Gourmet"} +,{"_id":{"$oid":"55cba2476c522cafdb05821f"},"location":{"coordinates":[-73.989361,40.729522],"type":"Point"},"name":"Papaya King"} +,{"_id":{"$oid":"55cba2476c522cafdb058220"},"location":{"coordinates":[-74.001779,40.745374],"type":"Point"},"name":"Pastai"} +,{"_id":{"$oid":"55cba2476c522cafdb058221"},"location":{"coordinates":[-73.8950151,40.7506899],"type":"Point"},"name":"Deli Pizza Pizzeria \u0026 Taqueria"} +,{"_id":{"$oid":"55cba2476c522cafdb058222"},"location":{"coordinates":[-73.981689,40.7247568],"type":"Point"},"name":"Gruppo"} +,{"_id":{"$oid":"55cba2476c522cafdb058223"},"location":{"coordinates":[-73.9864387,40.7473643],"type":"Point"},"name":"Boss Bar \u0026 Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb058224"},"location":{"coordinates":[-73.84618770000002,40.7208839],"type":"Point"},"name":"Yogo Monster"} +,{"_id":{"$oid":"55cba2476c522cafdb058225"},"location":{"coordinates":[-73.9159157,40.850446],"type":"Point"},"name":"Arkansas Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb058226"},"location":{"coordinates":[-73.85572979999999,40.7022387],"type":"Point"},"name":"Baha Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb058227"},"location":{"coordinates":[-73.8675042,40.8477323],"type":"Point"},"name":"Oasis"} +,{"_id":{"$oid":"55cba2476c522cafdb058228"},"location":{"coordinates":[-73.94812639999999,40.8289435],"type":"Point"},"name":"Domino'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb058229"},"location":{"coordinates":[-73.8619877,40.749933],"type":"Point"},"name":"Pollo Campero"} +,{"_id":{"$oid":"55cba2476c522cafdb05822a"},"location":{"coordinates":[-73.90495609999999,40.81261],"type":"Point"},"name":"Little Caesars"} +,{"_id":{"$oid":"55cba2476c522cafdb05822b"},"location":{"coordinates":[-73.7903848,40.7675833],"type":"Point"},"name":"Gyro Corner"} +,{"_id":{"$oid":"55cba2476c522cafdb05822c"},"location":{"coordinates":[-73.8361587,40.7688844],"type":"Point"},"name":"Chatime"} +,{"_id":{"$oid":"55cba2476c522cafdb05822d"},"location":{"coordinates":[-73.944768,40.8337296],"type":"Point"},"name":"Oriental Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05822e"},"location":{"coordinates":[-73.966747,40.763759],"type":"Point"},"name":"Ajisai"} +,{"_id":{"$oid":"55cba2476c522cafdb05822f"},"location":{"coordinates":[-73.793002,40.699457],"type":"Point"},"name":"Anita'S Roti Shop Llc."} +,{"_id":{"$oid":"55cba2476c522cafdb058230"},"location":{"coordinates":[-73.9127647,40.8201711],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb058231"},"location":{"coordinates":[-74.0015335,40.7083453],"type":"Point"},"name":"Mark Joseph Steakhouse"} +,{"_id":{"$oid":"55cba2476c522cafdb058232"},"location":{"coordinates":[-73.9831956,40.757205],"type":"Point"},"name":"Dunhill Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058233"},"location":{"coordinates":[-73.927723,40.7554299],"type":"Point"},"name":"Purlieu"} +,{"_id":{"$oid":"55cba2476c522cafdb058234"},"location":{"coordinates":[-73.801833,40.707686],"type":"Point"},"name":"Sybil'S Bakery Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058235"},"location":{"coordinates":[-73.938221,40.578667],"type":"Point"},"name":"Subway Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058236"},"location":{"coordinates":[-73.98765999999999,40.764331],"type":"Point"},"name":"Totto Ramen"} +,{"_id":{"$oid":"55cba2476c522cafdb058237"},"location":{"coordinates":[-73.96216799999999,40.715863],"type":"Point"},"name":"Skinny Dennis"} +,{"_id":{"$oid":"55cba2476c522cafdb058238"},"location":{"coordinates":[-73.915459,40.762825],"type":"Point"},"name":"Moe'S Southwest Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb058239"},"location":{"coordinates":[-73.9463621,40.8071001],"type":"Point"},"name":"Harlem Shake"} +,{"_id":{"$oid":"55cba2476c522cafdb05823a"},"location":{"coordinates":[-73.93441860000001,40.849922],"type":"Point"},"name":"Mixstirs"} +,{"_id":{"$oid":"55cba2476c522cafdb05823b"},"location":{"coordinates":[-74.00640899999999,40.734927],"type":"Point"},"name":"Upright"} +,{"_id":{"$oid":"55cba2476c522cafdb05823c"},"location":{"coordinates":[-74.002025,40.60748],"type":"Point"},"name":"Fuki Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb05823d"},"location":{"coordinates":[-73.7936014,40.7771208],"type":"Point"},"name":"Patsy'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb05823e"},"location":{"coordinates":[-73.87436129999999,40.758113],"type":"Point"},"name":"Metro Star Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb05823f"},"location":{"coordinates":[-73.8554864,40.727372],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb058240"},"location":{"coordinates":[-73.976929,40.756375],"type":"Point"},"name":"Au Bon Pain"} +,{"_id":{"$oid":"55cba2476c522cafdb058241"},"location":{"coordinates":[-73.903515,40.830659],"type":"Point"},"name":"Red House"} +,{"_id":{"$oid":"55cba2476c522cafdb058242"},"location":{"coordinates":[-73.804047,40.721185],"type":"Point"},"name":"Chef'S Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb058243"},"location":{"coordinates":[-73.9956663,40.6456454],"type":"Point"},"name":"Chen'S Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb058244"},"location":{"coordinates":[-74.0068953,40.70999219999999],"type":"Point"},"name":"Au Bon Pain"} +,{"_id":{"$oid":"55cba2476c522cafdb058245"},"location":{"coordinates":[-73.980706,40.7417124],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb058246"},"location":{"coordinates":[-74.2350788,40.5216609],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb058247"},"location":{"coordinates":[-74.0284073,40.6314427],"type":"Point"},"name":"Frank And Eddie'S Butcher Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb058248"},"location":{"coordinates":[-73.8831654,40.7498934],"type":"Point"},"name":"Pan En Mas"} +,{"_id":{"$oid":"55cba2476c522cafdb058249"},"location":{"coordinates":[-73.99479199999999,40.6799705],"type":"Point"},"name":"Wilma Jean"} +,{"_id":{"$oid":"55cba2476c522cafdb05824a"},"location":{"coordinates":[-73.995986,40.765076],"type":"Point"},"name":"Stage 48"} +,{"_id":{"$oid":"55cba2476c522cafdb05824b"},"location":{"coordinates":[-74.015526,40.710651],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb05824c"},"location":{"coordinates":[-73.98604999999999,40.766967],"type":"Point"},"name":"Der Krung"} +,{"_id":{"$oid":"55cba2476c522cafdb05824d"},"location":{"coordinates":[-73.911582,40.74460550000001],"type":"Point"},"name":"52Nd Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb05824e"},"location":{"coordinates":[-82.4843145,29.6892339],"type":"Point"},"name":"Han Kou"} +,{"_id":{"$oid":"55cba2476c522cafdb05824f"},"location":{"coordinates":[-73.95470499999999,40.731187],"type":"Point"},"name":"No 7 Sub"} +,{"_id":{"$oid":"55cba2476c522cafdb058250"},"location":{"coordinates":[-73.8326055,40.7597826],"type":"Point"},"name":"66 Prince Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058251"},"location":{"coordinates":[-73.837818,40.58055540000001],"type":"Point"},"name":"Paninico Cafe Inc"} +,{"_id":{"$oid":"55cba2476c522cafdb058252"},"location":{"coordinates":[-74.03046800000001,40.623987],"type":"Point"},"name":"Sally'S Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb058253"},"location":{"coordinates":[-73.99973,40.696913],"type":"Point"},"name":"Ample Hills Creamery"} +,{"_id":{"$oid":"55cba2476c522cafdb058254"},"location":{"coordinates":[-73.9790728,40.7764537],"type":"Point"},"name":"Big Nick'S Pizza \u0026 Burger Joint"} +,{"_id":{"$oid":"55cba2476c522cafdb058255"},"location":{"coordinates":[-73.8568169,40.7174225],"type":"Point"},"name":"Panda Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058256"},"location":{"coordinates":[-73.89515,40.862677],"type":"Point"},"name":"Xtreme"} +,{"_id":{"$oid":"55cba2476c522cafdb058257"},"location":{"coordinates":[-74.0085142,40.7480556],"type":"Point"},"name":"'Wichcraft"} +,{"_id":{"$oid":"55cba2476c522cafdb058258"},"location":{"coordinates":[-73.87327599999999,40.75660610000001],"type":"Point"},"name":"Chen Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb058259"},"location":{"coordinates":[-73.9565966,40.738174],"type":"Point"},"name":"Glasserie"} +,{"_id":{"$oid":"55cba2476c522cafdb05825a"},"location":{"coordinates":[-73.8296077,40.84390210000001],"type":"Point"},"name":"Zhang'S China Palace"} +,{"_id":{"$oid":"55cba2476c522cafdb05825b"},"location":{"coordinates":[-73.99515939999999,40.7196206],"type":"Point"},"name":"Piacere"} +,{"_id":{"$oid":"55cba2476c522cafdb05825c"},"location":{"coordinates":[-73.971392,40.793199],"type":"Point"},"name":"Asia Kan"} +,{"_id":{"$oid":"55cba2476c522cafdb05825d"},"location":{"coordinates":[-73.9300154,40.6864556],"type":"Point"},"name":"King'S Men"} +,{"_id":{"$oid":"55cba2476c522cafdb05825e"},"location":{"coordinates":[-73.9698519,40.7647672],"type":"Point"},"name":"Serafina Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb05825f"},"location":{"coordinates":[-73.9196827,40.702308],"type":"Point"},"name":"Fritzl'S Lunch Box"} +,{"_id":{"$oid":"55cba2476c522cafdb058260"},"location":{"coordinates":[-73.8866022,40.8552904],"type":"Point"},"name":"Healthy Fresh"} +,{"_id":{"$oid":"55cba2476c522cafdb058261"},"location":{"coordinates":[-73.9189897,40.8254821],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb058262"},"location":{"coordinates":[-73.982969,40.7271749],"type":"Point"},"name":"Sustainable Nyc"} +,{"_id":{"$oid":"55cba2476c522cafdb058263"},"location":{"coordinates":[-73.9478824,40.8151724],"type":"Point"},"name":"J. Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058264"},"location":{"coordinates":[-73.9623708,40.5983806],"type":"Point"},"name":"Holy Schnitzel"} +,{"_id":{"$oid":"55cba2476c522cafdb058265"},"location":{"coordinates":[-73.7466979,40.6959957],"type":"Point"},"name":"China Wok"} +,{"_id":{"$oid":"55cba2476c522cafdb058266"},"location":{"coordinates":[-74.00223059999999,40.7510941],"type":"Point"},"name":"Highline Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb058267"},"location":{"coordinates":[-73.9090682,40.8246577],"type":"Point"},"name":"Cedeao Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb058268"},"location":{"coordinates":[-73.9876247,40.7333073],"type":"Point"},"name":"Joe'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb058269"},"location":{"coordinates":[-74.0122263,40.7058609],"type":"Point"},"name":"El Toro Mexican Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb05826a"},"location":{"coordinates":[-73.9807428,40.758073],"type":"Point"},"name":"Taki Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb05826b"},"location":{"coordinates":[-74.0012535,40.62312130000001],"type":"Point"},"name":"Taquitos Mexico Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05826c"},"location":{"coordinates":[-73.9377535,40.8042647],"type":"Point"},"name":"2 Bros Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05826d"},"location":{"coordinates":[-73.7356873,40.7129784],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb05826e"},"location":{"coordinates":[-73.88877,40.6634987],"type":"Point"},"name":"Shun Feng Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05826f"},"location":{"coordinates":[-73.9794819,40.7278125],"type":"Point"},"name":"Haile Bristro"} +,{"_id":{"$oid":"55cba2476c522cafdb058270"},"location":{"coordinates":[-73.93009599999999,40.67669],"type":"Point"},"name":"New Sunny Corner"} +,{"_id":{"$oid":"55cba2476c522cafdb058271"},"location":{"coordinates":[-73.93047399999999,40.67083],"type":"Point"},"name":"Soldiers Caribbean Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058272"},"location":{"coordinates":[-73.9490806,40.8077883],"type":"Point"},"name":"Accra Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058273"},"location":{"coordinates":[-73.94987259999999,40.6787135],"type":"Point"},"name":"India House Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058274"},"location":{"coordinates":[-74.0005915,40.742008],"type":"Point"},"name":"Montmartre"} +,{"_id":{"$oid":"55cba2476c522cafdb058275"},"location":{"coordinates":[-74.0110289,40.7033],"type":"Point"},"name":"The Dead Rabbit"} +,{"_id":{"$oid":"55cba2476c522cafdb058276"},"location":{"coordinates":[-73.93985359999999,40.6628058],"type":"Point"},"name":"Mon Hing Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058277"},"location":{"coordinates":[-73.951604,40.770426],"type":"Point"},"name":"Barking Dog Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058278"},"location":{"coordinates":[-73.9594816,40.8152394],"type":"Point"},"name":"Sushi Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb058279"},"location":{"coordinates":[-73.8580643,40.7115979],"type":"Point"},"name":"Pronto Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb05827a"},"location":{"coordinates":[-73.90010699999999,40.775685],"type":"Point"},"name":"Joes Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb05827b"},"location":{"coordinates":[-74.234599,40.522215],"type":"Point"},"name":"Loon Chuan Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05827c"},"location":{"coordinates":[-73.93532069999999,40.6967637],"type":"Point"},"name":"Popeyes"} +,{"_id":{"$oid":"55cba2476c522cafdb05827d"},"location":{"coordinates":[-74.103743,40.575843],"type":"Point"},"name":"El Dorado Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05827e"},"location":{"coordinates":[-73.95336139999999,40.77596339999999],"type":"Point"},"name":"Yorkafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05827f"},"location":{"coordinates":[-73.87740699999999,40.737592],"type":"Point"},"name":"Paddy G'S"} +,{"_id":{"$oid":"55cba2476c522cafdb058280"},"location":{"coordinates":[-73.79642199999999,40.707139],"type":"Point"},"name":"Subway (Jamaica Colosseum)"} +,{"_id":{"$oid":"55cba2476c522cafdb058281"},"location":{"coordinates":[-73.94127329999999,40.6801751],"type":"Point"},"name":"Jamaica Hill Top Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058282"},"location":{"coordinates":[-73.796004,40.7733005],"type":"Point"},"name":"Pizza Club"} +,{"_id":{"$oid":"55cba2476c522cafdb058283"},"location":{"coordinates":[-73.9984856,40.7181506],"type":"Point"},"name":"May Wah Fast Food"} +,{"_id":{"$oid":"55cba2476c522cafdb058284"},"location":{"coordinates":[-74.0002311,40.72798909999999],"type":"Point"},"name":"Carbone"} +,{"_id":{"$oid":"55cba2476c522cafdb058285"},"location":{"coordinates":[-73.86264229999999,40.8833683],"type":"Point"},"name":"Angelinas Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb058286"},"location":{"coordinates":[-73.937966,40.651617],"type":"Point"},"name":"The Oval Sports Bar \u0026 Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb058287"},"location":{"coordinates":[-73.9117468,40.6949335],"type":"Point"},"name":"Crown Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb058288"},"location":{"coordinates":[-73.9831214,40.7653212],"type":"Point"},"name":"Yakitori Totto"} +,{"_id":{"$oid":"55cba2476c522cafdb058289"},"location":{"coordinates":[-73.8826888,40.6762477],"type":"Point"},"name":"Little Trini Spot"} +,{"_id":{"$oid":"55cba2476c522cafdb05828a"},"location":{"coordinates":[-73.9315405,40.6596287],"type":"Point"},"name":"Vchris African Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb05828b"},"location":{"coordinates":[-73.955187,40.599204],"type":"Point"},"name":"Brooklyn Bloom"} +,{"_id":{"$oid":"55cba2476c522cafdb05828c"},"location":{"coordinates":[-73.867854,40.6846848],"type":"Point"},"name":"La Parrilla Sabrosa"} +,{"_id":{"$oid":"55cba2476c522cafdb05828d"},"location":{"coordinates":[-73.8273262,40.7540613],"type":"Point"},"name":"Hunan Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb05828e"},"location":{"coordinates":[-73.99264889999999,40.6832066],"type":"Point"},"name":"Omg Taco"} +,{"_id":{"$oid":"55cba2476c522cafdb05828f"},"location":{"coordinates":[-74.0038582,40.6028977],"type":"Point"},"name":"Chui Hong Yuan Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058290"},"location":{"coordinates":[-73.94395420000001,40.8092046],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb058291"},"location":{"coordinates":[-73.806759,40.762885],"type":"Point"},"name":"Cafe Bene"} +,{"_id":{"$oid":"55cba2476c522cafdb058292"},"location":{"coordinates":[-73.92269259999999,40.7561729],"type":"Point"},"name":"Astoria Complex Fine Dining"} +,{"_id":{"$oid":"55cba2476c522cafdb058293"},"location":{"coordinates":[-73.9540329,40.8066227],"type":"Point"},"name":"Vinateria"} +,{"_id":{"$oid":"55cba2476c522cafdb058294"},"location":{"coordinates":[-73.939503,40.688799],"type":"Point"},"name":"Good Lucky Chinese Food Inc"} +,{"_id":{"$oid":"55cba2476c522cafdb058295"},"location":{"coordinates":[-73.770112,40.760406],"type":"Point"},"name":"Cosmos Room Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058296"},"location":{"coordinates":[-73.80429699999999,40.755861],"type":"Point"},"name":"Mr. Coco"} +,{"_id":{"$oid":"55cba2476c522cafdb058297"},"location":{"coordinates":[-74.0070861,40.7067469],"type":"Point"},"name":"Terri"} +,{"_id":{"$oid":"55cba2476c522cafdb058298"},"location":{"coordinates":[-73.80420590000001,40.762136],"type":"Point"},"name":"Talent"} +,{"_id":{"$oid":"55cba2476c522cafdb058299"},"location":{"coordinates":[-73.96330499999999,40.7105386],"type":"Point"},"name":"On Track Bar (O.T.B.)"} +,{"_id":{"$oid":"55cba2476c522cafdb05829a"},"location":{"coordinates":[-73.8626567,40.7506573],"type":"Point"},"name":"Doras Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05829b"},"location":{"coordinates":[-73.983724,40.730212],"type":"Point"},"name":"East 12Th Osteria"} +,{"_id":{"$oid":"55cba2476c522cafdb05829c"},"location":{"coordinates":[-73.8657965,40.7366104],"type":"Point"},"name":"Junction Cake Box"} +,{"_id":{"$oid":"55cba2476c522cafdb05829d"},"location":{"coordinates":[-73.8875399,40.8122455],"type":"Point"},"name":"Hunts Point Juice Bar \u0026 Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb05829e"},"location":{"coordinates":[-73.758912,40.706513],"type":"Point"},"name":"Patsy Taro"} +,{"_id":{"$oid":"55cba2476c522cafdb05829f"},"location":{"coordinates":[-73.82901000000001,40.834516],"type":"Point"},"name":"Siete Ocho Siete 787"} +,{"_id":{"$oid":"55cba2476c522cafdb0582a0"},"location":{"coordinates":[-73.96016,40.761587],"type":"Point"},"name":"La Nuit"} +,{"_id":{"$oid":"55cba2476c522cafdb0582a1"},"location":{"coordinates":[-73.985986,40.7475865],"type":"Point"},"name":"Bcd Tofu House"} +,{"_id":{"$oid":"55cba2476c522cafdb0582a2"},"location":{"coordinates":[-74.1507542,40.5517575],"type":"Point"},"name":"Cutest Cookies"} +,{"_id":{"$oid":"55cba2476c522cafdb0582a3"},"location":{"coordinates":[-73.93790299999999,40.79730800000001],"type":"Point"},"name":"El Riconcito Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0582a4"},"location":{"coordinates":[-73.98805140000002,40.7325384],"type":"Point"},"name":"Feast"} +,{"_id":{"$oid":"55cba2476c522cafdb0582a5"},"location":{"coordinates":[-74.0017324,40.6432179],"type":"Point"},"name":"Lcz Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0582a6"},"location":{"coordinates":[-73.9369518,40.8494028],"type":"Point"},"name":"Fresh Express"} +,{"_id":{"$oid":"55cba2476c522cafdb0582a7"},"location":{"coordinates":[-73.998948,40.659976],"type":"Point"},"name":"Taksim Square 2"} +,{"_id":{"$oid":"55cba2476c522cafdb0582a8"},"location":{"coordinates":[-74.00189189999999,40.7262073],"type":"Point"},"name":"Il Corallo"} +,{"_id":{"$oid":"55cba2476c522cafdb0582a9"},"location":{"coordinates":[-73.8682104,40.7130458],"type":"Point"},"name":"Locals Sports Bar And Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0582aa"},"location":{"coordinates":[-73.9545364,40.58728079999999],"type":"Point"},"name":"Bagels R Us"} +,{"_id":{"$oid":"55cba2476c522cafdb0582ab"},"location":{"coordinates":[-73.9760548,40.7576844],"type":"Point"},"name":"444 Madison Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb0582ac"},"location":{"coordinates":[-74.0950928,40.5831981],"type":"Point"},"name":"My Family Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0582ad"},"location":{"coordinates":[-73.8267473,40.7613084],"type":"Point"},"name":"Sansookapsan"} +,{"_id":{"$oid":"55cba2476c522cafdb0582ae"},"location":{"coordinates":[-73.9398338,40.6626564],"type":"Point"},"name":"Hunny'S Jamaican Fusion"} +,{"_id":{"$oid":"55cba2476c522cafdb0582af"},"location":{"coordinates":[-73.8455663,40.8442019],"type":"Point"},"name":"China Wok"} +,{"_id":{"$oid":"55cba2476c522cafdb0582b0"},"location":{"coordinates":[-73.97771399999999,40.7565754],"type":"Point"},"name":"China Moon"} +,{"_id":{"$oid":"55cba2476c522cafdb0582b1"},"location":{"coordinates":[-73.997083,40.721531],"type":"Point"},"name":"La Margarita"} +,{"_id":{"$oid":"55cba2476c522cafdb0582b2"},"location":{"coordinates":[-73.9480658,40.77820759999999],"type":"Point"},"name":"Cafe Twist"} +,{"_id":{"$oid":"55cba2476c522cafdb0582b3"},"location":{"coordinates":[-73.9985717,40.7333517],"type":"Point"},"name":"Greenwich Project"} +,{"_id":{"$oid":"55cba2476c522cafdb0582b4"},"location":{"coordinates":[-73.828345,40.7602773],"type":"Point"},"name":"Quickly Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0582b5"},"location":{"coordinates":[-73.9019161,40.8199807],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0582b6"},"location":{"coordinates":[-73.986987,40.759642],"type":"Point"},"name":"Corso Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0582b7"},"location":{"coordinates":[-73.9754828,40.7521662],"type":"Point"},"name":"Lenny'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0582b8"},"location":{"coordinates":[-73.9500903,40.7061217],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0582b9"},"location":{"coordinates":[-74.019899,40.646631],"type":"Point"},"name":"Sunset Coffee Shop And Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0582ba"},"location":{"coordinates":[-73.9923561,40.6896809],"type":"Point"},"name":"Bareburger"} +,{"_id":{"$oid":"55cba2476c522cafdb0582bb"},"location":{"coordinates":[-73.8659216,40.8596996],"type":"Point"},"name":"Cafe Pashtriku"} +,{"_id":{"$oid":"55cba2476c522cafdb0582bc"},"location":{"coordinates":[-73.95374,40.775556],"type":"Point"},"name":"Bonjour Crepes \u0026 Wine"} +,{"_id":{"$oid":"55cba2476c522cafdb0582bd"},"location":{"coordinates":[-73.91978979999999,40.7377849],"type":"Point"},"name":"Reabilita Tu Salud"} +,{"_id":{"$oid":"55cba2476c522cafdb0582be"},"location":{"coordinates":[-73.88356639999999,40.7456685],"type":"Point"},"name":"Salud Es Riqueza / Herbalife"} +,{"_id":{"$oid":"55cba2476c522cafdb0582bf"},"location":{"coordinates":[-73.9407018,40.834426],"type":"Point"},"name":"100% Patacon Cachapa Yaroa"} +,{"_id":{"$oid":"55cba2476c522cafdb0582c0"},"location":{"coordinates":[-73.9671805,40.7988096],"type":"Point"},"name":"New Kam Lai Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0582c1"},"location":{"coordinates":[-74.0007864,40.7216962],"type":"Point"},"name":"Junior'S Fresh Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0582c2"},"location":{"coordinates":[-73.90664129999999,40.668128],"type":"Point"},"name":"Great Wall Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0582c3"},"location":{"coordinates":[-73.91371939999999,40.7747573],"type":"Point"},"name":"Nyc Bagels \u0026 Coffe House"} +,{"_id":{"$oid":"55cba2476c522cafdb0582c4"},"location":{"coordinates":[-73.9609752,40.8014824],"type":"Point"},"name":"Giovanni'S Italian Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb0582c5"},"location":{"coordinates":[-73.85852799999999,40.891942],"type":"Point"},"name":"Sweet Pot"} +,{"_id":{"$oid":"55cba2476c522cafdb0582c6"},"location":{"coordinates":[-73.986223,40.7529899],"type":"Point"},"name":"Golf Manhattan"} +,{"_id":{"$oid":"55cba2476c522cafdb0582c7"},"location":{"coordinates":[-73.7845129,40.7125425],"type":"Point"},"name":"Exit"} +,{"_id":{"$oid":"55cba2476c522cafdb0582c8"},"location":{"coordinates":[-73.96239469999999,40.6499309],"type":"Point"},"name":"Q Train Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb0582c9"},"location":{"coordinates":[-73.9413766,40.83911579999999],"type":"Point"},"name":"Golden Sand Seafood Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0582ca"},"location":{"coordinates":[-73.82491689999999,40.8296724],"type":"Point"},"name":"Quality Food Chinese Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0582cb"},"location":{"coordinates":[-74.00693729999999,40.7410356],"type":"Point"},"name":"Jacks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0582cc"},"location":{"coordinates":[-73.9281611,40.6927063],"type":"Point"},"name":"Little Caesars"} +,{"_id":{"$oid":"55cba2476c522cafdb0582cd"},"location":{"coordinates":[-73.8887024,40.8728071],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb0582ce"},"location":{"coordinates":[-73.9123461,40.6692276],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0582cf"},"location":{"coordinates":[-73.977507,40.756777],"type":"Point"},"name":"Toasties"} +,{"_id":{"$oid":"55cba2476c522cafdb0582d0"},"location":{"coordinates":[-73.8772949,40.8712454],"type":"Point"},"name":"El Paso Del Vaquero Taqueria \u0026 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0582d1"},"location":{"coordinates":[-73.95082049999999,40.723414],"type":"Point"},"name":"Torst"} +,{"_id":{"$oid":"55cba2476c522cafdb0582d2"},"location":{"coordinates":[-73.9364836,40.845932],"type":"Point"},"name":"Happy World Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0582d3"},"location":{"coordinates":[-73.974429,40.6805491],"type":"Point"},"name":"Koto Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb0582d4"},"location":{"coordinates":[-73.99179199999999,40.758391],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0582d5"},"location":{"coordinates":[-73.9614531,40.6247906],"type":"Point"},"name":"Md Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0582d6"},"location":{"coordinates":[-73.95302,40.7762543],"type":"Point"},"name":"Mexibbq"} +,{"_id":{"$oid":"55cba2476c522cafdb0582d7"},"location":{"coordinates":[-73.994339,40.721392],"type":"Point"},"name":"Uncles Boons, Llc"} +,{"_id":{"$oid":"55cba2476c522cafdb0582d8"},"location":{"coordinates":[-73.991659,40.74503199999999],"type":"Point"},"name":"Koffeecake Corner"} +,{"_id":{"$oid":"55cba2476c522cafdb0582d9"},"location":{"coordinates":[-73.88628849999999,40.73803900000001],"type":"Point"},"name":"Chinese Food Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0582da"},"location":{"coordinates":[-73.8775986,40.679693],"type":"Point"},"name":"El Cacique Bar Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0582db"},"location":{"coordinates":[-73.952589,40.6498193],"type":"Point"},"name":"Sajomita Resturant"} +,{"_id":{"$oid":"55cba2476c522cafdb0582dc"},"location":{"coordinates":[-73.937162,40.753342],"type":"Point"},"name":"Andre'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0582dd"},"location":{"coordinates":[-73.968031,40.7561791],"type":"Point"},"name":"Yakiniku Gen"} +,{"_id":{"$oid":"55cba2476c522cafdb0582de"},"location":{"coordinates":[-73.9962135,40.7433644],"type":"Point"},"name":"Salsa Y Salsa"} +,{"_id":{"$oid":"55cba2476c522cafdb0582df"},"location":{"coordinates":[-73.96806,40.6930385],"type":"Point"},"name":"Myrtle Thai Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0582e0"},"location":{"coordinates":[-74.15044619999999,40.5507218],"type":"Point"},"name":"Foo Sing"} +,{"_id":{"$oid":"55cba2476c522cafdb0582e1"},"location":{"coordinates":[-73.9974629,40.7325844],"type":"Point"},"name":"Cafe Nadery"} +,{"_id":{"$oid":"55cba2476c522cafdb0582e2"},"location":{"coordinates":[-73.9860435,40.733166],"type":"Point"},"name":"Beijing Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0582e3"},"location":{"coordinates":[-73.94424699999999,40.600409],"type":"Point"},"name":"Kavkazskiy Dvorik"} +,{"_id":{"$oid":"55cba2476c522cafdb0582e4"},"location":{"coordinates":[-73.9409249,40.79358300000001],"type":"Point"},"name":"Tastings"} +,{"_id":{"$oid":"55cba2476c522cafdb0582e5"},"location":{"coordinates":[-74.19175709999999,40.5327722],"type":"Point"},"name":"Chopsticks House"} +,{"_id":{"$oid":"55cba2476c522cafdb0582e6"},"location":{"coordinates":[-73.97646759999999,40.6819339],"type":"Point"},"name":"Broccolino"} +,{"_id":{"$oid":"55cba2476c522cafdb0582e7"},"location":{"coordinates":[-74.0316543,40.6226908],"type":"Point"},"name":"Uncle Louie G"} +,{"_id":{"$oid":"55cba2476c522cafdb0582e8"},"location":{"coordinates":[-73.788088,40.7578592],"type":"Point"},"name":"Papa Johns"} +,{"_id":{"$oid":"55cba2476c522cafdb0582e9"},"location":{"coordinates":[-73.92939179999999,40.693385],"type":"Point"},"name":"Restaurant Abidjan"} +,{"_id":{"$oid":"55cba2476c522cafdb0582ea"},"location":{"coordinates":[-73.9751974,40.7870891],"type":"Point"},"name":"Tasti D Lite"} +,{"_id":{"$oid":"55cba2476c522cafdb0582eb"},"location":{"coordinates":[-73.7535726,40.70030999999999],"type":"Point"},"name":"729 Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0582ec"},"location":{"coordinates":[-73.8743494,40.6726283],"type":"Point"},"name":"Crown Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb0582ed"},"location":{"coordinates":[-73.868425,40.722918],"type":"Point"},"name":"Parceros Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0582ee"},"location":{"coordinates":[-73.998105,40.75042699999999],"type":"Point"},"name":"Maggie Reilly'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0582ef"},"location":{"coordinates":[-73.8636734,40.7310956],"type":"Point"},"name":"Red Panda Asian Bistro"} +,{"_id":{"$oid":"55cba2476c522cafdb0582f0"},"location":{"coordinates":[-73.8950725,40.7021726],"type":"Point"},"name":"Taqueria Kermes"} +,{"_id":{"$oid":"55cba2476c522cafdb0582f1"},"location":{"coordinates":[-73.98579099999999,40.732386],"type":"Point"},"name":"City Gourmet"} +,{"_id":{"$oid":"55cba2476c522cafdb0582f2"},"location":{"coordinates":[-73.9658808,40.8007015],"type":"Point"},"name":"The Ellington"} +,{"_id":{"$oid":"55cba2476c522cafdb0582f3"},"location":{"coordinates":[-73.9498866,40.6342546],"type":"Point"},"name":"Crown Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb0582f4"},"location":{"coordinates":[-73.98103189999999,40.78070659999999],"type":"Point"},"name":"Beacon Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0582f5"},"location":{"coordinates":[-73.83176879999999,40.7150431],"type":"Point"},"name":"D'Angelo Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0582f6"},"location":{"coordinates":[-74.0039824,40.6574494],"type":"Point"},"name":"Benevento Pizzaria \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0582f7"},"location":{"coordinates":[-73.9901841,40.7205154],"type":"Point"},"name":"Near \u0026 Far"} +,{"_id":{"$oid":"55cba2476c522cafdb0582f8"},"location":{"coordinates":[-73.9674485,40.6833964],"type":"Point"},"name":"Fulton Thai Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0582f9"},"location":{"coordinates":[-73.9241009,40.688614],"type":"Point"},"name":"Dong Dong Of 48 Inc"} +,{"_id":{"$oid":"55cba2476c522cafdb0582fa"},"location":{"coordinates":[-73.8780165,40.8337981],"type":"Point"},"name":"Crown Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb0582fb"},"location":{"coordinates":[-74.0091249,40.7098261],"type":"Point"},"name":"Gelato Ti Amo"} +,{"_id":{"$oid":"55cba2476c522cafdb0582fc"},"location":{"coordinates":[-73.9502713,40.7241413],"type":"Point"},"name":"Hanana"} +,{"_id":{"$oid":"55cba2476c522cafdb0582fd"},"location":{"coordinates":[-74.01028699999999,40.61794099999999],"type":"Point"},"name":"King Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb0582fe"},"location":{"coordinates":[-73.839229,40.6548749],"type":"Point"},"name":"East Meets West Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0582ff"},"location":{"coordinates":[-74.01724399999999,40.6501777],"type":"Point"},"name":"Nyc Yogurt"} +,{"_id":{"$oid":"55cba2476c522cafdb058300"},"location":{"coordinates":[-73.9889728,40.7212407],"type":"Point"},"name":"Tiengarden Vegan Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb058301"},"location":{"coordinates":[-74.00213099999999,40.735281],"type":"Point"},"name":"Akira Japanese Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb058302"},"location":{"coordinates":[-73.92240699999999,40.700861],"type":"Point"},"name":"Pasteles Capy"} +,{"_id":{"$oid":"55cba2476c522cafdb058303"},"location":{"coordinates":[-73.916378,40.8187176],"type":"Point"},"name":"Nutricion Salud Y Vida"} +,{"_id":{"$oid":"55cba2476c522cafdb058304"},"location":{"coordinates":[-73.850296,40.68281],"type":"Point"},"name":"Nordomi Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb058305"},"location":{"coordinates":[-73.92194060000001,40.6743341],"type":"Point"},"name":"Dong Fang Chinese Food"} +,{"_id":{"$oid":"55cba2476c522cafdb058306"},"location":{"coordinates":[-73.997967,40.5990023],"type":"Point"},"name":"Gyro Mania"} +,{"_id":{"$oid":"55cba2476c522cafdb058307"},"location":{"coordinates":[-74.1574104,40.6117346],"type":"Point"},"name":"Empire East"} +,{"_id":{"$oid":"55cba2476c522cafdb058308"},"location":{"coordinates":[-73.84523639999999,40.6953337],"type":"Point"},"name":"La Negra Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058309"},"location":{"coordinates":[-74.00899930000001,40.7096613],"type":"Point"},"name":"Aroy Dee Thai Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb05830a"},"location":{"coordinates":[-73.95594799999999,40.594981],"type":"Point"},"name":"New Great Wall Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05830b"},"location":{"coordinates":[-73.9032988,40.6462926],"type":"Point"},"name":"Dunkin Donuts/Baskin Robbins/Popeyes"} +,{"_id":{"$oid":"55cba2476c522cafdb05830c"},"location":{"coordinates":[-74.0067897,40.7146694],"type":"Point"},"name":"The Hummus \u0026 Pita Co."} +,{"_id":{"$oid":"55cba2476c522cafdb05830d"},"location":{"coordinates":[-73.941361,40.763203],"type":"Point"},"name":"Creative Concepts Nyc"} +,{"_id":{"$oid":"55cba2476c522cafdb05830e"},"location":{"coordinates":[-73.9712906,40.6930387],"type":"Point"},"name":"Manee Thai"} +,{"_id":{"$oid":"55cba2476c522cafdb05830f"},"location":{"coordinates":[-73.941892,40.7982236],"type":"Point"},"name":"Lexington Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058310"},"location":{"coordinates":[-73.8369421,40.6973057],"type":"Point"},"name":"El Gran Canario Ii Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058311"},"location":{"coordinates":[-73.88455309999999,40.8543782],"type":"Point"},"name":"Planet Wings"} +,{"_id":{"$oid":"55cba2476c522cafdb058312"},"location":{"coordinates":[-73.8794582,40.874976],"type":"Point"},"name":"Panda House/Fresco Tortillas"} +,{"_id":{"$oid":"55cba2476c522cafdb058313"},"location":{"coordinates":[-73.9458047,40.8071725],"type":"Point"},"name":"Good Taste Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058314"},"location":{"coordinates":[-73.9937028,40.7144171],"type":"Point"},"name":"Reach House"} +,{"_id":{"$oid":"55cba2476c522cafdb058315"},"location":{"coordinates":[-73.8224661,40.7539142],"type":"Point"},"name":"Mixx Cantina"} +,{"_id":{"$oid":"55cba2476c522cafdb058316"},"location":{"coordinates":[-74.0319997,40.6217897],"type":"Point"},"name":"Bench Sport Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb058317"},"location":{"coordinates":[-74.0070861,40.7067469],"type":"Point"},"name":"Roti Mediterranean Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb058318"},"location":{"coordinates":[-74.010987,40.633727],"type":"Point"},"name":"Jade Food"} +,{"_id":{"$oid":"55cba2476c522cafdb058319"},"location":{"coordinates":[-73.9772837,40.74765439999999],"type":"Point"},"name":"Perk Kafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05831a"},"location":{"coordinates":[-73.8541553,40.834922],"type":"Point"},"name":"Lorraine'S Bar And Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb05831b"},"location":{"coordinates":[-73.9560106,40.6508669],"type":"Point"},"name":"Enid'S Healthy Juice Bakery \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05831c"},"location":{"coordinates":[-73.89279,40.727796],"type":"Point"},"name":"Walter'S Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb05831d"},"location":{"coordinates":[-73.97301,40.760298],"type":"Point"},"name":"Nerai"} +,{"_id":{"$oid":"55cba2476c522cafdb05831e"},"location":{"coordinates":[-73.96145039999999,40.6609012],"type":"Point"},"name":"Tip Of The Tongue Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05831f"},"location":{"coordinates":[-73.9215969,40.7032714],"type":"Point"},"name":"China Garden Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb058320"},"location":{"coordinates":[-73.947728,40.592764],"type":"Point"},"name":"New Star"} +,{"_id":{"$oid":"55cba2476c522cafdb058321"},"location":{"coordinates":[-73.9269162,40.864451],"type":"Point"},"name":"Uptown Social"} +,{"_id":{"$oid":"55cba2476c522cafdb058322"},"location":{"coordinates":[-73.90820599999999,40.774691],"type":"Point"},"name":"Sakura Japanese Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb058323"},"location":{"coordinates":[-73.825867,40.67752],"type":"Point"},"name":"Sofia'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb058324"},"location":{"coordinates":[-73.8912958,40.862111],"type":"Point"},"name":"Primavera Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058325"},"location":{"coordinates":[-73.93307399999999,40.651866],"type":"Point"},"name":"The Hills Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb058326"},"location":{"coordinates":[-73.9265691,40.8288189],"type":"Point"},"name":"Gate 2 Picnic Area"} +,{"_id":{"$oid":"55cba2476c522cafdb058327"},"location":{"coordinates":[-74.01231039999999,40.7143002],"type":"Point"},"name":"Cafe 101"} +,{"_id":{"$oid":"55cba2476c522cafdb058328"},"location":{"coordinates":[-73.9772294,40.7527262],"type":"Point"},"name":"Irving Farm Coffee Roasters"} +,{"_id":{"$oid":"55cba2476c522cafdb058329"},"location":{"coordinates":[-73.9964476,40.7233607],"type":"Point"},"name":"Sant Ambroeus"} +,{"_id":{"$oid":"55cba2476c522cafdb05832a"},"location":{"coordinates":[-73.99673849999999,40.7411299],"type":"Point"},"name":"Go Go Curry Chelsea"} +,{"_id":{"$oid":"55cba2476c522cafdb05832b"},"location":{"coordinates":[-73.96663410000001,40.7647072],"type":"Point"},"name":"Starbucks Coffee #18509"} +,{"_id":{"$oid":"55cba2476c522cafdb05832c"},"location":{"coordinates":[-73.98080569999999,40.73029409999999],"type":"Point"},"name":"Coffee Shop Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb05832d"},"location":{"coordinates":[-74.004959,40.7287582],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb05832e"},"location":{"coordinates":[-73.97370699999999,40.748281],"type":"Point"},"name":"Tuttles"} +,{"_id":{"$oid":"55cba2476c522cafdb05832f"},"location":{"coordinates":[-73.9583809,40.6465475],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb058330"},"location":{"coordinates":[-73.9621835,40.6828275],"type":"Point"},"name":"Masaki Teriyaki \u0026 Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb058331"},"location":{"coordinates":[-73.8976751,40.6691941],"type":"Point"},"name":"Crown Fried Chicken And Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb058332"},"location":{"coordinates":[-73.9371479,40.697789],"type":"Point"},"name":"Divine Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb058333"},"location":{"coordinates":[-73.94123770000002,40.7037127],"type":"Point"},"name":"Crown Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb058334"},"location":{"coordinates":[-73.8456826,40.7206215],"type":"Point"},"name":"Vanilla Sky"} +,{"_id":{"$oid":"55cba2476c522cafdb058335"},"location":{"coordinates":[-73.9885539,40.768559],"type":"Point"},"name":"Le Soleil Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058336"},"location":{"coordinates":[-74.1660553,40.5823983],"type":"Point"},"name":"Sushi Bento"} +,{"_id":{"$oid":"55cba2476c522cafdb058337"},"location":{"coordinates":[-73.9891107,40.7434614],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb058338"},"location":{"coordinates":[-73.9892216,40.7249688],"type":"Point"},"name":"El Diablito Taqueria"} +,{"_id":{"$oid":"55cba2476c522cafdb058339"},"location":{"coordinates":[-74.0066538,40.734068],"type":"Point"},"name":"Ready To Eat"} +,{"_id":{"$oid":"55cba2476c522cafdb05833a"},"location":{"coordinates":[-73.88784400000002,40.678679],"type":"Point"},"name":"Foo Lee Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05833b"},"location":{"coordinates":[-73.9377289,40.6828387],"type":"Point"},"name":"Marcus Vineyard"} +,{"_id":{"$oid":"55cba2476c522cafdb05833c"},"location":{"coordinates":[-73.9806334,40.6141546],"type":"Point"},"name":"Ortobello Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05833d"},"location":{"coordinates":[-73.992466,40.7291775],"type":"Point"},"name":"Malbec Tango House"} +,{"_id":{"$oid":"55cba2476c522cafdb05833e"},"location":{"coordinates":[-73.9640304,40.6783742],"type":"Point"},"name":"The Saint Catherine"} +,{"_id":{"$oid":"55cba2476c522cafdb05833f"},"location":{"coordinates":[-74.00153,40.729076],"type":"Point"},"name":"Bombayduck Co."} +,{"_id":{"$oid":"55cba2476c522cafdb058340"},"location":{"coordinates":[-73.988552,40.75741319999999],"type":"Point"},"name":"Cheetahs Gentlemens Club \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058341"},"location":{"coordinates":[-73.9778412,40.7531292],"type":"Point"},"name":"Frankies Dogs On The Go"} +,{"_id":{"$oid":"55cba2476c522cafdb058342"},"location":{"coordinates":[-74.0102352,40.7149613],"type":"Point"},"name":"Mulberry \u0026 Vine"} +,{"_id":{"$oid":"55cba2476c522cafdb058343"},"location":{"coordinates":[-73.94145189999999,40.8381598],"type":"Point"},"name":"Heights Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb058344"},"location":{"coordinates":[-73.80058869999999,40.7229731],"type":"Point"},"name":"168 Hi Tea"} +,{"_id":{"$oid":"55cba2476c522cafdb058345"},"location":{"coordinates":[-73.86618299999999,40.8375108],"type":"Point"},"name":"Kenndy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb058346"},"location":{"coordinates":[-74.02669500000002,40.63327],"type":"Point"},"name":"Brooklyn Beet Company"} +,{"_id":{"$oid":"55cba2476c522cafdb058347"},"location":{"coordinates":[-73.93578099999999,40.795966],"type":"Point"},"name":"Prime One 16"} +,{"_id":{"$oid":"55cba2476c522cafdb058348"},"location":{"coordinates":[-73.9983012,40.7293583],"type":"Point"},"name":"Kopi Kopi"} +,{"_id":{"$oid":"55cba2476c522cafdb058349"},"location":{"coordinates":[-73.99409899999999,40.69450000000001],"type":"Point"},"name":"Taperia"} +,{"_id":{"$oid":"55cba2476c522cafdb05834a"},"location":{"coordinates":[-73.9177602,40.7462944],"type":"Point"},"name":"Skillman'S Famous Pizza \u0026 Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb05834b"},"location":{"coordinates":[-73.9852989,40.7279389],"type":"Point"},"name":"Davey'S Ice Cream"} +,{"_id":{"$oid":"55cba2476c522cafdb05834c"},"location":{"coordinates":[-73.7519172,40.7072975],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb05834d"},"location":{"coordinates":[-73.8799047,40.74807819999999],"type":"Point"},"name":"Ny Chevillo-Tte"} +,{"_id":{"$oid":"55cba2476c522cafdb05834e"},"location":{"coordinates":[-73.91101239999999,40.6949182],"type":"Point"},"name":"Alex Luncheonette"} +,{"_id":{"$oid":"55cba2476c522cafdb05834f"},"location":{"coordinates":[-81.20821029999999,32.1356308],"type":"Point"},"name":"Us Airways Club"} +,{"_id":{"$oid":"55cba2476c522cafdb058350"},"location":{"coordinates":[-73.9598093,40.7140893],"type":"Point"},"name":"Williamsburg Cinemas"} +,{"_id":{"$oid":"55cba2476c522cafdb058351"},"location":{"coordinates":[-74.0028131,40.73125950000001],"type":"Point"},"name":"Sugar \u0026 Plumm"} +,{"_id":{"$oid":"55cba2476c522cafdb058352"},"location":{"coordinates":[-73.990308,40.76212599999999],"type":"Point"},"name":"Long Charm Thai Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb058353"},"location":{"coordinates":[-73.916893,40.758073],"type":"Point"},"name":"Broadway Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb058354"},"location":{"coordinates":[-73.920765,40.69815699999999],"type":"Point"},"name":"Pastelitos Elvys"} +,{"_id":{"$oid":"55cba2476c522cafdb058355"},"location":{"coordinates":[-73.9174196,40.7550943],"type":"Point"},"name":"Off The Hook Raw Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb058356"},"location":{"coordinates":[-73.94272889999999,40.7997224],"type":"Point"},"name":"Armonie"} +,{"_id":{"$oid":"55cba2476c522cafdb058357"},"location":{"coordinates":[-73.852952,40.693591],"type":"Point"},"name":"La Gitana 3 Panaderia Y Restaurante"} +,{"_id":{"$oid":"55cba2476c522cafdb058358"},"location":{"coordinates":[28.1530999,-25.8109474],"type":"Point"},"name":"Dichter Pharmacy"} +,{"_id":{"$oid":"55cba2476c522cafdb058359"},"location":{"coordinates":[-73.93332099999999,40.703111],"type":"Point"},"name":"Koda Restaurant \u0026 Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb05835a"},"location":{"coordinates":[-73.8964793,40.8625198],"type":"Point"},"name":"2 Bros"} +,{"_id":{"$oid":"55cba2476c522cafdb05835b"},"location":{"coordinates":[-104.8340155,39.7691992],"type":"Point"},"name":"Shiny Tea"} +,{"_id":{"$oid":"55cba2476c522cafdb05835c"},"location":{"coordinates":[-73.9818586,40.7541476],"type":"Point"},"name":"Chop'T Bryant Park"} +,{"_id":{"$oid":"55cba2476c522cafdb05835d"},"location":{"coordinates":[-73.7822056,40.6434612],"type":"Point"},"name":"Delta Sky Club"} +,{"_id":{"$oid":"55cba2476c522cafdb05835e"},"location":{"coordinates":[-73.8673117,40.87300219999999],"type":"Point"},"name":"Blue Mountain Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb05835f"},"location":{"coordinates":[-73.8281196,40.7550779],"type":"Point"},"name":"East Buffet \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058360"},"location":{"coordinates":[-73.967806,40.710938],"type":"Point"},"name":"Blank Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058361"},"location":{"coordinates":[-73.9142679,40.7648115],"type":"Point"},"name":"Heaven Sports Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb058362"},"location":{"coordinates":[-74.0037766,40.7252214],"type":"Point"},"name":"Costata"} +,{"_id":{"$oid":"55cba2476c522cafdb058363"},"location":{"coordinates":[-73.984663,40.739963],"type":"Point"},"name":"Solo Pizza To Go"} +,{"_id":{"$oid":"55cba2476c522cafdb058364"},"location":{"coordinates":[-74.0080471,40.7037844],"type":"Point"},"name":"Convene At 32 Old Slip"} +,{"_id":{"$oid":"55cba2476c522cafdb058365"},"location":{"coordinates":[-74.00601569999999,40.7191773],"type":"Point"},"name":"The Butterfly"} +,{"_id":{"$oid":"55cba2476c522cafdb058366"},"location":{"coordinates":[-73.8984007,40.8618768],"type":"Point"},"name":"Fordham Pizza \u0026 Pasta"} +,{"_id":{"$oid":"55cba2476c522cafdb058367"},"location":{"coordinates":[-73.9494071,40.7539223],"type":"Point"},"name":"Ravel Rooftop"} +,{"_id":{"$oid":"55cba2476c522cafdb058368"},"location":{"coordinates":[-73.91926699999999,40.7429128],"type":"Point"},"name":"Sidetracks Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058369"},"location":{"coordinates":[-73.9584063,40.7175241],"type":"Point"},"name":"Biblio"} +,{"_id":{"$oid":"55cba2476c522cafdb05836a"},"location":{"coordinates":[-73.98627359999999,40.7476713],"type":"Point"},"name":"Mk Karaoke"} +,{"_id":{"$oid":"55cba2476c522cafdb05836b"},"location":{"coordinates":[-73.9187661,40.7590313],"type":"Point"},"name":"Lite Bites Cafe And Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb05836c"},"location":{"coordinates":[-73.95990429999999,40.7298033],"type":"Point"},"name":"River Styx"} +,{"_id":{"$oid":"55cba2476c522cafdb05836d"},"location":{"coordinates":[-73.957801,40.729579],"type":"Point"},"name":"Homecoming"} +,{"_id":{"$oid":"55cba2476c522cafdb05836e"},"location":{"coordinates":[-73.93985339999999,40.8415293],"type":"Point"},"name":"Chipotle Mexican Grill #1968"} +,{"_id":{"$oid":"55cba2476c522cafdb05836f"},"location":{"coordinates":[-73.924437,40.768571],"type":"Point"},"name":"Jerusalem Pita Hot"} +,{"_id":{"$oid":"55cba2476c522cafdb058370"},"location":{"coordinates":[-73.9291804,40.8085416],"type":"Point"},"name":"Calientito Deli, Restaurant \u0026 Lounge Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb058371"},"location":{"coordinates":[-73.9437031,40.708566],"type":"Point"},"name":"Tri-Color Restaurant And Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb058372"},"location":{"coordinates":[-73.9941886,40.7618934],"type":"Point"},"name":"Hell'S Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb058373"},"location":{"coordinates":[-74.41620999999999,40.89418999999999],"type":"Point"},"name":"Place To Beach Cantina"} +,{"_id":{"$oid":"55cba2476c522cafdb058374"},"location":{"coordinates":[-73.98852560000002,40.7532088],"type":"Point"},"name":"Desmonds Steakhouse And Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb058375"},"location":{"coordinates":[-73.994193,40.722933],"type":"Point"},"name":"Cafe Habana/Cafe Habana To Go"} +,{"_id":{"$oid":"55cba2476c522cafdb058376"},"location":{"coordinates":[-73.9540485,40.7073122],"type":"Point"},"name":"Fula Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb058377"},"location":{"coordinates":[-73.9579042,40.67171099999999],"type":"Point"},"name":"Glady'S"} +,{"_id":{"$oid":"55cba2476c522cafdb058378"},"location":{"coordinates":[-74.2463989,40.5093717],"type":"Point"},"name":"Uncle Louie G'S"} +,{"_id":{"$oid":"55cba2476c522cafdb058379"},"location":{"coordinates":[-74.0012936,40.6061421],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb05837a"},"location":{"coordinates":[-73.9578707,40.7175673],"type":"Point"},"name":"Dos Toros Taqueria"} +,{"_id":{"$oid":"55cba2476c522cafdb05837b"},"location":{"coordinates":[-74.002402,40.7275984],"type":"Point"},"name":"Comodo"} +,{"_id":{"$oid":"55cba2476c522cafdb05837c"},"location":{"coordinates":[-73.92146699999999,40.698017],"type":"Point"},"name":"Agra Heights"} +,{"_id":{"$oid":"55cba2476c522cafdb05837d"},"location":{"coordinates":[-73.9127228,40.6133314],"type":"Point"},"name":"Hunan West"} +,{"_id":{"$oid":"55cba2476c522cafdb05837e"},"location":{"coordinates":[-73.8987825,40.724095],"type":"Point"},"name":"Sakura 7"} +,{"_id":{"$oid":"55cba2476c522cafdb05837f"},"location":{"coordinates":[-74.0068685,40.72763399999999],"type":"Point"},"name":"Dig Inn"} +,{"_id":{"$oid":"55cba2476c522cafdb058380"},"location":{"coordinates":[-73.990529,40.76308299999999],"type":"Point"},"name":"Ponche Taqueria"} +,{"_id":{"$oid":"55cba2476c522cafdb058381"},"location":{"coordinates":[-73.99825369999999,40.7563515],"type":"Point"},"name":"The Cafe Grind"} +,{"_id":{"$oid":"55cba2476c522cafdb058382"},"location":{"coordinates":[-73.9425783,40.7050852],"type":"Point"},"name":"Eastwick"} +,{"_id":{"$oid":"55cba2476c522cafdb058383"},"location":{"coordinates":[-73.9590458,40.7130845],"type":"Point"},"name":"Desnuda Cevicheria"} +,{"_id":{"$oid":"55cba2476c522cafdb058384"},"location":{"coordinates":[-73.9775389,40.741997],"type":"Point"},"name":"Profit Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058385"},"location":{"coordinates":[-73.854946,40.75157],"type":"Point"},"name":"Carmen'S Lunch The Best Dominican Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb058386"},"location":{"coordinates":[-73.98084,40.778587],"type":"Point"},"name":"Kumo Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb058387"},"location":{"coordinates":[-73.9676547,40.6963493],"type":"Point"},"name":"Mojito Cuban Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb058388"},"location":{"coordinates":[-73.9548418,40.6893409],"type":"Point"},"name":"No. 1 Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058389"},"location":{"coordinates":[-73.992824,40.669678],"type":"Point"},"name":"El Paraiso \u0026 Taqueria Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05838a"},"location":{"coordinates":[-73.77217259999999,40.7663427],"type":"Point"},"name":"Tanko Japanese Fusion"} +,{"_id":{"$oid":"55cba2476c522cafdb05838b"},"location":{"coordinates":[-73.9511351,40.82618310000001],"type":"Point"},"name":"La Rubia Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05838c"},"location":{"coordinates":[-73.9830901,40.5769916],"type":"Point"},"name":"Mi Candilejas Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05838d"},"location":{"coordinates":[-74.07580999999999,40.6327939],"type":"Point"},"name":"Uncle Louie G Italian Ices \u0026 Ice Cream"} +,{"_id":{"$oid":"55cba2476c522cafdb05838e"},"location":{"coordinates":[-73.99512469999999,40.72045139999999],"type":"Point"},"name":"Cantine Parisienne"} +,{"_id":{"$oid":"55cba2476c522cafdb05838f"},"location":{"coordinates":[-73.967587,40.793337],"type":"Point"},"name":"Birch"} +,{"_id":{"$oid":"55cba2476c522cafdb058390"},"location":{"coordinates":[-73.8148621,40.7620607],"type":"Point"},"name":"Bca Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058391"},"location":{"coordinates":[-73.9938682,40.7239426],"type":"Point"},"name":"The Musket Room"} +,{"_id":{"$oid":"55cba2476c522cafdb058392"},"location":{"coordinates":[-74.1924018,40.5325745],"type":"Point"},"name":"Il Pomodoro"} +,{"_id":{"$oid":"55cba2476c522cafdb058393"},"location":{"coordinates":[-73.89111419999999,40.86437979999999],"type":"Point"},"name":"El Eden Empanadas \u0026 Nat. Juices"} +,{"_id":{"$oid":"55cba2476c522cafdb058394"},"location":{"coordinates":[-73.9955092,40.7591993],"type":"Point"},"name":"Dojo"} +,{"_id":{"$oid":"55cba2476c522cafdb058395"},"location":{"coordinates":[-73.99007519999999,40.7388418],"type":"Point"},"name":"Barn Joo"} +,{"_id":{"$oid":"55cba2476c522cafdb058396"},"location":{"coordinates":[-73.9928788,40.748439],"type":"Point"},"name":"Yogurtland"} +,{"_id":{"$oid":"55cba2476c522cafdb058397"},"location":{"coordinates":[-73.8278636,40.6937282],"type":"Point"},"name":"Golden King"} +,{"_id":{"$oid":"55cba2476c522cafdb058398"},"location":{"coordinates":[-73.928732,40.70662],"type":"Point"},"name":"Falansai"} +,{"_id":{"$oid":"55cba2476c522cafdb058399"},"location":{"coordinates":[-73.88355709999999,40.8804293],"type":"Point"},"name":"Happy Dragon"} +,{"_id":{"$oid":"55cba2476c522cafdb05839a"},"location":{"coordinates":[-74.150836,40.550387],"type":"Point"},"name":"Village Maria"} +,{"_id":{"$oid":"55cba2476c522cafdb05839b"},"location":{"coordinates":[-73.8728488,40.6832696],"type":"Point"},"name":"Cypress Pizzeria \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05839c"},"location":{"coordinates":[-74.0039771,40.7195736],"type":"Point"},"name":"Los Americanos"} +,{"_id":{"$oid":"55cba2476c522cafdb05839d"},"location":{"coordinates":[-73.8626756,40.83530380000001],"type":"Point"},"name":"Taqueria Los Reyes"} +,{"_id":{"$oid":"55cba2476c522cafdb05839e"},"location":{"coordinates":[-73.9941886,40.7618934],"type":"Point"},"name":"Siri Thai"} +,{"_id":{"$oid":"55cba2476c522cafdb05839f"},"location":{"coordinates":[-73.97171829999999,40.6040437],"type":"Point"},"name":"Golden Place"} +,{"_id":{"$oid":"55cba2476c522cafdb0583a0"},"location":{"coordinates":[-73.8919181,40.74742010000001],"type":"Point"},"name":"Tawa Tandoor"} +,{"_id":{"$oid":"55cba2476c522cafdb0583a1"},"location":{"coordinates":[-73.997939,40.733153],"type":"Point"},"name":"Burger Joint"} +,{"_id":{"$oid":"55cba2476c522cafdb0583a2"},"location":{"coordinates":[-73.8600089,40.8361635],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0583a3"},"location":{"coordinates":[-73.985669,40.71910700000001],"type":"Point"},"name":"Calexico"} +,{"_id":{"$oid":"55cba2476c522cafdb0583a4"},"location":{"coordinates":[-73.9256778,40.7619388],"type":"Point"},"name":"La Gata Golosa Columbian Food"} +,{"_id":{"$oid":"55cba2476c522cafdb0583a5"},"location":{"coordinates":[-73.845187,40.72097429999999],"type":"Point"},"name":"Bankok Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb0583a6"},"location":{"coordinates":[-74.097927,40.644437],"type":"Point"},"name":"The Cuckoo'S Nest"} +,{"_id":{"$oid":"55cba2476c522cafdb0583a7"},"location":{"coordinates":[-73.9803708,40.6769391],"type":"Point"},"name":"Nahm Thai Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0583a8"},"location":{"coordinates":[-73.7971565,40.5904747],"type":"Point"},"name":"Boardwalk Pizzeria Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0583a9"},"location":{"coordinates":[-73.96697569999999,40.634446],"type":"Point"},"name":"Kavkaz Restaurant Inc"} +,{"_id":{"$oid":"55cba2476c522cafdb0583aa"},"location":{"coordinates":[-73.9808128,40.7557955],"type":"Point"},"name":"Xi'An Famous Foods"} +,{"_id":{"$oid":"55cba2476c522cafdb0583ab"},"location":{"coordinates":[-73.96732999999999,40.576657],"type":"Point"},"name":"Brick Oven Bread Berikoni"} +,{"_id":{"$oid":"55cba2476c522cafdb0583ac"},"location":{"coordinates":[-73.8028733,40.7621042],"type":"Point"},"name":"Comma Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0583ad"},"location":{"coordinates":[-73.965406,40.758669],"type":"Point"},"name":"Paname"} +,{"_id":{"$oid":"55cba2476c522cafdb0583ae"},"location":{"coordinates":[-74.1344506,40.6257875],"type":"Point"},"name":"Miyabi Ii Asian Fusion"} +,{"_id":{"$oid":"55cba2476c522cafdb0583af"},"location":{"coordinates":[-73.99650539999999,40.7682095],"type":"Point"},"name":"Olympic Pier Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0583b0"},"location":{"coordinates":[-73.98361489999999,40.7527864],"type":"Point"},"name":"Lady M Bryant Park"} +,{"_id":{"$oid":"55cba2476c522cafdb0583b1"},"location":{"coordinates":[-73.94777719999999,40.8045853],"type":"Point"},"name":"Barawine"} +,{"_id":{"$oid":"55cba2476c522cafdb0583b2"},"location":{"coordinates":[-73.9836836,40.7384261],"type":"Point"},"name":"Lyric Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb0583b3"},"location":{"coordinates":[-73.88271329999999,40.7374003],"type":"Point"},"name":"Nevada Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb0583b4"},"location":{"coordinates":[-73.9139299,40.7595529],"type":"Point"},"name":"31St Avenue Gyro."} +,{"_id":{"$oid":"55cba2476c522cafdb0583b5"},"location":{"coordinates":[-73.8957258,40.73669700000001],"type":"Point"},"name":"Badillo Alejandra J"} +,{"_id":{"$oid":"55cba2476c522cafdb0583b6"},"location":{"coordinates":[-73.9853009,40.6885011],"type":"Point"},"name":"Brooklyn Fare Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0583b7"},"location":{"coordinates":[-73.8995316,40.857762],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb0583b8"},"location":{"coordinates":[-73.8290939,40.759362],"type":"Point"},"name":"Claypot (Food Court, #23)"} +,{"_id":{"$oid":"55cba2476c522cafdb0583b9"},"location":{"coordinates":[-73.887771,40.701581],"type":"Point"},"name":"Caffe Di Fau"} +,{"_id":{"$oid":"55cba2476c522cafdb0583ba"},"location":{"coordinates":[-73.8091766,40.78727970000001],"type":"Point"},"name":"Yogurt City"} +,{"_id":{"$oid":"55cba2476c522cafdb0583bb"},"location":{"coordinates":[-73.9861018,40.7269422],"type":"Point"},"name":"Maharlika"} +,{"_id":{"$oid":"55cba2476c522cafdb0583bc"},"location":{"coordinates":[-73.99789679999999,40.6042023],"type":"Point"},"name":"C2 Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0583bd"},"location":{"coordinates":[-73.94011490000001,40.8247261],"type":"Point"},"name":"New Jing Hui Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0583be"},"location":{"coordinates":[-73.91948359999999,40.674246],"type":"Point"},"name":"The Ooh Lala Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb0583bf"},"location":{"coordinates":[-74.1304009,40.6261915],"type":"Point"},"name":"Metro Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0583c0"},"location":{"coordinates":[-74.0049928,40.745962],"type":"Point"},"name":"Intelligentsia Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0583c1"},"location":{"coordinates":[-73.9702879,40.76094579999999],"type":"Point"},"name":"Nse Fifty Six"} +,{"_id":{"$oid":"55cba2476c522cafdb0583c2"},"location":{"coordinates":[-73.886158,40.843289],"type":"Point"},"name":"Sanbra Door Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0583c3"},"location":{"coordinates":[-73.9813949,40.7377171],"type":"Point"},"name":"Goodfella'S Gramercy Brick Oven Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0583c4"},"location":{"coordinates":[-73.99279159999999,40.747471],"type":"Point"},"name":"Potbelly Sandwich Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb0583c5"},"location":{"coordinates":[-74.0678607,40.5922392],"type":"Point"},"name":"Darina Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0583c6"},"location":{"coordinates":[-73.70278170000002,40.7519489],"type":"Point"},"name":"Dominican Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0583c7"},"location":{"coordinates":[-73.9998399,40.7349594],"type":"Point"},"name":"Shuka"} +,{"_id":{"$oid":"55cba2476c522cafdb0583c8"},"location":{"coordinates":[-74.00489689999999,40.7419343],"type":"Point"},"name":"Los Tacos # 1"} +,{"_id":{"$oid":"55cba2476c522cafdb0583c9"},"location":{"coordinates":[-73.98311679999999,40.72694509999999],"type":"Point"},"name":"Yoshi"} +,{"_id":{"$oid":"55cba2476c522cafdb0583ca"},"location":{"coordinates":[-73.96577529999999,40.800845],"type":"Point"},"name":"Yasha Raman"} +,{"_id":{"$oid":"55cba2476c522cafdb0583cb"},"location":{"coordinates":[-73.9380171,40.8481895],"type":"Point"},"name":"Tu Cachapa"} +,{"_id":{"$oid":"55cba2476c522cafdb0583cc"},"location":{"coordinates":[-73.9974726,40.7451452],"type":"Point"},"name":"Blossom Du Jour"} +,{"_id":{"$oid":"55cba2476c522cafdb0583cd"},"location":{"coordinates":[-73.990573,40.7196116],"type":"Point"},"name":"Hill And Dale"} +,{"_id":{"$oid":"55cba2476c522cafdb0583ce"},"location":{"coordinates":[-73.73354499999999,40.7124604],"type":"Point"},"name":"Best New China"} +,{"_id":{"$oid":"55cba2476c522cafdb0583cf"},"location":{"coordinates":[-73.848398,40.837819],"type":"Point"},"name":"Cortes Rivera Gregorio"} +,{"_id":{"$oid":"55cba2476c522cafdb0583d0"},"location":{"coordinates":[-73.850701,40.898437],"type":"Point"},"name":"Finger Licking Jerk"} +,{"_id":{"$oid":"55cba2476c522cafdb0583d1"},"location":{"coordinates":[-74.009993,40.638865],"type":"Point"},"name":"D \u0026 Y Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0583d2"},"location":{"coordinates":[-74.003033,40.72292909999999],"type":"Point"},"name":"Korchma Taras Bulba"} +,{"_id":{"$oid":"55cba2476c522cafdb0583d3"},"location":{"coordinates":[-73.949417,40.695144],"type":"Point"},"name":"Crown Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb0583d4"},"location":{"coordinates":[-73.83111389999999,40.70894970000001],"type":"Point"},"name":"Mazal Tov"} +,{"_id":{"$oid":"55cba2476c522cafdb0583d5"},"location":{"coordinates":[-73.833034,40.684236],"type":"Point"},"name":"S \u0026 S Hot Spot Roti Shop \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0583d6"},"location":{"coordinates":[-73.848839,40.694874],"type":"Point"},"name":"Woodhaven Manor Caters And Banquet Inc"} +,{"_id":{"$oid":"55cba2476c522cafdb0583d7"},"location":{"coordinates":[-73.9736955,40.7583795],"type":"Point"},"name":"Pret A Manger"} +,{"_id":{"$oid":"55cba2476c522cafdb0583d8"},"location":{"coordinates":[-73.951092,40.66274300000001],"type":"Point"},"name":"Lenny'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0583d9"},"location":{"coordinates":[-74.0087901,40.7133206],"type":"Point"},"name":"Lenny'S Ultimate Sandwich"} +,{"_id":{"$oid":"55cba2476c522cafdb0583da"},"location":{"coordinates":[-73.82648,40.7591944],"type":"Point"},"name":"Fu Xiang Ju"} +,{"_id":{"$oid":"55cba2476c522cafdb0583db"},"location":{"coordinates":[-73.8153513,40.7403583],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0583dc"},"location":{"coordinates":[-73.9441607,40.7996901],"type":"Point"},"name":"Cross Culture Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0583dd"},"location":{"coordinates":[-73.9548411,40.6866476],"type":"Point"},"name":"Dynaco"} +,{"_id":{"$oid":"55cba2476c522cafdb0583de"},"location":{"coordinates":[-73.940383,40.8355805],"type":"Point"},"name":"Splendid China"} +,{"_id":{"$oid":"55cba2476c522cafdb0583df"},"location":{"coordinates":[-73.91586029999999,40.6193905],"type":"Point"},"name":"Frozen Planet"} +,{"_id":{"$oid":"55cba2476c522cafdb0583e0"},"location":{"coordinates":[-73.98627359999999,40.7476713],"type":"Point"},"name":"Food Gallery 32"} +,{"_id":{"$oid":"55cba2476c522cafdb0583e1"},"location":{"coordinates":[-73.9805049,40.6150387],"type":"Point"},"name":"Bay Bagels"} +,{"_id":{"$oid":"55cba2476c522cafdb0583e2"},"location":{"coordinates":[-73.840193,40.679613],"type":"Point"},"name":"Betty Ann'S Place"} +,{"_id":{"$oid":"55cba2476c522cafdb0583e3"},"location":{"coordinates":[-74.02626099999999,40.621832],"type":"Point"},"name":"Mikes Hinsch"} +,{"_id":{"$oid":"55cba2476c522cafdb0583e4"},"location":{"coordinates":[-73.950712,40.664191],"type":"Point"},"name":"Happy Life Fast Food"} +,{"_id":{"$oid":"55cba2476c522cafdb0583e5"},"location":{"coordinates":[-73.83607099999999,40.68733599999999],"type":"Point"},"name":"Starz Princess Queens Catering Hall"} +,{"_id":{"$oid":"55cba2476c522cafdb0583e6"},"location":{"coordinates":[-73.94520419999999,40.8345449],"type":"Point"},"name":"Taszo Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0583e7"},"location":{"coordinates":[-73.9785,40.7559946],"type":"Point"},"name":"Macchiato Espresso Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0583e8"},"location":{"coordinates":[-74.0060591,40.7064287],"type":"Point"},"name":"The Best Of New York Food"} +,{"_id":{"$oid":"55cba2476c522cafdb0583e9"},"location":{"coordinates":[-73.97739,40.630195],"type":"Point"},"name":"Quetzalito Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0583ea"},"location":{"coordinates":[-73.8463898,40.8707906],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0583eb"},"location":{"coordinates":[-74.00545799999999,40.7404266],"type":"Point"},"name":"Hilo"} +,{"_id":{"$oid":"55cba2476c522cafdb0583ec"},"location":{"coordinates":[-74.0028447,40.7278191],"type":"Point"},"name":"Charlie Bird"} +,{"_id":{"$oid":"55cba2476c522cafdb0583ed"},"location":{"coordinates":[-73.9376248,40.8551339],"type":"Point"},"name":"Rusty Mackerel"} +,{"_id":{"$oid":"55cba2476c522cafdb0583ee"},"location":{"coordinates":[-73.9544488,40.732738],"type":"Point"},"name":"Propeller Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0583ef"},"location":{"coordinates":[-73.9887907,40.7316551],"type":"Point"},"name":"Amc Loews Village 7 (3Rd Fl Concession)"} +,{"_id":{"$oid":"55cba2476c522cafdb0583f0"},"location":{"coordinates":[-73.9887907,40.7316551],"type":"Point"},"name":"Amc Kings Village 7 Main Level"} +,{"_id":{"$oid":"55cba2476c522cafdb0583f1"},"location":{"coordinates":[-73.9539301,40.7793744],"type":"Point"},"name":"Amc Empire 25 Theatres"} +,{"_id":{"$oid":"55cba2476c522cafdb0583f2"},"location":{"coordinates":[-73.9539301,40.7793744],"type":"Point"},"name":"Amc Orpheum 7"} +,{"_id":{"$oid":"55cba2476c522cafdb0583f3"},"location":{"coordinates":[-74.1317554,40.6267086],"type":"Point"},"name":"Crown Palace"} +,{"_id":{"$oid":"55cba2476c522cafdb0583f4"},"location":{"coordinates":[-73.83215799999999,40.69946150000001],"type":"Point"},"name":"Crazy Willys Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0583f5"},"location":{"coordinates":[-74.012613,40.615725],"type":"Point"},"name":"Theresa'S Place"} +,{"_id":{"$oid":"55cba2476c522cafdb0583f6"},"location":{"coordinates":[-73.9848729,40.6711284],"type":"Point"},"name":"Shamisen"} +,{"_id":{"$oid":"55cba2476c522cafdb0583f7"},"location":{"coordinates":[-73.810379,40.700173],"type":"Point"},"name":"Nyc Arena"} +,{"_id":{"$oid":"55cba2476c522cafdb0583f8"},"location":{"coordinates":[-73.8318882,40.6780902],"type":"Point"},"name":"Arabian Nights Hookah Bar \u0026 Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb0583f9"},"location":{"coordinates":[-73.9957003,40.7270537],"type":"Point"},"name":"Yogorino"} +,{"_id":{"$oid":"55cba2476c522cafdb0583fa"},"location":{"coordinates":[-73.94659659999999,40.7802574],"type":"Point"},"name":"Au Jus"} +,{"_id":{"$oid":"55cba2476c522cafdb0583fb"},"location":{"coordinates":[-73.8343245,40.5807833],"type":"Point"},"name":"El Pasotiempo"} +,{"_id":{"$oid":"55cba2476c522cafdb0583fc"},"location":{"coordinates":[-73.9095646,40.6402287],"type":"Point"},"name":"Aunt Chels Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0583fd"},"location":{"coordinates":[-73.9282142,40.8514632],"type":"Point"},"name":"Grandma Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0583fe"},"location":{"coordinates":[-73.8931202,40.8428737],"type":"Point"},"name":"Home Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb0583ff"},"location":{"coordinates":[-73.8612322,40.6792172],"type":"Point"},"name":"New Garden Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058400"},"location":{"coordinates":[-73.99854859999999,40.7345476],"type":"Point"},"name":"Elixir"} +,{"_id":{"$oid":"55cba2476c522cafdb058401"},"location":{"coordinates":[-73.9810667,40.6751599],"type":"Point"},"name":"Le Pain Quotidien"} +,{"_id":{"$oid":"55cba2476c522cafdb058402"},"location":{"coordinates":[-73.953685,40.78786340000001],"type":"Point"},"name":"La Pain Quotidien"} +,{"_id":{"$oid":"55cba2476c522cafdb058403"},"location":{"coordinates":[-74.0083887,40.7070189],"type":"Point"},"name":"Dave'S Hoagies"} +,{"_id":{"$oid":"55cba2476c522cafdb058404"},"location":{"coordinates":[-73.98228879999999,40.723579],"type":"Point"},"name":"Maiden Lane"} +,{"_id":{"$oid":"55cba2476c522cafdb058405"},"location":{"coordinates":[-73.8944058,40.6648603],"type":"Point"},"name":"Golden Krust"} +,{"_id":{"$oid":"55cba2476c522cafdb058406"},"location":{"coordinates":[-73.96753919999999,40.8005822],"type":"Point"},"name":"Pitaya"} +,{"_id":{"$oid":"55cba2476c522cafdb058407"},"location":{"coordinates":[-73.938834,40.67954],"type":"Point"},"name":"New No. 1 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058408"},"location":{"coordinates":[-73.9766376,40.5963588],"type":"Point"},"name":"Grand Fortune Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb058409"},"location":{"coordinates":[-73.9976331,40.7151339],"type":"Point"},"name":"Cafe Hong Kong"} +,{"_id":{"$oid":"55cba2476c522cafdb05840a"},"location":{"coordinates":[-73.9730072,40.6931293],"type":"Point"},"name":"Chung Chun Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb05840b"},"location":{"coordinates":[-73.858215,40.75019390000001],"type":"Point"},"name":"Vinicio'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05840c"},"location":{"coordinates":[-74.24176899999999,40.51123700000001],"type":"Point"},"name":"Dani'S"} +,{"_id":{"$oid":"55cba2476c522cafdb05840d"},"location":{"coordinates":[-73.8444031,40.6800676],"type":"Point"},"name":"Mia Halal Food"} +,{"_id":{"$oid":"55cba2476c522cafdb05840e"},"location":{"coordinates":[-73.9768464,40.76446199999999],"type":"Point"},"name":"Quality Italian Steakhouse"} +,{"_id":{"$oid":"55cba2476c522cafdb05840f"},"location":{"coordinates":[-73.957976,40.718661],"type":"Point"},"name":"Juice Press 8"} +,{"_id":{"$oid":"55cba2476c522cafdb058410"},"location":{"coordinates":[-73.9653398,40.8014987],"type":"Point"},"name":"La Piccola Cucina"} +,{"_id":{"$oid":"55cba2476c522cafdb058411"},"location":{"coordinates":[-73.9185785,40.6154835],"type":"Point"},"name":"Dolly'S Italian Ices"} +,{"_id":{"$oid":"55cba2476c522cafdb058412"},"location":{"coordinates":[-73.9377949,40.8383335],"type":"Point"},"name":"New Jade House"} +,{"_id":{"$oid":"55cba2476c522cafdb058413"},"location":{"coordinates":[-73.871661,40.753698],"type":"Point"},"name":"Yogurt City"} +,{"_id":{"$oid":"55cba2476c522cafdb058414"},"location":{"coordinates":[-73.9888465,40.7303997],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb058415"},"location":{"coordinates":[-73.996008,40.7139783],"type":"Point"},"name":"Division 31 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058416"},"location":{"coordinates":[-73.757346,40.7183483],"type":"Point"},"name":"Papa John'S"} +,{"_id":{"$oid":"55cba2476c522cafdb058417"},"location":{"coordinates":[-73.9094844,40.7006818],"type":"Point"},"name":"El Manaba Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058418"},"location":{"coordinates":[-73.8655807,40.8786278],"type":"Point"},"name":"Green Garden Health Foods"} +,{"_id":{"$oid":"55cba2476c522cafdb058419"},"location":{"coordinates":[-74.00685639999999,40.7394018],"type":"Point"},"name":"Bfb @ Malt'N Mash"} +,{"_id":{"$oid":"55cba2476c522cafdb05841a"},"location":{"coordinates":[-73.8539871,40.8542001],"type":"Point"},"name":"Enzo'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05841b"},"location":{"coordinates":[-73.9741505,40.6798802],"type":"Point"},"name":"Morgan'S Bbq"} +,{"_id":{"$oid":"55cba2476c522cafdb05841c"},"location":{"coordinates":[-73.9961584,40.7593166],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb05841d"},"location":{"coordinates":[-73.97435469999999,40.7646095],"type":"Point"},"name":"Palm Court"} +,{"_id":{"$oid":"55cba2476c522cafdb05841e"},"location":{"coordinates":[-73.877252,40.760374],"type":"Point"},"name":"La Gata Golosa"} +,{"_id":{"$oid":"55cba2476c522cafdb05841f"},"location":{"coordinates":[-73.916887,40.619773],"type":"Point"},"name":"Sweet House Frozen Yougurt And Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb058420"},"location":{"coordinates":[-73.9847036,40.7511701],"type":"Point"},"name":"Spring Hill Hotel"} +,{"_id":{"$oid":"55cba2476c522cafdb058421"},"location":{"coordinates":[-73.7893548,40.7265935],"type":"Point"},"name":"Empire Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058422"},"location":{"coordinates":[-92.72757299999999,41.7461416],"type":"Point"},"name":"Tres Carnes"} +,{"_id":{"$oid":"55cba2476c522cafdb058423"},"location":{"coordinates":[100.6294417,13.7440888],"type":"Point"},"name":"The Taco Truck"} +,{"_id":{"$oid":"55cba2476c522cafdb058424"},"location":{"coordinates":[-73.7941883,40.7536924],"type":"Point"},"name":"B.B'S Pub And Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb058425"},"location":{"coordinates":[-73.92657799999999,40.7628026],"type":"Point"},"name":"Tamashii Ramen"} +,{"_id":{"$oid":"55cba2476c522cafdb058426"},"location":{"coordinates":[-73.91888999999999,40.846382],"type":"Point"},"name":"Xing Sheng"} +,{"_id":{"$oid":"55cba2476c522cafdb058427"},"location":{"coordinates":[-73.987703,40.726498],"type":"Point"},"name":"Goloka Juice Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb058428"},"location":{"coordinates":[-73.997203,40.737857],"type":"Point"},"name":"Pinche Taquiera"} +,{"_id":{"$oid":"55cba2476c522cafdb058429"},"location":{"coordinates":[-73.83364499999999,40.7589929],"type":"Point"},"name":"Mogu Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb05842a"},"location":{"coordinates":[-73.97435469999999,40.7646095],"type":"Point"},"name":"Champagne Bar And Rose Club"} +,{"_id":{"$oid":"55cba2476c522cafdb05842b"},"location":{"coordinates":[-73.9368744,40.8443933],"type":"Point"},"name":"China Sun"} +,{"_id":{"$oid":"55cba2476c522cafdb05842c"},"location":{"coordinates":[-73.9627129,40.613809],"type":"Point"},"name":"King Solomon Catering \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05842d"},"location":{"coordinates":[-73.98689399999999,40.66804399999999],"type":"Point"},"name":"Far East Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05842e"},"location":{"coordinates":[-73.9778412,40.7531292],"type":"Point"},"name":"Central Market New York"} +,{"_id":{"$oid":"55cba2476c522cafdb05842f"},"location":{"coordinates":[-73.985573,40.718672],"type":"Point"},"name":"New York Sushi Ko"} +,{"_id":{"$oid":"55cba2476c522cafdb058430"},"location":{"coordinates":[-74.0097248,40.704597],"type":"Point"},"name":"Masterpiece Caterers Corp."} +,{"_id":{"$oid":"55cba2476c522cafdb058431"},"location":{"coordinates":[-73.9223055,40.818081],"type":"Point"},"name":"Sabores Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058432"},"location":{"coordinates":[-73.820605,40.699159],"type":"Point"},"name":"Arena Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb058433"},"location":{"coordinates":[-73.957791,40.729515],"type":"Point"},"name":"Broken Land"} +,{"_id":{"$oid":"55cba2476c522cafdb058434"},"location":{"coordinates":[-73.9485339,40.80376709999999],"type":"Point"},"name":"Pa-Paya Seed"} +,{"_id":{"$oid":"55cba2476c522cafdb058435"},"location":{"coordinates":[-73.943314,40.7064279],"type":"Point"},"name":"Sweet Science"} +,{"_id":{"$oid":"55cba2476c522cafdb058436"},"location":{"coordinates":[-73.73763699999999,40.674855],"type":"Point"},"name":"Jamaica Breeze Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058437"},"location":{"coordinates":[-73.9589926,40.71693339999999],"type":"Point"},"name":"The Plank"} +,{"_id":{"$oid":"55cba2476c522cafdb058438"},"location":{"coordinates":[-73.9395231,40.67123429999999],"type":"Point"},"name":"Golden Taste Famous Caribbean Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058439"},"location":{"coordinates":[-73.88732,40.85627100000001],"type":"Point"},"name":"Malesia Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05843a"},"location":{"coordinates":[-88.2437425,30.678081],"type":"Point"},"name":"Dairy Queen Grill \u0026 Chill"} +,{"_id":{"$oid":"55cba2476c522cafdb05843b"},"location":{"coordinates":[-74.149839,40.5516321],"type":"Point"},"name":"Havana Cigar Sports Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05843c"},"location":{"coordinates":[-73.9461925,40.8160812],"type":"Point"},"name":"Uptown Slices"} +,{"_id":{"$oid":"55cba2476c522cafdb05843d"},"location":{"coordinates":[-73.97990500000002,40.7775589],"type":"Point"},"name":"Simit And Smith"} +,{"_id":{"$oid":"55cba2476c522cafdb05843e"},"location":{"coordinates":[-73.8815398,40.83157629999999],"type":"Point"},"name":"La Fe Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05843f"},"location":{"coordinates":[-73.8711137,40.6669545],"type":"Point"},"name":"Soulfood Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb058440"},"location":{"coordinates":[-73.92740500000001,40.7578909],"type":"Point"},"name":"Snowdonia Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb058441"},"location":{"coordinates":[-73.7354008,40.6740781],"type":"Point"},"name":"Clippers Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb058442"},"location":{"coordinates":[-73.9173731,40.8272771],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb058443"},"location":{"coordinates":[-73.9732171,40.79219680000001],"type":"Point"},"name":"Rita'S"} +,{"_id":{"$oid":"55cba2476c522cafdb058444"},"location":{"coordinates":[-73.95737299999999,40.770636],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb058445"},"location":{"coordinates":[-73.96641559999999,40.7567555],"type":"Point"},"name":"Copia Nyc"} +,{"_id":{"$oid":"55cba2476c522cafdb058446"},"location":{"coordinates":[-73.96943759999999,40.7572813],"type":"Point"},"name":"Dunkin Donuts/Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb058447"},"location":{"coordinates":[-73.802775,40.714447],"type":"Point"},"name":"New Traditions"} +,{"_id":{"$oid":"55cba2476c522cafdb058448"},"location":{"coordinates":[-73.89843530000002,40.8902183],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb058449"},"location":{"coordinates":[-73.97172789999999,40.749838],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb05844a"},"location":{"coordinates":[-73.9466958,40.5840221],"type":"Point"},"name":"Seaport Buffet"} +,{"_id":{"$oid":"55cba2476c522cafdb05844b"},"location":{"coordinates":[-73.9220223,40.8406933],"type":"Point"},"name":"Johnny'S Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb05844c"},"location":{"coordinates":[-73.904011,40.647018],"type":"Point"},"name":"Armando'S Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb05844d"},"location":{"coordinates":[-73.8822118,40.7314774],"type":"Point"},"name":"La Calenita Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb05844e"},"location":{"coordinates":[-73.9970341,40.7335065],"type":"Point"},"name":"Omar'S"} +,{"_id":{"$oid":"55cba2476c522cafdb05844f"},"location":{"coordinates":[-73.8094619,40.7204684],"type":"Point"},"name":"Sweet Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb058450"},"location":{"coordinates":[-73.9792143,40.7374827],"type":"Point"},"name":"Corbet \u0026 Conley"} +,{"_id":{"$oid":"55cba2476c522cafdb058451"},"location":{"coordinates":[-73.98256099999999,40.74293600000001],"type":"Point"},"name":"Chal Chilli"} +,{"_id":{"$oid":"55cba2476c522cafdb058452"},"location":{"coordinates":[-73.9564496,40.6182588],"type":"Point"},"name":"Ny Kao Sushi Inc"} +,{"_id":{"$oid":"55cba2476c522cafdb058453"},"location":{"coordinates":[-74.0104657,40.7103768],"type":"Point"},"name":"The Coffee Bean \u0026 Tea Leaf"} +,{"_id":{"$oid":"55cba2476c522cafdb058454"},"location":{"coordinates":[-73.938941,40.836523],"type":"Point"},"name":"Kennedy'S Chicken \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb058455"},"location":{"coordinates":[-73.8899758,40.6331097],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb058456"},"location":{"coordinates":[-73.9867428,40.6691015],"type":"Point"},"name":"Tommys Famous Cheesesteaks \u0026 Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb058457"},"location":{"coordinates":[-73.9185794,40.7658315],"type":"Point"},"name":"Ramen \u0026 Yakitori"} +,{"_id":{"$oid":"55cba2476c522cafdb058458"},"location":{"coordinates":[-74.0178918,40.7081658],"type":"Point"},"name":"Miramar"} +,{"_id":{"$oid":"55cba2476c522cafdb058459"},"location":{"coordinates":[-74.002639,40.606962],"type":"Point"},"name":"El Pollo Iii"} +,{"_id":{"$oid":"55cba2476c522cafdb05845a"},"location":{"coordinates":[-73.9516917,40.7257541],"type":"Point"},"name":"Lake Street Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05845b"},"location":{"coordinates":[-73.990179,40.765078],"type":"Point"},"name":"Zoralie Restaurant Inc."} +,{"_id":{"$oid":"55cba2476c522cafdb05845c"},"location":{"coordinates":[-73.87489099999999,40.763167],"type":"Point"},"name":"Roadie'S Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb05845d"},"location":{"coordinates":[-73.9170116,40.765023],"type":"Point"},"name":"Bourbon And Vine"} +,{"_id":{"$oid":"55cba2476c522cafdb05845e"},"location":{"coordinates":[-73.93945599999999,40.624673],"type":"Point"},"name":"Sing Hua Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb05845f"},"location":{"coordinates":[-73.90485699999999,40.752784],"type":"Point"},"name":"Mamajuana Cafe / Fiesta Club"} +,{"_id":{"$oid":"55cba2476c522cafdb058460"},"location":{"coordinates":[-73.9157809,40.7644588],"type":"Point"},"name":"Marketa"} +,{"_id":{"$oid":"55cba2476c522cafdb058461"},"location":{"coordinates":[-73.9947753,40.6842476],"type":"Point"},"name":"Brothers Bagels"} +,{"_id":{"$oid":"55cba2476c522cafdb058462"},"location":{"coordinates":[-73.92079249999999,40.7628016],"type":"Point"},"name":"Milkflower"} +,{"_id":{"$oid":"55cba2476c522cafdb058463"},"location":{"coordinates":[-73.9827037,40.7684141],"type":"Point"},"name":"Creative Juice"} +,{"_id":{"$oid":"55cba2476c522cafdb058464"},"location":{"coordinates":[-73.8741216,40.7225667],"type":"Point"},"name":"Gino'S Pizza Express"} +,{"_id":{"$oid":"55cba2476c522cafdb058465"},"location":{"coordinates":[-73.85489299999999,40.7438689],"type":"Point"},"name":"Cucino A Modo Mio"} +,{"_id":{"$oid":"55cba2476c522cafdb058466"},"location":{"coordinates":[-73.812608,40.691718],"type":"Point"},"name":"Rose Valley Cakes"} +,{"_id":{"$oid":"55cba2476c522cafdb058467"},"location":{"coordinates":[-73.9916835,40.6905028],"type":"Point"},"name":"Frozen Peak"} +,{"_id":{"$oid":"55cba2476c522cafdb058468"},"location":{"coordinates":[-73.952799,40.7997299],"type":"Point"},"name":"Royal Curry \u0026 Kabab"} +,{"_id":{"$oid":"55cba2476c522cafdb058469"},"location":{"coordinates":[-74.00489689999999,40.7419343],"type":"Point"},"name":"Beyond Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb05846a"},"location":{"coordinates":[-73.9139503,40.77544839999999],"type":"Point"},"name":"Telly'S Taverna"} +,{"_id":{"$oid":"55cba2476c522cafdb05846b"},"location":{"coordinates":[-73.8797045,40.8285365],"type":"Point"},"name":"El Molcajete Restaurant."} +,{"_id":{"$oid":"55cba2476c522cafdb05846c"},"location":{"coordinates":[-73.94933689999999,40.7174709],"type":"Point"},"name":"Battery Harris"} +,{"_id":{"$oid":"55cba2476c522cafdb05846d"},"location":{"coordinates":[-73.86769989999999,40.7688542],"type":"Point"},"name":"Steinway Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05846e"},"location":{"coordinates":[-73.950413,40.79280199999999],"type":"Point"},"name":"Bawarchi Indian Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb05846f"},"location":{"coordinates":[-73.9609752,40.8014824],"type":"Point"},"name":"Giovanni'S Italian Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb058470"},"location":{"coordinates":[-73.97579200000001,40.6747108],"type":"Point"},"name":"Asuka Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb058471"},"location":{"coordinates":[-74.00489689999999,40.7419343],"type":"Point"},"name":"Num Pang Sandwich Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb058472"},"location":{"coordinates":[-73.97999639999999,40.5747642],"type":"Point"},"name":"Dona Zita Mexican Food"} +,{"_id":{"$oid":"55cba2476c522cafdb058473"},"location":{"coordinates":[-73.9901924,40.7333427],"type":"Point"},"name":"The Fourth American Brasserie"} +,{"_id":{"$oid":"55cba2476c522cafdb058474"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"Cake Tin"} +,{"_id":{"$oid":"55cba2476c522cafdb058475"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"Labrea Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb058476"},"location":{"coordinates":[-73.9499975,40.71379839999999],"type":"Point"},"name":"Cheers Thai Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058477"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"Shake Shack"} +,{"_id":{"$oid":"55cba2476c522cafdb058478"},"location":{"coordinates":[-73.9556039,40.768825],"type":"Point"},"name":"Two Lizards Mexican Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058479"},"location":{"coordinates":[-73.950248,40.67586800000001],"type":"Point"},"name":"Nostrand Avenue Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb05847a"},"location":{"coordinates":[-73.9729716,40.6774174],"type":"Point"},"name":"Starbucks"} +,{"_id":{"$oid":"55cba2476c522cafdb05847b"},"location":{"coordinates":[-73.801502,40.694686],"type":"Point"},"name":"Meema'S Jubilee Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb05847c"},"location":{"coordinates":[-73.84942199999999,40.710447],"type":"Point"},"name":"Twist It Top It Frozen Yogurt"} +,{"_id":{"$oid":"55cba2476c522cafdb05847d"},"location":{"coordinates":[-73.9428317,40.7259607],"type":"Point"},"name":"Peking Express"} +,{"_id":{"$oid":"55cba2476c522cafdb05847e"},"location":{"coordinates":[-73.8289593,40.7588413],"type":"Point"},"name":"Lcle Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05847f"},"location":{"coordinates":[-80.8912179,29.024277],"type":"Point"},"name":"N.Y. Aquarium"} +,{"_id":{"$oid":"55cba2476c522cafdb058480"},"location":{"coordinates":[-73.74004699999999,40.705644],"type":"Point"},"name":"Creole Fusion"} +,{"_id":{"$oid":"55cba2476c522cafdb058481"},"location":{"coordinates":[-73.984111,40.691241],"type":"Point"},"name":"Brooklyn Brewhouse"} +,{"_id":{"$oid":"55cba2476c522cafdb058482"},"location":{"coordinates":[-73.9983898,40.7333398],"type":"Point"},"name":"Village Pisco"} +,{"_id":{"$oid":"55cba2476c522cafdb058483"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"Blue Smoke/On The Road"} +,{"_id":{"$oid":"55cba2476c522cafdb058484"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"Uptown Brasserie"} +,{"_id":{"$oid":"55cba2476c522cafdb058485"},"location":{"coordinates":[-73.9201625,40.7672916],"type":"Point"},"name":"Katch Brewery \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb058486"},"location":{"coordinates":[-73.97407749999999,40.7516428],"type":"Point"},"name":"Simply Sliders"} +,{"_id":{"$oid":"55cba2476c522cafdb058487"},"location":{"coordinates":[-73.919386,40.702156],"type":"Point"},"name":"Milk \u0026 Pull Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058488"},"location":{"coordinates":[-73.97661660000001,40.7626955],"type":"Point"},"name":"Natureworks"} +,{"_id":{"$oid":"55cba2476c522cafdb058489"},"location":{"coordinates":[-74.00121469999999,40.718548],"type":"Point"},"name":"New Canal Best Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05848a"},"location":{"coordinates":[-73.9925669,40.698697],"type":"Point"},"name":"Sociale"} +,{"_id":{"$oid":"55cba2476c522cafdb05848b"},"location":{"coordinates":[-73.9887732,40.7235509],"type":"Point"},"name":"Juice Press"} +,{"_id":{"$oid":"55cba2476c522cafdb05848c"},"location":{"coordinates":[-73.9941624,40.6683183],"type":"Point"},"name":"Checkers"} +,{"_id":{"$oid":"55cba2476c522cafdb05848d"},"location":{"coordinates":[-73.9039626,40.7038941],"type":"Point"},"name":"Kraja Soccer Club"} +,{"_id":{"$oid":"55cba2476c522cafdb05848e"},"location":{"coordinates":[-73.98188499999999,40.595754],"type":"Point"},"name":"Buon Appetito"} +,{"_id":{"$oid":"55cba2476c522cafdb05848f"},"location":{"coordinates":[-73.8635717,40.7333304],"type":"Point"},"name":"Auntie Anne'S"} +,{"_id":{"$oid":"55cba2476c522cafdb058490"},"location":{"coordinates":[-73.86961,40.678552],"type":"Point"},"name":"True Flavorz"} +,{"_id":{"$oid":"55cba2476c522cafdb058491"},"location":{"coordinates":[-73.939273,40.8416508],"type":"Point"},"name":"Jade Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb058492"},"location":{"coordinates":[-73.9802022,40.7464441],"type":"Point"},"name":"Pizza King"} +,{"_id":{"$oid":"55cba2476c522cafdb058493"},"location":{"coordinates":[-74.1262265,40.6267467],"type":"Point"},"name":"Forest Bbq"} +,{"_id":{"$oid":"55cba2476c522cafdb058494"},"location":{"coordinates":[-73.9734479,40.7525712],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb058495"},"location":{"coordinates":[-73.81608609999999,40.6893496],"type":"Point"},"name":"Trini Delite Roti Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb058496"},"location":{"coordinates":[-73.98218539999999,40.7669058],"type":"Point"},"name":"Cafe 285"} +,{"_id":{"$oid":"55cba2476c522cafdb058497"},"location":{"coordinates":[-73.98218539999999,40.7669058],"type":"Point"},"name":"Ra @ Y \u0026 R"} +,{"_id":{"$oid":"55cba2476c522cafdb058498"},"location":{"coordinates":[-73.93008499999999,40.660438],"type":"Point"},"name":"Brown Sugar Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb058499"},"location":{"coordinates":[-73.9472072,40.83039489999999],"type":"Point"},"name":"La Dulzura Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05849a"},"location":{"coordinates":[-73.983909,40.758345],"type":"Point"},"name":"Tgi Friday'S"} +,{"_id":{"$oid":"55cba2476c522cafdb05849b"},"location":{"coordinates":[-73.9294324,40.7379639],"type":"Point"},"name":"Williams Burgers"} +,{"_id":{"$oid":"55cba2476c522cafdb05849c"},"location":{"coordinates":[-73.90363719999999,40.7573956],"type":"Point"},"name":"Bungalow 31"} +,{"_id":{"$oid":"55cba2476c522cafdb05849d"},"location":{"coordinates":[-73.9961246,40.7533315],"type":"Point"},"name":"Patiala"} +,{"_id":{"$oid":"55cba2476c522cafdb05849e"},"location":{"coordinates":[-73.99040099999999,40.76199700000001],"type":"Point"},"name":"Aa Jing"} +,{"_id":{"$oid":"55cba2476c522cafdb05849f"},"location":{"coordinates":[-73.927207,40.692737],"type":"Point"},"name":"Marthita'S Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0584a0"},"location":{"coordinates":[-73.9782104,40.6425603],"type":"Point"},"name":"Beverley Pizza \u0026 Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0584a1"},"location":{"coordinates":[-73.889686,40.844425],"type":"Point"},"name":"3 Mounts"} +,{"_id":{"$oid":"55cba2476c522cafdb0584a2"},"location":{"coordinates":[-73.8651654,40.8544354],"type":"Point"},"name":"Gina'S Italian Bakery \u0026 Pastry Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb0584a3"},"location":{"coordinates":[-73.8794866,40.8740493],"type":"Point"},"name":"Bainbridge Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0584a4"},"location":{"coordinates":[-73.748167,40.7680719],"type":"Point"},"name":"Smokin Aces"} +,{"_id":{"$oid":"55cba2476c522cafdb0584a5"},"location":{"coordinates":[-74.0139629,40.7064257],"type":"Point"},"name":"Bravo Kosher Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0584a6"},"location":{"coordinates":[-73.9350192,40.60139520000001],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0584a7"},"location":{"coordinates":[-73.9557313,40.8044008],"type":"Point"},"name":"Silvana"} +,{"_id":{"$oid":"55cba2476c522cafdb0584a8"},"location":{"coordinates":[-73.8220673,40.727099],"type":"Point"},"name":"Pj'S Dance Charisma"} +,{"_id":{"$oid":"55cba2476c522cafdb0584a9"},"location":{"coordinates":[-73.9186986,40.8148087],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb0584aa"},"location":{"coordinates":[-74.003748,40.712931],"type":"Point"},"name":"Centre Melts"} +,{"_id":{"$oid":"55cba2476c522cafdb0584ab"},"location":{"coordinates":[-74.0109628,40.7034162],"type":"Point"},"name":"Shorty'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0584ac"},"location":{"coordinates":[-73.86656099999999,40.75001899999999],"type":"Point"},"name":"Vida Energica"} +,{"_id":{"$oid":"55cba2476c522cafdb0584ad"},"location":{"coordinates":[-73.8687865,40.7493926],"type":"Point"},"name":"Juan Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0584ae"},"location":{"coordinates":[-74.1114937,40.5716482],"type":"Point"},"name":"Cue Time"} +,{"_id":{"$oid":"55cba2476c522cafdb0584af"},"location":{"coordinates":[-73.915098,40.776277],"type":"Point"},"name":"E Taverna"} +,{"_id":{"$oid":"55cba2476c522cafdb0584b0"},"location":{"coordinates":[-73.96840519999999,40.6780039],"type":"Point"},"name":"Stocked"} +,{"_id":{"$oid":"55cba2476c522cafdb0584b1"},"location":{"coordinates":[-73.9920743,40.6839169],"type":"Point"},"name":"Pazzi Pasta"} +,{"_id":{"$oid":"55cba2476c522cafdb0584b2"},"location":{"coordinates":[-74.0062401,40.7397546],"type":"Point"},"name":"Ifc Center"} +,{"_id":{"$oid":"55cba2476c522cafdb0584b3"},"location":{"coordinates":[-73.9995201,40.7145532],"type":"Point"},"name":"New Sam'S Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb0584b4"},"location":{"coordinates":[-73.777868,40.691695],"type":"Point"},"name":"The Original Steak-N-Cheese"} +,{"_id":{"$oid":"55cba2476c522cafdb0584b5"},"location":{"coordinates":[-73.967816,40.757294],"type":"Point"},"name":"Insomnia Cookies"} +,{"_id":{"$oid":"55cba2476c522cafdb0584b6"},"location":{"coordinates":[-73.9827085,40.7715082],"type":"Point"},"name":"Empire Hotel Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0584b7"},"location":{"coordinates":[-73.7967417,40.7733259],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0584b8"},"location":{"coordinates":[-74.0035063,40.7298732],"type":"Point"},"name":"Potjanee"} +,{"_id":{"$oid":"55cba2476c522cafdb0584b9"},"location":{"coordinates":[-73.9923524,40.7238111],"type":"Point"},"name":"Jamba Juice (Store #695)"} +,{"_id":{"$oid":"55cba2476c522cafdb0584ba"},"location":{"coordinates":[-73.990494,40.7569545],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0584bb"},"location":{"coordinates":[-73.99198299999999,40.742871],"type":"Point"},"name":"The Storehouse"} +,{"_id":{"$oid":"55cba2476c522cafdb0584bc"},"location":{"coordinates":[-73.9390123,40.749463],"type":"Point"},"name":"Mamabites"} +,{"_id":{"$oid":"55cba2476c522cafdb0584bd"},"location":{"coordinates":[-73.99070689999999,40.6912119],"type":"Point"},"name":"Mara'S Cafe \u0026 Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0584be"},"location":{"coordinates":[-73.9797751,40.68522919999999],"type":"Point"},"name":"St. Gambrinus Beer Shoppe"} +,{"_id":{"$oid":"55cba2476c522cafdb0584bf"},"location":{"coordinates":[-73.98266679999999,40.7276509],"type":"Point"},"name":"Mamani Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0584c0"},"location":{"coordinates":[-73.9625544,40.625273],"type":"Point"},"name":"Jerusalem Steakhouse Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb0584c1"},"location":{"coordinates":[-73.91210339999999,40.6135277],"type":"Point"},"name":"Sun Breeze"} +,{"_id":{"$oid":"55cba2476c522cafdb0584c2"},"location":{"coordinates":[-73.7923368,40.7866256],"type":"Point"},"name":"Vivaldi"} +,{"_id":{"$oid":"55cba2476c522cafdb0584c3"},"location":{"coordinates":[-73.767415,40.755368],"type":"Point"},"name":"Mamalee"} +,{"_id":{"$oid":"55cba2476c522cafdb0584c4"},"location":{"coordinates":[-73.98519809999999,40.7281981],"type":"Point"},"name":"China Star"} +,{"_id":{"$oid":"55cba2476c522cafdb0584c5"},"location":{"coordinates":[-73.954966,40.7769],"type":"Point"},"name":"Just Salad"} +,{"_id":{"$oid":"55cba2476c522cafdb0584c6"},"location":{"coordinates":[-74.0021189,40.725846],"type":"Point"},"name":"Salud Soho"} +,{"_id":{"$oid":"55cba2476c522cafdb0584c7"},"location":{"coordinates":[-73.957324,40.765414],"type":"Point"},"name":"1St Avenue Gourmet"} +,{"_id":{"$oid":"55cba2476c522cafdb0584c8"},"location":{"coordinates":[-73.8528757,40.7271987],"type":"Point"},"name":"Gabi'S Brick Oven Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0584c9"},"location":{"coordinates":[-73.9913223,40.7307693],"type":"Point"},"name":"Butterfield Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0584ca"},"location":{"coordinates":[-74.0043644,40.747152],"type":"Point"},"name":"Empire Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb0584cb"},"location":{"coordinates":[-74.00425229999999,40.7059326],"type":"Point"},"name":"Trading Post"} +,{"_id":{"$oid":"55cba2476c522cafdb0584cc"},"location":{"coordinates":[-73.91881959999999,40.7414843],"type":"Point"},"name":"Los Pollos Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0584cd"},"location":{"coordinates":[-73.995053,40.7306091],"type":"Point"},"name":"Oren'S Daily Roast"} +,{"_id":{"$oid":"55cba2476c522cafdb0584ce"},"location":{"coordinates":[-73.97960929999999,40.7780875],"type":"Point"},"name":"Legend"} +,{"_id":{"$oid":"55cba2476c522cafdb0584cf"},"location":{"coordinates":[-73.98965,40.719761],"type":"Point"},"name":"Black Tree"} +,{"_id":{"$oid":"55cba2476c522cafdb0584d0"},"location":{"coordinates":[-73.9596765,40.5823605],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0584d1"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"King David Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb0584d2"},"location":{"coordinates":[-73.98376929999999,40.7595022],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0584d3"},"location":{"coordinates":[-73.9177473,40.825742],"type":"Point"},"name":"New Good Taste Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0584d4"},"location":{"coordinates":[-73.9658824,40.7619091],"type":"Point"},"name":"Anassa Taverna"} +,{"_id":{"$oid":"55cba2476c522cafdb0584d5"},"location":{"coordinates":[-73.9411001,40.71189390000001],"type":"Point"},"name":"Bread Brothers Bagel Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0584d6"},"location":{"coordinates":[-73.9885666,40.71988959999999],"type":"Point"},"name":"Wolfnights"} +,{"_id":{"$oid":"55cba2476c522cafdb0584d7"},"location":{"coordinates":[-73.9506968,40.7218573],"type":"Point"},"name":"Park Luncheonette"} +,{"_id":{"$oid":"55cba2476c522cafdb0584d8"},"location":{"coordinates":[-74.0251679,40.622248],"type":"Point"},"name":"The Hideout"} +,{"_id":{"$oid":"55cba2476c522cafdb0584d9"},"location":{"coordinates":[-73.945642,40.792658],"type":"Point"},"name":"Hong Kong Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0584da"},"location":{"coordinates":[-74.0256955,40.6227023],"type":"Point"},"name":"Yo-Sweets"} +,{"_id":{"$oid":"55cba2476c522cafdb0584db"},"location":{"coordinates":[-73.98228879999999,40.723579],"type":"Point"},"name":"Dream Baby"} +,{"_id":{"$oid":"55cba2476c522cafdb0584dc"},"location":{"coordinates":[-73.923939,40.752131],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0584dd"},"location":{"coordinates":[-73.9729897,40.7513679],"type":"Point"},"name":"Kiosku"} +,{"_id":{"$oid":"55cba2476c522cafdb0584de"},"location":{"coordinates":[-73.977863,40.786191],"type":"Point"},"name":"Chipotle Mexican Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0584df"},"location":{"coordinates":[-73.88809479999999,40.844079],"type":"Point"},"name":"El Nuevo Bohio Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0584e0"},"location":{"coordinates":[-73.9611273,40.72081850000001],"type":"Point"},"name":"Cafe Biba"} +,{"_id":{"$oid":"55cba2476c522cafdb0584e1"},"location":{"coordinates":[-74.008065,40.636593],"type":"Point"},"name":"Chatime"} +,{"_id":{"$oid":"55cba2476c522cafdb0584e2"},"location":{"coordinates":[-73.9885539,40.763461],"type":"Point"},"name":"Hk Boxers Nyc"} +,{"_id":{"$oid":"55cba2476c522cafdb0584e3"},"location":{"coordinates":[-73.953968,40.68054900000001],"type":"Point"},"name":"Almasry Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0584e4"},"location":{"coordinates":[-73.94704039999999,40.8247075],"type":"Point"},"name":"Il Caffe Latte 2"} +,{"_id":{"$oid":"55cba2476c522cafdb0584e5"},"location":{"coordinates":[-73.8925541,40.7705317],"type":"Point"},"name":"Gyro Express"} +,{"_id":{"$oid":"55cba2476c522cafdb0584e6"},"location":{"coordinates":[-73.999946,40.7288039],"type":"Point"},"name":"Uncle Ted'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0584e7"},"location":{"coordinates":[-73.8920089,40.6760815],"type":"Point"},"name":"Zamba Rios"} +,{"_id":{"$oid":"55cba2476c522cafdb0584e8"},"location":{"coordinates":[-73.8839212,40.7497819],"type":"Point"},"name":"Yummy Fried Chicken And Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0584e9"},"location":{"coordinates":[-74.0004369,40.6853008],"type":"Point"},"name":"Vekslers"} +,{"_id":{"$oid":"55cba2476c522cafdb0584ea"},"location":{"coordinates":[-73.8581833,40.86322730000001],"type":"Point"},"name":"Hunting \u0026 Fishing Club"} +,{"_id":{"$oid":"55cba2476c522cafdb0584eb"},"location":{"coordinates":[-73.9856647,40.72663319999999],"type":"Point"},"name":"Sushi Dojo"} +,{"_id":{"$oid":"55cba2476c522cafdb0584ec"},"location":{"coordinates":[-73.947504,40.714073],"type":"Point"},"name":"Family Garden Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0584ed"},"location":{"coordinates":[-73.95982699999999,40.7621967],"type":"Point"},"name":"Ahana Japanese Fusion Cuisine Inc"} +,{"_id":{"$oid":"55cba2476c522cafdb0584ee"},"location":{"coordinates":[-73.9346522,40.8518554],"type":"Point"},"name":"New Broadway Pizzeria And Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0584ef"},"location":{"coordinates":[-73.90993019999999,40.886592],"type":"Point"},"name":"Menchie'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0584f0"},"location":{"coordinates":[-73.9316508,40.6975578],"type":"Point"},"name":"Happy Fun Hideaway"} +,{"_id":{"$oid":"55cba2476c522cafdb0584f1"},"location":{"coordinates":[-73.81533,40.762775],"type":"Point"},"name":"Open Karaoke"} +,{"_id":{"$oid":"55cba2476c522cafdb0584f2"},"location":{"coordinates":[-73.9305225,40.6499164],"type":"Point"},"name":"Jumbo House"} +,{"_id":{"$oid":"55cba2476c522cafdb0584f3"},"location":{"coordinates":[-73.90397999999999,40.764562],"type":"Point"},"name":"Starlets"} +,{"_id":{"$oid":"55cba2476c522cafdb0584f4"},"location":{"coordinates":[-73.89536070000001,40.8514971],"type":"Point"},"name":"Stephanie'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0584f5"},"location":{"coordinates":[-73.955027,40.7333289],"type":"Point"},"name":"Agra Taj Mahal"} +,{"_id":{"$oid":"55cba2476c522cafdb0584f6"},"location":{"coordinates":[-73.88786259999999,40.8548301],"type":"Point"},"name":"John'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb0584f7"},"location":{"coordinates":[-73.9063184,40.8795328],"type":"Point"},"name":"Estrellita Poblana"} +,{"_id":{"$oid":"55cba2476c522cafdb0584f8"},"location":{"coordinates":[-73.8781736,40.7480459],"type":"Point"},"name":"El Toro Bravo"} +,{"_id":{"$oid":"55cba2476c522cafdb0584f9"},"location":{"coordinates":[-74.0099017,40.7191049],"type":"Point"},"name":"American Cut"} +,{"_id":{"$oid":"55cba2476c522cafdb0584fa"},"location":{"coordinates":[-73.98293,40.747317],"type":"Point"},"name":"Hale\u0026Hearty Soups"} +,{"_id":{"$oid":"55cba2476c522cafdb0584fb"},"location":{"coordinates":[-73.96847629999999,40.7633602],"type":"Point"},"name":"The Bar Room"} +,{"_id":{"$oid":"55cba2476c522cafdb0584fc"},"location":{"coordinates":[-73.8966839,40.6693304],"type":"Point"},"name":"Steves Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0584fd"},"location":{"coordinates":[-73.9130784,40.7135153],"type":"Point"},"name":"Drunken Fish"} +,{"_id":{"$oid":"55cba2476c522cafdb0584fe"},"location":{"coordinates":[-73.9604236,40.5918565],"type":"Point"},"name":"Sultan'S Palace"} +,{"_id":{"$oid":"55cba2476c522cafdb0584ff"},"location":{"coordinates":[-73.962555,40.6357202],"type":"Point"},"name":"Coffee Mob"} +,{"_id":{"$oid":"55cba2476c522cafdb058500"},"location":{"coordinates":[-73.830377,40.7619946],"type":"Point"},"name":"Joe'S Shanghai"} +,{"_id":{"$oid":"55cba2476c522cafdb058501"},"location":{"coordinates":[-73.9394499,40.613244],"type":"Point"},"name":"New Big Chef"} +,{"_id":{"$oid":"55cba2476c522cafdb058502"},"location":{"coordinates":[-74.0095802,40.7147616],"type":"Point"},"name":"Mariachi'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058503"},"location":{"coordinates":[-73.9513547,40.6425936],"type":"Point"},"name":"Uncle'S Shack \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb058504"},"location":{"coordinates":[-74.15797239999999,40.5476339],"type":"Point"},"name":"Patrizia'S Of Brooklyn"} +,{"_id":{"$oid":"55cba2476c522cafdb058505"},"location":{"coordinates":[-73.9685911,40.6475335],"type":"Point"},"name":"Anarkali Indian Food"} +,{"_id":{"$oid":"55cba2476c522cafdb058506"},"location":{"coordinates":[-74.0081399,40.71329980000001],"type":"Point"},"name":"Agoda Asian Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb058507"},"location":{"coordinates":[-73.9859479,40.750451],"type":"Point"},"name":"Fresh \u0026 Pure Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058508"},"location":{"coordinates":[-73.7997245,40.6931277],"type":"Point"},"name":"Family Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb058509"},"location":{"coordinates":[-73.8319005,40.6782799],"type":"Point"},"name":"Domenick'S Pizza \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05850a"},"location":{"coordinates":[-73.934456,40.802484],"type":"Point"},"name":"Bagel Tree"} +,{"_id":{"$oid":"55cba2476c522cafdb05850b"},"location":{"coordinates":[-73.9829247,40.761985],"type":"Point"},"name":"The Manhattan At Times Square"} +,{"_id":{"$oid":"55cba2476c522cafdb05850c"},"location":{"coordinates":[-73.9853347,40.7286089],"type":"Point"},"name":"The Immigrant Tap Room"} +,{"_id":{"$oid":"55cba2476c522cafdb05850d"},"location":{"coordinates":[-73.968396,40.639153],"type":"Point"},"name":"Bar Chord"} +,{"_id":{"$oid":"55cba2476c522cafdb05850e"},"location":{"coordinates":[-73.969053,40.638851],"type":"Point"},"name":"Jr. Bella'S"} +,{"_id":{"$oid":"55cba2476c522cafdb05850f"},"location":{"coordinates":[-73.8149849,40.762033],"type":"Point"},"name":"Dado Fish Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058510"},"location":{"coordinates":[-74.011352,40.633347],"type":"Point"},"name":"Laoma Ma La Tang"} +,{"_id":{"$oid":"55cba2476c522cafdb058511"},"location":{"coordinates":[-74.01448359999999,40.7096119],"type":"Point"},"name":"Bill'S Bar And Burger Downtown"} +,{"_id":{"$oid":"55cba2476c522cafdb058512"},"location":{"coordinates":[-73.9892,40.713883],"type":"Point"},"name":"East Broadway Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb058513"},"location":{"coordinates":[-74.0074941,40.7057352],"type":"Point"},"name":"Yogurt In Love"} +,{"_id":{"$oid":"55cba2476c522cafdb058514"},"location":{"coordinates":[-73.94943110000001,40.7773434],"type":"Point"},"name":"Greenbay Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb058515"},"location":{"coordinates":[-73.7967199,40.762531],"type":"Point"},"name":"D'Anna'S Deli \u0026 Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb058516"},"location":{"coordinates":[-73.8791135,40.8852445],"type":"Point"},"name":"Aman Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058517"},"location":{"coordinates":[-73.86812669999999,40.8656562],"type":"Point"},"name":"Cemitas Puebla Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058518"},"location":{"coordinates":[-73.97399399999999,40.7435863],"type":"Point"},"name":"New York Bagels \u0026 Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb058519"},"location":{"coordinates":[-73.9691888,40.6391016],"type":"Point"},"name":"Brooklyn Belly"} +,{"_id":{"$oid":"55cba2476c522cafdb05851a"},"location":{"coordinates":[-73.93458,40.7537222],"type":"Point"},"name":"Dutch Kills Centraal"} +,{"_id":{"$oid":"55cba2476c522cafdb05851b"},"location":{"coordinates":[-73.826931,40.753104],"type":"Point"},"name":"Xinxin Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05851c"},"location":{"coordinates":[-73.9361284,40.697057],"type":"Point"},"name":"New China Chinese Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb05851d"},"location":{"coordinates":[-73.83759739999999,40.7182024],"type":"Point"},"name":"New Pinang"} +,{"_id":{"$oid":"55cba2476c522cafdb05851e"},"location":{"coordinates":[-73.963844,40.6768349],"type":"Point"},"name":"Mason \u0026 Mug"} +,{"_id":{"$oid":"55cba2476c522cafdb05851f"},"location":{"coordinates":[-73.92231799999999,40.70552],"type":"Point"},"name":"The Sampler"} +,{"_id":{"$oid":"55cba2476c522cafdb058520"},"location":{"coordinates":[-73.8992195,40.8574184],"type":"Point"},"name":"Yang'S Good Taste"} +,{"_id":{"$oid":"55cba2476c522cafdb058521"},"location":{"coordinates":[-73.98374249999999,40.7402841],"type":"Point"},"name":"Barnes \u0026 Noble Cafe At Baruch"} +,{"_id":{"$oid":"55cba2476c522cafdb058522"},"location":{"coordinates":[-73.8895361,40.8523896],"type":"Point"},"name":"Riky \u0026 Sepi Sport Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058523"},"location":{"coordinates":[-73.9942216,40.6087544],"type":"Point"},"name":"Taste Of China"} +,{"_id":{"$oid":"55cba2476c522cafdb058524"},"location":{"coordinates":[-73.99252899999999,40.754533],"type":"Point"},"name":"The Bistro (Courtyard By Marriot)"} +,{"_id":{"$oid":"55cba2476c522cafdb058525"},"location":{"coordinates":[-74.0004187,40.7338037],"type":"Point"},"name":"Why Not"} +,{"_id":{"$oid":"55cba2476c522cafdb058526"},"location":{"coordinates":[-73.990357,40.760558],"type":"Point"},"name":"Bareburger"} +,{"_id":{"$oid":"55cba2476c522cafdb058527"},"location":{"coordinates":[-73.7869091,40.7581424],"type":"Point"},"name":"Gyro World"} +,{"_id":{"$oid":"55cba2476c522cafdb058528"},"location":{"coordinates":[-73.9464349,40.827397],"type":"Point"},"name":"Parlay Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058529"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"Buffalo Wild Wings,Peets Coofee \u0026Tea, Panopolis Bakery \u0026 Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05852a"},"location":{"coordinates":[-73.99381749999999,40.73323240000001],"type":"Point"},"name":"Reservoir"} +,{"_id":{"$oid":"55cba2476c522cafdb05852b"},"location":{"coordinates":[-73.98312709999999,40.7248942],"type":"Point"},"name":"Blythe Ann'S"} +,{"_id":{"$oid":"55cba2476c522cafdb05852c"},"location":{"coordinates":[-73.817623,40.765065],"type":"Point"},"name":"1962 Sogongdong Sontofu"} +,{"_id":{"$oid":"55cba2476c522cafdb05852d"},"location":{"coordinates":[-73.92142199999999,40.826254],"type":"Point"},"name":"Twin Donut Blimpie"} +,{"_id":{"$oid":"55cba2476c522cafdb05852e"},"location":{"coordinates":[-73.89148560000001,40.7488496],"type":"Point"},"name":"Pizza Boy I"} +,{"_id":{"$oid":"55cba2476c522cafdb05852f"},"location":{"coordinates":[-73.85591099999999,40.8560569],"type":"Point"},"name":"Peachwave Frozen Yogurt"} +,{"_id":{"$oid":"55cba2476c522cafdb058530"},"location":{"coordinates":[-73.977417,40.7336527],"type":"Point"},"name":"Lenz'S"} +,{"_id":{"$oid":"55cba2476c522cafdb058531"},"location":{"coordinates":[-73.899537,40.745821],"type":"Point"},"name":"Cafe Con Amor"} +,{"_id":{"$oid":"55cba2476c522cafdb058532"},"location":{"coordinates":[-73.9511763,40.82490689999999],"type":"Point"},"name":"Solace Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb058533"},"location":{"coordinates":[-74.0017439,40.7354406],"type":"Point"},"name":"Presstea"} +,{"_id":{"$oid":"55cba2476c522cafdb058534"},"location":{"coordinates":[-73.958609,40.6508157],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb058535"},"location":{"coordinates":[-73.8802171,40.7501723],"type":"Point"},"name":"La Nueva Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb058536"},"location":{"coordinates":[-74.1695711,40.577103],"type":"Point"},"name":"Five Guys Burgers \u0026 Fries"} +,{"_id":{"$oid":"55cba2476c522cafdb058537"},"location":{"coordinates":[-73.98829599999999,40.726747],"type":"Point"},"name":"Risotteria Melotti"} +,{"_id":{"$oid":"55cba2476c522cafdb058538"},"location":{"coordinates":[-73.9107118,40.8307095],"type":"Point"},"name":"El Nuevo Bohio Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058539"},"location":{"coordinates":[-73.929943,40.7543615],"type":"Point"},"name":"Claudio'S Cafe Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb05853a"},"location":{"coordinates":[-74.0081409,40.6468741],"type":"Point"},"name":"Lin'S Casa Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05853b"},"location":{"coordinates":[-73.91811609999999,40.7411936],"type":"Point"},"name":"Giovanni'S Pizza \u0026 Mexican Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05853c"},"location":{"coordinates":[-73.8175132,40.8190986],"type":"Point"},"name":"Tosca Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05853d"},"location":{"coordinates":[-73.9573944,40.6812455],"type":"Point"},"name":"Doris"} +,{"_id":{"$oid":"55cba2476c522cafdb05853e"},"location":{"coordinates":[-73.9943078,40.6146842],"type":"Point"},"name":"Just Desserts"} +,{"_id":{"$oid":"55cba2476c522cafdb05853f"},"location":{"coordinates":[-73.9505889,40.774701],"type":"Point"},"name":"Le Pain Quotidien"} +,{"_id":{"$oid":"55cba2476c522cafdb058540"},"location":{"coordinates":[-73.82813,40.76033],"type":"Point"},"name":"Taipei Hong"} +,{"_id":{"$oid":"55cba2476c522cafdb058541"},"location":{"coordinates":[-73.991151,40.6185081],"type":"Point"},"name":"Red Mango"} +,{"_id":{"$oid":"55cba2476c522cafdb058542"},"location":{"coordinates":[-73.8978264,40.9052874],"type":"Point"},"name":"New Nagoya Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb058543"},"location":{"coordinates":[-73.85032129999999,40.8724421],"type":"Point"},"name":"Nathans Famous"} +,{"_id":{"$oid":"55cba2476c522cafdb058544"},"location":{"coordinates":[-73.85480919999999,40.7277303],"type":"Point"},"name":"Tower Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb058545"},"location":{"coordinates":[-74.103802,40.587523],"type":"Point"},"name":"New Garden Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058546"},"location":{"coordinates":[-73.9901162,40.6000544],"type":"Point"},"name":"Pho Tay Ho 86 Vietnamese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058547"},"location":{"coordinates":[-74.150739,40.537489],"type":"Point"},"name":"Good Taste Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058548"},"location":{"coordinates":[-73.9967901,40.6843039],"type":"Point"},"name":"Poppy'S Catering \u0026 Events"} +,{"_id":{"$oid":"55cba2476c522cafdb058549"},"location":{"coordinates":[-73.8910372,40.6501093],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb05854a"},"location":{"coordinates":[-73.7644506,40.69180619999999],"type":"Point"},"name":"Siblings Best"} +,{"_id":{"$oid":"55cba2476c522cafdb05854b"},"location":{"coordinates":[-73.9835497,40.7270085],"type":"Point"},"name":"Five Tacos"} +,{"_id":{"$oid":"55cba2476c522cafdb05854c"},"location":{"coordinates":[-74.1017699,40.5887994],"type":"Point"},"name":"Torino Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05854d"},"location":{"coordinates":[-73.9211995,40.8269911],"type":"Point"},"name":"City View Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb05854e"},"location":{"coordinates":[-74.13565,40.56089],"type":"Point"},"name":"Hokkaido Japanese Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb05854f"},"location":{"coordinates":[-73.9969225,40.7185206],"type":"Point"},"name":"Patea"} +,{"_id":{"$oid":"55cba2476c522cafdb058550"},"location":{"coordinates":[-73.99485659999999,40.7524928],"type":"Point"},"name":"Amc Theaters 34Th Street - Main Concession"} +,{"_id":{"$oid":"55cba2476c522cafdb058551"},"location":{"coordinates":[-73.99485659999999,40.7524928],"type":"Point"},"name":"Amc Theatres (Lowes) 34Th Street - Auxilliary Concession"} +,{"_id":{"$oid":"55cba2476c522cafdb058552"},"location":{"coordinates":[-73.8552347,40.7212294],"type":"Point"},"name":"Hive Thai Cooking"} +,{"_id":{"$oid":"55cba2476c522cafdb058553"},"location":{"coordinates":[-73.8993145,40.8592442],"type":"Point"},"name":"Best Italian Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb058554"},"location":{"coordinates":[-74.00581420000002,40.7151267],"type":"Point"},"name":"Nyc Yogurt"} +,{"_id":{"$oid":"55cba2476c522cafdb058555"},"location":{"coordinates":[-74.0068636,40.7096409],"type":"Point"},"name":"Nyc Yogurt"} +,{"_id":{"$oid":"55cba2476c522cafdb058556"},"location":{"coordinates":[-73.8573329,40.7200105],"type":"Point"},"name":"Forest Hills Little League"} +,{"_id":{"$oid":"55cba2476c522cafdb058557"},"location":{"coordinates":[-73.979845,40.6428456],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb058558"},"location":{"coordinates":[-73.980987,40.76967339999999],"type":"Point"},"name":"15 Central Park West Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058559"},"location":{"coordinates":[-73.842029,40.840629],"type":"Point"},"name":"Julesruby Lounge Rental Inc"} +,{"_id":{"$oid":"55cba2476c522cafdb05855a"},"location":{"coordinates":[-73.962419,40.680362],"type":"Point"},"name":"Milk River Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05855b"},"location":{"coordinates":[-73.83149519999999,40.7001166],"type":"Point"},"name":"The Classic Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb05855c"},"location":{"coordinates":[-73.9388945,40.8416522],"type":"Point"},"name":"Tasty Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb05855d"},"location":{"coordinates":[-73.9400935,40.6604366],"type":"Point"},"name":"Crown Fried Chicken \u0026 Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05855e"},"location":{"coordinates":[-74.00192,40.7373763],"type":"Point"},"name":"Nourish Kitchen + Table"} +,{"_id":{"$oid":"55cba2476c522cafdb05855f"},"location":{"coordinates":[-73.7124888,40.7470879],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb058560"},"location":{"coordinates":[-74.14945970000001,40.5511886],"type":"Point"},"name":"Flanagan'S Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb058561"},"location":{"coordinates":[-73.99812969999999,40.7152737],"type":"Point"},"name":"Mango Mango"} +,{"_id":{"$oid":"55cba2476c522cafdb058562"},"location":{"coordinates":[-73.992015,40.754742],"type":"Point"},"name":"Tabata 2 Japanese Noodle Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058563"},"location":{"coordinates":[-73.87355769999999,40.6893688],"type":"Point"},"name":"Panyam Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb058564"},"location":{"coordinates":[-73.9853014,40.7630473],"type":"Point"},"name":"Gotham Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb058565"},"location":{"coordinates":[-73.86353799999999,40.7301],"type":"Point"},"name":"Black Sea Fish \u0026 Gr"} +,{"_id":{"$oid":"55cba2476c522cafdb058566"},"location":{"coordinates":[-73.7706208,40.7622312],"type":"Point"},"name":"New Taco Palace"} +,{"_id":{"$oid":"55cba2476c522cafdb058567"},"location":{"coordinates":[-73.98519499999999,40.752342],"type":"Point"},"name":"Parker Quinn"} +,{"_id":{"$oid":"55cba2476c522cafdb058568"},"location":{"coordinates":[-73.909593,40.8751262],"type":"Point"},"name":"Rosarina Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb058569"},"location":{"coordinates":[-73.9099719,40.6682259],"type":"Point"},"name":"Big Apple Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb05856a"},"location":{"coordinates":[-73.95360079999999,40.7825677],"type":"Point"},"name":"Pic Up Stix"} +,{"_id":{"$oid":"55cba2476c522cafdb05856b"},"location":{"coordinates":[-73.96294739999999,40.7115499],"type":"Point"},"name":"Brickhouse Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb05856c"},"location":{"coordinates":[-73.8987262,40.7248709],"type":"Point"},"name":"Anthony And Son Pannini Shoppe"} +,{"_id":{"$oid":"55cba2476c522cafdb05856d"},"location":{"coordinates":[-73.9653177,40.7167261],"type":"Point"},"name":"Grand Ferry"} +,{"_id":{"$oid":"55cba2476c522cafdb05856e"},"location":{"coordinates":[-73.90175300000001,40.745951],"type":"Point"},"name":"Long Spring Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb05856f"},"location":{"coordinates":[-73.9941755,40.7259994],"type":"Point"},"name":"Subculture Arts Underground"} +,{"_id":{"$oid":"55cba2476c522cafdb058570"},"location":{"coordinates":[-73.9151526,40.6992797],"type":"Point"},"name":"La Mesita"} +,{"_id":{"$oid":"55cba2476c522cafdb058571"},"location":{"coordinates":[-73.95538580000002,40.7491902],"type":"Point"},"name":"Anable Basin Sailing"} +,{"_id":{"$oid":"55cba2476c522cafdb058572"},"location":{"coordinates":[-73.9339274,40.7108497],"type":"Point"},"name":"Fitzcaraldo"} +,{"_id":{"$oid":"55cba2476c522cafdb058573"},"location":{"coordinates":[-73.73880009999999,40.6756292],"type":"Point"},"name":"Wah Sing"} +,{"_id":{"$oid":"55cba2476c522cafdb058574"},"location":{"coordinates":[-73.992233,40.718204],"type":"Point"},"name":"Nagasaki Sushi Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058575"},"location":{"coordinates":[-73.9740813,40.6859822],"type":"Point"},"name":"Not Ray'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb058576"},"location":{"coordinates":[-73.94113109999999,40.7989046],"type":"Point"},"name":"99 Cents Mega Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb058577"},"location":{"coordinates":[-73.91626099999999,40.757928],"type":"Point"},"name":"Elixir Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb058578"},"location":{"coordinates":[-73.93531449999999,40.6967421],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb058579"},"location":{"coordinates":[-73.9689554,40.7991184],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb05857a"},"location":{"coordinates":[-73.967544,40.8036242],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb05857b"},"location":{"coordinates":[-74.00487249999999,40.7404501],"type":"Point"},"name":"The Coffee Bean \u0026 Tea Leaf"} +,{"_id":{"$oid":"55cba2476c522cafdb05857c"},"location":{"coordinates":[-74.0071844,40.7299052],"type":"Point"},"name":"Creative Juice"} +,{"_id":{"$oid":"55cba2476c522cafdb05857d"},"location":{"coordinates":[-73.987847,40.73281],"type":"Point"},"name":"Brazen Fox Kitchen And Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05857e"},"location":{"coordinates":[-73.9840354,40.6635585],"type":"Point"},"name":"La Botaneria"} +,{"_id":{"$oid":"55cba2476c522cafdb05857f"},"location":{"coordinates":[-73.9122562,40.7556547],"type":"Point"},"name":"Yummy Taco"} +,{"_id":{"$oid":"55cba2476c522cafdb058580"},"location":{"coordinates":[-73.9824872,40.7658676],"type":"Point"},"name":"Barbasso"} +,{"_id":{"$oid":"55cba2476c522cafdb058581"},"location":{"coordinates":[-73.95698089999999,40.7659528],"type":"Point"},"name":"Chipotle Mexican Grill#1766"} +,{"_id":{"$oid":"55cba2476c522cafdb058582"},"location":{"coordinates":[-73.914075,40.634488],"type":"Point"},"name":"Panko Express"} +,{"_id":{"$oid":"55cba2476c522cafdb058583"},"location":{"coordinates":[-73.9742747,40.7642202],"type":"Point"},"name":"No. 7 Sub"} +,{"_id":{"$oid":"55cba2476c522cafdb058584"},"location":{"coordinates":[-73.96144919999999,40.6249701],"type":"Point"},"name":"Di Fara Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb058585"},"location":{"coordinates":[-74.0091674,40.6356489],"type":"Point"},"name":"Tbaar"} +,{"_id":{"$oid":"55cba2476c522cafdb058586"},"location":{"coordinates":[-73.96373179999999,40.7180391],"type":"Point"},"name":"Odd Fellows Ice Cream Co"} +,{"_id":{"$oid":"55cba2476c522cafdb058587"},"location":{"coordinates":[-73.9898797,40.6724681],"type":"Point"},"name":"Back To John'S Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb058588"},"location":{"coordinates":[-73.904335,40.763827],"type":"Point"},"name":"Medusa"} +,{"_id":{"$oid":"55cba2476c522cafdb058589"},"location":{"coordinates":[-73.889842,40.658306],"type":"Point"},"name":"Checkers"} +,{"_id":{"$oid":"55cba2476c522cafdb05858a"},"location":{"coordinates":[-73.984623,40.662826],"type":"Point"},"name":"Mike Daddy'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05858b"},"location":{"coordinates":[-73.9068467,40.7452251],"type":"Point"},"name":"Donovan'S Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb05858c"},"location":{"coordinates":[-73.9282084,40.7630777],"type":"Point"},"name":"Ice Breaker"} +,{"_id":{"$oid":"55cba2476c522cafdb05858d"},"location":{"coordinates":[-73.71824819999999,40.7439881],"type":"Point"},"name":"A Chiban"} +,{"_id":{"$oid":"55cba2476c522cafdb05858e"},"location":{"coordinates":[-73.8622929,40.883865],"type":"Point"},"name":"Golden Krust"} +,{"_id":{"$oid":"55cba2476c522cafdb05858f"},"location":{"coordinates":[-73.8992707,40.6419569],"type":"Point"},"name":"Hot Bagels"} +,{"_id":{"$oid":"55cba2476c522cafdb058590"},"location":{"coordinates":[-74.0045816,40.6400048],"type":"Point"},"name":"Yun Nan Flavour Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb058591"},"location":{"coordinates":[-74.00233589999999,40.60189390000001],"type":"Point"},"name":"Khan'S Gyro \u0026 Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb058592"},"location":{"coordinates":[-73.8540108,40.8867579],"type":"Point"},"name":"Front Page Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058593"},"location":{"coordinates":[-73.9617001,40.7605242],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb058594"},"location":{"coordinates":[-73.8962538,40.8163654],"type":"Point"},"name":"N Rico Cafe Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058595"},"location":{"coordinates":[-73.9051384,40.8528218],"type":"Point"},"name":"The Navarro Family Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb058596"},"location":{"coordinates":[-73.77138719999999,40.76489249999999],"type":"Point"},"name":"Thai 101"} +,{"_id":{"$oid":"55cba2476c522cafdb058597"},"location":{"coordinates":[-73.99635289999999,40.7373521],"type":"Point"},"name":"Chickpea/Red Mango"} +,{"_id":{"$oid":"55cba2476c522cafdb058598"},"location":{"coordinates":[-73.9493224,40.78081359999999],"type":"Point"},"name":"Dtut"} +,{"_id":{"$oid":"55cba2476c522cafdb058599"},"location":{"coordinates":[-73.95651500000001,40.8034068],"type":"Point"},"name":"Maharaja Palace"} +,{"_id":{"$oid":"55cba2476c522cafdb05859a"},"location":{"coordinates":[-73.9850992,40.7326263],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb05859b"},"location":{"coordinates":[-73.92253099999999,40.753027],"type":"Point"},"name":"La Choza Del Gordo"} +,{"_id":{"$oid":"55cba2476c522cafdb05859c"},"location":{"coordinates":[-73.8320445,40.8466698],"type":"Point"},"name":"15 Flavors"} +,{"_id":{"$oid":"55cba2476c522cafdb05859d"},"location":{"coordinates":[-73.93253299999999,40.6421769],"type":"Point"},"name":"Avenue C And D Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05859e"},"location":{"coordinates":[-73.9225,40.7069152],"type":"Point"},"name":"Ap Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05859f"},"location":{"coordinates":[-73.972707,40.752737],"type":"Point"},"name":"Adana Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0585a0"},"location":{"coordinates":[-92.7320902,41.7461455],"type":"Point"},"name":"Pota Topia"} +,{"_id":{"$oid":"55cba2476c522cafdb0585a1"},"location":{"coordinates":[-73.9705403,40.646715],"type":"Point"},"name":"Wheated"} +,{"_id":{"$oid":"55cba2476c522cafdb0585a2"},"location":{"coordinates":[-73.958418,40.819969],"type":"Point"},"name":"9A Kitchen \u0026 Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb0585a3"},"location":{"coordinates":[-73.8653423,40.7578812],"type":"Point"},"name":"Lung Sing"} +,{"_id":{"$oid":"55cba2476c522cafdb0585a4"},"location":{"coordinates":[-73.9941778,40.7033679],"type":"Point"},"name":"No 7 Sub/Luke'S Lobster"} +,{"_id":{"$oid":"55cba2476c522cafdb0585a5"},"location":{"coordinates":[-73.9291053,40.7447555],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0585a6"},"location":{"coordinates":[-73.96285999999999,40.769097],"type":"Point"},"name":"Brasserie Cognac East"} +,{"_id":{"$oid":"55cba2476c522cafdb0585a7"},"location":{"coordinates":[-73.9505963,40.6708944],"type":"Point"},"name":"Lula Bagel"} +,{"_id":{"$oid":"55cba2476c522cafdb0585a8"},"location":{"coordinates":[-73.98675759999999,40.7504345],"type":"Point"},"name":"Table 71 @ Marriott Cortyard"} +,{"_id":{"$oid":"55cba2476c522cafdb0585a9"},"location":{"coordinates":[-73.98365199999999,40.730314],"type":"Point"},"name":"Jeepney"} +,{"_id":{"$oid":"55cba2476c522cafdb0585aa"},"location":{"coordinates":[-73.91717179999999,40.8673306],"type":"Point"},"name":"Made In Mexico"} +,{"_id":{"$oid":"55cba2476c522cafdb0585ab"},"location":{"coordinates":[-73.928382,40.8068609],"type":"Point"},"name":"Club Miami"} +,{"_id":{"$oid":"55cba2476c522cafdb0585ac"},"location":{"coordinates":[-73.96919849999999,40.6933304],"type":"Point"},"name":"Splitty"} +,{"_id":{"$oid":"55cba2476c522cafdb0585ad"},"location":{"coordinates":[-74.0011002,40.60605169999999],"type":"Point"},"name":"Kasumi"} +,{"_id":{"$oid":"55cba2476c522cafdb0585ae"},"location":{"coordinates":[-73.77250099999999,40.7597909],"type":"Point"},"name":"Bean \u0026 Bean Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0585af"},"location":{"coordinates":[-73.865871,40.831697],"type":"Point"},"name":"Sabrosura 2 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0585b0"},"location":{"coordinates":[-73.942303,40.7952778],"type":"Point"},"name":"Milenio Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0585b1"},"location":{"coordinates":[-74.0130101,40.6785834],"type":"Point"},"name":"Court Street Grocers Hero Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb0585b2"},"location":{"coordinates":[-74.24891199999999,40.515333],"type":"Point"},"name":"South Shore Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0585b3"},"location":{"coordinates":[-74.010448,40.7045175],"type":"Point"},"name":"Open Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0585b4"},"location":{"coordinates":[-73.8288031,40.8695205],"type":"Point"},"name":"Bagels On Bartow"} +,{"_id":{"$oid":"55cba2476c522cafdb0585b5"},"location":{"coordinates":[-73.9947464,40.7246698],"type":"Point"},"name":"Estela"} +,{"_id":{"$oid":"55cba2476c522cafdb0585b6"},"location":{"coordinates":[-73.90697949999999,40.8626543],"type":"Point"},"name":"El V Centenario"} +,{"_id":{"$oid":"55cba2476c522cafdb0585b7"},"location":{"coordinates":[-73.8967085,40.9028026],"type":"Point"},"name":"Caribbean Grill Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0585b8"},"location":{"coordinates":[-73.957461,40.77053],"type":"Point"},"name":"Creative Juice"} +,{"_id":{"$oid":"55cba2476c522cafdb0585b9"},"location":{"coordinates":[-73.9150746,40.8544073],"type":"Point"},"name":"Good Taste"} +,{"_id":{"$oid":"55cba2476c522cafdb0585ba"},"location":{"coordinates":[-73.955958,40.771541],"type":"Point"},"name":"The Meatball Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb0585bb"},"location":{"coordinates":[-73.9177729,40.7604879],"type":"Point"},"name":"Mi Candela"} +,{"_id":{"$oid":"55cba2476c522cafdb0585bc"},"location":{"coordinates":[-73.9776097,40.74973620000001],"type":"Point"},"name":"Pip'S Place"} +,{"_id":{"$oid":"55cba2476c522cafdb0585bd"},"location":{"coordinates":[-73.82477399999999,40.829533],"type":"Point"},"name":"Vito'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb0585be"},"location":{"coordinates":[-73.94909299999999,40.777772],"type":"Point"},"name":"Bareburger"} +,{"_id":{"$oid":"55cba2476c522cafdb0585bf"},"location":{"coordinates":[-73.9884016,40.7437218],"type":"Point"},"name":"Belgium Beer Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0585c0"},"location":{"coordinates":[-73.954014,40.728949],"type":"Point"},"name":"Fornino"} +,{"_id":{"$oid":"55cba2476c522cafdb0585c1"},"location":{"coordinates":[-74.0242622,40.6260826],"type":"Point"},"name":"Hing Wong"} +,{"_id":{"$oid":"55cba2476c522cafdb0585c2"},"location":{"coordinates":[-73.9829161,40.5728185],"type":"Point"},"name":"Carousell Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0585c3"},"location":{"coordinates":[-73.9580313,40.5785181],"type":"Point"},"name":"Luigi'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0585c4"},"location":{"coordinates":[-74.003612,40.7326849],"type":"Point"},"name":"Wink"} +,{"_id":{"$oid":"55cba2476c522cafdb0585c5"},"location":{"coordinates":[-73.82096899999999,40.680388],"type":"Point"},"name":"Dragon I Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0585c6"},"location":{"coordinates":[-73.9523619,40.769309],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0585c7"},"location":{"coordinates":[-73.9479241,40.5837477],"type":"Point"},"name":"Signature Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0585c8"},"location":{"coordinates":[-73.85591099999999,40.8560569],"type":"Point"},"name":"Ana'S Bakery \u0026 Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0585c9"},"location":{"coordinates":[-73.886871,40.854888],"type":"Point"},"name":"Tra Di Noi"} +,{"_id":{"$oid":"55cba2476c522cafdb0585ca"},"location":{"coordinates":[-73.9339198,40.7984572],"type":"Point"},"name":"Crown Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb0585cb"},"location":{"coordinates":[-73.9891107,40.7434614],"type":"Point"},"name":"Broadway Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0585cc"},"location":{"coordinates":[-92.72759980000001,41.7461417],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0585cd"},"location":{"coordinates":[-74.0077915,40.6537283],"type":"Point"},"name":"Masha Li/Tian Shang Ren Jian Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0585ce"},"location":{"coordinates":[-73.831755,40.766412],"type":"Point"},"name":"Joyful Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0585cf"},"location":{"coordinates":[-73.8160242,40.69306900000001],"type":"Point"},"name":"Between The Bun"} +,{"_id":{"$oid":"55cba2476c522cafdb0585d0"},"location":{"coordinates":[-73.919749,40.807464],"type":"Point"},"name":"El Viejo Gran Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0585d1"},"location":{"coordinates":[-74.00347839999999,40.6512678],"type":"Point"},"name":"Jfk Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb0585d2"},"location":{"coordinates":[-73.7372942,40.7180973],"type":"Point"},"name":"Las Delicias"} +,{"_id":{"$oid":"55cba2476c522cafdb0585d3"},"location":{"coordinates":[-73.8961546,40.7123441],"type":"Point"},"name":"Li Wan Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0585d4"},"location":{"coordinates":[-73.911175,40.848664],"type":"Point"},"name":"El Nuevo Valle Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0585d5"},"location":{"coordinates":[-73.983441,40.742541],"type":"Point"},"name":"Abeca Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb0585d6"},"location":{"coordinates":[-73.9485165,40.80808],"type":"Point"},"name":"Healthylife 172"} +,{"_id":{"$oid":"55cba2476c522cafdb0585d7"},"location":{"coordinates":[-73.8556759,40.8354913],"type":"Point"},"name":"Crown Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb0585d8"},"location":{"coordinates":[-73.930981,40.5861965],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0585d9"},"location":{"coordinates":[-73.846569,40.870953],"type":"Point"},"name":"Ultimate Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0585da"},"location":{"coordinates":[-73.986654,40.757498],"type":"Point"},"name":"Ben \u0026 Jerry'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0585db"},"location":{"coordinates":[-73.9949651,40.76417],"type":"Point"},"name":"Comfort Inn"} +,{"_id":{"$oid":"55cba2476c522cafdb0585dc"},"location":{"coordinates":[-73.99448869999999,40.76394860000001],"type":"Point"},"name":"Holiday Inn Express"} +,{"_id":{"$oid":"55cba2476c522cafdb0585dd"},"location":{"coordinates":[-73.9934628,40.746326],"type":"Point"},"name":"99 Cents Best \u0026 Fresh Pizza Inc."} +,{"_id":{"$oid":"55cba2476c522cafdb0585de"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0585df"},"location":{"coordinates":[-73.8200554,40.7021956],"type":"Point"},"name":"El Bloque Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb0585e0"},"location":{"coordinates":[-73.99082229999999,40.61140380000001],"type":"Point"},"name":"Panda Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0585e1"},"location":{"coordinates":[-73.9889817,40.755228],"type":"Point"},"name":"Cafe Hestia"} +,{"_id":{"$oid":"55cba2476c522cafdb0585e2"},"location":{"coordinates":[-73.95140339999999,40.5993746],"type":"Point"},"name":"Funkiberry"} +,{"_id":{"$oid":"55cba2476c522cafdb0585e3"},"location":{"coordinates":[-74.000466,40.727688],"type":"Point"},"name":"Zz Clam Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0585e4"},"location":{"coordinates":[-73.9699399,40.75177499999999],"type":"Point"},"name":"Pennylane Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0585e5"},"location":{"coordinates":[-73.9613253,40.6826446],"type":"Point"},"name":"Sip"} +,{"_id":{"$oid":"55cba2476c522cafdb0585e6"},"location":{"coordinates":[-73.8849463,40.6608142],"type":"Point"},"name":"Lee Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0585e7"},"location":{"coordinates":[-73.963167,40.641944],"type":"Point"},"name":"Crown Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0585e8"},"location":{"coordinates":[-73.93834199999999,40.797557],"type":"Point"},"name":"El Paso Cerveceria"} +,{"_id":{"$oid":"55cba2476c522cafdb0585e9"},"location":{"coordinates":[-73.815624,40.5861159],"type":"Point"},"name":"Uma'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0585ea"},"location":{"coordinates":[-73.97659,40.7474248],"type":"Point"},"name":"Hendriks"} +,{"_id":{"$oid":"55cba2476c522cafdb0585eb"},"location":{"coordinates":[-73.8789566,40.7480319],"type":"Point"},"name":"Taqueria Chila"} +,{"_id":{"$oid":"55cba2476c522cafdb0585ec"},"location":{"coordinates":[-73.9360669,40.7960442],"type":"Point"},"name":"La Casa Saludable"} +,{"_id":{"$oid":"55cba2476c522cafdb0585ed"},"location":{"coordinates":[-73.96201760000001,40.7711236],"type":"Point"},"name":"Casimir \u0026 Co"} +,{"_id":{"$oid":"55cba2476c522cafdb0585ee"},"location":{"coordinates":[-73.98602799999999,40.7292],"type":"Point"},"name":"Hi-Collar"} +,{"_id":{"$oid":"55cba2476c522cafdb0585ef"},"location":{"coordinates":[-73.9999006,40.7350132],"type":"Point"},"name":"Le Baratin"} +,{"_id":{"$oid":"55cba2476c522cafdb0585f0"},"location":{"coordinates":[-73.90409580000001,40.7005496],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0585f1"},"location":{"coordinates":[-73.844168,40.720443],"type":"Point"},"name":"Buffalo Wild Wings"} +,{"_id":{"$oid":"55cba2476c522cafdb0585f2"},"location":{"coordinates":[-73.7913511,40.71114619999999],"type":"Point"},"name":"Original Hazi Biryani"} +,{"_id":{"$oid":"55cba2476c522cafdb0585f3"},"location":{"coordinates":[-73.79137,40.6791873],"type":"Point"},"name":"Happy Wok"} +,{"_id":{"$oid":"55cba2476c522cafdb0585f4"},"location":{"coordinates":[-73.9968465,40.71271],"type":"Point"},"name":"Fuzhou Anping Fishball"} +,{"_id":{"$oid":"55cba2476c522cafdb0585f5"},"location":{"coordinates":[-73.9891201,40.7199572],"type":"Point"},"name":"Mi Casa Es Su Casa Restaurant Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb0585f6"},"location":{"coordinates":[-73.9095851,40.6169283],"type":"Point"},"name":"Sushiyama Asian Fusion"} +,{"_id":{"$oid":"55cba2476c522cafdb0585f7"},"location":{"coordinates":[-74.0096063,40.714478],"type":"Point"},"name":"My Belly'S Playlist"} +,{"_id":{"$oid":"55cba2476c522cafdb0585f8"},"location":{"coordinates":[-74.00930249999999,40.7089185],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0585f9"},"location":{"coordinates":[-74.0065321,40.7306191],"type":"Point"},"name":"Piora"} +,{"_id":{"$oid":"55cba2476c522cafdb0585fa"},"location":{"coordinates":[-73.95431,40.599305],"type":"Point"},"name":"Yum Yum Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0585fb"},"location":{"coordinates":[-73.9841368,40.7278482],"type":"Point"},"name":"Cagen"} +,{"_id":{"$oid":"55cba2476c522cafdb0585fc"},"location":{"coordinates":[-74.028941,40.62801990000001],"type":"Point"},"name":"Dragon China Restaurant On Bayridge"} +,{"_id":{"$oid":"55cba2476c522cafdb0585fd"},"location":{"coordinates":[-73.9335866,40.7050622],"type":"Point"},"name":"Blanca/Severed Heads"} +,{"_id":{"$oid":"55cba2476c522cafdb0585fe"},"location":{"coordinates":[-73.997321,40.714884],"type":"Point"},"name":"Pie Pie Q Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0585ff"},"location":{"coordinates":[-73.9661308,40.6341937],"type":"Point"},"name":"Milk \u0026 Honey Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058600"},"location":{"coordinates":[-74.162466,40.60044200000001],"type":"Point"},"name":"Chock Full O'Nuts Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058601"},"location":{"coordinates":[-73.8917323,40.8460178],"type":"Point"},"name":"Kennedy Fried Chicken \u0026 Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb058602"},"location":{"coordinates":[-73.98964409999999,40.7582465],"type":"Point"},"name":"Fasst Cafe (Second Stage Theatre)"} +,{"_id":{"$oid":"55cba2476c522cafdb058603"},"location":{"coordinates":[-73.9906967,40.7657361],"type":"Point"},"name":"Crispin'S Hell'S Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb058604"},"location":{"coordinates":[-73.8026096,40.761039],"type":"Point"},"name":"Soolmokgo Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058605"},"location":{"coordinates":[-73.98159199999999,40.7634067],"type":"Point"},"name":"Stagecoach Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb058606"},"location":{"coordinates":[-73.953733,40.730464],"type":"Point"},"name":"Chinese Musician Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058607"},"location":{"coordinates":[-73.9755155,40.6239272],"type":"Point"},"name":"Best Double Dragon Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058608"},"location":{"coordinates":[-73.97058899999999,40.763807],"type":"Point"},"name":"Le Bilboquet"} +,{"_id":{"$oid":"55cba2476c522cafdb058609"},"location":{"coordinates":[-73.9859553,40.7549138],"type":"Point"},"name":"Ootoya"} +,{"_id":{"$oid":"55cba2476c522cafdb05860a"},"location":{"coordinates":[-73.931175,40.664442],"type":"Point"},"name":"Kennedy Fried Chicken \u0026 Biscuits"} +,{"_id":{"$oid":"55cba2476c522cafdb05860b"},"location":{"coordinates":[-73.959551,40.773653],"type":"Point"},"name":"Pick-A-Bagel1"} +,{"_id":{"$oid":"55cba2476c522cafdb05860c"},"location":{"coordinates":[-73.9493609,40.8225191],"type":"Point"},"name":"The Grange Bar \u0026 Eatery"} +,{"_id":{"$oid":"55cba2476c522cafdb05860d"},"location":{"coordinates":[-74.0032653,40.7322868],"type":"Point"},"name":"Dolce Sweetness"} +,{"_id":{"$oid":"55cba2476c522cafdb05860e"},"location":{"coordinates":[-73.9245971,40.7003363],"type":"Point"},"name":"Shen Zhou Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05860f"},"location":{"coordinates":[-73.8971005,40.7546159],"type":"Point"},"name":"King Wah"} +,{"_id":{"$oid":"55cba2476c522cafdb058610"},"location":{"coordinates":[-73.9892498,40.7601055],"type":"Point"},"name":"Brazil Brazil Restuarant"} +,{"_id":{"$oid":"55cba2476c522cafdb058611"},"location":{"coordinates":[-74.0320258,40.6216841],"type":"Point"},"name":"Nonno'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb058612"},"location":{"coordinates":[-73.924111,40.688665],"type":"Point"},"name":"Amby'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058613"},"location":{"coordinates":[-73.9823512,40.7363684],"type":"Point"},"name":"Yo Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb058614"},"location":{"coordinates":[-74.08734,40.6386012],"type":"Point"},"name":"Wang Jiang Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058615"},"location":{"coordinates":[-74.163557,40.6083314],"type":"Point"},"name":"Orange Leaf Yogurt"} +,{"_id":{"$oid":"55cba2476c522cafdb058616"},"location":{"coordinates":[-73.9304942,40.7042075],"type":"Point"},"name":"King Noodle"} +,{"_id":{"$oid":"55cba2476c522cafdb058617"},"location":{"coordinates":[-73.9776461,40.7458025],"type":"Point"},"name":"Fatburger"} +,{"_id":{"$oid":"55cba2476c522cafdb058618"},"location":{"coordinates":[-73.9405366,40.6996699],"type":"Point"},"name":"A Plus Express/Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058619"},"location":{"coordinates":[-73.9206001,40.7666972],"type":"Point"},"name":"Fresko"} +,{"_id":{"$oid":"55cba2476c522cafdb05861a"},"location":{"coordinates":[-73.85112699999999,40.834028],"type":"Point"},"name":"Checkers"} +,{"_id":{"$oid":"55cba2476c522cafdb05861b"},"location":{"coordinates":[-73.97093799999999,40.793785],"type":"Point"},"name":"Gotham Burger Co."} +,{"_id":{"$oid":"55cba2476c522cafdb05861c"},"location":{"coordinates":[-73.9983227,40.6203023],"type":"Point"},"name":"Taverna Mediterranean Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05861d"},"location":{"coordinates":[-73.93486709999999,40.8450879],"type":"Point"},"name":"The Heights Bar \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05861e"},"location":{"coordinates":[-73.94779199999999,40.808428],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb05861f"},"location":{"coordinates":[-73.9039521,40.8209665],"type":"Point"},"name":"New Ling House Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058620"},"location":{"coordinates":[-73.82813,40.76033],"type":"Point"},"name":"Two Peck"} +,{"_id":{"$oid":"55cba2476c522cafdb058621"},"location":{"coordinates":[-73.9565102,40.6672384],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb058622"},"location":{"coordinates":[-73.8222341,40.72699009999999],"type":"Point"},"name":"Sushi Fussion Express Inc."} +,{"_id":{"$oid":"55cba2476c522cafdb058623"},"location":{"coordinates":[-73.8902543,40.6729326],"type":"Point"},"name":"Flor Del Canario Ii Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058624"},"location":{"coordinates":[-73.98978509999999,40.7401597],"type":"Point"},"name":"Maison Kayser"} +,{"_id":{"$oid":"55cba2476c522cafdb058625"},"location":{"coordinates":[-73.99427419999999,40.7231174],"type":"Point"},"name":"Ab Biagi"} +,{"_id":{"$oid":"55cba2476c522cafdb058626"},"location":{"coordinates":[-73.98029199999999,40.575847],"type":"Point"},"name":"Applebee'S Neighborhood"} +,{"_id":{"$oid":"55cba2476c522cafdb058627"},"location":{"coordinates":[-74.00341030000001,40.6412015],"type":"Point"},"name":"Xing Xing Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058628"},"location":{"coordinates":[-73.98127699999999,40.7408069],"type":"Point"},"name":"Great Sichuan 363"} +,{"_id":{"$oid":"55cba2476c522cafdb058629"},"location":{"coordinates":[-73.8429762,40.8896219],"type":"Point"},"name":"China King"} +,{"_id":{"$oid":"55cba2476c522cafdb05862a"},"location":{"coordinates":[-73.8771268,40.82633440000001],"type":"Point"},"name":"D'Kora Restaurant \u0026 Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb05862b"},"location":{"coordinates":[-74.00974819999999,40.7237182],"type":"Point"},"name":"The Greek"} +,{"_id":{"$oid":"55cba2476c522cafdb05862c"},"location":{"coordinates":[-73.7622303,40.6908359],"type":"Point"},"name":"Popeyes"} +,{"_id":{"$oid":"55cba2476c522cafdb05862d"},"location":{"coordinates":[-73.81071949999999,40.5876342],"type":"Point"},"name":"Popeyes"} +,{"_id":{"$oid":"55cba2476c522cafdb05862e"},"location":{"coordinates":[-73.91093169999999,40.6780014],"type":"Point"},"name":"Crown Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb05862f"},"location":{"coordinates":[-73.9800933,40.676539],"type":"Point"},"name":"Aji Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb058630"},"location":{"coordinates":[-73.8176115,40.8203338],"type":"Point"},"name":"Throg'S Neck Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb058631"},"location":{"coordinates":[-73.9021396,40.769797],"type":"Point"},"name":"Xing'S Chef Chinese Food"} +,{"_id":{"$oid":"55cba2476c522cafdb058632"},"location":{"coordinates":[-73.98719,40.719904],"type":"Point"},"name":"Schapiro'S"} +,{"_id":{"$oid":"55cba2476c522cafdb058633"},"location":{"coordinates":[-73.956341,40.803648],"type":"Point"},"name":"Harlem Yo!"} +,{"_id":{"$oid":"55cba2476c522cafdb058634"},"location":{"coordinates":[-73.95738709999999,40.6731061],"type":"Point"},"name":"Cent'Anni"} +,{"_id":{"$oid":"55cba2476c522cafdb058635"},"location":{"coordinates":[-73.880141,40.741555],"type":"Point"},"name":"88 Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058636"},"location":{"coordinates":[-73.9019598,40.8481145],"type":"Point"},"name":"Omg 1 Dollar Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb058637"},"location":{"coordinates":[-73.9042288,40.77050819999999],"type":"Point"},"name":"Porto Bello Pizzeria \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058638"},"location":{"coordinates":[-73.9365229,40.7015529],"type":"Point"},"name":"El Nuevo Yauco Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058639"},"location":{"coordinates":[-73.936927,40.754976],"type":"Point"},"name":"Crescent Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb05863a"},"location":{"coordinates":[-73.969291,40.756594],"type":"Point"},"name":"Aki Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb05863b"},"location":{"coordinates":[-73.892831,40.746875],"type":"Point"},"name":"Little Tibet"} +,{"_id":{"$oid":"55cba2476c522cafdb05863c"},"location":{"coordinates":[-74.004722,40.716691],"type":"Point"},"name":"Mon Cher Market"} +,{"_id":{"$oid":"55cba2476c522cafdb05863d"},"location":{"coordinates":[-73.9791676,40.762358],"type":"Point"},"name":"Minus 5 Ice Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb05863e"},"location":{"coordinates":[-73.94661810000001,40.8268929],"type":"Point"},"name":"Amsterdam Social"} +,{"_id":{"$oid":"55cba2476c522cafdb05863f"},"location":{"coordinates":[-73.9276963,40.865952],"type":"Point"},"name":"Maja'S Tapas Restaurant Bar Inc."} +,{"_id":{"$oid":"55cba2476c522cafdb058640"},"location":{"coordinates":[-73.78824999999999,40.707265],"type":"Point"},"name":"Jm Coffee Shop \u0026 Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb058641"},"location":{"coordinates":[-73.9638896,40.6796102],"type":"Point"},"name":"Vegetarian Palate"} +,{"_id":{"$oid":"55cba2476c522cafdb058642"},"location":{"coordinates":[-73.808847,40.764351],"type":"Point"},"name":"Byung Chun Soon Dae"} +,{"_id":{"$oid":"55cba2476c522cafdb058643"},"location":{"coordinates":[-73.978066,40.745286],"type":"Point"},"name":"Bar Rua"} +,{"_id":{"$oid":"55cba2476c522cafdb058644"},"location":{"coordinates":[-73.94965189999999,40.7139229],"type":"Point"},"name":"Zona Rosa"} +,{"_id":{"$oid":"55cba2476c522cafdb058645"},"location":{"coordinates":[-73.94994009999999,40.681221],"type":"Point"},"name":"Pattie Hut"} +,{"_id":{"$oid":"55cba2476c522cafdb058646"},"location":{"coordinates":[-73.8850947,40.87383579999999],"type":"Point"},"name":"Kennedy Grill \u0026 Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb058647"},"location":{"coordinates":[-73.96334999999999,40.7105502],"type":"Point"},"name":"Motorino Broadway"} +,{"_id":{"$oid":"55cba2476c522cafdb058648"},"location":{"coordinates":[-73.7560779,40.7137897],"type":"Point"},"name":"Infinity Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb058649"},"location":{"coordinates":[-73.95657899999999,40.695165],"type":"Point"},"name":"Moishe'S Place"} +,{"_id":{"$oid":"55cba2476c522cafdb05864a"},"location":{"coordinates":[-73.9731968,40.6860496],"type":"Point"},"name":"Kinjo"} +,{"_id":{"$oid":"55cba2476c522cafdb05864b"},"location":{"coordinates":[-73.9378967,40.823448],"type":"Point"},"name":"Tia Melli'S Latin Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb05864c"},"location":{"coordinates":[-73.9587627,40.6692834],"type":"Point"},"name":"Italian Passion Cafe \u0026 Pizza Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05864d"},"location":{"coordinates":[-73.881107,40.756273],"type":"Point"},"name":"Gloria"} +,{"_id":{"$oid":"55cba2476c522cafdb05864e"},"location":{"coordinates":[-73.881166,40.756141],"type":"Point"},"name":"La Gloria"} +,{"_id":{"$oid":"55cba2476c522cafdb05864f"},"location":{"coordinates":[-73.98489789999999,40.7738187],"type":"Point"},"name":"Wichcraft (In Lincoln Center)"} +,{"_id":{"$oid":"55cba2476c522cafdb058650"},"location":{"coordinates":[-74.0070321,40.7156607],"type":"Point"},"name":"Sheezan Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058651"},"location":{"coordinates":[-73.9549186,40.6944455],"type":"Point"},"name":"Beast Of Bourbon"} +,{"_id":{"$oid":"55cba2476c522cafdb058652"},"location":{"coordinates":[-74.0264972,40.63589],"type":"Point"},"name":"Aj'S Homemade Gourmet Italian Ice \u0026 Ice Cream"} +,{"_id":{"$oid":"55cba2476c522cafdb058653"},"location":{"coordinates":[-74.00666129999999,40.7147811],"type":"Point"},"name":"Hamachi Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb058654"},"location":{"coordinates":[-73.9350649,40.8499588],"type":"Point"},"name":"Scoop Caffe"} +,{"_id":{"$oid":"55cba2476c522cafdb058655"},"location":{"coordinates":[-73.98268259999999,40.7234473],"type":"Point"},"name":"B4 Nyc"} +,{"_id":{"$oid":"55cba2476c522cafdb058656"},"location":{"coordinates":[-73.85904169999999,40.7507633],"type":"Point"},"name":"Salud Es Vida (Herbal Life)"} +,{"_id":{"$oid":"55cba2476c522cafdb058657"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"Panda Express"} +,{"_id":{"$oid":"55cba2476c522cafdb058658"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"Tigin Irish Pub,Peets Coffee\u0026Tea,Panopolis Bakery\u0026Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058659"},"location":{"coordinates":[-73.9237742,40.7400961],"type":"Point"},"name":"Don Pollo"} +,{"_id":{"$oid":"55cba2476c522cafdb05865a"},"location":{"coordinates":[-73.90986029999999,40.8542995],"type":"Point"},"name":"Xing Wang No.1"} +,{"_id":{"$oid":"55cba2476c522cafdb05865b"},"location":{"coordinates":[-73.97711249999999,40.7880469],"type":"Point"},"name":"Juice Generation"} +,{"_id":{"$oid":"55cba2476c522cafdb05865c"},"location":{"coordinates":[-73.9744549,40.7836586],"type":"Point"},"name":"Milling Room"} +,{"_id":{"$oid":"55cba2476c522cafdb05865d"},"location":{"coordinates":[-73.9886406,40.7203735],"type":"Point"},"name":"Mimi And Coco Ny"} +,{"_id":{"$oid":"55cba2476c522cafdb05865e"},"location":{"coordinates":[-73.8677452,40.8583795],"type":"Point"},"name":"No 8 Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05865f"},"location":{"coordinates":[-73.9939028,40.7240304],"type":"Point"},"name":"Fonda Nolita"} +,{"_id":{"$oid":"55cba2476c522cafdb058660"},"location":{"coordinates":[-73.982908,40.7531431],"type":"Point"},"name":"Bryant Park Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb058661"},"location":{"coordinates":[-73.98823159999999,40.7322012],"type":"Point"},"name":"Han Dynasty"} +,{"_id":{"$oid":"55cba2476c522cafdb058662"},"location":{"coordinates":[-73.8904144,40.8584253],"type":"Point"},"name":"Boricua Flavor"} +,{"_id":{"$oid":"55cba2476c522cafdb058663"},"location":{"coordinates":[-73.84039659999999,40.6597391],"type":"Point"},"name":"Sakura Iii"} +,{"_id":{"$oid":"55cba2476c522cafdb058664"},"location":{"coordinates":[-73.9213132,40.76309699999999],"type":"Point"},"name":"Enthaice Thai Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb058665"},"location":{"coordinates":[-73.9246641,40.7557546],"type":"Point"},"name":"S Prime"} +,{"_id":{"$oid":"55cba2476c522cafdb058666"},"location":{"coordinates":[-73.93407479999999,40.6771916],"type":"Point"},"name":"Golden Krust Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058667"},"location":{"coordinates":[-73.8458543,40.783613],"type":"Point"},"name":"Pikaro Pan Colombian Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058668"},"location":{"coordinates":[-73.926617,40.8605209],"type":"Point"},"name":"Nagle Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb058669"},"location":{"coordinates":[-73.94456579999999,40.5999361],"type":"Point"},"name":"Empire Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05866a"},"location":{"coordinates":[-73.942261,40.83842],"type":"Point"},"name":"Wahi Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb05866b"},"location":{"coordinates":[-73.985749,40.6662419],"type":"Point"},"name":"Mariella"} +,{"_id":{"$oid":"55cba2476c522cafdb05866c"},"location":{"coordinates":[-73.98971019999999,40.7331655],"type":"Point"},"name":"Pie Face"} +,{"_id":{"$oid":"55cba2476c522cafdb05866d"},"location":{"coordinates":[-73.83273419999999,40.7608525],"type":"Point"},"name":"Y \u0026 B Entertainment Manor"} +,{"_id":{"$oid":"55cba2476c522cafdb05866e"},"location":{"coordinates":[-73.975807,40.7631166],"type":"Point"},"name":"The Prime Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb05866f"},"location":{"coordinates":[-73.9882342,40.7597355],"type":"Point"},"name":"Pie Face"} +,{"_id":{"$oid":"55cba2476c522cafdb058670"},"location":{"coordinates":[-73.9868297,40.7532798],"type":"Point"},"name":"Lorelli 'S"} +,{"_id":{"$oid":"55cba2476c522cafdb058671"},"location":{"coordinates":[-73.92241109999999,40.7074033],"type":"Point"},"name":"The Rookery"} +,{"_id":{"$oid":"55cba2476c522cafdb058672"},"location":{"coordinates":[-74.00279789999999,40.5999018],"type":"Point"},"name":"Casa Edesia"} +,{"_id":{"$oid":"55cba2476c522cafdb058673"},"location":{"coordinates":[-73.91988839999999,40.815112],"type":"Point"},"name":"Js Perry'S Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb058674"},"location":{"coordinates":[-73.958045,40.6439226],"type":"Point"},"name":"Asif Super Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb058675"},"location":{"coordinates":[-73.9592088,40.7175541],"type":"Point"},"name":"Caprices By Sophie"} +,{"_id":{"$oid":"55cba2476c522cafdb058676"},"location":{"coordinates":[-73.98579149999999,40.7403701],"type":"Point"},"name":"Pret A Manger"} +,{"_id":{"$oid":"55cba2476c522cafdb058677"},"location":{"coordinates":[-73.98429639999999,40.7601916],"type":"Point"},"name":"Up Town Swirl"} +,{"_id":{"$oid":"55cba2476c522cafdb058678"},"location":{"coordinates":[-74.0051979,40.715956],"type":"Point"},"name":"Pret A Manger"} +,{"_id":{"$oid":"55cba2476c522cafdb058679"},"location":{"coordinates":[-73.771256,40.7647144],"type":"Point"},"name":"Bell Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb05867a"},"location":{"coordinates":[-73.9863039,40.7500592],"type":"Point"},"name":"Mew"} +,{"_id":{"$oid":"55cba2476c522cafdb05867b"},"location":{"coordinates":[-73.96813399999999,40.763276],"type":"Point"},"name":"Fresh \u0026 Co."} +,{"_id":{"$oid":"55cba2476c522cafdb05867c"},"location":{"coordinates":[-73.9509688,40.8108362],"type":"Point"},"name":"Joe'S Crab Shack"} +,{"_id":{"$oid":"55cba2476c522cafdb05867d"},"location":{"coordinates":[-73.9490299,40.634421],"type":"Point"},"name":"New Golden Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05867e"},"location":{"coordinates":[-73.92212909999999,40.8648416],"type":"Point"},"name":"Kolmaro"} +,{"_id":{"$oid":"55cba2476c522cafdb05867f"},"location":{"coordinates":[-73.9896843,40.7565374],"type":"Point"},"name":"Off The Wall Frozen Yogurt"} +,{"_id":{"$oid":"55cba2476c522cafdb058680"},"location":{"coordinates":[-73.9196654,40.8652896],"type":"Point"},"name":"D'Lili Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb058681"},"location":{"coordinates":[-73.829437,40.757178],"type":"Point"},"name":"Super Snacks"} +,{"_id":{"$oid":"55cba2476c522cafdb058682"},"location":{"coordinates":[-73.832855,40.678618],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb058683"},"location":{"coordinates":[-73.8739659,40.7769271],"type":"Point"},"name":"Biergarten"} +,{"_id":{"$oid":"55cba2476c522cafdb058684"},"location":{"coordinates":[-74.00318109999999,40.7245999],"type":"Point"},"name":"Hirohisa"} +,{"_id":{"$oid":"55cba2476c522cafdb058685"},"location":{"coordinates":[-73.95133779999999,40.7243395],"type":"Point"},"name":"El Born"} +,{"_id":{"$oid":"55cba2476c522cafdb058686"},"location":{"coordinates":[-73.99648119999999,40.6906068],"type":"Point"},"name":"The Long Island Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb058687"},"location":{"coordinates":[-73.97422,40.747616],"type":"Point"},"name":"Mayhem \u0026 Stout"} +,{"_id":{"$oid":"55cba2476c522cafdb058688"},"location":{"coordinates":[-73.9152399,40.6619106],"type":"Point"},"name":"Hardee"} +,{"_id":{"$oid":"55cba2476c522cafdb058689"},"location":{"coordinates":[-74.1374518,40.626056],"type":"Point"},"name":"Hibachi Grill \u0026 Supreme Buffet"} +,{"_id":{"$oid":"55cba2476c522cafdb05868a"},"location":{"coordinates":[-73.8306857,40.7607266],"type":"Point"},"name":"Ah2 Ice Tea"} +,{"_id":{"$oid":"55cba2476c522cafdb05868b"},"location":{"coordinates":[-73.987135,40.7620878],"type":"Point"},"name":"Nomura Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05868c"},"location":{"coordinates":[-73.987135,40.7620878],"type":"Point"},"name":"Nomura Cafeteria( 25 Th Floor)"} +,{"_id":{"$oid":"55cba2476c522cafdb05868d"},"location":{"coordinates":[-73.9325551,40.6836595],"type":"Point"},"name":"Georges-Andre Vintage Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05868e"},"location":{"coordinates":[-73.9705784,40.7554676],"type":"Point"},"name":"Bluestone Lane Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb05868f"},"location":{"coordinates":[-73.987135,40.7620878],"type":"Point"},"name":"Noumura Cafe ( 5Th Floor Noumura Cafe)"} +,{"_id":{"$oid":"55cba2476c522cafdb058690"},"location":{"coordinates":[-73.919461,40.704261],"type":"Point"},"name":"Sazon'S Nunez"} +,{"_id":{"$oid":"55cba2476c522cafdb058691"},"location":{"coordinates":[-73.9853009,40.6885011],"type":"Point"},"name":"Renaissance Java Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058692"},"location":{"coordinates":[-74.0033821,40.6412279],"type":"Point"},"name":"Hong Bao Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058693"},"location":{"coordinates":[-73.9632701,40.5814973],"type":"Point"},"name":"Tone Authentic Georgian Bakery \u0026 Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb058694"},"location":{"coordinates":[-73.8484462,40.8208964],"type":"Point"},"name":"Lechonera El Sazon Criollo"} +,{"_id":{"$oid":"55cba2476c522cafdb058695"},"location":{"coordinates":[-73.94449519999999,40.61569069999999],"type":"Point"},"name":"Tea For Two Lite"} +,{"_id":{"$oid":"55cba2476c522cafdb058696"},"location":{"coordinates":[-74.0104891,40.6295922],"type":"Point"},"name":"Tea Flower Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb058697"},"location":{"coordinates":[-73.9555422,40.70789],"type":"Point"},"name":"Taco Service En Williamsburg"} +,{"_id":{"$oid":"55cba2476c522cafdb058698"},"location":{"coordinates":[-74.001086,40.728893],"type":"Point"},"name":"Susanna"} +,{"_id":{"$oid":"55cba2476c522cafdb058699"},"location":{"coordinates":[-73.814965,40.586383],"type":"Point"},"name":"Sayras Wine Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05869a"},"location":{"coordinates":[-73.9979458,40.71562979999999],"type":"Point"},"name":"Mei Lai Wah Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb05869b"},"location":{"coordinates":[-73.991946,40.744524],"type":"Point"},"name":"Olympia Star Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb05869c"},"location":{"coordinates":[-73.9871363,40.72977849999999],"type":"Point"},"name":"Third Rail Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb05869d"},"location":{"coordinates":[-73.96184149999999,40.7116734],"type":"Point"},"name":"Summers"} +,{"_id":{"$oid":"55cba2476c522cafdb05869e"},"location":{"coordinates":[-73.87823639999999,40.7565331],"type":"Point"},"name":"Ru Yi Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05869f"},"location":{"coordinates":[-73.99074399999999,40.74426],"type":"Point"},"name":"Flatiron Hall"} +,{"_id":{"$oid":"55cba2476c522cafdb0586a0"},"location":{"coordinates":[-73.95283239999999,40.7675668],"type":"Point"},"name":"Tanoshi Bento"} +,{"_id":{"$oid":"55cba2476c522cafdb0586a1"},"location":{"coordinates":[-74.1660553,40.5823983],"type":"Point"},"name":"Lil' Doughs Of Heaven"} +,{"_id":{"$oid":"55cba2476c522cafdb0586a2"},"location":{"coordinates":[-73.95684,40.642157],"type":"Point"},"name":"El Rancho Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0586a3"},"location":{"coordinates":[-73.9923187,40.7580242],"type":"Point"},"name":"99 Cent Fresh Pizza Villa Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0586a4"},"location":{"coordinates":[-73.9090313,40.7609175],"type":"Point"},"name":"Prik Thai Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0586a5"},"location":{"coordinates":[-73.906943,40.700379],"type":"Point"},"name":"Happy Fresh Taco"} +,{"_id":{"$oid":"55cba2476c522cafdb0586a6"},"location":{"coordinates":[-73.9088361,40.70169],"type":"Point"},"name":"El Fogon Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0586a7"},"location":{"coordinates":[-73.9725491,40.6775205],"type":"Point"},"name":"Ideya Brooklyn"} +,{"_id":{"$oid":"55cba2476c522cafdb0586a8"},"location":{"coordinates":[-73.7386373,40.7671006],"type":"Point"},"name":"Koryodang Bakery \u0026 Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0586a9"},"location":{"coordinates":[-73.90382900000002,40.7450988],"type":"Point"},"name":"Thai Suki"} +,{"_id":{"$oid":"55cba2476c522cafdb0586aa"},"location":{"coordinates":[-73.9366624,40.8021113],"type":"Point"},"name":"Pizza Plus"} +,{"_id":{"$oid":"55cba2476c522cafdb0586ab"},"location":{"coordinates":[-73.9906371,40.7035527],"type":"Point"},"name":"Atrium Dumbo"} +,{"_id":{"$oid":"55cba2476c522cafdb0586ac"},"location":{"coordinates":[-73.9864795,40.7478833],"type":"Point"},"name":"Grace Street"} +,{"_id":{"$oid":"55cba2476c522cafdb0586ad"},"location":{"coordinates":[-73.8843656,40.7436586],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0586ae"},"location":{"coordinates":[-73.9451,40.828147],"type":"Point"},"name":"Farafina Cafe And Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb0586af"},"location":{"coordinates":[-73.9572878,40.711776],"type":"Point"},"name":"Cervecceria Havemeyer"} +,{"_id":{"$oid":"55cba2476c522cafdb0586b0"},"location":{"coordinates":[-74.011808,40.7059085],"type":"Point"},"name":"Reserve Cut"} +,{"_id":{"$oid":"55cba2476c522cafdb0586b1"},"location":{"coordinates":[-73.94805269999999,40.7834052],"type":"Point"},"name":"Vinus And Marc"} +,{"_id":{"$oid":"55cba2476c522cafdb0586b2"},"location":{"coordinates":[-73.9819186,40.6668235],"type":"Point"},"name":"Meltkraft"} +,{"_id":{"$oid":"55cba2476c522cafdb0586b3"},"location":{"coordinates":[-92.7319534,41.7461452],"type":"Point"},"name":"99 Cent Fresh Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0586b4"},"location":{"coordinates":[-73.9285132,40.7556082],"type":"Point"},"name":"Melrose Ballroom"} +,{"_id":{"$oid":"55cba2476c522cafdb0586b5"},"location":{"coordinates":[-73.95002,40.6806177],"type":"Point"},"name":"Melanie'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0586b6"},"location":{"coordinates":[-73.9427311,40.7061629],"type":"Point"},"name":"Grace Ii Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0586b7"},"location":{"coordinates":[-74.1209444,40.6129002],"type":"Point"},"name":"Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb0586b8"},"location":{"coordinates":[-73.8333431,40.7605342],"type":"Point"},"name":"Yu Sushi Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0586b9"},"location":{"coordinates":[-73.9015318,40.8751235],"type":"Point"},"name":"Foo-Hing Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0586ba"},"location":{"coordinates":[-73.9780299,40.78406529999999],"type":"Point"},"name":"Yogurtland"} +,{"_id":{"$oid":"55cba2476c522cafdb0586bb"},"location":{"coordinates":[-73.78836989999999,40.70775099999999],"type":"Point"},"name":"Dai Hing Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb0586bc"},"location":{"coordinates":[-73.71185609999999,40.7367869],"type":"Point"},"name":"Jd Indian Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb0586bd"},"location":{"coordinates":[-73.9637801,40.8036283],"type":"Point"},"name":"Insomnia Cookies"} +,{"_id":{"$oid":"55cba2476c522cafdb0586be"},"location":{"coordinates":[-73.9075849,40.7452927],"type":"Point"},"name":"Tuscan Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0586bf"},"location":{"coordinates":[-73.9874449,40.7586655],"type":"Point"},"name":"Milford Hotel"} +,{"_id":{"$oid":"55cba2476c522cafdb0586c0"},"location":{"coordinates":[-73.9883092,40.7321603],"type":"Point"},"name":"Wayside"} +,{"_id":{"$oid":"55cba2476c522cafdb0586c1"},"location":{"coordinates":[-73.9733026,40.75140690000001],"type":"Point"},"name":"Bento Sushi \u0026 Noodles"} +,{"_id":{"$oid":"55cba2476c522cafdb0586c2"},"location":{"coordinates":[-73.947611,40.724568],"type":"Point"},"name":"K Bagel Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0586c3"},"location":{"coordinates":[-73.93058490000001,40.650339],"type":"Point"},"name":"Caribbean Jerkee'S Delight"} +,{"_id":{"$oid":"55cba2476c522cafdb0586c4"},"location":{"coordinates":[-73.78227,40.707858],"type":"Point"},"name":"Cafe Iguana"} +,{"_id":{"$oid":"55cba2476c522cafdb0586c5"},"location":{"coordinates":[-73.8135166,40.718924],"type":"Point"},"name":"Genesis Pizza Parlor"} +,{"_id":{"$oid":"55cba2476c522cafdb0586c6"},"location":{"coordinates":[-74.007689,40.7395107],"type":"Point"},"name":"Bubby'S Highline"} +,{"_id":{"$oid":"55cba2476c522cafdb0586c7"},"location":{"coordinates":[-73.9978068,40.7164139],"type":"Point"},"name":"Bassanova Ramen"} +,{"_id":{"$oid":"55cba2476c522cafdb0586c8"},"location":{"coordinates":[-73.9972046,40.713725],"type":"Point"},"name":"Golden Unicorn Gourmet"} +,{"_id":{"$oid":"55cba2476c522cafdb0586c9"},"location":{"coordinates":[-73.9094696,40.8220031],"type":"Point"},"name":"Caribe Cina"} +,{"_id":{"$oid":"55cba2476c522cafdb0586ca"},"location":{"coordinates":[-73.81950979999999,40.8463652],"type":"Point"},"name":"Country Bay Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb0586cb"},"location":{"coordinates":[-73.99475699999999,40.755057],"type":"Point"},"name":"Larb Ubol"} +,{"_id":{"$oid":"55cba2476c522cafdb0586cc"},"location":{"coordinates":[-73.9841636,40.7580351],"type":"Point"},"name":"Cafe B'Way 46"} +,{"_id":{"$oid":"55cba2476c522cafdb0586cd"},"location":{"coordinates":[-74.0108985,40.7035292],"type":"Point"},"name":"Guac Star/Zigolinis"} +,{"_id":{"$oid":"55cba2476c522cafdb0586ce"},"location":{"coordinates":[-73.885956,40.8427459],"type":"Point"},"name":"Roy'S Restaurnt \u0026 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0586cf"},"location":{"coordinates":[-73.96196909999999,40.6095468],"type":"Point"},"name":"Taci'S Beyti Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0586d0"},"location":{"coordinates":[-73.9910195,40.7244943],"type":"Point"},"name":"Blue Ribbon Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb0586d1"},"location":{"coordinates":[-73.80191049999999,40.70540039999999],"type":"Point"},"name":"Cityrib"} +,{"_id":{"$oid":"55cba2476c522cafdb0586d2"},"location":{"coordinates":[-73.8874955,40.837106],"type":"Point"},"name":"El Gran Valle Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb0586d3"},"location":{"coordinates":[-74.004148,40.641015],"type":"Point"},"name":"Yummy Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0586d4"},"location":{"coordinates":[-73.9074916,40.7028217],"type":"Point"},"name":"Crown Fried Chicken \u0026 Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0586d5"},"location":{"coordinates":[-74.011641,40.636581],"type":"Point"},"name":"Toyama Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb0586d6"},"location":{"coordinates":[-73.7906208,40.7394875],"type":"Point"},"name":"Ali Baba"} +,{"_id":{"$oid":"55cba2476c522cafdb0586d7"},"location":{"coordinates":[-73.92452130000001,40.7585962],"type":"Point"},"name":"Mar'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0586d8"},"location":{"coordinates":[-73.8149021,40.7026778],"type":"Point"},"name":"New Polodos Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb0586d9"},"location":{"coordinates":[-73.95730069999999,40.7656438],"type":"Point"},"name":"Bamboo Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb0586da"},"location":{"coordinates":[-74.009101,40.649329],"type":"Point"},"name":"Fogon \u0026 Lena Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0586db"},"location":{"coordinates":[-73.9322846,40.6421661],"type":"Point"},"name":"Duncan'S Island Style"} +,{"_id":{"$oid":"55cba2476c522cafdb0586dc"},"location":{"coordinates":[-73.9487429,40.789283],"type":"Point"},"name":"Lexington Pizza Parlour"} +,{"_id":{"$oid":"55cba2476c522cafdb0586dd"},"location":{"coordinates":[-73.9849492,40.7599577],"type":"Point"},"name":"Morgan Stanley Conference Center"} +,{"_id":{"$oid":"55cba2476c522cafdb0586de"},"location":{"coordinates":[-73.8889354,40.65738109999999],"type":"Point"},"name":"Yamasa Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0586df"},"location":{"coordinates":[-73.751247,40.7072258],"type":"Point"},"name":"Dominos Pizza # 3448"} +,{"_id":{"$oid":"55cba2476c522cafdb0586e0"},"location":{"coordinates":[-73.8331604,40.7608814],"type":"Point"},"name":"Xiao Dong Bei Chinese Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb0586e1"},"location":{"coordinates":[-73.9130096,40.7633718],"type":"Point"},"name":"Restoran Seher Old Bridge 3"} +,{"_id":{"$oid":"55cba2476c522cafdb0586e2"},"location":{"coordinates":[-73.8887463,40.8545514],"type":"Point"},"name":"Giovanni'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0586e3"},"location":{"coordinates":[-74.0225806,40.6288522],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0586e4"},"location":{"coordinates":[-73.8906446,40.7490685],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0586e5"},"location":{"coordinates":[-73.967264,40.757383],"type":"Point"},"name":"Creative Juice"} +,{"_id":{"$oid":"55cba2476c522cafdb0586e6"},"location":{"coordinates":[-73.950434,40.7802269],"type":"Point"},"name":"Il Salumaio Wine Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0586e7"},"location":{"coordinates":[-73.9540043,40.7781098],"type":"Point"},"name":"Creative Juice"} +,{"_id":{"$oid":"55cba2476c522cafdb0586e8"},"location":{"coordinates":[-73.99065499999999,40.7483005],"type":"Point"},"name":"Friedman'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0586e9"},"location":{"coordinates":[-73.90688709999999,40.6969749],"type":"Point"},"name":"Everyday Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0586ea"},"location":{"coordinates":[-73.9407702,40.6952528],"type":"Point"},"name":"Fu En Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0586eb"},"location":{"coordinates":[-73.98273669999999,40.7702159],"type":"Point"},"name":"Gabriel'S Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0586ec"},"location":{"coordinates":[-73.9797339,40.7346006],"type":"Point"},"name":"Hane Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb0586ed"},"location":{"coordinates":[-73.9370799,40.84432109999999],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0586ee"},"location":{"coordinates":[-73.9605686,40.6553803],"type":"Point"},"name":"Fisherman'S Cove"} +,{"_id":{"$oid":"55cba2476c522cafdb0586ef"},"location":{"coordinates":[-73.8682701,40.745683],"type":"Point"},"name":"Orillas De Gualaceo Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0586f0"},"location":{"coordinates":[-73.9788784,40.7244215],"type":"Point"},"name":"Le Jardin"} +,{"_id":{"$oid":"55cba2476c522cafdb0586f1"},"location":{"coordinates":[-73.9506535,40.7707712],"type":"Point"},"name":"Kobe Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb0586f2"},"location":{"coordinates":[-73.95205589999999,40.8083717],"type":"Point"},"name":"Savann Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0586f3"},"location":{"coordinates":[-73.995312,40.6144],"type":"Point"},"name":"Destiny Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0586f4"},"location":{"coordinates":[-73.89703879999999,40.8960243],"type":"Point"},"name":"Tony \u0026 Val'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0586f5"},"location":{"coordinates":[-73.9873546,40.7440368],"type":"Point"},"name":"Museum Of Sex/Play"} +,{"_id":{"$oid":"55cba2476c522cafdb0586f6"},"location":{"coordinates":[-73.99633,40.736831],"type":"Point"},"name":"Five Guys Burgers \u0026 Fries"} +,{"_id":{"$oid":"55cba2476c522cafdb0586f7"},"location":{"coordinates":[-73.89760249999999,40.636928],"type":"Point"},"name":"Citadelle Bar And Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0586f8"},"location":{"coordinates":[-73.95579359999999,40.7091568],"type":"Point"},"name":"Shalom Japan"} +,{"_id":{"$oid":"55cba2476c522cafdb0586f9"},"location":{"coordinates":[-73.9851936,40.7327983],"type":"Point"},"name":"The Winslow"} +,{"_id":{"$oid":"55cba2476c522cafdb0586fa"},"location":{"coordinates":[-73.98744649999999,40.7193235],"type":"Point"},"name":"Luca \u0026 Bosco"} +,{"_id":{"$oid":"55cba2476c522cafdb0586fb"},"location":{"coordinates":[-73.932373,40.618115],"type":"Point"},"name":"E. Sushi Of Brooklyn"} +,{"_id":{"$oid":"55cba2476c522cafdb0586fc"},"location":{"coordinates":[-73.9106029,40.8404456],"type":"Point"},"name":"Aurora Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0586fd"},"location":{"coordinates":[-73.75923279999999,40.721175],"type":"Point"},"name":"Rajdhani Indian Restuarant"} +,{"_id":{"$oid":"55cba2476c522cafdb0586fe"},"location":{"coordinates":[-74.07457509999999,40.6251003],"type":"Point"},"name":"Gatsby'S On The Bay"} +,{"_id":{"$oid":"55cba2476c522cafdb0586ff"},"location":{"coordinates":[-73.99528409999999,40.7305719],"type":"Point"},"name":"Kung Fu Tea"} +,{"_id":{"$oid":"55cba2476c522cafdb058700"},"location":{"coordinates":[-74.026271,40.634328],"type":"Point"},"name":"Uncle Mikes Ices"} +,{"_id":{"$oid":"55cba2476c522cafdb058701"},"location":{"coordinates":[-74.01291599999999,40.6423403],"type":"Point"},"name":"Corona Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058702"},"location":{"coordinates":[-73.98361059999999,40.7676901],"type":"Point"},"name":"Red Cork"} +,{"_id":{"$oid":"55cba2476c522cafdb058703"},"location":{"coordinates":[-73.9386906,40.8090468],"type":"Point"},"name":"Jg'S On Madison"} +,{"_id":{"$oid":"55cba2476c522cafdb058704"},"location":{"coordinates":[-73.98744649999999,40.7193235],"type":"Point"},"name":"Peasant Stock"} +,{"_id":{"$oid":"55cba2476c522cafdb058705"},"location":{"coordinates":[-74.091494,40.5711299],"type":"Point"},"name":"Verrazano Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb058706"},"location":{"coordinates":[-73.9461795,40.7113095],"type":"Point"},"name":"The Sandwich Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb058707"},"location":{"coordinates":[-73.97406409999999,40.7537652],"type":"Point"},"name":"99 Cent Fresh Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb058708"},"location":{"coordinates":[-73.987251,40.754758],"type":"Point"},"name":"99C Fresh Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb058709"},"location":{"coordinates":[-73.87385139999999,40.7508655],"type":"Point"},"name":"Salatto"} +,{"_id":{"$oid":"55cba2476c522cafdb05870a"},"location":{"coordinates":[-73.8735804,40.7426935],"type":"Point"},"name":"Yomi Station"} +,{"_id":{"$oid":"55cba2476c522cafdb05870b"},"location":{"coordinates":[-74.1928009,40.5332903],"type":"Point"},"name":"Ciro Pizza Caffe"} +,{"_id":{"$oid":"55cba2476c522cafdb05870c"},"location":{"coordinates":[-73.8988766,40.7096579],"type":"Point"},"name":"Sweet Island Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05870d"},"location":{"coordinates":[-73.981697,40.658418],"type":"Point"},"name":"The Park West Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05870e"},"location":{"coordinates":[-73.95722599999999,40.7253479],"type":"Point"},"name":"Northern Territory"} +,{"_id":{"$oid":"55cba2476c522cafdb05870f"},"location":{"coordinates":[-73.998425,40.638131],"type":"Point"},"name":"Mixxed Grill And Juice Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb058710"},"location":{"coordinates":[-73.9816151,40.7306133],"type":"Point"},"name":"Hawa Smoothie"} +,{"_id":{"$oid":"55cba2476c522cafdb058711"},"location":{"coordinates":[-73.9111981,40.9001767],"type":"Point"},"name":"Wave Hill"} +,{"_id":{"$oid":"55cba2476c522cafdb058712"},"location":{"coordinates":[-73.9452088,40.823885],"type":"Point"},"name":"Checker'S"} +,{"_id":{"$oid":"55cba2476c522cafdb058713"},"location":{"coordinates":[-73.938563,40.841579],"type":"Point"},"name":"Tung Thong Thai Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058714"},"location":{"coordinates":[-73.9835732,40.7425511],"type":"Point"},"name":"Turnmill"} +,{"_id":{"$oid":"55cba2476c522cafdb058715"},"location":{"coordinates":[-73.8908299,40.7462574],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb058716"},"location":{"coordinates":[-73.94410130000001,40.8237544],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb058717"},"location":{"coordinates":[-74.014422,40.6415239],"type":"Point"},"name":"Puerto Rico Pizzeria Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058718"},"location":{"coordinates":[-74.0011473,40.68779199999999],"type":"Point"},"name":"Whiskey Soda Lounge Ny"} +,{"_id":{"$oid":"55cba2476c522cafdb058719"},"location":{"coordinates":[-73.9440879,40.7142689],"type":"Point"},"name":"Grass Roots Juicery"} +,{"_id":{"$oid":"55cba2476c522cafdb05871a"},"location":{"coordinates":[-73.99075599999999,40.757958],"type":"Point"},"name":"Dunkin' Donuts And Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb05871b"},"location":{"coordinates":[-73.84538440000001,40.8432139],"type":"Point"},"name":"Healthy Lifestyle"} +,{"_id":{"$oid":"55cba2476c522cafdb05871c"},"location":{"coordinates":[-73.9655672,40.7169149],"type":"Point"},"name":"Essbar"} +,{"_id":{"$oid":"55cba2476c522cafdb05871d"},"location":{"coordinates":[-73.8367363,40.6823335],"type":"Point"},"name":"Lynx Ii Lounge Inc."} +,{"_id":{"$oid":"55cba2476c522cafdb05871e"},"location":{"coordinates":[-74.002364,40.606712],"type":"Point"},"name":"Dreamers Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb05871f"},"location":{"coordinates":[-73.85275240000001,40.6932376],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb058720"},"location":{"coordinates":[-73.94766179999999,40.7037513],"type":"Point"},"name":"Chicken Express"} +,{"_id":{"$oid":"55cba2476c522cafdb058721"},"location":{"coordinates":[-73.938811,40.82583899999999],"type":"Point"},"name":"Biters Llc"} +,{"_id":{"$oid":"55cba2476c522cafdb058722"},"location":{"coordinates":[-73.930238,40.70067],"type":"Point"},"name":"Expressyourself Barista Bar (Bkny)"} +,{"_id":{"$oid":"55cba2476c522cafdb058723"},"location":{"coordinates":[-73.993616,40.74640000000001],"type":"Point"},"name":"Caffebene"} +,{"_id":{"$oid":"55cba2476c522cafdb058724"},"location":{"coordinates":[-73.906217,40.66856],"type":"Point"},"name":"Eastern Ocean China King Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058725"},"location":{"coordinates":[-74.0100244,40.7190553],"type":"Point"},"name":"Tablao Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058726"},"location":{"coordinates":[-73.94809819999999,40.6998241],"type":"Point"},"name":"Milk Truck"} +,{"_id":{"$oid":"55cba2476c522cafdb058727"},"location":{"coordinates":[-73.8341506,40.7696239],"type":"Point"},"name":"Mr. Chan'S Chinese Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb058728"},"location":{"coordinates":[-74.00441959999999,40.6302931],"type":"Point"},"name":"Sunrise Bakery 168 Inc"} +,{"_id":{"$oid":"55cba2476c522cafdb058729"},"location":{"coordinates":[-73.9515911,40.787327],"type":"Point"},"name":"Earl'S Beer \u0026 Cheese"} +,{"_id":{"$oid":"55cba2476c522cafdb05872a"},"location":{"coordinates":[-73.871776,40.896604],"type":"Point"},"name":"The Tombstone Saloon"} +,{"_id":{"$oid":"55cba2476c522cafdb05872b"},"location":{"coordinates":[-73.81248099999999,40.764702],"type":"Point"},"name":"Kang Ho Dong Baek Jeong"} +,{"_id":{"$oid":"55cba2476c522cafdb05872c"},"location":{"coordinates":[-73.9584107,40.8100291],"type":"Point"},"name":"Flat Top"} +,{"_id":{"$oid":"55cba2476c522cafdb05872d"},"location":{"coordinates":[-74.00363779999999,40.7161361],"type":"Point"},"name":"Simit And Smith"} +,{"_id":{"$oid":"55cba2476c522cafdb05872e"},"location":{"coordinates":[-73.92239289999999,40.86703869999999],"type":"Point"},"name":"District 12"} +,{"_id":{"$oid":"55cba2476c522cafdb05872f"},"location":{"coordinates":[-73.95982599999999,40.768801],"type":"Point"},"name":"4Th Floor Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058730"},"location":{"coordinates":[-73.95982599999999,40.768801],"type":"Point"},"name":"Marymount College Nugents Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058731"},"location":{"coordinates":[-73.9974671,40.7136448],"type":"Point"},"name":"Vivi Bubble Tea"} +,{"_id":{"$oid":"55cba2476c522cafdb058732"},"location":{"coordinates":[-73.949074,40.588847],"type":"Point"},"name":"Ocean Style Sushi/Japanese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058733"},"location":{"coordinates":[-73.89292259999999,40.6801259],"type":"Point"},"name":"Yolanda Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058734"},"location":{"coordinates":[-74.00858699999999,40.716906],"type":"Point"},"name":"Khe-Yo"} +,{"_id":{"$oid":"55cba2476c522cafdb058735"},"location":{"coordinates":[-73.9215679,40.755028],"type":"Point"},"name":"Cafe Picco"} +,{"_id":{"$oid":"55cba2476c522cafdb058736"},"location":{"coordinates":[-73.996625,40.72235],"type":"Point"},"name":"Eight Turn Crepe"} +,{"_id":{"$oid":"55cba2476c522cafdb058737"},"location":{"coordinates":[-73.98944999999999,40.76733],"type":"Point"},"name":"Mamasita Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb058738"},"location":{"coordinates":[-73.965667,40.766333],"type":"Point"},"name":"The East Pole"} +,{"_id":{"$oid":"55cba2476c522cafdb058739"},"location":{"coordinates":[-73.81127889999999,40.5875343],"type":"Point"},"name":"Ny 301 Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05873a"},"location":{"coordinates":[-73.9874877,40.6921206],"type":"Point"},"name":"Buffalo Boss Two"} +,{"_id":{"$oid":"55cba2476c522cafdb05873b"},"location":{"coordinates":[-73.9318749,40.8574047],"type":"Point"},"name":"No. 1 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05873c"},"location":{"coordinates":[-73.88952499999999,40.74921519999999],"type":"Point"},"name":"El Rico Tinto Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb05873d"},"location":{"coordinates":[-73.9896952,40.7578606],"type":"Point"},"name":"Lol New York"} +,{"_id":{"$oid":"55cba2476c522cafdb05873e"},"location":{"coordinates":[-73.9859737,40.7536194],"type":"Point"},"name":"Kobeyaki"} +,{"_id":{"$oid":"55cba2476c522cafdb05873f"},"location":{"coordinates":[-73.987917,40.740535],"type":"Point"},"name":"Mcdonalds"} +,{"_id":{"$oid":"55cba2476c522cafdb058740"},"location":{"coordinates":[-73.98967650000002,40.6690748],"type":"Point"},"name":"Olivier"} +,{"_id":{"$oid":"55cba2476c522cafdb058741"},"location":{"coordinates":[-73.9244897,40.6087856],"type":"Point"},"name":"Bamboo House"} +,{"_id":{"$oid":"55cba2476c522cafdb058742"},"location":{"coordinates":[-73.98311679999999,40.72694509999999],"type":"Point"},"name":"Nino'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb058743"},"location":{"coordinates":[-73.9095376,40.7750964],"type":"Point"},"name":"Aki Japanese Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb058744"},"location":{"coordinates":[-73.977166,40.743509],"type":"Point"},"name":"Hill And Bay"} +,{"_id":{"$oid":"55cba2476c522cafdb058745"},"location":{"coordinates":[-73.9595853,40.76247540000001],"type":"Point"},"name":"Aoyama Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb058746"},"location":{"coordinates":[-73.9630744,40.6751748],"type":"Point"},"name":"Gino'S Cucina Brick Oven Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb058747"},"location":{"coordinates":[-73.8911779,40.7488254],"type":"Point"},"name":"Afgan Kebab And Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb058748"},"location":{"coordinates":[-73.9850289,40.7474699],"type":"Point"},"name":"99 Cent Best Pizza 5Ave Inc"} +,{"_id":{"$oid":"55cba2476c522cafdb058749"},"location":{"coordinates":[-73.97427239999999,40.7516937],"type":"Point"},"name":"99 Cent Fresh Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05874a"},"location":{"coordinates":[-73.9090009,40.7635488],"type":"Point"},"name":"3 Alarm"} +,{"_id":{"$oid":"55cba2476c522cafdb05874b"},"location":{"coordinates":[-74.011192,40.637624],"type":"Point"},"name":"Ao Feng Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05874c"},"location":{"coordinates":[-73.7530575,40.6031347],"type":"Point"},"name":"Central American Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05874d"},"location":{"coordinates":[-73.75125229999999,40.5963312],"type":"Point"},"name":"Dredsurfer Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb05874e"},"location":{"coordinates":[-73.7997187,40.7042655],"type":"Point"},"name":"Good Taste Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb05874f"},"location":{"coordinates":[-73.8277444,40.8697287],"type":"Point"},"name":"Xin Hi Chinese Restaurant \u0026 Buffet"} +,{"_id":{"$oid":"55cba2476c522cafdb058750"},"location":{"coordinates":[-73.9705382,40.7593494],"type":"Point"},"name":"Anka Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb058751"},"location":{"coordinates":[-73.99484369999999,40.7177714],"type":"Point"},"name":"Kamboat Bakery \u0026 Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058752"},"location":{"coordinates":[-73.955091,40.768054],"type":"Point"},"name":"The Sweet Shop Nyc"} +,{"_id":{"$oid":"55cba2476c522cafdb058753"},"location":{"coordinates":[-73.9115319,40.773086],"type":"Point"},"name":"Astoria Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb058754"},"location":{"coordinates":[-73.98895209999999,40.7350759],"type":"Point"},"name":"Daryl Roth Theatre"} +,{"_id":{"$oid":"55cba2476c522cafdb058755"},"location":{"coordinates":[-73.9923187,40.7580242],"type":"Point"},"name":"Szechuan Palace"} +,{"_id":{"$oid":"55cba2476c522cafdb058756"},"location":{"coordinates":[-73.80322199999999,40.718272],"type":"Point"},"name":"D'Angelos Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb058757"},"location":{"coordinates":[-73.8972659,40.6376996],"type":"Point"},"name":"New Lin Wang"} +,{"_id":{"$oid":"55cba2476c522cafdb058758"},"location":{"coordinates":[-73.9577951,40.769193],"type":"Point"},"name":"Tatany"} +,{"_id":{"$oid":"55cba2476c522cafdb058759"},"location":{"coordinates":[-73.97517309999999,40.748395],"type":"Point"},"name":"Aki 39 Japanese Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb05875a"},"location":{"coordinates":[-73.9218728,40.8316569],"type":"Point"},"name":"House Of Cheng Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb05875b"},"location":{"coordinates":[-73.9848876,40.7603998],"type":"Point"},"name":"Brassierie 1605/Broadway 49 Bar \u0026 Lounge (Main Kitchen)"} +,{"_id":{"$oid":"55cba2476c522cafdb05875c"},"location":{"coordinates":[-73.9848876,40.7603998],"type":"Point"},"name":"Crowne Plaza-Times Square (Banquet Kitchen)"} +,{"_id":{"$oid":"55cba2476c522cafdb05875d"},"location":{"coordinates":[-73.9798727,40.574926],"type":"Point"},"name":"Gyro Corner"} +,{"_id":{"$oid":"55cba2476c522cafdb05875e"},"location":{"coordinates":[-73.99488219999999,40.7211879],"type":"Point"},"name":"Rintintin"} +,{"_id":{"$oid":"55cba2476c522cafdb05875f"},"location":{"coordinates":[-73.96166769999999,40.7990538],"type":"Point"},"name":"Gastronomia Culinaria"} +,{"_id":{"$oid":"55cba2476c522cafdb058760"},"location":{"coordinates":[-73.99284449999999,40.722337],"type":"Point"},"name":"Hester Street Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058761"},"location":{"coordinates":[-73.91699299999999,40.7423819],"type":"Point"},"name":"Sonrie Con Nosotros"} +,{"_id":{"$oid":"55cba2476c522cafdb058762"},"location":{"coordinates":[-73.7958416,40.7072905],"type":"Point"},"name":"S \u0026 S Caribbean Cuisine And Roti Shop, Inc"} +,{"_id":{"$oid":"55cba2476c522cafdb058763"},"location":{"coordinates":[-73.9402437,40.8002541],"type":"Point"},"name":"New Hong Kong Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb058764"},"location":{"coordinates":[-73.7960836,40.7733426],"type":"Point"},"name":"King Wok"} +,{"_id":{"$oid":"55cba2476c522cafdb058765"},"location":{"coordinates":[-73.9807391,40.7821167],"type":"Point"},"name":"Redfarm"} +,{"_id":{"$oid":"55cba2476c522cafdb058766"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"Airspace Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb058767"},"location":{"coordinates":[-73.9868019,40.7636412],"type":"Point"},"name":"Braai"} +,{"_id":{"$oid":"55cba2476c522cafdb058768"},"location":{"coordinates":[-73.9164894,40.76431789999999],"type":"Point"},"name":"New York Dog House"} +,{"_id":{"$oid":"55cba2476c522cafdb058769"},"location":{"coordinates":[-73.8186006,40.7499535],"type":"Point"},"name":"Yj Chinese Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb05876a"},"location":{"coordinates":[-73.8914602,40.8491531],"type":"Point"},"name":"I Love Ny Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05876b"},"location":{"coordinates":[-73.94967919999999,40.7772719],"type":"Point"},"name":"Chicky'S"} +,{"_id":{"$oid":"55cba2476c522cafdb05876c"},"location":{"coordinates":[-73.919051,40.766081],"type":"Point"},"name":"Bagels On The Ave"} +,{"_id":{"$oid":"55cba2476c522cafdb05876d"},"location":{"coordinates":[-74.0156894,40.714586],"type":"Point"},"name":"El Vez"} +,{"_id":{"$oid":"55cba2476c522cafdb05876e"},"location":{"coordinates":[-73.8194414,40.75055529999999],"type":"Point"},"name":"Ke Zhang"} +,{"_id":{"$oid":"55cba2476c522cafdb05876f"},"location":{"coordinates":[-73.8607317,40.71603260000001],"type":"Point"},"name":"Rumba Supper Club"} +,{"_id":{"$oid":"55cba2476c522cafdb058770"},"location":{"coordinates":[-73.955151,40.820755],"type":"Point"},"name":"Crown Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb058771"},"location":{"coordinates":[-73.8548137,40.8973807],"type":"Point"},"name":"Rincon Latino Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058772"},"location":{"coordinates":[-74.00363469999999,40.731713],"type":"Point"},"name":"Caliente Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb058773"},"location":{"coordinates":[-73.9944762,40.7181246],"type":"Point"},"name":"Good Century Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058774"},"location":{"coordinates":[-73.9575175,40.7743974],"type":"Point"},"name":"Birdbath Juice"} +,{"_id":{"$oid":"55cba2476c522cafdb058775"},"location":{"coordinates":[-73.90286739999999,40.6458674],"type":"Point"},"name":"Tasty Delicious West Indian Bakery \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058776"},"location":{"coordinates":[-73.9177316,40.6511816],"type":"Point"},"name":"Tasty Delicious West Indian Bakery \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058777"},"location":{"coordinates":[-74.006548,40.7192599],"type":"Point"},"name":"Terra"} +,{"_id":{"$oid":"55cba2476c522cafdb058778"},"location":{"coordinates":[-73.9585349,40.6695214],"type":"Point"},"name":"The Pulp \u0026 The Bean"} +,{"_id":{"$oid":"55cba2476c522cafdb058779"},"location":{"coordinates":[-73.9593045,40.6539596],"type":"Point"},"name":"Zen Vegetarian House"} +,{"_id":{"$oid":"55cba2476c522cafdb05877a"},"location":{"coordinates":[-73.9200652,40.86105999999999],"type":"Point"},"name":"Opus"} +,{"_id":{"$oid":"55cba2476c522cafdb05877b"},"location":{"coordinates":[-73.9256193,40.8401919],"type":"Point"},"name":"De La Gina Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05877c"},"location":{"coordinates":[-73.9877176,40.7469246],"type":"Point"},"name":"Sky 31 Roof Top"} +,{"_id":{"$oid":"55cba2476c522cafdb05877d"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"The Palm"} +,{"_id":{"$oid":"55cba2476c522cafdb05877e"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"Peet'S Coffee/Tea"} +,{"_id":{"$oid":"55cba2476c522cafdb05877f"},"location":{"coordinates":[-73.815109,40.762472],"type":"Point"},"name":"Cokiri Two Ktv"} +,{"_id":{"$oid":"55cba2476c522cafdb058780"},"location":{"coordinates":[-73.9115592,40.76245979999999],"type":"Point"},"name":"La Luna Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058781"},"location":{"coordinates":[-73.97633290000002,40.7552593],"type":"Point"},"name":"Dag'S The Patio"} +,{"_id":{"$oid":"55cba2476c522cafdb058782"},"location":{"coordinates":[-73.9886439,40.7448018],"type":"Point"},"name":"Sweetgreen Nomad"} +,{"_id":{"$oid":"55cba2476c522cafdb058783"},"location":{"coordinates":[-73.78899299999999,40.707081],"type":"Point"},"name":"Restaurante \u0026 Panaderia Guatelinda"} +,{"_id":{"$oid":"55cba2476c522cafdb058784"},"location":{"coordinates":[-73.75179,40.602498],"type":"Point"},"name":"Avi Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb058785"},"location":{"coordinates":[-73.9798807,40.5733586],"type":"Point"},"name":"White Castle Express"} +,{"_id":{"$oid":"55cba2476c522cafdb058786"},"location":{"coordinates":[-73.9775337,40.5752378],"type":"Point"},"name":"Cyclone Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058787"},"location":{"coordinates":[-73.979466,40.783312],"type":"Point"},"name":"Fishtag"} +,{"_id":{"$oid":"55cba2476c522cafdb058788"},"location":{"coordinates":[-73.76991,40.76359069999999],"type":"Point"},"name":"Fiamma 41"} +,{"_id":{"$oid":"55cba2476c522cafdb058789"},"location":{"coordinates":[-74.07564099999999,40.627075],"type":"Point"},"name":"Wazobia Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05878a"},"location":{"coordinates":[-92.7231393,41.7461366],"type":"Point"},"name":"Monarch"} +,{"_id":{"$oid":"55cba2476c522cafdb05878b"},"location":{"coordinates":[-73.94328469999999,40.7889865],"type":"Point"},"name":"Grace Wok Chinese"} +,{"_id":{"$oid":"55cba2476c522cafdb05878c"},"location":{"coordinates":[-74.00761059999999,40.7071367],"type":"Point"},"name":"Jersey Mike'S Subs"} +,{"_id":{"$oid":"55cba2476c522cafdb05878d"},"location":{"coordinates":[-73.9108832,40.8231845],"type":"Point"},"name":"Perry'S Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb05878e"},"location":{"coordinates":[-73.8536508,40.7265335],"type":"Point"},"name":"Valle'S Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05878f"},"location":{"coordinates":[-74.0218478,40.6183758],"type":"Point"},"name":"Nathan'S"} +,{"_id":{"$oid":"55cba2476c522cafdb058790"},"location":{"coordinates":[-73.918472,40.82988],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb058791"},"location":{"coordinates":[-74.1021432,40.5775882],"type":"Point"},"name":"Mcdonald'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058792"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"Starbucks"} +,{"_id":{"$oid":"55cba2476c522cafdb058793"},"location":{"coordinates":[-73.8440707,40.6722366],"type":"Point"},"name":"Days Inn"} +,{"_id":{"$oid":"55cba2476c522cafdb058794"},"location":{"coordinates":[-73.99041,40.6871561],"type":"Point"},"name":"Hanco'S"} +,{"_id":{"$oid":"55cba2476c522cafdb058795"},"location":{"coordinates":[-73.9542323,40.5873839],"type":"Point"},"name":"Yooberry Frozen Yogurt"} +,{"_id":{"$oid":"55cba2476c522cafdb058796"},"location":{"coordinates":[-73.86814369999999,40.854653],"type":"Point"},"name":"Shahi Kabab \u0026 Curry Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058797"},"location":{"coordinates":[-74.2485282,40.5109023],"type":"Point"},"name":"Taqueria Oaxaca"} +,{"_id":{"$oid":"55cba2476c522cafdb058798"},"location":{"coordinates":[-74.00283209999999,40.6416128],"type":"Point"},"name":"Simon'S Bbq"} +,{"_id":{"$oid":"55cba2476c522cafdb058799"},"location":{"coordinates":[-73.831279,40.706232],"type":"Point"},"name":"Hangar Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb05879a"},"location":{"coordinates":[-74.01556699999999,40.7141115],"type":"Point"},"name":"Merrill Lynch Conference Center"} +,{"_id":{"$oid":"55cba2476c522cafdb05879b"},"location":{"coordinates":[-73.91518300000001,40.705554],"type":"Point"},"name":"Cypress Inn Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05879c"},"location":{"coordinates":[-73.98877039999999,40.7197227],"type":"Point"},"name":"Amuse Wine Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05879d"},"location":{"coordinates":[-73.990471,40.719865],"type":"Point"},"name":"Antler Beer \u0026 Wine Dispensary"} +,{"_id":{"$oid":"55cba2476c522cafdb05879e"},"location":{"coordinates":[-73.9854785,40.7310526],"type":"Point"},"name":"Juke Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05879f"},"location":{"coordinates":[-74.01322760000001,40.6423101],"type":"Point"},"name":"The Peninsula New York/ Clement/ The Gotham Lounge/ Salon De Ning"} +,{"_id":{"$oid":"55cba2476c522cafdb0587a0"},"location":{"coordinates":[-74.00885,40.7151357],"type":"Point"},"name":"Ecco Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0587a1"},"location":{"coordinates":[-73.9633429,40.7120244],"type":"Point"},"name":"Randolph"} +,{"_id":{"$oid":"55cba2476c522cafdb0587a2"},"location":{"coordinates":[-73.862034,40.692381],"type":"Point"},"name":"China Peking Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0587a3"},"location":{"coordinates":[-73.960847,40.6353409],"type":"Point"},"name":"La Crepe Et La Vie"} +,{"_id":{"$oid":"55cba2476c522cafdb0587a4"},"location":{"coordinates":[-73.8838616,40.7556598],"type":"Point"},"name":"El Palacio De Los Cholados"} +,{"_id":{"$oid":"55cba2476c522cafdb0587a5"},"location":{"coordinates":[-73.93503,40.796035],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0587a6"},"location":{"coordinates":[-73.9409189,40.798641],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0587a7"},"location":{"coordinates":[-73.96199310000002,40.7589325],"type":"Point"},"name":"Amaze"} +,{"_id":{"$oid":"55cba2476c522cafdb0587a8"},"location":{"coordinates":[-73.95191919999999,40.7176114],"type":"Point"},"name":"Lounge 568"} +,{"_id":{"$oid":"55cba2476c522cafdb0587a9"},"location":{"coordinates":[-73.9525302,40.8077771],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0587aa"},"location":{"coordinates":[-73.9764677,40.7570834],"type":"Point"},"name":"Mangia"} +,{"_id":{"$oid":"55cba2476c522cafdb0587ab"},"location":{"coordinates":[-73.95681499999999,40.802988],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0587ac"},"location":{"coordinates":[-74.0097053,40.6454267],"type":"Point"},"name":"Sunset Bagels"} +,{"_id":{"$oid":"55cba2476c522cafdb0587ad"},"location":{"coordinates":[-74.003186,40.7302912],"type":"Point"},"name":"Ellary'S Greens"} +,{"_id":{"$oid":"55cba2476c522cafdb0587ae"},"location":{"coordinates":[-73.9384781,40.6830181],"type":"Point"},"name":"Chaitty Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb0587af"},"location":{"coordinates":[-73.9898702,40.7127811],"type":"Point"},"name":"Dunkin Donuts/ Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb0587b0"},"location":{"coordinates":[-74.0006949,40.606412],"type":"Point"},"name":"Caucasia"} +,{"_id":{"$oid":"55cba2476c522cafdb0587b1"},"location":{"coordinates":[-73.9966606,40.6272216],"type":"Point"},"name":"Star Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb0587b2"},"location":{"coordinates":[-73.7540258,40.600621],"type":"Point"},"name":"It'Z All 4 U"} +,{"_id":{"$oid":"55cba2476c522cafdb0587b3"},"location":{"coordinates":[-73.926153,40.703515],"type":"Point"},"name":"The Three Diamond Door"} +,{"_id":{"$oid":"55cba2476c522cafdb0587b4"},"location":{"coordinates":[-73.9757635,40.7544736],"type":"Point"},"name":"Societe General"} +,{"_id":{"$oid":"55cba2476c522cafdb0587b5"},"location":{"coordinates":[-73.9562898,40.6943765],"type":"Point"},"name":"Sushi K Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0587b6"},"location":{"coordinates":[-73.9757635,40.7544736],"type":"Point"},"name":"Societe Generale Cafeteria"} +,{"_id":{"$oid":"55cba2476c522cafdb0587b7"},"location":{"coordinates":[-73.912223,40.7668419],"type":"Point"},"name":"Midnight Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb0587b8"},"location":{"coordinates":[-73.986446,40.6915505],"type":"Point"},"name":"Infinitea Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0587b9"},"location":{"coordinates":[-73.9260719,40.8114777],"type":"Point"},"name":"Twosha'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0587ba"},"location":{"coordinates":[-73.8361,40.875858],"type":"Point"},"name":"The Dumplin Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb0587bb"},"location":{"coordinates":[-73.9195743,40.868438],"type":"Point"},"name":"Vs Berry"} +,{"_id":{"$oid":"55cba2476c522cafdb0587bc"},"location":{"coordinates":[-73.935051,40.69658],"type":"Point"},"name":"Norbert'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0587bd"},"location":{"coordinates":[-73.73874339999999,40.7677353],"type":"Point"},"name":"Gang San Deul"} +,{"_id":{"$oid":"55cba2476c522cafdb0587be"},"location":{"coordinates":[-73.9843917,40.7208021],"type":"Point"},"name":"Rizzo Fine Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0587bf"},"location":{"coordinates":[-73.9491276,40.807434],"type":"Point"},"name":"Kennedy'S Chicken \u0026 Sandwiches"} +,{"_id":{"$oid":"55cba2476c522cafdb0587c0"},"location":{"coordinates":[-73.99866759999999,40.73443959999999],"type":"Point"},"name":"Umami Burger"} +,{"_id":{"$oid":"55cba2476c522cafdb0587c1"},"location":{"coordinates":[-73.8734521,40.8405586],"type":"Point"},"name":"3 D'S Legacy Salad \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0587c2"},"location":{"coordinates":[-73.74075599999999,40.703732],"type":"Point"},"name":"Ice Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb0587c3"},"location":{"coordinates":[-73.977502,40.749876],"type":"Point"},"name":"La Brochette Steakhouse."} +,{"_id":{"$oid":"55cba2476c522cafdb0587c4"},"location":{"coordinates":[-73.832319,40.8465581],"type":"Point"},"name":"Mexico Magico"} +,{"_id":{"$oid":"55cba2476c522cafdb0587c5"},"location":{"coordinates":[-73.9775697,40.7838392],"type":"Point"},"name":"Barley \u0026 Grain"} +,{"_id":{"$oid":"55cba2476c522cafdb0587c6"},"location":{"coordinates":[-73.996259,40.743806],"type":"Point"},"name":"Toasties"} +,{"_id":{"$oid":"55cba2476c522cafdb0587c7"},"location":{"coordinates":[-73.9990371,40.7152474],"type":"Point"},"name":"Next Bar \u0026 Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb0587c8"},"location":{"coordinates":[-73.9493207,40.784631],"type":"Point"},"name":"Dunkin Donuts Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb0587c9"},"location":{"coordinates":[-73.8324039,40.846549],"type":"Point"},"name":"Pelham Bay Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0587ca"},"location":{"coordinates":[-73.977251,40.7850197],"type":"Point"},"name":"Treat House"} +,{"_id":{"$oid":"55cba2476c522cafdb0587cb"},"location":{"coordinates":[-73.8374947,40.696891],"type":"Point"},"name":"New Bkhatar Afghan Halal Kabab \u0026 Gyro King"} +,{"_id":{"$oid":"55cba2476c522cafdb0587cc"},"location":{"coordinates":[-73.8547972,40.8363521],"type":"Point"},"name":"Neerob"} +,{"_id":{"$oid":"55cba2476c522cafdb0587cd"},"location":{"coordinates":[-73.7545604,40.6061718],"type":"Point"},"name":"Roberts Delight Caribbean \u0026 American Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0587ce"},"location":{"coordinates":[-73.917354,40.8398911],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0587cf"},"location":{"coordinates":[-73.8331427,40.7637339],"type":"Point"},"name":"Club Hedon"} +,{"_id":{"$oid":"55cba2476c522cafdb0587d0"},"location":{"coordinates":[-74.00224299999999,40.601605],"type":"Point"},"name":"Kung Fu Japanese \u0026 Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0587d1"},"location":{"coordinates":[-73.9952449,40.7441946],"type":"Point"},"name":"Super Taco Express"} +,{"_id":{"$oid":"55cba2476c522cafdb0587d2"},"location":{"coordinates":[-73.988923,40.764083],"type":"Point"},"name":"Atlas Social Club"} +,{"_id":{"$oid":"55cba2476c522cafdb0587d3"},"location":{"coordinates":[-73.9084216,40.6622847],"type":"Point"},"name":"Wing Luck Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0587d4"},"location":{"coordinates":[-73.9793564,40.7589426],"type":"Point"},"name":"Jamba Juice"} +,{"_id":{"$oid":"55cba2476c522cafdb0587d5"},"location":{"coordinates":[-73.8774625,40.8714885],"type":"Point"},"name":"Empanadas Monumental 366 East 204Th Street"} +,{"_id":{"$oid":"55cba2476c522cafdb0587d6"},"location":{"coordinates":[-73.98519499999999,40.752342],"type":"Point"},"name":"Refinery Rooftop"} +,{"_id":{"$oid":"55cba2476c522cafdb0587d7"},"location":{"coordinates":[-73.98519499999999,40.752342],"type":"Point"},"name":"Refinery Lobby Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0587d8"},"location":{"coordinates":[-74.01321329999999,40.7013064],"type":"Point"},"name":"Kwik Stop Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0587d9"},"location":{"coordinates":[-73.9394446,40.8215751],"type":"Point"},"name":"Cea-Lo Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0587da"},"location":{"coordinates":[-73.9827727,40.7239594],"type":"Point"},"name":"Black Iron Burger"} +,{"_id":{"$oid":"55cba2476c522cafdb0587db"},"location":{"coordinates":[-73.843279,40.686183],"type":"Point"},"name":"Amelio Russo Civic"} +,{"_id":{"$oid":"55cba2476c522cafdb0587dc"},"location":{"coordinates":[-73.8706606,40.7342757],"type":"Point"},"name":"Gloria Jean'S Coffees"} +,{"_id":{"$oid":"55cba2476c522cafdb0587dd"},"location":{"coordinates":[-74.0032824,40.7319341],"type":"Point"},"name":"Bantam Bagels"} +,{"_id":{"$oid":"55cba2476c522cafdb0587de"},"location":{"coordinates":[-73.9893869,40.7485519],"type":"Point"},"name":"Pret A Manger"} +,{"_id":{"$oid":"55cba2476c522cafdb0587df"},"location":{"coordinates":[-73.974722,40.755556],"type":"Point"},"name":"Mac Juice"} +,{"_id":{"$oid":"55cba2476c522cafdb0587e0"},"location":{"coordinates":[-73.9731189,40.792263],"type":"Point"},"name":"Green Generation Nyc Inc"} +,{"_id":{"$oid":"55cba2476c522cafdb0587e1"},"location":{"coordinates":[-74.00499769999999,40.6089695],"type":"Point"},"name":"Tasty Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb0587e2"},"location":{"coordinates":[-73.80625859999999,40.7122991],"type":"Point"},"name":"Panorama Of My Silence-Heart"} +,{"_id":{"$oid":"55cba2476c522cafdb0587e3"},"location":{"coordinates":[-73.988055,40.765274],"type":"Point"},"name":"Merilu Pizza Al Metro"} +,{"_id":{"$oid":"55cba2476c522cafdb0587e4"},"location":{"coordinates":[-74.17616699999999,40.5404089],"type":"Point"},"name":"Crown Palace Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0587e5"},"location":{"coordinates":[-73.9577139,40.8160371],"type":"Point"},"name":"Taco Hut"} +,{"_id":{"$oid":"55cba2476c522cafdb0587e6"},"location":{"coordinates":[-73.9525932,40.7802249],"type":"Point"},"name":"Ooki Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb0587e7"},"location":{"coordinates":[-73.83227099999999,40.76052500000001],"type":"Point"},"name":"Yummy Sushi House"} +,{"_id":{"$oid":"55cba2476c522cafdb0587e8"},"location":{"coordinates":[-73.83670599999999,40.582718],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0587e9"},"location":{"coordinates":[-73.9665674,40.7605218],"type":"Point"},"name":"Bloom'S Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb0587ea"},"location":{"coordinates":[-73.86985299999999,40.747155],"type":"Point"},"name":"Marios Pizzeria \u0026 Caffe"} +,{"_id":{"$oid":"55cba2476c522cafdb0587eb"},"location":{"coordinates":[-73.95351339999999,40.7452207],"type":"Point"},"name":"Woodbines"} +,{"_id":{"$oid":"55cba2476c522cafdb0587ec"},"location":{"coordinates":[-73.84291,40.6950253],"type":"Point"},"name":"Toms Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0587ed"},"location":{"coordinates":[-73.84675899999999,40.8705556],"type":"Point"},"name":"Constant Spring Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0587ee"},"location":{"coordinates":[-73.84252599999999,40.889114],"type":"Point"},"name":"Golden Fountain Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0587ef"},"location":{"coordinates":[-73.9854578,40.727888],"type":"Point"},"name":"Rustico"} +,{"_id":{"$oid":"55cba2476c522cafdb0587f0"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"Wingtips Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb0587f1"},"location":{"coordinates":[-73.841657,40.695017],"type":"Point"},"name":"Elixir Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb0587f2"},"location":{"coordinates":[-73.92008899999999,40.743711],"type":"Point"},"name":"Venturo Osteria \u0026Wine Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0587f3"},"location":{"coordinates":[-73.989063,40.719878],"type":"Point"},"name":"Contra"} +,{"_id":{"$oid":"55cba2476c522cafdb0587f4"},"location":{"coordinates":[-73.9970936,40.7425459],"type":"Point"},"name":"Sushi 21"} +,{"_id":{"$oid":"55cba2476c522cafdb0587f5"},"location":{"coordinates":[-73.99001679999999,40.7154746],"type":"Point"},"name":"Les Crepes"} +,{"_id":{"$oid":"55cba2476c522cafdb0587f6"},"location":{"coordinates":[-73.91499189999999,40.6856577],"type":"Point"},"name":"Crown Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb0587f7"},"location":{"coordinates":[-73.9736549,40.7838652],"type":"Point"},"name":"Juice Press"} +,{"_id":{"$oid":"55cba2476c522cafdb0587f8"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"Cascata"} +,{"_id":{"$oid":"55cba2476c522cafdb0587f9"},"location":{"coordinates":[-73.94102409999999,40.7554085],"type":"Point"},"name":"Asian Halal Food Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0587fa"},"location":{"coordinates":[-73.82443599999999,40.68639],"type":"Point"},"name":"Tropical Isle Carribean Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0587fb"},"location":{"coordinates":[-73.9888315,40.7592179],"type":"Point"},"name":"Il Forno/Iron Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0587fc"},"location":{"coordinates":[-73.8655919,40.8780802],"type":"Point"},"name":"Golden Crust"} +,{"_id":{"$oid":"55cba2476c522cafdb0587fd"},"location":{"coordinates":[-73.9380714,40.84810470000001],"type":"Point"},"name":"John'S Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb0587fe"},"location":{"coordinates":[-73.8665,40.8315259],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb0587ff"},"location":{"coordinates":[-73.949867,40.592955],"type":"Point"},"name":"Ginza Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb058800"},"location":{"coordinates":[-73.99969329999999,40.7175831],"type":"Point"},"name":"Tj'S Coffee World"} +,{"_id":{"$oid":"55cba2476c522cafdb058801"},"location":{"coordinates":[-73.8710796,40.7488391],"type":"Point"},"name":"Chiflez"} +,{"_id":{"$oid":"55cba2476c522cafdb058802"},"location":{"coordinates":[-73.7845456,40.7407367],"type":"Point"},"name":"Hooters Of Fresh Meadows"} +,{"_id":{"$oid":"55cba2476c522cafdb058803"},"location":{"coordinates":[-73.8741234,40.74321459999999],"type":"Point"},"name":"Mi Otra Casa Rest Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb058804"},"location":{"coordinates":[-74.0050107,40.7161534],"type":"Point"},"name":"Arome"} +,{"_id":{"$oid":"55cba2476c522cafdb058805"},"location":{"coordinates":[-73.9444142,40.5999601],"type":"Point"},"name":"A. Kawaii Japanese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058806"},"location":{"coordinates":[-73.972903,40.761029],"type":"Point"},"name":"Gregory'S Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb058807"},"location":{"coordinates":[-73.99458,40.615146],"type":"Point"},"name":"Sing Wen Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058808"},"location":{"coordinates":[-73.7803058,40.753117],"type":"Point"},"name":"Ymc Good Taste Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058809"},"location":{"coordinates":[-73.9561586,40.8138703],"type":"Point"},"name":"Jesus Taco"} +,{"_id":{"$oid":"55cba2476c522cafdb05880a"},"location":{"coordinates":[-73.8916595,40.7278209],"type":"Point"},"name":"Halal Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb05880b"},"location":{"coordinates":[-73.9478341,40.8255471],"type":"Point"},"name":"Holy Moly (Jesus' Taco)"} +,{"_id":{"$oid":"55cba2476c522cafdb05880c"},"location":{"coordinates":[-73.967945,40.756148],"type":"Point"},"name":"Mxco"} +,{"_id":{"$oid":"55cba2476c522cafdb05880d"},"location":{"coordinates":[-73.98744649999999,40.7193235],"type":"Point"},"name":"Davidovich Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb05880e"},"location":{"coordinates":[-73.8290939,40.759362],"type":"Point"},"name":"Sichuan Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb05880f"},"location":{"coordinates":[-74.00671419999999,40.7094706],"type":"Point"},"name":"Oren'S Daily Roast"} +,{"_id":{"$oid":"55cba2476c522cafdb058810"},"location":{"coordinates":[-73.940585,40.792663],"type":"Point"},"name":"Cascalote Latin Bistro"} +,{"_id":{"$oid":"55cba2476c522cafdb058811"},"location":{"coordinates":[-73.9979074,40.7141309],"type":"Point"},"name":"Audrey Bakery \u0026 Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058812"},"location":{"coordinates":[-73.98527469999999,40.6384819],"type":"Point"},"name":"Las Marinas Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058813"},"location":{"coordinates":[-73.9809661,40.7647373],"type":"Point"},"name":"Central Market"} +,{"_id":{"$oid":"55cba2476c522cafdb058814"},"location":{"coordinates":[-73.95228,40.819394],"type":"Point"},"name":"Home Sweet Harlem"} +,{"_id":{"$oid":"55cba2476c522cafdb058815"},"location":{"coordinates":[-73.96923079999999,40.6892866],"type":"Point"},"name":"The Great Georgiana"} +,{"_id":{"$oid":"55cba2476c522cafdb058816"},"location":{"coordinates":[-73.8982879,40.8896568],"type":"Point"},"name":"Burrito Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb058817"},"location":{"coordinates":[-73.9517857,40.8089556],"type":"Point"},"name":"Serengeti Teas \u0026 Spices"} +,{"_id":{"$oid":"55cba2476c522cafdb058818"},"location":{"coordinates":[-73.9478697,40.5888815],"type":"Point"},"name":"Aziza 7 Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058819"},"location":{"coordinates":[-73.8911677,40.7471472],"type":"Point"},"name":"Jackson Heights Halal Gyro King"} +,{"_id":{"$oid":"55cba2476c522cafdb05881a"},"location":{"coordinates":[-73.885736,40.749847],"type":"Point"},"name":"Rainbow Berry"} +,{"_id":{"$oid":"55cba2476c522cafdb05881b"},"location":{"coordinates":[-73.9594489,40.5792967],"type":"Point"},"name":"Nasheman Grill \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05881c"},"location":{"coordinates":[-73.9440766,40.7111069],"type":"Point"},"name":"La Nortena"} +,{"_id":{"$oid":"55cba2476c522cafdb05881d"},"location":{"coordinates":[-73.78278,40.6698198],"type":"Point"},"name":"Yummy Yummy Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05881e"},"location":{"coordinates":[-73.9566225,40.7716427],"type":"Point"},"name":"Caffe Noi Espresso Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05881f"},"location":{"coordinates":[-73.9884716,40.69277659999999],"type":"Point"},"name":"Orange Leaf"} +,{"_id":{"$oid":"55cba2476c522cafdb058820"},"location":{"coordinates":[-73.97541319999999,40.7872217],"type":"Point"},"name":"Orange Leaf"} +,{"_id":{"$oid":"55cba2476c522cafdb058821"},"location":{"coordinates":[-73.9689099,40.638253],"type":"Point"},"name":"Chabba Bbq/ Family Grill \u0026 Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb058822"},"location":{"coordinates":[-73.97970649999999,40.6428905],"type":"Point"},"name":"Kabir'S Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb058823"},"location":{"coordinates":[-73.9632164,40.6341885],"type":"Point"},"name":"Kabir'S Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb058824"},"location":{"coordinates":[-73.8335488,40.7624882],"type":"Point"},"name":"H K Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb058825"},"location":{"coordinates":[-73.989767,40.759495],"type":"Point"},"name":"Beer Culture"} +,{"_id":{"$oid":"55cba2476c522cafdb058826"},"location":{"coordinates":[-73.9875292,40.7291249],"type":"Point"},"name":"Otto'S Tacos"} +,{"_id":{"$oid":"55cba2476c522cafdb058827"},"location":{"coordinates":[-73.9479673,40.7495386],"type":"Point"},"name":"The Local Nyc"} +,{"_id":{"$oid":"55cba2476c522cafdb058828"},"location":{"coordinates":[-73.9688778,40.689249],"type":"Point"},"name":"Hoja Santa"} +,{"_id":{"$oid":"55cba2476c522cafdb058829"},"location":{"coordinates":[-73.8120725,40.5888798],"type":"Point"},"name":"Rockaway Beach Surf Club"} +,{"_id":{"$oid":"55cba2476c522cafdb05882a"},"location":{"coordinates":[-74.0210047,40.6340644],"type":"Point"},"name":"New Halal Kitchen Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb05882b"},"location":{"coordinates":[-73.93087109999999,40.8535475],"type":"Point"},"name":"Grito Mexican Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb05882c"},"location":{"coordinates":[-73.95318639999999,40.7762324],"type":"Point"},"name":"Asian Station"} +,{"_id":{"$oid":"55cba2476c522cafdb05882d"},"location":{"coordinates":[-73.9746566,40.7516166],"type":"Point"},"name":"Roti Mediterranean Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb05882e"},"location":{"coordinates":[-73.90903,40.8227959],"type":"Point"},"name":"K \u0026 L Restaurant And Catering Service"} +,{"_id":{"$oid":"55cba2476c522cafdb05882f"},"location":{"coordinates":[-73.91023,40.824749],"type":"Point"},"name":"Casa Del Salmon #2"} +,{"_id":{"$oid":"55cba2476c522cafdb058830"},"location":{"coordinates":[-73.97346,40.645575],"type":"Point"},"name":"Primavera Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058831"},"location":{"coordinates":[-73.91957529999999,40.86144850000001],"type":"Point"},"name":"Vacca Grill \u0026 Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb058832"},"location":{"coordinates":[-73.9651665,40.8002426],"type":"Point"},"name":"Makana"} +,{"_id":{"$oid":"55cba2476c522cafdb058833"},"location":{"coordinates":[-74.0834065,40.6032401],"type":"Point"},"name":"Golden Star"} +,{"_id":{"$oid":"55cba2476c522cafdb058834"},"location":{"coordinates":[-73.9026631,40.8162122],"type":"Point"},"name":"Rm Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb058835"},"location":{"coordinates":[-73.957161,40.711799],"type":"Point"},"name":"Jackbar"} +,{"_id":{"$oid":"55cba2476c522cafdb058836"},"location":{"coordinates":[-73.950504,40.661971],"type":"Point"},"name":"Les Cayes, Inc."} +,{"_id":{"$oid":"55cba2476c522cafdb058837"},"location":{"coordinates":[-73.98032719999999,40.7579779],"type":"Point"},"name":"Delis 48"} +,{"_id":{"$oid":"55cba2476c522cafdb058838"},"location":{"coordinates":[-73.820892,40.7672664],"type":"Point"},"name":"Recuerdo Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058839"},"location":{"coordinates":[-73.8881897,40.8539386],"type":"Point"},"name":"Kulla"} +,{"_id":{"$oid":"55cba2476c522cafdb05883a"},"location":{"coordinates":[-73.9562856,40.7139315],"type":"Point"},"name":"Onomea"} +,{"_id":{"$oid":"55cba2476c522cafdb05883b"},"location":{"coordinates":[-73.9093329,40.6641167],"type":"Point"},"name":"Wah Yung"} +,{"_id":{"$oid":"55cba2476c522cafdb05883c"},"location":{"coordinates":[-73.8573773,40.8615656],"type":"Point"},"name":"Yang'S Happy Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb05883d"},"location":{"coordinates":[-73.8983191,40.8895935],"type":"Point"},"name":"Stiff Weasel Grill + Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb05883e"},"location":{"coordinates":[-73.9241866,40.743399],"type":"Point"},"name":"Oasis Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05883f"},"location":{"coordinates":[-73.9503488,40.707544],"type":"Point"},"name":"Mango Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058840"},"location":{"coordinates":[-73.95868349999999,40.722099],"type":"Point"},"name":"Verboten"} +,{"_id":{"$oid":"55cba2476c522cafdb058841"},"location":{"coordinates":[-73.904138,40.700165],"type":"Point"},"name":"Bella Sera Pizza "} +,{"_id":{"$oid":"55cba2476c522cafdb058842"},"location":{"coordinates":[-73.8756128,40.8265969],"type":"Point"},"name":"New Lucky Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb058843"},"location":{"coordinates":[-74.0031484,40.61051519999999],"type":"Point"},"name":"Panino Rustico"} +,{"_id":{"$oid":"55cba2476c522cafdb058844"},"location":{"coordinates":[-73.9904822,40.6732078],"type":"Point"},"name":"The Bahche"} +,{"_id":{"$oid":"55cba2476c522cafdb058845"},"location":{"coordinates":[-73.912784,40.715075],"type":"Point"},"name":"La Lampara Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058846"},"location":{"coordinates":[-73.915976,40.64947919999999],"type":"Point"},"name":"A \u0026 C Coffee Shop And Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb058847"},"location":{"coordinates":[-73.8855118,40.8547274],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb058848"},"location":{"coordinates":[-73.770686,40.76375],"type":"Point"},"name":"Pyramids Hookah And Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb058849"},"location":{"coordinates":[-73.9584132,40.7169901],"type":"Point"},"name":"Williamsburg Creamery"} +,{"_id":{"$oid":"55cba2476c522cafdb05884a"},"location":{"coordinates":[-73.99250169999999,40.7234209],"type":"Point"},"name":"Paulaner Brauhaus"} +,{"_id":{"$oid":"55cba2476c522cafdb05884b"},"location":{"coordinates":[-73.834304,40.86792],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb05884c"},"location":{"coordinates":[-73.796707,40.5908378],"type":"Point"},"name":"Thai Kitchen By The Sea"} +,{"_id":{"$oid":"55cba2476c522cafdb05884d"},"location":{"coordinates":[-73.96397619999999,40.6827058],"type":"Point"},"name":"Energy Fuel"} +,{"_id":{"$oid":"55cba2476c522cafdb05884e"},"location":{"coordinates":[-73.9388389,40.8418688],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb05884f"},"location":{"coordinates":[-74.0120393,40.6361739],"type":"Point"},"name":"Popeye'S Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb058850"},"location":{"coordinates":[-73.90283699999999,40.910131],"type":"Point"},"name":"Nona'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb058851"},"location":{"coordinates":[-74.16420579999999,40.6262656],"type":"Point"},"name":"Yummy Machi"} +,{"_id":{"$oid":"55cba2476c522cafdb058852"},"location":{"coordinates":[-73.8855919,40.8618662],"type":"Point"},"name":"Zime Bistro"} +,{"_id":{"$oid":"55cba2476c522cafdb058853"},"location":{"coordinates":[-73.8855919,40.8618662],"type":"Point"},"name":"Stg In Keating Hall"} +,{"_id":{"$oid":"55cba2476c522cafdb058854"},"location":{"coordinates":[-73.98952609999999,40.7507917],"type":"Point"},"name":"Starbucks Coffee (Store#20161)"} +,{"_id":{"$oid":"55cba2476c522cafdb058855"},"location":{"coordinates":[-74.0072831,40.7048253],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb058856"},"location":{"coordinates":[-92.72786699999999,41.7461428],"type":"Point"},"name":"Deli \u0026 Grocery"} +,{"_id":{"$oid":"55cba2476c522cafdb058857"},"location":{"coordinates":[-73.99160549999999,40.7543349],"type":"Point"},"name":"Hit Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058858"},"location":{"coordinates":[-73.9848403,40.73994640000001],"type":"Point"},"name":"Frank'S Express Pizza Inc"} +,{"_id":{"$oid":"55cba2476c522cafdb058859"},"location":{"coordinates":[-73.983226,40.74397500000001],"type":"Point"},"name":"Fresh \u0026 Co"} +,{"_id":{"$oid":"55cba2476c522cafdb05885a"},"location":{"coordinates":[-73.9134411,40.82028469999999],"type":"Point"},"name":"Don Sabor Dominican Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05885b"},"location":{"coordinates":[-73.9347068,40.697429],"type":"Point"},"name":"Bizarre"} +,{"_id":{"$oid":"55cba2476c522cafdb05885c"},"location":{"coordinates":[-73.9185869,40.8682899],"type":"Point"},"name":"Dolce Vida"} +,{"_id":{"$oid":"55cba2476c522cafdb05885d"},"location":{"coordinates":[-74.0084111,40.656469],"type":"Point"},"name":"Ninja Bubble Tea"} +,{"_id":{"$oid":"55cba2476c522cafdb05885e"},"location":{"coordinates":[-73.89680299999999,40.706877],"type":"Point"},"name":"China Taco Dish"} +,{"_id":{"$oid":"55cba2476c522cafdb05885f"},"location":{"coordinates":[-73.89613,40.674296],"type":"Point"},"name":"Halal Fried Chicken \u0026 Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb058860"},"location":{"coordinates":[-73.9999749,40.735162],"type":"Point"},"name":"Virgola"} +,{"_id":{"$oid":"55cba2476c522cafdb058861"},"location":{"coordinates":[-73.99766900000002,40.717836],"type":"Point"},"name":"City Eclair"} +,{"_id":{"$oid":"55cba2476c522cafdb058862"},"location":{"coordinates":[-73.9989975,40.6048009],"type":"Point"},"name":"Healthdelicious"} +,{"_id":{"$oid":"55cba2476c522cafdb058863"},"location":{"coordinates":[-73.9634374,40.6748771],"type":"Point"},"name":"Yummy Taco"} +,{"_id":{"$oid":"55cba2476c522cafdb058864"},"location":{"coordinates":[-74.005291,40.738321],"type":"Point"},"name":"Hudson Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058865"},"location":{"coordinates":[-73.9976762,40.604964],"type":"Point"},"name":"New Way Cooking"} +,{"_id":{"$oid":"55cba2476c522cafdb058866"},"location":{"coordinates":[-73.9125893,40.7664377],"type":"Point"},"name":"Casa Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb058867"},"location":{"coordinates":[-73.9086291,40.69076949999999],"type":"Point"},"name":"Liu Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb058868"},"location":{"coordinates":[-73.9967513,40.762384],"type":"Point"},"name":"Roadside"} +,{"_id":{"$oid":"55cba2476c522cafdb058869"},"location":{"coordinates":[-73.9029352,40.6998697],"type":"Point"},"name":"Grace Chinese Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb05886a"},"location":{"coordinates":[-73.976309,40.761681],"type":"Point"},"name":"Il Gattopardo"} +,{"_id":{"$oid":"55cba2476c522cafdb05886b"},"location":{"coordinates":[-73.9924376,40.7594427],"type":"Point"},"name":"Bea"} +,{"_id":{"$oid":"55cba2476c522cafdb05886c"},"location":{"coordinates":[-73.9862218,40.7398083],"type":"Point"},"name":"Mywaycup Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb05886d"},"location":{"coordinates":[-73.95267059999999,40.8189025],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb05886e"},"location":{"coordinates":[-73.9809661,40.7647373],"type":"Point"},"name":"Park Central Hotel Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb05886f"},"location":{"coordinates":[-73.9283028,40.8664495],"type":"Point"},"name":"Vida Enterprises Inc."} +,{"_id":{"$oid":"55cba2476c522cafdb058870"},"location":{"coordinates":[-73.9130026,40.6356968],"type":"Point"},"name":"New Topps Bakery \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058871"},"location":{"coordinates":[-73.987416,40.721383],"type":"Point"},"name":"Taquitoria"} +,{"_id":{"$oid":"55cba2476c522cafdb058872"},"location":{"coordinates":[-74.017256,40.641576],"type":"Point"},"name":"The Mug Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058873"},"location":{"coordinates":[-74.0059059,40.7075821],"type":"Point"},"name":"Subway/Carvel"} +,{"_id":{"$oid":"55cba2476c522cafdb058874"},"location":{"coordinates":[-73.8324822,40.7635066],"type":"Point"},"name":"Zhiqing Activity Center"} +,{"_id":{"$oid":"55cba2476c522cafdb058875"},"location":{"coordinates":[-73.81344,40.762474],"type":"Point"},"name":"Old Days"} +,{"_id":{"$oid":"55cba2476c522cafdb058876"},"location":{"coordinates":[-73.7971565,40.5904747],"type":"Point"},"name":"Checkers"} +,{"_id":{"$oid":"55cba2476c522cafdb058877"},"location":{"coordinates":[-73.863416,40.758011],"type":"Point"},"name":"Ilusion Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb058878"},"location":{"coordinates":[-73.9058951,40.7453694],"type":"Point"},"name":"Delicias Ambatenas"} +,{"_id":{"$oid":"55cba2476c522cafdb058879"},"location":{"coordinates":[-73.9222698,40.6102229],"type":"Point"},"name":"Plaza King Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb05887a"},"location":{"coordinates":[-73.8119387,40.5874821],"type":"Point"},"name":"Playland Motel"} +,{"_id":{"$oid":"55cba2476c522cafdb05887b"},"location":{"coordinates":[-73.9844202,40.67103950000001],"type":"Point"},"name":"Bar Reis"} +,{"_id":{"$oid":"55cba2476c522cafdb05887c"},"location":{"coordinates":[-73.9827316,40.7644445],"type":"Point"},"name":"Courtyard \u0026 Residence Inn By Marriott Central Park"} +,{"_id":{"$oid":"55cba2476c522cafdb05887d"},"location":{"coordinates":[-73.9227463,40.6703807],"type":"Point"},"name":"Crown Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb05887e"},"location":{"coordinates":[-74.0113113,40.7139004],"type":"Point"},"name":"Barclay Street Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05887f"},"location":{"coordinates":[-73.9413641,40.6801599],"type":"Point"},"name":"Capitoline Grounds"} +,{"_id":{"$oid":"55cba2476c522cafdb058880"},"location":{"coordinates":[-73.99126919999999,40.7523893],"type":"Point"},"name":"Asura Asian Bistro"} +,{"_id":{"$oid":"55cba2476c522cafdb058881"},"location":{"coordinates":[-73.833541,40.759974],"type":"Point"},"name":"Diverse Dim Sum"} +,{"_id":{"$oid":"55cba2476c522cafdb058882"},"location":{"coordinates":[-73.979114,40.743791],"type":"Point"},"name":"Dough Boys Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb058883"},"location":{"coordinates":[-73.9107659,40.7062056],"type":"Point"},"name":"Back To Nature"} +,{"_id":{"$oid":"55cba2476c522cafdb058884"},"location":{"coordinates":[-73.9907815,40.7554423],"type":"Point"},"name":"Port Authority Food Court"} +,{"_id":{"$oid":"55cba2476c522cafdb058885"},"location":{"coordinates":[-74.011746,40.6286569],"type":"Point"},"name":"Southeast Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb058886"},"location":{"coordinates":[-73.98146740000001,40.75023590000001],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb058887"},"location":{"coordinates":[-73.8350802,40.7555025],"type":"Point"},"name":"Today Sports Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb058888"},"location":{"coordinates":[-74.0044906,40.7318015],"type":"Point"},"name":"Sushi Nakazawa"} +,{"_id":{"$oid":"55cba2476c522cafdb058889"},"location":{"coordinates":[-74.1783529,40.5411522],"type":"Point"},"name":"Ocean Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb05888a"},"location":{"coordinates":[-74.033316,40.61361],"type":"Point"},"name":"Campania Coal Fired Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05888b"},"location":{"coordinates":[-73.7806319,40.7296641],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb05888c"},"location":{"coordinates":[-73.950097,40.779571],"type":"Point"},"name":"Tenzan Japanese Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb05888d"},"location":{"coordinates":[-73.9817205,40.785613],"type":"Point"},"name":"80 Riverside Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05888e"},"location":{"coordinates":[-73.9967972,40.7326143],"type":"Point"},"name":"Margaux"} +,{"_id":{"$oid":"55cba2476c522cafdb05888f"},"location":{"coordinates":[-73.945893,40.707307],"type":"Point"},"name":"Brooklyn Ball Factory"} +,{"_id":{"$oid":"55cba2476c522cafdb058890"},"location":{"coordinates":[-73.9967513,40.762384],"type":"Point"},"name":"Court Street Grocers"} +,{"_id":{"$oid":"55cba2476c522cafdb058891"},"location":{"coordinates":[-73.9967513,40.762384],"type":"Point"},"name":"El Colmado"} +,{"_id":{"$oid":"55cba2476c522cafdb058892"},"location":{"coordinates":[-73.979792,40.7266432],"type":"Point"},"name":"Donostia"} +,{"_id":{"$oid":"55cba2476c522cafdb058893"},"location":{"coordinates":[-74.004989,40.729021],"type":"Point"},"name":"Vien Nyc"} +,{"_id":{"$oid":"55cba2476c522cafdb058894"},"location":{"coordinates":[-73.9967513,40.762384],"type":"Point"},"name":"Blue Bottle Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb058895"},"location":{"coordinates":[-73.96511939999999,40.75532949999999],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb058896"},"location":{"coordinates":[-73.9908148,40.7143239],"type":"Point"},"name":"Dimes"} +,{"_id":{"$oid":"55cba2476c522cafdb058897"},"location":{"coordinates":[-74.076404,40.6275199],"type":"Point"},"name":"Island Bay Grill \u0026 Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb058898"},"location":{"coordinates":[-73.966606,40.681246],"type":"Point"},"name":"Kinanm Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb058899"},"location":{"coordinates":[-73.8647986,40.8713808],"type":"Point"},"name":"Harmony Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb05889a"},"location":{"coordinates":[-73.9556487,40.7078567],"type":"Point"},"name":"Dotory"} +,{"_id":{"$oid":"55cba2476c522cafdb05889b"},"location":{"coordinates":[-73.9864387,40.7473643],"type":"Point"},"name":"Miss Korea Barbecue ''Sun''"} +,{"_id":{"$oid":"55cba2476c522cafdb05889c"},"location":{"coordinates":[-73.93992200000001,40.751693],"type":"Point"},"name":"The Baroness Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05889d"},"location":{"coordinates":[-73.91784,40.668925],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb05889e"},"location":{"coordinates":[-73.8098449,40.7568345],"type":"Point"},"name":"Chen Mommy Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb05889f"},"location":{"coordinates":[-74.0295297,40.6173379],"type":"Point"},"name":"Lock Yard"} +,{"_id":{"$oid":"55cba2476c522cafdb0588a0"},"location":{"coordinates":[-73.9746739,40.67616599999999],"type":"Point"},"name":"Olieng Thai Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0588a1"},"location":{"coordinates":[-73.9032175,40.7465064],"type":"Point"},"name":"Sweet Basil Thai Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb0588a2"},"location":{"coordinates":[-73.8811465,40.7015596],"type":"Point"},"name":"No Name Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0588a3"},"location":{"coordinates":[-73.8815348,40.828175],"type":"Point"},"name":"Domino'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0588a4"},"location":{"coordinates":[-73.81525069999999,40.729243],"type":"Point"},"name":"Crown Grill Fried Chicken \u0026 Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0588a5"},"location":{"coordinates":[-73.99462799999999,40.7207549],"type":"Point"},"name":"The Buthcher'S Daughter Market"} +,{"_id":{"$oid":"55cba2476c522cafdb0588a6"},"location":{"coordinates":[-73.9448269,40.68803219999999],"type":"Point"},"name":"Crown Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb0588a7"},"location":{"coordinates":[-73.8788141,40.82837689999999],"type":"Point"},"name":"Papa John"} +,{"_id":{"$oid":"55cba2476c522cafdb0588a8"},"location":{"coordinates":[-73.8678429,40.752579],"type":"Point"},"name":"La Reina Del Sur Restaurant \u0026 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0588a9"},"location":{"coordinates":[-73.8599108,40.7312853],"type":"Point"},"name":"Marani Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0588aa"},"location":{"coordinates":[-73.72778,40.690544],"type":"Point"},"name":"Detoxx Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0588ab"},"location":{"coordinates":[-73.82466,40.685812],"type":"Point"},"name":"Sonny'S Roti Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb0588ac"},"location":{"coordinates":[-73.8459791,40.7836797],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0588ad"},"location":{"coordinates":[-74.00516979999999,40.6393776],"type":"Point"},"name":"Kings Kitchen A"} +,{"_id":{"$oid":"55cba2476c522cafdb0588ae"},"location":{"coordinates":[-73.9170286,40.8173253],"type":"Point"},"name":"Hong Kong Jackie Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0588af"},"location":{"coordinates":[-73.833945,40.683858],"type":"Point"},"name":"T \u0026 G International Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb0588b0"},"location":{"coordinates":[-73.99761099999999,40.737369],"type":"Point"},"name":"Comebuy"} +,{"_id":{"$oid":"55cba2476c522cafdb0588b1"},"location":{"coordinates":[-73.9869679,40.7624439],"type":"Point"},"name":"Blue Dog Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0588b2"},"location":{"coordinates":[-73.99761099999999,40.737369],"type":"Point"},"name":"C Bao"} +,{"_id":{"$oid":"55cba2476c522cafdb0588b3"},"location":{"coordinates":[-74.0100157,40.7487245],"type":"Point"},"name":"Manhattan Elite"} +,{"_id":{"$oid":"55cba2476c522cafdb0588b4"},"location":{"coordinates":[-73.9581084,40.7105531],"type":"Point"},"name":"Daily Press Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0588b5"},"location":{"coordinates":[-73.98765999999999,40.764331],"type":"Point"},"name":"Ahi Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb0588b6"},"location":{"coordinates":[-73.98205349999999,40.6879716],"type":"Point"},"name":"Siz-In-Pan"} +,{"_id":{"$oid":"55cba2476c522cafdb0588b7"},"location":{"coordinates":[-73.80319899999999,40.70784099999999],"type":"Point"},"name":"H20 Lounge And Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0588b8"},"location":{"coordinates":[-73.9405598,40.8225635],"type":"Point"},"name":"Mountain Bird"} +,{"_id":{"$oid":"55cba2476c522cafdb0588b9"},"location":{"coordinates":[-73.9548334,40.6726773],"type":"Point"},"name":"Pelzer'S Of Philadelphia Pretzels"} +,{"_id":{"$oid":"55cba2476c522cafdb0588ba"},"location":{"coordinates":[-73.921829,40.705651],"type":"Point"},"name":"Desi Grill Indian Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb0588bb"},"location":{"coordinates":[-73.9952208,40.730835],"type":"Point"},"name":"Ramen Takumi"} +,{"_id":{"$oid":"55cba2476c522cafdb0588bc"},"location":{"coordinates":[-73.92994929999999,40.65025989999999],"type":"Point"},"name":"China Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0588bd"},"location":{"coordinates":[-74.02086,40.634593],"type":"Point"},"name":"Damascus Gate"} +,{"_id":{"$oid":"55cba2476c522cafdb0588be"},"location":{"coordinates":[-73.9401206,40.83016850000001],"type":"Point"},"name":"Los Bravos"} +,{"_id":{"$oid":"55cba2476c522cafdb0588bf"},"location":{"coordinates":[-73.99288469999999,40.7132979],"type":"Point"},"name":"Fairfield Inn \u0026 Suites"} +,{"_id":{"$oid":"55cba2476c522cafdb0588c0"},"location":{"coordinates":[-73.8729,40.751179],"type":"Point"},"name":"Bella Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0588c1"},"location":{"coordinates":[-73.92177699999999,40.817434],"type":"Point"},"name":"Lily Restaurant \u0026 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0588c2"},"location":{"coordinates":[-73.882469,40.8110261],"type":"Point"},"name":"Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0588c3"},"location":{"coordinates":[-73.9080464,40.6976173],"type":"Point"},"name":"Nueva Vision 852"} +,{"_id":{"$oid":"55cba2476c522cafdb0588c4"},"location":{"coordinates":[-73.92675849999999,40.8641472],"type":"Point"},"name":"Dyckman Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0588c5"},"location":{"coordinates":[-73.9165728,40.6266001],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0588c6"},"location":{"coordinates":[-73.978478,40.7645539],"type":"Point"},"name":"The Kingside"} +,{"_id":{"$oid":"55cba2476c522cafdb0588c7"},"location":{"coordinates":[-73.849625,40.8245689],"type":"Point"},"name":"El Valle Tipico Restaurant Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb0588c8"},"location":{"coordinates":[-73.98479999999999,40.749968],"type":"Point"},"name":"Suite 36/Pulp"} +,{"_id":{"$oid":"55cba2476c522cafdb0588c9"},"location":{"coordinates":[-73.936876,40.7449295],"type":"Point"},"name":"Kung Fu Tea"} +,{"_id":{"$oid":"55cba2476c522cafdb0588ca"},"location":{"coordinates":[-73.98716449999999,40.74761549999999],"type":"Point"},"name":"Shanghai Mong"} +,{"_id":{"$oid":"55cba2476c522cafdb0588cb"},"location":{"coordinates":[-73.9525238,40.8046956],"type":"Point"},"name":"The Cecil/Minton'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0588cc"},"location":{"coordinates":[-73.9857485,40.6162534],"type":"Point"},"name":"Asian Fusion"} +,{"_id":{"$oid":"55cba2476c522cafdb0588cd"},"location":{"coordinates":[-73.98286829999999,40.777877],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0588ce"},"location":{"coordinates":[-73.9826992,40.7311274],"type":"Point"},"name":"Taverna Kyclades"} +,{"_id":{"$oid":"55cba2476c522cafdb0588cf"},"location":{"coordinates":[-73.9739881,40.6789444],"type":"Point"},"name":"Red Mango"} +,{"_id":{"$oid":"55cba2476c522cafdb0588d0"},"location":{"coordinates":[-74.005983,40.622073],"type":"Point"},"name":"Happy Yogurt Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb0588d1"},"location":{"coordinates":[-73.965299,40.759748],"type":"Point"},"name":"Kurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0588d2"},"location":{"coordinates":[-73.9507667,40.7241471],"type":"Point"},"name":"Wasabi"} +,{"_id":{"$oid":"55cba2476c522cafdb0588d3"},"location":{"coordinates":[-73.7579604,40.739975],"type":"Point"},"name":"Hot Ginger Asian Fusion"} +,{"_id":{"$oid":"55cba2476c522cafdb0588d4"},"location":{"coordinates":[-73.8304814,40.75943059999999],"type":"Point"},"name":"Yummy Dim Sum"} +,{"_id":{"$oid":"55cba2476c522cafdb0588d5"},"location":{"coordinates":[-74.0076053,40.7156902],"type":"Point"},"name":"Church Street Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0588d6"},"location":{"coordinates":[-74.1653247,40.5899928],"type":"Point"},"name":"Island Kitchen Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0588d7"},"location":{"coordinates":[-73.9556948,40.7197578],"type":"Point"},"name":"Von Dolhens"} +,{"_id":{"$oid":"55cba2476c522cafdb0588d8"},"location":{"coordinates":[-73.89515999999999,40.703427],"type":"Point"},"name":"Fresh Pond Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb0588d9"},"location":{"coordinates":[-73.9711354,40.7875358],"type":"Point"},"name":"Concon Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0588da"},"location":{"coordinates":[-73.9212917,40.7771742],"type":"Point"},"name":"Palermo Italian Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0588db"},"location":{"coordinates":[-74.1618877,40.5454356],"type":"Point"},"name":"Empire Szechuan Village"} +,{"_id":{"$oid":"55cba2476c522cafdb0588dc"},"location":{"coordinates":[-73.9568633,40.6733694],"type":"Point"},"name":"Island Cz Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0588dd"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"Cibo Market Gate 61"} +,{"_id":{"$oid":"55cba2476c522cafdb0588de"},"location":{"coordinates":[-73.84338509999999,40.86244749999999],"type":"Point"},"name":"Yummy House"} +,{"_id":{"$oid":"55cba2476c522cafdb0588df"},"location":{"coordinates":[-73.9562548,40.6762503],"type":"Point"},"name":"Kelso Bistro Bar \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0588e0"},"location":{"coordinates":[-73.977369,40.74726700000001],"type":"Point"},"name":"Bagel Boss"} +,{"_id":{"$oid":"55cba2476c522cafdb0588e1"},"location":{"coordinates":[-73.9687981,40.7982465],"type":"Point"},"name":"Mexican Festival"} +,{"_id":{"$oid":"55cba2476c522cafdb0588e2"},"location":{"coordinates":[-74.00530719999999,40.7157054],"type":"Point"},"name":"La Bellezza Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb0588e3"},"location":{"coordinates":[-73.946578,40.78015],"type":"Point"},"name":"Mamma Mia Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0588e4"},"location":{"coordinates":[-73.8462334,40.7209504],"type":"Point"},"name":"Pride"} +,{"_id":{"$oid":"55cba2476c522cafdb0588e5"},"location":{"coordinates":[-73.92607199999999,40.742206],"type":"Point"},"name":"Siko Food"} +,{"_id":{"$oid":"55cba2476c522cafdb0588e6"},"location":{"coordinates":[-73.884449,40.746305],"type":"Point"},"name":"Nutri Centro"} +,{"_id":{"$oid":"55cba2476c522cafdb0588e7"},"location":{"coordinates":[-73.945775,40.723104],"type":"Point"},"name":"Crema Bk"} +,{"_id":{"$oid":"55cba2476c522cafdb0588e8"},"location":{"coordinates":[-73.83302599999999,40.760178],"type":"Point"},"name":"Viva Ktv"} +,{"_id":{"$oid":"55cba2476c522cafdb0588e9"},"location":{"coordinates":[-73.8536313,40.8360739],"type":"Point"},"name":"Chilly Chicken Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0588ea"},"location":{"coordinates":[-73.989992,40.68786],"type":"Point"},"name":"Konditori"} +,{"_id":{"$oid":"55cba2476c522cafdb0588eb"},"location":{"coordinates":[-73.8290939,40.759362],"type":"Point"},"name":"Taiwanese Market Food"} +,{"_id":{"$oid":"55cba2476c522cafdb0588ec"},"location":{"coordinates":[-73.98539339999999,40.728124],"type":"Point"},"name":"Milosun Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb0588ed"},"location":{"coordinates":[-73.874599,40.742081],"type":"Point"},"name":"Sabor Colombiano Ii Pasteleria Steakhouse"} +,{"_id":{"$oid":"55cba2476c522cafdb0588ee"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"Tagliere"} +,{"_id":{"$oid":"55cba2476c522cafdb0588ef"},"location":{"coordinates":[-73.9888622,40.729307],"type":"Point"},"name":"Jebon"} +,{"_id":{"$oid":"55cba2476c522cafdb0588f0"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"Cibo Market Right"} +,{"_id":{"$oid":"55cba2476c522cafdb0588f1"},"location":{"coordinates":[-73.8308583,40.8473974],"type":"Point"},"name":"Caffe Azzurri D'Italia"} +,{"_id":{"$oid":"55cba2476c522cafdb0588f2"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"Shiso"} +,{"_id":{"$oid":"55cba2476c522cafdb0588f3"},"location":{"coordinates":[-73.9773854,40.763163],"type":"Point"},"name":"Glaze"} +,{"_id":{"$oid":"55cba2476c522cafdb0588f4"},"location":{"coordinates":[-74.1660553,40.5823983],"type":"Point"},"name":"Metro Mart"} +,{"_id":{"$oid":"55cba2476c522cafdb0588f5"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"World Bean Main"} +,{"_id":{"$oid":"55cba2476c522cafdb0588f6"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"Due Amici"} +,{"_id":{"$oid":"55cba2476c522cafdb0588f7"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"World Bean"} +,{"_id":{"$oid":"55cba2476c522cafdb0588f8"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"Brooklyn Beer Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb0588f9"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"Cibo Market (Gate C65)"} +,{"_id":{"$oid":"55cba2476c522cafdb0588fa"},"location":{"coordinates":[-73.9962769,40.74386],"type":"Point"},"name":"Zagara Wine Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0588fb"},"location":{"coordinates":[-73.9967513,40.762384],"type":"Point"},"name":"Ivan Ramen Slurp Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb0588fc"},"location":{"coordinates":[-73.9453073,40.63105270000001],"type":"Point"},"name":"Retro Fitness"} +,{"_id":{"$oid":"55cba2476c522cafdb0588fd"},"location":{"coordinates":[-73.9868473,40.6923262],"type":"Point"},"name":"Fresh Super Taco Plus Inc"} +,{"_id":{"$oid":"55cba2476c522cafdb0588fe"},"location":{"coordinates":[-73.919996,40.7436221],"type":"Point"},"name":"Mr. Wonton"} +,{"_id":{"$oid":"55cba2476c522cafdb0588ff"},"location":{"coordinates":[-73.938818,40.678139],"type":"Point"},"name":"Time Out Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb058900"},"location":{"coordinates":[-73.9228825,40.6830356],"type":"Point"},"name":"T-Roc Homestyle Cooking"} +,{"_id":{"$oid":"55cba2476c522cafdb058901"},"location":{"coordinates":[-73.732973,40.7200074],"type":"Point"},"name":"Yummy Taco"} +,{"_id":{"$oid":"55cba2476c522cafdb058902"},"location":{"coordinates":[-73.83330509999999,40.678414],"type":"Point"},"name":"China Star Queens Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058903"},"location":{"coordinates":[-73.9265763,40.7600741],"type":"Point"},"name":"Abi Japanese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058904"},"location":{"coordinates":[-74.00963229999999,40.6334297],"type":"Point"},"name":"Sporting Club Gjoa"} +,{"_id":{"$oid":"55cba2476c522cafdb058905"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"Cibo Market Food Hall"} +,{"_id":{"$oid":"55cba2476c522cafdb058906"},"location":{"coordinates":[-73.9895452,40.7166646],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb058907"},"location":{"coordinates":[-73.9917571,40.7159373],"type":"Point"},"name":"Yummy Kitchen/Cheung Wong Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb058908"},"location":{"coordinates":[-73.9886922,40.7439948],"type":"Point"},"name":"Vin Sur Vingt"} +,{"_id":{"$oid":"55cba2476c522cafdb058909"},"location":{"coordinates":[-74.0072035,40.7154284],"type":"Point"},"name":"Church Publick"} +,{"_id":{"$oid":"55cba2476c522cafdb05890a"},"location":{"coordinates":[-73.8101734,40.7197994],"type":"Point"},"name":"Kyoto Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05890b"},"location":{"coordinates":[-73.9396594,40.75007859999999],"type":"Point"},"name":"Queens And Paupers"} +,{"_id":{"$oid":"55cba2476c522cafdb05890c"},"location":{"coordinates":[-73.977981,40.765288],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb05890d"},"location":{"coordinates":[-73.9758119,40.6896008],"type":"Point"},"name":"Cafe Paulette"} +,{"_id":{"$oid":"55cba2476c522cafdb05890e"},"location":{"coordinates":[-73.70278170000002,40.7519489],"type":"Point"},"name":"Juice For Life"} +,{"_id":{"$oid":"55cba2476c522cafdb05890f"},"location":{"coordinates":[-73.88130199999999,40.6667178],"type":"Point"},"name":"Crown Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb058910"},"location":{"coordinates":[-73.9899792,40.7171935],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb058911"},"location":{"coordinates":[-73.89528,40.7123104],"type":"Point"},"name":"Pappagallo Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb058912"},"location":{"coordinates":[-73.9766163,40.682939],"type":"Point"},"name":"Lets Yo Yogurt Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb058913"},"location":{"coordinates":[-73.934772,40.796329],"type":"Point"},"name":"Spaha Soul"} +,{"_id":{"$oid":"55cba2476c522cafdb058914"},"location":{"coordinates":[-73.952904,40.776779],"type":"Point"},"name":"Sriracha"} +,{"_id":{"$oid":"55cba2476c522cafdb058915"},"location":{"coordinates":[-74.0053571,40.7382681],"type":"Point"},"name":"Pizzetteria Brunetti"} +,{"_id":{"$oid":"55cba2476c522cafdb058916"},"location":{"coordinates":[-74.0074034,40.7058765],"type":"Point"},"name":"Aiko Sushi Japanese Restaurant (Jinshu Sushi)"} +,{"_id":{"$oid":"55cba2476c522cafdb058917"},"location":{"coordinates":[-74.0032499,40.7321764],"type":"Point"},"name":"Pagani"} +,{"_id":{"$oid":"55cba2476c522cafdb058918"},"location":{"coordinates":[-73.8874311,40.8542896],"type":"Point"},"name":"El Rey De Mil Coronas Inc."} +,{"_id":{"$oid":"55cba2476c522cafdb058919"},"location":{"coordinates":[-73.97825879999999,40.786672],"type":"Point"},"name":"Oren'S Daily Roast"} +,{"_id":{"$oid":"55cba2476c522cafdb05891a"},"location":{"coordinates":[-73.980445,40.7568849],"type":"Point"},"name":"Raffaello"} +,{"_id":{"$oid":"55cba2476c522cafdb05891b"},"location":{"coordinates":[-73.9190911,40.8080779],"type":"Point"},"name":"Villa Tapia Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05891c"},"location":{"coordinates":[-73.979897,40.764938],"type":"Point"},"name":"Citi Cafe/Rohatyn Room"} +,{"_id":{"$oid":"55cba2476c522cafdb05891d"},"location":{"coordinates":[-73.9936184,40.73907760000001],"type":"Point"},"name":"Swerve Fitness"} +,{"_id":{"$oid":"55cba2476c522cafdb05891e"},"location":{"coordinates":[-73.955101,40.80038500000001],"type":"Point"},"name":"Cantina"} +,{"_id":{"$oid":"55cba2476c522cafdb05891f"},"location":{"coordinates":[-73.73678199999999,40.667277],"type":"Point"},"name":"Best Wok"} +,{"_id":{"$oid":"55cba2476c522cafdb058920"},"location":{"coordinates":[-73.99052329999999,40.7183182],"type":"Point"},"name":"Rpm"} +,{"_id":{"$oid":"55cba2476c522cafdb058921"},"location":{"coordinates":[-73.90825140000001,40.7030412],"type":"Point"},"name":"Un Nuevo Pricipio"} +,{"_id":{"$oid":"55cba2476c522cafdb058922"},"location":{"coordinates":[-73.9484358,40.6389511],"type":"Point"},"name":"Flava Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb058923"},"location":{"coordinates":[-73.9790586,40.7845437],"type":"Point"},"name":"Birdbath Nova"} +,{"_id":{"$oid":"55cba2476c522cafdb058924"},"location":{"coordinates":[-73.8873739,40.8553022],"type":"Point"},"name":"Rubens"} +,{"_id":{"$oid":"55cba2476c522cafdb058925"},"location":{"coordinates":[-73.9541997,40.7749619],"type":"Point"},"name":"Agora Turkish Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058926"},"location":{"coordinates":[-81.6882737,41.0461076],"type":"Point"},"name":"Le Roi Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb058927"},"location":{"coordinates":[-74.00736599999999,40.7395553],"type":"Point"},"name":"Bar Nana"} +,{"_id":{"$oid":"55cba2476c522cafdb058928"},"location":{"coordinates":[-73.9560218,40.6815863],"type":"Point"},"name":"Glorietta Baldy"} +,{"_id":{"$oid":"55cba2476c522cafdb058929"},"location":{"coordinates":[-74.0032535,40.7250036],"type":"Point"},"name":"Vitaminchick"} +,{"_id":{"$oid":"55cba2476c522cafdb05892a"},"location":{"coordinates":[-73.968636,40.637501],"type":"Point"},"name":"Shandar Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb05892b"},"location":{"coordinates":[-73.8644905,40.7530764],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb05892c"},"location":{"coordinates":[-74.1569945,40.6248758],"type":"Point"},"name":"Cheng'S Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05892d"},"location":{"coordinates":[-73.9860279,40.692077],"type":"Point"},"name":"Casella Bagel Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb05892e"},"location":{"coordinates":[-73.950357,40.710754],"type":"Point"},"name":"Kingsland"} +,{"_id":{"$oid":"55cba2476c522cafdb05892f"},"location":{"coordinates":[-73.9642847,40.7698734],"type":"Point"},"name":"Great Performances"} +,{"_id":{"$oid":"55cba2476c522cafdb058930"},"location":{"coordinates":[-73.971087,40.759487],"type":"Point"},"name":"Lereva"} +,{"_id":{"$oid":"55cba2476c522cafdb058931"},"location":{"coordinates":[-73.98325,40.742413],"type":"Point"},"name":"Pippali"} +,{"_id":{"$oid":"55cba2476c522cafdb058932"},"location":{"coordinates":[-73.98130979999999,40.7560039],"type":"Point"},"name":"Restaurant Patrick"} +,{"_id":{"$oid":"55cba2476c522cafdb058933"},"location":{"coordinates":[-73.990222,40.717596],"type":"Point"},"name":"Norman'S Cay"} +,{"_id":{"$oid":"55cba2476c522cafdb058934"},"location":{"coordinates":[-73.97705599999999,40.752998],"type":"Point"},"name":"Shake Shack"} +,{"_id":{"$oid":"55cba2476c522cafdb058935"},"location":{"coordinates":[-73.83236,40.761339],"type":"Point"},"name":"Dip Dip"} +,{"_id":{"$oid":"55cba2476c522cafdb058936"},"location":{"coordinates":[-73.9837907,40.7626833],"type":"Point"},"name":"Niva Novotel Gift Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb058937"},"location":{"coordinates":[-73.856644,40.85902],"type":"Point"},"name":"Saint Catherine Academy"} +,{"_id":{"$oid":"55cba2476c522cafdb058938"},"location":{"coordinates":[-73.8226492,40.8653404],"type":"Point"},"name":"Jade Palace"} +,{"_id":{"$oid":"55cba2476c522cafdb058939"},"location":{"coordinates":[-73.91455739999999,40.83922330000001],"type":"Point"},"name":"Wing Ling"} +,{"_id":{"$oid":"55cba2476c522cafdb05893a"},"location":{"coordinates":[-73.799002,40.6743499],"type":"Point"},"name":"Jfk Jerk Center"} +,{"_id":{"$oid":"55cba2476c522cafdb05893b"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"Le Grand Comptoir"} +,{"_id":{"$oid":"55cba2476c522cafdb05893c"},"location":{"coordinates":[-73.8496036,40.9039816],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb05893d"},"location":{"coordinates":[-73.947597,40.7808599],"type":"Point"},"name":"Drunken Munkey"} +,{"_id":{"$oid":"55cba2476c522cafdb05893e"},"location":{"coordinates":[-73.892934,40.749065],"type":"Point"},"name":"Dhaka Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb05893f"},"location":{"coordinates":[-74.011445,40.6333585],"type":"Point"},"name":"Shang Hai City Dumpling"} +,{"_id":{"$oid":"55cba2476c522cafdb058940"},"location":{"coordinates":[-73.78298099999999,40.6842517],"type":"Point"},"name":"Royal Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb058941"},"location":{"coordinates":[-73.9042637,40.85771949999999],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb058942"},"location":{"coordinates":[-73.88820199999999,40.8269949],"type":"Point"},"name":"New Sheng Chinese Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb058943"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb058944"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb058945"},"location":{"coordinates":[-73.997919,40.7186359],"type":"Point"},"name":"Mrs. Claus Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058946"},"location":{"coordinates":[-74.0058154,40.714299],"type":"Point"},"name":"The Coffee Bean \u0026 Tea Leaf"} +,{"_id":{"$oid":"55cba2476c522cafdb058947"},"location":{"coordinates":[-73.952268,40.7775779],"type":"Point"},"name":"The Supply House"} +,{"_id":{"$oid":"55cba2476c522cafdb058948"},"location":{"coordinates":[-73.9812948,40.7447099],"type":"Point"},"name":"Express Naruto Ramen"} +,{"_id":{"$oid":"55cba2476c522cafdb058949"},"location":{"coordinates":[-73.8568142,40.8947879],"type":"Point"},"name":"Carifesta Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05894a"},"location":{"coordinates":[-73.986738,40.602986],"type":"Point"},"name":"Peter Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05894b"},"location":{"coordinates":[-74.00582899999999,40.73765100000001],"type":"Point"},"name":"Bar Bolonat"} +,{"_id":{"$oid":"55cba2476c522cafdb05894c"},"location":{"coordinates":[-73.8159301,40.7553164],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb05894d"},"location":{"coordinates":[-73.9773785,40.7787171],"type":"Point"},"name":"Patsys Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb05894e"},"location":{"coordinates":[-73.8866542,40.7476329],"type":"Point"},"name":"Los Chuzos"} +,{"_id":{"$oid":"55cba2476c522cafdb05894f"},"location":{"coordinates":[-73.9799261,40.7436444],"type":"Point"},"name":"Iron Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb058950"},"location":{"coordinates":[-73.96845909999999,40.7554779],"type":"Point"},"name":"The Pullman Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb058951"},"location":{"coordinates":[-73.952252,40.6374629],"type":"Point"},"name":"Footprints Cafe Express"} +,{"_id":{"$oid":"55cba2476c522cafdb058952"},"location":{"coordinates":[-73.8840587,40.7494435],"type":"Point"},"name":"Delicias Colombianas Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb058953"},"location":{"coordinates":[-73.9466958,40.5840221],"type":"Point"},"name":"Cats On The Bay"} +,{"_id":{"$oid":"55cba2476c522cafdb058954"},"location":{"coordinates":[-73.9877338,40.7549414],"type":"Point"},"name":"Paris Baguette America"} +,{"_id":{"$oid":"55cba2476c522cafdb058955"},"location":{"coordinates":[-73.93651489999999,40.7596065],"type":"Point"},"name":"Exquisito Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058956"},"location":{"coordinates":[-74.01153459999999,40.7061121],"type":"Point"},"name":"Bluestone Lane Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb058957"},"location":{"coordinates":[-74.000889,40.657191],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb058958"},"location":{"coordinates":[-73.9879345,40.7213779],"type":"Point"},"name":"Elrey"} +,{"_id":{"$oid":"55cba2476c522cafdb058959"},"location":{"coordinates":[-74.0072149,40.7084158],"type":"Point"},"name":"Simit \u0026 Smith"} +,{"_id":{"$oid":"55cba2476c522cafdb05895a"},"location":{"coordinates":[-73.9578658,40.6695176],"type":"Point"},"name":"Ital Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb05895b"},"location":{"coordinates":[-74.005043,40.640399],"type":"Point"},"name":"Good Taste 88"} +,{"_id":{"$oid":"55cba2476c522cafdb05895c"},"location":{"coordinates":[-73.907523,40.69779],"type":"Point"},"name":"La Rubia Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05895d"},"location":{"coordinates":[-73.9748699,40.7899815],"type":"Point"},"name":"Cibo E Vino"} +,{"_id":{"$oid":"55cba2476c522cafdb05895e"},"location":{"coordinates":[-73.9469022,40.7797209],"type":"Point"},"name":"Thai Peppercorn"} +,{"_id":{"$oid":"55cba2476c522cafdb05895f"},"location":{"coordinates":[-74.0016721,40.7403622],"type":"Point"},"name":"Liquiteria"} +,{"_id":{"$oid":"55cba2476c522cafdb058960"},"location":{"coordinates":[-73.9910838,40.7402786],"type":"Point"},"name":"Toby'S Estate Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb058961"},"location":{"coordinates":[-73.9302285,40.8541694],"type":"Point"},"name":"Oche A Tu Gusto"} +,{"_id":{"$oid":"55cba2476c522cafdb058962"},"location":{"coordinates":[-73.956924,40.7768974],"type":"Point"},"name":"The Simone"} +,{"_id":{"$oid":"55cba2476c522cafdb058963"},"location":{"coordinates":[-73.82769449999999,40.7546369],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb058964"},"location":{"coordinates":[-73.82430699999999,40.685901],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb058965"},"location":{"coordinates":[-73.9803757,40.7430748],"type":"Point"},"name":"Bristle And Creme"} +,{"_id":{"$oid":"55cba2476c522cafdb058966"},"location":{"coordinates":[-73.9153575,40.83934929999999],"type":"Point"},"name":"D' Licua Fruit \u0026 Juice"} +,{"_id":{"$oid":"55cba2476c522cafdb058967"},"location":{"coordinates":[-73.870527,40.7265824],"type":"Point"},"name":"Mmenfes Turkish Food"} +,{"_id":{"$oid":"55cba2476c522cafdb058968"},"location":{"coordinates":[-73.9416038,40.7148904],"type":"Point"},"name":"Reclamation Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb058969"},"location":{"coordinates":[-73.9776789,40.7372993],"type":"Point"},"name":"Starbucks Coffee Company"} +,{"_id":{"$oid":"55cba2476c522cafdb05896a"},"location":{"coordinates":[-73.9711638,40.6754152],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb05896b"},"location":{"coordinates":[-73.8466485,40.9014373],"type":"Point"},"name":"St Bess Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05896c"},"location":{"coordinates":[-73.83545869999999,40.7170196],"type":"Point"},"name":"Baluchi"} +,{"_id":{"$oid":"55cba2476c522cafdb05896d"},"location":{"coordinates":[-73.99944099999999,40.683556],"type":"Point"},"name":"Francesco'S Pizzeria \u0026 Trattoria"} +,{"_id":{"$oid":"55cba2476c522cafdb05896e"},"location":{"coordinates":[-74.00536090000001,40.708721],"type":"Point"},"name":"Alfanoose"} +,{"_id":{"$oid":"55cba2476c522cafdb05896f"},"location":{"coordinates":[-73.89558099999999,40.746163],"type":"Point"},"name":"Sizzleme Steakhouse"} +,{"_id":{"$oid":"55cba2476c522cafdb058970"},"location":{"coordinates":[-73.923193,40.686651],"type":"Point"},"name":"Crown Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb058971"},"location":{"coordinates":[-73.9952246,40.6906999],"type":"Point"},"name":"Luzzo'S Bk"} +,{"_id":{"$oid":"55cba2476c522cafdb058972"},"location":{"coordinates":[-73.9053036,40.8791964],"type":"Point"},"name":"Love Kafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058973"},"location":{"coordinates":[-73.9066181,40.8465965],"type":"Point"},"name":"Hop Wong Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058974"},"location":{"coordinates":[-73.9579802,40.7143562],"type":"Point"},"name":"Extra Fancy"} +,{"_id":{"$oid":"55cba2476c522cafdb058975"},"location":{"coordinates":[-73.7943404,40.697525],"type":"Point"},"name":"China One"} +,{"_id":{"$oid":"55cba2476c522cafdb058976"},"location":{"coordinates":[-73.965159,40.626679],"type":"Point"},"name":"Gourmet K"} +,{"_id":{"$oid":"55cba2476c522cafdb058977"},"location":{"coordinates":[-74.0881144,40.6116598],"type":"Point"},"name":"Halal Rotisserie \u0026 Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb058978"},"location":{"coordinates":[-73.9580122,40.717861],"type":"Point"},"name":"Dunkin Donuts Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb058979"},"location":{"coordinates":[-73.814949,40.763238],"type":"Point"},"name":"Keum Sung Food"} +,{"_id":{"$oid":"55cba2476c522cafdb05897a"},"location":{"coordinates":[-73.98612609999999,40.7324446],"type":"Point"},"name":"The Nugget Spot"} +,{"_id":{"$oid":"55cba2476c522cafdb05897b"},"location":{"coordinates":[-74.0062401,40.7397546],"type":"Point"},"name":"Joy Burger Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05897c"},"location":{"coordinates":[-73.932716,40.766139],"type":"Point"},"name":"L.I.C. Broadway Deli \u0026 Grocery"} +,{"_id":{"$oid":"55cba2476c522cafdb05897d"},"location":{"coordinates":[-73.912187,40.766888],"type":"Point"},"name":"Eastern Nights"} +,{"_id":{"$oid":"55cba2476c522cafdb05897e"},"location":{"coordinates":[-73.9587885,40.5914821],"type":"Point"},"name":"Romanoff Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05897f"},"location":{"coordinates":[-73.9841306,40.7265113],"type":"Point"},"name":"Tea Drunk"} +,{"_id":{"$oid":"55cba2476c522cafdb058980"},"location":{"coordinates":[-73.8182077,40.70884],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb058981"},"location":{"coordinates":[-73.85111429999999,40.8314137],"type":"Point"},"name":"Sing Garden Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058982"},"location":{"coordinates":[-73.962471,40.75937],"type":"Point"},"name":"Adyar Ananda Bhavan"} +,{"_id":{"$oid":"55cba2476c522cafdb058983"},"location":{"coordinates":[-73.99861299999999,40.624985],"type":"Point"},"name":"H \u0026 Y Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb058984"},"location":{"coordinates":[-73.9950932,40.71412369999999],"type":"Point"},"name":"Golden Bowl Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058985"},"location":{"coordinates":[-73.881592,40.8826094],"type":"Point"},"name":"El Valle Cocina Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058986"},"location":{"coordinates":[-73.9925837,40.7358334],"type":"Point"},"name":"Le Cafe Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb058987"},"location":{"coordinates":[-73.90059029999999,40.729004],"type":"Point"},"name":"O'Neill'S"} +,{"_id":{"$oid":"55cba2476c522cafdb058988"},"location":{"coordinates":[-73.90446299999999,40.8799332],"type":"Point"},"name":"Kentucky Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb058989"},"location":{"coordinates":[-73.9497506,40.6820926],"type":"Point"},"name":"Ms. Dahlia'S Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05898a"},"location":{"coordinates":[-73.9666132,40.7149016],"type":"Point"},"name":"Kaitlin Michelle Brown"} +,{"_id":{"$oid":"55cba2476c522cafdb05898b"},"location":{"coordinates":[-73.9823998,40.7662723],"type":"Point"},"name":"Starbucks Coffee (#19890)"} +,{"_id":{"$oid":"55cba2476c522cafdb05898c"},"location":{"coordinates":[-73.97377469999999,40.7598045],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb05898d"},"location":{"coordinates":[-73.83545099999999,40.686988],"type":"Point"},"name":"Obsessions Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05898e"},"location":{"coordinates":[-73.98376189999999,40.7384337],"type":"Point"},"name":"Vitis La Vineria"} +,{"_id":{"$oid":"55cba2476c522cafdb05898f"},"location":{"coordinates":[-73.8841595,40.8740013],"type":"Point"},"name":"El Rinconcito Del Sabor Dominicano"} +,{"_id":{"$oid":"55cba2476c522cafdb058990"},"location":{"coordinates":[-73.92576199999999,40.66334],"type":"Point"},"name":"Kam Long Kitchen Kings"} +,{"_id":{"$oid":"55cba2476c522cafdb058991"},"location":{"coordinates":[-73.95862439999999,40.6088465],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb058992"},"location":{"coordinates":[-73.9397578,40.6559499],"type":"Point"},"name":"Platinum Paradise"} +,{"_id":{"$oid":"55cba2476c522cafdb058993"},"location":{"coordinates":[-73.98814,40.728511],"type":"Point"},"name":"Taqueria Diana"} +,{"_id":{"$oid":"55cba2476c522cafdb058994"},"location":{"coordinates":[-73.8922197,40.7280528],"type":"Point"},"name":"Homemade Taqueria"} +,{"_id":{"$oid":"55cba2476c522cafdb058995"},"location":{"coordinates":[-73.8670984,40.83742600000001],"type":"Point"},"name":"D'Noel Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058996"},"location":{"coordinates":[-73.9661804,40.6292562],"type":"Point"},"name":"Junior'S Pizza \u0026 Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb058997"},"location":{"coordinates":[-73.84569139999999,40.7837841],"type":"Point"},"name":"Cask 15"} +,{"_id":{"$oid":"55cba2476c522cafdb058998"},"location":{"coordinates":[-73.8643462,40.7373667],"type":"Point"},"name":"Popeye'S"} +,{"_id":{"$oid":"55cba2476c522cafdb058999"},"location":{"coordinates":[-73.7665516,40.70371069999999],"type":"Point"},"name":"J \u0026 L Family Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb05899a"},"location":{"coordinates":[-73.8290939,40.759362],"type":"Point"},"name":"Tbaar"} +,{"_id":{"$oid":"55cba2476c522cafdb05899b"},"location":{"coordinates":[-73.8318819,40.7614055],"type":"Point"},"name":"Greatful Vegetarian Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05899c"},"location":{"coordinates":[-73.9906153,40.7371162],"type":"Point"},"name":"Liquiteria"} +,{"_id":{"$oid":"55cba2476c522cafdb05899d"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"Central Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb05899e"},"location":{"coordinates":[-73.82948700000001,40.657432],"type":"Point"},"name":"Au Bon Pain"} +,{"_id":{"$oid":"55cba2476c522cafdb05899f"},"location":{"coordinates":[-74.0029005,40.6073921],"type":"Point"},"name":"East Ocean Buffet"} +,{"_id":{"$oid":"55cba2476c522cafdb0589a0"},"location":{"coordinates":[-73.9370676,40.66777829999999],"type":"Point"},"name":"Fresh Crown Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0589a1"},"location":{"coordinates":[-73.9442299,40.8252683],"type":"Point"},"name":"Honeycomb Playhouse"} +,{"_id":{"$oid":"55cba2476c522cafdb0589a2"},"location":{"coordinates":[-73.9019129,40.703994],"type":"Point"},"name":"Bleachers 67 Sports Bar And Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0589a3"},"location":{"coordinates":[-73.9378303,40.614196],"type":"Point"},"name":"Tko Chicken \u0026 Ribs"} +,{"_id":{"$oid":"55cba2476c522cafdb0589a4"},"location":{"coordinates":[-74.0052209,40.7102874],"type":"Point"},"name":"Au Bon Pain"} +,{"_id":{"$oid":"55cba2476c522cafdb0589a5"},"location":{"coordinates":[-73.962992,40.761109],"type":"Point"},"name":"The Jeffrey"} +,{"_id":{"$oid":"55cba2476c522cafdb0589a6"},"location":{"coordinates":[-74.00432119999999,40.7424526],"type":"Point"},"name":"Tao Downtown"} +,{"_id":{"$oid":"55cba2476c522cafdb0589a7"},"location":{"coordinates":[-73.95019529999999,40.5942779],"type":"Point"},"name":"Art House Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0589a8"},"location":{"coordinates":[-73.99613529999999,40.7533359],"type":"Point"},"name":"B\u0026W Deli Grocery"} +,{"_id":{"$oid":"55cba2476c522cafdb0589a9"},"location":{"coordinates":[-73.9630815,40.6350624],"type":"Point"},"name":"Double Dragon Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0589aa"},"location":{"coordinates":[-73.9945726,40.7116876],"type":"Point"},"name":"Yi Zhang Fishball \u0026 Snacks Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0589ab"},"location":{"coordinates":[-73.9194006,40.8654377],"type":"Point"},"name":"Kennedy'S Chicken \u0026 Biscuit"} +,{"_id":{"$oid":"55cba2476c522cafdb0589ac"},"location":{"coordinates":[-73.9417701,40.6719417],"type":"Point"},"name":"Jenny Coffee Shop #2"} +,{"_id":{"$oid":"55cba2476c522cafdb0589ad"},"location":{"coordinates":[-73.990352,40.74248499999999],"type":"Point"},"name":"Bo'S Kitchen \u0026 Bar Room"} +,{"_id":{"$oid":"55cba2476c522cafdb0589ae"},"location":{"coordinates":[-73.97216879999999,40.7929817],"type":"Point"},"name":"Vino Levantino"} +,{"_id":{"$oid":"55cba2476c522cafdb0589af"},"location":{"coordinates":[-73.9505889,40.802088],"type":"Point"},"name":"Red Chilli Indian Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0589b0"},"location":{"coordinates":[-73.9590144,40.58213850000001],"type":"Point"},"name":"Peralta'S Deli \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0589b1"},"location":{"coordinates":[-74.069199,40.620067],"type":"Point"},"name":"Liberty Catering"} +,{"_id":{"$oid":"55cba2476c522cafdb0589b2"},"location":{"coordinates":[-74.0130191,40.714526],"type":"Point"},"name":"Canteen Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0589b3"},"location":{"coordinates":[-73.807005,40.6745919],"type":"Point"},"name":"Jfk Shawarma Middle Eastern Cuisine \u0026 Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0589b4"},"location":{"coordinates":[-73.8720537,40.6812485],"type":"Point"},"name":"Mario'S Pizza Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0589b5"},"location":{"coordinates":[-73.9742747,40.7642202],"type":"Point"},"name":"Tartinery (The Plaza Shops)"} +,{"_id":{"$oid":"55cba2476c522cafdb0589b6"},"location":{"coordinates":[-73.85705399999999,40.893895],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb0589b7"},"location":{"coordinates":[-73.99901659999999,40.7157288],"type":"Point"},"name":"M \u0026 W Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0589b8"},"location":{"coordinates":[-73.9138992,40.6711531],"type":"Point"},"name":"Us Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb0589b9"},"location":{"coordinates":[-73.959496,40.655455],"type":"Point"},"name":"Great Wall Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0589ba"},"location":{"coordinates":[-73.7756661,40.7094121],"type":"Point"},"name":"Boemia Bar \u0026 Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb0589bb"},"location":{"coordinates":[-73.8739659,40.7769271],"type":"Point"},"name":"Cibo Markets (Food Court)"} +,{"_id":{"$oid":"55cba2476c522cafdb0589bc"},"location":{"coordinates":[-74.0079542,40.7432086],"type":"Point"},"name":"Toro"} +,{"_id":{"$oid":"55cba2476c522cafdb0589bd"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"Shake Shack"} +,{"_id":{"$oid":"55cba2476c522cafdb0589be"},"location":{"coordinates":[-73.9967513,40.762384],"type":"Point"},"name":"The Cannibal"} +,{"_id":{"$oid":"55cba2476c522cafdb0589bf"},"location":{"coordinates":[-73.89098589999999,40.7432807],"type":"Point"},"name":"Salza Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0589c0"},"location":{"coordinates":[-73.8739659,40.7769271],"type":"Point"},"name":"Cibo Express (Baggage Pre-Security)"} +,{"_id":{"$oid":"55cba2476c522cafdb0589c1"},"location":{"coordinates":[-73.9516112,40.782597],"type":"Point"},"name":"Maroo"} +,{"_id":{"$oid":"55cba2476c522cafdb0589c2"},"location":{"coordinates":[-73.98662440000001,40.7483116],"type":"Point"},"name":"Starry Night/33Rd Bbq"} +,{"_id":{"$oid":"55cba2476c522cafdb0589c3"},"location":{"coordinates":[-73.90012949999999,40.8645368],"type":"Point"},"name":"The Jag"} +,{"_id":{"$oid":"55cba2476c522cafdb0589c4"},"location":{"coordinates":[-91.5327386,46.38377190000001],"type":"Point"},"name":"Ilili Box"} +,{"_id":{"$oid":"55cba2476c522cafdb0589c5"},"location":{"coordinates":[-73.923305,40.689721],"type":"Point"},"name":"Pizza Express"} +,{"_id":{"$oid":"55cba2476c522cafdb0589c6"},"location":{"coordinates":[-73.9591499,40.650865],"type":"Point"},"name":"Flatbush Soul Food"} +,{"_id":{"$oid":"55cba2476c522cafdb0589c7"},"location":{"coordinates":[-73.919742,40.702365],"type":"Point"},"name":"Santa Ana Deli \u0026 Grocery"} +,{"_id":{"$oid":"55cba2476c522cafdb0589c8"},"location":{"coordinates":[-74.0074054,40.73924909999999],"type":"Point"},"name":"Rapha Racing"} +,{"_id":{"$oid":"55cba2476c522cafdb0589c9"},"location":{"coordinates":[-73.8764925,40.8261352],"type":"Point"},"name":"Kennedy Fried Chicken \u0026 Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0589ca"},"location":{"coordinates":[-73.91409209999999,40.7142158],"type":"Point"},"name":"Sal'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0589cb"},"location":{"coordinates":[-73.8803708,40.8624508],"type":"Point"},"name":"New York Botanical Gardens Terrace Cafe ( Garden Cafe )"} +,{"_id":{"$oid":"55cba2476c522cafdb0589cc"},"location":{"coordinates":[-73.9282656,40.865035],"type":"Point"},"name":"Tonnies Minis Cupcakes"} +,{"_id":{"$oid":"55cba2476c522cafdb0589cd"},"location":{"coordinates":[-73.8803708,40.8624508],"type":"Point"},"name":"New York Botanical Garden Visitors Center Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0589ce"},"location":{"coordinates":[-73.9170774,40.6992126],"type":"Point"},"name":"Boswyck Bagels"} +,{"_id":{"$oid":"55cba2476c522cafdb0589cf"},"location":{"coordinates":[-73.9855826,40.7465856],"type":"Point"},"name":"Bread \u0026 Butter"} +,{"_id":{"$oid":"55cba2476c522cafdb0589d0"},"location":{"coordinates":[-73.95162499999999,40.7692216],"type":"Point"},"name":"Bagels \u0026 Co."} +,{"_id":{"$oid":"55cba2476c522cafdb0589d1"},"location":{"coordinates":[-73.993953,40.761216],"type":"Point"},"name":"The Marshal"} +,{"_id":{"$oid":"55cba2476c522cafdb0589d2"},"location":{"coordinates":[-73.926582,40.863055],"type":"Point"},"name":"Viva"} +,{"_id":{"$oid":"55cba2476c522cafdb0589d3"},"location":{"coordinates":[-73.986177,40.7436884],"type":"Point"},"name":"Choza Taqueria"} +,{"_id":{"$oid":"55cba2476c522cafdb0589d4"},"location":{"coordinates":[-73.9887906,40.7540442],"type":"Point"},"name":"The Skylark"} +,{"_id":{"$oid":"55cba2476c522cafdb0589d5"},"location":{"coordinates":[-74.0305997,40.6252311],"type":"Point"},"name":"Inaka"} +,{"_id":{"$oid":"55cba2476c522cafdb0589d6"},"location":{"coordinates":[-73.962572,40.69406499999999],"type":"Point"},"name":"New Grace Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0589d7"},"location":{"coordinates":[-73.95188499999999,40.5990589],"type":"Point"},"name":"Padishah Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0589d8"},"location":{"coordinates":[-73.94304000000001,40.704564],"type":"Point"},"name":"Leon De Oro Rest."} +,{"_id":{"$oid":"55cba2476c522cafdb0589d9"},"location":{"coordinates":[-73.93952999999999,40.794099],"type":"Point"},"name":"Spice Hut Indian Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0589da"},"location":{"coordinates":[-74.10943859999999,40.5699547],"type":"Point"},"name":"Alor Pasta"} +,{"_id":{"$oid":"55cba2476c522cafdb0589db"},"location":{"coordinates":[-73.9925896,40.7161793],"type":"Point"},"name":"Hou Yi Hot Pot"} +,{"_id":{"$oid":"55cba2476c522cafdb0589dc"},"location":{"coordinates":[-74.0070846,40.7269409],"type":"Point"},"name":"Pearson"} +,{"_id":{"$oid":"55cba2476c522cafdb0589dd"},"location":{"coordinates":[-73.98787399999999,40.7519905],"type":"Point"},"name":"Fresh \u0026 Co"} +,{"_id":{"$oid":"55cba2476c522cafdb0589de"},"location":{"coordinates":[-73.90893179999999,40.7106556],"type":"Point"},"name":"Sofia'S Pizza House"} +,{"_id":{"$oid":"55cba2476c522cafdb0589df"},"location":{"coordinates":[-73.9322304,40.6704447],"type":"Point"},"name":"Sing Wah Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0589e0"},"location":{"coordinates":[-73.8864959,40.8659729],"type":"Point"},"name":"El Nuevo Tenampa Restaurante"} +,{"_id":{"$oid":"55cba2476c522cafdb0589e1"},"location":{"coordinates":[-73.98239,40.724255],"type":"Point"},"name":"Kamakura Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb0589e2"},"location":{"coordinates":[-73.91190689999999,40.76729479999999],"type":"Point"},"name":"Firdos Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0589e3"},"location":{"coordinates":[-73.940889,40.6831612],"type":"Point"},"name":"Fish \u0026 Chips"} +,{"_id":{"$oid":"55cba2476c522cafdb0589e4"},"location":{"coordinates":[-73.9892679,40.7625816],"type":"Point"},"name":"Diegos Mexican Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0589e5"},"location":{"coordinates":[-73.930853,40.69039],"type":"Point"},"name":"Soldier Jerk Center"} +,{"_id":{"$oid":"55cba2476c522cafdb0589e6"},"location":{"coordinates":[-73.9471828,40.8056119],"type":"Point"},"name":"Cheri"} +,{"_id":{"$oid":"55cba2476c522cafdb0589e7"},"location":{"coordinates":[-74.0120712,40.705152],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0589e8"},"location":{"coordinates":[-73.9150813,40.7661407],"type":"Point"},"name":"Emilia'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb0589e9"},"location":{"coordinates":[-73.952288,40.783651],"type":"Point"},"name":"Lucy'S Whey"} +,{"_id":{"$oid":"55cba2476c522cafdb0589ea"},"location":{"coordinates":[-73.862465,40.747026],"type":"Point"},"name":"Sabor Norteno"} +,{"_id":{"$oid":"55cba2476c522cafdb0589eb"},"location":{"coordinates":[-73.81544699999999,40.740155],"type":"Point"},"name":"Dad Deli \u0026 Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0589ec"},"location":{"coordinates":[-73.9849682,40.5971217],"type":"Point"},"name":"John'S Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb0589ed"},"location":{"coordinates":[-73.9974319,40.7369968],"type":"Point"},"name":"Umami Shoppu"} +,{"_id":{"$oid":"55cba2476c522cafdb0589ee"},"location":{"coordinates":[-73.9821786,40.7405728],"type":"Point"},"name":"Promenade Bar Grill Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb0589ef"},"location":{"coordinates":[-74.0085886,40.6471417],"type":"Point"},"name":"Tacos California Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0589f0"},"location":{"coordinates":[-73.955618,40.773069],"type":"Point"},"name":"The Belgian Cupcake"} +,{"_id":{"$oid":"55cba2476c522cafdb0589f1"},"location":{"coordinates":[-73.95833,40.721746],"type":"Point"},"name":"Kinfolk Studios"} +,{"_id":{"$oid":"55cba2476c522cafdb0589f2"},"location":{"coordinates":[-73.8942749,40.7124393],"type":"Point"},"name":"New Fong Kwan Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0589f3"},"location":{"coordinates":[-73.99011,40.743278],"type":"Point"},"name":"Taste Good Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0589f4"},"location":{"coordinates":[-73.9669006,40.5974008],"type":"Point"},"name":"Black Diamond Cold Brew"} +,{"_id":{"$oid":"55cba2476c522cafdb0589f5"},"location":{"coordinates":[-73.9550604,40.779953],"type":"Point"},"name":"Eli'S Essentials"} +,{"_id":{"$oid":"55cba2476c522cafdb0589f6"},"location":{"coordinates":[-73.8464709,40.684361],"type":"Point"},"name":"Chicken Of Fire"} +,{"_id":{"$oid":"55cba2476c522cafdb0589f7"},"location":{"coordinates":[-73.9774924,40.7462078],"type":"Point"},"name":"Teds Corner Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb0589f8"},"location":{"coordinates":[-73.968482,40.6391056],"type":"Point"},"name":"Highbury Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb0589f9"},"location":{"coordinates":[-73.9957968,40.7534587],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0589fa"},"location":{"coordinates":[-73.97358919999999,40.6548081],"type":"Point"},"name":"Bene Pizzeria And Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0589fb"},"location":{"coordinates":[-73.91319100000001,40.76568200000001],"type":"Point"},"name":"The Grill House"} +,{"_id":{"$oid":"55cba2476c522cafdb0589fc"},"location":{"coordinates":[-74.00174919999999,40.7355025],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0589fd"},"location":{"coordinates":[-73.9972973,40.7362567],"type":"Point"},"name":"Feel Food"} +,{"_id":{"$oid":"55cba2476c522cafdb0589fe"},"location":{"coordinates":[-73.956868,40.6507409],"type":"Point"},"name":"Healthier You Foods"} +,{"_id":{"$oid":"55cba2476c522cafdb0589ff"},"location":{"coordinates":[-73.9061332,40.8590338],"type":"Point"},"name":"Dd Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb058a00"},"location":{"coordinates":[-73.9404242,40.798114],"type":"Point"},"name":"Eddie'S Deli \u0026 Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb058a01"},"location":{"coordinates":[-73.976351,40.7877641],"type":"Point"},"name":"Cafe 86"} +,{"_id":{"$oid":"55cba2476c522cafdb058a02"},"location":{"coordinates":[-73.7561168,40.7484844],"type":"Point"},"name":"Rolly Kimbab 2"} +,{"_id":{"$oid":"55cba2476c522cafdb058a03"},"location":{"coordinates":[-73.9225807,40.6651098],"type":"Point"},"name":"Papa John'S"} +,{"_id":{"$oid":"55cba2476c522cafdb058a04"},"location":{"coordinates":[-73.99426609999999,40.7508707],"type":"Point"},"name":"Daily Burger ( 10Th Floor)"} +,{"_id":{"$oid":"55cba2476c522cafdb058a05"},"location":{"coordinates":[-73.776524,40.6740852],"type":"Point"},"name":"Checkers"} +,{"_id":{"$oid":"55cba2476c522cafdb058a06"},"location":{"coordinates":[-73.99426609999999,40.7508707],"type":"Point"},"name":"Chicken \u0026 Fries ( 10Th Floor)"} +,{"_id":{"$oid":"55cba2476c522cafdb058a07"},"location":{"coordinates":[-73.90086529999999,40.8625659],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb058a08"},"location":{"coordinates":[-73.8263364,40.7119923],"type":"Point"},"name":"Katarina Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb058a09"},"location":{"coordinates":[-73.91701669999999,40.8789193],"type":"Point"},"name":"Famous Pizza Express"} +,{"_id":{"$oid":"55cba2476c522cafdb058a0a"},"location":{"coordinates":[-73.9946168,40.7181918],"type":"Point"},"name":"Savory Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb058a0b"},"location":{"coordinates":[-73.9844693,40.6638126],"type":"Point"},"name":"Amira'S"} +,{"_id":{"$oid":"55cba2476c522cafdb058a0c"},"location":{"coordinates":[-73.9081491,40.8512256],"type":"Point"},"name":"Gaskiya African Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058a0d"},"location":{"coordinates":[-74.0239595,40.644865],"type":"Point"},"name":"Pete'S Brooklyn Eats"} +,{"_id":{"$oid":"55cba2476c522cafdb058a0e"},"location":{"coordinates":[-73.82051469999999,40.6990396],"type":"Point"},"name":"Rain Night Club"} +,{"_id":{"$oid":"55cba2476c522cafdb058a0f"},"location":{"coordinates":[-73.9977956,40.76083149999999],"type":"Point"},"name":"Green Nature Coffee House"} +,{"_id":{"$oid":"55cba2476c522cafdb058a10"},"location":{"coordinates":[-73.9983151,40.71544069999999],"type":"Point"},"name":"Beautiful Memory Dessert"} +,{"_id":{"$oid":"55cba2476c522cafdb058a11"},"location":{"coordinates":[-74.0100543,40.7141901],"type":"Point"},"name":"Creative Juice"} +,{"_id":{"$oid":"55cba2476c522cafdb058a12"},"location":{"coordinates":[-73.9504528,40.7236116],"type":"Point"},"name":"Champs Junior"} +,{"_id":{"$oid":"55cba2476c522cafdb058a13"},"location":{"coordinates":[-73.99426609999999,40.7508707],"type":"Point"},"name":"Ba 1002 Concession Bar 10Th Floor)"} +,{"_id":{"$oid":"55cba2476c522cafdb058a14"},"location":{"coordinates":[-73.95945820000001,40.780019],"type":"Point"},"name":"Teavana"} +,{"_id":{"$oid":"55cba2476c522cafdb058a15"},"location":{"coordinates":[-73.9834197,40.6123917],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb058a16"},"location":{"coordinates":[-74.0023162,40.7072718],"type":"Point"},"name":"Barbalu"} +,{"_id":{"$oid":"55cba2476c522cafdb058a17"},"location":{"coordinates":[-74.19261519999999,40.5530453],"type":"Point"},"name":"Moe'S Southwest Griil"} +,{"_id":{"$oid":"55cba2476c522cafdb058a18"},"location":{"coordinates":[-73.98449769999999,40.7453186],"type":"Point"},"name":"Delectica On Madison"} +,{"_id":{"$oid":"55cba2476c522cafdb058a19"},"location":{"coordinates":[-73.9729904,40.6875956],"type":"Point"},"name":"The Pink Tea Cup"} +,{"_id":{"$oid":"55cba2476c522cafdb058a1a"},"location":{"coordinates":[-73.98037099999999,40.613534],"type":"Point"},"name":"New China Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb058a1b"},"location":{"coordinates":[-74.01612700000001,40.674905],"type":"Point"},"name":"Hometown Bar-B-Que"} +,{"_id":{"$oid":"55cba2476c522cafdb058a1c"},"location":{"coordinates":[-73.98601769999999,40.7399808],"type":"Point"},"name":"Juice Generation"} +,{"_id":{"$oid":"55cba2476c522cafdb058a1d"},"location":{"coordinates":[-73.96495639999999,40.7727138],"type":"Point"},"name":"Eli Zabar"} +,{"_id":{"$oid":"55cba2476c522cafdb058a1e"},"location":{"coordinates":[-74.0003455,40.7357622],"type":"Point"},"name":"Lumpia Shack"} +,{"_id":{"$oid":"55cba2476c522cafdb058a1f"},"location":{"coordinates":[-73.97717109999999,40.7633128],"type":"Point"},"name":"Bengal Tiger Indian Food"} +,{"_id":{"$oid":"55cba2476c522cafdb058a20"},"location":{"coordinates":[-73.98810809999999,40.7202233],"type":"Point"},"name":"Pomme"} +,{"_id":{"$oid":"55cba2476c522cafdb058a21"},"location":{"coordinates":[-73.9576663,40.609829],"type":"Point"},"name":"Yum Yummy Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058a22"},"location":{"coordinates":[-73.9791044,40.6887185],"type":"Point"},"name":"Hungry Ghost Coffee Bar And Cafe At Bric"} +,{"_id":{"$oid":"55cba2476c522cafdb058a23"},"location":{"coordinates":[-73.9239695,40.74037],"type":"Point"},"name":"Harmony Terrace"} +,{"_id":{"$oid":"55cba2476c522cafdb058a24"},"location":{"coordinates":[-73.978478,40.7645539],"type":"Point"},"name":"The Roof"} +,{"_id":{"$oid":"55cba2476c522cafdb058a25"},"location":{"coordinates":[-73.9788903,40.7605367],"type":"Point"},"name":"Academia Barilla Restaurants"} +,{"_id":{"$oid":"55cba2476c522cafdb058a26"},"location":{"coordinates":[-74.0106833,40.6790727],"type":"Point"},"name":"Kao Soy"} +,{"_id":{"$oid":"55cba2476c522cafdb058a27"},"location":{"coordinates":[-73.9904589,40.7412362],"type":"Point"},"name":"Juice Press"} +,{"_id":{"$oid":"55cba2476c522cafdb058a28"},"location":{"coordinates":[-73.98651749999999,40.6692561],"type":"Point"},"name":"Fatty Daddy Tacos"} +,{"_id":{"$oid":"55cba2476c522cafdb058a29"},"location":{"coordinates":[-73.9413517,40.71168],"type":"Point"},"name":"Janos Gyenis"} +,{"_id":{"$oid":"55cba2476c522cafdb058a2a"},"location":{"coordinates":[-73.991325,40.7031651],"type":"Point"},"name":"Old Dock Inn"} +,{"_id":{"$oid":"55cba2476c522cafdb058a2b"},"location":{"coordinates":[-73.831465,40.7626429],"type":"Point"},"name":"Tbaar"} +,{"_id":{"$oid":"55cba2476c522cafdb058a2c"},"location":{"coordinates":[-73.8676768,40.9002886],"type":"Point"},"name":"The Avenue"} +,{"_id":{"$oid":"55cba2476c522cafdb058a2d"},"location":{"coordinates":[-73.9591949,40.763969],"type":"Point"},"name":"Chirping Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb058a2e"},"location":{"coordinates":[-73.9026061,40.8778488],"type":"Point"},"name":"Laura'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb058a2f"},"location":{"coordinates":[-73.884261,40.8677517],"type":"Point"},"name":"Bedford Pizza Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058a30"},"location":{"coordinates":[-73.9805895,40.7822187],"type":"Point"},"name":"Locl Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb058a31"},"location":{"coordinates":[-73.9132442,40.7562988],"type":"Point"},"name":"Oliver'S Astoria"} +,{"_id":{"$oid":"55cba2476c522cafdb058a32"},"location":{"coordinates":[-73.732927,40.720261],"type":"Point"},"name":"Hibiscus Restaurant \u0026 Lounge Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb058a33"},"location":{"coordinates":[-73.92165,40.66041],"type":"Point"},"name":"Crown Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb058a34"},"location":{"coordinates":[-73.8257082,40.7588374],"type":"Point"},"name":"Zhou'S Yummy Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058a35"},"location":{"coordinates":[-73.9501655,40.7076111],"type":"Point"},"name":"Mountain Province"} +,{"_id":{"$oid":"55cba2476c522cafdb058a36"},"location":{"coordinates":[-73.9658073,40.7658065],"type":"Point"},"name":"Chatime"} +,{"_id":{"$oid":"55cba2476c522cafdb058a37"},"location":{"coordinates":[-73.9986043,40.7404805],"type":"Point"},"name":"Muscle Maker Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb058a38"},"location":{"coordinates":[-73.9067329,40.6681539],"type":"Point"},"name":"2013 Brooklyn Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058a39"},"location":{"coordinates":[-73.9772937,40.59221000000001],"type":"Point"},"name":"China Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb058a3a"},"location":{"coordinates":[-74.1695711,40.577103],"type":"Point"},"name":"Five Guys Burgers And Fries"} +,{"_id":{"$oid":"55cba2476c522cafdb058a3b"},"location":{"coordinates":[-74.0105389,40.6791709],"type":"Point"},"name":"Grind Haus"} +,{"_id":{"$oid":"55cba2476c522cafdb058a3c"},"location":{"coordinates":[-73.9517919,40.7138573],"type":"Point"},"name":"Kellogg'S Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb058a3d"},"location":{"coordinates":[-73.8169827,40.76529000000001],"type":"Point"},"name":"New York Spa \u0026 Sauna Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058a3e"},"location":{"coordinates":[-73.9927359,40.6012996],"type":"Point"},"name":"86 Seafood Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058a3f"},"location":{"coordinates":[-74.103261,40.6307166],"type":"Point"},"name":"Kyoto Sushi Number 5"} +,{"_id":{"$oid":"55cba2476c522cafdb058a40"},"location":{"coordinates":[-73.98123679999999,40.7287926],"type":"Point"},"name":"Cork 'N Fork"} +,{"_id":{"$oid":"55cba2476c522cafdb058a41"},"location":{"coordinates":[-73.9535932,40.68308270000001],"type":"Point"},"name":"Bedford Hall"} +,{"_id":{"$oid":"55cba2476c522cafdb058a42"},"location":{"coordinates":[-73.98809,40.729047],"type":"Point"},"name":"Coco"} +,{"_id":{"$oid":"55cba2476c522cafdb058a43"},"location":{"coordinates":[-74.00790599999999,40.708772],"type":"Point"},"name":"Test"} +,{"_id":{"$oid":"55cba2476c522cafdb058a44"},"location":{"coordinates":[-73.9885633,40.7234639],"type":"Point"},"name":"Golden Cadillac"} +,{"_id":{"$oid":"55cba2476c522cafdb058a45"},"location":{"coordinates":[-73.8669245,40.7217197],"type":"Point"},"name":"Asia King Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058a46"},"location":{"coordinates":[-73.9860613,40.7303859],"type":"Point"},"name":"Pho Seng"} +,{"_id":{"$oid":"55cba2476c522cafdb058a47"},"location":{"coordinates":[-73.9257133,40.70027049999999],"type":"Point"},"name":"Sofia Mexican Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058a48"},"location":{"coordinates":[-73.87032359999999,40.8354479],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb058a49"},"location":{"coordinates":[-73.9371823,40.8504627],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb058a4a"},"location":{"coordinates":[-73.92143089999999,40.8686275],"type":"Point"},"name":"Inwood Gourmet"} +,{"_id":{"$oid":"55cba2476c522cafdb058a4b"},"location":{"coordinates":[-73.876238,40.7506133],"type":"Point"},"name":"Colombia Fama Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb058a4c"},"location":{"coordinates":[-73.9635667,40.6340818],"type":"Point"},"name":"New Nice Chinatown"} +,{"_id":{"$oid":"55cba2476c522cafdb058a4d"},"location":{"coordinates":[-73.99028349999999,40.6186414],"type":"Point"},"name":"Kings Rice Inc"} +,{"_id":{"$oid":"55cba2476c522cafdb058a4e"},"location":{"coordinates":[-73.9219035,40.6729038],"type":"Point"},"name":"No. 1 Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058a4f"},"location":{"coordinates":[-73.8462833,40.7209368],"type":"Point"},"name":"Xhale Hookah Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb058a50"},"location":{"coordinates":[-73.87255809999999,40.7604343],"type":"Point"},"name":"New Kings Garden Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058a51"},"location":{"coordinates":[-73.849711,40.903746],"type":"Point"},"name":"Cofi Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058a52"},"location":{"coordinates":[-73.9742747,40.7642202],"type":"Point"},"name":"Olma Caviar"} +,{"_id":{"$oid":"55cba2476c522cafdb058a53"},"location":{"coordinates":[-73.9166199,40.6992164],"type":"Point"},"name":"Apolo Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058a54"},"location":{"coordinates":[-73.9911656,40.7182551],"type":"Point"},"name":"Williamsburg Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb058a55"},"location":{"coordinates":[-73.98576299999999,40.7274269],"type":"Point"},"name":"Ravagh Persian Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb058a56"},"location":{"coordinates":[-73.851682,40.7268342],"type":"Point"},"name":"New York Hot Bagels \u0026 Bialys"} +,{"_id":{"$oid":"55cba2476c522cafdb058a57"},"location":{"coordinates":[-73.9653551,40.7828647],"type":"Point"},"name":"Cafe1 \u0026 Cafe 4 (American Museum Of Natural History)"} +,{"_id":{"$oid":"55cba2476c522cafdb058a58"},"location":{"coordinates":[-73.96919539999999,40.75660430000001],"type":"Point"},"name":"Fabio"} +,{"_id":{"$oid":"55cba2476c522cafdb058a59"},"location":{"coordinates":[-73.977452,40.726399],"type":"Point"},"name":"Happy Wok"} +,{"_id":{"$oid":"55cba2476c522cafdb058a5a"},"location":{"coordinates":[-74.0036216,40.7102734],"type":"Point"},"name":"Andy'S Cafeteria (Hpd Building)"} +,{"_id":{"$oid":"55cba2476c522cafdb058a5b"},"location":{"coordinates":[-74.010393,40.7040863],"type":"Point"},"name":"Route 66 American Bbq"} +,{"_id":{"$oid":"55cba2476c522cafdb058a5c"},"location":{"coordinates":[-73.942335,40.723048],"type":"Point"},"name":"Little Dokebi"} +,{"_id":{"$oid":"55cba2476c522cafdb058a5d"},"location":{"coordinates":[-74.0072501,40.7102428],"type":"Point"},"name":"Potbelly Sandwich Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb058a5e"},"location":{"coordinates":[-73.829219,40.756994],"type":"Point"},"name":"Guizhou Noodles House"} +,{"_id":{"$oid":"55cba2476c522cafdb058a5f"},"location":{"coordinates":[-73.9714145,40.7575615],"type":"Point"},"name":"Paris Baguette"} +,{"_id":{"$oid":"55cba2476c522cafdb058a60"},"location":{"coordinates":[-73.829219,40.756994],"type":"Point"},"name":"Jake Tasty Food"} +,{"_id":{"$oid":"55cba2476c522cafdb058a61"},"location":{"coordinates":[-73.985642,40.731875],"type":"Point"},"name":"Durden"} +,{"_id":{"$oid":"55cba2476c522cafdb058a62"},"location":{"coordinates":[-73.9376662,40.8412097],"type":"Point"},"name":"C \u0026 B Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb058a63"},"location":{"coordinates":[-73.9444147,40.7947686],"type":"Point"},"name":"Megasun Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058a64"},"location":{"coordinates":[-73.9518538,40.7487198],"type":"Point"},"name":"Zoe Place"} +,{"_id":{"$oid":"55cba2476c522cafdb058a65"},"location":{"coordinates":[-73.988073,40.6921396],"type":"Point"},"name":"Blimpie"} +,{"_id":{"$oid":"55cba2476c522cafdb058a66"},"location":{"coordinates":[-73.96904289999999,40.75007129999999],"type":"Point"},"name":"Mud Park"} +,{"_id":{"$oid":"55cba2476c522cafdb058a67"},"location":{"coordinates":[-73.993348,40.763101],"type":"Point"},"name":"Nano"} +,{"_id":{"$oid":"55cba2476c522cafdb058a68"},"location":{"coordinates":[-73.88920379999999,40.6332549],"type":"Point"},"name":"Heng Chang"} +,{"_id":{"$oid":"55cba2476c522cafdb058a69"},"location":{"coordinates":[-73.9109891,40.77555660000001],"type":"Point"},"name":"8 Dragon \u0026 Phoenix Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058a6a"},"location":{"coordinates":[-73.931262,40.692404],"type":"Point"},"name":"Karma Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058a6b"},"location":{"coordinates":[-73.99826,40.7449136],"type":"Point"},"name":"Red Mango"} +,{"_id":{"$oid":"55cba2476c522cafdb058a6c"},"location":{"coordinates":[-73.92943609999999,40.756577],"type":"Point"},"name":"Leo'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb058a6d"},"location":{"coordinates":[-73.90842860000001,40.6755847],"type":"Point"},"name":"New Xin Long Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb058a6e"},"location":{"coordinates":[-73.78390399999999,40.69653599999999],"type":"Point"},"name":"Little Caesars"} +,{"_id":{"$oid":"55cba2476c522cafdb058a6f"},"location":{"coordinates":[-73.879018,40.740723],"type":"Point"},"name":"Panda Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058a70"},"location":{"coordinates":[-73.84581659999999,40.6893355],"type":"Point"},"name":"Taco Bell"} +,{"_id":{"$oid":"55cba2476c522cafdb058a71"},"location":{"coordinates":[-73.8483001,40.7100718],"type":"Point"},"name":"Dante'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb058a72"},"location":{"coordinates":[-73.9715358,40.6929896],"type":"Point"},"name":"Brooklyn Sweet Spot"} +,{"_id":{"$oid":"55cba2476c522cafdb058a73"},"location":{"coordinates":[-73.9702351,40.6089075],"type":"Point"},"name":"Sushi Royale"} +,{"_id":{"$oid":"55cba2476c522cafdb058a74"},"location":{"coordinates":[-73.942261,40.83842],"type":"Point"},"name":"El Nuevo Jobo Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058a75"},"location":{"coordinates":[-73.90257199999999,40.70067299999999],"type":"Point"},"name":"Taco Bell"} +,{"_id":{"$oid":"55cba2476c522cafdb058a76"},"location":{"coordinates":[-73.9801252,40.7579118],"type":"Point"},"name":"Sofia'S"} +,{"_id":{"$oid":"55cba2476c522cafdb058a77"},"location":{"coordinates":[-73.873459,40.762332],"type":"Point"},"name":"La Ruana"} +,{"_id":{"$oid":"55cba2476c522cafdb058a78"},"location":{"coordinates":[-73.98021949999999,40.7800961],"type":"Point"},"name":"Grand Sichuan Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058a79"},"location":{"coordinates":[-73.9919939,40.6893143],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb058a7a"},"location":{"coordinates":[-73.98088299999999,40.729191],"type":"Point"},"name":"Empire Biscuit, Llc"} +,{"_id":{"$oid":"55cba2476c522cafdb058a7b"},"location":{"coordinates":[-73.9527627,40.8006489],"type":"Point"},"name":"Seasoned Vegan"} +,{"_id":{"$oid":"55cba2476c522cafdb058a7c"},"location":{"coordinates":[-73.960244,40.675246],"type":"Point"},"name":"Covenhoven"} +,{"_id":{"$oid":"55cba2476c522cafdb058a7d"},"location":{"coordinates":[-73.8880779,40.854526],"type":"Point"},"name":"Blue Mediterranean Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058a7e"},"location":{"coordinates":[-74.091559,40.586583],"type":"Point"},"name":"Dyker Park Bagels"} +,{"_id":{"$oid":"55cba2476c522cafdb058a7f"},"location":{"coordinates":[-73.99031389999999,40.7449956],"type":"Point"},"name":"Bombay Sandwich Co"} +,{"_id":{"$oid":"55cba2476c522cafdb058a80"},"location":{"coordinates":[-73.90442010000001,40.812314],"type":"Point"},"name":"3-J Restaurant And Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb058a81"},"location":{"coordinates":[-73.97747900000002,40.75972],"type":"Point"},"name":"Nyy Steak"} +,{"_id":{"$oid":"55cba2476c522cafdb058a82"},"location":{"coordinates":[-73.866655,40.837397],"type":"Point"},"name":"Ming Garden Restaurant Inc"} +,{"_id":{"$oid":"55cba2476c522cafdb058a83"},"location":{"coordinates":[-73.90231480000001,40.6941557],"type":"Point"},"name":"Houdini Kitchen Lab"} +,{"_id":{"$oid":"55cba2476c522cafdb058a84"},"location":{"coordinates":[-73.857897,40.749995],"type":"Point"},"name":"108 Lounge - Club 108"} +,{"_id":{"$oid":"55cba2476c522cafdb058a85"},"location":{"coordinates":[-73.78959739999999,40.7118776],"type":"Point"},"name":"D'Sophis Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058a86"},"location":{"coordinates":[-73.9703093,40.7575104],"type":"Point"},"name":"Ground Central Coffee Company"} +,{"_id":{"$oid":"55cba2476c522cafdb058a87"},"location":{"coordinates":[-73.942729,40.693242],"type":"Point"},"name":"Kurent Events"} +,{"_id":{"$oid":"55cba2476c522cafdb058a88"},"location":{"coordinates":[-73.9938251,40.7140767],"type":"Point"},"name":"Coco Fresh Tea \u0026 Juice"} +,{"_id":{"$oid":"55cba2476c522cafdb058a89"},"location":{"coordinates":[-73.91275159999999,40.7747767],"type":"Point"},"name":"Sweet Spot"} +,{"_id":{"$oid":"55cba2476c522cafdb058a8a"},"location":{"coordinates":[-73.91714259999999,40.7810233],"type":"Point"},"name":"Hellgate On The Park"} +,{"_id":{"$oid":"55cba2476c522cafdb058a8b"},"location":{"coordinates":[-73.89035,40.7489072],"type":"Point"},"name":"Samudra Indian Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058a8c"},"location":{"coordinates":[-73.9744989,40.7529777],"type":"Point"},"name":"Davio'S Northern Italian Steakhouse"} +,{"_id":{"$oid":"55cba2476c522cafdb058a8d"},"location":{"coordinates":[-73.84252459999999,40.7190827],"type":"Point"},"name":"Twist And Smash'D"} +,{"_id":{"$oid":"55cba2476c522cafdb058a8e"},"location":{"coordinates":[-73.9424059,40.7011517],"type":"Point"},"name":"George'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058a8f"},"location":{"coordinates":[-73.90675159999999,40.8800534],"type":"Point"},"name":"Mi Lindo San Miguelito"} +,{"_id":{"$oid":"55cba2476c522cafdb058a90"},"location":{"coordinates":[-73.89529680000001,40.66759620000001],"type":"Point"},"name":"New Golden Star Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058a91"},"location":{"coordinates":[-73.8582598,40.8910844],"type":"Point"},"name":"La Montego Caribbean Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb058a92"},"location":{"coordinates":[-73.91652789999999,40.7623355],"type":"Point"},"name":"The Bao Shoppe"} +,{"_id":{"$oid":"55cba2476c522cafdb058a93"},"location":{"coordinates":[-73.83095399999999,40.7056479],"type":"Point"},"name":"Venue"} +,{"_id":{"$oid":"55cba2476c522cafdb058a94"},"location":{"coordinates":[-74.00573349999999,40.7398532],"type":"Point"},"name":"The Chester"} +,{"_id":{"$oid":"55cba2476c522cafdb058a95"},"location":{"coordinates":[-73.99859289999999,40.7147562],"type":"Point"},"name":"Silk Road Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058a96"},"location":{"coordinates":[-73.9898,40.726589],"type":"Point"},"name":"Red Room"} +,{"_id":{"$oid":"55cba2476c522cafdb058a97"},"location":{"coordinates":[-73.9459091,40.6946492],"type":"Point"},"name":"Reconnect Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058a98"},"location":{"coordinates":[-73.991482,40.7153294],"type":"Point"},"name":"Fung Tu"} +,{"_id":{"$oid":"55cba2476c522cafdb058a99"},"location":{"coordinates":[-73.9185869,40.8682899],"type":"Point"},"name":"Trattoria Inwood"} +,{"_id":{"$oid":"55cba2476c522cafdb058a9a"},"location":{"coordinates":[-73.9884794,40.7396125],"type":"Point"},"name":"Rhong-Tiam Thai"} +,{"_id":{"$oid":"55cba2476c522cafdb058a9b"},"location":{"coordinates":[-73.9571232,40.7119672],"type":"Point"},"name":"Sumo Teriyaki"} +,{"_id":{"$oid":"55cba2476c522cafdb058a9c"},"location":{"coordinates":[-73.8940203,40.7464388],"type":"Point"},"name":"Unidentified Flying Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb058a9d"},"location":{"coordinates":[-73.9693236,40.755363],"type":"Point"},"name":"Shochu And Tapas Aya"} +,{"_id":{"$oid":"55cba2476c522cafdb058a9e"},"location":{"coordinates":[-73.9875662,40.72038999999999],"type":"Point"},"name":"Patacon Pisao"} +,{"_id":{"$oid":"55cba2476c522cafdb058a9f"},"location":{"coordinates":[-74.0026066,40.6846962],"type":"Point"},"name":"La Bottega Red Hook"} +,{"_id":{"$oid":"55cba2476c522cafdb058aa0"},"location":{"coordinates":[-73.977312,40.762111],"type":"Point"},"name":"New York Thai Grill \u0026 Sushi Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb058aa1"},"location":{"coordinates":[-73.9882485,40.7214626],"type":"Point"},"name":"Mission Cantina"} +,{"_id":{"$oid":"55cba2476c522cafdb058aa2"},"location":{"coordinates":[-73.99955770000001,40.7296503],"type":"Point"},"name":"Dumpling Kingdom"} +,{"_id":{"$oid":"55cba2476c522cafdb058aa3"},"location":{"coordinates":[-73.95373459999999,40.7886376],"type":"Point"},"name":"Q Marqet"} +,{"_id":{"$oid":"55cba2476c522cafdb058aa4"},"location":{"coordinates":[-73.9785639,40.6707461],"type":"Point"},"name":"Sushi Katsuei"} +,{"_id":{"$oid":"55cba2476c522cafdb058aa5"},"location":{"coordinates":[-73.82948700000001,40.657432],"type":"Point"},"name":"Laquana King"} +,{"_id":{"$oid":"55cba2476c522cafdb058aa6"},"location":{"coordinates":[-73.9268905,40.6940128],"type":"Point"},"name":"Wang Wang Restaurant Inc"} +,{"_id":{"$oid":"55cba2476c522cafdb058aa7"},"location":{"coordinates":[-73.99862519999999,40.7292862],"type":"Point"},"name":"The Uncommons"} +,{"_id":{"$oid":"55cba2476c522cafdb058aa8"},"location":{"coordinates":[-73.9909843,40.747054],"type":"Point"},"name":"Luna"} +,{"_id":{"$oid":"55cba2476c522cafdb058aa9"},"location":{"coordinates":[-73.8834978,40.7476713],"type":"Point"},"name":"China Aaa"} +,{"_id":{"$oid":"55cba2476c522cafdb058aaa"},"location":{"coordinates":[-73.8479918,40.6949137],"type":"Point"},"name":"Cheung King"} +,{"_id":{"$oid":"55cba2476c522cafdb058aab"},"location":{"coordinates":[-73.9293836,40.7561886],"type":"Point"},"name":"Fresco Taco Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb058aac"},"location":{"coordinates":[-74.00216019999999,40.73780319999999],"type":"Point"},"name":"Wallflower"} +,{"_id":{"$oid":"55cba2476c522cafdb058aad"},"location":{"coordinates":[-73.95050839999999,40.8258412],"type":"Point"},"name":"Grullon Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb058aae"},"location":{"coordinates":[-73.9910182,40.76501469999999],"type":"Point"},"name":"Totto Ramen"} +,{"_id":{"$oid":"55cba2476c522cafdb058aaf"},"location":{"coordinates":[-73.979112,40.648437],"type":"Point"},"name":"Remys Vegetarian Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb058ab0"},"location":{"coordinates":[-73.918145,40.765087],"type":"Point"},"name":"Mama Yogurt"} +,{"_id":{"$oid":"55cba2476c522cafdb058ab1"},"location":{"coordinates":[-73.919679,40.8142274],"type":"Point"},"name":"Madison Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058ab2"},"location":{"coordinates":[-73.87769899999999,40.7484899],"type":"Point"},"name":"Capy Sabor De Celebracion"} +,{"_id":{"$oid":"55cba2476c522cafdb058ab3"},"location":{"coordinates":[-73.987475,40.75482299999999],"type":"Point"},"name":"Wasabi Sushi Bento"} +,{"_id":{"$oid":"55cba2476c522cafdb058ab4"},"location":{"coordinates":[-73.98322499999999,40.76459800000001],"type":"Point"},"name":"Creative Caterers / Artistry"} +,{"_id":{"$oid":"55cba2476c522cafdb058ab5"},"location":{"coordinates":[-73.74668439999999,40.6959994],"type":"Point"},"name":"The Smoke House"} +,{"_id":{"$oid":"55cba2476c522cafdb058ab6"},"location":{"coordinates":[-74.00713,40.6316739],"type":"Point"},"name":"Unique Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb058ab7"},"location":{"coordinates":[-73.88884949999999,40.699717],"type":"Point"},"name":"Serbian Association"} +,{"_id":{"$oid":"55cba2476c522cafdb058ab8"},"location":{"coordinates":[-73.9751096,40.6867424],"type":"Point"},"name":"Black Forst Brooklyn"} +,{"_id":{"$oid":"55cba2476c522cafdb058ab9"},"location":{"coordinates":[-73.9875742,40.7252424],"type":"Point"},"name":"Lui'S Thai Food"} +,{"_id":{"$oid":"55cba2476c522cafdb058aba"},"location":{"coordinates":[-73.943091,40.7902426],"type":"Point"},"name":"Lupita Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058abb"},"location":{"coordinates":[-74.004937,40.721908],"type":"Point"},"name":"Biny"} +,{"_id":{"$oid":"55cba2476c522cafdb058abc"},"location":{"coordinates":[-73.83565399999999,40.7076319],"type":"Point"},"name":"Oishii Japanses Tex-Mex"} +,{"_id":{"$oid":"55cba2476c522cafdb058abd"},"location":{"coordinates":[-73.854192,40.71075099999999],"type":"Point"},"name":"Silk Cakes"} +,{"_id":{"$oid":"55cba2476c522cafdb058abe"},"location":{"coordinates":[-73.96347659999999,40.671151],"type":"Point"},"name":"Saul @ Brooklyn Museum"} +,{"_id":{"$oid":"55cba2476c522cafdb058abf"},"location":{"coordinates":[-73.95958999999999,40.814613],"type":"Point"},"name":"Chapati House"} +,{"_id":{"$oid":"55cba2476c522cafdb058ac0"},"location":{"coordinates":[-73.86465299999999,40.8522361],"type":"Point"},"name":"New Spring Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb058ac1"},"location":{"coordinates":[-73.9774493,40.7646683],"type":"Point"},"name":"The Wayfarer"} +,{"_id":{"$oid":"55cba2476c522cafdb058ac2"},"location":{"coordinates":[-73.9977528,40.6780404],"type":"Point"},"name":"Vinnys Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb058ac3"},"location":{"coordinates":[-73.9917475,40.75419],"type":"Point"},"name":"El Sabroso Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058ac4"},"location":{"coordinates":[-73.989186,40.7637209],"type":"Point"},"name":"Agreen Rancho Mexican Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058ac5"},"location":{"coordinates":[-73.9857811,40.7526085],"type":"Point"},"name":"Moe'S Southwest Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb058ac6"},"location":{"coordinates":[-73.89276439999999,40.6365838],"type":"Point"},"name":"Eastern Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058ac7"},"location":{"coordinates":[-73.785603,40.843979],"type":"Point"},"name":"Ray'S Cafe And Restaurant Inc"} +,{"_id":{"$oid":"55cba2476c522cafdb058ac8"},"location":{"coordinates":[-73.79811699999999,40.706348],"type":"Point"},"name":"Villa Mar Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058ac9"},"location":{"coordinates":[-73.8998653,40.7457615],"type":"Point"},"name":"El Rincon Peruano Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058aca"},"location":{"coordinates":[-73.942296,40.7484929],"type":"Point"},"name":"M. Wells Steakhouse"} +,{"_id":{"$oid":"55cba2476c522cafdb058acb"},"location":{"coordinates":[-74.0011749,40.7416347],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb058acc"},"location":{"coordinates":[-73.9885947,40.7217169],"type":"Point"},"name":"Whynot Coffe \u0026 Wine Art Gallery"} +,{"_id":{"$oid":"55cba2476c522cafdb058acd"},"location":{"coordinates":[-73.9807344,40.659977],"type":"Point"},"name":"Terrace Bagels"} +,{"_id":{"$oid":"55cba2476c522cafdb058ace"},"location":{"coordinates":[-73.98172699999999,40.67509],"type":"Point"},"name":"Grand Central Oyster Bar Brooklyn"} +,{"_id":{"$oid":"55cba2476c522cafdb058acf"},"location":{"coordinates":[-73.99370499999999,40.713539],"type":"Point"},"name":"Xing Wong Bbq"} +,{"_id":{"$oid":"55cba2476c522cafdb058ad0"},"location":{"coordinates":[-73.8978794,40.8520287],"type":"Point"},"name":"718 Lounge \u0026 Tapas"} +,{"_id":{"$oid":"55cba2476c522cafdb058ad1"},"location":{"coordinates":[-73.9021331,40.7181474],"type":"Point"},"name":"The Live Oak"} +,{"_id":{"$oid":"55cba2476c522cafdb058ad2"},"location":{"coordinates":[-74.011534,40.651179],"type":"Point"},"name":"Acapulco"} +,{"_id":{"$oid":"55cba2476c522cafdb058ad3"},"location":{"coordinates":[-73.8454939,40.7208543],"type":"Point"},"name":"The Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb058ad4"},"location":{"coordinates":[-74.0261323,40.6220114],"type":"Point"},"name":"Five Guys Burgers And Fries"} +,{"_id":{"$oid":"55cba2476c522cafdb058ad5"},"location":{"coordinates":[-73.9125256,40.744416],"type":"Point"},"name":"Cafe 52 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058ad6"},"location":{"coordinates":[-73.97178550000001,40.7644109],"type":"Point"},"name":"Rotisserie Georgette"} +,{"_id":{"$oid":"55cba2476c522cafdb058ad7"},"location":{"coordinates":[-73.98587959999999,40.6934915],"type":"Point"},"name":"Five Guys Burgers And Fries"} +,{"_id":{"$oid":"55cba2476c522cafdb058ad8"},"location":{"coordinates":[-73.9241284,40.7616311],"type":"Point"},"name":"Bagel Nosh Nyc"} +,{"_id":{"$oid":"55cba2476c522cafdb058ad9"},"location":{"coordinates":[-73.9805153,40.6685832],"type":"Point"},"name":"Five Guys Burgers And Fries"} +,{"_id":{"$oid":"55cba2476c522cafdb058ada"},"location":{"coordinates":[-73.9739429,40.7524739],"type":"Point"},"name":"Dee Daa"} +,{"_id":{"$oid":"55cba2476c522cafdb058adb"},"location":{"coordinates":[-73.9938384,40.6944331],"type":"Point"},"name":"Five Guys Burgers And Fries"} +,{"_id":{"$oid":"55cba2476c522cafdb058adc"},"location":{"coordinates":[-74.1305854,40.6128341],"type":"Point"},"name":"Pi"} +,{"_id":{"$oid":"55cba2476c522cafdb058add"},"location":{"coordinates":[-73.8401027,40.836262],"type":"Point"},"name":"Dmv Deli Express"} +,{"_id":{"$oid":"55cba2476c522cafdb058ade"},"location":{"coordinates":[-73.92474399999999,40.768715],"type":"Point"},"name":"Kazokuai Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb058adf"},"location":{"coordinates":[-73.829437,40.757178],"type":"Point"},"name":"Xing Wang Fuzhou Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb058ae0"},"location":{"coordinates":[-73.999588,40.71661599999999],"type":"Point"},"name":"Break Room"} +,{"_id":{"$oid":"55cba2476c522cafdb058ae1"},"location":{"coordinates":[-73.9960775,40.7201075],"type":"Point"},"name":"Pepe Rosso Social"} +,{"_id":{"$oid":"55cba2476c522cafdb058ae2"},"location":{"coordinates":[-74.1364188,40.6241376],"type":"Point"},"name":"Osaka Japanese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058ae3"},"location":{"coordinates":[-73.730564,40.67372],"type":"Point"},"name":"Rosedale Delicatessen"} +,{"_id":{"$oid":"55cba2476c522cafdb058ae4"},"location":{"coordinates":[-73.8079092,40.76366549999999],"type":"Point"},"name":"Shin Hwang Je Topokki"} +,{"_id":{"$oid":"55cba2476c522cafdb058ae5"},"location":{"coordinates":[-73.9912733,40.75936859999999],"type":"Point"},"name":"Quinn'S Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb058ae6"},"location":{"coordinates":[-73.9124716,40.7664952],"type":"Point"},"name":"Ricky Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb058ae7"},"location":{"coordinates":[-73.990708,40.7613615],"type":"Point"},"name":"Convo Bar 47"} +,{"_id":{"$oid":"55cba2476c522cafdb058ae8"},"location":{"coordinates":[-74.009258,40.648943],"type":"Point"},"name":"Reencuentro Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058ae9"},"location":{"coordinates":[-73.9259245,40.827435],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb058aea"},"location":{"coordinates":[-73.99437999999999,40.717793],"type":"Point"},"name":"A K Us Group"} +,{"_id":{"$oid":"55cba2476c522cafdb058aeb"},"location":{"coordinates":[-73.9583177,40.7106468],"type":"Point"},"name":"Mahal Kita"} +,{"_id":{"$oid":"55cba2476c522cafdb058aec"},"location":{"coordinates":[-73.979457,40.7525396],"type":"Point"},"name":"Fresh \u0026 Co"} +,{"_id":{"$oid":"55cba2476c522cafdb058aed"},"location":{"coordinates":[-74.0060893,40.7463267],"type":"Point"},"name":"Underline Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb058aee"},"location":{"coordinates":[-73.9365321,40.8408121],"type":"Point"},"name":"New Lucky Star Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb058aef"},"location":{"coordinates":[-73.923379,40.812827],"type":"Point"},"name":"Crown Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb058af0"},"location":{"coordinates":[-73.90018599999999,40.648741],"type":"Point"},"name":"Leo'S Deli Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb058af1"},"location":{"coordinates":[-73.9583293,40.8112149],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb058af2"},"location":{"coordinates":[-73.98002,40.61163699999999],"type":"Point"},"name":"West 6 Care Center"} +,{"_id":{"$oid":"55cba2476c522cafdb058af3"},"location":{"coordinates":[-73.9315788,40.6991442],"type":"Point"},"name":"Dillinger'S"} +,{"_id":{"$oid":"55cba2476c522cafdb058af4"},"location":{"coordinates":[-73.99065499999999,40.7483005],"type":"Point"},"name":"Dee Daa"} +,{"_id":{"$oid":"55cba2476c522cafdb058af5"},"location":{"coordinates":[-73.9638641,40.6770915],"type":"Point"},"name":"Konditori"} +,{"_id":{"$oid":"55cba2476c522cafdb058af6"},"location":{"coordinates":[-74.16940199999999,40.5751388],"type":"Point"},"name":"Miller'S Ale House"} +,{"_id":{"$oid":"55cba2476c522cafdb058af7"},"location":{"coordinates":[-73.9974671,40.7136448],"type":"Point"},"name":"Noodle Q"} +,{"_id":{"$oid":"55cba2476c522cafdb058af8"},"location":{"coordinates":[-73.9700759,40.6047311],"type":"Point"},"name":"El Pollo Enchilado"} +,{"_id":{"$oid":"55cba2476c522cafdb058af9"},"location":{"coordinates":[-74.000951,40.747565],"type":"Point"},"name":"Kiku Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb058afa"},"location":{"coordinates":[-73.98515400000001,40.7505554],"type":"Point"},"name":"Sankeys Nyc"} +,{"_id":{"$oid":"55cba2476c522cafdb058afb"},"location":{"coordinates":[-74.0665963,40.6143679],"type":"Point"},"name":"New Win Hing Inc"} +,{"_id":{"$oid":"55cba2476c522cafdb058afc"},"location":{"coordinates":[-73.9528459,40.77867],"type":"Point"},"name":"Little Italy Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb058afd"},"location":{"coordinates":[-73.9882872,40.7717637],"type":"Point"},"name":"Cafe 11"} +,{"_id":{"$oid":"55cba2476c522cafdb058afe"},"location":{"coordinates":[-73.87581,40.748484],"type":"Point"},"name":"El Burito Loco"} +,{"_id":{"$oid":"55cba2476c522cafdb058aff"},"location":{"coordinates":[-73.7827156,40.7286253],"type":"Point"},"name":"New Dave'S"} +,{"_id":{"$oid":"55cba2476c522cafdb058b00"},"location":{"coordinates":[-73.95191919999999,40.7176114],"type":"Point"},"name":"Patisserie Tomoko"} +,{"_id":{"$oid":"55cba2476c522cafdb058b01"},"location":{"coordinates":[-73.9931265,40.73472750000001],"type":"Point"},"name":"All'Onda"} +,{"_id":{"$oid":"55cba2476c522cafdb058b02"},"location":{"coordinates":[-73.9442425,40.835775],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb058b03"},"location":{"coordinates":[-73.830434,40.758595],"type":"Point"},"name":"New Mei Shi Lin Eastern"} +,{"_id":{"$oid":"55cba2476c522cafdb058b04"},"location":{"coordinates":[-73.8169612,40.5889447],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb058b05"},"location":{"coordinates":[-73.98401249999999,40.6765048],"type":"Point"},"name":"Pickle Shack"} +,{"_id":{"$oid":"55cba2476c522cafdb058b06"},"location":{"coordinates":[-73.979579,40.7833619],"type":"Point"},"name":"Burke \u0026 Wills/Manhattan Cricket Club"} +,{"_id":{"$oid":"55cba2476c522cafdb058b07"},"location":{"coordinates":[-74.008884,40.704546],"type":"Point"},"name":"Lenny'S Hanover, Llc"} +,{"_id":{"$oid":"55cba2476c522cafdb058b08"},"location":{"coordinates":[-73.95086090000001,40.7794236],"type":"Point"},"name":"The Writing Room"} +,{"_id":{"$oid":"55cba2476c522cafdb058b09"},"location":{"coordinates":[-73.9155035,40.7459204],"type":"Point"},"name":"Uncle Jimmy'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb058b0a"},"location":{"coordinates":[-73.96207009999999,40.6358448],"type":"Point"},"name":"El Paso Mexican Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb058b0b"},"location":{"coordinates":[-74.0095549,40.7222178],"type":"Point"},"name":"Dylan Prime"} +,{"_id":{"$oid":"55cba2476c522cafdb058b0c"},"location":{"coordinates":[-73.804478,40.7544899],"type":"Point"},"name":"Antioch Missionary Church"} +,{"_id":{"$oid":"55cba2476c522cafdb058b0d"},"location":{"coordinates":[-73.9968751,40.71390780000001],"type":"Point"},"name":"Fuleen Seafood Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058b0e"},"location":{"coordinates":[-73.91601399999999,40.702559],"type":"Point"},"name":"Akaru Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb058b0f"},"location":{"coordinates":[-74.0005327,40.7181187],"type":"Point"},"name":"Sing Huang Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058b10"},"location":{"coordinates":[-73.91034990000001,40.7445811],"type":"Point"},"name":"Mi Tierra Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb058b11"},"location":{"coordinates":[-73.9372563,40.6368404],"type":"Point"},"name":"Golden Krust"} +,{"_id":{"$oid":"55cba2476c522cafdb058b12"},"location":{"coordinates":[-73.87865719999999,40.7559248],"type":"Point"},"name":"Que Rico Taco"} +,{"_id":{"$oid":"55cba2476c522cafdb058b13"},"location":{"coordinates":[-73.9845132,40.7191124],"type":"Point"},"name":"Black Cat Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058b14"},"location":{"coordinates":[-73.9939725,40.60898299999999],"type":"Point"},"name":"Sofia Pizzeria And Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058b15"},"location":{"coordinates":[-73.94479199999999,40.68645799999999],"type":"Point"},"name":"Crocus"} +,{"_id":{"$oid":"55cba2476c522cafdb058b16"},"location":{"coordinates":[-73.9926697,40.72551],"type":"Point"},"name":"Bianca"} +,{"_id":{"$oid":"55cba2476c522cafdb058b17"},"location":{"coordinates":[-73.98395730000001,40.7575143],"type":"Point"},"name":"T 45"} +,{"_id":{"$oid":"55cba2476c522cafdb058b18"},"location":{"coordinates":[-73.93058549999999,40.6720914],"type":"Point"},"name":"Hardee"} +,{"_id":{"$oid":"55cba2476c522cafdb058b19"},"location":{"coordinates":[-73.97349799999999,40.590427],"type":"Point"},"name":"Famous Restaurant Rotesserie Grill Taco And Chinese Food"} +,{"_id":{"$oid":"55cba2476c522cafdb058b1a"},"location":{"coordinates":[-73.943046,40.807862],"type":"Point"},"name":"Event Productions Catering \u0026 Food Services"} +,{"_id":{"$oid":"55cba2476c522cafdb058b1b"},"location":{"coordinates":[-73.9772237,40.7566015],"type":"Point"},"name":"Da Moa Kitchen Corp"} +,{"_id":{"$oid":"55cba2476c522cafdb058b1c"},"location":{"coordinates":[-73.9101331,40.8859635],"type":"Point"},"name":"Palace Of Japan"} +,{"_id":{"$oid":"55cba2476c522cafdb058b1d"},"location":{"coordinates":[-73.8739659,40.7769271],"type":"Point"},"name":"Wibar"} +,{"_id":{"$oid":"55cba2476c522cafdb058b1e"},"location":{"coordinates":[-73.97705599999999,40.752998],"type":"Point"},"name":"Shiro Of Japan"} +,{"_id":{"$oid":"55cba2476c522cafdb058b1f"},"location":{"coordinates":[-73.8677329,40.770493],"type":"Point"},"name":"Voyage"} +,{"_id":{"$oid":"55cba2476c522cafdb058b20"},"location":{"coordinates":[-73.8739659,40.7769271],"type":"Point"},"name":"Crust"} +,{"_id":{"$oid":"55cba2476c522cafdb058b21"},"location":{"coordinates":[-73.950338,40.669058],"type":"Point"},"name":"Exotic Roti Express"} +,{"_id":{"$oid":"55cba2476c522cafdb058b22"},"location":{"coordinates":[-73.9923807,40.718652],"type":"Point"},"name":"Louie And Chan"} +,{"_id":{"$oid":"55cba2476c522cafdb058b23"},"location":{"coordinates":[-73.91179389999999,40.7749774],"type":"Point"},"name":"Shawarmania"} +,{"_id":{"$oid":"55cba2476c522cafdb058b24"},"location":{"coordinates":[-73.883287,40.8809826],"type":"Point"},"name":"Bronx Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb058b25"},"location":{"coordinates":[-73.9886525,40.7221165],"type":"Point"},"name":"Above Allen"} +,{"_id":{"$oid":"55cba2476c522cafdb058b26"},"location":{"coordinates":[-74.1093526,40.6297856],"type":"Point"},"name":"Philly Soft Pretzel Factory"} +,{"_id":{"$oid":"55cba2476c522cafdb058b27"},"location":{"coordinates":[-73.993974,40.615765],"type":"Point"},"name":"New Jin Xin Resaturant"} +,{"_id":{"$oid":"55cba2476c522cafdb058b28"},"location":{"coordinates":[-73.88565609999999,40.75558820000001],"type":"Point"},"name":"Bocaito Cafe \u0026 Wine Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb058b29"},"location":{"coordinates":[-73.950755,40.710749],"type":"Point"},"name":"New Apolo Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058b2a"},"location":{"coordinates":[-73.97643339999999,40.6873854],"type":"Point"},"name":"El Toro Taqueria"} +,{"_id":{"$oid":"55cba2476c522cafdb058b2b"},"location":{"coordinates":[-73.83297999999999,40.75350600000001],"type":"Point"},"name":"88 Degrees"} +,{"_id":{"$oid":"55cba2476c522cafdb058b2c"},"location":{"coordinates":[-73.9322943,40.8567915],"type":"Point"},"name":"Tequila Mexican Bar \u0026 Grill Corp"} +,{"_id":{"$oid":"55cba2476c522cafdb058b2d"},"location":{"coordinates":[-73.9972588,40.6671093],"type":"Point"},"name":"Metro Cafeteria \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058b2e"},"location":{"coordinates":[-74.014061,40.650339],"type":"Point"},"name":"Lust \u0026 Love"} +,{"_id":{"$oid":"55cba2476c522cafdb058b2f"},"location":{"coordinates":[-74.02548580000001,40.6221325],"type":"Point"},"name":"Dunkin' Donuts \u0026 Baskin Robbins"} +,{"_id":{"$oid":"55cba2476c522cafdb058b30"},"location":{"coordinates":[-73.977469,40.749923],"type":"Point"},"name":"Kale"} +,{"_id":{"$oid":"55cba2476c522cafdb058b31"},"location":{"coordinates":[-73.9697484,40.7601236],"type":"Point"},"name":"Soom Soom"} +,{"_id":{"$oid":"55cba2476c522cafdb058b32"},"location":{"coordinates":[-73.9743872,40.7496832],"type":"Point"},"name":"Blue Olive Market"} +,{"_id":{"$oid":"55cba2476c522cafdb058b33"},"location":{"coordinates":[-73.9837252,40.7793263],"type":"Point"},"name":"Emerald Inn"} +,{"_id":{"$oid":"55cba2476c522cafdb058b34"},"location":{"coordinates":[-73.908576,40.77496],"type":"Point"},"name":"Francis Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058b35"},"location":{"coordinates":[-73.851114,40.6830489],"type":"Point"},"name":"Tu Salud Es Riqueza"} +,{"_id":{"$oid":"55cba2476c522cafdb058b36"},"location":{"coordinates":[-73.950182,40.728948],"type":"Point"},"name":"Oasis Of Greenpoint"} +,{"_id":{"$oid":"55cba2476c522cafdb058b37"},"location":{"coordinates":[-73.864884,40.8792729],"type":"Point"},"name":"Sing Loon Zheng Kitchen Inc"} +,{"_id":{"$oid":"55cba2476c522cafdb058b38"},"location":{"coordinates":[-73.830995,40.699457],"type":"Point"},"name":"Moreira Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058b39"},"location":{"coordinates":[-73.965964,40.7943209],"type":"Point"},"name":"Yogurtland"} +,{"_id":{"$oid":"55cba2476c522cafdb058b3a"},"location":{"coordinates":[-73.9756917,40.6808176],"type":"Point"},"name":"Gorilla Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb058b3b"},"location":{"coordinates":[-73.9921754,40.722382],"type":"Point"},"name":"Bonnie Vee"} +,{"_id":{"$oid":"55cba2476c522cafdb058b3c"},"location":{"coordinates":[-73.91001709999999,40.6994347],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb058b3d"},"location":{"coordinates":[-73.8948295,40.63871959999999],"type":"Point"},"name":"G\u0026B Terminal Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb058b3e"},"location":{"coordinates":[-73.915747,40.688391],"type":"Point"},"name":"New Choy Hing Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058b3f"},"location":{"coordinates":[-73.96661619999999,40.7567559],"type":"Point"},"name":"Flute East"} +,{"_id":{"$oid":"55cba2476c522cafdb058b40"},"location":{"coordinates":[-73.961489,40.714787],"type":"Point"},"name":"Jane Motorcycles"} +,{"_id":{"$oid":"55cba2476c522cafdb058b41"},"location":{"coordinates":[-73.85243229999999,40.6933349],"type":"Point"},"name":"Pan La Las Que Sea Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb058b42"},"location":{"coordinates":[-73.9834509,40.7527127],"type":"Point"},"name":"Chipotle Mexican Grill #2123"} +,{"_id":{"$oid":"55cba2476c522cafdb058b43"},"location":{"coordinates":[-73.9879057,40.7442733],"type":"Point"},"name":"Chipotle Mexican Grill #1962"} +,{"_id":{"$oid":"55cba2476c522cafdb058b44"},"location":{"coordinates":[-73.782755,40.69550599999999],"type":"Point"},"name":"The Island"} +,{"_id":{"$oid":"55cba2476c522cafdb058b45"},"location":{"coordinates":[-73.9167758,40.7546047],"type":"Point"},"name":"United Miners Soccer Club"} +,{"_id":{"$oid":"55cba2476c522cafdb058b46"},"location":{"coordinates":[-74.005754,40.649816],"type":"Point"},"name":"Rinconcito Familiar Mexican Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb058b47"},"location":{"coordinates":[-73.9037599,40.8186002],"type":"Point"},"name":"Tastebud Foods"} +,{"_id":{"$oid":"55cba2476c522cafdb058b48"},"location":{"coordinates":[-73.9504338,40.6739216],"type":"Point"},"name":"Secrets"} +,{"_id":{"$oid":"55cba2476c522cafdb058b49"},"location":{"coordinates":[-73.9508803,40.7740108],"type":"Point"},"name":"Canele By Celine"} +,{"_id":{"$oid":"55cba2476c522cafdb058b4a"},"location":{"coordinates":[-73.9184573,40.7420573],"type":"Point"},"name":"El Potrero Sport Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb058b4b"},"location":{"coordinates":[-73.89505,40.739747],"type":"Point"},"name":"Taqueria La Hacienda"} +,{"_id":{"$oid":"55cba2476c522cafdb058b4c"},"location":{"coordinates":[-73.9665998,40.75671380000001],"type":"Point"},"name":"Eclair Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb058b4d"},"location":{"coordinates":[-73.983335,40.759241],"type":"Point"},"name":"Num Pang Sandwich Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb058b4e"},"location":{"coordinates":[-73.9922832,40.721214],"type":"Point"},"name":"Antonioni'S"} +,{"_id":{"$oid":"55cba2476c522cafdb058b4f"},"location":{"coordinates":[-73.99841099999999,40.7450708],"type":"Point"},"name":"Chelsea Deli And Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb058b50"},"location":{"coordinates":[-74.09310099999999,40.585914],"type":"Point"},"name":"Jac Mao Chinese Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb058b51"},"location":{"coordinates":[-73.9259209,40.6822737],"type":"Point"},"name":"Mitchell'S Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb058b52"},"location":{"coordinates":[-74.0115811,40.6366999],"type":"Point"},"name":"Rainbow Mix"} +,{"_id":{"$oid":"55cba2476c522cafdb058b53"},"location":{"coordinates":[-73.9381965,40.5784584],"type":"Point"},"name":"Panini Tost Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058b54"},"location":{"coordinates":[-73.905052,40.849335],"type":"Point"},"name":"El Divo Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb058b55"},"location":{"coordinates":[-73.736098,40.6648332],"type":"Point"},"name":"G'S Restaurant \u0026 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb058b56"},"location":{"coordinates":[-73.8086958,40.7060886],"type":"Point"},"name":"Nix Mix"} +,{"_id":{"$oid":"55cba2476c522cafdb058b57"},"location":{"coordinates":[-73.9703186,40.6089406],"type":"Point"},"name":"Avenue P Appetizer"} +,{"_id":{"$oid":"55cba2476c522cafdb058b58"},"location":{"coordinates":[-73.97770000000001,40.643752],"type":"Point"},"name":"Brooklyn Comfort"} +,{"_id":{"$oid":"55cba2476c522cafdb058b59"},"location":{"coordinates":[-73.9780123,40.7611228],"type":"Point"},"name":"Fogo De Chao"} +,{"_id":{"$oid":"55cba2476c522cafdb058b5a"},"location":{"coordinates":[-73.969779,40.7596294],"type":"Point"},"name":"Angus Club Steakhouse"} +,{"_id":{"$oid":"55cba2476c522cafdb058b5b"},"location":{"coordinates":[-73.94662939999999,40.7165837],"type":"Point"},"name":"Mykitchen In Brooklyn"} +,{"_id":{"$oid":"55cba2476c522cafdb058b5c"},"location":{"coordinates":[-74.1351911,40.6264188],"type":"Point"},"name":"Fortune Cookie"} +,{"_id":{"$oid":"55cba2476c522cafdb058b5d"},"location":{"coordinates":[-73.9603138,40.6822367],"type":"Point"},"name":"Lunitas"} +,{"_id":{"$oid":"55cba2476c522cafdb058b5e"},"location":{"coordinates":[-73.99409650000001,40.7446196],"type":"Point"},"name":"One Star"} +,{"_id":{"$oid":"55cba2476c522cafdb058b5f"},"location":{"coordinates":[-73.9932623,40.733751],"type":"Point"},"name":"Chipotle Mexican Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb058b60"},"location":{"coordinates":[-73.8662839,40.74997],"type":"Point"},"name":"Crystal'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058b61"},"location":{"coordinates":[-92.7301928,41.7461455],"type":"Point"},"name":"Chipotle Mexican Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb058b62"},"location":{"coordinates":[-73.9691283,40.7557713],"type":"Point"},"name":"Pop@Pod"} +,{"_id":{"$oid":"55cba2476c522cafdb058b63"},"location":{"coordinates":[-73.98359280000001,40.7266547],"type":"Point"},"name":"Falanghina"} +,{"_id":{"$oid":"55cba2476c522cafdb058b64"},"location":{"coordinates":[-73.983701,40.75908099999999],"type":"Point"},"name":"Aspen Social Club"} +,{"_id":{"$oid":"55cba2476c522cafdb058b65"},"location":{"coordinates":[-73.93098619999999,40.7663881],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb058b66"},"location":{"coordinates":[-73.87643039999999,40.8289939],"type":"Point"},"name":"Jaqueline'S Bakery Bar Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058b67"},"location":{"coordinates":[-73.9899016,40.6122958],"type":"Point"},"name":"Buonissima Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb058b68"},"location":{"coordinates":[-73.93192599999999,40.70767499999999],"type":"Point"},"name":"Kings County"} +,{"_id":{"$oid":"55cba2476c522cafdb058b69"},"location":{"coordinates":[-73.9222185,40.7072424],"type":"Point"},"name":"Union Pizza Works"} +,{"_id":{"$oid":"55cba2476c522cafdb058b6a"},"location":{"coordinates":[-73.89738969999999,40.6376389],"type":"Point"},"name":"Chole'S Restaurant \u0026 Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb058b6b"},"location":{"coordinates":[-73.926169,40.7605211],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb058b6c"},"location":{"coordinates":[-73.7713548,40.7648386],"type":"Point"},"name":"Beer Belly'S"} +,{"_id":{"$oid":"55cba2476c522cafdb058b6d"},"location":{"coordinates":[-73.7345982,40.771814],"type":"Point"},"name":"Lima 33"} +,{"_id":{"$oid":"55cba2476c522cafdb058b6e"},"location":{"coordinates":[-73.9191906,40.6194238],"type":"Point"},"name":"Brooklyn Cakery"} +,{"_id":{"$oid":"55cba2476c522cafdb058b6f"},"location":{"coordinates":[-73.948086,40.7248848],"type":"Point"},"name":"Raizes Churrascaria"} +,{"_id":{"$oid":"55cba2476c522cafdb058b70"},"location":{"coordinates":[-73.8491117,40.7104211],"type":"Point"},"name":"The Other Place"} +,{"_id":{"$oid":"55cba2476c522cafdb058b71"},"location":{"coordinates":[-73.8286502,40.7563576],"type":"Point"},"name":"Vishine Fashion (Juice Bar)"} +,{"_id":{"$oid":"55cba2476c522cafdb058b72"},"location":{"coordinates":[-74.0067516,40.7331756],"type":"Point"},"name":"The Path Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058b73"},"location":{"coordinates":[-74.0127268,40.6424888],"type":"Point"},"name":"Sunstone Tortillas Express"} +,{"_id":{"$oid":"55cba2476c522cafdb058b74"},"location":{"coordinates":[-73.9448342,40.687064],"type":"Point"},"name":"Ho Wah Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058b75"},"location":{"coordinates":[-74.00761589999999,40.7099729],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb058b76"},"location":{"coordinates":[-73.92536059999999,40.8273453],"type":"Point"},"name":"Bullpen Deli Twin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb058b77"},"location":{"coordinates":[-74.00044299999999,40.729675],"type":"Point"},"name":"Insomnia Cookies"} +,{"_id":{"$oid":"55cba2476c522cafdb058b78"},"location":{"coordinates":[-73.9504035,40.6687346],"type":"Point"},"name":"G. Lee'S Smokin Bbq"} +,{"_id":{"$oid":"55cba2476c522cafdb058b79"},"location":{"coordinates":[-73.8802232,40.7563641],"type":"Point"},"name":"Kfc"} +,{"_id":{"$oid":"55cba2476c522cafdb058b7a"},"location":{"coordinates":[-73.9930522,40.6165867],"type":"Point"},"name":"Bk Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb058b7b"},"location":{"coordinates":[-73.8764913,40.87102],"type":"Point"},"name":"A A Caridad Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058b7c"},"location":{"coordinates":[-73.96353420000001,40.7100002],"type":"Point"},"name":"Baby'S All Right"} +,{"_id":{"$oid":"55cba2476c522cafdb058b7d"},"location":{"coordinates":[-73.7436183,40.6771121],"type":"Point"},"name":"New De Xing Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058b7e"},"location":{"coordinates":[-73.992167,40.74698],"type":"Point"},"name":"Arata Izumi Japanese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058b7f"},"location":{"coordinates":[-73.997387,40.73292],"type":"Point"},"name":"Analogue"} +,{"_id":{"$oid":"55cba2476c522cafdb058b80"},"location":{"coordinates":[-73.8917378,40.8543959],"type":"Point"},"name":"Halal Hut Fried Chicken \u0026 Pizza Inc"} +,{"_id":{"$oid":"55cba2476c522cafdb058b81"},"location":{"coordinates":[-73.9895579,40.7454457],"type":"Point"},"name":"Pergola 36"} +,{"_id":{"$oid":"55cba2476c522cafdb058b82"},"location":{"coordinates":[-73.80402889999999,40.76095919999999],"type":"Point"},"name":"Zu Rang Ny"} +,{"_id":{"$oid":"55cba2476c522cafdb058b83"},"location":{"coordinates":[-73.94655019999999,40.72530769999999],"type":"Point"},"name":"Lucky Luna"} +,{"_id":{"$oid":"55cba2476c522cafdb058b84"},"location":{"coordinates":[-73.88665490000001,40.7477032],"type":"Point"},"name":"J \u0026 C Delicias"} +,{"_id":{"$oid":"55cba2476c522cafdb058b85"},"location":{"coordinates":[-73.99460959999999,40.7488306],"type":"Point"},"name":"Ocabanon"} +,{"_id":{"$oid":"55cba2476c522cafdb058b86"},"location":{"coordinates":[-73.9713625,40.7930625],"type":"Point"},"name":"New Kam Lai"} +,{"_id":{"$oid":"55cba2476c522cafdb058b87"},"location":{"coordinates":[-73.9130863,40.6457128],"type":"Point"},"name":"Pizza Hut # 29782"} +,{"_id":{"$oid":"55cba2476c522cafdb058b88"},"location":{"coordinates":[-73.9573968,40.6634894],"type":"Point"},"name":"Pizza Hut #29773"} +,{"_id":{"$oid":"55cba2476c522cafdb058b89"},"location":{"coordinates":[-73.96346199999999,40.606583],"type":"Point"},"name":"Cafe Euphoria"} +,{"_id":{"$oid":"55cba2476c522cafdb058b8a"},"location":{"coordinates":[-73.97160629999999,40.7621879],"type":"Point"},"name":"Four Seasons Hotel New York"} +,{"_id":{"$oid":"55cba2476c522cafdb058b8b"},"location":{"coordinates":[-73.8505402,40.8345381],"type":"Point"},"name":"Fresh Take Juice Bar."} +,{"_id":{"$oid":"55cba2476c522cafdb058b8c"},"location":{"coordinates":[-73.9349786,40.7961026],"type":"Point"},"name":"Teng Dragon"} +,{"_id":{"$oid":"55cba2476c522cafdb058b8d"},"location":{"coordinates":[-73.88925979999999,40.8079028],"type":"Point"},"name":"Oasis Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb058b8e"},"location":{"coordinates":[-73.94904799999999,40.781045],"type":"Point"},"name":"Adam Chinese Cottage"} +,{"_id":{"$oid":"55cba2476c522cafdb058b8f"},"location":{"coordinates":[-73.8706606,40.7342757],"type":"Point"},"name":"Kfc (Queens Center Mall)"} +,{"_id":{"$oid":"55cba2476c522cafdb058b90"},"location":{"coordinates":[-73.9077678,40.74231],"type":"Point"},"name":"Kfc"} +,{"_id":{"$oid":"55cba2476c522cafdb058b91"},"location":{"coordinates":[-73.7860863,40.711915],"type":"Point"},"name":"Kfc"} +,{"_id":{"$oid":"55cba2476c522cafdb058b92"},"location":{"coordinates":[-73.9107556,40.6923886],"type":"Point"},"name":"Crown Chicken \u0026 Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb058b93"},"location":{"coordinates":[-73.928117,40.6331777],"type":"Point"},"name":"Kfc"} +,{"_id":{"$oid":"55cba2476c522cafdb058b94"},"location":{"coordinates":[-73.985349,40.7322684],"type":"Point"},"name":"Kfc"} +,{"_id":{"$oid":"55cba2476c522cafdb058b95"},"location":{"coordinates":[-73.95856599999999,40.6485027],"type":"Point"},"name":"Kfc"} +,{"_id":{"$oid":"55cba2476c522cafdb058b96"},"location":{"coordinates":[-73.9498362,40.8016966],"type":"Point"},"name":"Us Fried Chicken \u0026 P1Zza"} +,{"_id":{"$oid":"55cba2476c522cafdb058b97"},"location":{"coordinates":[-73.9906871,40.6191915],"type":"Point"},"name":"Kfc"} +,{"_id":{"$oid":"55cba2476c522cafdb058b98"},"location":{"coordinates":[-73.9539085,40.6909484],"type":"Point"},"name":"Dekalb Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058b99"},"location":{"coordinates":[-73.90244109999999,40.854498],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb058b9a"},"location":{"coordinates":[-73.9622036,40.6076043],"type":"Point"},"name":"Kfc/Taco Bell"} +,{"_id":{"$oid":"55cba2476c522cafdb058b9b"},"location":{"coordinates":[-73.95672920000001,40.8021448],"type":"Point"},"name":"The Park 112"} +,{"_id":{"$oid":"55cba2476c522cafdb058b9c"},"location":{"coordinates":[-73.9880622,40.7482459],"type":"Point"},"name":"Nuchas"} +,{"_id":{"$oid":"55cba2476c522cafdb058b9d"},"location":{"coordinates":[-74.002531,40.7273421],"type":"Point"},"name":"Emmetts"} +,{"_id":{"$oid":"55cba2476c522cafdb058b9e"},"location":{"coordinates":[-73.9994384,40.6592084],"type":"Point"},"name":"Kfc"} +,{"_id":{"$oid":"55cba2476c522cafdb058b9f"},"location":{"coordinates":[-73.87598899999999,40.68256969999999],"type":"Point"},"name":"Rico Pollo 11 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058ba0"},"location":{"coordinates":[-73.92290299999999,40.689511],"type":"Point"},"name":"Carrizal Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058ba1"},"location":{"coordinates":[-73.92282329999999,40.6843795],"type":"Point"},"name":"Sweet Lee'S Desserts"} +,{"_id":{"$oid":"55cba2476c522cafdb058ba2"},"location":{"coordinates":[-73.97059349999999,40.6442154],"type":"Point"},"name":"Kfc"} +,{"_id":{"$oid":"55cba2476c522cafdb058ba3"},"location":{"coordinates":[-73.9317873,40.66242099999999],"type":"Point"},"name":"Kfc"} +,{"_id":{"$oid":"55cba2476c522cafdb058ba4"},"location":{"coordinates":[-74.0117819,40.6433707],"type":"Point"},"name":"Kfc"} +,{"_id":{"$oid":"55cba2476c522cafdb058ba5"},"location":{"coordinates":[-73.9742747,40.7642202],"type":"Point"},"name":"Sabi Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb058ba6"},"location":{"coordinates":[-73.957979,40.773893],"type":"Point"},"name":"Chop'T Creative Salad Company"} +,{"_id":{"$oid":"55cba2476c522cafdb058ba7"},"location":{"coordinates":[-73.9604521,40.7064167],"type":"Point"},"name":"Panini La Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058ba8"},"location":{"coordinates":[-73.96878699999999,40.759302],"type":"Point"},"name":"Hinata Ramen"} +,{"_id":{"$oid":"55cba2476c522cafdb058ba9"},"location":{"coordinates":[-73.802306,40.707514],"type":"Point"},"name":"Hillside Bakery And First Food"} +,{"_id":{"$oid":"55cba2476c522cafdb058baa"},"location":{"coordinates":[-73.906268,40.700406],"type":"Point"},"name":"Texas New Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb058bab"},"location":{"coordinates":[-73.9682766,40.8013318],"type":"Point"},"name":"Kentucky Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb058bac"},"location":{"coordinates":[-74.0291584,40.6176731],"type":"Point"},"name":"Kfc"} +,{"_id":{"$oid":"55cba2476c522cafdb058bad"},"location":{"coordinates":[-73.9122412,40.69989330000001],"type":"Point"},"name":"Fair Weather Bushwick"} +,{"_id":{"$oid":"55cba2476c522cafdb058bae"},"location":{"coordinates":[-73.81267,40.765369],"type":"Point"},"name":"Kfc"} +,{"_id":{"$oid":"55cba2476c522cafdb058baf"},"location":{"coordinates":[-73.8086505,40.7201051],"type":"Point"},"name":"Kfc"} +,{"_id":{"$oid":"55cba2476c522cafdb058bb0"},"location":{"coordinates":[-73.9674433,40.697398],"type":"Point"},"name":"Il Porto Brick Oven Ristorante"} +,{"_id":{"$oid":"55cba2476c522cafdb058bb1"},"location":{"coordinates":[-73.9310978,40.6169525],"type":"Point"},"name":"Kfc"} +,{"_id":{"$oid":"55cba2476c522cafdb058bb2"},"location":{"coordinates":[-73.9308537,40.8535715],"type":"Point"},"name":"Zoe Restaurant \u0026 Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb058bb3"},"location":{"coordinates":[-73.7254641,40.7653419],"type":"Point"},"name":"Kfc/Taco Bell"} +,{"_id":{"$oid":"55cba2476c522cafdb058bb4"},"location":{"coordinates":[-73.90326569999999,40.8118193],"type":"Point"},"name":"Toris Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058bb5"},"location":{"coordinates":[-73.964338,40.6177319],"type":"Point"},"name":"Pique-Nique Sur Demande"} +,{"_id":{"$oid":"55cba2476c522cafdb058bb6"},"location":{"coordinates":[-74.008438,40.61971],"type":"Point"},"name":"Fortune Cookie"} +,{"_id":{"$oid":"55cba2476c522cafdb058bb7"},"location":{"coordinates":[-73.9721409,40.677148],"type":"Point"},"name":"New Wai Ling Chinese Restaurant/New Fresco Tortillas Ii Taco"} +,{"_id":{"$oid":"55cba2476c522cafdb058bb8"},"location":{"coordinates":[-73.884653,40.81016],"type":"Point"},"name":"Oak Restaurant \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb058bb9"},"location":{"coordinates":[-74.00117569999999,40.68757069999999],"type":"Point"},"name":"Pok Pok Ny"} +,{"_id":{"$oid":"55cba2476c522cafdb058bba"},"location":{"coordinates":[-73.9277168,40.7558318],"type":"Point"},"name":"Arepas Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058bbb"},"location":{"coordinates":[-73.9823303,40.7562781],"type":"Point"},"name":"Butter Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058bbc"},"location":{"coordinates":[-73.98220839999999,40.7636789],"type":"Point"},"name":"The Coffee Bean \u0026 Tea Leaf"} +,{"_id":{"$oid":"55cba2476c522cafdb058bbd"},"location":{"coordinates":[-73.9885628,40.6753309],"type":"Point"},"name":"The Roof"} +,{"_id":{"$oid":"55cba2476c522cafdb058bbe"},"location":{"coordinates":[-74.000232,40.742322],"type":"Point"},"name":"Rhong-Tiam Express"} +,{"_id":{"$oid":"55cba2476c522cafdb058bbf"},"location":{"coordinates":[-73.988609,40.758268],"type":"Point"},"name":"Roxy Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb058bc0"},"location":{"coordinates":[-73.9305119,40.623951],"type":"Point"},"name":"Petite Fleury Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb058bc1"},"location":{"coordinates":[-73.9974658,40.5987873],"type":"Point"},"name":"Bagel Chief"} +,{"_id":{"$oid":"55cba2476c522cafdb058bc2"},"location":{"coordinates":[-73.9550572,40.7181532],"type":"Point"},"name":"Swallow Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058bc3"},"location":{"coordinates":[-74.13394389999999,40.6367659],"type":"Point"},"name":"Di Di"} +,{"_id":{"$oid":"55cba2476c522cafdb058bc4"},"location":{"coordinates":[-73.86407,40.746667],"type":"Point"},"name":"Lucky Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058bc5"},"location":{"coordinates":[-73.7534199,40.68041960000001],"type":"Point"},"name":"Golden Krust"} +,{"_id":{"$oid":"55cba2476c522cafdb058bc6"},"location":{"coordinates":[-73.95438899999999,40.815349],"type":"Point"},"name":"M G M Grocery Store"} +,{"_id":{"$oid":"55cba2476c522cafdb058bc7"},"location":{"coordinates":[-73.739595,40.6600234],"type":"Point"},"name":"Pa-Nash Restaurant And Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb058bc8"},"location":{"coordinates":[-73.9243377,40.7564919],"type":"Point"},"name":"Palace Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb058bc9"},"location":{"coordinates":[-73.829437,40.757178],"type":"Point"},"name":"Songfu Li"} +,{"_id":{"$oid":"55cba2476c522cafdb058bca"},"location":{"coordinates":[-73.9199764,40.8038857],"type":"Point"},"name":"Sea Food Kingz"} +,{"_id":{"$oid":"55cba2476c522cafdb058bcb"},"location":{"coordinates":[-73.9944192,40.6019831],"type":"Point"},"name":"86 Superstar Inc"} +,{"_id":{"$oid":"55cba2476c522cafdb058bcc"},"location":{"coordinates":[-74.0005444,40.7481104],"type":"Point"},"name":"Pushcart Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb058bcd"},"location":{"coordinates":[-73.9937772,40.722007],"type":"Point"},"name":"Pearl \u0026 Ash"} +,{"_id":{"$oid":"55cba2476c522cafdb058bce"},"location":{"coordinates":[-73.9899499,40.751455],"type":"Point"},"name":"Dali Market"} +,{"_id":{"$oid":"55cba2476c522cafdb058bcf"},"location":{"coordinates":[-73.9410809,40.7036157],"type":"Point"},"name":"Eden'S Organic Natural Juices 7 Bubble Teas"} +,{"_id":{"$oid":"55cba2476c522cafdb058bd0"},"location":{"coordinates":[-73.9353838,40.6968031],"type":"Point"},"name":"Checker'S"} +,{"_id":{"$oid":"55cba2476c522cafdb058bd1"},"location":{"coordinates":[-73.8807712,40.8821928],"type":"Point"},"name":"18 East Gunhill Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb058bd2"},"location":{"coordinates":[-73.9452,40.79028],"type":"Point"},"name":"Bakery On 3Rd Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058bd3"},"location":{"coordinates":[-73.936858,40.8047803],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb058bd4"},"location":{"coordinates":[-73.9730519,40.645739],"type":"Point"},"name":"Tacos El Catrin"} +,{"_id":{"$oid":"55cba2476c522cafdb058bd5"},"location":{"coordinates":[-73.98666349999999,40.76155199999999],"type":"Point"},"name":"Kung Fu Little Stemed Buns Ramen Inc"} +,{"_id":{"$oid":"55cba2476c522cafdb058bd6"},"location":{"coordinates":[-73.8978277,40.8292156],"type":"Point"},"name":"U.S. Kennedy Fried Chicken Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb058bd7"},"location":{"coordinates":[-73.8963339,40.8673139],"type":"Point"},"name":"Brother'S Pizzera"} +,{"_id":{"$oid":"55cba2476c522cafdb058bd8"},"location":{"coordinates":[-73.995695,40.683423],"type":"Point"},"name":"Dosa Royale"} +,{"_id":{"$oid":"55cba2476c522cafdb058bd9"},"location":{"coordinates":[-74.0105051,40.7040805],"type":"Point"},"name":"Justino'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb058bda"},"location":{"coordinates":[-73.997841,40.7146222],"type":"Point"},"name":"Boba Life"} +,{"_id":{"$oid":"55cba2476c522cafdb058bdb"},"location":{"coordinates":[-73.8823328,40.75593629999999],"type":"Point"},"name":"Mama'S Empanadas"} +,{"_id":{"$oid":"55cba2476c522cafdb058bdc"},"location":{"coordinates":[-73.9310007,40.7569552],"type":"Point"},"name":"Swaad Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058bdd"},"location":{"coordinates":[-73.9488063,40.7494271],"type":"Point"},"name":"Barista"} +,{"_id":{"$oid":"55cba2476c522cafdb058bde"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"Loft"} +,{"_id":{"$oid":"55cba2476c522cafdb058bdf"},"location":{"coordinates":[-74.0075568,40.7106696],"type":"Point"},"name":"Pisillo Italian Panini"} +,{"_id":{"$oid":"55cba2476c522cafdb058be0"},"location":{"coordinates":[-74.0913781,40.6017065],"type":"Point"},"name":"H \u0026 R Gourmet Deli \u0026 Grocery"} +,{"_id":{"$oid":"55cba2476c522cafdb058be1"},"location":{"coordinates":[-73.8290939,40.759362],"type":"Point"},"name":"Hot Pot \u0026 Bubble Tea"} +,{"_id":{"$oid":"55cba2476c522cafdb058be2"},"location":{"coordinates":[-73.94495549999999,40.7167803],"type":"Point"},"name":"Earth Wellness Cafe Yoga"} +,{"_id":{"$oid":"55cba2476c522cafdb058be3"},"location":{"coordinates":[-73.8436674,40.8562685],"type":"Point"},"name":"Golden China Pavilion"} +,{"_id":{"$oid":"55cba2476c522cafdb058be4"},"location":{"coordinates":[-74.0005721,40.6055818],"type":"Point"},"name":"Eddie Fancy Food"} +,{"_id":{"$oid":"55cba2476c522cafdb058be5"},"location":{"coordinates":[-73.85845929999999,40.8935784],"type":"Point"},"name":"Loong Xin Asian Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb058be6"},"location":{"coordinates":[-73.92601049999999,40.75890150000001],"type":"Point"},"name":"Happy Gathering"} +,{"_id":{"$oid":"55cba2476c522cafdb058be7"},"location":{"coordinates":[-73.753068,40.693973],"type":"Point"},"name":"King'S Wok Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058be8"},"location":{"coordinates":[-73.9112026,40.6813437],"type":"Point"},"name":"New United Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb058be9"},"location":{"coordinates":[-74.03051359999999,40.6165173],"type":"Point"},"name":"Taqueria El Puente"} +,{"_id":{"$oid":"55cba2476c522cafdb058bea"},"location":{"coordinates":[-73.88752699999999,40.855207],"type":"Point"},"name":"Peachwave"} +,{"_id":{"$oid":"55cba2476c522cafdb058beb"},"location":{"coordinates":[-73.991309,40.75190600000001],"type":"Point"},"name":"Sushi Fussion"} +,{"_id":{"$oid":"55cba2476c522cafdb058bec"},"location":{"coordinates":[-74.00728,40.631552],"type":"Point"},"name":"New Ming Cheng Bakery Inc"} +,{"_id":{"$oid":"55cba2476c522cafdb058bed"},"location":{"coordinates":[-73.98134209999999,40.7674767],"type":"Point"},"name":"Maison Kayser"} +,{"_id":{"$oid":"55cba2476c522cafdb058bee"},"location":{"coordinates":[-73.8406667,40.69549500000001],"type":"Point"},"name":"China Fortune Fast Food"} +,{"_id":{"$oid":"55cba2476c522cafdb058bef"},"location":{"coordinates":[-73.96243270000001,40.8138912],"type":"Point"},"name":"Red Star Restaurants"} +,{"_id":{"$oid":"55cba2476c522cafdb058bf0"},"location":{"coordinates":[-74.00672469999999,40.7438299],"type":"Point"},"name":"Creative Juice"} +,{"_id":{"$oid":"55cba2476c522cafdb058bf1"},"location":{"coordinates":[-73.9427248,40.8117012],"type":"Point"},"name":"Tio Luca"} +,{"_id":{"$oid":"55cba2476c522cafdb058bf2"},"location":{"coordinates":[-74.131787,40.603122],"type":"Point"},"name":"Madang"} +,{"_id":{"$oid":"55cba2476c522cafdb058bf3"},"location":{"coordinates":[-73.9693477,40.7984994],"type":"Point"},"name":"Xian Famous Foods"} +,{"_id":{"$oid":"55cba2476c522cafdb058bf4"},"location":{"coordinates":[-73.812742,40.702348],"type":"Point"},"name":"New Peking Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb058bf5"},"location":{"coordinates":[-73.8980028,40.8297112],"type":"Point"},"name":"Tina African Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058bf6"},"location":{"coordinates":[-73.8796424,40.7481056],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb058bf7"},"location":{"coordinates":[-73.9571289,40.77708579999999],"type":"Point"},"name":"Calista Superfoods"} +,{"_id":{"$oid":"55cba2476c522cafdb058bf8"},"location":{"coordinates":[-74.079657,40.637599],"type":"Point"},"name":"El Cholo"} +,{"_id":{"$oid":"55cba2476c522cafdb058bf9"},"location":{"coordinates":[-73.9086255,40.8129839],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb058bfa"},"location":{"coordinates":[-73.9823413,40.761032],"type":"Point"},"name":"The Little Beet / Melt Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb058bfb"},"location":{"coordinates":[-73.7090853,40.7371837],"type":"Point"},"name":"Masala King"} +,{"_id":{"$oid":"55cba2476c522cafdb058bfc"},"location":{"coordinates":[-73.980052,40.59646],"type":"Point"},"name":"Gran Familia Mexicana Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058bfd"},"location":{"coordinates":[-73.99218789999999,40.6205369],"type":"Point"},"name":"Kuho Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb058bfe"},"location":{"coordinates":[-73.98172799999999,40.744103],"type":"Point"},"name":"Rose Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb058bff"},"location":{"coordinates":[-73.9576326,40.7737694],"type":"Point"},"name":"Elixir"} +,{"_id":{"$oid":"55cba2476c522cafdb058c00"},"location":{"coordinates":[-73.991016,40.671859],"type":"Point"},"name":"Kanan Indian Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058c01"},"location":{"coordinates":[-73.873063,40.674978],"type":"Point"},"name":"Pitkin Bonao Grill Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058c02"},"location":{"coordinates":[-73.8907751,40.6503427],"type":"Point"},"name":"Pizzahut"} +,{"_id":{"$oid":"55cba2476c522cafdb058c03"},"location":{"coordinates":[-73.94182719999999,40.8226224],"type":"Point"},"name":"City One Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058c04"},"location":{"coordinates":[-73.814033,40.675207],"type":"Point"},"name":"Jen'S Roti # 3 Inc."} +,{"_id":{"$oid":"55cba2476c522cafdb058c05"},"location":{"coordinates":[-73.9792219,40.736437],"type":"Point"},"name":"Lucky Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb058c06"},"location":{"coordinates":[-73.9699771,40.6930003],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb058c07"},"location":{"coordinates":[-73.99382899999999,40.756327],"type":"Point"},"name":"Snack Eos"} +,{"_id":{"$oid":"55cba2476c522cafdb058c08"},"location":{"coordinates":[-73.9603249,40.66002719999999],"type":"Point"},"name":"Bay Leaf Indian Food"} +,{"_id":{"$oid":"55cba2476c522cafdb058c09"},"location":{"coordinates":[-73.9742186,40.7908661],"type":"Point"},"name":"By The Way Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb058c0a"},"location":{"coordinates":[-73.9838334,40.7502091],"type":"Point"},"name":"Measure Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb058c0b"},"location":{"coordinates":[-73.9821206,40.7144059],"type":"Point"},"name":"Ost Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058c0c"},"location":{"coordinates":[-73.82679499999999,40.759374],"type":"Point"},"name":"Lin Long Xuan Restaurant Inc"} +,{"_id":{"$oid":"55cba2476c522cafdb058c0d"},"location":{"coordinates":[-73.8905978,40.8549448],"type":"Point"},"name":"Bella Pizza Of Bronx"} +,{"_id":{"$oid":"55cba2476c522cafdb058c0e"},"location":{"coordinates":[-73.8913163,40.826996],"type":"Point"},"name":"Pastora Restaurant Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb058c0f"},"location":{"coordinates":[-74.01134309999999,40.6337446],"type":"Point"},"name":"Phos \u0026 Banh Mi"} +,{"_id":{"$oid":"55cba2476c522cafdb058c10"},"location":{"coordinates":[-73.7957555,40.68823829999999],"type":"Point"},"name":"Pizza Hut 29531"} +,{"_id":{"$oid":"55cba2476c522cafdb058c11"},"location":{"coordinates":[-73.950885,40.723446],"type":"Point"},"name":"Amarin Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058c12"},"location":{"coordinates":[-73.97435469999999,40.7646095],"type":"Point"},"name":"Piada"} +,{"_id":{"$oid":"55cba2476c522cafdb058c13"},"location":{"coordinates":[-73.99476899999999,40.694698],"type":"Point"},"name":"Saketumi"} +,{"_id":{"$oid":"55cba2476c522cafdb058c14"},"location":{"coordinates":[-73.9993944,40.7149564],"type":"Point"},"name":"Tasty Dumpling"} +,{"_id":{"$oid":"55cba2476c522cafdb058c15"},"location":{"coordinates":[-74.0025138,40.6425063],"type":"Point"},"name":"Drink-Tea"} +,{"_id":{"$oid":"55cba2476c522cafdb058c16"},"location":{"coordinates":[-73.9017507,40.8579344],"type":"Point"},"name":"Rapidely Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058c17"},"location":{"coordinates":[-73.97231359999999,40.75703730000001],"type":"Point"},"name":"Schnippers"} +,{"_id":{"$oid":"55cba2476c522cafdb058c18"},"location":{"coordinates":[-74.0050389,40.7290654],"type":"Point"},"name":"King Wok"} +,{"_id":{"$oid":"55cba2476c522cafdb058c19"},"location":{"coordinates":[-73.920622,40.772076],"type":"Point"},"name":"Opa Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb058c1a"},"location":{"coordinates":[-73.9422079,40.756022],"type":"Point"},"name":"Tropical Jerk"} +,{"_id":{"$oid":"55cba2476c522cafdb058c1b"},"location":{"coordinates":[-73.94989699999999,40.65053899999999],"type":"Point"},"name":"Golden Krust Carribean Bakery \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb058c1c"},"location":{"coordinates":[-73.8281196,40.7550779],"type":"Point"},"name":"East Buffet \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058c1d"},"location":{"coordinates":[-73.9623488,40.6787228],"type":"Point"},"name":"Safra"} +,{"_id":{"$oid":"55cba2476c522cafdb058c1e"},"location":{"coordinates":[-73.984067,40.7288321],"type":"Point"},"name":"North River"} +,{"_id":{"$oid":"55cba2476c522cafdb058c1f"},"location":{"coordinates":[-73.9498632,40.7799512],"type":"Point"},"name":"Infirmary"} +,{"_id":{"$oid":"55cba2476c522cafdb058c20"},"location":{"coordinates":[-74.0105494,40.7044216],"type":"Point"},"name":"Bavaria Bierhouse"} +,{"_id":{"$oid":"55cba2476c522cafdb058c21"},"location":{"coordinates":[-73.9579096,40.7300955],"type":"Point"},"name":"Ramona"} +,{"_id":{"$oid":"55cba2476c522cafdb058c22"},"location":{"coordinates":[-74.00534499999999,40.6295519],"type":"Point"},"name":"New One"} +,{"_id":{"$oid":"55cba2476c522cafdb058c23"},"location":{"coordinates":[-73.98502300000001,40.717949],"type":"Point"},"name":"Pizza Italian"} +,{"_id":{"$oid":"55cba2476c522cafdb058c24"},"location":{"coordinates":[-73.9518501,40.77716119999999],"type":"Point"},"name":"Bondurants"} +,{"_id":{"$oid":"55cba2476c522cafdb058c25"},"location":{"coordinates":[-73.8834765,40.6540355],"type":"Point"},"name":"Kfc"} +,{"_id":{"$oid":"55cba2476c522cafdb058c26"},"location":{"coordinates":[-73.9875096,40.69176840000001],"type":"Point"},"name":"Mama Mia Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb058c27"},"location":{"coordinates":[-73.83196819999999,40.75950539999999],"type":"Point"},"name":"A Taste Of Shanghai Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058c28"},"location":{"coordinates":[-73.83535789999999,40.7569735],"type":"Point"},"name":"Little Lamb (Mongolian Hot Pot)"} +,{"_id":{"$oid":"55cba2476c522cafdb058c29"},"location":{"coordinates":[-74.0053279,40.717909],"type":"Point"},"name":"Kori Tribeca"} +,{"_id":{"$oid":"55cba2476c522cafdb058c2a"},"location":{"coordinates":[-74.0724441,40.598086],"type":"Point"},"name":"El Pollo Ii Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058c2b"},"location":{"coordinates":[-73.88950249999999,40.6326013],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb058c2c"},"location":{"coordinates":[-73.9065883,40.8125405],"type":"Point"},"name":"Carnitas El Atoradero"} +,{"_id":{"$oid":"55cba2476c522cafdb058c2d"},"location":{"coordinates":[-74.006565,40.730321],"type":"Point"},"name":"The Clam"} +,{"_id":{"$oid":"55cba2476c522cafdb058c2e"},"location":{"coordinates":[-73.9970299,40.6800619],"type":"Point"},"name":"Dover"} +,{"_id":{"$oid":"55cba2476c522cafdb058c2f"},"location":{"coordinates":[-73.91277099999999,40.821047],"type":"Point"},"name":"I Love Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb058c30"},"location":{"coordinates":[-73.98198409999999,40.7397608],"type":"Point"},"name":"Rose Hill Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb058c31"},"location":{"coordinates":[-73.82813,40.76033],"type":"Point"},"name":"Palace Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058c32"},"location":{"coordinates":[-74.063474,40.61001600000001],"type":"Point"},"name":"Rosebank Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb058c33"},"location":{"coordinates":[-73.998626,40.716544],"type":"Point"},"name":"Xe Lua Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058c34"},"location":{"coordinates":[-73.7965668,40.7048084],"type":"Point"},"name":"Crown Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb058c35"},"location":{"coordinates":[-73.9883081,40.7294465],"type":"Point"},"name":"Otafuku"} +,{"_id":{"$oid":"55cba2476c522cafdb058c36"},"location":{"coordinates":[-73.9734259,40.6832169],"type":"Point"},"name":"Tony Roma'S"} +,{"_id":{"$oid":"55cba2476c522cafdb058c37"},"location":{"coordinates":[-73.9706839,40.6894094],"type":"Point"},"name":"216 Good Joy Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058c38"},"location":{"coordinates":[-73.92231799999999,40.70552],"type":"Point"},"name":"Guacuco Hot Dogs"} +,{"_id":{"$oid":"55cba2476c522cafdb058c39"},"location":{"coordinates":[-73.8073739,40.7924588],"type":"Point"},"name":"Dunkin Donuts/ Baskin Robin"} +,{"_id":{"$oid":"55cba2476c522cafdb058c3a"},"location":{"coordinates":[-73.95177199999999,40.726],"type":"Point"},"name":"Flru Juicy"} +,{"_id":{"$oid":"55cba2476c522cafdb058c3b"},"location":{"coordinates":[-73.9880306,40.7270895],"type":"Point"},"name":"Confessional"} +,{"_id":{"$oid":"55cba2476c522cafdb058c3c"},"location":{"coordinates":[-73.89162499999999,40.676662],"type":"Point"},"name":"El Nuevo Atlantic Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb058c3d"},"location":{"coordinates":[-73.7579899,40.6656311],"type":"Point"},"name":"Popeyes"} +,{"_id":{"$oid":"55cba2476c522cafdb058c3e"},"location":{"coordinates":[-74.006624,40.7528176],"type":"Point"},"name":"Haute So Sweet"} +,{"_id":{"$oid":"55cba2476c522cafdb058c3f"},"location":{"coordinates":[-73.96087399999999,40.59857299999999],"type":"Point"},"name":"Prince Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb058c40"},"location":{"coordinates":[-74.0675461,40.6171801],"type":"Point"},"name":"Fire Grilled Burgers"} +,{"_id":{"$oid":"55cba2476c522cafdb058c41"},"location":{"coordinates":[-73.86612,40.862948],"type":"Point"},"name":"Tajdar Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058c42"},"location":{"coordinates":[-73.9565389,40.7172906],"type":"Point"},"name":"The Bake Shop By Woops"} +,{"_id":{"$oid":"55cba2476c522cafdb058c43"},"location":{"coordinates":[-73.99988309999999,40.717725],"type":"Point"},"name":"Kiss My Slice"} +,{"_id":{"$oid":"55cba2476c522cafdb058c44"},"location":{"coordinates":[-73.9546105,40.7310262],"type":"Point"},"name":"Thai Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058c45"},"location":{"coordinates":[-73.90112859999999,40.8601311],"type":"Point"},"name":"Noor Marts Inc"} +,{"_id":{"$oid":"55cba2476c522cafdb058c46"},"location":{"coordinates":[-73.8280831,40.8779778],"type":"Point"},"name":"Guang Hui Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058c47"},"location":{"coordinates":[-73.9221087,40.6815478],"type":"Point"},"name":"Crown Fried Chicken \u0026 Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb058c48"},"location":{"coordinates":[-73.83302599999999,40.760178],"type":"Point"},"name":"Cutting Board Flushing"} +,{"_id":{"$oid":"55cba2476c522cafdb058c49"},"location":{"coordinates":[-73.9009833,40.9052323],"type":"Point"},"name":"New China"} +,{"_id":{"$oid":"55cba2476c522cafdb058c4a"},"location":{"coordinates":[-73.7753633,40.5955778],"type":"Point"},"name":"New Garden Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058c4b"},"location":{"coordinates":[-73.8256165,40.7643222],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb058c4c"},"location":{"coordinates":[-73.975994,40.785766],"type":"Point"},"name":"Polpette"} +,{"_id":{"$oid":"55cba2476c522cafdb058c4d"},"location":{"coordinates":[-73.9546057,40.7311197],"type":"Point"},"name":"Oishi Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb058c4e"},"location":{"coordinates":[-73.9552379,40.7424245],"type":"Point"},"name":"51St Bakery And Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058c4f"},"location":{"coordinates":[-74.01293439999999,40.6421143],"type":"Point"},"name":"De Ricky Mexican Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058c50"},"location":{"coordinates":[-73.95666709999999,40.6739872],"type":"Point"},"name":"J'S Wong"} +,{"_id":{"$oid":"55cba2476c522cafdb058c51"},"location":{"coordinates":[-73.98023859999999,40.7505131],"type":"Point"},"name":"The Peacock"} +,{"_id":{"$oid":"55cba2476c522cafdb058c52"},"location":{"coordinates":[-73.95015769999999,40.6315299],"type":"Point"},"name":"Kosher Haven"} +,{"_id":{"$oid":"55cba2476c522cafdb058c53"},"location":{"coordinates":[-73.84288409999999,40.8413616],"type":"Point"},"name":"Little Caesars"} +,{"_id":{"$oid":"55cba2476c522cafdb058c54"},"location":{"coordinates":[-73.96154899999999,40.714813],"type":"Point"},"name":"La Goulette"} +,{"_id":{"$oid":"55cba2476c522cafdb058c55"},"location":{"coordinates":[-74.0010291,40.7296283],"type":"Point"},"name":"La Frite"} +,{"_id":{"$oid":"55cba2476c522cafdb058c56"},"location":{"coordinates":[-73.9266098,40.7723917],"type":"Point"},"name":"New Giant Chinese Food"} +,{"_id":{"$oid":"55cba2476c522cafdb058c57"},"location":{"coordinates":[-74.00399,40.73199810000001],"type":"Point"},"name":"Ramen Thukpa"} +,{"_id":{"$oid":"55cba2476c522cafdb058c58"},"location":{"coordinates":[-73.86895319999999,40.6826974],"type":"Point"},"name":"China Dragon Express"} +,{"_id":{"$oid":"55cba2476c522cafdb058c59"},"location":{"coordinates":[-73.9865406,40.7662868],"type":"Point"},"name":"Bar Bacon"} +,{"_id":{"$oid":"55cba2476c522cafdb058c5a"},"location":{"coordinates":[-73.875742,40.8295153],"type":"Point"},"name":"China Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb058c5b"},"location":{"coordinates":[-73.9825678,40.7383403],"type":"Point"},"name":"Shaka Burrito"} +,{"_id":{"$oid":"55cba2476c522cafdb058c5c"},"location":{"coordinates":[-73.999314,40.72985300000001],"type":"Point"},"name":"Ny Baburchi Indian Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058c5d"},"location":{"coordinates":[-73.849057,40.721493],"type":"Point"},"name":"The Old Siam Restaurant And Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb058c5e"},"location":{"coordinates":[-73.7776963,40.6458994],"type":"Point"},"name":"Starbucks (Jfk Terminal 5-Post Security Departure)"} +,{"_id":{"$oid":"55cba2476c522cafdb058c5f"},"location":{"coordinates":[-73.7994425,40.6676621],"type":"Point"},"name":"Crowne Plaza-Jfk Airport"} +,{"_id":{"$oid":"55cba2476c522cafdb058c60"},"location":{"coordinates":[-73.9872592,40.7139682],"type":"Point"},"name":"Square Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb058c61"},"location":{"coordinates":[-73.9614998,40.5965265],"type":"Point"},"name":"Fuciaana Asian Food \u0026Crystal Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb058c62"},"location":{"coordinates":[-73.9450952,40.8330427],"type":"Point"},"name":"Tommy'S"} +,{"_id":{"$oid":"55cba2476c522cafdb058c63"},"location":{"coordinates":[-73.9303724,40.8234978],"type":"Point"},"name":"Chuck E. Cheese'S"} +,{"_id":{"$oid":"55cba2476c522cafdb058c64"},"location":{"coordinates":[-74.00995999999999,40.723984],"type":"Point"},"name":"China Blue"} +,{"_id":{"$oid":"55cba2476c522cafdb058c65"},"location":{"coordinates":[-73.948588,40.710921],"type":"Point"},"name":"Pho"} +,{"_id":{"$oid":"55cba2476c522cafdb058c66"},"location":{"coordinates":[-73.9876869,40.765801],"type":"Point"},"name":"Bar Nine"} +,{"_id":{"$oid":"55cba2476c522cafdb058c67"},"location":{"coordinates":[-74.000422,40.609392],"type":"Point"},"name":"18 Hipot"} +,{"_id":{"$oid":"55cba2476c522cafdb058c68"},"location":{"coordinates":[-73.726181,40.68296309999999],"type":"Point"},"name":"Holiday Inn"} +,{"_id":{"$oid":"55cba2476c522cafdb058c69"},"location":{"coordinates":[-73.971378,40.752241],"type":"Point"},"name":"A\u0026E Networks"} +,{"_id":{"$oid":"55cba2476c522cafdb058c6a"},"location":{"coordinates":[-73.98437299999999,40.75271499999999],"type":"Point"},"name":"Untamed Sandwiches"} +,{"_id":{"$oid":"55cba2476c522cafdb058c6b"},"location":{"coordinates":[-73.959794,40.656717],"type":"Point"},"name":"Careta Bar \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058c6c"},"location":{"coordinates":[-73.7266501,40.7264928],"type":"Point"},"name":"Vinny'S Pit Stop"} +,{"_id":{"$oid":"55cba2476c522cafdb058c6d"},"location":{"coordinates":[-73.992888,40.7167127],"type":"Point"},"name":"Min Jiang Mini Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058c6e"},"location":{"coordinates":[-73.95785699999999,40.7699336],"type":"Point"},"name":"Up Thai"} +,{"_id":{"$oid":"55cba2476c522cafdb058c6f"},"location":{"coordinates":[-73.742963,40.696278],"type":"Point"},"name":"New Xiang Xing House"} +,{"_id":{"$oid":"55cba2476c522cafdb058c70"},"location":{"coordinates":[-73.97353319999999,40.6861097],"type":"Point"},"name":"Hungry Ghost Coffee Bar At Fulton"} +,{"_id":{"$oid":"55cba2476c522cafdb058c71"},"location":{"coordinates":[-73.9266792,40.6595135],"type":"Point"},"name":"Jadore Cakes"} +,{"_id":{"$oid":"55cba2476c522cafdb058c72"},"location":{"coordinates":[-73.9156089,40.6691451],"type":"Point"},"name":"Big Apple Restaurant Deli Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058c73"},"location":{"coordinates":[-73.9846852,40.6631983],"type":"Point"},"name":"American Cheez"} +,{"_id":{"$oid":"55cba2476c522cafdb058c74"},"location":{"coordinates":[-74.012326,40.653295],"type":"Point"},"name":"Siglo 21 Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb058c75"},"location":{"coordinates":[-73.9402156,40.7082523],"type":"Point"},"name":"Bread Brothers Bagel Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058c76"},"location":{"coordinates":[-73.91069670000002,40.676143],"type":"Point"},"name":"Edna'S Soul Food"} +,{"_id":{"$oid":"55cba2476c522cafdb058c77"},"location":{"coordinates":[-73.88487270000002,40.81255549999999],"type":"Point"},"name":"Rocco'S Italian Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb058c78"},"location":{"coordinates":[-73.9875035,40.72357179999999],"type":"Point"},"name":"Gaia Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb058c79"},"location":{"coordinates":[-73.96843559999999,40.6394318],"type":"Point"},"name":"Hartwell Vegetarian"} +,{"_id":{"$oid":"55cba2476c522cafdb058c7a"},"location":{"coordinates":[-73.842661,40.671867],"type":"Point"},"name":"C J'S Bar \u0026 Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb058c7b"},"location":{"coordinates":[-73.961242,40.6176492],"type":"Point"},"name":"Brooklyn Steak Co."} +,{"_id":{"$oid":"55cba2476c522cafdb058c7c"},"location":{"coordinates":[-73.91710499999999,40.833975],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb058c7d"},"location":{"coordinates":[-73.95414939999999,40.8056868],"type":"Point"},"name":"Harlem Original Fish And Chips"} +,{"_id":{"$oid":"55cba2476c522cafdb058c7e"},"location":{"coordinates":[-73.855518,40.751945],"type":"Point"},"name":"Tarros Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb058c7f"},"location":{"coordinates":[-73.9993286,40.7208184],"type":"Point"},"name":"Miansai"} +,{"_id":{"$oid":"55cba2476c522cafdb058c80"},"location":{"coordinates":[-73.8767721,40.7324992],"type":"Point"},"name":"Alice'S Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058c81"},"location":{"coordinates":[-73.87214159999999,40.7510897],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb058c82"},"location":{"coordinates":[-73.8873578,40.7494507],"type":"Point"},"name":"Arunee Thai"} +,{"_id":{"$oid":"55cba2476c522cafdb058c83"},"location":{"coordinates":[-73.9316894,40.8231974],"type":"Point"},"name":"Gotham Stadium Tennis Center Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058c84"},"location":{"coordinates":[-73.73536410000001,40.7709329],"type":"Point"},"name":"Tei Nei Ya"} +,{"_id":{"$oid":"55cba2476c522cafdb058c85"},"location":{"coordinates":[-73.99372939999999,40.6869172],"type":"Point"},"name":"Congress"} +,{"_id":{"$oid":"55cba2476c522cafdb058c86"},"location":{"coordinates":[-73.9831737,40.7309553],"type":"Point"},"name":"Mee Noodle Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb058c87"},"location":{"coordinates":[-73.8354517,40.6920487],"type":"Point"},"name":"Richi Rich Palace"} +,{"_id":{"$oid":"55cba2476c522cafdb058c88"},"location":{"coordinates":[-73.97724649999999,40.7266747],"type":"Point"},"name":"Aleppo Slider"} +,{"_id":{"$oid":"55cba2476c522cafdb058c89"},"location":{"coordinates":[-73.958435,40.678534],"type":"Point"},"name":"Friends And Lovers"} +,{"_id":{"$oid":"55cba2476c522cafdb058c8a"},"location":{"coordinates":[-73.992452,40.722414],"type":"Point"},"name":"Douma Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb058c8b"},"location":{"coordinates":[-73.94489229999999,40.8337552],"type":"Point"},"name":"Las Nuevas Empanadas Monumental Iii"} +,{"_id":{"$oid":"55cba2476c522cafdb058c8c"},"location":{"coordinates":[-73.95162499999999,40.639667],"type":"Point"},"name":"Tonel Restaurant \u0026 Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb058c8d"},"location":{"coordinates":[-73.951043,40.6892799],"type":"Point"},"name":"The Civil Service Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058c8e"},"location":{"coordinates":[-73.986987,40.759642],"type":"Point"},"name":"Diamond Horseshoe"} +,{"_id":{"$oid":"55cba2476c522cafdb058c8f"},"location":{"coordinates":[-73.9558191,40.5879574],"type":"Point"},"name":"Caspiy"} +,{"_id":{"$oid":"55cba2476c522cafdb058c90"},"location":{"coordinates":[-73.91749159999999,40.74059800000001],"type":"Point"},"name":"Continental Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb058c91"},"location":{"coordinates":[-74.0051625,40.7370469],"type":"Point"},"name":"Injera Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058c92"},"location":{"coordinates":[-73.9474778,40.5930619],"type":"Point"},"name":"Zair Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058c93"},"location":{"coordinates":[-73.9205709,40.7449801],"type":"Point"},"name":"Sofra Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058c94"},"location":{"coordinates":[-73.9067018,40.7569535],"type":"Point"},"name":"Dino'S Pizza \u0026 Pasta"} +,{"_id":{"$oid":"55cba2476c522cafdb058c95"},"location":{"coordinates":[-74.00274329999999,40.6844176],"type":"Point"},"name":"Red Apple"} +,{"_id":{"$oid":"55cba2476c522cafdb058c96"},"location":{"coordinates":[-73.8496397,40.7247433],"type":"Point"},"name":"Al Dente Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb058c97"},"location":{"coordinates":[-73.9976222,40.7330186],"type":"Point"},"name":"Rasa"} +,{"_id":{"$oid":"55cba2476c522cafdb058c98"},"location":{"coordinates":[-73.9884716,40.69277659999999],"type":"Point"},"name":"Hill Country Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb058c99"},"location":{"coordinates":[-73.9884716,40.69277659999999],"type":"Point"},"name":"Hill Country Barbecue Market"} +,{"_id":{"$oid":"55cba2476c522cafdb058c9a"},"location":{"coordinates":[-74.0112591,40.7041101],"type":"Point"},"name":"85 Broad Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058c9b"},"location":{"coordinates":[-73.92373959999999,40.686791],"type":"Point"},"name":"Kava Shteeble"} +,{"_id":{"$oid":"55cba2476c522cafdb058c9c"},"location":{"coordinates":[-74.00682599999999,40.7428114],"type":"Point"},"name":"Doughnuttery"} +,{"_id":{"$oid":"55cba2476c522cafdb058c9d"},"location":{"coordinates":[-73.9853289,40.7282708],"type":"Point"},"name":"Bequ Juice"} +,{"_id":{"$oid":"55cba2476c522cafdb058c9e"},"location":{"coordinates":[-73.9705953,40.7967689],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb058c9f"},"location":{"coordinates":[-73.920672,40.661157],"type":"Point"},"name":"Hibachi On The Run"} +,{"_id":{"$oid":"55cba2476c522cafdb058ca0"},"location":{"coordinates":[-74.00681229999999,40.7069645],"type":"Point"},"name":"Tres Carnes"} +,{"_id":{"$oid":"55cba2476c522cafdb058ca1"},"location":{"coordinates":[-73.879167,40.6798738],"type":"Point"},"name":"Mcdonalds Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058ca2"},"location":{"coordinates":[-73.98004449999999,40.7552792],"type":"Point"},"name":"Kaffe 3, Inc."} +,{"_id":{"$oid":"55cba2476c522cafdb058ca3"},"location":{"coordinates":[-73.8960513,40.8669539],"type":"Point"},"name":"Tonys Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb058ca4"},"location":{"coordinates":[-73.9986758,40.7202027],"type":"Point"},"name":"Gasoline Alley Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb058ca5"},"location":{"coordinates":[-74.149847,40.537447],"type":"Point"},"name":"Sunny Palace"} +,{"_id":{"$oid":"55cba2476c522cafdb058ca6"},"location":{"coordinates":[-73.8818564,40.8126286],"type":"Point"},"name":"A. A. Caridad Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058ca7"},"location":{"coordinates":[-73.9697888,40.6896686],"type":"Point"},"name":"Rasoi"} +,{"_id":{"$oid":"55cba2476c522cafdb058ca8"},"location":{"coordinates":[-73.944377,40.600396],"type":"Point"},"name":"Shisha Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb058ca9"},"location":{"coordinates":[-73.948376,40.64256899999999],"type":"Point"},"name":"L'Unique Bar \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058caa"},"location":{"coordinates":[-74.0145479,40.6408468],"type":"Point"},"name":"Xiao Le Yuan Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb058cab"},"location":{"coordinates":[-73.988531,40.72029999999999],"type":"Point"},"name":"Rouge Nyc"} +,{"_id":{"$oid":"55cba2476c522cafdb058cac"},"location":{"coordinates":[-73.96590499999999,40.71360540000001],"type":"Point"},"name":"Den"} +,{"_id":{"$oid":"55cba2476c522cafdb058cad"},"location":{"coordinates":[-74.00169799999999,40.7317698],"type":"Point"},"name":"Tokyo Tapas Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058cae"},"location":{"coordinates":[-73.8502804,40.89097340000001],"type":"Point"},"name":"People'S Paradise"} +,{"_id":{"$oid":"55cba2476c522cafdb058caf"},"location":{"coordinates":[-73.986105,40.729235],"type":"Point"},"name":"Iron Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb058cb0"},"location":{"coordinates":[-73.99411599999999,40.660263],"type":"Point"},"name":"Jalapeno King"} +,{"_id":{"$oid":"55cba2476c522cafdb058cb1"},"location":{"coordinates":[-73.7823228,40.7128133],"type":"Point"},"name":"Sharon'S Roti Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb058cb2"},"location":{"coordinates":[-73.90423899999999,40.9064138],"type":"Point"},"name":"Block Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb058cb3"},"location":{"coordinates":[-73.94552670000002,40.8132674],"type":"Point"},"name":"Harlem Karibe Take Out"} +,{"_id":{"$oid":"55cba2476c522cafdb058cb4"},"location":{"coordinates":[-74.011352,40.633347],"type":"Point"},"name":"Grand Noodle House"} +,{"_id":{"$oid":"55cba2476c522cafdb058cb5"},"location":{"coordinates":[-73.8151468,40.7397985],"type":"Point"},"name":"New Woks Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb058cb6"},"location":{"coordinates":[-73.99404899999999,40.749403],"type":"Point"},"name":"American Whiskey"} +,{"_id":{"$oid":"55cba2476c522cafdb058cb7"},"location":{"coordinates":[-74.0795495,40.6383263],"type":"Point"},"name":"Sanrasa"} +,{"_id":{"$oid":"55cba2476c522cafdb058cb8"},"location":{"coordinates":[-73.93389700000002,40.75459000000001],"type":"Point"},"name":"Beija-Flor"} +,{"_id":{"$oid":"55cba2476c522cafdb058cb9"},"location":{"coordinates":[-73.9564922,40.8140035],"type":"Point"},"name":"El Nuevo Tina Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058cba"},"location":{"coordinates":[-73.8559624,40.8833785],"type":"Point"},"name":"Caribbean Blends Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058cbb"},"location":{"coordinates":[-73.9375694,40.8395331],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb058cbc"},"location":{"coordinates":[-73.9458269,40.7213819],"type":"Point"},"name":"Delilah'S Steaks"} +,{"_id":{"$oid":"55cba2476c522cafdb058cbd"},"location":{"coordinates":[-73.95623719999999,40.8137699],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb058cbe"},"location":{"coordinates":[-73.98252649999999,40.7646496],"type":"Point"},"name":"Apple Jack Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb058cbf"},"location":{"coordinates":[-73.909258,40.7751232],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb058cc0"},"location":{"coordinates":[-73.8004905,40.7038328],"type":"Point"},"name":"Crispy \u0026 Tasty"} +,{"_id":{"$oid":"55cba2476c522cafdb058cc1"},"location":{"coordinates":[-73.95177369999999,40.725076],"type":"Point"},"name":"Konditori"} +,{"_id":{"$oid":"55cba2476c522cafdb058cc2"},"location":{"coordinates":[-73.9417793,40.6718814],"type":"Point"},"name":"Good Taste #1"} +,{"_id":{"$oid":"55cba2476c522cafdb058cc3"},"location":{"coordinates":[-73.90184140000001,40.7048855],"type":"Point"},"name":"The Spanish Mix Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058cc4"},"location":{"coordinates":[-73.985343,40.7469829],"type":"Point"},"name":"Smoocha"} +,{"_id":{"$oid":"55cba2476c522cafdb058cc5"},"location":{"coordinates":[-73.99217589999999,40.7554779],"type":"Point"},"name":"Aya Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb058cc6"},"location":{"coordinates":[-73.9145875,40.6458429],"type":"Point"},"name":"Jake'S Wayback Burgers"} +,{"_id":{"$oid":"55cba2476c522cafdb058cc7"},"location":{"coordinates":[-73.90417599999999,40.72405089999999],"type":"Point"},"name":"Andrea'S Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb058cc8"},"location":{"coordinates":[-73.92270289999999,40.70700739999999],"type":"Point"},"name":"Lot 45"} +,{"_id":{"$oid":"55cba2476c522cafdb058cc9"},"location":{"coordinates":[-73.9916909,40.66298829999999],"type":"Point"},"name":"Roots"} +,{"_id":{"$oid":"55cba2476c522cafdb058cca"},"location":{"coordinates":[-73.958412,40.7216669],"type":"Point"},"name":"Kinfolk"} +,{"_id":{"$oid":"55cba2476c522cafdb058ccb"},"location":{"coordinates":[-74.000845,40.6816699],"type":"Point"},"name":"Henry'S Local"} +,{"_id":{"$oid":"55cba2476c522cafdb058ccc"},"location":{"coordinates":[-73.97435469999999,40.7646095],"type":"Point"},"name":"Todd English Food Hall"} +,{"_id":{"$oid":"55cba2476c522cafdb058ccd"},"location":{"coordinates":[-73.9307779,40.7539382],"type":"Point"},"name":"Mist"} +,{"_id":{"$oid":"55cba2476c522cafdb058cce"},"location":{"coordinates":[-73.9830465,40.7645155],"type":"Point"},"name":"Empire Steakhouse"} +,{"_id":{"$oid":"55cba2476c522cafdb058ccf"},"location":{"coordinates":[-73.75868609999999,40.73345],"type":"Point"},"name":"Greek Family Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb058cd0"},"location":{"coordinates":[-74.004912,40.608272],"type":"Point"},"name":"Lorenzos Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb058cd1"},"location":{"coordinates":[-73.8799105,40.74807759999999],"type":"Point"},"name":"Famous Famiglia"} +,{"_id":{"$oid":"55cba2476c522cafdb058cd2"},"location":{"coordinates":[-74.007672,40.637625],"type":"Point"},"name":"Fortune Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb058cd3"},"location":{"coordinates":[-74.00558199999999,40.639668],"type":"Point"},"name":"Simon'S Bbq Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb058cd4"},"location":{"coordinates":[-73.95441679999999,40.6858299],"type":"Point"},"name":"Java Bar (I Mail \u0026 More)"} +,{"_id":{"$oid":"55cba2476c522cafdb058cd5"},"location":{"coordinates":[-73.98701,40.678507],"type":"Point"},"name":"The Royal Palms Shuffleboard Club"} +,{"_id":{"$oid":"55cba2476c522cafdb058cd6"},"location":{"coordinates":[-73.8758776,40.7350804],"type":"Point"},"name":"Sushi Island"} +,{"_id":{"$oid":"55cba2476c522cafdb058cd7"},"location":{"coordinates":[-73.82769449999999,40.7546369],"type":"Point"},"name":"Tous Les Jours"} +,{"_id":{"$oid":"55cba2476c522cafdb058cd8"},"location":{"coordinates":[-73.95851329999999,40.7084094],"type":"Point"},"name":"Fortune Place"} +,{"_id":{"$oid":"55cba2476c522cafdb058cd9"},"location":{"coordinates":[-74.013181,40.641965],"type":"Point"},"name":"J \u0026 B Yummy Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb058cda"},"location":{"coordinates":[-73.9960102,40.7267381],"type":"Point"},"name":"Bleecker Kitchen \u0026 Co"} +,{"_id":{"$oid":"55cba2476c522cafdb058cdb"},"location":{"coordinates":[-73.94611340000002,40.7456288],"type":"Point"},"name":"Hibino Lic"} +,{"_id":{"$oid":"55cba2476c522cafdb058cdc"},"location":{"coordinates":[-73.999203,40.733208],"type":"Point"},"name":"Matsunosuke"} +,{"_id":{"$oid":"55cba2476c522cafdb058cdd"},"location":{"coordinates":[-73.8706517,40.75162170000001],"type":"Point"},"name":"Happy World Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058cde"},"location":{"coordinates":[-73.97775159999999,40.7510553],"type":"Point"},"name":"Convene"} +,{"_id":{"$oid":"55cba2476c522cafdb058cdf"},"location":{"coordinates":[-73.982049,40.7280276],"type":"Point"},"name":"Flinders Lane"} +,{"_id":{"$oid":"55cba2476c522cafdb058ce0"},"location":{"coordinates":[-73.922938,40.808527],"type":"Point"},"name":"Onis Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058ce1"},"location":{"coordinates":[-73.97523029999999,40.6831182],"type":"Point"},"name":"Atlantic Freeze"} +,{"_id":{"$oid":"55cba2476c522cafdb058ce2"},"location":{"coordinates":[-74.00188399999999,40.642485],"type":"Point"},"name":"Bakery On 8Th"} +,{"_id":{"$oid":"55cba2476c522cafdb058ce3"},"location":{"coordinates":[-73.9567659,40.6872112],"type":"Point"},"name":"Hong Kong Cafe Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058ce4"},"location":{"coordinates":[-73.9539854,40.8058554],"type":"Point"},"name":"Double Dutch Espresso"} +,{"_id":{"$oid":"55cba2476c522cafdb058ce5"},"location":{"coordinates":[-73.9093017,40.77539489999999],"type":"Point"},"name":"The Sandwich Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb058ce6"},"location":{"coordinates":[-73.95715299999999,40.728859],"type":"Point"},"name":"Brooklyn Safe House"} +,{"_id":{"$oid":"55cba2476c522cafdb058ce7"},"location":{"coordinates":[-73.9376221,40.8186934],"type":"Point"},"name":"Grini'S Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb058ce8"},"location":{"coordinates":[-73.8682266,40.7471902],"type":"Point"},"name":"May Chun Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb058ce9"},"location":{"coordinates":[-74.0045033,40.7187011],"type":"Point"},"name":"Bouley Botanical"} +,{"_id":{"$oid":"55cba2476c522cafdb058cea"},"location":{"coordinates":[-73.9742747,40.7642202],"type":"Point"},"name":"Sahara Plaza"} +,{"_id":{"$oid":"55cba2476c522cafdb058ceb"},"location":{"coordinates":[-73.78105140000001,40.7538768],"type":"Point"},"name":"K-Town Food Court"} +,{"_id":{"$oid":"55cba2476c522cafdb058cec"},"location":{"coordinates":[-74.1660553,40.5823983],"type":"Point"},"name":"Kfc/Taco Bell/ South Philly Steaks \u0026 Fries"} +,{"_id":{"$oid":"55cba2476c522cafdb058ced"},"location":{"coordinates":[-73.9937447,40.6944006],"type":"Point"},"name":"Gallito'S Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb058cee"},"location":{"coordinates":[-73.9210275,40.6413138],"type":"Point"},"name":"Pizza Hut/Kfc/Taco Bell"} +,{"_id":{"$oid":"55cba2476c522cafdb058cef"},"location":{"coordinates":[-73.909652,40.749252],"type":"Point"},"name":"Aida Chimpbay"} +,{"_id":{"$oid":"55cba2476c522cafdb058cf0"},"location":{"coordinates":[-73.6969294,40.7535876],"type":"Point"},"name":"E Fresh"} +,{"_id":{"$oid":"55cba2476c522cafdb058cf1"},"location":{"coordinates":[-73.94259,40.7049537],"type":"Point"},"name":"Caridad Restaurant At Graham"} +,{"_id":{"$oid":"55cba2476c522cafdb058cf2"},"location":{"coordinates":[-73.9856795,40.7503355],"type":"Point"},"name":"Best Western Premier"} +,{"_id":{"$oid":"55cba2476c522cafdb058cf3"},"location":{"coordinates":[-73.903212,40.8484089],"type":"Point"},"name":"Fish Fry Fridays"} +,{"_id":{"$oid":"55cba2476c522cafdb058cf4"},"location":{"coordinates":[-73.9854156,40.7179416],"type":"Point"},"name":"Moscow 57"} +,{"_id":{"$oid":"55cba2476c522cafdb058cf5"},"location":{"coordinates":[-73.959819,40.656823],"type":"Point"},"name":"D Avenue"} +,{"_id":{"$oid":"55cba2476c522cafdb058cf6"},"location":{"coordinates":[-73.9874926,40.7607386],"type":"Point"},"name":"777 Theater Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb058cf7"},"location":{"coordinates":[-73.828324,40.764553],"type":"Point"},"name":"New Jin Da Lai"} +,{"_id":{"$oid":"55cba2476c522cafdb058cf8"},"location":{"coordinates":[-73.78334640000001,40.7128221],"type":"Point"},"name":"Crown Fried Chicken \u0026 Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb058cf9"},"location":{"coordinates":[-73.81948919999999,40.70227089999999],"type":"Point"},"name":"Palace Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb058cfa"},"location":{"coordinates":[-73.978276,40.728972],"type":"Point"},"name":"Camp David"} +,{"_id":{"$oid":"55cba2476c522cafdb058cfb"},"location":{"coordinates":[-73.9512348,40.7142303],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb058cfc"},"location":{"coordinates":[-73.8167271,40.7183287],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb058cfd"},"location":{"coordinates":[-73.85386799999999,40.898443],"type":"Point"},"name":"Kennedy Fried Chicken \u0026 Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb058cfe"},"location":{"coordinates":[-73.8480575,40.8712543],"type":"Point"},"name":"876 Bar Lounge Corp"} +,{"_id":{"$oid":"55cba2476c522cafdb058cff"},"location":{"coordinates":[-73.949928,40.67457],"type":"Point"},"name":"No. 1 Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058d00"},"location":{"coordinates":[-73.8871998,40.7589817],"type":"Point"},"name":"King River Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058d01"},"location":{"coordinates":[-73.7822056,40.6434612],"type":"Point"},"name":"Pizza Vino"} +,{"_id":{"$oid":"55cba2476c522cafdb058d02"},"location":{"coordinates":[-73.920113,40.698984],"type":"Point"},"name":"Sapore Di Italia"} +,{"_id":{"$oid":"55cba2476c522cafdb058d03"},"location":{"coordinates":[-73.80469339999999,40.72092869999999],"type":"Point"},"name":"Hot Bagels"} +,{"_id":{"$oid":"55cba2476c522cafdb058d04"},"location":{"coordinates":[-73.95036569999999,40.6557913],"type":"Point"},"name":"China City"} +,{"_id":{"$oid":"55cba2476c522cafdb058d05"},"location":{"coordinates":[-73.9995706,40.7245572],"type":"Point"},"name":"The Cafe @ Greene St"} +,{"_id":{"$oid":"55cba2476c522cafdb058d06"},"location":{"coordinates":[-73.95676399999999,40.7481838],"type":"Point"},"name":"Blend"} +,{"_id":{"$oid":"55cba2476c522cafdb058d07"},"location":{"coordinates":[-73.98209109999999,40.7472265],"type":"Point"},"name":"Tim Hortons \u0026 Cold Stoms Creamery"} +,{"_id":{"$oid":"55cba2476c522cafdb058d08"},"location":{"coordinates":[-73.99346899999999,40.682505],"type":"Point"},"name":"Mad Dog \u0026 Beans"} +,{"_id":{"$oid":"55cba2476c522cafdb058d09"},"location":{"coordinates":[-73.9432674,40.7989188],"type":"Point"},"name":"Adar Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb058d0a"},"location":{"coordinates":[-73.9106596,40.8375705],"type":"Point"},"name":"Mama Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb058d0b"},"location":{"coordinates":[-73.9776704,40.5962863],"type":"Point"},"name":"Living Room Restaurant And Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb058d0c"},"location":{"coordinates":[-73.93191689999999,40.8496354],"type":"Point"},"name":"Relleno"} +,{"_id":{"$oid":"55cba2476c522cafdb058d0d"},"location":{"coordinates":[-76.8261076,37.5235063],"type":"Point"},"name":"Five Town Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058d0e"},"location":{"coordinates":[-73.851185,40.710682],"type":"Point"},"name":"Acey Ducey'S"} +,{"_id":{"$oid":"55cba2476c522cafdb058d0f"},"location":{"coordinates":[-74.163021,40.544657],"type":"Point"},"name":"Desert Rose Cafe \u0026 Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb058d10"},"location":{"coordinates":[-73.955551,40.712849],"type":"Point"},"name":"66 Hope Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058d11"},"location":{"coordinates":[-73.8290939,40.759362],"type":"Point"},"name":"Gou Bang Zi Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb058d12"},"location":{"coordinates":[-73.9973567,40.7150614],"type":"Point"},"name":"Hong Kong Station"} +,{"_id":{"$oid":"55cba2476c522cafdb058d13"},"location":{"coordinates":[-73.9791516,40.7506861],"type":"Point"},"name":"Market Place Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058d14"},"location":{"coordinates":[-73.845837,40.8435289],"type":"Point"},"name":"Kai Sushi Asian Fusion"} +,{"_id":{"$oid":"55cba2476c522cafdb058d15"},"location":{"coordinates":[-73.986069,40.73006729999999],"type":"Point"},"name":"Liquiteria"} +,{"_id":{"$oid":"55cba2476c522cafdb058d16"},"location":{"coordinates":[-73.99414039999999,40.7138356],"type":"Point"},"name":"New 888 China Express"} +,{"_id":{"$oid":"55cba2476c522cafdb058d17"},"location":{"coordinates":[-73.96795589999999,40.6394247],"type":"Point"},"name":"Lea"} +,{"_id":{"$oid":"55cba2476c522cafdb058d18"},"location":{"coordinates":[-73.9637841,40.7982872],"type":"Point"},"name":"Benny'S Lung Sheng Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058d19"},"location":{"coordinates":[-73.98580849999999,40.75160140000001],"type":"Point"},"name":"Vivid Cabaret"} +,{"_id":{"$oid":"55cba2476c522cafdb058d1a"},"location":{"coordinates":[-73.8366025,40.7077535],"type":"Point"},"name":"I-Food I-Sea I-Eat"} +,{"_id":{"$oid":"55cba2476c522cafdb058d1b"},"location":{"coordinates":[-73.95511979999999,40.8040975],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb058d1c"},"location":{"coordinates":[-73.8257817,40.7460806],"type":"Point"},"name":"Asian Gourmet"} +,{"_id":{"$oid":"55cba2476c522cafdb058d1d"},"location":{"coordinates":[-73.99676529999999,40.72144249999999],"type":"Point"},"name":"Mikaku"} +,{"_id":{"$oid":"55cba2476c522cafdb058d1e"},"location":{"coordinates":[-73.8332322,40.6881429],"type":"Point"},"name":"Friend Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058d1f"},"location":{"coordinates":[-73.9057681,40.8793893],"type":"Point"},"name":"Cold Cut City Bunny Deli 2"} +,{"_id":{"$oid":"55cba2476c522cafdb058d20"},"location":{"coordinates":[-73.98348899999999,40.63329299999999],"type":"Point"},"name":"Yanky'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb058d21"},"location":{"coordinates":[-73.9867043,40.6932639],"type":"Point"},"name":"Chipotle Mexican Grill #2090"} +,{"_id":{"$oid":"55cba2476c522cafdb058d22"},"location":{"coordinates":[-73.993724,40.602417],"type":"Point"},"name":"Cup O Yogurt"} +,{"_id":{"$oid":"55cba2476c522cafdb058d23"},"location":{"coordinates":[-73.9408444,40.5834713],"type":"Point"},"name":"Rocca Cafe \u0026 Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb058d24"},"location":{"coordinates":[-73.9328567,40.8487941],"type":"Point"},"name":"Munchies Smoothie And Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb058d25"},"location":{"coordinates":[-73.98837449999999,40.6711759],"type":"Point"},"name":"Jia Xing Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058d26"},"location":{"coordinates":[-73.76532619999999,40.713451],"type":"Point"},"name":"New Ho Wah Chinese Food"} +,{"_id":{"$oid":"55cba2476c522cafdb058d27"},"location":{"coordinates":[-73.9029499,40.8223656],"type":"Point"},"name":"Wang Eastern"} +,{"_id":{"$oid":"55cba2476c522cafdb058d28"},"location":{"coordinates":[-73.9517007,40.7824764],"type":"Point"},"name":"Effy'S Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058d29"},"location":{"coordinates":[-73.8256621,40.7436742],"type":"Point"},"name":"Ace Bagel \u0026 Roll"} +,{"_id":{"$oid":"55cba2476c522cafdb058d2a"},"location":{"coordinates":[-73.97869299999999,40.669995],"type":"Point"},"name":"Parish"} +,{"_id":{"$oid":"55cba2476c522cafdb058d2b"},"location":{"coordinates":[-73.985142,40.719503],"type":"Point"},"name":"A-12 Sushi \u0026 Ramen"} +,{"_id":{"$oid":"55cba2476c522cafdb058d2c"},"location":{"coordinates":[-74.005276,40.7196407],"type":"Point"},"name":"Eleven Food \u0026 Beverage Inc"} +,{"_id":{"$oid":"55cba2476c522cafdb058d2d"},"location":{"coordinates":[-74.135384,40.63473],"type":"Point"},"name":"Yummy Yummy Gurmet Inc"} +,{"_id":{"$oid":"55cba2476c522cafdb058d2e"},"location":{"coordinates":[-73.8441711,40.6809257],"type":"Point"},"name":"Papa John'S"} +,{"_id":{"$oid":"55cba2476c522cafdb058d2f"},"location":{"coordinates":[-73.94912149999999,40.8280739],"type":"Point"},"name":"Jumbo Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb058d30"},"location":{"coordinates":[-73.8253945,40.7337152],"type":"Point"},"name":"Soy Sauce"} +,{"_id":{"$oid":"55cba2476c522cafdb058d31"},"location":{"coordinates":[-73.7891001,40.7459263],"type":"Point"},"name":"Peking Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058d32"},"location":{"coordinates":[-73.956819,40.7179045],"type":"Point"},"name":"St. Balmain"} +,{"_id":{"$oid":"55cba2476c522cafdb058d33"},"location":{"coordinates":[-73.9289268,40.75491299999999],"type":"Point"},"name":"Icon"} +,{"_id":{"$oid":"55cba2476c522cafdb058d34"},"location":{"coordinates":[-73.9821152,40.666587],"type":"Point"},"name":"Beet Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb058d35"},"location":{"coordinates":[-73.98804559999999,40.7639545],"type":"Point"},"name":"Xai Xai Wine Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb058d36"},"location":{"coordinates":[-73.86903699999999,40.74800500000001],"type":"Point"},"name":"Tropicana"} +,{"_id":{"$oid":"55cba2476c522cafdb058d37"},"location":{"coordinates":[-74.19261519999999,40.5530453],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb058d38"},"location":{"coordinates":[-73.9269747,40.8658918],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb058d39"},"location":{"coordinates":[-73.9935844,40.6154443],"type":"Point"},"name":"Tortillas King"} +,{"_id":{"$oid":"55cba2476c522cafdb058d3a"},"location":{"coordinates":[-73.8456149,40.7203575],"type":"Point"},"name":"Haagen Dazs"} +,{"_id":{"$oid":"55cba2476c522cafdb058d3b"},"location":{"coordinates":[-73.8896046,40.749206],"type":"Point"},"name":"Al-Araf Halal Fried Chicken And Frozen Delights"} +,{"_id":{"$oid":"55cba2476c522cafdb058d3c"},"location":{"coordinates":[-73.9273024,40.70365109999999],"type":"Point"},"name":"Don Gabriel Bakery \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058d3d"},"location":{"coordinates":[-73.948297,40.641786],"type":"Point"},"name":"Roof Sports Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb058d3e"},"location":{"coordinates":[-73.9671735,40.8026431],"type":"Point"},"name":"Curry Club"} +,{"_id":{"$oid":"55cba2476c522cafdb058d3f"},"location":{"coordinates":[-73.9376212,40.7404694],"type":"Point"},"name":"Griddle Cafe Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb058d40"},"location":{"coordinates":[-73.9940003,40.7359927],"type":"Point"},"name":"Caffe Bene"} +,{"_id":{"$oid":"55cba2476c522cafdb058d41"},"location":{"coordinates":[-73.9590872,40.7743729],"type":"Point"},"name":"Pastrami Queen"} +,{"_id":{"$oid":"55cba2476c522cafdb058d42"},"location":{"coordinates":[-73.9491109,40.8288547],"type":"Point"},"name":"Pizza Guys"} +,{"_id":{"$oid":"55cba2476c522cafdb058d43"},"location":{"coordinates":[-73.915858,40.744816],"type":"Point"},"name":"White Cake Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb058d44"},"location":{"coordinates":[-73.73913999999999,40.717689],"type":"Point"},"name":"Wonderful Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058d45"},"location":{"coordinates":[-73.9174136,40.8673458],"type":"Point"},"name":"El Divino Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058d46"},"location":{"coordinates":[-73.98625729999999,40.7435653],"type":"Point"},"name":"Birch Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb058d47"},"location":{"coordinates":[-73.981122,40.778072],"type":"Point"},"name":"Cold Stone Creamery/Tim Hortons"} +,{"_id":{"$oid":"55cba2476c522cafdb058d48"},"location":{"coordinates":[-73.9238553,40.705867],"type":"Point"},"name":"The Johnson'S"} +,{"_id":{"$oid":"55cba2476c522cafdb058d49"},"location":{"coordinates":[-73.8452832,40.8779313],"type":"Point"},"name":"Little Caesars"} +,{"_id":{"$oid":"55cba2476c522cafdb058d4a"},"location":{"coordinates":[-73.9493181,40.6452518],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb058d4b"},"location":{"coordinates":[-73.95621609999999,40.7297972],"type":"Point"},"name":"Budin"} +,{"_id":{"$oid":"55cba2476c522cafdb058d4c"},"location":{"coordinates":[-73.9814514,40.7293344],"type":"Point"},"name":"Brooklyn Piggies"} +,{"_id":{"$oid":"55cba2476c522cafdb058d4d"},"location":{"coordinates":[-74.005477,40.679763],"type":"Point"},"name":"Camila'S Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058d4e"},"location":{"coordinates":[-73.82144699999999,40.687532],"type":"Point"},"name":"T\u0026T Bbq Hut"} +,{"_id":{"$oid":"55cba2476c522cafdb058d4f"},"location":{"coordinates":[-73.9690457,40.765021],"type":"Point"},"name":"The Browning School"} +,{"_id":{"$oid":"55cba2476c522cafdb058d50"},"location":{"coordinates":[-73.84311699999999,40.688091],"type":"Point"},"name":"China Fun Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058d51"},"location":{"coordinates":[-73.8659206,40.7368922],"type":"Point"},"name":"New Ming'S Kintchen"} +,{"_id":{"$oid":"55cba2476c522cafdb058d52"},"location":{"coordinates":[-73.9686979,40.7571859],"type":"Point"},"name":"Hudson Malone"} +,{"_id":{"$oid":"55cba2476c522cafdb058d53"},"location":{"coordinates":[-73.938834,40.6726839],"type":"Point"},"name":"Lucky Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb058d54"},"location":{"coordinates":[-73.94113349999999,40.6801696],"type":"Point"},"name":"Lin New People Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058d55"},"location":{"coordinates":[-73.9580029,40.7086467],"type":"Point"},"name":"Mei Wei Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058d56"},"location":{"coordinates":[-73.9188034,40.8381439],"type":"Point"},"name":"Emilio Super Bakery Corp"} +,{"_id":{"$oid":"55cba2476c522cafdb058d57"},"location":{"coordinates":[-73.92500799999999,40.67206],"type":"Point"},"name":"Empire Kitchen ."} +,{"_id":{"$oid":"55cba2476c522cafdb058d58"},"location":{"coordinates":[-73.78838999999999,40.707235],"type":"Point"},"name":"The Lime Bar \u0026 Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb058d59"},"location":{"coordinates":[-73.7385169,40.6948123],"type":"Point"},"name":"New Fresco Tortillas 2"} +,{"_id":{"$oid":"55cba2476c522cafdb058d5a"},"location":{"coordinates":[-73.92606959999999,40.7718408],"type":"Point"},"name":"Chubby Burgers Chicken \u0026 Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb058d5b"},"location":{"coordinates":[-74.0055151,40.6288092],"type":"Point"},"name":"Golden Lin Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb058d5c"},"location":{"coordinates":[-73.9142916,40.8443075],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb058d5d"},"location":{"coordinates":[-74.00670199999999,40.714593],"type":"Point"},"name":"Checkers"} +,{"_id":{"$oid":"55cba2476c522cafdb058d5e"},"location":{"coordinates":[-73.98622499999999,40.7613051],"type":"Point"},"name":"Cycle Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058d5f"},"location":{"coordinates":[-73.991478,40.733075],"type":"Point"},"name":"The Hummus And Pita Co."} +,{"_id":{"$oid":"55cba2476c522cafdb058d60"},"location":{"coordinates":[-74.03025219999999,40.6246392],"type":"Point"},"name":"Pearl Of China Inc"} +,{"_id":{"$oid":"55cba2476c522cafdb058d61"},"location":{"coordinates":[-73.8812901,40.7411868],"type":"Point"},"name":"Pulau Pinang Malaysian Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb058d62"},"location":{"coordinates":[-73.9052126,40.8730129],"type":"Point"},"name":"Pizza Italia Raffaele Inc"} +,{"_id":{"$oid":"55cba2476c522cafdb058d63"},"location":{"coordinates":[-73.95679670000001,40.71699599999999],"type":"Point"},"name":"Two Boots \u0026 Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb058d64"},"location":{"coordinates":[-73.9850173,40.7188915],"type":"Point"},"name":"Black Crescent"} +,{"_id":{"$oid":"55cba2476c522cafdb058d65"},"location":{"coordinates":[-74.1305916,40.6131525],"type":"Point"},"name":"Scoops Ice Cream And Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058d66"},"location":{"coordinates":[-73.9997854,40.6154717],"type":"Point"},"name":"Bagels Plus"} +,{"_id":{"$oid":"55cba2476c522cafdb058d67"},"location":{"coordinates":[-73.9874294,40.7251431],"type":"Point"},"name":"Cho-Ko Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058d68"},"location":{"coordinates":[-73.94703419999999,40.7002584],"type":"Point"},"name":"3 Esquinas Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058d69"},"location":{"coordinates":[-73.9424264,40.8376538],"type":"Point"},"name":"Las Palmas Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058d6a"},"location":{"coordinates":[-73.98443189999999,40.7521406],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb058d6b"},"location":{"coordinates":[-73.9854904,40.7511186],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb058d6c"},"location":{"coordinates":[-74.0287523,40.6225204],"type":"Point"},"name":"What A Taco"} +,{"_id":{"$oid":"55cba2476c522cafdb058d6d"},"location":{"coordinates":[-73.98367569999999,40.5909556],"type":"Point"},"name":"New First Cook Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058d6e"},"location":{"coordinates":[-73.9419685,40.7866773],"type":"Point"},"name":"Mj Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb058d6f"},"location":{"coordinates":[-74.12969559999999,40.6264746],"type":"Point"},"name":"Sumac"} +,{"_id":{"$oid":"55cba2476c522cafdb058d70"},"location":{"coordinates":[-73.95000519999999,40.6782351],"type":"Point"},"name":"Na Bagels"} +,{"_id":{"$oid":"55cba2476c522cafdb058d71"},"location":{"coordinates":[-73.9787503,40.7513403],"type":"Point"},"name":"Potbelly Sandwich Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb058d72"},"location":{"coordinates":[-74.01350029999999,40.707037],"type":"Point"},"name":"Wogies Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb058d73"},"location":{"coordinates":[-73.9393338,40.6990345],"type":"Point"},"name":"Milly'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb058d74"},"location":{"coordinates":[-73.9816699,40.6665227],"type":"Point"},"name":"Buttermilk Bakeshop"} +,{"_id":{"$oid":"55cba2476c522cafdb058d75"},"location":{"coordinates":[-73.9039797,40.8490046],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb058d76"},"location":{"coordinates":[-73.94515849999999,40.7479211],"type":"Point"},"name":"Shannon Pot"} +,{"_id":{"$oid":"55cba2476c522cafdb058d77"},"location":{"coordinates":[-73.83383049999999,40.7593013],"type":"Point"},"name":"Fresh Juice Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb058d78"},"location":{"coordinates":[-73.9553975,40.68059909999999],"type":"Point"},"name":"Marrakech Door"} +,{"_id":{"$oid":"55cba2476c522cafdb058d79"},"location":{"coordinates":[-73.986403,40.7602027],"type":"Point"},"name":"Buffalo Wild Wings Grill \u0026 Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb058d7a"},"location":{"coordinates":[-73.9681987,40.7929643],"type":"Point"},"name":"Effys Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058d7b"},"location":{"coordinates":[-73.9837107,40.7383949],"type":"Point"},"name":"China King"} +,{"_id":{"$oid":"55cba2476c522cafdb058d7c"},"location":{"coordinates":[-73.903345,40.811779],"type":"Point"},"name":"Good Taste Chinese Food"} +,{"_id":{"$oid":"55cba2476c522cafdb058d7d"},"location":{"coordinates":[-73.9975803,40.7148637],"type":"Point"},"name":"Famous Sichuan"} +,{"_id":{"$oid":"55cba2476c522cafdb058d7e"},"location":{"coordinates":[-73.867374,40.8585235],"type":"Point"},"name":"China Mia Exotic Asian Food, Yogurt \u0026 Juice Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb058d7f"},"location":{"coordinates":[-74.0096126,40.7152803],"type":"Point"},"name":"J R Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb058d80"},"location":{"coordinates":[-73.95832659999999,40.8111393],"type":"Point"},"name":"Toast Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb058d81"},"location":{"coordinates":[-73.835391,40.754844],"type":"Point"},"name":"Platinum Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb058d82"},"location":{"coordinates":[-73.9736794,40.752446],"type":"Point"},"name":"Hot Clay Oven"} +,{"_id":{"$oid":"55cba2476c522cafdb058d83"},"location":{"coordinates":[-73.9903696,40.71863159999999],"type":"Point"},"name":"Congee Village"} +,{"_id":{"$oid":"55cba2476c522cafdb058d84"},"location":{"coordinates":[-73.9028848,40.6999849],"type":"Point"},"name":"King'S Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb058d85"},"location":{"coordinates":[-73.8851273,40.7017902],"type":"Point"},"name":"Mario'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb058d86"},"location":{"coordinates":[-73.8796637,40.681745],"type":"Point"},"name":"Gyro King Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb058d87"},"location":{"coordinates":[-73.94835090000001,40.640526],"type":"Point"},"name":"La Baguette Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb058d88"},"location":{"coordinates":[-74.1113,40.571574],"type":"Point"},"name":"Jade Asian Bistro"} +,{"_id":{"$oid":"55cba2476c522cafdb058d89"},"location":{"coordinates":[-73.8747913,40.83137809999999],"type":"Point"},"name":"Suxing Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb058d8a"},"location":{"coordinates":[-73.9964444,40.6034985],"type":"Point"},"name":"Hamachi Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb058d8b"},"location":{"coordinates":[-73.91958559999999,40.8165124],"type":"Point"},"name":"Restaurant Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb058d8c"},"location":{"coordinates":[-73.9617513,40.6983456],"type":"Point"},"name":"Busy Corner Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb058d8d"},"location":{"coordinates":[-73.9670398,40.6746466],"type":"Point"},"name":"New Hood Hing Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058d8e"},"location":{"coordinates":[-73.9771359,40.7631722],"type":"Point"},"name":"Naya Express"} +,{"_id":{"$oid":"55cba2476c522cafdb058d8f"},"location":{"coordinates":[-73.9481796,40.7831355],"type":"Point"},"name":"A-Jiao Sichuan Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb058d90"},"location":{"coordinates":[-73.80963729999999,40.70488539999999],"type":"Point"},"name":"Sweet Mango"} +,{"_id":{"$oid":"55cba2476c522cafdb058d91"},"location":{"coordinates":[-74.0068984,40.7092395],"type":"Point"},"name":"Benton Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058d92"},"location":{"coordinates":[-73.979373,40.745252],"type":"Point"},"name":"Juice"} +,{"_id":{"$oid":"55cba2476c522cafdb058d93"},"location":{"coordinates":[-73.95221959999999,40.7807325],"type":"Point"},"name":"Bagels And More"} +,{"_id":{"$oid":"55cba2476c522cafdb058d94"},"location":{"coordinates":[-73.86609829999999,40.8546236],"type":"Point"},"name":"New Boe Lee"} +,{"_id":{"$oid":"55cba2476c522cafdb058d95"},"location":{"coordinates":[-73.97348199999999,40.784114],"type":"Point"},"name":"Lenny'S"} +,{"_id":{"$oid":"55cba2476c522cafdb058d96"},"location":{"coordinates":[-73.848576,40.84704],"type":"Point"},"name":"Nrp Food Solutions Llc"} +,{"_id":{"$oid":"55cba2476c522cafdb058d97"},"location":{"coordinates":[-73.991269,40.7646717],"type":"Point"},"name":"Puff Cha"} +,{"_id":{"$oid":"55cba2476c522cafdb058d98"},"location":{"coordinates":[-73.898439,40.749895],"type":"Point"},"name":"New Texas Fried Chicken \u0026 Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb058d99"},"location":{"coordinates":[-73.8646104,40.865247],"type":"Point"},"name":"Allerton Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb058d9a"},"location":{"coordinates":[-73.9742273,40.6860598],"type":"Point"},"name":"Habana To Go"} +,{"_id":{"$oid":"55cba2476c522cafdb058d9b"},"location":{"coordinates":[-73.9887456,40.7362911],"type":"Point"},"name":"New York Film Academy Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058d9c"},"location":{"coordinates":[-73.9140163,40.6993631],"type":"Point"},"name":"Cafeteria La Mejor"} +,{"_id":{"$oid":"55cba2476c522cafdb058d9d"},"location":{"coordinates":[-73.99369159999999,40.687265],"type":"Point"},"name":"The Cobble Creperie And Tea Spot"} +,{"_id":{"$oid":"55cba2476c522cafdb058d9e"},"location":{"coordinates":[-73.84597699999999,40.783029],"type":"Point"},"name":"Pollos A La Brasa Mr. Mario"} +,{"_id":{"$oid":"55cba2476c522cafdb058d9f"},"location":{"coordinates":[-73.9959432,40.7200254],"type":"Point"},"name":"Curry \u0026 Tandoor Corner"} +,{"_id":{"$oid":"55cba2476c522cafdb058da0"},"location":{"coordinates":[-73.9582298,40.6696297],"type":"Point"},"name":"New Peking Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058da1"},"location":{"coordinates":[-73.97883999999999,40.6872857],"type":"Point"},"name":"Union Square Sports \u0026 Entertainment At Theatre For A New Audience"} +,{"_id":{"$oid":"55cba2476c522cafdb058da2"},"location":{"coordinates":[-73.8940014,40.7544131],"type":"Point"},"name":"Jax Inn Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb058da3"},"location":{"coordinates":[-73.95268,40.68074],"type":"Point"},"name":"Wing Hing Chinese Food Inc"} +,{"_id":{"$oid":"55cba2476c522cafdb058da4"},"location":{"coordinates":[-73.9181801,40.81604650000001],"type":"Point"},"name":"Joey Pepperoni'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb058da5"},"location":{"coordinates":[-74.00860899999999,40.6360699],"type":"Point"},"name":"Maikley Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058da6"},"location":{"coordinates":[-73.986772,40.669039],"type":"Point"},"name":"Daisy'S Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb058da7"},"location":{"coordinates":[-73.9983379,40.74505740000001],"type":"Point"},"name":"Pizza 23"} +,{"_id":{"$oid":"55cba2476c522cafdb058da8"},"location":{"coordinates":[-73.9663928,40.683555],"type":"Point"},"name":"Emily"} +,{"_id":{"$oid":"55cba2476c522cafdb058da9"},"location":{"coordinates":[-73.98974969999999,40.68726520000001],"type":"Point"},"name":"Blue Bottle Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb058daa"},"location":{"coordinates":[-73.990701,40.760509],"type":"Point"},"name":"Turco Mediterranean Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb058dab"},"location":{"coordinates":[-73.908259,40.77473],"type":"Point"},"name":"Boonchu #2"} +,{"_id":{"$oid":"55cba2476c522cafdb058dac"},"location":{"coordinates":[-73.9363363,40.6702744],"type":"Point"},"name":"King'S Wok"} +,{"_id":{"$oid":"55cba2476c522cafdb058dad"},"location":{"coordinates":[-74.0062892,40.6211281],"type":"Point"},"name":"Fujiyama Japanese Fusion"} +,{"_id":{"$oid":"55cba2476c522cafdb058dae"},"location":{"coordinates":[-73.956487,40.681018],"type":"Point"},"name":"Brooklyn Wine Yard"} +,{"_id":{"$oid":"55cba2476c522cafdb058daf"},"location":{"coordinates":[-73.9963209,40.6133603],"type":"Point"},"name":"M \u0026 U Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb058db0"},"location":{"coordinates":[-73.9153036,40.7574564],"type":"Point"},"name":"Layaly Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058db1"},"location":{"coordinates":[-73.8867497,40.8549043],"type":"Point"},"name":"Lee'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058db2"},"location":{"coordinates":[-73.9744989,40.7647267],"type":"Point"},"name":"Vive La Crepe"} +,{"_id":{"$oid":"55cba2476c522cafdb058db3"},"location":{"coordinates":[-73.9965737,40.74758449999999],"type":"Point"},"name":"Toppings"} +,{"_id":{"$oid":"55cba2476c522cafdb058db4"},"location":{"coordinates":[-73.9202095,40.8351748],"type":"Point"},"name":"Dragon Concourse"} +,{"_id":{"$oid":"55cba2476c522cafdb058db5"},"location":{"coordinates":[-73.99520849999999,40.7140333],"type":"Point"},"name":"Hua Xia Seafood Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058db6"},"location":{"coordinates":[-74.02582149999999,40.6208985],"type":"Point"},"name":"Hana Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb058db7"},"location":{"coordinates":[-73.8006918,40.702898],"type":"Point"},"name":"Employee Cafeteria, Social Security Administration Office"} +,{"_id":{"$oid":"55cba2476c522cafdb058db8"},"location":{"coordinates":[-73.985343,40.7469829],"type":"Point"},"name":"Soju Haus"} +,{"_id":{"$oid":"55cba2476c522cafdb058db9"},"location":{"coordinates":[-73.97601829999999,40.6440962],"type":"Point"},"name":"Church Cafe Wine Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb058dba"},"location":{"coordinates":[-73.950405,40.77915],"type":"Point"},"name":"Vietnaam"} +,{"_id":{"$oid":"55cba2476c522cafdb058dbb"},"location":{"coordinates":[-74.23595399999999,40.514565],"type":"Point"},"name":"Coconut"} +,{"_id":{"$oid":"55cba2476c522cafdb058dbc"},"location":{"coordinates":[-73.99065100000001,40.760682],"type":"Point"},"name":"Cara Mia"} +,{"_id":{"$oid":"55cba2476c522cafdb058dbd"},"location":{"coordinates":[-73.9964529,40.7322922],"type":"Point"},"name":"La Panineria"} +,{"_id":{"$oid":"55cba2476c522cafdb058dbe"},"location":{"coordinates":[-73.9394535,40.7982208],"type":"Point"},"name":"New Wok Express"} +,{"_id":{"$oid":"55cba2476c522cafdb058dbf"},"location":{"coordinates":[-73.9582704,40.82543769999999],"type":"Point"},"name":"Snack Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb058dc0"},"location":{"coordinates":[-73.98933679999999,40.72588930000001],"type":"Point"},"name":"Red Mango"} +,{"_id":{"$oid":"55cba2476c522cafdb058dc1"},"location":{"coordinates":[-73.84942769999999,40.884435],"type":"Point"},"name":"Big Wong Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb058dc2"},"location":{"coordinates":[-73.8620737,40.8307417],"type":"Point"},"name":"Bengal Food"} +,{"_id":{"$oid":"55cba2476c522cafdb058dc3"},"location":{"coordinates":[-74.011715,40.637238],"type":"Point"},"name":"Moon \u0026 Flower House"} +,{"_id":{"$oid":"55cba2476c522cafdb058dc4"},"location":{"coordinates":[-73.9524704,40.78654],"type":"Point"},"name":"Sweet Stop Caffe"} +,{"_id":{"$oid":"55cba2476c522cafdb058dc5"},"location":{"coordinates":[-74.0102935,40.7299344],"type":"Point"},"name":"Mystique"} +,{"_id":{"$oid":"55cba2476c522cafdb058dc6"},"location":{"coordinates":[-73.9273061,40.86326830000001],"type":"Point"},"name":"Bombonada"} +,{"_id":{"$oid":"55cba2476c522cafdb058dc7"},"location":{"coordinates":[-74.5138669,39.3941395],"type":"Point"},"name":"New Shun Hing Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058dc8"},"location":{"coordinates":[-73.73679369999999,40.7690036],"type":"Point"},"name":"No.I China Kitchen Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb058dc9"},"location":{"coordinates":[-73.85995799999999,40.757564],"type":"Point"},"name":"Mi Casita Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb058dca"},"location":{"coordinates":[-73.9060669,40.74514],"type":"Point"},"name":"New China Iii"} +,{"_id":{"$oid":"55cba2476c522cafdb058dcb"},"location":{"coordinates":[-73.9648424,40.657621],"type":"Point"},"name":"Bluestone Lakeside Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058dcc"},"location":{"coordinates":[-73.878322,40.760255],"type":"Point"},"name":"Las Delicias De La Casa Colombiana"} +,{"_id":{"$oid":"55cba2476c522cafdb058dcd"},"location":{"coordinates":[-73.94872459999999,40.8035078],"type":"Point"},"name":"La Bodega 47 Social Club"} +,{"_id":{"$oid":"55cba2476c522cafdb058dce"},"location":{"coordinates":[-73.90687679999999,40.691984],"type":"Point"},"name":"No 1 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058dcf"},"location":{"coordinates":[-73.9716384,40.7511137],"type":"Point"},"name":"Sushi Time"} +,{"_id":{"$oid":"55cba2476c522cafdb058dd0"},"location":{"coordinates":[-73.8921848,40.8257117],"type":"Point"},"name":"Lechonera Pollo Sabroso Boriquena"} +,{"_id":{"$oid":"55cba2476c522cafdb058dd1"},"location":{"coordinates":[-73.7540406,40.6652274],"type":"Point"},"name":"Golden Krust"} +,{"_id":{"$oid":"55cba2476c522cafdb058dd2"},"location":{"coordinates":[-73.9915814,40.7159183],"type":"Point"},"name":"Nibbles"} +,{"_id":{"$oid":"55cba2476c522cafdb058dd3"},"location":{"coordinates":[-73.8682196,40.7492809],"type":"Point"},"name":"Organic Food, Natural Juices And Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb058dd4"},"location":{"coordinates":[-74.0283937,40.6306606],"type":"Point"},"name":"Zito'S"} +,{"_id":{"$oid":"55cba2476c522cafdb058dd5"},"location":{"coordinates":[-73.9948512,40.7549783],"type":"Point"},"name":"Kashmir"} +,{"_id":{"$oid":"55cba2476c522cafdb058dd6"},"location":{"coordinates":[-73.9326907,40.7641794],"type":"Point"},"name":"Burger King"} +,{"_id":{"$oid":"55cba2476c522cafdb058dd7"},"location":{"coordinates":[-73.7801843,40.7532544],"type":"Point"},"name":"Super Tiger Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb058dd8"},"location":{"coordinates":[-73.9790642,40.5933084],"type":"Point"},"name":"Little Caesars"} +,{"_id":{"$oid":"55cba2476c522cafdb058dd9"},"location":{"coordinates":[-73.98670299999999,40.7207099],"type":"Point"},"name":"Stanton Square Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb058dda"},"location":{"coordinates":[-73.7307371,40.66515],"type":"Point"},"name":"Cj'S Jamaican Restaurant \u0026 Bakery No 3"} +,{"_id":{"$oid":"55cba2476c522cafdb058ddb"},"location":{"coordinates":[-73.9979609,40.7142303],"type":"Point"},"name":"Taiwan Pork Chop House"} +,{"_id":{"$oid":"55cba2476c522cafdb058ddc"},"location":{"coordinates":[-73.79831870000001,40.6920281],"type":"Point"},"name":"Crown Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb058ddd"},"location":{"coordinates":[-0.1553252,51.1273426],"type":"Point"},"name":"Tavern On The Green"} +,{"_id":{"$oid":"55cba2476c522cafdb058dde"},"location":{"coordinates":[-73.7825885,40.7129],"type":"Point"},"name":"Island Rage"} +,{"_id":{"$oid":"55cba2476c522cafdb058ddf"},"location":{"coordinates":[-73.96082899999999,40.71267],"type":"Point"},"name":"Max Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058de0"},"location":{"coordinates":[-74.02830200000001,40.622006],"type":"Point"},"name":"One Stop Express"} +,{"_id":{"$oid":"55cba2476c522cafdb058de1"},"location":{"coordinates":[-73.917282,40.764689],"type":"Point"},"name":"Pink Nori"} +,{"_id":{"$oid":"55cba2476c522cafdb058de2"},"location":{"coordinates":[-73.95652,40.77187600000001],"type":"Point"},"name":"Spigolo"} +,{"_id":{"$oid":"55cba2476c522cafdb058de3"},"location":{"coordinates":[-74.006957,40.733163],"type":"Point"},"name":"Amber Village Sushi And Thai"} +,{"_id":{"$oid":"55cba2476c522cafdb058de4"},"location":{"coordinates":[-73.9815497,40.7459158],"type":"Point"},"name":"Creative Juice"} +,{"_id":{"$oid":"55cba2476c522cafdb058de5"},"location":{"coordinates":[-73.9680489,40.756004],"type":"Point"},"name":"Jameson'S"} +,{"_id":{"$oid":"55cba2476c522cafdb058de6"},"location":{"coordinates":[-73.9902235,40.7309396],"type":"Point"},"name":"Ippudo"} +,{"_id":{"$oid":"55cba2476c522cafdb058de7"},"location":{"coordinates":[-73.89813939999999,40.7081421],"type":"Point"},"name":"Tendo Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb058de8"},"location":{"coordinates":[-74.00269349999999,40.685536],"type":"Point"},"name":"Carroll Gardens Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb058de9"},"location":{"coordinates":[-73.99128569999999,40.6851495],"type":"Point"},"name":"Spice"} +,{"_id":{"$oid":"55cba2476c522cafdb058dea"},"location":{"coordinates":[-74.005551,40.63276],"type":"Point"},"name":"King'S Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb058deb"},"location":{"coordinates":[-73.94427,40.7876],"type":"Point"},"name":"Grill Works"} +,{"_id":{"$oid":"55cba2476c522cafdb058dec"},"location":{"coordinates":[-73.9788903,40.7605367],"type":"Point"},"name":"Global Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb058ded"},"location":{"coordinates":[-73.9521346,40.8088273],"type":"Point"},"name":"Custom Fuel Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb058dee"},"location":{"coordinates":[-74.00485119999999,40.6761797],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb058def"},"location":{"coordinates":[-73.9904449,40.742221],"type":"Point"},"name":"Indikitch"} +,{"_id":{"$oid":"55cba2476c522cafdb058df0"},"location":{"coordinates":[-74.02691399999999,40.634374],"type":"Point"},"name":"Pashazade"} +,{"_id":{"$oid":"55cba2476c522cafdb058df1"},"location":{"coordinates":[-74.0085019,40.713369],"type":"Point"},"name":"Lilly O'Briens"} +,{"_id":{"$oid":"55cba2476c522cafdb058df2"},"location":{"coordinates":[-73.8814448,40.7421683],"type":"Point"},"name":"Eim"} +,{"_id":{"$oid":"55cba2476c522cafdb058df3"},"location":{"coordinates":[-73.98647290000001,40.7263971],"type":"Point"},"name":"Figaro Cafe Bistro Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb058df4"},"location":{"coordinates":[-73.7900081,40.7118572],"type":"Point"},"name":"Apnar Pharmacy"} +,{"_id":{"$oid":"55cba2476c522cafdb058df5"},"location":{"coordinates":[-73.83174799999999,40.848192],"type":"Point"},"name":"Juice Me"} +,{"_id":{"$oid":"55cba2476c522cafdb058df6"},"location":{"coordinates":[-73.94117829999999,40.7125414],"type":"Point"},"name":"Loving Hut"} +,{"_id":{"$oid":"55cba2476c522cafdb058df7"},"location":{"coordinates":[-73.8298519,40.876375],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb058df8"},"location":{"coordinates":[-73.87831,40.7503704],"type":"Point"},"name":"La Abundancia"} +,{"_id":{"$oid":"55cba2476c522cafdb058df9"},"location":{"coordinates":[-74.03109599999999,40.6239257],"type":"Point"},"name":"Dari Mediterranean"} +,{"_id":{"$oid":"55cba2476c522cafdb058dfa"},"location":{"coordinates":[-74.17681800000001,40.601669],"type":"Point"},"name":"Ti Amo Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb058dfb"},"location":{"coordinates":[-73.953187,40.660055],"type":"Point"},"name":"Gratitude Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058dfc"},"location":{"coordinates":[-73.9370572,40.8206095],"type":"Point"},"name":"108 Fast Food Corp"} +,{"_id":{"$oid":"55cba2476c522cafdb058dfd"},"location":{"coordinates":[-74.026331,40.620841],"type":"Point"},"name":"Mori Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb058dfe"},"location":{"coordinates":[-73.9756857,40.7558198],"type":"Point"},"name":"Starbucks Jpmc 270 Park"} +,{"_id":{"$oid":"55cba2476c522cafdb058dff"},"location":{"coordinates":[-73.901622,40.838107],"type":"Point"},"name":"Bronx Chicken \u0026 Pizza Inc"} +,{"_id":{"$oid":"55cba2476c522cafdb058e00"},"location":{"coordinates":[-73.8794571,40.8404251],"type":"Point"},"name":"Twin Donut"} +,{"_id":{"$oid":"55cba2476c522cafdb058e01"},"location":{"coordinates":[-73.9209673,40.8668318],"type":"Point"},"name":"Inwood Thai"} +,{"_id":{"$oid":"55cba2476c522cafdb058e02"},"location":{"coordinates":[-73.940944,40.793148],"type":"Point"},"name":"No Pork Kitchen Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058e03"},"location":{"coordinates":[-74.013554,40.645105],"type":"Point"},"name":"El Buen Gusto Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058e04"},"location":{"coordinates":[-73.992458,40.75796],"type":"Point"},"name":"Taqueria Tehuitzingo"} +,{"_id":{"$oid":"55cba2476c522cafdb058e05"},"location":{"coordinates":[-73.98252719999999,40.7400572],"type":"Point"},"name":"Timmy'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb058e06"},"location":{"coordinates":[-73.972878,40.79117],"type":"Point"},"name":"Miyako Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb058e07"},"location":{"coordinates":[-73.833016,40.700342],"type":"Point"},"name":"Wine Room Nyc"} +,{"_id":{"$oid":"55cba2476c522cafdb058e08"},"location":{"coordinates":[-73.97991739999999,40.7436811],"type":"Point"},"name":"Mama Ghanoush"} +,{"_id":{"$oid":"55cba2476c522cafdb058e09"},"location":{"coordinates":[-73.9950716,40.6795338],"type":"Point"},"name":"Giardini Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb058e0a"},"location":{"coordinates":[-73.9578034,40.7321695],"type":"Point"},"name":"The Moonlightmile"} +,{"_id":{"$oid":"55cba2476c522cafdb058e0b"},"location":{"coordinates":[-73.9517204,40.585686],"type":"Point"},"name":"Mitoushi Japenese Fusion"} +,{"_id":{"$oid":"55cba2476c522cafdb058e0c"},"location":{"coordinates":[-73.94997049999999,40.779885],"type":"Point"},"name":"Taijiyama"} +,{"_id":{"$oid":"55cba2476c522cafdb058e0d"},"location":{"coordinates":[-73.898433,40.74585099999999],"type":"Point"},"name":"House Of Inasal"} +,{"_id":{"$oid":"55cba2476c522cafdb058e0e"},"location":{"coordinates":[-73.9695752,40.7666629],"type":"Point"},"name":"Altesi Ristorante"} +,{"_id":{"$oid":"55cba2476c522cafdb058e0f"},"location":{"coordinates":[-73.9362149,40.7023467],"type":"Point"},"name":"Carrera'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058e10"},"location":{"coordinates":[-73.9899839,40.7467351],"type":"Point"},"name":"Sunsweet Market"} +,{"_id":{"$oid":"55cba2476c522cafdb058e11"},"location":{"coordinates":[-73.815018,40.763392],"type":"Point"},"name":"Black Hole Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058e12"},"location":{"coordinates":[-73.9012393,40.7159947],"type":"Point"},"name":"Greg Pieklo"} +,{"_id":{"$oid":"55cba2476c522cafdb058e13"},"location":{"coordinates":[-73.92791799999999,40.7555027],"type":"Point"},"name":"Sundarban Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058e14"},"location":{"coordinates":[-73.916144,40.694981],"type":"Point"},"name":"Bambino Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb058e15"},"location":{"coordinates":[-73.983412,40.74279],"type":"Point"},"name":"Bagels \u0026 Schmear"} +,{"_id":{"$oid":"55cba2476c522cafdb058e16"},"location":{"coordinates":[-73.9915061,40.7358055],"type":"Point"},"name":"Pizza Vinoteca"} +,{"_id":{"$oid":"55cba2476c522cafdb058e17"},"location":{"coordinates":[-73.9103722,40.8856708],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb058e18"},"location":{"coordinates":[-73.881444,40.7421678],"type":"Point"},"name":"Aroma De Cafe Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb058e19"},"location":{"coordinates":[-73.9963885,40.7440072],"type":"Point"},"name":"Sushi Seki"} +,{"_id":{"$oid":"55cba2476c522cafdb058e1a"},"location":{"coordinates":[-73.96402929999999,40.7184008],"type":"Point"},"name":"La Nonna Ristorante Bar Enoteca"} +,{"_id":{"$oid":"55cba2476c522cafdb058e1b"},"location":{"coordinates":[-73.9971997,40.722661],"type":"Point"},"name":"Iconic Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058e1c"},"location":{"coordinates":[-73.9487104,40.6322218],"type":"Point"},"name":"Quiznos"} +,{"_id":{"$oid":"55cba2476c522cafdb058e1d"},"location":{"coordinates":[-73.9902611,40.6000814],"type":"Point"},"name":"Sake Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058e1e"},"location":{"coordinates":[-73.980775,40.604994],"type":"Point"},"name":"King Long Wong Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb058e1f"},"location":{"coordinates":[-73.99485,40.66616399999999],"type":"Point"},"name":"Metropolitano Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058e20"},"location":{"coordinates":[-73.82769449999999,40.7546369],"type":"Point"},"name":"Red Mango"} +,{"_id":{"$oid":"55cba2476c522cafdb058e21"},"location":{"coordinates":[-73.96826,40.756976],"type":"Point"},"name":"Lucky Cat"} +,{"_id":{"$oid":"55cba2476c522cafdb058e22"},"location":{"coordinates":[-74.150459,40.5510915],"type":"Point"},"name":"Famous Falafel"} +,{"_id":{"$oid":"55cba2476c522cafdb058e23"},"location":{"coordinates":[-73.99323249999999,40.7356505],"type":"Point"},"name":"University Center Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058e24"},"location":{"coordinates":[-73.9826294,40.6774791],"type":"Point"},"name":"Bella Gioia"} +,{"_id":{"$oid":"55cba2476c522cafdb058e25"},"location":{"coordinates":[-73.99323249999999,40.7356505],"type":"Point"},"name":"7Th Floor Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058e26"},"location":{"coordinates":[-73.99323249999999,40.7356505],"type":"Point"},"name":"Cellar Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058e27"},"location":{"coordinates":[-73.988199,40.598897],"type":"Point"},"name":"Benson Eating Station"} +,{"_id":{"$oid":"55cba2476c522cafdb058e28"},"location":{"coordinates":[-73.769938,40.711894],"type":"Point"},"name":"Faro Bar \u0026 Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb058e29"},"location":{"coordinates":[-74.0057757,40.6394718],"type":"Point"},"name":"Chatime/Kings Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb058e2a"},"location":{"coordinates":[-73.9459399,40.619299],"type":"Point"},"name":"Salad Garden Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058e2b"},"location":{"coordinates":[-73.91081299999999,40.6687749],"type":"Point"},"name":"Loma #5 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058e2c"},"location":{"coordinates":[-73.974082,40.7525921],"type":"Point"},"name":"Birdbath Vandy"} +,{"_id":{"$oid":"55cba2476c522cafdb058e2d"},"location":{"coordinates":[-73.9258296,40.8610388],"type":"Point"},"name":"Abu Dhabi Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb058e2e"},"location":{"coordinates":[-74.020508,40.635414],"type":"Point"},"name":"Famous Yemen Sweets"} +,{"_id":{"$oid":"55cba2476c522cafdb058e2f"},"location":{"coordinates":[-73.912781,40.76699],"type":"Point"},"name":"Star Hookah"} +,{"_id":{"$oid":"55cba2476c522cafdb058e30"},"location":{"coordinates":[-73.92537449999999,40.8207116],"type":"Point"},"name":"Subway#50497 (Cardinal Hayes High School)"} +,{"_id":{"$oid":"55cba2476c522cafdb058e31"},"location":{"coordinates":[-73.8876429,40.6535533],"type":"Point"},"name":"Little Caesars"} +,{"_id":{"$oid":"55cba2476c522cafdb058e32"},"location":{"coordinates":[-73.993276,40.72122299999999],"type":"Point"},"name":"Congee Bowery Restaurant And Bar Inc."} +,{"_id":{"$oid":"55cba2476c522cafdb058e33"},"location":{"coordinates":[-73.92409409999999,40.7718128],"type":"Point"},"name":"Pao \u0026 Cha Cha"} +,{"_id":{"$oid":"55cba2476c522cafdb058e34"},"location":{"coordinates":[-73.8628693,40.7495106],"type":"Point"},"name":"Mcdonalds 17754"} +,{"_id":{"$oid":"55cba2476c522cafdb058e35"},"location":{"coordinates":[-73.98432799999999,40.729379],"type":"Point"},"name":"Schnitz"} +,{"_id":{"$oid":"55cba2476c522cafdb058e36"},"location":{"coordinates":[-73.870248,40.7511129],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb058e37"},"location":{"coordinates":[-74.0047189,40.6301082],"type":"Point"},"name":"New China Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058e38"},"location":{"coordinates":[-73.8898481,40.7470348],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb058e39"},"location":{"coordinates":[-73.8174075,40.7184168],"type":"Point"},"name":"King Wok"} +,{"_id":{"$oid":"55cba2476c522cafdb058e3a"},"location":{"coordinates":[-73.9313696,40.6640277],"type":"Point"},"name":"West Caribbean International Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058e3b"},"location":{"coordinates":[-73.883706,40.748072],"type":"Point"},"name":"Mc Donald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb058e3c"},"location":{"coordinates":[-73.9608842,40.6601355],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb058e3d"},"location":{"coordinates":[-74.24405600000001,40.510108],"type":"Point"},"name":"John'S Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb058e3e"},"location":{"coordinates":[-73.993521,40.713553],"type":"Point"},"name":"Hok Zhou Chinese Food"} +,{"_id":{"$oid":"55cba2476c522cafdb058e3f"},"location":{"coordinates":[-73.83361909999999,40.75593260000001],"type":"Point"},"name":"Ceo Sport Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb058e40"},"location":{"coordinates":[-73.8549091,40.7271698],"type":"Point"},"name":"Vstrecha"} +,{"_id":{"$oid":"55cba2476c522cafdb058e41"},"location":{"coordinates":[-74.0281442,40.6223697],"type":"Point"},"name":"Auntie Anne'S"} +,{"_id":{"$oid":"55cba2476c522cafdb058e42"},"location":{"coordinates":[-73.99432829999999,40.7312121],"type":"Point"},"name":"Soho Tiffin Junction"} +,{"_id":{"$oid":"55cba2476c522cafdb058e43"},"location":{"coordinates":[-73.9515117,40.7244976],"type":"Point"},"name":"Scalino G.P."} +,{"_id":{"$oid":"55cba2476c522cafdb058e44"},"location":{"coordinates":[-73.979373,40.745252],"type":"Point"},"name":"Pino Wine Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb058e45"},"location":{"coordinates":[-73.8748059,40.8296894],"type":"Point"},"name":"The New Ranch"} +,{"_id":{"$oid":"55cba2476c522cafdb058e46"},"location":{"coordinates":[-73.99360999999999,40.746322],"type":"Point"},"name":"Epice Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058e47"},"location":{"coordinates":[-73.96722969999999,40.7987219],"type":"Point"},"name":"Arco Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058e48"},"location":{"coordinates":[-73.9914908,40.7536417],"type":"Point"},"name":"Fafa Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058e49"},"location":{"coordinates":[-73.9539753,40.7744857],"type":"Point"},"name":"Chirping Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb058e4a"},"location":{"coordinates":[-73.8091701,40.7203047],"type":"Point"},"name":"Zoilita Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058e4b"},"location":{"coordinates":[-73.938824,40.84650999999999],"type":"Point"},"name":"Malecon Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058e4c"},"location":{"coordinates":[-73.85904169999999,40.7507633],"type":"Point"},"name":"Reyes Natural Juice"} +,{"_id":{"$oid":"55cba2476c522cafdb058e4d"},"location":{"coordinates":[-73.9205882,40.7573113],"type":"Point"},"name":"Sunset Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb058e4e"},"location":{"coordinates":[-73.9937922,40.7219568],"type":"Point"},"name":"R Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb058e4f"},"location":{"coordinates":[-73.98173609999999,40.659208],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb058e50"},"location":{"coordinates":[-73.8635947,40.7521451],"type":"Point"},"name":"Estilo De Vida Vb"} +,{"_id":{"$oid":"55cba2476c522cafdb058e51"},"location":{"coordinates":[-73.94010709999999,40.8365339],"type":"Point"},"name":"Nueva El Rincon"} +,{"_id":{"$oid":"55cba2476c522cafdb058e52"},"location":{"coordinates":[-73.8592602,40.7512706],"type":"Point"},"name":"Paraiso De La Salud"} +,{"_id":{"$oid":"55cba2476c522cafdb058e53"},"location":{"coordinates":[-73.842575,40.852882],"type":"Point"},"name":"Skyline Bar \u0026 Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb058e54"},"location":{"coordinates":[-73.996713,40.721875],"type":"Point"},"name":"Chop'T"} +,{"_id":{"$oid":"55cba2476c522cafdb058e55"},"location":{"coordinates":[-73.9731151,40.7856285],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb058e56"},"location":{"coordinates":[-73.97783869999999,40.6806281],"type":"Point"},"name":"Pierre Loti Wine Bar \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058e57"},"location":{"coordinates":[-73.9797209,40.7646789],"type":"Point"},"name":"Blue Dog Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058e58"},"location":{"coordinates":[-73.9921103,40.7445014],"type":"Point"},"name":"Blue Dog Kitchen Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb058e59"},"location":{"coordinates":[-73.9980282,40.7120956],"type":"Point"},"name":"Lily'S Asian Food"} +,{"_id":{"$oid":"55cba2476c522cafdb058e5a"},"location":{"coordinates":[-73.8803708,40.8624508],"type":"Point"},"name":"New York Botanic Gardens - Stonemill"} +,{"_id":{"$oid":"55cba2476c522cafdb058e5b"},"location":{"coordinates":[-73.9362494,40.584253],"type":"Point"},"name":"Vittoria Seafood \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb058e5c"},"location":{"coordinates":[-73.9327799,40.5839551],"type":"Point"},"name":"La Vue"} +,{"_id":{"$oid":"55cba2476c522cafdb058e5d"},"location":{"coordinates":[-73.8629137,40.7473028],"type":"Point"},"name":"Mama Lupe Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058e5e"},"location":{"coordinates":[-73.8668331,40.6786038],"type":"Point"},"name":"Checkers"} +,{"_id":{"$oid":"55cba2476c522cafdb058e5f"},"location":{"coordinates":[-73.8290939,40.759362],"type":"Point"},"name":"Lan Zhou Hand Made Noodle"} +,{"_id":{"$oid":"55cba2476c522cafdb058e60"},"location":{"coordinates":[-73.85070999999999,40.8345799],"type":"Point"},"name":"Papa John'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb058e61"},"location":{"coordinates":[-74.011352,40.633347],"type":"Point"},"name":"Sisters Gourmet Paradise"} +,{"_id":{"$oid":"55cba2476c522cafdb058e62"},"location":{"coordinates":[-73.81875,40.749885],"type":"Point"},"name":"Teiling"} +,{"_id":{"$oid":"55cba2476c522cafdb058e63"},"location":{"coordinates":[-73.98796700000001,40.764263],"type":"Point"},"name":"Hummus Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb058e64"},"location":{"coordinates":[-73.970176,40.795073],"type":"Point"},"name":"La Ozen Asian Fusion Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb058e65"},"location":{"coordinates":[-73.8086957,40.7060886],"type":"Point"},"name":"New King Garden Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058e66"},"location":{"coordinates":[-73.99051779999999,40.7539953],"type":"Point"},"name":"District Tap House"} +,{"_id":{"$oid":"55cba2476c522cafdb058e67"},"location":{"coordinates":[-73.991593,40.747545],"type":"Point"},"name":"Hanamizuki"} +,{"_id":{"$oid":"55cba2476c522cafdb058e68"},"location":{"coordinates":[-73.99025859999999,40.7622242],"type":"Point"},"name":"Abace Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb058e69"},"location":{"coordinates":[-73.9657703,40.7622135],"type":"Point"},"name":"Texas De Brazil Churrascaria"} +,{"_id":{"$oid":"55cba2476c522cafdb058e6a"},"location":{"coordinates":[-73.98483399999999,40.671372],"type":"Point"},"name":"Corner Of Vermont"} +,{"_id":{"$oid":"55cba2476c522cafdb058e6b"},"location":{"coordinates":[-73.98452390000001,40.7401539],"type":"Point"},"name":"Di Di Dumpling"} +,{"_id":{"$oid":"55cba2476c522cafdb058e6c"},"location":{"coordinates":[-73.9879701,40.7316812],"type":"Point"},"name":"Just Sweet"} +,{"_id":{"$oid":"55cba2476c522cafdb058e6d"},"location":{"coordinates":[-73.9102413,40.83054449999999],"type":"Point"},"name":"El Molina Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058e6e"},"location":{"coordinates":[-73.9882253,40.7639435],"type":"Point"},"name":"Vynl"} +,{"_id":{"$oid":"55cba2476c522cafdb058e6f"},"location":{"coordinates":[-73.79642199999999,40.707139],"type":"Point"},"name":"Sarkura Japan"} +,{"_id":{"$oid":"55cba2476c522cafdb058e70"},"location":{"coordinates":[-73.850359,40.903902],"type":"Point"},"name":"Little Caesars Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb058e71"},"location":{"coordinates":[-73.9885098,40.7548523],"type":"Point"},"name":"Kati Junction Indian Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb058e72"},"location":{"coordinates":[-73.98825699999999,40.6879459],"type":"Point"},"name":"French Louie"} +,{"_id":{"$oid":"55cba2476c522cafdb058e73"},"location":{"coordinates":[-73.850757,40.679628],"type":"Point"},"name":"Juicy Bar \u0026 Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb058e74"},"location":{"coordinates":[-74.0047546,40.7227053],"type":"Point"},"name":"David Burke Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb058e75"},"location":{"coordinates":[-74.0062401,40.7397546],"type":"Point"},"name":"2 Bros Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb058e76"},"location":{"coordinates":[-73.9655702,40.8055415],"type":"Point"},"name":"Dig Inn Seasonal Market"} +,{"_id":{"$oid":"55cba2476c522cafdb058e77"},"location":{"coordinates":[-73.84522299999999,40.7194922],"type":"Point"},"name":"Forest Hill Station House"} +,{"_id":{"$oid":"55cba2476c522cafdb058e78"},"location":{"coordinates":[-73.8877548,40.854962],"type":"Point"},"name":"Egidio Pastry"} +,{"_id":{"$oid":"55cba2476c522cafdb058e79"},"location":{"coordinates":[-74.0015976,40.7280492],"type":"Point"},"name":"Ariana Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058e7a"},"location":{"coordinates":[-73.994749,40.73034],"type":"Point"},"name":"White Oak Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb058e7b"},"location":{"coordinates":[-73.9279056,40.704916],"type":"Point"},"name":"Bunna Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058e7c"},"location":{"coordinates":[-73.8017792,40.7624571],"type":"Point"},"name":"Lung Hwa"} +,{"_id":{"$oid":"55cba2476c522cafdb058e7d"},"location":{"coordinates":[-74.0014126,40.7291023],"type":"Point"},"name":"Mccoy"} +,{"_id":{"$oid":"55cba2476c522cafdb058e7e"},"location":{"coordinates":[-73.7618478,40.6918067],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb058e7f"},"location":{"coordinates":[-73.86750529999999,40.8216808],"type":"Point"},"name":"Ms Caridad Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058e80"},"location":{"coordinates":[-74.0029589,40.7193704],"type":"Point"},"name":"Go Catering"} +,{"_id":{"$oid":"55cba2476c522cafdb058e81"},"location":{"coordinates":[-73.996922,40.7207191],"type":"Point"},"name":"Happy Bones Nyc"} +,{"_id":{"$oid":"55cba2476c522cafdb058e82"},"location":{"coordinates":[-73.90444049999999,40.863133],"type":"Point"},"name":"El Nuevo Jb Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb058e83"},"location":{"coordinates":[-73.8856624,40.8789221],"type":"Point"},"name":"Moshulo Golf Course"} +,{"_id":{"$oid":"55cba2476c522cafdb058e84"},"location":{"coordinates":[-73.922883,40.740355],"type":"Point"},"name":"Bbq Hut"} +,{"_id":{"$oid":"55cba2476c522cafdb058e85"},"location":{"coordinates":[-73.981957,40.763589],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb058e86"},"location":{"coordinates":[-73.99128499999999,40.6858696],"type":"Point"},"name":"Cibao"} +,{"_id":{"$oid":"55cba2476c522cafdb058e87"},"location":{"coordinates":[-73.8431291,40.8787878],"type":"Point"},"name":"African Last Stop"} +,{"_id":{"$oid":"55cba2476c522cafdb058e88"},"location":{"coordinates":[-73.9726946,40.754103],"type":"Point"},"name":"Blackwells"} +,{"_id":{"$oid":"55cba2476c522cafdb058e89"},"location":{"coordinates":[-73.983431,40.765497],"type":"Point"},"name":"Reviver"} +,{"_id":{"$oid":"55cba2476c522cafdb058e8a"},"location":{"coordinates":[-73.9255283,40.7587366],"type":"Point"},"name":"Locale Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058e8b"},"location":{"coordinates":[-73.86950999999999,40.6728809],"type":"Point"},"name":"Rio Grand"} +,{"_id":{"$oid":"55cba2476c522cafdb058e8c"},"location":{"coordinates":[-73.98846999999999,40.722071],"type":"Point"},"name":"Claw Daddy'S"} +,{"_id":{"$oid":"55cba2476c522cafdb058e8d"},"location":{"coordinates":[-73.899936,40.7311676],"type":"Point"},"name":"George'S Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb058e8e"},"location":{"coordinates":[-73.9335936,40.66930610000001],"type":"Point"},"name":"Fefita'S"} +,{"_id":{"$oid":"55cba2476c522cafdb058e8f"},"location":{"coordinates":[-73.95018499999999,40.77945],"type":"Point"},"name":"Carino On Second"} +,{"_id":{"$oid":"55cba2476c522cafdb058e90"},"location":{"coordinates":[-74.00489689999999,40.7419343],"type":"Point"},"name":"Tuck Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb058e91"},"location":{"coordinates":[-73.9782714,40.7554338],"type":"Point"},"name":"Hale \u0026 Hearty"} +,{"_id":{"$oid":"55cba2476c522cafdb058e92"},"location":{"coordinates":[-73.9836641,40.74429870000001],"type":"Point"},"name":"Hale \u0026 Hearty"} +,{"_id":{"$oid":"55cba2476c522cafdb058e93"},"location":{"coordinates":[-73.91824299999999,40.698991],"type":"Point"},"name":"La Isla"} +,{"_id":{"$oid":"55cba2476c522cafdb058e94"},"location":{"coordinates":[-74.081006,40.62441],"type":"Point"},"name":"New Chieng Gardens Inc"} +,{"_id":{"$oid":"55cba2476c522cafdb058e95"},"location":{"coordinates":[-74.00489689999999,40.7419343],"type":"Point"},"name":"L'Aret Del Gelato"} +,{"_id":{"$oid":"55cba2476c522cafdb058e96"},"location":{"coordinates":[-74.00840649999999,40.7096829],"type":"Point"},"name":"D Elici"} +,{"_id":{"$oid":"55cba2476c522cafdb058e97"},"location":{"coordinates":[-73.9776194,40.7614151],"type":"Point"},"name":"Staff Caff"} +,{"_id":{"$oid":"55cba2476c522cafdb058e98"},"location":{"coordinates":[-73.9145207,40.7638531],"type":"Point"},"name":"Queens Comfort Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058e99"},"location":{"coordinates":[-73.9776194,40.7614151],"type":"Point"},"name":"Cafe 2"} +,{"_id":{"$oid":"55cba2476c522cafdb058e9a"},"location":{"coordinates":[-73.9776194,40.7614151],"type":"Point"},"name":"Terrace 5"} +,{"_id":{"$oid":"55cba2476c522cafdb058e9b"},"location":{"coordinates":[-73.9323934,40.8516574],"type":"Point"},"name":"Pinto Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb058e9c"},"location":{"coordinates":[-73.9811976,40.7439891],"type":"Point"},"name":"Trattoria Belverde"} +,{"_id":{"$oid":"55cba2476c522cafdb058e9d"},"location":{"coordinates":[-74.1317554,40.6267086],"type":"Point"},"name":"New Gyro King"} +,{"_id":{"$oid":"55cba2476c522cafdb058e9e"},"location":{"coordinates":[-73.9925851,40.746678],"type":"Point"},"name":"Alt - A Little Taste"} +,{"_id":{"$oid":"55cba2476c522cafdb058e9f"},"location":{"coordinates":[-74.0270088,40.6339997],"type":"Point"},"name":"The Ridge Bar And Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb058ea0"},"location":{"coordinates":[-74.023096,40.627718],"type":"Point"},"name":"Jericho Restaurant Corp"} +,{"_id":{"$oid":"55cba2476c522cafdb058ea1"},"location":{"coordinates":[-73.9487429,40.789283],"type":"Point"},"name":"Absolute Thai Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058ea2"},"location":{"coordinates":[-73.94015,40.692248],"type":"Point"},"name":"Good Friend Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058ea3"},"location":{"coordinates":[-73.8742886,40.7582099],"type":"Point"},"name":"Los Taquitos Del Tio"} +,{"_id":{"$oid":"55cba2476c522cafdb058ea4"},"location":{"coordinates":[-74.102713,40.63068200000001],"type":"Point"},"name":"Better Gourmet Health Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb058ea5"},"location":{"coordinates":[-73.9836569,40.671932],"type":"Point"},"name":"L'Albero Dei Gelati"} +,{"_id":{"$oid":"55cba2476c522cafdb058ea6"},"location":{"coordinates":[-73.9788221,40.61251499999999],"type":"Point"},"name":"Mamma Mia'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb058ea7"},"location":{"coordinates":[-74.00045639999999,40.61250099999999],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb058ea8"},"location":{"coordinates":[-73.9257715,40.703457],"type":"Point"},"name":"Sushi \u0026 Noodles"} +,{"_id":{"$oid":"55cba2476c522cafdb058ea9"},"location":{"coordinates":[-73.8263839,40.7601344],"type":"Point"},"name":"Teaus"} +,{"_id":{"$oid":"55cba2476c522cafdb058eaa"},"location":{"coordinates":[-73.963634,40.67830499999999],"type":"Point"},"name":"Almadira"} +,{"_id":{"$oid":"55cba2476c522cafdb058eab"},"location":{"coordinates":[-73.964839,40.716096],"type":"Point"},"name":"Croxleys The Abbey"} +,{"_id":{"$oid":"55cba2476c522cafdb058eac"},"location":{"coordinates":[-73.914861,40.814618],"type":"Point"},"name":"149 Steam Fish Corp."} +,{"_id":{"$oid":"55cba2476c522cafdb058ead"},"location":{"coordinates":[-73.918476,40.81892879999999],"type":"Point"},"name":"Courtland Deli \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058eae"},"location":{"coordinates":[-73.918549,40.687213],"type":"Point"},"name":"Kalina Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058eaf"},"location":{"coordinates":[-73.9924307,40.7145879],"type":"Point"},"name":"Happy Express Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058eb0"},"location":{"coordinates":[-73.89622279999999,40.67197549999999],"type":"Point"},"name":"Los Primos Delicatessen Corp."} +,{"_id":{"$oid":"55cba2476c522cafdb058eb1"},"location":{"coordinates":[-73.9204901,40.6528908],"type":"Point"},"name":"A-Town Buffalo Wings"} +,{"_id":{"$oid":"55cba2476c522cafdb058eb2"},"location":{"coordinates":[-73.9584584,40.7168699],"type":"Point"},"name":"Ako Japanese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058eb3"},"location":{"coordinates":[-74.014955,40.6403505],"type":"Point"},"name":"Tacos Tijuana"} +,{"_id":{"$oid":"55cba2476c522cafdb058eb4"},"location":{"coordinates":[-73.97885529999999,40.7419056],"type":"Point"},"name":"Oishi Baysushi Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058eb5"},"location":{"coordinates":[-73.802013,40.708196],"type":"Point"},"name":"Spicy Lanka"} +,{"_id":{"$oid":"55cba2476c522cafdb058eb6"},"location":{"coordinates":[-73.9326565,40.74459179999999],"type":"Point"},"name":"Seattle Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058eb7"},"location":{"coordinates":[-73.96759879999999,40.7922086],"type":"Point"},"name":"Hunan Park"} +,{"_id":{"$oid":"55cba2476c522cafdb058eb8"},"location":{"coordinates":[-73.9284447,40.8566876],"type":"Point"},"name":"Nutri Global"} +,{"_id":{"$oid":"55cba2476c522cafdb058eb9"},"location":{"coordinates":[-73.994252,40.749896],"type":"Point"},"name":"Garden Kebab House"} +,{"_id":{"$oid":"55cba2476c522cafdb058eba"},"location":{"coordinates":[-73.9942662,40.7494549],"type":"Point"},"name":"Slake"} +,{"_id":{"$oid":"55cba2476c522cafdb058ebb"},"location":{"coordinates":[-73.97305,40.6930767],"type":"Point"},"name":"Humo Smokehouse"} +,{"_id":{"$oid":"55cba2476c522cafdb058ebc"},"location":{"coordinates":[-73.762753,40.691422],"type":"Point"},"name":"Triple C Restaurant And Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb058ebd"},"location":{"coordinates":[-73.950705,40.6872929],"type":"Point"},"name":"Jing Wok Kitchen Inc"} +,{"_id":{"$oid":"55cba2476c522cafdb058ebe"},"location":{"coordinates":[-73.8486916,40.906462],"type":"Point"},"name":"La Roose Catering Hall Inc"} +,{"_id":{"$oid":"55cba2476c522cafdb058ebf"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"Dylan'S Candy Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb058ec0"},"location":{"coordinates":[-73.9849687,40.7628271],"type":"Point"},"name":"Nippori Japanese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058ec1"},"location":{"coordinates":[-73.85565,40.8556556],"type":"Point"},"name":"Williamsbridge Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb058ec2"},"location":{"coordinates":[-73.990144,40.760468],"type":"Point"},"name":"Ha ! Comedy Club"} +,{"_id":{"$oid":"55cba2476c522cafdb058ec3"},"location":{"coordinates":[-73.9258646,40.7592519],"type":"Point"},"name":"Maizal Rest."} +,{"_id":{"$oid":"55cba2476c522cafdb058ec4"},"location":{"coordinates":[-73.9568902,40.6742122],"type":"Point"},"name":"Silver Rice"} +,{"_id":{"$oid":"55cba2476c522cafdb058ec5"},"location":{"coordinates":[-73.957954,40.6505443],"type":"Point"},"name":"Golden Krust"} +,{"_id":{"$oid":"55cba2476c522cafdb058ec6"},"location":{"coordinates":[-73.9158661,40.8691462],"type":"Point"},"name":"Cafe Tabaco \u0026 Ron"} +,{"_id":{"$oid":"55cba2476c522cafdb058ec7"},"location":{"coordinates":[-73.8615669,40.6920626],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb058ec8"},"location":{"coordinates":[-73.8308158,40.7756774],"type":"Point"},"name":"Press Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058ec9"},"location":{"coordinates":[-73.90739599999999,40.700152],"type":"Point"},"name":"Chen Brothers 888 Restaurant, Inc."} +,{"_id":{"$oid":"55cba2476c522cafdb058eca"},"location":{"coordinates":[-73.8910301,40.8269313],"type":"Point"},"name":"Chen'S Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb058ecb"},"location":{"coordinates":[-73.878193,40.74799],"type":"Point"},"name":"Tempo Libero Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb058ecc"},"location":{"coordinates":[-73.952388,40.636818],"type":"Point"},"name":"Grace Devine Pastry And Restaurant Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058ecd"},"location":{"coordinates":[-73.98759690000001,40.688267],"type":"Point"},"name":"Absolute Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb058ece"},"location":{"coordinates":[-73.90360299999999,40.8652206],"type":"Point"},"name":"Kennedy Chicken Sandwiches \u0026 Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb058ecf"},"location":{"coordinates":[-73.8556318,40.8926776],"type":"Point"},"name":"El Castillo Del Caribe"} +,{"_id":{"$oid":"55cba2476c522cafdb058ed0"},"location":{"coordinates":[-73.974245,40.6357565],"type":"Point"},"name":"No. 1 Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058ed1"},"location":{"coordinates":[-73.93633899999999,40.697299],"type":"Point"},"name":"China City Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058ed2"},"location":{"coordinates":[-73.915126,40.701467],"type":"Point"},"name":"Tu Segunda Casa"} +,{"_id":{"$oid":"55cba2476c522cafdb058ed3"},"location":{"coordinates":[-73.9688906,40.6783834],"type":"Point"},"name":"R\u0026D Foods"} +,{"_id":{"$oid":"55cba2476c522cafdb058ed4"},"location":{"coordinates":[-74.0310537,40.6242634],"type":"Point"},"name":"Luigi'S Pizza Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb058ed5"},"location":{"coordinates":[-73.9821545,40.74252509999999],"type":"Point"},"name":"Patal Asia Deli Grocery"} +,{"_id":{"$oid":"55cba2476c522cafdb058ed6"},"location":{"coordinates":[-73.8140368,40.7899367],"type":"Point"},"name":"Cherry Valley Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb058ed7"},"location":{"coordinates":[-73.9852733,40.7399789],"type":"Point"},"name":"Chock Full O'Nuts"} +,{"_id":{"$oid":"55cba2476c522cafdb058ed8"},"location":{"coordinates":[-74.00249769999999,40.7243951],"type":"Point"},"name":"Laduree Soho"} +,{"_id":{"$oid":"55cba2476c522cafdb058ed9"},"location":{"coordinates":[-73.9717191,40.7874247],"type":"Point"},"name":"Macaron Parlour"} +,{"_id":{"$oid":"55cba2476c522cafdb058eda"},"location":{"coordinates":[-73.98232,40.756047],"type":"Point"},"name":"Algonquin Hotel"} +,{"_id":{"$oid":"55cba2476c522cafdb058edb"},"location":{"coordinates":[-73.9060849,40.7018435],"type":"Point"},"name":"New Mexico Place Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb058edc"},"location":{"coordinates":[-73.8514395,40.6939419],"type":"Point"},"name":"Crown Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb058edd"},"location":{"coordinates":[-73.975354,40.78665],"type":"Point"},"name":"E'S Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb058ede"},"location":{"coordinates":[-73.9924872,40.7176172],"type":"Point"},"name":"99 Favor Taste"} +,{"_id":{"$oid":"55cba2476c522cafdb058edf"},"location":{"coordinates":[-74.002409,40.731121],"type":"Point"},"name":"Aperitivo Di Palma"} +,{"_id":{"$oid":"55cba2476c522cafdb058ee0"},"location":{"coordinates":[-73.9103435,40.6559664],"type":"Point"},"name":"Tai Lai Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb058ee1"},"location":{"coordinates":[-73.8492136,40.5781415],"type":"Point"},"name":"Breezydogs Shakes And More"} +,{"_id":{"$oid":"55cba2476c522cafdb058ee2"},"location":{"coordinates":[-74.00807,40.637651],"type":"Point"},"name":"Eastern Ocean One"} +,{"_id":{"$oid":"55cba2476c522cafdb058ee3"},"location":{"coordinates":[-73.9632984,40.5776268],"type":"Point"},"name":"At Your Mother-In-Law"} +,{"_id":{"$oid":"55cba2476c522cafdb058ee4"},"location":{"coordinates":[-73.8848269,40.7645407],"type":"Point"},"name":"Little Caesars Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb058ee5"},"location":{"coordinates":[-73.9257828,40.7624153],"type":"Point"},"name":"Lots O Bagels"} +,{"_id":{"$oid":"55cba2476c522cafdb058ee6"},"location":{"coordinates":[-73.986249,40.726852],"type":"Point"},"name":"Huertas"} +,{"_id":{"$oid":"55cba2476c522cafdb058ee7"},"location":{"coordinates":[-73.883973,40.746361],"type":"Point"},"name":"Sabor Ecuatoriano Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb058ee8"},"location":{"coordinates":[-73.9607293,40.7184628],"type":"Point"},"name":"The Gorbals"} +,{"_id":{"$oid":"55cba2476c522cafdb058ee9"},"location":{"coordinates":[-73.9633855,40.6750616],"type":"Point"},"name":"Little Miss Muffin 'N' Her Stuffin"} +,{"_id":{"$oid":"55cba2476c522cafdb058eea"},"location":{"coordinates":[-73.8905967,40.7461859],"type":"Point"},"name":"Chinese Food/Sushi Elm"} +,{"_id":{"$oid":"55cba2476c522cafdb058eeb"},"location":{"coordinates":[-73.83535789999999,40.7569735],"type":"Point"},"name":"Coco Tea"} +,{"_id":{"$oid":"55cba2476c522cafdb058eec"},"location":{"coordinates":[-73.98519780000001,40.7221462],"type":"Point"},"name":"Chinatown Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058eed"},"location":{"coordinates":[-73.9749775,40.75801999999999],"type":"Point"},"name":"Villard Michel Richard"} +,{"_id":{"$oid":"55cba2476c522cafdb058eee"},"location":{"coordinates":[-73.919116,40.8642596],"type":"Point"},"name":"La Lomita Mexican Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb058eef"},"location":{"coordinates":[-73.98180719999999,40.5767135],"type":"Point"},"name":"Turkish Kebab House"} +,{"_id":{"$oid":"55cba2476c522cafdb058ef0"},"location":{"coordinates":[-73.9534173,40.7821886],"type":"Point"},"name":"Corado Bread \u0026 Pastry"} +,{"_id":{"$oid":"55cba2476c522cafdb058ef1"},"location":{"coordinates":[-74.0027429,40.5998679],"type":"Point"},"name":"Eastern Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058ef2"},"location":{"coordinates":[-73.960475,40.67292399999999],"type":"Point"},"name":"The Classon"} +,{"_id":{"$oid":"55cba2476c522cafdb058ef3"},"location":{"coordinates":[-73.87259259999999,40.7571129],"type":"Point"},"name":"Reys Pizzeria \u0026 Rerstaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058ef4"},"location":{"coordinates":[-73.9278282,40.7633503],"type":"Point"},"name":"Oyster Cafe Of New York"} +,{"_id":{"$oid":"55cba2476c522cafdb058ef5"},"location":{"coordinates":[-73.98286829999999,40.777877],"type":"Point"},"name":"Paris Baguette Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058ef6"},"location":{"coordinates":[-73.8855612,40.86597460000001],"type":"Point"},"name":"Rafaelina Restaurant \u0026 Bar Corp"} +,{"_id":{"$oid":"55cba2476c522cafdb058ef7"},"location":{"coordinates":[-82.384467,38.427248],"type":"Point"},"name":"On Off Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb058ef8"},"location":{"coordinates":[-73.8890005,40.6571683],"type":"Point"},"name":"Five Star Fish \u0026 Chips"} +,{"_id":{"$oid":"55cba2476c522cafdb058ef9"},"location":{"coordinates":[-73.96946400000002,40.64277000000001],"type":"Point"},"name":"J4 Hookah Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb058efa"},"location":{"coordinates":[-73.89738,40.7005788],"type":"Point"},"name":"Eat Mubarak"} +,{"_id":{"$oid":"55cba2476c522cafdb058efb"},"location":{"coordinates":[-73.9912384,40.7547659],"type":"Point"},"name":"Grace Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058efc"},"location":{"coordinates":[-73.950092,40.786532],"type":"Point"},"name":"Taco Bell"} +,{"_id":{"$oid":"55cba2476c522cafdb058efd"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"Jfk Fuel Bar B27"} +,{"_id":{"$oid":"55cba2476c522cafdb058efe"},"location":{"coordinates":[-74.0261099,40.6361345],"type":"Point"},"name":"Pancho'S"} +,{"_id":{"$oid":"55cba2476c522cafdb058eff"},"location":{"coordinates":[-73.84850879999999,40.5814119],"type":"Point"},"name":"Ludwig'S At The Yacht Club"} +,{"_id":{"$oid":"55cba2476c522cafdb058f00"},"location":{"coordinates":[-73.95815429999999,40.7174732],"type":"Point"},"name":"Dziupla"} +,{"_id":{"$oid":"55cba2476c522cafdb058f01"},"location":{"coordinates":[-73.98662569999999,40.6683651],"type":"Point"},"name":"The Bagel Factory"} +,{"_id":{"$oid":"55cba2476c522cafdb058f02"},"location":{"coordinates":[-73.98624,40.718292],"type":"Point"},"name":"Retro Grill \u0026 Bar (Holiday Inn)"} +,{"_id":{"$oid":"55cba2476c522cafdb058f03"},"location":{"coordinates":[-74.0823909,40.598457],"type":"Point"},"name":"Sahara X-Press Ny"} +,{"_id":{"$oid":"55cba2476c522cafdb058f04"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"Camden Food Company"} +,{"_id":{"$oid":"55cba2476c522cafdb058f05"},"location":{"coordinates":[-73.803741,40.7606069],"type":"Point"},"name":"Pizza Pasta"} +,{"_id":{"$oid":"55cba2476c522cafdb058f06"},"location":{"coordinates":[-73.82438499999999,40.685885],"type":"Point"},"name":"St John'S Express"} +,{"_id":{"$oid":"55cba2476c522cafdb058f07"},"location":{"coordinates":[-73.9631421,40.6824443],"type":"Point"},"name":"Bed-Stuy Fish Fry"} +,{"_id":{"$oid":"55cba2476c522cafdb058f08"},"location":{"coordinates":[-73.8553564,40.8108711],"type":"Point"},"name":"Maravilla'S Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb058f09"},"location":{"coordinates":[-74.1303427,40.6310112],"type":"Point"},"name":"Js Luncheonette \u0026 Ice Cream Parlor"} +,{"_id":{"$oid":"55cba2476c522cafdb058f0a"},"location":{"coordinates":[-73.99135199999999,40.670658],"type":"Point"},"name":"Table 87"} +,{"_id":{"$oid":"55cba2476c522cafdb058f0b"},"location":{"coordinates":[-73.75790769999999,40.6656218],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb058f0c"},"location":{"coordinates":[-74.0178842,40.6410103],"type":"Point"},"name":"La Parada Ii Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058f0d"},"location":{"coordinates":[-73.9745417,40.7609322],"type":"Point"},"name":"Alfredo 100"} +,{"_id":{"$oid":"55cba2476c522cafdb058f0e"},"location":{"coordinates":[-74.109554,40.634988],"type":"Point"},"name":"Nurnberger"} +,{"_id":{"$oid":"55cba2476c522cafdb058f0f"},"location":{"coordinates":[-73.9791627,40.7765043],"type":"Point"},"name":"Juice Press 15"} +,{"_id":{"$oid":"55cba2476c522cafdb058f10"},"location":{"coordinates":[-73.95611699999999,40.7848393],"type":"Point"},"name":"Juice Press"} +,{"_id":{"$oid":"55cba2476c522cafdb058f11"},"location":{"coordinates":[-73.9938279,40.68134],"type":"Point"},"name":"Bar San Miguel"} +,{"_id":{"$oid":"55cba2476c522cafdb058f12"},"location":{"coordinates":[-73.9840944,40.7264293],"type":"Point"},"name":"Oaxaca Taquerita"} +,{"_id":{"$oid":"55cba2476c522cafdb058f13"},"location":{"coordinates":[-73.95476699999999,40.68634],"type":"Point"},"name":"Oaxaca Taqueria"} +,{"_id":{"$oid":"55cba2476c522cafdb058f14"},"location":{"coordinates":[-73.987787,40.723689],"type":"Point"},"name":"Spiegel"} +,{"_id":{"$oid":"55cba2476c522cafdb058f15"},"location":{"coordinates":[-74.19097219999999,40.5625848],"type":"Point"},"name":"Dugout Pub West"} +,{"_id":{"$oid":"55cba2476c522cafdb058f16"},"location":{"coordinates":[-74.00487389999999,40.6083167],"type":"Point"},"name":"Fresh Tortillas Taco"} +,{"_id":{"$oid":"55cba2476c522cafdb058f17"},"location":{"coordinates":[-73.9916582,40.7644673],"type":"Point"},"name":"Fat Sal'S"} +,{"_id":{"$oid":"55cba2476c522cafdb058f18"},"location":{"coordinates":[-73.977822,40.68603],"type":"Point"},"name":"Bam Fisher"} +,{"_id":{"$oid":"55cba2476c522cafdb058f19"},"location":{"coordinates":[-73.9187488,40.7436501],"type":"Point"},"name":"Empire Szechuan Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb058f1a"},"location":{"coordinates":[-73.9154543,40.7638724],"type":"Point"},"name":"Trakia Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058f1b"},"location":{"coordinates":[-73.966376,40.632288],"type":"Point"},"name":"Gyro Hut"} +,{"_id":{"$oid":"55cba2476c522cafdb058f1c"},"location":{"coordinates":[-73.856578,40.74360770000001],"type":"Point"},"name":"Paraiso Columbiano Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058f1d"},"location":{"coordinates":[-73.9884244,40.6663428],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb058f1e"},"location":{"coordinates":[-73.8774009,40.7129468],"type":"Point"},"name":"Rico'S Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb058f1f"},"location":{"coordinates":[-73.97661699999999,40.762948],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb058f20"},"location":{"coordinates":[-73.93757889999999,40.8265405],"type":"Point"},"name":"Harlem Juice Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb058f21"},"location":{"coordinates":[-73.98763199999999,40.716492],"type":"Point"},"name":"Wang'S Great Wall"} +,{"_id":{"$oid":"55cba2476c522cafdb058f22"},"location":{"coordinates":[-73.906425,40.669314],"type":"Point"},"name":"401 Lucky Star Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058f23"},"location":{"coordinates":[-73.8924874,40.7488793],"type":"Point"},"name":"Abdullah Sweets And Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058f24"},"location":{"coordinates":[-73.9539154,40.69981019999999],"type":"Point"},"name":"Mozzarella"} +,{"_id":{"$oid":"55cba2476c522cafdb058f25"},"location":{"coordinates":[-73.740213,40.705262],"type":"Point"},"name":"Szechuan Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb058f26"},"location":{"coordinates":[-73.8903637,40.8632432],"type":"Point"},"name":"Decatur'S Steakhouse"} +,{"_id":{"$oid":"55cba2476c522cafdb058f27"},"location":{"coordinates":[-73.8859958,40.7650962],"type":"Point"},"name":"El Sabrozon"} +,{"_id":{"$oid":"55cba2476c522cafdb058f28"},"location":{"coordinates":[-73.90318400000001,40.650258],"type":"Point"},"name":"Mikrom Deli Restaurant Corp"} +,{"_id":{"$oid":"55cba2476c522cafdb058f29"},"location":{"coordinates":[-73.9852406,40.7526342],"type":"Point"},"name":"Sushi And Deli Box"} +,{"_id":{"$oid":"55cba2476c522cafdb058f2a"},"location":{"coordinates":[-74.1942926,40.5892092],"type":"Point"},"name":"Big E'S Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb058f2b"},"location":{"coordinates":[-73.9757133,40.7651683],"type":"Point"},"name":"Villagio On The Park"} +,{"_id":{"$oid":"55cba2476c522cafdb058f2c"},"location":{"coordinates":[-73.982035,40.576516],"type":"Point"},"name":"Island Maple Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb058f2d"},"location":{"coordinates":[-73.9755799,40.63180699999999],"type":"Point"},"name":"Emir Palace"} +,{"_id":{"$oid":"55cba2476c522cafdb058f2e"},"location":{"coordinates":[-73.917861,40.75233679999999],"type":"Point"},"name":"Singas Famous Pizza \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb058f2f"},"location":{"coordinates":[-73.863863,40.730218],"type":"Point"},"name":"Simple Veggie Cuisine Inc"} +,{"_id":{"$oid":"55cba2476c522cafdb058f30"},"location":{"coordinates":[-74.011686,40.636538],"type":"Point"},"name":"Fu Shen Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058f31"},"location":{"coordinates":[-73.99277760000001,40.7391482],"type":"Point"},"name":"The Gander Bar Room And Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058f32"},"location":{"coordinates":[-73.95186799999999,40.777205],"type":"Point"},"name":"Five Mile Stone"} +,{"_id":{"$oid":"55cba2476c522cafdb058f33"},"location":{"coordinates":[-73.778832,40.6659076],"type":"Point"},"name":"Divine Bickles Restaurant."} +,{"_id":{"$oid":"55cba2476c522cafdb058f34"},"location":{"coordinates":[-73.9879484,40.7219949],"type":"Point"},"name":"French Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb058f35"},"location":{"coordinates":[-73.959884,40.657034],"type":"Point"},"name":"Blessings Herbs \u0026 Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb058f36"},"location":{"coordinates":[-73.8180246,40.7091015],"type":"Point"},"name":"Chui'S Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb058f37"},"location":{"coordinates":[-73.988736,40.720367],"type":"Point"},"name":"Teany"} +,{"_id":{"$oid":"55cba2476c522cafdb058f38"},"location":{"coordinates":[-73.9517539,40.783115],"type":"Point"},"name":"Bar Roma"} +,{"_id":{"$oid":"55cba2476c522cafdb058f39"},"location":{"coordinates":[-73.85017789999999,40.8283095],"type":"Point"},"name":"Gracie'S Corner Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb058f3a"},"location":{"coordinates":[-73.8374656,40.6514309],"type":"Point"},"name":"Frenasia"} +,{"_id":{"$oid":"55cba2476c522cafdb058f3b"},"location":{"coordinates":[-73.9468934,40.6321153],"type":"Point"},"name":"Peking Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058f3c"},"location":{"coordinates":[-73.9703359,40.7641388],"type":"Point"},"name":"Philippe Nyc I Llc"} +,{"_id":{"$oid":"55cba2476c522cafdb058f3d"},"location":{"coordinates":[-73.9805362,40.78359349999999],"type":"Point"},"name":"Fika"} +,{"_id":{"$oid":"55cba2476c522cafdb058f3e"},"location":{"coordinates":[-74.0764782,40.6364656],"type":"Point"},"name":"Bay House Rice \u0026 Udon Station"} +,{"_id":{"$oid":"55cba2476c522cafdb058f3f"},"location":{"coordinates":[-73.89792010000001,40.8513853],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb058f40"},"location":{"coordinates":[-73.8347252,40.6924016],"type":"Point"},"name":"Moon Light Crill Rest."} +,{"_id":{"$oid":"55cba2476c522cafdb058f41"},"location":{"coordinates":[-73.910681,40.668238],"type":"Point"},"name":"Manaa Soulfood Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058f42"},"location":{"coordinates":[-73.8504243,40.9037271],"type":"Point"},"name":"241St Cafe Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058f43"},"location":{"coordinates":[-73.9826202,40.7522778],"type":"Point"},"name":"Maison Kayser"} +,{"_id":{"$oid":"55cba2476c522cafdb058f44"},"location":{"coordinates":[-73.9998011,40.7286329],"type":"Point"},"name":"Carroll Place"} +,{"_id":{"$oid":"55cba2476c522cafdb058f45"},"location":{"coordinates":[-73.8236754,40.8283278],"type":"Point"},"name":"Frank And Joe'S Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb058f46"},"location":{"coordinates":[-74.0014392,40.6568365],"type":"Point"},"name":"Slice Of Brooklyn Inc."} +,{"_id":{"$oid":"55cba2476c522cafdb058f47"},"location":{"coordinates":[-73.9742121,40.7504532],"type":"Point"},"name":"Pax Wholesome Foods"} +,{"_id":{"$oid":"55cba2476c522cafdb058f48"},"location":{"coordinates":[-74.0126296,40.7060086],"type":"Point"},"name":"Gregory'S Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb058f49"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"Thirsty Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb058f4a"},"location":{"coordinates":[-73.915609,40.74238099999999],"type":"Point"},"name":"Tibetan Dumpling Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058f4b"},"location":{"coordinates":[-73.8467041,40.6800595],"type":"Point"},"name":"New Hing Long Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058f4c"},"location":{"coordinates":[-73.9918124,40.7256464],"type":"Point"},"name":"Bar Primi"} +,{"_id":{"$oid":"55cba2476c522cafdb058f4d"},"location":{"coordinates":[-73.9505293,40.5929105],"type":"Point"},"name":"Le Bouchon"} +,{"_id":{"$oid":"55cba2476c522cafdb058f4e"},"location":{"coordinates":[-73.891843,40.856394],"type":"Point"},"name":"Tina Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058f4f"},"location":{"coordinates":[-73.98590999999999,40.718772],"type":"Point"},"name":"Antibes Bistro"} +,{"_id":{"$oid":"55cba2476c522cafdb058f50"},"location":{"coordinates":[-73.9738994,40.6474482],"type":"Point"},"name":"624 Kam Hai Chinese Food"} +,{"_id":{"$oid":"55cba2476c522cafdb058f51"},"location":{"coordinates":[-73.992251,40.717082],"type":"Point"},"name":"Fortune Star"} +,{"_id":{"$oid":"55cba2476c522cafdb058f52"},"location":{"coordinates":[-73.9927663,40.6831133],"type":"Point"},"name":"Bombay Dream"} +,{"_id":{"$oid":"55cba2476c522cafdb058f53"},"location":{"coordinates":[-73.9868212,40.6397244],"type":"Point"},"name":"The Loft"} +,{"_id":{"$oid":"55cba2476c522cafdb058f54"},"location":{"coordinates":[-73.95219999999999,40.784547],"type":"Point"},"name":"Bonjour Crepes \u0026 Wine"} +,{"_id":{"$oid":"55cba2476c522cafdb058f55"},"location":{"coordinates":[-73.87087509999999,40.7488489],"type":"Point"},"name":"Martiniello'S Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb058f56"},"location":{"coordinates":[-73.95706799999999,40.725131],"type":"Point"},"name":"Dirck The Norseman"} +,{"_id":{"$oid":"55cba2476c522cafdb058f57"},"location":{"coordinates":[-73.8452349,40.6800213],"type":"Point"},"name":"La Bonanza Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb058f58"},"location":{"coordinates":[-73.968935,40.647331],"type":"Point"},"name":"Nine Chains"} +,{"_id":{"$oid":"55cba2476c522cafdb058f59"},"location":{"coordinates":[-73.9706693,40.6896807],"type":"Point"},"name":"Colonia Verde"} +,{"_id":{"$oid":"55cba2476c522cafdb058f5a"},"location":{"coordinates":[-73.9502091,40.6728416],"type":"Point"},"name":"Tinto"} +,{"_id":{"$oid":"55cba2476c522cafdb058f5b"},"location":{"coordinates":[-73.9248233,40.8621623],"type":"Point"},"name":"Rico Chimi"} +,{"_id":{"$oid":"55cba2476c522cafdb058f5c"},"location":{"coordinates":[-73.9882828,40.7649732],"type":"Point"},"name":"Co Ba 53"} +,{"_id":{"$oid":"55cba2476c522cafdb058f5d"},"location":{"coordinates":[-73.9052063,40.8730098],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb058f5e"},"location":{"coordinates":[-73.9511132,40.6633634],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb058f5f"},"location":{"coordinates":[-73.99541599999999,40.7213922],"type":"Point"},"name":"Balzem"} +,{"_id":{"$oid":"55cba2476c522cafdb058f60"},"location":{"coordinates":[-73.914041,40.700852],"type":"Point"},"name":"Old Stanley'S"} +,{"_id":{"$oid":"55cba2476c522cafdb058f61"},"location":{"coordinates":[-73.940528,40.625587],"type":"Point"},"name":"Casablanca Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb058f62"},"location":{"coordinates":[-73.7997187,40.7042655],"type":"Point"},"name":"Star Mountain Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb058f63"},"location":{"coordinates":[-73.9532382,40.7761792],"type":"Point"},"name":"Fat Sal'S"} +,{"_id":{"$oid":"55cba2476c522cafdb058f64"},"location":{"coordinates":[-73.9440286,40.7006576],"type":"Point"},"name":"Pollitos Mexican Bistro"} +,{"_id":{"$oid":"55cba2476c522cafdb058f65"},"location":{"coordinates":[-73.9467157,40.8270097],"type":"Point"},"name":"Min Golden Wok"} +,{"_id":{"$oid":"55cba2476c522cafdb058f66"},"location":{"coordinates":[-73.9906087,40.7381848],"type":"Point"},"name":"Foree Of Habit Llc"} +,{"_id":{"$oid":"55cba2476c522cafdb058f67"},"location":{"coordinates":[-73.9865659,40.7635164],"type":"Point"},"name":"Ippudo Westside"} +,{"_id":{"$oid":"55cba2476c522cafdb058f68"},"location":{"coordinates":[-73.7443931,40.7657739],"type":"Point"},"name":"Best Garden Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058f69"},"location":{"coordinates":[-74.00937689999999,40.636024],"type":"Point"},"name":"New Saigon"} +,{"_id":{"$oid":"55cba2476c522cafdb058f6a"},"location":{"coordinates":[-73.7872977,40.7271259],"type":"Point"},"name":"Seven Stars"} +,{"_id":{"$oid":"55cba2476c522cafdb058f6b"},"location":{"coordinates":[-73.9309799,40.6705371],"type":"Point"},"name":"South Island Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb058f6c"},"location":{"coordinates":[-73.98789959999999,40.7511902],"type":"Point"},"name":"Intelligentsia At Urban Outfitters"} +,{"_id":{"$oid":"55cba2476c522cafdb058f6d"},"location":{"coordinates":[-73.95618999999999,40.7752989],"type":"Point"},"name":"Francela"} +,{"_id":{"$oid":"55cba2476c522cafdb058f6e"},"location":{"coordinates":[-73.9788356,40.684373],"type":"Point"},"name":"Et Halal International Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058f6f"},"location":{"coordinates":[-73.9363505,40.67010760000001],"type":"Point"},"name":"Mandela Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058f70"},"location":{"coordinates":[-73.9534738,40.682984],"type":"Point"},"name":"Corner Grind"} +,{"_id":{"$oid":"55cba2476c522cafdb058f71"},"location":{"coordinates":[-73.8358525,40.7590497],"type":"Point"},"name":"Janchi Janchi"} +,{"_id":{"$oid":"55cba2476c522cafdb058f72"},"location":{"coordinates":[-73.9055786,40.8785284],"type":"Point"},"name":"Bjmf Inc"} +,{"_id":{"$oid":"55cba2476c522cafdb058f73"},"location":{"coordinates":[-73.9803398,40.7509133],"type":"Point"},"name":"Pret A Manger"} +,{"_id":{"$oid":"55cba2476c522cafdb058f74"},"location":{"coordinates":[-73.7727458,40.7595193],"type":"Point"},"name":"Yedang"} +,{"_id":{"$oid":"55cba2476c522cafdb058f75"},"location":{"coordinates":[-74.07692999999999,40.6297799],"type":"Point"},"name":"Bay Point Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb058f76"},"location":{"coordinates":[-73.9344923,40.8020632],"type":"Point"},"name":"New Dragon Of Ny Llc"} +,{"_id":{"$oid":"55cba2476c522cafdb058f77"},"location":{"coordinates":[-73.884489,40.85208069999999],"type":"Point"},"name":"New Dragon Sea Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058f78"},"location":{"coordinates":[-73.8312984,40.7009265],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb058f79"},"location":{"coordinates":[-73.96979879999999,40.7609415],"type":"Point"},"name":"Palace Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058f7a"},"location":{"coordinates":[-74.00179,40.72678399999999],"type":"Point"},"name":"Navy"} +,{"_id":{"$oid":"55cba2476c522cafdb058f7b"},"location":{"coordinates":[-73.8945116,40.7356105],"type":"Point"},"name":"Angelo'S Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb058f7c"},"location":{"coordinates":[-74.0075834,40.7145385],"type":"Point"},"name":"Racines Nyc Llc"} +,{"_id":{"$oid":"55cba2476c522cafdb058f7d"},"location":{"coordinates":[-73.9892472,40.75235079999999],"type":"Point"},"name":"Caffebene"} +,{"_id":{"$oid":"55cba2476c522cafdb058f7e"},"location":{"coordinates":[-73.8744705,40.7345009],"type":"Point"},"name":"Sariling Atin"} +,{"_id":{"$oid":"55cba2476c522cafdb058f7f"},"location":{"coordinates":[-73.9145444,40.7522892],"type":"Point"},"name":"New Grand Buffet"} +,{"_id":{"$oid":"55cba2476c522cafdb058f80"},"location":{"coordinates":[-73.9208984,40.66274569999999],"type":"Point"},"name":"Corwn Fried Chicken And Fish"} +,{"_id":{"$oid":"55cba2476c522cafdb058f81"},"location":{"coordinates":[-73.9752714,40.687038],"type":"Point"},"name":"Baba Cool"} +,{"_id":{"$oid":"55cba2476c522cafdb058f82"},"location":{"coordinates":[-73.9785323,40.7290935],"type":"Point"},"name":"The Roost"} +,{"_id":{"$oid":"55cba2476c522cafdb058f83"},"location":{"coordinates":[-73.9913527,40.7250333],"type":"Point"},"name":"Red Hook Lobster Pound"} +,{"_id":{"$oid":"55cba2476c522cafdb058f84"},"location":{"coordinates":[-73.9598623,40.7671868],"type":"Point"},"name":"Gem Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb058f85"},"location":{"coordinates":[-73.87890589999999,40.6677688],"type":"Point"},"name":"Elyne Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058f86"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"Europan Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058f87"},"location":{"coordinates":[-73.988129,40.592923],"type":"Point"},"name":"Memories Bar Shevroja"} +,{"_id":{"$oid":"55cba2476c522cafdb058f88"},"location":{"coordinates":[-73.98208199999999,40.7501052],"type":"Point"},"name":"Cafe China"} +,{"_id":{"$oid":"55cba2476c522cafdb058f89"},"location":{"coordinates":[-73.9185869,40.8682899],"type":"Point"},"name":"Cafe De Broadway"} +,{"_id":{"$oid":"55cba2476c522cafdb058f8a"},"location":{"coordinates":[-73.9450331,40.6888802],"type":"Point"},"name":"Dylan'S Brooklyn Cafe \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058f8b"},"location":{"coordinates":[-73.9201719,40.8611491],"type":"Point"},"name":"Eat @ Sherman Creek"} +,{"_id":{"$oid":"55cba2476c522cafdb058f8c"},"location":{"coordinates":[-74.00407609999999,40.723729],"type":"Point"},"name":"Chalk Point Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb058f8d"},"location":{"coordinates":[-74.010537,40.714826],"type":"Point"},"name":"Caviarteria"} +,{"_id":{"$oid":"55cba2476c522cafdb058f8e"},"location":{"coordinates":[-73.80041109999999,40.7600219],"type":"Point"},"name":"Flushing Banggane"} +,{"_id":{"$oid":"55cba2476c522cafdb058f8f"},"location":{"coordinates":[-73.933904,40.798536],"type":"Point"},"name":"La Cocina"} +,{"_id":{"$oid":"55cba2476c522cafdb058f90"},"location":{"coordinates":[-73.901252,40.644542],"type":"Point"},"name":"Mcdonalds"} +,{"_id":{"$oid":"55cba2476c522cafdb058f91"},"location":{"coordinates":[-73.9823795,40.674337],"type":"Point"},"name":"Calexico"} +,{"_id":{"$oid":"55cba2476c522cafdb058f92"},"location":{"coordinates":[-73.74248159999999,40.6770507],"type":"Point"},"name":"Yummy Taco"} +,{"_id":{"$oid":"55cba2476c522cafdb058f93"},"location":{"coordinates":[-73.8878679,40.7435879],"type":"Point"},"name":"Khao Kang"} +,{"_id":{"$oid":"55cba2476c522cafdb058f94"},"location":{"coordinates":[-73.91336969999999,40.7742674],"type":"Point"},"name":"Balkh Shish Kabab House"} +,{"_id":{"$oid":"55cba2476c522cafdb058f95"},"location":{"coordinates":[-73.82769449999999,40.7546369],"type":"Point"},"name":"Mini Tasty Sweety"} +,{"_id":{"$oid":"55cba2476c522cafdb058f96"},"location":{"coordinates":[-73.9742997,40.7619505],"type":"Point"},"name":"Armani Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058f97"},"location":{"coordinates":[-73.9907073,40.7606076],"type":"Point"},"name":"Yum Yum Bangkok"} +,{"_id":{"$oid":"55cba2476c522cafdb058f98"},"location":{"coordinates":[-73.9093809,40.6171757],"type":"Point"},"name":"Lima"} +,{"_id":{"$oid":"55cba2476c522cafdb058f99"},"location":{"coordinates":[-73.961749,40.5778564],"type":"Point"},"name":"Palace Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb058f9a"},"location":{"coordinates":[-73.86377770000001,40.8811567],"type":"Point"},"name":"Nicey Nice Jamaican Restaurant \u0026 Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb058f9b"},"location":{"coordinates":[-74.028189,40.61959],"type":"Point"},"name":"Red White \u0026 Brew"} +,{"_id":{"$oid":"55cba2476c522cafdb058f9c"},"location":{"coordinates":[-73.9890337,40.7272461],"type":"Point"},"name":"Thailand Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058f9d"},"location":{"coordinates":[-73.88848,40.677266],"type":"Point"},"name":"Kary'S Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb058f9e"},"location":{"coordinates":[-73.99731849999999,40.6607347],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb058f9f"},"location":{"coordinates":[-73.931016,40.6672822],"type":"Point"},"name":"Peking Oishi"} +,{"_id":{"$oid":"55cba2476c522cafdb058fa0"},"location":{"coordinates":[-73.98620609999999,40.7326152],"type":"Point"},"name":"Krust Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb058fa1"},"location":{"coordinates":[-73.9146599,40.8711607],"type":"Point"},"name":"Twin Donuts Plus"} +,{"_id":{"$oid":"55cba2476c522cafdb058fa2"},"location":{"coordinates":[-73.8629165,40.7296646],"type":"Point"},"name":"Planet Wings"} +,{"_id":{"$oid":"55cba2476c522cafdb058fa3"},"location":{"coordinates":[-73.9073433,40.8156751],"type":"Point"},"name":"Triple 8 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058fa4"},"location":{"coordinates":[-73.948309,40.641899],"type":"Point"},"name":"Asian Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb058fa5"},"location":{"coordinates":[-73.951123,40.802314],"type":"Point"},"name":"Le Baobab-Gouygui Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058fa6"},"location":{"coordinates":[-73.76908999999999,40.759092],"type":"Point"},"name":"Coco Fresh Tea \u0026 Juice"} +,{"_id":{"$oid":"55cba2476c522cafdb058fa7"},"location":{"coordinates":[-73.9550984,40.8048207],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb058fa8"},"location":{"coordinates":[-73.8915279,40.748803],"type":"Point"},"name":"Al Naimat Restaurant \u0026 Sweets"} +,{"_id":{"$oid":"55cba2476c522cafdb058fa9"},"location":{"coordinates":[-73.98308999999999,40.74222],"type":"Point"},"name":"Bhatti Indian Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb058faa"},"location":{"coordinates":[-73.9090693,40.82342999999999],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb058fab"},"location":{"coordinates":[-73.987369,40.7209078],"type":"Point"},"name":"Creffle Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058fac"},"location":{"coordinates":[-74.0169995,40.7147163],"type":"Point"},"name":"New York Mercantile Exchange"} +,{"_id":{"$oid":"55cba2476c522cafdb058fad"},"location":{"coordinates":[-73.8739659,40.7769271],"type":"Point"},"name":"United Airlines Red Carpet Club"} +,{"_id":{"$oid":"55cba2476c522cafdb058fae"},"location":{"coordinates":[-74.0047546,40.7227053],"type":"Point"},"name":"Jimmy"} +,{"_id":{"$oid":"55cba2476c522cafdb058faf"},"location":{"coordinates":[-74.00515639999999,40.7063764],"type":"Point"},"name":"Aig 31St Floor Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058fb0"},"location":{"coordinates":[-73.9851527,40.66631719999999],"type":"Point"},"name":"Muse Cafe \u0026 Tea"} +,{"_id":{"$oid":"55cba2476c522cafdb058fb1"},"location":{"coordinates":[-73.950457,40.792743],"type":"Point"},"name":"Carval Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb058fb2"},"location":{"coordinates":[-73.90575679999999,40.8329883],"type":"Point"},"name":"Us Kennedy Fried Chicken And Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb058fb3"},"location":{"coordinates":[-73.8442087,40.6802196],"type":"Point"},"name":"Little Caesars"} +,{"_id":{"$oid":"55cba2476c522cafdb058fb4"},"location":{"coordinates":[-73.73847719999999,40.6752133],"type":"Point"},"name":"Queens Dumplin And Everything Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058fb5"},"location":{"coordinates":[-73.7889166,40.71234889999999],"type":"Point"},"name":"Monte Limar Sport Bar Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb058fb6"},"location":{"coordinates":[-73.983328,40.633545],"type":"Point"},"name":"Cafe Paris"} +,{"_id":{"$oid":"55cba2476c522cafdb058fb7"},"location":{"coordinates":[-73.861991,40.9009996],"type":"Point"},"name":"Wonderful"} +,{"_id":{"$oid":"55cba2476c522cafdb058fb8"},"location":{"coordinates":[-73.9951947,40.7255312],"type":"Point"},"name":"Gato"} +,{"_id":{"$oid":"55cba2476c522cafdb058fb9"},"location":{"coordinates":[-73.99908479999999,40.739407],"type":"Point"},"name":"Bar B"} +,{"_id":{"$oid":"55cba2476c522cafdb058fba"},"location":{"coordinates":[-73.81878800000001,40.749917],"type":"Point"},"name":"Lucky Handpull Noodle House"} +,{"_id":{"$oid":"55cba2476c522cafdb058fbb"},"location":{"coordinates":[-73.8984007,40.8618768],"type":"Point"},"name":"Healthy Bite"} +,{"_id":{"$oid":"55cba2476c522cafdb058fbc"},"location":{"coordinates":[-73.9469917,40.7252191],"type":"Point"},"name":"Kyoto Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb058fbd"},"location":{"coordinates":[-73.88087100000001,40.702133],"type":"Point"},"name":"Yogurt \u0026 Company"} +,{"_id":{"$oid":"55cba2476c522cafdb058fbe"},"location":{"coordinates":[-73.97646759999999,40.6819339],"type":"Point"},"name":"Pizza Superstar"} +,{"_id":{"$oid":"55cba2476c522cafdb058fbf"},"location":{"coordinates":[-74.0077659,40.7143151],"type":"Point"},"name":"Gran Morsi"} +,{"_id":{"$oid":"55cba2476c522cafdb058fc0"},"location":{"coordinates":[-73.9845902,40.7400554],"type":"Point"},"name":"Chaamlex"} +,{"_id":{"$oid":"55cba2476c522cafdb058fc1"},"location":{"coordinates":[-73.9147416,40.7460578],"type":"Point"},"name":"The Globe Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb058fc2"},"location":{"coordinates":[-73.86175399999999,40.750556],"type":"Point"},"name":"Lucky Star Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058fc3"},"location":{"coordinates":[-73.9483825,40.7977009],"type":"Point"},"name":"Ottomanelli'S Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058fc4"},"location":{"coordinates":[-73.96742669999999,40.7570698],"type":"Point"},"name":"Hot Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb058fc5"},"location":{"coordinates":[-73.8847395,40.6595761],"type":"Point"},"name":"Soul Of The Sea"} +,{"_id":{"$oid":"55cba2476c522cafdb058fc6"},"location":{"coordinates":[-73.7823132,40.7290638],"type":"Point"},"name":"Sizzle Shawarma \u0026 Falafel Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb058fc7"},"location":{"coordinates":[-73.927458,40.62777699999999],"type":"Point"},"name":"Club Nova"} +,{"_id":{"$oid":"55cba2476c522cafdb058fc8"},"location":{"coordinates":[-73.989108,40.665334],"type":"Point"},"name":"15 St Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058fc9"},"location":{"coordinates":[-73.9511558,40.6637452],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb058fca"},"location":{"coordinates":[-73.9845543,40.7400969],"type":"Point"},"name":"Matts Wings Bbq \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb058fcb"},"location":{"coordinates":[-74.2413401,40.5109207],"type":"Point"},"name":"Da Nico Of Mulberry"} +,{"_id":{"$oid":"55cba2476c522cafdb058fcc"},"location":{"coordinates":[-73.81184209999999,40.790177],"type":"Point"},"name":"Village Bagel"} +,{"_id":{"$oid":"55cba2476c522cafdb058fcd"},"location":{"coordinates":[-73.94752849999999,40.7831062],"type":"Point"},"name":"Atomic Wings"} +,{"_id":{"$oid":"55cba2476c522cafdb058fce"},"location":{"coordinates":[-73.983519,40.723937],"type":"Point"},"name":"Bibi Winecellar"} +,{"_id":{"$oid":"55cba2476c522cafdb058fcf"},"location":{"coordinates":[-73.7905852,40.7675449],"type":"Point"},"name":"Taco Hut"} +,{"_id":{"$oid":"55cba2476c522cafdb058fd0"},"location":{"coordinates":[-73.948869,40.71250999999999],"type":"Point"},"name":"Blind Barber"} +,{"_id":{"$oid":"55cba2476c522cafdb058fd1"},"location":{"coordinates":[-73.858116,40.865746],"type":"Point"},"name":"Italia 90"} +,{"_id":{"$oid":"55cba2476c522cafdb058fd2"},"location":{"coordinates":[-73.980508,40.6598242],"type":"Point"},"name":"Krupa Grocery"} +,{"_id":{"$oid":"55cba2476c522cafdb058fd3"},"location":{"coordinates":[-73.9149599,40.75735299999999],"type":"Point"},"name":"Sips \u0026 Bites Llc"} +,{"_id":{"$oid":"55cba2476c522cafdb058fd4"},"location":{"coordinates":[-73.97766,40.746917],"type":"Point"},"name":"Abby Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058fd5"},"location":{"coordinates":[-73.97630509999999,40.7489339],"type":"Point"},"name":"Chicken Provence"} +,{"_id":{"$oid":"55cba2476c522cafdb058fd6"},"location":{"coordinates":[-73.9615456,40.7639097],"type":"Point"},"name":"Bagel Express"} +,{"_id":{"$oid":"55cba2476c522cafdb058fd7"},"location":{"coordinates":[-73.9471696,40.632323],"type":"Point"},"name":"Lucas Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb058fd8"},"location":{"coordinates":[-73.985873,40.734631],"type":"Point"},"name":"Joe Jr. Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058fd9"},"location":{"coordinates":[-73.95263750000001,40.5865567],"type":"Point"},"name":"Aka My House"} +,{"_id":{"$oid":"55cba2476c522cafdb058fda"},"location":{"coordinates":[-73.9184539,40.80917780000001],"type":"Point"},"name":"Liu Bing Ying"} +,{"_id":{"$oid":"55cba2476c522cafdb058fdb"},"location":{"coordinates":[-73.960132,40.57986500000001],"type":"Point"},"name":"Wise Espresso Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb058fdc"},"location":{"coordinates":[-73.83340559999999,40.7605112],"type":"Point"},"name":"Lavender House"} +,{"_id":{"$oid":"55cba2476c522cafdb058fdd"},"location":{"coordinates":[-73.9172858,40.6987461],"type":"Point"},"name":"Bootleg Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb058fde"},"location":{"coordinates":[-73.8978707,40.8907127],"type":"Point"},"name":"Burger King"} +,{"_id":{"$oid":"55cba2476c522cafdb058fdf"},"location":{"coordinates":[-73.8048161,40.7092884],"type":"Point"},"name":"The Smile Of The Beyond"} +,{"_id":{"$oid":"55cba2476c522cafdb058fe0"},"location":{"coordinates":[-73.9216364,40.7079354],"type":"Point"},"name":"Montana'S Trail House"} +,{"_id":{"$oid":"55cba2476c522cafdb058fe1"},"location":{"coordinates":[-73.9189765,40.7426992],"type":"Point"},"name":"Four Squared Flavors"} +,{"_id":{"$oid":"55cba2476c522cafdb058fe2"},"location":{"coordinates":[-73.8713145,40.7491859],"type":"Point"},"name":"Samurai Japan"} +,{"_id":{"$oid":"55cba2476c522cafdb058fe3"},"location":{"coordinates":[-73.8936528,40.8241604],"type":"Point"},"name":"Mario'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb058fe4"},"location":{"coordinates":[-73.96558499999999,40.800037],"type":"Point"},"name":"Maharaja Palace"} +,{"_id":{"$oid":"55cba2476c522cafdb058fe5"},"location":{"coordinates":[-73.86959399999999,40.6769624],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb058fe6"},"location":{"coordinates":[-73.9419989,40.6049385],"type":"Point"},"name":"Panda Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb058fe7"},"location":{"coordinates":[-73.992782,40.6615899],"type":"Point"},"name":"China One Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058fe8"},"location":{"coordinates":[-73.8909288,40.862086],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb058fe9"},"location":{"coordinates":[-73.9084041,40.8538422],"type":"Point"},"name":"Junior' Seafood Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058fea"},"location":{"coordinates":[-73.9573187,40.6718433],"type":"Point"},"name":"Docklands"} +,{"_id":{"$oid":"55cba2476c522cafdb058feb"},"location":{"coordinates":[-73.930883,40.8510769],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb058fec"},"location":{"coordinates":[-73.9020273,40.700288],"type":"Point"},"name":"Dish"} +,{"_id":{"$oid":"55cba2476c522cafdb058fed"},"location":{"coordinates":[-73.964336,40.693867],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb058fee"},"location":{"coordinates":[-73.84974749999999,40.7248768],"type":"Point"},"name":"Thai Pot Bistro"} +,{"_id":{"$oid":"55cba2476c522cafdb058fef"},"location":{"coordinates":[-73.9084542,40.85265450000001],"type":"Point"},"name":"Lechonera Don Pancholo"} +,{"_id":{"$oid":"55cba2476c522cafdb058ff0"},"location":{"coordinates":[-73.93736539999999,40.7054705],"type":"Point"},"name":"Currant Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb058ff1"},"location":{"coordinates":[-73.9500652,40.6730276],"type":"Point"},"name":"Meme'S Healthy Nibbles"} +,{"_id":{"$oid":"55cba2476c522cafdb058ff2"},"location":{"coordinates":[-73.8290939,40.759362],"type":"Point"},"name":"Gong Cha"} +,{"_id":{"$oid":"55cba2476c522cafdb058ff3"},"location":{"coordinates":[-73.9906251,40.7608035],"type":"Point"},"name":"Yum Yum Bangkok 3"} +,{"_id":{"$oid":"55cba2476c522cafdb058ff4"},"location":{"coordinates":[-73.8216126,40.8259143],"type":"Point"},"name":"Vapor Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb058ff5"},"location":{"coordinates":[-73.97846059999999,40.6434024],"type":"Point"},"name":"Yummy Taco"} +,{"_id":{"$oid":"55cba2476c522cafdb058ff6"},"location":{"coordinates":[-73.98295379999999,40.7690781],"type":"Point"},"name":"Mandarin Oriental Hotel-Banquet"} +,{"_id":{"$oid":"55cba2476c522cafdb058ff7"},"location":{"coordinates":[-73.98295379999999,40.7690781],"type":"Point"},"name":"Mandarin Oriental Hotel-Cafeteria"} +,{"_id":{"$oid":"55cba2476c522cafdb058ff8"},"location":{"coordinates":[-73.98295379999999,40.7690781],"type":"Point"},"name":"Mandarin Oriental Hotel-Asiate"} +,{"_id":{"$oid":"55cba2476c522cafdb058ff9"},"location":{"coordinates":[-74.0178269,40.7149764],"type":"Point"},"name":"The Financier Patisserie"} +,{"_id":{"$oid":"55cba2476c522cafdb058ffa"},"location":{"coordinates":[-73.9839533,40.578876],"type":"Point"},"name":"Primorskiy Corp."} +,{"_id":{"$oid":"55cba2476c522cafdb058ffb"},"location":{"coordinates":[-73.9682084,40.6724808],"type":"Point"},"name":"(Library) Four \u0026 Twenty Blackbirds"} +,{"_id":{"$oid":"55cba2476c522cafdb058ffc"},"location":{"coordinates":[-74.01678729999999,40.6392929],"type":"Point"},"name":"The Square Pie"} +,{"_id":{"$oid":"55cba2476c522cafdb058ffd"},"location":{"coordinates":[-73.79218329999999,40.7107238],"type":"Point"},"name":"Amina Thai"} +,{"_id":{"$oid":"55cba2476c522cafdb058ffe"},"location":{"coordinates":[-73.9283028,40.8664495],"type":"Point"},"name":"Sao Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb058fff"},"location":{"coordinates":[-73.9629392,40.649657],"type":"Point"},"name":"Checkers"} +,{"_id":{"$oid":"55cba2476c522cafdb059000"},"location":{"coordinates":[-73.8360678,40.7863025],"type":"Point"},"name":"Keilly'S Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb059001"},"location":{"coordinates":[-73.992137,40.684583],"type":"Point"},"name":"Clover Club"} +,{"_id":{"$oid":"55cba2476c522cafdb059002"},"location":{"coordinates":[-73.982143,40.5755261],"type":"Point"},"name":"Rita'S Italian Ices"} +,{"_id":{"$oid":"55cba2476c522cafdb059003"},"location":{"coordinates":[-73.9647561,40.6796732],"type":"Point"},"name":"L. A. Burrito"} +,{"_id":{"$oid":"55cba2476c522cafdb059004"},"location":{"coordinates":[-73.938581,40.8173752],"type":"Point"},"name":"King'S Chef Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb059005"},"location":{"coordinates":[-73.97918,40.7814059],"type":"Point"},"name":"Tessa"} +,{"_id":{"$oid":"55cba2476c522cafdb059006"},"location":{"coordinates":[-73.97661289999999,40.6312284],"type":"Point"},"name":"Fortune Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb059007"},"location":{"coordinates":[-73.9025422,40.8227768],"type":"Point"},"name":"Come \u0026 Get Sum Fish \u0026 Chips"} +,{"_id":{"$oid":"55cba2476c522cafdb059008"},"location":{"coordinates":[-74.0034191,40.7224965],"type":"Point"},"name":"The Basque Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb059009"},"location":{"coordinates":[-73.83581889999999,40.8385708],"type":"Point"},"name":"La Clave Del Sabor Restaurant."} +,{"_id":{"$oid":"55cba2476c522cafdb05900a"},"location":{"coordinates":[-73.8147025,40.7027191],"type":"Point"},"name":"Kings Chef"} +,{"_id":{"$oid":"55cba2476c522cafdb05900b"},"location":{"coordinates":[-73.8756355,40.8289558],"type":"Point"},"name":"Caridad Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05900c"},"location":{"coordinates":[-74.0156618,40.71137470000001],"type":"Point"},"name":"Little Muenster"} +,{"_id":{"$oid":"55cba2476c522cafdb05900d"},"location":{"coordinates":[-73.908095,40.774609],"type":"Point"},"name":"Tru"} +,{"_id":{"$oid":"55cba2476c522cafdb05900e"},"location":{"coordinates":[-73.9998325,40.7429533],"type":"Point"},"name":"Heartwood"} +,{"_id":{"$oid":"55cba2476c522cafdb05900f"},"location":{"coordinates":[-73.94826549999999,40.7898455],"type":"Point"},"name":"New Moon Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb059010"},"location":{"coordinates":[-73.9981319,40.7205188],"type":"Point"},"name":"La Compagnie Des Vins Supernaturels"} +,{"_id":{"$oid":"55cba2476c522cafdb059011"},"location":{"coordinates":[-74.00579499999999,40.7417779],"type":"Point"},"name":"The Monarch Room"} +,{"_id":{"$oid":"55cba2476c522cafdb059012"},"location":{"coordinates":[-73.9540998,40.7877671],"type":"Point"},"name":"Da Capo"} +,{"_id":{"$oid":"55cba2476c522cafdb059013"},"location":{"coordinates":[-73.9862038,40.747189],"type":"Point"},"name":"Mandoo Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb059014"},"location":{"coordinates":[-73.9102467,40.844868],"type":"Point"},"name":"A \u0026 J Deli Fish"} +,{"_id":{"$oid":"55cba2476c522cafdb059015"},"location":{"coordinates":[-73.9431096,40.8363028],"type":"Point"},"name":"El Pitallito Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb059016"},"location":{"coordinates":[-73.9212251,40.7566145],"type":"Point"},"name":"Twist And Smash'D Sports"} +,{"_id":{"$oid":"55cba2476c522cafdb059017"},"location":{"coordinates":[-73.7322495,40.6924198],"type":"Point"},"name":"229 Linden Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb059018"},"location":{"coordinates":[-73.850584,40.8314908],"type":"Point"},"name":"Mr Cake Bakery \u0026 Dessert"} +,{"_id":{"$oid":"55cba2476c522cafdb059019"},"location":{"coordinates":[-73.9467205,40.7760292],"type":"Point"},"name":"Bagel Bob'S On York"} +,{"_id":{"$oid":"55cba2476c522cafdb05901a"},"location":{"coordinates":[-73.99965499999999,40.74281999999999],"type":"Point"},"name":"The Parlour At Heartwood"} +,{"_id":{"$oid":"55cba2476c522cafdb05901b"},"location":{"coordinates":[-73.84649619999999,40.9016367],"type":"Point"},"name":"Island Blend Juice Bar ."} +,{"_id":{"$oid":"55cba2476c522cafdb05901c"},"location":{"coordinates":[-73.814847,40.765468],"type":"Point"},"name":"Yseb"} +,{"_id":{"$oid":"55cba2476c522cafdb05901d"},"location":{"coordinates":[-73.9359659,40.795724],"type":"Point"},"name":"Ocelotl Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb05901e"},"location":{"coordinates":[-74.0069548,40.7051418],"type":"Point"},"name":"Gregory'S Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb05901f"},"location":{"coordinates":[-73.9880435,40.7641423],"type":"Point"},"name":"Bombay Grill House"} +,{"_id":{"$oid":"55cba2476c522cafdb059020"},"location":{"coordinates":[-73.8993144,40.7008419],"type":"Point"},"name":"Little Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb059021"},"location":{"coordinates":[-73.82844500000002,40.76349099999999],"type":"Point"},"name":"The One"} +,{"_id":{"$oid":"55cba2476c522cafdb059022"},"location":{"coordinates":[-97.0083238,30.408386],"type":"Point"},"name":"Fika"} +,{"_id":{"$oid":"55cba2476c522cafdb059023"},"location":{"coordinates":[-73.990509,40.68713899999999],"type":"Point"},"name":"White Oak Tavern"} +,{"_id":{"$oid":"55cba2476c522cafdb059024"},"location":{"coordinates":[-74.24089579999999,40.5174065],"type":"Point"},"name":"Pinot'S Pallette"} +,{"_id":{"$oid":"55cba2476c522cafdb059025"},"location":{"coordinates":[-73.9948672,40.7440017],"type":"Point"},"name":"Meridian 23"} +,{"_id":{"$oid":"55cba2476c522cafdb059026"},"location":{"coordinates":[-73.98356799999999,40.6100701],"type":"Point"},"name":"Uzbechka"} +,{"_id":{"$oid":"55cba2476c522cafdb059027"},"location":{"coordinates":[-73.90112690000001,40.8201872],"type":"Point"},"name":"Colony Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb059028"},"location":{"coordinates":[-73.98562,40.7190721],"type":"Point"},"name":"Jeromes"} +,{"_id":{"$oid":"55cba2476c522cafdb059029"},"location":{"coordinates":[-73.97903699999999,40.731991],"type":"Point"},"name":"Oval Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05902a"},"location":{"coordinates":[-73.917107,40.702651],"type":"Point"},"name":"Variety"} +,{"_id":{"$oid":"55cba2476c522cafdb05902b"},"location":{"coordinates":[-73.8969292,40.8611562],"type":"Point"},"name":"J \u0026 Lee'S Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb05902c"},"location":{"coordinates":[-74.005782,40.6222319],"type":"Point"},"name":"New Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb05902d"},"location":{"coordinates":[-73.9536474,40.638181],"type":"Point"},"name":"Little Italy Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb05902e"},"location":{"coordinates":[-73.9875158,40.70443],"type":"Point"},"name":"Cuper"} +,{"_id":{"$oid":"55cba2476c522cafdb05902f"},"location":{"coordinates":[-74.00597499999999,40.718806],"type":"Point"},"name":"Tutto Il Giorno"} +,{"_id":{"$oid":"55cba2476c522cafdb059030"},"location":{"coordinates":[-73.98255,40.67738720000001],"type":"Point"},"name":"Wangs"} +,{"_id":{"$oid":"55cba2476c522cafdb059031"},"location":{"coordinates":[-74.01058300000001,40.6341139],"type":"Point"},"name":"Honk Kong Boy Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb059032"},"location":{"coordinates":[-74.026904,40.621085],"type":"Point"},"name":"Sunset Bagels"} +,{"_id":{"$oid":"55cba2476c522cafdb059033"},"location":{"coordinates":[-73.842704,40.8410601],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb059034"},"location":{"coordinates":[-73.9094243,40.6988254],"type":"Point"},"name":"The Spot"} +,{"_id":{"$oid":"55cba2476c522cafdb059035"},"location":{"coordinates":[-73.953244,40.6950424],"type":"Point"},"name":"Salud Club"} +,{"_id":{"$oid":"55cba2476c522cafdb059036"},"location":{"coordinates":[-73.88297150000001,40.8252059],"type":"Point"},"name":"Bani Restaurant Llc"} +,{"_id":{"$oid":"55cba2476c522cafdb059037"},"location":{"coordinates":[-73.9216266,40.8458104],"type":"Point"},"name":"Bora Bora Lounge Corp"} +,{"_id":{"$oid":"55cba2476c522cafdb059038"},"location":{"coordinates":[-73.7914633,40.673533],"type":"Point"},"name":"No. 1 Yummy Taco"} +,{"_id":{"$oid":"55cba2476c522cafdb059039"},"location":{"coordinates":[-73.8338873,40.6834249],"type":"Point"},"name":"Tony'S Dragon Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb05903a"},"location":{"coordinates":[-73.9766459,40.7602745],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb05903b"},"location":{"coordinates":[-73.9743347,40.6144286],"type":"Point"},"name":"Master Wonton"} +,{"_id":{"$oid":"55cba2476c522cafdb05903c"},"location":{"coordinates":[-74.0033054,40.6565973],"type":"Point"},"name":"Hotel Bpm Brooklyn"} +,{"_id":{"$oid":"55cba2476c522cafdb05903d"},"location":{"coordinates":[-73.98546069999999,40.74768090000001],"type":"Point"},"name":"Panera Bread"} +,{"_id":{"$oid":"55cba2476c522cafdb05903e"},"location":{"coordinates":[-73.9887207,40.7643479],"type":"Point"},"name":"Jasper'S Taphouse \u0026 Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb05903f"},"location":{"coordinates":[-73.8937772,40.8628274],"type":"Point"},"name":"301 Cafe Juice And Smoothies"} +,{"_id":{"$oid":"55cba2476c522cafdb059040"},"location":{"coordinates":[-73.91960999999999,40.866321],"type":"Point"},"name":"Fantastic Restaurant \u0026 Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb059041"},"location":{"coordinates":[-73.9964529,40.7322922],"type":"Point"},"name":"Lena"} +,{"_id":{"$oid":"55cba2476c522cafdb059042"},"location":{"coordinates":[-73.9586023,40.7168031],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb059043"},"location":{"coordinates":[-73.961435,40.60633600000001],"type":"Point"},"name":"Shadow Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb059044"},"location":{"coordinates":[-74.0250329,40.621103],"type":"Point"},"name":"Istanbul Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb059045"},"location":{"coordinates":[-74.033148,40.61911600000001],"type":"Point"},"name":"Suki Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb059046"},"location":{"coordinates":[-73.924188,40.700122],"type":"Point"},"name":"The Wheelhouse"} +,{"_id":{"$oid":"55cba2476c522cafdb059047"},"location":{"coordinates":[-73.926149,40.70065200000001],"type":"Point"},"name":"New Hardee Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb059048"},"location":{"coordinates":[-73.9170409,40.7617157],"type":"Point"},"name":"Tasty Burger Shack/Red Chili Chinese"} +,{"_id":{"$oid":"55cba2476c522cafdb059049"},"location":{"coordinates":[-73.8966172,40.8206682],"type":"Point"},"name":"Food Bo Garden Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05904a"},"location":{"coordinates":[-73.997807,40.7327311],"type":"Point"},"name":"Arts And Crafts Beer Parlor"} +,{"_id":{"$oid":"55cba2476c522cafdb05904b"},"location":{"coordinates":[-73.877865,40.680265],"type":"Point"},"name":"Wendy'S Old Fashioned Hamburgers"} +,{"_id":{"$oid":"55cba2476c522cafdb05904c"},"location":{"coordinates":[-73.9221142,40.7713365],"type":"Point"},"name":"Noshborough"} +,{"_id":{"$oid":"55cba2476c522cafdb05904d"},"location":{"coordinates":[-73.8769966,40.7375282],"type":"Point"},"name":"Coco Tea"} +,{"_id":{"$oid":"55cba2476c522cafdb05904e"},"location":{"coordinates":[-73.82858999999999,40.757634],"type":"Point"},"name":"Coco"} +,{"_id":{"$oid":"55cba2476c522cafdb05904f"},"location":{"coordinates":[-73.9415434,40.8391424],"type":"Point"},"name":"Wendy'S Old Fashioned Hamburgers"} +,{"_id":{"$oid":"55cba2476c522cafdb059050"},"location":{"coordinates":[-73.95359789999999,40.7793403],"type":"Point"},"name":"Starbucks Coffee #20679"} +,{"_id":{"$oid":"55cba2476c522cafdb059051"},"location":{"coordinates":[-73.9398334,40.7976659],"type":"Point"},"name":"Wendy'S Old Fashioned Hamburgers"} +,{"_id":{"$oid":"55cba2476c522cafdb059052"},"location":{"coordinates":[-73.96323029999999,40.7571072],"type":"Point"},"name":"Le Pain Quotidien"} +,{"_id":{"$oid":"55cba2476c522cafdb059053"},"location":{"coordinates":[-73.93941099999999,40.80553099999999],"type":"Point"},"name":"Wendy'S Old Fashioned Hamburgers"} +,{"_id":{"$oid":"55cba2476c522cafdb059054"},"location":{"coordinates":[-74.0156618,40.71137470000001],"type":"Point"},"name":"Chop'T Wfc"} +,{"_id":{"$oid":"55cba2476c522cafdb059055"},"location":{"coordinates":[-74.0014137,40.7366986],"type":"Point"},"name":"Mighty Quinn'S Bbq"} +,{"_id":{"$oid":"55cba2476c522cafdb059056"},"location":{"coordinates":[-73.91837199999999,40.755243],"type":"Point"},"name":"King Garden Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb059057"},"location":{"coordinates":[-73.8565909,40.8826494],"type":"Point"},"name":"Nyam \u0026 Jam Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb059058"},"location":{"coordinates":[-73.9215229,40.760432],"type":"Point"},"name":"Pye Boat Noodle"} +,{"_id":{"$oid":"55cba2476c522cafdb059059"},"location":{"coordinates":[-73.9102813,40.8859118],"type":"Point"},"name":"Fresco Tortillas"} +,{"_id":{"$oid":"55cba2476c522cafdb05905a"},"location":{"coordinates":[-73.9800161,40.68808620000001],"type":"Point"},"name":"Golden Krust Caribbean Barkey\u0026Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb05905b"},"location":{"coordinates":[-73.95191919999999,40.7176114],"type":"Point"},"name":"Edamama Cute Cuts And More"} +,{"_id":{"$oid":"55cba2476c522cafdb05905c"},"location":{"coordinates":[-73.9579043,40.671267],"type":"Point"},"name":"El Barrio Burritos"} +,{"_id":{"$oid":"55cba2476c522cafdb05905d"},"location":{"coordinates":[-73.9046619,40.8870808],"type":"Point"},"name":"New Riverdale Noodle"} +,{"_id":{"$oid":"55cba2476c522cafdb05905e"},"location":{"coordinates":[-73.90413939999999,40.7215581],"type":"Point"},"name":"Osteria Italiana"} +,{"_id":{"$oid":"55cba2476c522cafdb05905f"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb059060"},"location":{"coordinates":[-73.8622492,40.70775800000001],"type":"Point"},"name":"Room 55"} +,{"_id":{"$oid":"55cba2476c522cafdb059061"},"location":{"coordinates":[-73.9995639,40.7166368],"type":"Point"},"name":"Pasteur Grill \u0026 Noodles"} +,{"_id":{"$oid":"55cba2476c522cafdb059062"},"location":{"coordinates":[-73.989853,40.744391],"type":"Point"},"name":"My Cooking Party"} +,{"_id":{"$oid":"55cba2476c522cafdb059063"},"location":{"coordinates":[-74.2392089,40.5232239],"type":"Point"},"name":"South Shore Hot Bagels"} +,{"_id":{"$oid":"55cba2476c522cafdb059064"},"location":{"coordinates":[-73.940944,40.793148],"type":"Point"},"name":"Salud Y Esperanza"} +,{"_id":{"$oid":"55cba2476c522cafdb059065"},"location":{"coordinates":[-73.96979139999999,40.7589933],"type":"Point"},"name":"Legend 55"} +,{"_id":{"$oid":"55cba2476c522cafdb059066"},"location":{"coordinates":[-73.82878099999999,40.758925],"type":"Point"},"name":"Shake Shake 8 Ktv"} +,{"_id":{"$oid":"55cba2476c522cafdb059067"},"location":{"coordinates":[-73.99442479999999,40.7443119],"type":"Point"},"name":"Barcade"} +,{"_id":{"$oid":"55cba2476c522cafdb059068"},"location":{"coordinates":[-73.95004899999999,40.786592],"type":"Point"},"name":"Judy'S Spanish Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb059069"},"location":{"coordinates":[-73.8477874,40.7506343],"type":"Point"},"name":"Amerivents Catering "} +,{"_id":{"$oid":"55cba2476c522cafdb05906a"},"location":{"coordinates":[-73.9673993,40.8008804],"type":"Point"},"name":"Koko Wings"} +,{"_id":{"$oid":"55cba2476c522cafdb05906b"},"location":{"coordinates":[-73.9039626,40.7038941],"type":"Point"},"name":"Tirana Soccer Club Members Only Llc"} +,{"_id":{"$oid":"55cba2476c522cafdb05906c"},"location":{"coordinates":[-73.83702860000001,40.6817591],"type":"Point"},"name":"Romeo'S Pizza And Pasta"} +,{"_id":{"$oid":"55cba2476c522cafdb05906d"},"location":{"coordinates":[-73.963566,40.6768333],"type":"Point"},"name":"Citrico"} +,{"_id":{"$oid":"55cba2476c522cafdb05906e"},"location":{"coordinates":[-73.9841853,40.7643625],"type":"Point"},"name":"Karaoke Duet"} +,{"_id":{"$oid":"55cba2476c522cafdb05906f"},"location":{"coordinates":[-73.7659962,40.5979135],"type":"Point"},"name":"Buona Pizza Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb059070"},"location":{"coordinates":[-73.9692089,40.7539023],"type":"Point"},"name":"Red Mango"} +,{"_id":{"$oid":"55cba2476c522cafdb059071"},"location":{"coordinates":[-73.8935298,40.8466652],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb059072"},"location":{"coordinates":[-73.84583099999999,40.8775059],"type":"Point"},"name":"Tranquility Bar \u0026 Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb059073"},"location":{"coordinates":[-73.9743431,40.7471535],"type":"Point"},"name":"Red Mango"} +,{"_id":{"$oid":"55cba2476c522cafdb059074"},"location":{"coordinates":[-73.9819938,40.7409652],"type":"Point"},"name":"Bamiyan Persian Cusine"} +,{"_id":{"$oid":"55cba2476c522cafdb059075"},"location":{"coordinates":[-73.9205262,40.8170628],"type":"Point"},"name":"Merry Land"} +,{"_id":{"$oid":"55cba2476c522cafdb059076"},"location":{"coordinates":[-73.91349319999999,40.819952],"type":"Point"},"name":"Dunkin Douts"} +,{"_id":{"$oid":"55cba2476c522cafdb059077"},"location":{"coordinates":[-73.964387,40.6878882],"type":"Point"},"name":"Pratt-Higgins Hall Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb059078"},"location":{"coordinates":[-73.9265691,40.8288189],"type":"Point"},"name":"New York Yankees Mvp Club"} +,{"_id":{"$oid":"55cba2476c522cafdb059079"},"location":{"coordinates":[-73.9199751,40.8658439],"type":"Point"},"name":"Healthy Bite"} +,{"_id":{"$oid":"55cba2476c522cafdb05907a"},"location":{"coordinates":[-73.829437,40.757178],"type":"Point"},"name":"Ten Jin Xeing Being Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05907b"},"location":{"coordinates":[-73.94860899999999,40.713865],"type":"Point"},"name":"Northern Bell"} +,{"_id":{"$oid":"55cba2476c522cafdb05907c"},"location":{"coordinates":[-73.96616379999999,40.7129536],"type":"Point"},"name":"Landhaus"} +,{"_id":{"$oid":"55cba2476c522cafdb05907d"},"location":{"coordinates":[-73.7346577,40.7715853],"type":"Point"},"name":"Bocconcini"} +,{"_id":{"$oid":"55cba2476c522cafdb05907e"},"location":{"coordinates":[-73.937007,40.697669],"type":"Point"},"name":"Palisades"} +,{"_id":{"$oid":"55cba2476c522cafdb05907f"},"location":{"coordinates":[-73.98257559999999,40.6652644],"type":"Point"},"name":"Brookvin"} +,{"_id":{"$oid":"55cba2476c522cafdb059080"},"location":{"coordinates":[-73.9371865,40.7972721],"type":"Point"},"name":"El Rancho Vegano"} +,{"_id":{"$oid":"55cba2476c522cafdb059081"},"location":{"coordinates":[-73.8421913,40.7201041],"type":"Point"},"name":"Reef"} +,{"_id":{"$oid":"55cba2476c522cafdb059082"},"location":{"coordinates":[-73.972571,40.752866],"type":"Point"},"name":"The Harp Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb059083"},"location":{"coordinates":[-73.95697779999999,40.6425282],"type":"Point"},"name":"Li \u0026 Lin'S China Dragon, Inc."} +,{"_id":{"$oid":"55cba2476c522cafdb059084"},"location":{"coordinates":[-74.02296539999999,40.6345226],"type":"Point"},"name":"Argan"} +,{"_id":{"$oid":"55cba2476c522cafdb059085"},"location":{"coordinates":[-73.97594699999999,40.74518],"type":"Point"},"name":"Garlic Pizza Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb059086"},"location":{"coordinates":[-73.8209959,40.679086],"type":"Point"},"name":"Wild Orchid Bar \u0026 Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb059087"},"location":{"coordinates":[-74.0069287,40.7168991],"type":"Point"},"name":"Arcade Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb059088"},"location":{"coordinates":[-73.9630667,40.6828291],"type":"Point"},"name":"Coffee 11238"} +,{"_id":{"$oid":"55cba2476c522cafdb059089"},"location":{"coordinates":[-73.9459151,40.781901],"type":"Point"},"name":"Uncle Benny'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05908a"},"location":{"coordinates":[-73.9919409,40.7363728],"type":"Point"},"name":"Cevich"} +,{"_id":{"$oid":"55cba2476c522cafdb05908b"},"location":{"coordinates":[-73.988805,40.6706549],"type":"Point"},"name":"Uncle Arthur'S Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05908c"},"location":{"coordinates":[-73.9561403,40.7722894],"type":"Point"},"name":"Vero"} +,{"_id":{"$oid":"55cba2476c522cafdb05908d"},"location":{"coordinates":[-73.9608544,40.6633209],"type":"Point"},"name":"Checkers"} +,{"_id":{"$oid":"55cba2476c522cafdb05908e"},"location":{"coordinates":[-74.11770899999999,40.573701],"type":"Point"},"name":"Zaghloul Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb05908f"},"location":{"coordinates":[-73.982524,40.742068],"type":"Point"},"name":"Desi Galli"} +,{"_id":{"$oid":"55cba2476c522cafdb059090"},"location":{"coordinates":[-74.07692899999999,40.629056],"type":"Point"},"name":"El Patron Restaurant \u0026 Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb059091"},"location":{"coordinates":[-73.9875608,40.7649092],"type":"Point"},"name":"Poulette"} +,{"_id":{"$oid":"55cba2476c522cafdb059092"},"location":{"coordinates":[-73.9145874,40.6989841],"type":"Point"},"name":"Mangiamo Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb059093"},"location":{"coordinates":[-73.8763858,40.7481611],"type":"Point"},"name":"Broadway Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb059094"},"location":{"coordinates":[-73.9313202,40.670612],"type":"Point"},"name":"Castle Hill'S Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb059095"},"location":{"coordinates":[-74.00368069999999,40.7331378],"type":"Point"},"name":"Via Carota"} +,{"_id":{"$oid":"55cba2476c522cafdb059096"},"location":{"coordinates":[-73.99620399999999,40.690177],"type":"Point"},"name":"Henry'S Express Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb059097"},"location":{"coordinates":[-73.9770127,40.7846321],"type":"Point"},"name":"The Meatball Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb059098"},"location":{"coordinates":[-74.0259094,40.6354866],"type":"Point"},"name":"Coffee Lab"} +,{"_id":{"$oid":"55cba2476c522cafdb059099"},"location":{"coordinates":[-73.942765,40.789663],"type":"Point"},"name":"King Food Takeout Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05909a"},"location":{"coordinates":[-73.8290939,40.759362],"type":"Point"},"name":"Xiang Ba La Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05909b"},"location":{"coordinates":[-73.9082354,40.677146],"type":"Point"},"name":"Junior #2 Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb05909c"},"location":{"coordinates":[-74.003957,40.7300759],"type":"Point"},"name":"The Grey Dog"} +,{"_id":{"$oid":"55cba2476c522cafdb05909d"},"location":{"coordinates":[-73.922389,40.760846],"type":"Point"},"name":"Bartolino'S Fine Italian Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05909e"},"location":{"coordinates":[-74.16165200000002,40.529485],"type":"Point"},"name":"Bagel House"} +,{"_id":{"$oid":"55cba2476c522cafdb05909f"},"location":{"coordinates":[-74.02641,40.620745],"type":"Point"},"name":"Blimpie"} +,{"_id":{"$oid":"55cba2476c522cafdb0590a0"},"location":{"coordinates":[-73.9875716,40.7505604],"type":"Point"},"name":"Wafels \u0026 Dinges"} +,{"_id":{"$oid":"55cba2476c522cafdb0590a1"},"location":{"coordinates":[-73.810613,40.764885],"type":"Point"},"name":"Ceo"} +,{"_id":{"$oid":"55cba2476c522cafdb0590a2"},"location":{"coordinates":[-73.9002062,40.822365],"type":"Point"},"name":"Oro Bar Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0590a3"},"location":{"coordinates":[-73.96822399999999,40.797536],"type":"Point"},"name":"Tatz Gourmet Sweetz"} +,{"_id":{"$oid":"55cba2476c522cafdb0590a4"},"location":{"coordinates":[-73.9859252,40.7181129],"type":"Point"},"name":"New Happy Wok"} +,{"_id":{"$oid":"55cba2476c522cafdb0590a5"},"location":{"coordinates":[-73.9844882,40.72470029999999],"type":"Point"},"name":"Twist Yo"} +,{"_id":{"$oid":"55cba2476c522cafdb0590a6"},"location":{"coordinates":[-73.8009258,40.7137539],"type":"Point"},"name":"Kingstonian Caribbean Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb0590a7"},"location":{"coordinates":[-73.98833809999999,40.7514468],"type":"Point"},"name":"Aki Sushi West"} +,{"_id":{"$oid":"55cba2476c522cafdb0590a8"},"location":{"coordinates":[-73.91297589999999,40.7008194],"type":"Point"},"name":"Place Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb0590a9"},"location":{"coordinates":[-73.8950272,40.6472251],"type":"Point"},"name":"New Hong Hua"} +,{"_id":{"$oid":"55cba2476c522cafdb0590aa"},"location":{"coordinates":[-73.984968,40.761561],"type":"Point"},"name":"Canteen M"} +,{"_id":{"$oid":"55cba2476c522cafdb0590ab"},"location":{"coordinates":[-73.91623,40.820029],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb0590ac"},"location":{"coordinates":[-73.984968,40.761561],"type":"Point"},"name":"Cloud Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0590ad"},"location":{"coordinates":[-73.90998100000002,40.669539],"type":"Point"},"name":"Bella Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0590ae"},"location":{"coordinates":[-73.7545588,40.6062644],"type":"Point"},"name":"Little Caesars"} +,{"_id":{"$oid":"55cba2476c522cafdb0590af"},"location":{"coordinates":[-74.0030271,40.7254561],"type":"Point"},"name":"Blue Ribbon"} +,{"_id":{"$oid":"55cba2476c522cafdb0590b0"},"location":{"coordinates":[-73.8329945,40.760606],"type":"Point"},"name":"Kulu Desserts"} +,{"_id":{"$oid":"55cba2476c522cafdb0590b1"},"location":{"coordinates":[-73.8963335,40.7407656],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0590b2"},"location":{"coordinates":[-73.97300899999999,40.784756],"type":"Point"},"name":"Savoury Indian Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb0590b3"},"location":{"coordinates":[-73.8792969,40.7481136],"type":"Point"},"name":"Las Jarochitas Rest"} +,{"_id":{"$oid":"55cba2476c522cafdb0590b4"},"location":{"coordinates":[-73.7896131,40.7666136],"type":"Point"},"name":"Arya Kabob House"} +,{"_id":{"$oid":"55cba2476c522cafdb0590b5"},"location":{"coordinates":[-73.8625244,40.7498856],"type":"Point"},"name":"Fruitti Yummi Frozen Yogurt"} +,{"_id":{"$oid":"55cba2476c522cafdb0590b6"},"location":{"coordinates":[-73.8444952,40.86938139999999],"type":"Point"},"name":"Jes Distinctive Catering Inc"} +,{"_id":{"$oid":"55cba2476c522cafdb0590b7"},"location":{"coordinates":[-73.9840731,40.7604708],"type":"Point"},"name":"Roast Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0590b8"},"location":{"coordinates":[-73.98935,40.735298],"type":"Point"},"name":"Chef Driven Market Llc"} +,{"_id":{"$oid":"55cba2476c522cafdb0590b9"},"location":{"coordinates":[-73.9117677,40.7765762],"type":"Point"},"name":"Yogurt La Crepe"} +,{"_id":{"$oid":"55cba2476c522cafdb0590ba"},"location":{"coordinates":[-74.0027719,40.73307399999999],"type":"Point"},"name":"Holey Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0590bb"},"location":{"coordinates":[-73.7532471,40.6808693],"type":"Point"},"name":"Mango'S Jamaican Kitchen \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0590bc"},"location":{"coordinates":[-73.959735,40.584185],"type":"Point"},"name":"Land-O-Fun"} +,{"_id":{"$oid":"55cba2476c522cafdb0590bd"},"location":{"coordinates":[-73.9447349,40.6174305],"type":"Point"},"name":"Pizza Heaven"} +,{"_id":{"$oid":"55cba2476c522cafdb0590be"},"location":{"coordinates":[-73.830952,40.758802],"type":"Point"},"name":"Xiao Dou Hui Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0590bf"},"location":{"coordinates":[-74.001513,40.601709],"type":"Point"},"name":"Lazzat, Inc"} +,{"_id":{"$oid":"55cba2476c522cafdb0590c0"},"location":{"coordinates":[-73.78942339999999,40.5945081],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0590c1"},"location":{"coordinates":[-73.957549,40.734399],"type":"Point"},"name":"Bakeri"} +,{"_id":{"$oid":"55cba2476c522cafdb0590c2"},"location":{"coordinates":[-74.00416899999999,40.717356],"type":"Point"},"name":"Cafe Boca Ciega"} +,{"_id":{"$oid":"55cba2476c522cafdb0590c3"},"location":{"coordinates":[-73.912892,40.765545],"type":"Point"},"name":"Saigon Internet Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0590c4"},"location":{"coordinates":[-73.841449,40.785407],"type":"Point"},"name":"Danny'S Steakhouse"} +,{"_id":{"$oid":"55cba2476c522cafdb0590c5"},"location":{"coordinates":[-73.988631,40.76033],"type":"Point"},"name":"46Th St Station House"} +,{"_id":{"$oid":"55cba2476c522cafdb0590c6"},"location":{"coordinates":[-74.0131689,40.7130082],"type":"Point"},"name":"Conde Nast"} +,{"_id":{"$oid":"55cba2476c522cafdb0590c7"},"location":{"coordinates":[-73.9701352,40.7506294],"type":"Point"},"name":"Butter Beans (Unicef)"} +,{"_id":{"$oid":"55cba2476c522cafdb0590c8"},"location":{"coordinates":[-73.815494,40.586165],"type":"Point"},"name":"The Rock Nyc"} +,{"_id":{"$oid":"55cba2476c522cafdb0590c9"},"location":{"coordinates":[-73.988218,40.7198009],"type":"Point"},"name":"Juice Press 12"} +,{"_id":{"$oid":"55cba2476c522cafdb0590ca"},"location":{"coordinates":[-73.81166259999999,40.5875143],"type":"Point"},"name":"Uncle Louie G Ice Cream"} +,{"_id":{"$oid":"55cba2476c522cafdb0590cb"},"location":{"coordinates":[-73.80264749999999,40.7810516],"type":"Point"},"name":"The Blvd Restaurant And Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb0590cc"},"location":{"coordinates":[-73.9518727,40.776062],"type":"Point"},"name":"Cafe Jax"} +,{"_id":{"$oid":"55cba2476c522cafdb0590cd"},"location":{"coordinates":[-73.9551236,40.7367782],"type":"Point"},"name":"Saint Vitus"} +,{"_id":{"$oid":"55cba2476c522cafdb0590ce"},"location":{"coordinates":[-73.942488,40.7014],"type":"Point"},"name":"Lucas Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb0590cf"},"location":{"coordinates":[-73.8778918,40.7366219],"type":"Point"},"name":"Ovosodo"} +,{"_id":{"$oid":"55cba2476c522cafdb0590d0"},"location":{"coordinates":[-73.842771,40.84946800000001],"type":"Point"},"name":"Nrgize Lifestye Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0590d1"},"location":{"coordinates":[-73.9337116,40.6001618],"type":"Point"},"name":"Knapp Bagel Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0590d2"},"location":{"coordinates":[-74.0030127,40.7313788],"type":"Point"},"name":"Baker \u0026 Co."} +,{"_id":{"$oid":"55cba2476c522cafdb0590d3"},"location":{"coordinates":[-73.982246,40.732299],"type":"Point"},"name":"Panada Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0590d4"},"location":{"coordinates":[-74.01478089999999,40.7160369],"type":"Point"},"name":"Elixir"} +,{"_id":{"$oid":"55cba2476c522cafdb0590d5"},"location":{"coordinates":[-73.9972213,40.7159365],"type":"Point"},"name":"Shanghai Asian Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb0590d6"},"location":{"coordinates":[-74.0085357,40.70620539999999],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0590d7"},"location":{"coordinates":[-73.8453637,40.7893188],"type":"Point"},"name":"Cj'S Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb0590d8"},"location":{"coordinates":[-73.7691849,40.759276],"type":"Point"},"name":"Pho 32"} +,{"_id":{"$oid":"55cba2476c522cafdb0590d9"},"location":{"coordinates":[-73.9637815,40.8034893],"type":"Point"},"name":"Pita Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0590da"},"location":{"coordinates":[-73.8119387,40.5874821],"type":"Point"},"name":"Whit'S End Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb0590db"},"location":{"coordinates":[-74.0072617,40.7144168],"type":"Point"},"name":"By Suzette French Crepes"} +,{"_id":{"$oid":"55cba2476c522cafdb0590dc"},"location":{"coordinates":[-73.9514873,40.7775772],"type":"Point"},"name":"Gracie'S On 2Nd"} +,{"_id":{"$oid":"55cba2476c522cafdb0590dd"},"location":{"coordinates":[-73.95326560000001,40.8105141],"type":"Point"},"name":"St Nicholas Food"} +,{"_id":{"$oid":"55cba2476c522cafdb0590de"},"location":{"coordinates":[-73.9858445,40.7478955],"type":"Point"},"name":"Smash Burger"} +,{"_id":{"$oid":"55cba2476c522cafdb0590df"},"location":{"coordinates":[-73.962106,40.770991],"type":"Point"},"name":"Gina La Fornarina"} +,{"_id":{"$oid":"55cba2476c522cafdb0590e0"},"location":{"coordinates":[-74.0050148,40.7071791],"type":"Point"},"name":"Niko Niko Sushi \u0026 Bowl"} +,{"_id":{"$oid":"55cba2476c522cafdb0590e1"},"location":{"coordinates":[-74.0156618,40.71137470000001],"type":"Point"},"name":"Mighty Quinn'S Bbq"} +,{"_id":{"$oid":"55cba2476c522cafdb0590e2"},"location":{"coordinates":[-73.8706606,40.7342757],"type":"Point"},"name":"Taco Bell"} +,{"_id":{"$oid":"55cba2476c522cafdb0590e3"},"location":{"coordinates":[-73.9855291,40.75439710000001],"type":"Point"},"name":"Fika"} +,{"_id":{"$oid":"55cba2476c522cafdb0590e4"},"location":{"coordinates":[-73.919918,40.608311],"type":"Point"},"name":"Chipotle Mexican Grill #221"} +,{"_id":{"$oid":"55cba2476c522cafdb0590e5"},"location":{"coordinates":[-73.9644553,40.683081],"type":"Point"},"name":"Crownking Food Corp"} +,{"_id":{"$oid":"55cba2476c522cafdb0590e6"},"location":{"coordinates":[-73.9791264,40.6894729],"type":"Point"},"name":"Teriyaki Burrito House"} +,{"_id":{"$oid":"55cba2476c522cafdb0590e7"},"location":{"coordinates":[-73.9170583,40.8069994],"type":"Point"},"name":"Usa Superhero"} +,{"_id":{"$oid":"55cba2476c522cafdb0590e8"},"location":{"coordinates":[-73.95323479999999,40.68122959999999],"type":"Point"},"name":"Castillo Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0590e9"},"location":{"coordinates":[-73.9736223,40.755637],"type":"Point"},"name":"Intercontinental Barclay New York"} +,{"_id":{"$oid":"55cba2476c522cafdb0590ea"},"location":{"coordinates":[-73.952996,40.780719],"type":"Point"},"name":"Stargate Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb0590eb"},"location":{"coordinates":[-73.9944075,40.7555149],"type":"Point"},"name":"Manganaro'S Hero Boy"} +,{"_id":{"$oid":"55cba2476c522cafdb0590ec"},"location":{"coordinates":[-73.934769,40.848442],"type":"Point"},"name":"Tacos Neza 24 Hrs Restaurant Mexican Corp"} +,{"_id":{"$oid":"55cba2476c522cafdb0590ed"},"location":{"coordinates":[-73.91594599999999,40.701963],"type":"Point"},"name":"La Gualacena Bar \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0590ee"},"location":{"coordinates":[-73.9923524,40.7238111],"type":"Point"},"name":"Yuji Ramen"} +,{"_id":{"$oid":"55cba2476c522cafdb0590ef"},"location":{"coordinates":[-73.94042449999999,40.6797475],"type":"Point"},"name":"Pizza Chef"} +,{"_id":{"$oid":"55cba2476c522cafdb0590f0"},"location":{"coordinates":[-73.7858023,40.7524027],"type":"Point"},"name":"Fortune Garden Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0590f1"},"location":{"coordinates":[-73.94514459999999,40.8240196],"type":"Point"},"name":"Agave Mexican \u0026 American Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0590f2"},"location":{"coordinates":[-73.93446089999999,40.7565937],"type":"Point"},"name":"Homemade Taqueria"} +,{"_id":{"$oid":"55cba2476c522cafdb0590f3"},"location":{"coordinates":[-73.952181,40.6807329],"type":"Point"},"name":"New Bismillah"} +,{"_id":{"$oid":"55cba2476c522cafdb0590f4"},"location":{"coordinates":[-73.9394804,40.8332809],"type":"Point"},"name":"Company Catered Events"} +,{"_id":{"$oid":"55cba2476c522cafdb0590f5"},"location":{"coordinates":[-73.8899284,40.8605766],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0590f6"},"location":{"coordinates":[-73.9860288,40.730452],"type":"Point"},"name":"Numero 28 Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb0590f7"},"location":{"coordinates":[-73.75179,40.602498],"type":"Point"},"name":"Deleon Bakery \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0590f8"},"location":{"coordinates":[-73.9054854,40.8794154],"type":"Point"},"name":"15 Flavors"} +,{"_id":{"$oid":"55cba2476c522cafdb0590f9"},"location":{"coordinates":[-73.9030902,40.8694029],"type":"Point"},"name":"Caridad Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0590fa"},"location":{"coordinates":[-73.90895809999999,40.7635181],"type":"Point"},"name":"Fatty'S Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0590fb"},"location":{"coordinates":[-73.8547154,40.8486198],"type":"Point"},"name":"15 Flavors "} +,{"_id":{"$oid":"55cba2476c522cafdb0590fc"},"location":{"coordinates":[-73.9970183,40.7017076],"type":"Point"},"name":"Lizzmonade"} +,{"_id":{"$oid":"55cba2476c522cafdb0590fd"},"location":{"coordinates":[-73.9996318,40.7281322],"type":"Point"},"name":"Frozen Peaks"} +,{"_id":{"$oid":"55cba2476c522cafdb0590fe"},"location":{"coordinates":[-73.97705599999999,40.752998],"type":"Point"},"name":"Joe Coffee/Kiosk"} +,{"_id":{"$oid":"55cba2476c522cafdb0590ff"},"location":{"coordinates":[-73.80206179999999,40.7805644],"type":"Point"},"name":"Omani"} +,{"_id":{"$oid":"55cba2476c522cafdb059100"},"location":{"coordinates":[-73.9038577,40.87003],"type":"Point"},"name":"Tacos Y Antojios Mexicanos La Catrina"} +,{"_id":{"$oid":"55cba2476c522cafdb059101"},"location":{"coordinates":[-73.9534062,40.7800141],"type":"Point"},"name":"Hale And Hearty"} +,{"_id":{"$oid":"55cba2476c522cafdb059102"},"location":{"coordinates":[-88.2437425,30.678081],"type":"Point"},"name":"Statue Of Liberty Deli"} +,{"_id":{"$oid":"55cba2476c522cafdb059103"},"location":{"coordinates":[-73.987291,40.720863],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb059104"},"location":{"coordinates":[-73.8549908,40.8545221],"type":"Point"},"name":"Little Caesars"} +,{"_id":{"$oid":"55cba2476c522cafdb059105"},"location":{"coordinates":[-73.91998800000002,40.8662521],"type":"Point"},"name":"Zhang Qun Empire Inc"} +,{"_id":{"$oid":"55cba2476c522cafdb059106"},"location":{"coordinates":[-73.95766150000001,40.7129003],"type":"Point"},"name":"M Shanghai"} +,{"_id":{"$oid":"55cba2476c522cafdb059107"},"location":{"coordinates":[-73.97853599999999,40.757446],"type":"Point"},"name":"New York Kimchi"} +,{"_id":{"$oid":"55cba2476c522cafdb059108"},"location":{"coordinates":[-73.926523,40.76096],"type":"Point"},"name":"Mi Espiguita"} +,{"_id":{"$oid":"55cba2476c522cafdb059109"},"location":{"coordinates":[-73.9885944,40.7287848],"type":"Point"},"name":"Kung Fu Tea"} +,{"_id":{"$oid":"55cba2476c522cafdb05910a"},"location":{"coordinates":[-74.0156618,40.71137470000001],"type":"Point"},"name":"Dig Inn Seasonal Market"} +,{"_id":{"$oid":"55cba2476c522cafdb05910b"},"location":{"coordinates":[-74.08334289999999,40.6031531],"type":"Point"},"name":"Incas Grill Peruvian Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb05910c"},"location":{"coordinates":[-73.994306,40.7178449],"type":"Point"},"name":"Red Bubble"} +,{"_id":{"$oid":"55cba2476c522cafdb05910d"},"location":{"coordinates":[-73.8550875,40.8490666],"type":"Point"},"name":"Nana'S Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb05910e"},"location":{"coordinates":[-73.9758389,40.65252],"type":"Point"},"name":"Adirondack"} +,{"_id":{"$oid":"55cba2476c522cafdb05910f"},"location":{"coordinates":[-73.9631268,40.7104217],"type":"Point"},"name":"Meadowsweet"} +,{"_id":{"$oid":"55cba2476c522cafdb059110"},"location":{"coordinates":[-73.85558550000002,40.8565006],"type":"Point"},"name":"Napoli Pizza Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb059111"},"location":{"coordinates":[-74.1661072,40.590571],"type":"Point"},"name":"Mr. Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb059112"},"location":{"coordinates":[-73.8820784,40.6763523],"type":"Point"},"name":"El Nuevo Bohio Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb059113"},"location":{"coordinates":[-73.874517,40.7342889],"type":"Point"},"name":"Nunoodle"} +,{"_id":{"$oid":"55cba2476c522cafdb059114"},"location":{"coordinates":[-73.9611048,40.7085704],"type":"Point"},"name":"Roebling Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb059115"},"location":{"coordinates":[-73.827342,40.752527],"type":"Point"},"name":"Lok Lok Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb059116"},"location":{"coordinates":[-73.8032173,40.7623033],"type":"Point"},"name":"Jeju Do"} +,{"_id":{"$oid":"55cba2476c522cafdb059117"},"location":{"coordinates":[-73.9833361,40.75079890000001],"type":"Point"},"name":"Hole In The Wall Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb059118"},"location":{"coordinates":[-73.8150849,40.718486],"type":"Point"},"name":"Panda Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb059119"},"location":{"coordinates":[-73.918457,40.806602],"type":"Point"},"name":"Lin China Wok"} +,{"_id":{"$oid":"55cba2476c522cafdb05911a"},"location":{"coordinates":[-74.1660553,40.5823983],"type":"Point"},"name":"Potatopia"} +,{"_id":{"$oid":"55cba2476c522cafdb05911b"},"location":{"coordinates":[-73.98602029999999,40.7303486],"type":"Point"},"name":"Insomnia Cookies"} +,{"_id":{"$oid":"55cba2476c522cafdb05911c"},"location":{"coordinates":[-73.9161274,40.7002909],"type":"Point"},"name":"Boobietrap"} +,{"_id":{"$oid":"55cba2476c522cafdb05911d"},"location":{"coordinates":[-73.8495985,40.7334504],"type":"Point"},"name":"New Fan Shun Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05911e"},"location":{"coordinates":[-73.98979109999999,40.7293427],"type":"Point"},"name":"Ray'S Pizza Bagel Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05911f"},"location":{"coordinates":[-73.8249706,40.8807921],"type":"Point"},"name":"Hungry Howies"} +,{"_id":{"$oid":"55cba2476c522cafdb059120"},"location":{"coordinates":[-73.87565049999999,40.828877],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb059121"},"location":{"coordinates":[-74.1216104,40.61294110000001],"type":"Point"},"name":"Victory Cantina"} +,{"_id":{"$oid":"55cba2476c522cafdb059122"},"location":{"coordinates":[-73.8792813,40.7129166],"type":"Point"},"name":"Galleria Ice Cream"} +,{"_id":{"$oid":"55cba2476c522cafdb059123"},"location":{"coordinates":[-73.91399679999999,40.6343828],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb059124"},"location":{"coordinates":[-73.931951,40.651882],"type":"Point"},"name":"Silver Krust West Indian Restaurant \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb059125"},"location":{"coordinates":[-73.94409999999999,40.711173],"type":"Point"},"name":"Mi Casita Boriquena"} +,{"_id":{"$oid":"55cba2476c522cafdb059126"},"location":{"coordinates":[-74.023112,40.634756],"type":"Point"},"name":"Taste Of China"} +,{"_id":{"$oid":"55cba2476c522cafdb059127"},"location":{"coordinates":[-73.9500599,40.6530207],"type":"Point"},"name":"Crown Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb059128"},"location":{"coordinates":[-73.8910514,40.7472645],"type":"Point"},"name":"Basera Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb059129"},"location":{"coordinates":[-73.8861853,40.8574026],"type":"Point"},"name":"Simons'S"} +,{"_id":{"$oid":"55cba2476c522cafdb05912a"},"location":{"coordinates":[-73.94936720000001,40.6513678],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb05912b"},"location":{"coordinates":[-73.9594161,40.6542732],"type":"Point"},"name":"Tacos El Dorado"} +,{"_id":{"$oid":"55cba2476c522cafdb05912c"},"location":{"coordinates":[-73.79070209999999,40.7680794],"type":"Point"},"name":"Big Apple Chinese \u0026 Japanese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05912d"},"location":{"coordinates":[-74.008708,40.72638500000001],"type":"Point"},"name":"Il Principe"} +,{"_id":{"$oid":"55cba2476c522cafdb05912e"},"location":{"coordinates":[-73.846121,40.7828357],"type":"Point"},"name":"Genaro'S Pizzeria And Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05912f"},"location":{"coordinates":[-73.9845172,40.7205666],"type":"Point"},"name":"Ivan Ramen"} +,{"_id":{"$oid":"55cba2476c522cafdb059130"},"location":{"coordinates":[-73.91630549999999,40.7427176],"type":"Point"},"name":"Tito Rads Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb059131"},"location":{"coordinates":[-73.99803899999999,40.7448299],"type":"Point"},"name":"Bow Tie Cinemas"} +,{"_id":{"$oid":"55cba2476c522cafdb059132"},"location":{"coordinates":[-73.814846,40.763104],"type":"Point"},"name":"Hahm Ji Bach"} +,{"_id":{"$oid":"55cba2476c522cafdb059133"},"location":{"coordinates":[-73.7997187,40.7042655],"type":"Point"},"name":"Best Food Salad Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb059134"},"location":{"coordinates":[-73.9944099,40.7278533],"type":"Point"},"name":"Brazilia Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb059135"},"location":{"coordinates":[-73.9851719,40.73266539999999],"type":"Point"},"name":"Wicked Wolfe Bbq"} +,{"_id":{"$oid":"55cba2476c522cafdb059136"},"location":{"coordinates":[-73.94809819999999,40.6998241],"type":"Point"},"name":"Poulet Roti"} +,{"_id":{"$oid":"55cba2476c522cafdb059137"},"location":{"coordinates":[-73.9284993,40.6997181],"type":"Point"},"name":"Archie'S"} +,{"_id":{"$oid":"55cba2476c522cafdb059138"},"location":{"coordinates":[-73.948115,40.593214],"type":"Point"},"name":"Avenue X Pizza \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb059139"},"location":{"coordinates":[-74.0096671,40.6357038],"type":"Point"},"name":"Vivi Bubble Tea"} +,{"_id":{"$oid":"55cba2476c522cafdb05913a"},"location":{"coordinates":[-73.985011,40.71975800000001],"type":"Point"},"name":"Azasu"} +,{"_id":{"$oid":"55cba2476c522cafdb05913b"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"Qdoba Mexican Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb05913c"},"location":{"coordinates":[-74.1386361,40.6313139],"type":"Point"},"name":"Sabor A Mexico"} +,{"_id":{"$oid":"55cba2476c522cafdb05913d"},"location":{"coordinates":[-73.9826923,40.7420798],"type":"Point"},"name":"Kailash Parbat"} +,{"_id":{"$oid":"55cba2476c522cafdb05913e"},"location":{"coordinates":[-73.931648,40.665953],"type":"Point"},"name":"M \u0026 L Seafood Boutique"} +,{"_id":{"$oid":"55cba2476c522cafdb05913f"},"location":{"coordinates":[-74.00489689999999,40.7419343],"type":"Point"},"name":"Mokbar"} +,{"_id":{"$oid":"55cba2476c522cafdb059140"},"location":{"coordinates":[-73.854033,40.83025],"type":"Point"},"name":"Casa De Pan Inc"} +,{"_id":{"$oid":"55cba2476c522cafdb059141"},"location":{"coordinates":[-74.0074983,40.734147],"type":"Point"},"name":"The Elk"} +,{"_id":{"$oid":"55cba2476c522cafdb059142"},"location":{"coordinates":[-73.827011,40.831959],"type":"Point"},"name":"Mama Puebla"} +,{"_id":{"$oid":"55cba2476c522cafdb059143"},"location":{"coordinates":[-73.989166,40.729513],"type":"Point"},"name":"Klong"} +,{"_id":{"$oid":"55cba2476c522cafdb059144"},"location":{"coordinates":[-73.9032412,40.75367019999999],"type":"Point"},"name":"Tiny Delicatessen"} +,{"_id":{"$oid":"55cba2476c522cafdb059145"},"location":{"coordinates":[100.6177619,13.7085011],"type":"Point"},"name":"Lke Catering"} +,{"_id":{"$oid":"55cba2476c522cafdb059146"},"location":{"coordinates":[-73.990832,40.760329],"type":"Point"},"name":"I Heart Pizza Ny"} +,{"_id":{"$oid":"55cba2476c522cafdb059147"},"location":{"coordinates":[-73.8858746,40.7495791],"type":"Point"},"name":"Brothers Bubble Tea"} +,{"_id":{"$oid":"55cba2476c522cafdb059148"},"location":{"coordinates":[-73.9564959,40.7666603],"type":"Point"},"name":"Just Salad"} +,{"_id":{"$oid":"55cba2476c522cafdb059149"},"location":{"coordinates":[-73.9978514,40.7131789],"type":"Point"},"name":"Acccord Asian Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb05914a"},"location":{"coordinates":[-73.81882499999999,40.749953],"type":"Point"},"name":"Yu Garden Dumpling House"} +,{"_id":{"$oid":"55cba2476c522cafdb05914b"},"location":{"coordinates":[-74.0128356,40.6320372],"type":"Point"},"name":"Park Asia Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05914c"},"location":{"coordinates":[-73.9894516,40.7441817],"type":"Point"},"name":"Izakaya Nomad"} +,{"_id":{"$oid":"55cba2476c522cafdb05914d"},"location":{"coordinates":[-73.9749775,40.75801999999999],"type":"Point"},"name":"The New York Palace Hotel (4Th Floor Kitchen)"} +,{"_id":{"$oid":"55cba2476c522cafdb05914e"},"location":{"coordinates":[-73.97991569999999,40.6047982],"type":"Point"},"name":"Cafe Kiev"} +,{"_id":{"$oid":"55cba2476c522cafdb05914f"},"location":{"coordinates":[-73.98292839999999,40.735423],"type":"Point"},"name":"Mezcla Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb059150"},"location":{"coordinates":[-73.9749775,40.75801999999999],"type":"Point"},"name":"The New York Palace Hotel"} +,{"_id":{"$oid":"55cba2476c522cafdb059151"},"location":{"coordinates":[-73.957927,40.6712038],"type":"Point"},"name":"Pacificos Fine Foods"} +,{"_id":{"$oid":"55cba2476c522cafdb059152"},"location":{"coordinates":[-73.9749775,40.75801999999999],"type":"Point"},"name":"The New York Palace Hotel (C1 Level Cafeteria)"} +,{"_id":{"$oid":"55cba2476c522cafdb059153"},"location":{"coordinates":[-73.9749775,40.75801999999999],"type":"Point"},"name":"Lobby Lounge And Trouble'S Trust @ The Palace Hotel"} +,{"_id":{"$oid":"55cba2476c522cafdb059154"},"location":{"coordinates":[-73.8822758,40.8821545],"type":"Point"},"name":"Escape Restaurant \u0026 Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb059155"},"location":{"coordinates":[-73.97352939999999,40.74755070000001],"type":"Point"},"name":"Aki Sushi \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb059156"},"location":{"coordinates":[-73.89529019999999,40.7007175],"type":"Point"},"name":"Ltauha Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb059157"},"location":{"coordinates":[-73.9749775,40.75801999999999],"type":"Point"},"name":"Pomme Palais @ The Palace Hotel"} +,{"_id":{"$oid":"55cba2476c522cafdb059158"},"location":{"coordinates":[-74.0126296,40.7060086],"type":"Point"},"name":"Mary'S Dominican Cake"} +,{"_id":{"$oid":"55cba2476c522cafdb059159"},"location":{"coordinates":[-73.9991254,40.6047726],"type":"Point"},"name":"Ting Fai Cuisine Inc"} +,{"_id":{"$oid":"55cba2476c522cafdb05915a"},"location":{"coordinates":[-73.9487565,40.7125499],"type":"Point"},"name":"Okonomi"} +,{"_id":{"$oid":"55cba2476c522cafdb05915b"},"location":{"coordinates":[-73.9990855,40.7197299],"type":"Point"},"name":"Salon De Lafayette"} +,{"_id":{"$oid":"55cba2476c522cafdb05915c"},"location":{"coordinates":[-73.9753176,40.6966154],"type":"Point"},"name":"New Dragon Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05915d"},"location":{"coordinates":[-73.9622984,40.756994],"type":"Point"},"name":"Town Tennis Members Club"} +,{"_id":{"$oid":"55cba2476c522cafdb05915e"},"location":{"coordinates":[-73.953208,40.776404],"type":"Point"},"name":"Abaleh"} +,{"_id":{"$oid":"55cba2476c522cafdb05915f"},"location":{"coordinates":[-73.9742844,40.7638581],"type":"Point"},"name":"Beautique"} +,{"_id":{"$oid":"55cba2476c522cafdb059160"},"location":{"coordinates":[-73.94704,40.779526],"type":"Point"},"name":"Noodle Fun"} +,{"_id":{"$oid":"55cba2476c522cafdb059161"},"location":{"coordinates":[-73.9944272,40.6905172],"type":"Point"},"name":"Bagel Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb059162"},"location":{"coordinates":[-73.8578891,40.7282641],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb059163"},"location":{"coordinates":[-73.9858445,40.7478955],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb059164"},"location":{"coordinates":[-73.8952431,40.676116],"type":"Point"},"name":"Spring Garden Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb059165"},"location":{"coordinates":[-73.98620609999999,40.7326152],"type":"Point"},"name":"Viva Bubble Tea"} +,{"_id":{"$oid":"55cba2476c522cafdb059166"},"location":{"coordinates":[-73.95665989999999,40.7461666],"type":"Point"},"name":"Lic Landing By Coffeed"} +,{"_id":{"$oid":"55cba2476c522cafdb059167"},"location":{"coordinates":[-73.924409,40.701959],"type":"Point"},"name":"Joeseppi Pizzeria Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb059168"},"location":{"coordinates":[-74.005956,40.7114819],"type":"Point"},"name":"Denny'S"} +,{"_id":{"$oid":"55cba2476c522cafdb059169"},"location":{"coordinates":[-73.95301,40.587482],"type":"Point"},"name":"Anatolian Gyro Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05916a"},"location":{"coordinates":[-73.8849784,40.7555453],"type":"Point"},"name":"Theater Restaurant Blvd"} +,{"_id":{"$oid":"55cba2476c522cafdb05916b"},"location":{"coordinates":[-73.734422,40.664641],"type":"Point"},"name":"Secrets"} +,{"_id":{"$oid":"55cba2476c522cafdb05916c"},"location":{"coordinates":[-73.9946745,40.7208806],"type":"Point"},"name":"Black Seed"} +,{"_id":{"$oid":"55cba2476c522cafdb05916d"},"location":{"coordinates":[-73.9663231,40.683547],"type":"Point"},"name":"Bar 21 Inc"} +,{"_id":{"$oid":"55cba2476c522cafdb05916e"},"location":{"coordinates":[-73.86210299999999,40.749951],"type":"Point"},"name":"Burger King"} +,{"_id":{"$oid":"55cba2476c522cafdb05916f"},"location":{"coordinates":[-73.84603940000001,40.7203786],"type":"Point"},"name":"Austin Public"} +,{"_id":{"$oid":"55cba2476c522cafdb059170"},"location":{"coordinates":[-73.93971909999999,40.7499903],"type":"Point"},"name":"Plaza Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb059171"},"location":{"coordinates":[-73.8691643,40.7487954],"type":"Point"},"name":"El Rincon Criollo"} +,{"_id":{"$oid":"55cba2476c522cafdb059172"},"location":{"coordinates":[-73.926226,40.703558],"type":"Point"},"name":"Leos Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb059173"},"location":{"coordinates":[-74.00467499999999,40.7208416],"type":"Point"},"name":"Haus"} +,{"_id":{"$oid":"55cba2476c522cafdb059174"},"location":{"coordinates":[-73.9611369,40.6719058],"type":"Point"},"name":"The Local Ice Cream"} +,{"_id":{"$oid":"55cba2476c522cafdb059175"},"location":{"coordinates":[-73.855712,40.75181800000001],"type":"Point"},"name":"La Gitana # 2"} +,{"_id":{"$oid":"55cba2476c522cafdb059176"},"location":{"coordinates":[-73.9962453,40.7192886],"type":"Point"},"name":"Queen Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb059177"},"location":{"coordinates":[-73.967422,40.680753],"type":"Point"},"name":"Bar Chuko"} +,{"_id":{"$oid":"55cba2476c522cafdb059178"},"location":{"coordinates":[-74.00654519999999,40.7078797],"type":"Point"},"name":"Stout Nyc"} +,{"_id":{"$oid":"55cba2476c522cafdb059179"},"location":{"coordinates":[-73.978129,40.74622900000001],"type":"Point"},"name":"Zen Palate"} +,{"_id":{"$oid":"55cba2476c522cafdb05917a"},"location":{"coordinates":[-73.95910169999999,40.7169856],"type":"Point"},"name":"Delaware And Hudson"} +,{"_id":{"$oid":"55cba2476c522cafdb05917b"},"location":{"coordinates":[-73.9203486,40.6854922],"type":"Point"},"name":"Kaffe Kuppen"} +,{"_id":{"$oid":"55cba2476c522cafdb05917c"},"location":{"coordinates":[-73.7888464,40.7576246],"type":"Point"},"name":"Hashi Ramen \u0026 Izakaya"} +,{"_id":{"$oid":"55cba2476c522cafdb05917d"},"location":{"coordinates":[-73.829437,40.757178],"type":"Point"},"name":"Tianjin Dumpling House"} +,{"_id":{"$oid":"55cba2476c522cafdb05917e"},"location":{"coordinates":[-73.820628,40.702326],"type":"Point"},"name":"Esex Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb05917f"},"location":{"coordinates":[-73.98948299999999,40.719277],"type":"Point"},"name":"Blank"} +,{"_id":{"$oid":"55cba2476c522cafdb059180"},"location":{"coordinates":[-73.95004899999999,40.786592],"type":"Point"},"name":"Cucina Bene Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb059181"},"location":{"coordinates":[-73.914694,40.839337],"type":"Point"},"name":"Big Cheese Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb059182"},"location":{"coordinates":[-74.147103,40.624877],"type":"Point"},"name":"Chin Chin Palace 88 Inc"} +,{"_id":{"$oid":"55cba2476c522cafdb059183"},"location":{"coordinates":[-73.98454749999999,40.69146620000001],"type":"Point"},"name":"Jose O Shea'S/Starbucks"} +,{"_id":{"$oid":"55cba2476c522cafdb059184"},"location":{"coordinates":[-73.875694,40.828874],"type":"Point"},"name":"Star Billiards"} +,{"_id":{"$oid":"55cba2476c522cafdb059185"},"location":{"coordinates":[-73.96004889999999,40.7208272],"type":"Point"},"name":"Rough Trade"} +,{"_id":{"$oid":"55cba2476c522cafdb059186"},"location":{"coordinates":[-74.0748457,40.6255518],"type":"Point"},"name":"New Phoenix Palace"} +,{"_id":{"$oid":"55cba2476c522cafdb059187"},"location":{"coordinates":[-73.96127299999999,40.7146929],"type":"Point"},"name":"Salt + Charcoal"} +,{"_id":{"$oid":"55cba2476c522cafdb059188"},"location":{"coordinates":[-73.9524569,40.8000955],"type":"Point"},"name":"Que Rico Pollo Restaurant \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb059189"},"location":{"coordinates":[-73.9977569,40.719266],"type":"Point"},"name":"Baz Bagel And Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05918a"},"location":{"coordinates":[-73.907881,40.7029077],"type":"Point"},"name":"Nacho Libre Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb05918b"},"location":{"coordinates":[-73.979139,40.7855085],"type":"Point"},"name":"Greenforce Juice"} +,{"_id":{"$oid":"55cba2476c522cafdb05918c"},"location":{"coordinates":[-74.0154858,40.7130392],"type":"Point"},"name":"Sprinkles Cupcakes"} +,{"_id":{"$oid":"55cba2476c522cafdb05918d"},"location":{"coordinates":[-73.9749375,40.7522452],"type":"Point"},"name":"Starbucks 22420"} +,{"_id":{"$oid":"55cba2476c522cafdb05918e"},"location":{"coordinates":[-73.95590299999999,40.610107],"type":"Point"},"name":"Cafe Edelweiss"} +,{"_id":{"$oid":"55cba2476c522cafdb05918f"},"location":{"coordinates":[-73.975076,40.756419],"type":"Point"},"name":"Starbucks"} +,{"_id":{"$oid":"55cba2476c522cafdb059190"},"location":{"coordinates":[-73.9308932,40.6167337],"type":"Point"},"name":"Club Freeze"} +,{"_id":{"$oid":"55cba2476c522cafdb059191"},"location":{"coordinates":[-73.980682,40.660345],"type":"Point"},"name":"Sushi Yu"} +,{"_id":{"$oid":"55cba2476c522cafdb059192"},"location":{"coordinates":[-73.8855919,40.8618662],"type":"Point"},"name":"Faber \u0026 Fordham Unty"} +,{"_id":{"$oid":"55cba2476c522cafdb059193"},"location":{"coordinates":[-73.8933077,40.88300160000001],"type":"Point"},"name":"Sorento'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb059194"},"location":{"coordinates":[-73.97721779999999,40.7628745],"type":"Point"},"name":"Juice Press"} +,{"_id":{"$oid":"55cba2476c522cafdb059195"},"location":{"coordinates":[-74.0068953,40.70999219999999],"type":"Point"},"name":"Melt Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb059196"},"location":{"coordinates":[-74.009486,40.721764],"type":"Point"},"name":"Juice Press"} +,{"_id":{"$oid":"55cba2476c522cafdb059197"},"location":{"coordinates":[-73.95738709999999,40.6081274],"type":"Point"},"name":"Jin Sushi Asian Fusion"} +,{"_id":{"$oid":"55cba2476c522cafdb059198"},"location":{"coordinates":[-73.997378,40.718181],"type":"Point"},"name":"Vivi Bubble Tea"} +,{"_id":{"$oid":"55cba2476c522cafdb059199"},"location":{"coordinates":[-73.9098982,40.703983],"type":"Point"},"name":"Jep Breakfast On The Run"} +,{"_id":{"$oid":"55cba2476c522cafdb05919a"},"location":{"coordinates":[-73.9571449,40.6873361],"type":"Point"},"name":"Pns Soul Food"} +,{"_id":{"$oid":"55cba2476c522cafdb05919b"},"location":{"coordinates":[-73.9945592,40.7182597],"type":"Point"},"name":"Go Believe Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb05919c"},"location":{"coordinates":[-73.88515,40.747255],"type":"Point"},"name":"El Aventurero Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05919d"},"location":{"coordinates":[-73.8659078,40.7368625],"type":"Point"},"name":"Chubby Burger"} +,{"_id":{"$oid":"55cba2476c522cafdb05919e"},"location":{"coordinates":[-73.94117849999999,40.6842654],"type":"Point"},"name":"Anchor Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb05919f"},"location":{"coordinates":[-73.99158,40.7149031],"type":"Point"},"name":"Cochinita Dos"} +,{"_id":{"$oid":"55cba2476c522cafdb0591a0"},"location":{"coordinates":[-73.9093298,40.8752166],"type":"Point"},"name":"Kennedy Chicken \u0026 Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0591a1"},"location":{"coordinates":[-73.9914446,40.75219329999999],"type":"Point"},"name":"Madman Espresso"} +,{"_id":{"$oid":"55cba2476c522cafdb0591a2"},"location":{"coordinates":[-73.73468,40.6649249],"type":"Point"},"name":"Popeyes"} +,{"_id":{"$oid":"55cba2476c522cafdb0591a3"},"location":{"coordinates":[-74.00314089999999,40.6019616],"type":"Point"},"name":"Maxie Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0591a4"},"location":{"coordinates":[-73.8290939,40.759362],"type":"Point"},"name":"Yoz Shanghai (Booth 20)"} +,{"_id":{"$oid":"55cba2476c522cafdb0591a5"},"location":{"coordinates":[-73.9830566,40.7763129],"type":"Point"},"name":"Vanguard Wine Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0591a6"},"location":{"coordinates":[-73.886617,40.8168037],"type":"Point"},"name":"Pizza Shack"} +,{"_id":{"$oid":"55cba2476c522cafdb0591a7"},"location":{"coordinates":[-73.90512869999999,40.8586766],"type":"Point"},"name":"Hong Kong Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0591a8"},"location":{"coordinates":[-73.8067579,40.6984884],"type":"Point"},"name":"Isabel Bakery \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0591a9"},"location":{"coordinates":[-73.9250603,40.7689142],"type":"Point"},"name":"Caffino"} +,{"_id":{"$oid":"55cba2476c522cafdb0591aa"},"location":{"coordinates":[-73.9504046,40.656581],"type":"Point"},"name":"King Wok Taco Grill."} +,{"_id":{"$oid":"55cba2476c522cafdb0591ab"},"location":{"coordinates":[-74.0005968,40.6009756],"type":"Point"},"name":"Pino'S"} +,{"_id":{"$oid":"55cba2476c522cafdb0591ac"},"location":{"coordinates":[-73.9727916,40.75165579999999],"type":"Point"},"name":"Tsushima"} +,{"_id":{"$oid":"55cba2476c522cafdb0591ad"},"location":{"coordinates":[-73.997603,40.716454],"type":"Point"},"name":"Subway Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0591ae"},"location":{"coordinates":[-73.9975094,40.7462078],"type":"Point"},"name":"Subway Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0591af"},"location":{"coordinates":[-73.92148019999999,40.8401718],"type":"Point"},"name":"Budda"} +,{"_id":{"$oid":"55cba2476c522cafdb0591b0"},"location":{"coordinates":[-73.96050699999999,40.7124359],"type":"Point"},"name":"Beehive Oven"} +,{"_id":{"$oid":"55cba2476c522cafdb0591b1"},"location":{"coordinates":[-74.0044388,40.6342349],"type":"Point"},"name":"Happy Family"} +,{"_id":{"$oid":"55cba2476c522cafdb0591b2"},"location":{"coordinates":[-73.9608522,40.80740240000001],"type":"Point"},"name":"Nous Espresso Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0591b3"},"location":{"coordinates":[-73.9911656,40.7428563],"type":"Point"},"name":"Cafe El Presidente"} +,{"_id":{"$oid":"55cba2476c522cafdb0591b4"},"location":{"coordinates":[-73.9723925,40.7862864],"type":"Point"},"name":"Vive La Crepe"} +,{"_id":{"$oid":"55cba2476c522cafdb0591b5"},"location":{"coordinates":[-73.908272,40.774101],"type":"Point"},"name":"36-02 Ditmars Coffee Corp."} +,{"_id":{"$oid":"55cba2476c522cafdb0591b6"},"location":{"coordinates":[-73.96947899999999,40.7566739],"type":"Point"},"name":"Hilton Garden Inn- Manhattan- Midtown East"} +,{"_id":{"$oid":"55cba2476c522cafdb0591b7"},"location":{"coordinates":[-73.8506386,40.8310655],"type":"Point"},"name":"Gp Smoothies \u0026 Giftshop"} +,{"_id":{"$oid":"55cba2476c522cafdb0591b8"},"location":{"coordinates":[-73.85130749999999,40.834065],"type":"Point"},"name":"Blimpies"} +,{"_id":{"$oid":"55cba2476c522cafdb0591b9"},"location":{"coordinates":[-73.9576403,40.642171],"type":"Point"},"name":"Wing Hing Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0591ba"},"location":{"coordinates":[-73.9939538,40.7030151],"type":"Point"},"name":"Shake Shack"} +,{"_id":{"$oid":"55cba2476c522cafdb0591bb"},"location":{"coordinates":[-73.8315499,40.764769],"type":"Point"},"name":"Kato Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0591bc"},"location":{"coordinates":[-73.9537325,40.6382757],"type":"Point"},"name":"Shake Shack"} +,{"_id":{"$oid":"55cba2476c522cafdb0591bd"},"location":{"coordinates":[-73.996737,40.7533],"type":"Point"},"name":"Scarpetta"} +,{"_id":{"$oid":"55cba2476c522cafdb0591be"},"location":{"coordinates":[-74.00421279999999,40.7192882],"type":"Point"},"name":"Anejo Tribeca"} +,{"_id":{"$oid":"55cba2476c522cafdb0591bf"},"location":{"coordinates":[-74.0156618,40.71137470000001],"type":"Point"},"name":"Umami Burger"} +,{"_id":{"$oid":"55cba2476c522cafdb0591c0"},"location":{"coordinates":[-73.9183104,40.7394314],"type":"Point"},"name":"Kokoroko Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0591c1"},"location":{"coordinates":[-73.920332,40.643168],"type":"Point"},"name":"Galaxy Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0591c2"},"location":{"coordinates":[-73.9020704,40.6996016],"type":"Point"},"name":"La Bella Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0591c3"},"location":{"coordinates":[-73.96122,40.594153],"type":"Point"},"name":"Chateau De Captain"} +,{"_id":{"$oid":"55cba2476c522cafdb0591c4"},"location":{"coordinates":[-73.9034092,40.8288488],"type":"Point"},"name":"Roma Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0591c5"},"location":{"coordinates":[-73.96938589999999,40.6929373],"type":"Point"},"name":"Myrtle Bagel"} +,{"_id":{"$oid":"55cba2476c522cafdb0591c6"},"location":{"coordinates":[-73.98960919999999,40.7341085],"type":"Point"},"name":"Liquiteria"} +,{"_id":{"$oid":"55cba2476c522cafdb0591c7"},"location":{"coordinates":[-74.009317,40.6388109],"type":"Point"},"name":"Tokyo Ya"} +,{"_id":{"$oid":"55cba2476c522cafdb0591c8"},"location":{"coordinates":[-74.0049928,40.745962],"type":"Point"},"name":"High Line Hotel"} +,{"_id":{"$oid":"55cba2476c522cafdb0591c9"},"location":{"coordinates":[-73.866109,40.76108],"type":"Point"},"name":"Jamaica Breeze Nyc"} +,{"_id":{"$oid":"55cba2476c522cafdb0591ca"},"location":{"coordinates":[-73.986646,40.7264594],"type":"Point"},"name":"The Eddy"} +,{"_id":{"$oid":"55cba2476c522cafdb0591cb"},"location":{"coordinates":[-73.9898074,40.71971509999999],"type":"Point"},"name":"Russ \u0026 Daughters Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0591cc"},"location":{"coordinates":[-73.968722,40.753969],"type":"Point"},"name":"Nishida Sho-Ten"} +,{"_id":{"$oid":"55cba2476c522cafdb0591cd"},"location":{"coordinates":[-73.95993480000001,40.57771779999999],"type":"Point"},"name":"Broadwalk Billiards"} +,{"_id":{"$oid":"55cba2476c522cafdb0591ce"},"location":{"coordinates":[-73.9104145,40.88068550000001],"type":"Point"},"name":"Blackstone Bar And Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0591cf"},"location":{"coordinates":[-73.9700186,40.7599714],"type":"Point"},"name":"A Le Baguette/ Cafe Olympia"} +,{"_id":{"$oid":"55cba2476c522cafdb0591d0"},"location":{"coordinates":[-73.97407749999999,40.7516428],"type":"Point"},"name":"Wok To Walk"} +,{"_id":{"$oid":"55cba2476c522cafdb0591d1"},"location":{"coordinates":[-73.8312609,40.6999021],"type":"Point"},"name":"Kennedy Fried Chicken \u0026 Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0591d2"},"location":{"coordinates":[-73.8308029,40.7629604],"type":"Point"},"name":"Full Moon Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0591d3"},"location":{"coordinates":[-74.0050107,40.7161534],"type":"Point"},"name":"Burger King"} +,{"_id":{"$oid":"55cba2476c522cafdb0591d4"},"location":{"coordinates":[-73.9680796,40.8027819],"type":"Point"},"name":"Da Ponte"} +,{"_id":{"$oid":"55cba2476c522cafdb0591d5"},"location":{"coordinates":[-73.9930281,40.7481179],"type":"Point"},"name":"Vlife"} +,{"_id":{"$oid":"55cba2476c522cafdb0591d6"},"location":{"coordinates":[-73.97752799999999,40.671327],"type":"Point"},"name":"Grand Canyon Diner"} +,{"_id":{"$oid":"55cba2476c522cafdb0591d7"},"location":{"coordinates":[-73.9800659,40.75591],"type":"Point"},"name":"Hung Yip Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0591d8"},"location":{"coordinates":[-73.73461189999999,40.6646886],"type":"Point"},"name":"China Gourmet Food Inc"} +,{"_id":{"$oid":"55cba2476c522cafdb0591d9"},"location":{"coordinates":[-73.99664899999999,40.7474878],"type":"Point"},"name":"Song Kran Thai"} +,{"_id":{"$oid":"55cba2476c522cafdb0591da"},"location":{"coordinates":[-73.99488219999999,40.7142098],"type":"Point"},"name":"China Local Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb0591db"},"location":{"coordinates":[-74.01236449999999,40.7031044],"type":"Point"},"name":"Pearl Street Hampton Inn"} +,{"_id":{"$oid":"55cba2476c522cafdb0591dc"},"location":{"coordinates":[-74.0094471,40.7464969],"type":"Point"},"name":"L'Arte Del Gelato"} +,{"_id":{"$oid":"55cba2476c522cafdb0591dd"},"location":{"coordinates":[-73.933026,40.75307400000001],"type":"Point"},"name":"Pa' Chango"} +,{"_id":{"$oid":"55cba2476c522cafdb0591de"},"location":{"coordinates":[-73.829437,40.757178],"type":"Point"},"name":"Halal Bbq Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb0591df"},"location":{"coordinates":[-73.8816762,40.8310311],"type":"Point"},"name":"Happy Life"} +,{"_id":{"$oid":"55cba2476c522cafdb0591e0"},"location":{"coordinates":[-74.02615399999999,40.621977],"type":"Point"},"name":"Hibachi Master"} +,{"_id":{"$oid":"55cba2476c522cafdb0591e1"},"location":{"coordinates":[-73.9113575,40.76891010000001],"type":"Point"},"name":"Republic Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0591e2"},"location":{"coordinates":[-73.780203,40.678855],"type":"Point"},"name":"Popeyes"} +,{"_id":{"$oid":"55cba2476c522cafdb0591e3"},"location":{"coordinates":[-74.146222,40.541514],"type":"Point"},"name":"Amici Brick Oven Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0591e4"},"location":{"coordinates":[-73.920014,40.866401],"type":"Point"},"name":"Cana Y Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb0591e5"},"location":{"coordinates":[-74.0156618,40.71137470000001],"type":"Point"},"name":"Num Pang Sandwich Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb0591e6"},"location":{"coordinates":[-73.94346519999999,40.6004673],"type":"Point"},"name":"La Trattoria"} +,{"_id":{"$oid":"55cba2476c522cafdb0591e7"},"location":{"coordinates":[-73.830917,40.699302],"type":"Point"},"name":"Cbar \u0026 Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb0591e8"},"location":{"coordinates":[-73.89910720000002,40.8541195],"type":"Point"},"name":"Bambino'S Pizza \u0026 Burgers"} +,{"_id":{"$oid":"55cba2476c522cafdb0591e9"},"location":{"coordinates":[-73.9845193,40.7206127],"type":"Point"},"name":"Rosella Coffee Shop"} +,{"_id":{"$oid":"55cba2476c522cafdb0591ea"},"location":{"coordinates":[-73.9985675,40.7200616],"type":"Point"},"name":"Saha Bistro"} +,{"_id":{"$oid":"55cba2476c522cafdb0591eb"},"location":{"coordinates":[-73.797263,40.7040122],"type":"Point"},"name":"Le Bistro Creole"} +,{"_id":{"$oid":"55cba2476c522cafdb0591ec"},"location":{"coordinates":[-73.960205,40.761527],"type":"Point"},"name":"Casa Anfa Inc"} +,{"_id":{"$oid":"55cba2476c522cafdb0591ed"},"location":{"coordinates":[-73.992283,40.7633732],"type":"Point"},"name":"Pocket Bar Nyc"} +,{"_id":{"$oid":"55cba2476c522cafdb0591ee"},"location":{"coordinates":[-73.9720059,40.67699700000001],"type":"Point"},"name":"Gran Castillo De Jagua Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0591ef"},"location":{"coordinates":[-73.9202193,40.5585862],"type":"Point"},"name":"The Lighthouse Kitchen And Catering"} +,{"_id":{"$oid":"55cba2476c522cafdb0591f0"},"location":{"coordinates":[-73.9875686,40.7658134],"type":"Point"},"name":"Annabel"} +,{"_id":{"$oid":"55cba2476c522cafdb0591f1"},"location":{"coordinates":[-73.9151558,40.7636707],"type":"Point"},"name":"Kinship Coffee"} +,{"_id":{"$oid":"55cba2476c522cafdb0591f2"},"location":{"coordinates":[-73.9628439,40.614114],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0591f3"},"location":{"coordinates":[-73.9584538,40.7151359],"type":"Point"},"name":"San Loco"} +,{"_id":{"$oid":"55cba2476c522cafdb0591f4"},"location":{"coordinates":[-73.9877985,40.7296098],"type":"Point"},"name":"Robataya"} +,{"_id":{"$oid":"55cba2476c522cafdb0591f5"},"location":{"coordinates":[-73.93091799999999,40.668023],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2476c522cafdb0591f6"},"location":{"coordinates":[-73.90779370000001,40.8362208],"type":"Point"},"name":"Wo Kai Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0591f7"},"location":{"coordinates":[-73.930983,40.84856000000001],"type":"Point"},"name":"La Regi Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0591f8"},"location":{"coordinates":[-73.7949644,40.7079174],"type":"Point"},"name":"Queens Library Employee Cafeteria"} +,{"_id":{"$oid":"55cba2476c522cafdb0591f9"},"location":{"coordinates":[-73.9209837,40.743583],"type":"Point"},"name":"Cafe Bene"} +,{"_id":{"$oid":"55cba2476c522cafdb0591fa"},"location":{"coordinates":[-73.8017089,40.7057974],"type":"Point"},"name":"Feng'S Garden Restaurant Chinese Food Take Out"} +,{"_id":{"$oid":"55cba2476c522cafdb0591fb"},"location":{"coordinates":[-74.01014839999999,40.7086662],"type":"Point"},"name":"Harper Collins"} +,{"_id":{"$oid":"55cba2476c522cafdb0591fc"},"location":{"coordinates":[-73.96813399999999,40.7598639],"type":"Point"},"name":"Jersey Mikes Subs"} +,{"_id":{"$oid":"55cba2476c522cafdb0591fd"},"location":{"coordinates":[-73.8645755,40.8800323],"type":"Point"},"name":"A\u0026M Westindies American Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0591fe"},"location":{"coordinates":[-73.80314109999999,40.7080288],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb0591ff"},"location":{"coordinates":[-73.983002,40.694574],"type":"Point"},"name":"Forno Rosso Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb059200"},"location":{"coordinates":[-73.8323801,40.6842653],"type":"Point"},"name":"Liberty Pool And Sports Hall"} +,{"_id":{"$oid":"55cba2476c522cafdb059201"},"location":{"coordinates":[-73.9786361,40.720461],"type":"Point"},"name":"Royal Fried Chicken Inc"} +,{"_id":{"$oid":"55cba2476c522cafdb059202"},"location":{"coordinates":[-73.7025273,40.7517463],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb059203"},"location":{"coordinates":[-73.8952891,40.7007176],"type":"Point"},"name":"Crown Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb059204"},"location":{"coordinates":[-73.9813209,40.7294425],"type":"Point"},"name":"Fat Sal'S"} +,{"_id":{"$oid":"55cba2476c522cafdb059205"},"location":{"coordinates":[-73.798991,40.708534],"type":"Point"},"name":"Kabul Express Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb059206"},"location":{"coordinates":[-73.96725900000001,40.757059],"type":"Point"},"name":"A Plus Thai Place"} +,{"_id":{"$oid":"55cba2476c522cafdb059207"},"location":{"coordinates":[-73.9213271,40.699972],"type":"Point"},"name":"Las Lunitas"} +,{"_id":{"$oid":"55cba2476c522cafdb059208"},"location":{"coordinates":[-73.998419,40.716238],"type":"Point"},"name":"Big Wong Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb059209"},"location":{"coordinates":[-73.91312099999999,40.70038],"type":"Point"},"name":"Viannely Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05920a"},"location":{"coordinates":[-73.930167,40.700629],"type":"Point"},"name":"Central Station"} +,{"_id":{"$oid":"55cba2476c522cafdb05920b"},"location":{"coordinates":[-74.0067516,40.7331756],"type":"Point"},"name":"Rivoli Pizza Ii"} +,{"_id":{"$oid":"55cba2476c522cafdb05920c"},"location":{"coordinates":[-73.9938279,40.633749],"type":"Point"},"name":"J Ii 13Th Avenue Pizza Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05920d"},"location":{"coordinates":[-74.00050449999999,40.7188977],"type":"Point"},"name":"Hot Fresh Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05920e"},"location":{"coordinates":[-73.98317159999999,40.57667910000001],"type":"Point"},"name":"Golden Krust"} +,{"_id":{"$oid":"55cba2476c522cafdb05920f"},"location":{"coordinates":[-73.94329069999999,40.7190981],"type":"Point"},"name":"Ringolevio"} +,{"_id":{"$oid":"55cba2476c522cafdb059210"},"location":{"coordinates":[-73.75776379999999,40.6656054],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb059211"},"location":{"coordinates":[-73.943418,40.701867],"type":"Point"},"name":"Broadway Gourmet Deli \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb059212"},"location":{"coordinates":[-73.96346199999999,40.7989113],"type":"Point"},"name":"Pie Pie Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb059213"},"location":{"coordinates":[-73.9498866,40.6342546],"type":"Point"},"name":"Rashel Crown Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb059214"},"location":{"coordinates":[-73.886309,40.716824],"type":"Point"},"name":"Villa Erasamo"} +,{"_id":{"$oid":"55cba2476c522cafdb059215"},"location":{"coordinates":[-73.9802678,40.6049969],"type":"Point"},"name":"Pio Pio Brooklyn"} +,{"_id":{"$oid":"55cba2476c522cafdb059216"},"location":{"coordinates":[-73.8467768,40.720751],"type":"Point"},"name":"Kung Fu Tea"} +,{"_id":{"$oid":"55cba2476c522cafdb059217"},"location":{"coordinates":[-73.92475019999999,40.6190846],"type":"Point"},"name":"Kam Fung Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb059218"},"location":{"coordinates":[-73.93406569999999,40.753023],"type":"Point"},"name":"Home 2 Suites By Hilton"} +,{"_id":{"$oid":"55cba2476c522cafdb059219"},"location":{"coordinates":[-73.91753,40.741195],"type":"Point"},"name":"Gakyi Zompe Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05921a"},"location":{"coordinates":[-73.9071562,40.84456],"type":"Point"},"name":"Jiang'S Family Restaurant Inc"} +,{"_id":{"$oid":"55cba2476c522cafdb05921b"},"location":{"coordinates":[-73.98993469999999,40.7312049],"type":"Point"},"name":"City Of Saints Coffee Roasters"} +,{"_id":{"$oid":"55cba2476c522cafdb05921c"},"location":{"coordinates":[-74.00018020000002,40.6364694],"type":"Point"},"name":"Alleluia Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05921d"},"location":{"coordinates":[-73.989909,40.7629453],"type":"Point"},"name":"Pam Thai 49"} +,{"_id":{"$oid":"55cba2476c522cafdb05921e"},"location":{"coordinates":[-74.2078085,40.5427718],"type":"Point"},"name":"Misake Sushi"} +,{"_id":{"$oid":"55cba2476c522cafdb05921f"},"location":{"coordinates":[-73.9864053,40.6920086],"type":"Point"},"name":"Pio Bagel"} +,{"_id":{"$oid":"55cba2476c522cafdb059220"},"location":{"coordinates":[-74.163557,40.6083314],"type":"Point"},"name":"Red Ginger"} +,{"_id":{"$oid":"55cba2476c522cafdb059221"},"location":{"coordinates":[-73.9461862,40.6245893],"type":"Point"},"name":"Ramis Pizza Corp"} +,{"_id":{"$oid":"55cba2476c522cafdb059222"},"location":{"coordinates":[-73.871905,40.84158],"type":"Point"},"name":"El Rinconsito Latino Restaurant Corp"} +,{"_id":{"$oid":"55cba2476c522cafdb059223"},"location":{"coordinates":[-73.990113,40.7469057],"type":"Point"},"name":"Humphrey"} +,{"_id":{"$oid":"55cba2476c522cafdb059224"},"location":{"coordinates":[-73.9272977,40.81822409999999],"type":"Point"},"name":"Hostos Community College"} +,{"_id":{"$oid":"55cba2476c522cafdb059225"},"location":{"coordinates":[-74.0092289,40.7089607],"type":"Point"},"name":"Holiday Inn New York City - Wall Street"} +,{"_id":{"$oid":"55cba2476c522cafdb059226"},"location":{"coordinates":[-73.9418378,40.6758356],"type":"Point"},"name":"Crown Fried Chicken \u0026 Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb059227"},"location":{"coordinates":[-73.9313107,40.8593607],"type":"Point"},"name":"Maranello Trattoria"} +,{"_id":{"$oid":"55cba2476c522cafdb059228"},"location":{"coordinates":[-73.85685699999999,40.87403],"type":"Point"},"name":"Olive'S Homespice Cuisine Inc"} +,{"_id":{"$oid":"55cba2476c522cafdb059229"},"location":{"coordinates":[-73.91388300000001,40.696466],"type":"Point"},"name":"Savoy Cafe \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb05922a"},"location":{"coordinates":[-73.98309499999999,40.6466259],"type":"Point"},"name":"Fina Pizza Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb05922b"},"location":{"coordinates":[-73.9599282,40.7624285],"type":"Point"},"name":"16 Handles"} +,{"_id":{"$oid":"55cba2476c522cafdb05922c"},"location":{"coordinates":[-73.9403214,40.8367189],"type":"Point"},"name":"El Palacio Seafood Market"} +,{"_id":{"$oid":"55cba2476c522cafdb05922d"},"location":{"coordinates":[-73.902558,40.7475102],"type":"Point"},"name":"Blue Cups"} +,{"_id":{"$oid":"55cba2476c522cafdb05922e"},"location":{"coordinates":[-73.9995441,40.7151571],"type":"Point"},"name":"Sharkey'S Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05922f"},"location":{"coordinates":[-73.9421715,40.8172179],"type":"Point"},"name":"Island Spice And Southern Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb059230"},"location":{"coordinates":[-73.8215483,40.7569208],"type":"Point"},"name":"Cheng'S Oriental Express"} +,{"_id":{"$oid":"55cba2476c522cafdb059231"},"location":{"coordinates":[-73.98032719999999,40.7579779],"type":"Point"},"name":"Spice Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb059232"},"location":{"coordinates":[-73.8196363,40.677519],"type":"Point"},"name":"George Town And Kingston Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb059233"},"location":{"coordinates":[-73.9678758,40.7612661],"type":"Point"},"name":"Antique Cafe \u0026 Bakery Iii Inc"} +,{"_id":{"$oid":"55cba2476c522cafdb059234"},"location":{"coordinates":[-74.0009087,40.7358109],"type":"Point"},"name":"Bluestone Lane Collective Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb059235"},"location":{"coordinates":[-73.92581,40.702775],"type":"Point"},"name":"El Gran Malecon Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb059236"},"location":{"coordinates":[-73.97967919999999,40.7226264],"type":"Point"},"name":"Casa Adela Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb059237"},"location":{"coordinates":[-73.9032,40.75396],"type":"Point"},"name":"Buffet 58"} +,{"_id":{"$oid":"55cba2476c522cafdb059238"},"location":{"coordinates":[-73.9959672,40.7331929],"type":"Point"},"name":"Claudette"} +,{"_id":{"$oid":"55cba2476c522cafdb059239"},"location":{"coordinates":[-73.983035,40.6119332],"type":"Point"},"name":"Vivi"} +,{"_id":{"$oid":"55cba2476c522cafdb05923a"},"location":{"coordinates":[-73.9565389,40.683385],"type":"Point"},"name":"Calaca"} +,{"_id":{"$oid":"55cba2476c522cafdb05923b"},"location":{"coordinates":[-73.8204377,40.71987559999999],"type":"Point"},"name":"Kosher Pizzamania Corp"} +,{"_id":{"$oid":"55cba2476c522cafdb05923c"},"location":{"coordinates":[-73.9889712,40.753233],"type":"Point"},"name":"Hestia Marketplace"} +,{"_id":{"$oid":"55cba2476c522cafdb05923d"},"location":{"coordinates":[-74.009222,40.6463653],"type":"Point"},"name":"Yofresh New York"} +,{"_id":{"$oid":"55cba2476c522cafdb05923e"},"location":{"coordinates":[-73.9874097,40.7362709],"type":"Point"},"name":"Dear Irving"} +,{"_id":{"$oid":"55cba2476c522cafdb05923f"},"location":{"coordinates":[-73.968493,40.7594939],"type":"Point"},"name":"Toasties"} +,{"_id":{"$oid":"55cba2476c522cafdb059240"},"location":{"coordinates":[-74.0038629,40.7323213],"type":"Point"},"name":"The Garret"} +,{"_id":{"$oid":"55cba2476c522cafdb059241"},"location":{"coordinates":[-74.0060306,40.655479],"type":"Point"},"name":"Taksim Square 3"} +,{"_id":{"$oid":"55cba2476c522cafdb059242"},"location":{"coordinates":[-73.9944062,40.7173392],"type":"Point"},"name":"First House Garden"} +,{"_id":{"$oid":"55cba2476c522cafdb059243"},"location":{"coordinates":[-73.895149,40.8340785],"type":"Point"},"name":"Chez Amina"} +,{"_id":{"$oid":"55cba2476c522cafdb059244"},"location":{"coordinates":[-73.99021359999999,40.72673500000001],"type":"Point"},"name":"Oddfellows Ice Cream"} +,{"_id":{"$oid":"55cba2476c522cafdb059245"},"location":{"coordinates":[-73.9387754,40.8368408],"type":"Point"},"name":"J\u0026Ms Fish And Shrimp Restaurant Spot Inc"} +,{"_id":{"$oid":"55cba2476c522cafdb059246"},"location":{"coordinates":[-74.003558,40.624316],"type":"Point"},"name":"Blaze Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb059247"},"location":{"coordinates":[-73.965287,40.76576900000001],"type":"Point"},"name":"Le Pain Quotidien"} +,{"_id":{"$oid":"55cba2476c522cafdb059248"},"location":{"coordinates":[-74.0057703,40.63882880000001],"type":"Point"},"name":"Nyonya"} +,{"_id":{"$oid":"55cba2476c522cafdb059249"},"location":{"coordinates":[-73.82827309999999,40.76332559999999],"type":"Point"},"name":"Jang Bak Bbq"} +,{"_id":{"$oid":"55cba2476c522cafdb05924a"},"location":{"coordinates":[-73.770375,40.659013],"type":"Point"},"name":"B C Asian Fusion"} +,{"_id":{"$oid":"55cba2476c522cafdb05924b"},"location":{"coordinates":[-73.8918897,40.7594109],"type":"Point"},"name":"Asian Chao"} +,{"_id":{"$oid":"55cba2476c522cafdb05924c"},"location":{"coordinates":[-73.88481440000001,40.8424091],"type":"Point"},"name":"Mothers Cooking Pedro"} +,{"_id":{"$oid":"55cba2476c522cafdb05924d"},"location":{"coordinates":[-73.9554884,40.6808102],"type":"Point"},"name":"V Bar Eatery"} +,{"_id":{"$oid":"55cba2476c522cafdb05924e"},"location":{"coordinates":[-74.0076775,40.7268282],"type":"Point"},"name":"Just Salad"} +,{"_id":{"$oid":"55cba2476c522cafdb05924f"},"location":{"coordinates":[-73.9819825,40.7385763],"type":"Point"},"name":"Mooks"} +,{"_id":{"$oid":"55cba2476c522cafdb059250"},"location":{"coordinates":[-73.73536469999999,40.7709321],"type":"Point"},"name":"Little Neck Shanghai \u0026 Taiwanese Cuisine"} +,{"_id":{"$oid":"55cba2476c522cafdb059251"},"location":{"coordinates":[-73.9918936,40.7347292],"type":"Point"},"name":"Be Juice"} +,{"_id":{"$oid":"55cba2476c522cafdb059252"},"location":{"coordinates":[-73.928888,40.680736],"type":"Point"},"name":"Daddy Greens"} +,{"_id":{"$oid":"55cba2476c522cafdb059253"},"location":{"coordinates":[-73.8830701,40.8050442],"type":"Point"},"name":"Mexican Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb059254"},"location":{"coordinates":[-73.96810169999999,40.7619363],"type":"Point"},"name":"Bloomberg 731 Lex"} +,{"_id":{"$oid":"55cba2476c522cafdb059255"},"location":{"coordinates":[-73.8861256,40.6792692],"type":"Point"},"name":"La Gran Nagua Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb059256"},"location":{"coordinates":[-73.9783556,40.7517259],"type":"Point"},"name":"Bloomberg 120 Park"} +,{"_id":{"$oid":"55cba2476c522cafdb059257"},"location":{"coordinates":[-73.9355578,40.7427897],"type":"Point"},"name":"Juice Press Super Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb059258"},"location":{"coordinates":[-73.87344399999999,40.742747],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb059259"},"location":{"coordinates":[-73.95295999999999,40.694685],"type":"Point"},"name":"Anaiah Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05925a"},"location":{"coordinates":[-73.829588,40.68504],"type":"Point"},"name":"Trini Gyul Original Roti \u0026 West Indian Food"} +,{"_id":{"$oid":"55cba2476c522cafdb05925b"},"location":{"coordinates":[-73.8739659,40.7769271],"type":"Point"},"name":"The Centurion Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb05925c"},"location":{"coordinates":[-74.00799169999999,40.7257574],"type":"Point"},"name":"Union Bar \u0026 Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb05925d"},"location":{"coordinates":[-73.9852801,40.7639193],"type":"Point"},"name":"China Gourmet"} +,{"_id":{"$oid":"55cba2476c522cafdb05925e"},"location":{"coordinates":[-73.908631,40.834751],"type":"Point"},"name":"Oda Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05925f"},"location":{"coordinates":[-74.1481831,40.6249816],"type":"Point"},"name":"Yum Yum Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb059260"},"location":{"coordinates":[-73.9101826,40.68286459999999],"type":"Point"},"name":"Island Vybz Jamaican Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb059261"},"location":{"coordinates":[-73.990995,40.76215],"type":"Point"},"name":"Al Horno Lean Mexican Kitchen Inc"} +,{"_id":{"$oid":"55cba2476c522cafdb059262"},"location":{"coordinates":[-73.999642,40.720078],"type":"Point"},"name":"Thai Angel"} +,{"_id":{"$oid":"55cba2476c522cafdb059263"},"location":{"coordinates":[-73.943201,40.7941379],"type":"Point"},"name":"El Chevere Cuchifritos Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb059264"},"location":{"coordinates":[-73.95737,40.776638],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb059265"},"location":{"coordinates":[-73.9611048,40.8013085],"type":"Point"},"name":"Hunan Chen'S Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb059266"},"location":{"coordinates":[-73.990707,40.751651],"type":"Point"},"name":"John Sullivan'S Pub"} +,{"_id":{"$oid":"55cba2476c522cafdb059267"},"location":{"coordinates":[-73.914608,40.634973],"type":"Point"},"name":"Wendy'S"} +,{"_id":{"$oid":"55cba2476c522cafdb059268"},"location":{"coordinates":[-73.8069062,40.7924397],"type":"Point"},"name":"New Hong Kong"} +,{"_id":{"$oid":"55cba2476c522cafdb059269"},"location":{"coordinates":[-73.8637689,40.8326324],"type":"Point"},"name":"Isla Verde Express"} +,{"_id":{"$oid":"55cba2476c522cafdb05926a"},"location":{"coordinates":[-73.9145607,40.6485484],"type":"Point"},"name":"Wendy'S"} +,{"_id":{"$oid":"55cba2476c522cafdb05926b"},"location":{"coordinates":[-73.800596,40.7035259],"type":"Point"},"name":"Wendy'S"} +,{"_id":{"$oid":"55cba2476c522cafdb05926c"},"location":{"coordinates":[-73.8591537,40.7120485],"type":"Point"},"name":"Wendy'S"} +,{"_id":{"$oid":"55cba2476c522cafdb05926d"},"location":{"coordinates":[-74.0040077,40.6078198],"type":"Point"},"name":"China City"} +,{"_id":{"$oid":"55cba2476c522cafdb05926e"},"location":{"coordinates":[-73.98947249999999,40.7166424],"type":"Point"},"name":"New Season Restaurant Inc"} +,{"_id":{"$oid":"55cba2476c522cafdb05926f"},"location":{"coordinates":[-73.926778,40.6189568],"type":"Point"},"name":"Gracies Pizzeria"} +,{"_id":{"$oid":"55cba2476c522cafdb059270"},"location":{"coordinates":[-73.9165517,40.761576],"type":"Point"},"name":"Wendy'S"} +,{"_id":{"$oid":"55cba2476c522cafdb059271"},"location":{"coordinates":[-73.7611369,40.7612677],"type":"Point"},"name":"Wendy'S"} +,{"_id":{"$oid":"55cba2476c522cafdb059272"},"location":{"coordinates":[-73.9006151,40.7143336],"type":"Point"},"name":"Wendy'S"} +,{"_id":{"$oid":"55cba2476c522cafdb059273"},"location":{"coordinates":[-73.92128579999999,40.8721452],"type":"Point"},"name":"La Excelencia Empanadas Monumental"} +,{"_id":{"$oid":"55cba2476c522cafdb059274"},"location":{"coordinates":[-73.8968711,40.7541298],"type":"Point"},"name":"Wendy'S"} +,{"_id":{"$oid":"55cba2476c522cafdb059275"},"location":{"coordinates":[-73.8357401,40.7688868],"type":"Point"},"name":"Wendy'S"} +,{"_id":{"$oid":"55cba2476c522cafdb059276"},"location":{"coordinates":[-73.954853,40.640097],"type":"Point"},"name":"Curry Spot"} +,{"_id":{"$oid":"55cba2476c522cafdb059277"},"location":{"coordinates":[-73.9633767,40.6066304],"type":"Point"},"name":"Sky Blue Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb059278"},"location":{"coordinates":[-73.99643329999999,40.720959],"type":"Point"},"name":"Ramen Lab"} +,{"_id":{"$oid":"55cba2476c522cafdb059279"},"location":{"coordinates":[-73.997143,40.612616],"type":"Point"},"name":"Great Wall Chinese Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05927a"},"location":{"coordinates":[-73.9962905,40.7367611],"type":"Point"},"name":"Dairy Queen Grill And Chill"} +,{"_id":{"$oid":"55cba2476c522cafdb05927b"},"location":{"coordinates":[-73.82813,40.76033],"type":"Point"},"name":"Tao Xiang"} +,{"_id":{"$oid":"55cba2476c522cafdb05927c"},"location":{"coordinates":[-73.9357914,40.8036835],"type":"Point"},"name":"Perkins"} +,{"_id":{"$oid":"55cba2476c522cafdb05927d"},"location":{"coordinates":[-74.135243,40.6362669],"type":"Point"},"name":"S.L. Peruvian Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb05927e"},"location":{"coordinates":[-73.8848687,40.7438959],"type":"Point"},"name":"Ploy Thai"} +,{"_id":{"$oid":"55cba2476c522cafdb05927f"},"location":{"coordinates":[-73.8226657,40.8653474],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb059280"},"location":{"coordinates":[-73.82957660000001,40.75793609999999],"type":"Point"},"name":"Biang"} +,{"_id":{"$oid":"55cba2476c522cafdb059281"},"location":{"coordinates":[-73.95568999999999,40.712153],"type":"Point"},"name":"Randisi"} +,{"_id":{"$oid":"55cba2476c522cafdb059282"},"location":{"coordinates":[-73.920148,40.705176],"type":"Point"},"name":"Left Hand Path"} +,{"_id":{"$oid":"55cba2476c522cafdb059283"},"location":{"coordinates":[-73.98874889999999,40.7366067],"type":"Point"},"name":"201 Bar And Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb059284"},"location":{"coordinates":[-73.9772756,40.74341889999999],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2476c522cafdb059285"},"location":{"coordinates":[-74.0036106,40.7067183],"type":"Point"},"name":"Ambrose Hall"} +,{"_id":{"$oid":"55cba2476c522cafdb059286"},"location":{"coordinates":[-73.9588522,40.717059],"type":"Point"},"name":"Juice Generation"} +,{"_id":{"$oid":"55cba2476c522cafdb059287"},"location":{"coordinates":[-73.9763693,40.751558],"type":"Point"},"name":"Juice Generation"} +,{"_id":{"$oid":"55cba2476c522cafdb059288"},"location":{"coordinates":[-73.9218357,40.7438563],"type":"Point"},"name":"El Norteno"} +,{"_id":{"$oid":"55cba2476c522cafdb059289"},"location":{"coordinates":[-74.0003484,40.7385544],"type":"Point"},"name":"La Carbornara"} +,{"_id":{"$oid":"55cba2476c522cafdb05928a"},"location":{"coordinates":[-73.91958559999999,40.8165124],"type":"Point"},"name":"Roma Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb05928b"},"location":{"coordinates":[-73.9877319,40.75747130000001],"type":"Point"},"name":"Haru"} +,{"_id":{"$oid":"55cba2476c522cafdb05928c"},"location":{"coordinates":[-73.9429694,40.8110635],"type":"Point"},"name":"Astor Row Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05928d"},"location":{"coordinates":[-73.8775621,40.7131043],"type":"Point"},"name":"Bella Caracas Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb05928e"},"location":{"coordinates":[-74.0097239,40.7213646],"type":"Point"},"name":"Sweetgreen Tribeca"} +,{"_id":{"$oid":"55cba2476c522cafdb05928f"},"location":{"coordinates":[-73.9979311,40.6776315],"type":"Point"},"name":"Goldenrod"} +,{"_id":{"$oid":"55cba2476c522cafdb059290"},"location":{"coordinates":[-73.9852557,40.7189729],"type":"Point"},"name":"Marm Cafe"} +,{"_id":{"$oid":"55cba2476c522cafdb059291"},"location":{"coordinates":[-73.8457742,40.7822954],"type":"Point"},"name":"El Punto Columbiano Restaurante Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb059292"},"location":{"coordinates":[-73.95631399999999,40.7753164],"type":"Point"},"name":"Lunetta Pizza \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb059293"},"location":{"coordinates":[-73.97486099999999,40.7530516],"type":"Point"},"name":"Cafe Grumpy"} +,{"_id":{"$oid":"55cba2476c522cafdb059294"},"location":{"coordinates":[-73.8883503,40.7468584],"type":"Point"},"name":"Arepa Lady"} +,{"_id":{"$oid":"55cba2476c522cafdb059295"},"location":{"coordinates":[-74.01084569999999,40.70335439999999],"type":"Point"},"name":"Pranzo"} +,{"_id":{"$oid":"55cba2476c522cafdb059296"},"location":{"coordinates":[-73.9123077,40.7752075],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2476c522cafdb059297"},"location":{"coordinates":[-73.7554164,40.7490969],"type":"Point"},"name":"Mcdonald'S "} +,{"_id":{"$oid":"55cba2476c522cafdb059298"},"location":{"coordinates":[-73.80363799999999,40.760705],"type":"Point"},"name":"Red Sea Sushi \u0026 Seafood Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb059299"},"location":{"coordinates":[-73.92577,40.7544619],"type":"Point"},"name":"Mamu Thai"} +,{"_id":{"$oid":"55cba2476c522cafdb05929a"},"location":{"coordinates":[-73.942836,40.716927],"type":"Point"},"name":"Humboldt \u0026 Jackson"} +,{"_id":{"$oid":"55cba2476c522cafdb05929b"},"location":{"coordinates":[-73.9804636,40.7517661],"type":"Point"},"name":"Local Thyme"} +,{"_id":{"$oid":"55cba2476c522cafdb05929c"},"location":{"coordinates":[-73.9125174,40.6550468],"type":"Point"},"name":"Brooklyn Cafe 1"} +,{"_id":{"$oid":"55cba2476c522cafdb05929d"},"location":{"coordinates":[-73.90742999999999,40.7207604],"type":"Point"},"name":"Anchor Inn"} +,{"_id":{"$oid":"55cba2476c522cafdb05929e"},"location":{"coordinates":[-73.99587799999999,40.749327],"type":"Point"},"name":"Raw Organics"} +,{"_id":{"$oid":"55cba2476c522cafdb05929f"},"location":{"coordinates":[-73.9919172,40.7224662],"type":"Point"},"name":"Cocktail Bodega"} +,{"_id":{"$oid":"55cba2476c522cafdb0592a0"},"location":{"coordinates":[-73.91637419999999,40.839867],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2476c522cafdb0592a1"},"location":{"coordinates":[-73.85521,40.897944],"type":"Point"},"name":"Kaieteur Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0592a2"},"location":{"coordinates":[-73.9897848,40.7230523],"type":"Point"},"name":"Fools Gold"} +,{"_id":{"$oid":"55cba2476c522cafdb0592a3"},"location":{"coordinates":[-74.0141067,40.7202895],"type":"Point"},"name":"Grand Banks"} +,{"_id":{"$oid":"55cba2476c522cafdb0592a4"},"location":{"coordinates":[-73.9579152,40.7127691],"type":"Point"},"name":"Bar 245"} +,{"_id":{"$oid":"55cba2476c522cafdb0592a5"},"location":{"coordinates":[-73.7144778,40.7457572],"type":"Point"},"name":"Taco King"} +,{"_id":{"$oid":"55cba2476c522cafdb0592a6"},"location":{"coordinates":[-74.00233759999999,40.7455599],"type":"Point"},"name":"Fonda Of Chelsea"} +,{"_id":{"$oid":"55cba2476c522cafdb0592a7"},"location":{"coordinates":[-73.9616954,40.7134326],"type":"Point"},"name":"Catswall"} +,{"_id":{"$oid":"55cba2476c522cafdb0592a8"},"location":{"coordinates":[-88.37619980000001,46.8701406],"type":"Point"},"name":"Brendan'S Bar"} +,{"_id":{"$oid":"55cba2476c522cafdb0592a9"},"location":{"coordinates":[-73.8649157,40.85962970000001],"type":"Point"},"name":"Nuestro Sabor Latino Restaurant Corp"} +,{"_id":{"$oid":"55cba2476c522cafdb0592aa"},"location":{"coordinates":[-74.162466,40.60044200000001],"type":"Point"},"name":"Arabian Nights Restaurant \u0026 Hookah Lounge"} +,{"_id":{"$oid":"55cba2476c522cafdb0592ab"},"location":{"coordinates":[-73.92055839999999,40.7392416],"type":"Point"},"name":"Jingyi'S Chinese Food"} +,{"_id":{"$oid":"55cba2476c522cafdb0592ac"},"location":{"coordinates":[-73.95643849999999,40.7711007],"type":"Point"},"name":"Hanabi"} +,{"_id":{"$oid":"55cba2476c522cafdb0592ad"},"location":{"coordinates":[-73.93925399999999,40.791306],"type":"Point"},"name":"New Wing Gong Restaurant Inc"} +,{"_id":{"$oid":"55cba2476c522cafdb0592ae"},"location":{"coordinates":[-73.9321441,40.7727368],"type":"Point"},"name":"Lucky Star Kitchen"} +,{"_id":{"$oid":"55cba2476c522cafdb0592af"},"location":{"coordinates":[-73.9106254,40.7448391],"type":"Point"},"name":"Mcdonalds"} +,{"_id":{"$oid":"55cba2476c522cafdb0592b0"},"location":{"coordinates":[-73.918239,40.7594179],"type":"Point"},"name":"Mcdonalds"} +,{"_id":{"$oid":"55cba2476c522cafdb0592b1"},"location":{"coordinates":[-73.7821721,40.7131097],"type":"Point"},"name":"Mcdonalds"} +,{"_id":{"$oid":"55cba2476c522cafdb0592b2"},"location":{"coordinates":[-73.9083417,40.7534179],"type":"Point"},"name":"Mcdonalds"} +,{"_id":{"$oid":"55cba2476c522cafdb0592b3"},"location":{"coordinates":[-73.81196,40.70251500000001],"type":"Point"},"name":"El Mezcal Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2476c522cafdb0592b4"},"location":{"coordinates":[-73.96422199999999,40.606819],"type":"Point"},"name":"Tbilisi"} +,{"_id":{"$oid":"55cba2476c522cafdb0592b5"},"location":{"coordinates":[-73.9129265,40.8386649],"type":"Point"},"name":"Jahlookover Us"} +,{"_id":{"$oid":"55cba2476c522cafdb0592b6"},"location":{"coordinates":[-73.854371,40.6926828],"type":"Point"},"name":"Oaxaquita Bella Restaurant And Bakery"} +,{"_id":{"$oid":"55cba2476c522cafdb0592b7"},"location":{"coordinates":[-73.9016255,40.8578627],"type":"Point"},"name":"Estrella Mexican Restaurant"} +,{"_id":{"$oid":"55cba2476c522cafdb0592b8"},"location":{"coordinates":[-74.001229,40.746025],"type":"Point"},"name":"Chelsea Cottage"} +,{"_id":{"$oid":"55cba2476c522cafdb0592b9"},"location":{"coordinates":[-74.07633299999999,40.637998],"type":"Point"},"name":"Domino'S Pizza"} +,{"_id":{"$oid":"55cba2476c522cafdb0592ba"},"location":{"coordinates":[-73.8786113,40.8502883],"type":"Point"},"name":"Dino Dots"} +,{"_id":{"$oid":"55cba2476c522cafdb0592bb"},"location":{"coordinates":[-73.8038085,40.760729],"type":"Point"},"name":"Chicken Pelicana Usa"} +,{"_id":{"$oid":"55cba2476c522cafdb0592bc"},"location":{"coordinates":[-73.9890056,40.6205949],"type":"Point"},"name":"Hunan Kitchen Brooklyn"} +,{"_id":{"$oid":"55cba2476c522cafdb0592bd"},"location":{"coordinates":[-73.9879211,40.7244862],"type":"Point"},"name":"Puebla Mexican Food \u0026 Coffee Shop"} +,{"_id":{"$oid":"55cba2486c522cafdb0592be"},"location":{"coordinates":[-74.00681229999999,40.7069645],"type":"Point"},"name":"Fields Good Chicken"} +,{"_id":{"$oid":"55cba2486c522cafdb0592bf"},"location":{"coordinates":[-73.98253,40.742984],"type":"Point"},"name":"Chatkhara Grill"} +,{"_id":{"$oid":"55cba2486c522cafdb0592c0"},"location":{"coordinates":[-73.9794082,40.7435795],"type":"Point"},"name":"Cafe Mania Llc"} +,{"_id":{"$oid":"55cba2486c522cafdb0592c1"},"location":{"coordinates":[-74.011963,40.7042826],"type":"Point"},"name":"Gregory'S Coffee"} +,{"_id":{"$oid":"55cba2486c522cafdb0592c2"},"location":{"coordinates":[-73.9212581,40.8674179],"type":"Point"},"name":"Mc Donalds"} +,{"_id":{"$oid":"55cba2486c522cafdb0592c3"},"location":{"coordinates":[-73.9273139,40.8651344],"type":"Point"},"name":"Mc Donalds"} +,{"_id":{"$oid":"55cba2486c522cafdb0592c4"},"location":{"coordinates":[-73.92358399999999,40.6450699],"type":"Point"},"name":"Jimmy Fingers Caribbean Cuisine \u0026 Seafood"} +,{"_id":{"$oid":"55cba2486c522cafdb0592c5"},"location":{"coordinates":[-73.98166259999999,40.7404056],"type":"Point"},"name":"Bee'S Knees Baking Co"} +,{"_id":{"$oid":"55cba2486c522cafdb0592c6"},"location":{"coordinates":[-74.1660553,40.5823983],"type":"Point"},"name":"Red Mango"} +,{"_id":{"$oid":"55cba2486c522cafdb0592c7"},"location":{"coordinates":[-73.9426225,40.8375742],"type":"Point"},"name":"Sweet Life Pastry Corp"} +,{"_id":{"$oid":"55cba2486c522cafdb0592c8"},"location":{"coordinates":[-73.85202129999999,40.8423862],"type":"Point"},"name":"2432 Peking House Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb0592c9"},"location":{"coordinates":[-74.0016151,40.7390628],"type":"Point"},"name":"Wood And Ales"} +,{"_id":{"$oid":"55cba2486c522cafdb0592ca"},"location":{"coordinates":[-73.99947,40.7198443],"type":"Point"},"name":"The Ship"} +,{"_id":{"$oid":"55cba2486c522cafdb0592cb"},"location":{"coordinates":[-73.93736700000001,40.6807646],"type":"Point"},"name":"Brunswick Bed Stuy"} +,{"_id":{"$oid":"55cba2486c522cafdb0592cc"},"location":{"coordinates":[-73.9118115,40.8225247],"type":"Point"},"name":"Aurora Cafe \u0026 Grill"} +,{"_id":{"$oid":"55cba2486c522cafdb0592cd"},"location":{"coordinates":[-73.865876,40.677396],"type":"Point"},"name":"Noor Halal Kitchen"} +,{"_id":{"$oid":"55cba2486c522cafdb0592ce"},"location":{"coordinates":[-73.8891352,40.7492604],"type":"Point"},"name":"Due Fratelli"} +,{"_id":{"$oid":"55cba2486c522cafdb0592cf"},"location":{"coordinates":[-73.9798727,40.574926],"type":"Point"},"name":"Margarita Island Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb0592d0"},"location":{"coordinates":[-73.952884,40.774395],"type":"Point"},"name":"Bar Prima"} +,{"_id":{"$oid":"55cba2486c522cafdb0592d1"},"location":{"coordinates":[-74.00027299999999,40.6054559],"type":"Point"},"name":"La Fogata"} +,{"_id":{"$oid":"55cba2486c522cafdb0592d2"},"location":{"coordinates":[-73.83196819999999,40.75950539999999],"type":"Point"},"name":"Sentosa"} +,{"_id":{"$oid":"55cba2486c522cafdb0592d3"},"location":{"coordinates":[-73.9467295,40.6804619],"type":"Point"},"name":"Island Salad"} +,{"_id":{"$oid":"55cba2486c522cafdb0592d4"},"location":{"coordinates":[-73.8445862,40.6953895],"type":"Point"},"name":"Uncle Louie G"} +,{"_id":{"$oid":"55cba2486c522cafdb0592d5"},"location":{"coordinates":[-73.95913039999999,40.69842],"type":"Point"},"name":"Rose Castle"} +,{"_id":{"$oid":"55cba2486c522cafdb0592d6"},"location":{"coordinates":[-73.9647148,40.6245853],"type":"Point"},"name":"16 Handles Midwood"} +,{"_id":{"$oid":"55cba2486c522cafdb0592d7"},"location":{"coordinates":[-73.9953365,40.7267006],"type":"Point"},"name":"Wendy'S"} +,{"_id":{"$oid":"55cba2486c522cafdb0592d8"},"location":{"coordinates":[-73.83264299999999,40.759295],"type":"Point"},"name":"Hyatt Place Flushing"} +,{"_id":{"$oid":"55cba2486c522cafdb0592d9"},"location":{"coordinates":[-73.9926744,40.752142],"type":"Point"},"name":"Wendy'S"} +,{"_id":{"$oid":"55cba2486c522cafdb0592da"},"location":{"coordinates":[-73.9926955,40.7353447],"type":"Point"},"name":"Wendy'S"} +,{"_id":{"$oid":"55cba2486c522cafdb0592db"},"location":{"coordinates":[-74.00806159999999,40.7101566],"type":"Point"},"name":"Wendy'S"} +,{"_id":{"$oid":"55cba2486c522cafdb0592dc"},"location":{"coordinates":[-73.988252,40.7322865],"type":"Point"},"name":"Blue 9 Burger"} +,{"_id":{"$oid":"55cba2486c522cafdb0592dd"},"location":{"coordinates":[-73.948343,40.8145609],"type":"Point"},"name":"Mahalaxmi Food Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb0592de"},"location":{"coordinates":[-73.9895172,40.7264117],"type":"Point"},"name":"99 Cent Fresh Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb0592df"},"location":{"coordinates":[-73.9845974,40.7191504],"type":"Point"},"name":"Melani Pizzeria"} +,{"_id":{"$oid":"55cba2486c522cafdb0592e0"},"location":{"coordinates":[-73.9333498,40.7984866],"type":"Point"},"name":"Sabor Del Barrio"} +,{"_id":{"$oid":"55cba2486c522cafdb0592e1"},"location":{"coordinates":[-74.0005327,40.7181187],"type":"Point"},"name":"Excellent Dumpling House"} +,{"_id":{"$oid":"55cba2486c522cafdb0592e2"},"location":{"coordinates":[-74.015057,40.640958],"type":"Point"},"name":"Lemon Q"} +,{"_id":{"$oid":"55cba2486c522cafdb0592e3"},"location":{"coordinates":[-73.9267497,40.8607124],"type":"Point"},"name":"Antojitos Retaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb0592e4"},"location":{"coordinates":[-73.9898376,40.733458],"type":"Point"},"name":"Desi Shack"} +,{"_id":{"$oid":"55cba2486c522cafdb0592e5"},"location":{"coordinates":[-73.96379499999999,40.597763],"type":"Point"},"name":"Nicoletta Badalamenti"} +,{"_id":{"$oid":"55cba2486c522cafdb0592e6"},"location":{"coordinates":[-73.884011,40.74658],"type":"Point"},"name":"Food Court 82"} +,{"_id":{"$oid":"55cba2486c522cafdb0592e7"},"location":{"coordinates":[-73.9615305,40.7209292],"type":"Point"},"name":"Biba"} +,{"_id":{"$oid":"55cba2486c522cafdb0592e8"},"location":{"coordinates":[-73.94809819999999,40.6998241],"type":"Point"},"name":"Kettlebell Kitchen"} +,{"_id":{"$oid":"55cba2486c522cafdb0592e9"},"location":{"coordinates":[-73.86361819999999,40.8381268],"type":"Point"},"name":"Fried Chicken And Gyro King"} +,{"_id":{"$oid":"55cba2486c522cafdb0592ea"},"location":{"coordinates":[-73.853285,40.74047],"type":"Point"},"name":"Hao Hao Wei"} +,{"_id":{"$oid":"55cba2486c522cafdb0592eb"},"location":{"coordinates":[-74.085013,40.5966165],"type":"Point"},"name":"Domino'S Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb0592ec"},"location":{"coordinates":[-73.87735769999999,40.7360429],"type":"Point"},"name":"Rainbow Bakery And Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb0592ed"},"location":{"coordinates":[-73.987218,40.721761],"type":"Point"},"name":"Dirty French"} +,{"_id":{"$oid":"55cba2486c522cafdb0592ee"},"location":{"coordinates":[-73.7588576,40.7212288],"type":"Point"},"name":"China House Queens Take Out"} +,{"_id":{"$oid":"55cba2486c522cafdb0592ef"},"location":{"coordinates":[-73.9812069,40.6670625],"type":"Point"},"name":"Cusp"} +,{"_id":{"$oid":"55cba2486c522cafdb0592f0"},"location":{"coordinates":[-73.87786439999999,40.88079320000001],"type":"Point"},"name":"Marconi'S Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb0592f1"},"location":{"coordinates":[-73.949023,40.777924],"type":"Point"},"name":"Frere De Lys"} +,{"_id":{"$oid":"55cba2486c522cafdb0592f2"},"location":{"coordinates":[-73.7560398,40.7486486],"type":"Point"},"name":"Subway/Nathan'S Famous"} +,{"_id":{"$oid":"55cba2486c522cafdb0592f3"},"location":{"coordinates":[-73.9513992,40.7142073],"type":"Point"},"name":"Sugarburg"} +,{"_id":{"$oid":"55cba2486c522cafdb0592f4"},"location":{"coordinates":[-73.9159653,40.8340622],"type":"Point"},"name":"Delicias Bakery"} +,{"_id":{"$oid":"55cba2486c522cafdb0592f5"},"location":{"coordinates":[-73.83058539999999,40.7595502],"type":"Point"},"name":"E-Pie"} +,{"_id":{"$oid":"55cba2486c522cafdb0592f6"},"location":{"coordinates":[-74.1640548,40.5427613],"type":"Point"},"name":"Domino'S Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb0592f7"},"location":{"coordinates":[-74.1589508,40.61343],"type":"Point"},"name":"Dominos Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb0592f8"},"location":{"coordinates":[-73.9993095,40.6834895],"type":"Point"},"name":"La Cigogne"} +,{"_id":{"$oid":"55cba2486c522cafdb0592f9"},"location":{"coordinates":[-74.1660553,40.5823983],"type":"Point"},"name":"Villa"} +,{"_id":{"$oid":"55cba2486c522cafdb0592fa"},"location":{"coordinates":[-73.8212082,40.6910404],"type":"Point"},"name":"Fusion Nyc Lounge"} +,{"_id":{"$oid":"55cba2486c522cafdb0592fb"},"location":{"coordinates":[-73.9897196,40.738219],"type":"Point"},"name":"Blue Bottle Coffee"} +,{"_id":{"$oid":"55cba2486c522cafdb0592fc"},"location":{"coordinates":[-73.9949668,40.7194417],"type":"Point"},"name":"Bacchanal"} +,{"_id":{"$oid":"55cba2486c522cafdb0592fd"},"location":{"coordinates":[-73.96735799999999,40.76376399999999],"type":"Point"},"name":"Farinella"} +,{"_id":{"$oid":"55cba2486c522cafdb0592fe"},"location":{"coordinates":[-73.981816,40.6106002],"type":"Point"},"name":"Tasty Delight Bakery"} +,{"_id":{"$oid":"55cba2486c522cafdb0592ff"},"location":{"coordinates":[-74.07754299999999,40.636373],"type":"Point"},"name":"Craft House Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb059300"},"location":{"coordinates":[-74.0156618,40.71137470000001],"type":"Point"},"name":"Olive'S"} +,{"_id":{"$oid":"55cba2486c522cafdb059301"},"location":{"coordinates":[-73.9798856,40.7844631],"type":"Point"},"name":"Brgr"} +,{"_id":{"$oid":"55cba2486c522cafdb059302"},"location":{"coordinates":[-74.1080857,40.6300985],"type":"Point"},"name":"Panini Grill"} +,{"_id":{"$oid":"55cba2486c522cafdb059303"},"location":{"coordinates":[-73.9532382,40.7761792],"type":"Point"},"name":"Soom Soom"} +,{"_id":{"$oid":"55cba2486c522cafdb059304"},"location":{"coordinates":[-73.9253799,40.6128276],"type":"Point"},"name":"Personal Gourmet Deli"} +,{"_id":{"$oid":"55cba2486c522cafdb059305"},"location":{"coordinates":[-73.9797102,40.75630839999999],"type":"Point"},"name":"Soom Soom"} +,{"_id":{"$oid":"55cba2486c522cafdb059306"},"location":{"coordinates":[-73.96927699999999,40.756274],"type":"Point"},"name":"The Falls Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb059307"},"location":{"coordinates":[-73.9491199,40.724128],"type":"Point"},"name":"Greenpoint Fish \u0026 Lobster Co."} +,{"_id":{"$oid":"55cba2486c522cafdb059308"},"location":{"coordinates":[-73.9812479,40.778125],"type":"Point"},"name":"Soom Soom"} +,{"_id":{"$oid":"55cba2486c522cafdb059309"},"location":{"coordinates":[-73.993082,40.754269],"type":"Point"},"name":"Homewood Suites By Hilton New York Midtown Manhattan Times Square"} +,{"_id":{"$oid":"55cba2486c522cafdb05930a"},"location":{"coordinates":[-73.81437000000001,40.762199],"type":"Point"},"name":"Scandal"} +,{"_id":{"$oid":"55cba2486c522cafdb05930b"},"location":{"coordinates":[-74.1500831,40.5515622],"type":"Point"},"name":"Lucky Fortune"} +,{"_id":{"$oid":"55cba2486c522cafdb05930c"},"location":{"coordinates":[-73.753664,40.678788],"type":"Point"},"name":"Kennedy Fried Chicken \u0026 Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb05930d"},"location":{"coordinates":[-73.9170622,40.7736999],"type":"Point"},"name":"Sweet Jane'S Frozen Desserts"} +,{"_id":{"$oid":"55cba2486c522cafdb05930e"},"location":{"coordinates":[-73.9211828,40.7628482],"type":"Point"},"name":"Vite-Vinosteria"} +,{"_id":{"$oid":"55cba2486c522cafdb05930f"},"location":{"coordinates":[-73.9809494,40.7216549],"type":"Point"},"name":"Majesty Pizza \u0026 Grill"} +,{"_id":{"$oid":"55cba2486c522cafdb059310"},"location":{"coordinates":[-73.94058179999999,40.8251808],"type":"Point"},"name":"Subway Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059311"},"location":{"coordinates":[-73.86715389999999,40.82226],"type":"Point"},"name":"Carribbean Delights/ Lucky Spot"} +,{"_id":{"$oid":"55cba2486c522cafdb059312"},"location":{"coordinates":[-73.881143,40.809636],"type":"Point"},"name":"Albert'S Coffee Shop"} +,{"_id":{"$oid":"55cba2486c522cafdb059313"},"location":{"coordinates":[-74.00269469999999,40.641435],"type":"Point"},"name":"Shaxian Delicacies"} +,{"_id":{"$oid":"55cba2486c522cafdb059314"},"location":{"coordinates":[-73.9077138,40.7029473],"type":"Point"},"name":"Jorge'S Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059315"},"location":{"coordinates":[-73.848398,40.837819],"type":"Point"},"name":"Starlite Wellness Center"} +,{"_id":{"$oid":"55cba2486c522cafdb059316"},"location":{"coordinates":[-74.2385682,40.5225313],"type":"Point"},"name":"Benny'S Bridge Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb059317"},"location":{"coordinates":[-73.9665309,40.7562752],"type":"Point"},"name":"212 Steakhouse"} +,{"_id":{"$oid":"55cba2486c522cafdb059318"},"location":{"coordinates":[-73.984735,40.75206],"type":"Point"},"name":"Fabrick By David Burke"} +,{"_id":{"$oid":"55cba2486c522cafdb059319"},"location":{"coordinates":[-92.7292654,41.74614709999999],"type":"Point"},"name":"Think Coffee"} +,{"_id":{"$oid":"55cba2486c522cafdb05931a"},"location":{"coordinates":[-74.03016500000001,40.61916799999999],"type":"Point"},"name":"Julie'S Pizzeria"} +,{"_id":{"$oid":"55cba2486c522cafdb05931b"},"location":{"coordinates":[-73.984735,40.75206],"type":"Point"},"name":"Spyglass"} +,{"_id":{"$oid":"55cba2486c522cafdb05931c"},"location":{"coordinates":[-73.886204,40.679635],"type":"Point"},"name":"Loveras Lounge"} +,{"_id":{"$oid":"55cba2486c522cafdb05931d"},"location":{"coordinates":[-73.8640194,40.88085890000001],"type":"Point"},"name":"Vybes Kitchen"} +,{"_id":{"$oid":"55cba2486c522cafdb05931e"},"location":{"coordinates":[-73.8782908,40.8731526],"type":"Point"},"name":"Lin'S No 1 Chinese Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb05931f"},"location":{"coordinates":[-73.98297509999999,40.63995420000001],"type":"Point"},"name":"Rio"} +,{"_id":{"$oid":"55cba2486c522cafdb059320"},"location":{"coordinates":[-73.907489,40.643789],"type":"Point"},"name":"Ji Li Chinese Restaurant Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb059321"},"location":{"coordinates":[-73.9811603,40.782425],"type":"Point"},"name":"Millefeuille Bakery Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb059322"},"location":{"coordinates":[-74.1488178,40.5393625],"type":"Point"},"name":"Cleopatra Queen Lounge"} +,{"_id":{"$oid":"55cba2486c522cafdb059323"},"location":{"coordinates":[-73.97942859999999,40.7455959],"type":"Point"},"name":"La Tarte Flambee"} +,{"_id":{"$oid":"55cba2486c522cafdb059324"},"location":{"coordinates":[-74.025369,40.62130399999999],"type":"Point"},"name":"Panera Bread"} +,{"_id":{"$oid":"55cba2486c522cafdb059325"},"location":{"coordinates":[-73.9793952,40.74340249999999],"type":"Point"},"name":"Pita Grill"} +,{"_id":{"$oid":"55cba2486c522cafdb059326"},"location":{"coordinates":[-73.9519383,40.6427322],"type":"Point"},"name":"Ocean Chinese Food"} +,{"_id":{"$oid":"55cba2486c522cafdb059327"},"location":{"coordinates":[-73.7574422,40.7486517],"type":"Point"},"name":"China Grill"} +,{"_id":{"$oid":"55cba2486c522cafdb059328"},"location":{"coordinates":[-73.7757499,40.7837867],"type":"Point"},"name":"Cafe By The Bay"} +,{"_id":{"$oid":"55cba2486c522cafdb059329"},"location":{"coordinates":[-73.812895,40.7276946],"type":"Point"},"name":"Tariq Afghan Kabab"} +,{"_id":{"$oid":"55cba2486c522cafdb05932a"},"location":{"coordinates":[-73.8787438,40.6819683],"type":"Point"},"name":"Crown Fried Chicken"} +,{"_id":{"$oid":"55cba2486c522cafdb05932b"},"location":{"coordinates":[-73.9558775,40.7022286],"type":"Point"},"name":"Cafe Au Lee"} +,{"_id":{"$oid":"55cba2486c522cafdb05932c"},"location":{"coordinates":[-73.927178,40.8648327],"type":"Point"},"name":"Elegant Food"} +,{"_id":{"$oid":"55cba2486c522cafdb05932d"},"location":{"coordinates":[-74.000711,40.73097],"type":"Point"},"name":"Beyond Thai Kitchen"} +,{"_id":{"$oid":"55cba2486c522cafdb05932e"},"location":{"coordinates":[-73.79474420000001,40.7332144],"type":"Point"},"name":"Bakhter Afghan Halal Kabab"} +,{"_id":{"$oid":"55cba2486c522cafdb05932f"},"location":{"coordinates":[-73.9470381,40.8152371],"type":"Point"},"name":"Ma Dukes"} +,{"_id":{"$oid":"55cba2486c522cafdb059330"},"location":{"coordinates":[-73.9765369,40.762916],"type":"Point"},"name":"Hunan House"} +,{"_id":{"$oid":"55cba2486c522cafdb059331"},"location":{"coordinates":[-73.9435824,40.83528310000001],"type":"Point"},"name":"Margot Restaurant El Basement"} +,{"_id":{"$oid":"55cba2486c522cafdb059332"},"location":{"coordinates":[-74.0239749,40.62714099999999],"type":"Point"},"name":"Chill Bar \u0026 Hookah Lounge"} +,{"_id":{"$oid":"55cba2486c522cafdb059333"},"location":{"coordinates":[-73.98925299999999,40.7625],"type":"Point"},"name":"Istanbul Kebab House"} +,{"_id":{"$oid":"55cba2486c522cafdb059334"},"location":{"coordinates":[-73.917439,40.8417839],"type":"Point"},"name":"La Jarra Del Sabor"} +,{"_id":{"$oid":"55cba2486c522cafdb059335"},"location":{"coordinates":[-73.9793564,40.7589426],"type":"Point"},"name":"Rainbow Room"} +,{"_id":{"$oid":"55cba2486c522cafdb059336"},"location":{"coordinates":[-73.9275868,40.8188987],"type":"Point"},"name":"Big Papa'S"} +,{"_id":{"$oid":"55cba2486c522cafdb059337"},"location":{"coordinates":[-73.956502,40.675388],"type":"Point"},"name":"Vincente'S Bar"} +,{"_id":{"$oid":"55cba2486c522cafdb059338"},"location":{"coordinates":[-74.0014595,40.7419616],"type":"Point"},"name":"Pizza Italia"} +,{"_id":{"$oid":"55cba2486c522cafdb059339"},"location":{"coordinates":[-73.918145,40.7584366],"type":"Point"},"name":"Retro Pizza Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb05933a"},"location":{"coordinates":[-73.9843317,40.7448984],"type":"Point"},"name":"Marta"} +,{"_id":{"$oid":"55cba2486c522cafdb05933b"},"location":{"coordinates":[-73.96121029999999,40.5944657],"type":"Point"},"name":"Retro Grill"} +,{"_id":{"$oid":"55cba2486c522cafdb05933c"},"location":{"coordinates":[-73.7904025,40.6731695],"type":"Point"},"name":"Cg Enterprises Llc"} +,{"_id":{"$oid":"55cba2486c522cafdb05933d"},"location":{"coordinates":[-73.9019161,40.8199807],"type":"Point"},"name":"Giovanis Big Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb05933e"},"location":{"coordinates":[-73.96177890000001,40.6087737],"type":"Point"},"name":"Prime Wok N Grill"} +,{"_id":{"$oid":"55cba2486c522cafdb05933f"},"location":{"coordinates":[-73.824733,40.8286649],"type":"Point"},"name":"Scoops And Bowls"} +,{"_id":{"$oid":"55cba2486c522cafdb059340"},"location":{"coordinates":[-74.000846,40.613782],"type":"Point"},"name":"Enriched Adult Day Care Services, Inc."} +,{"_id":{"$oid":"55cba2486c522cafdb059341"},"location":{"coordinates":[-73.77073299999999,40.762456],"type":"Point"},"name":"Masala Box"} +,{"_id":{"$oid":"55cba2486c522cafdb059342"},"location":{"coordinates":[-73.99244,40.666372],"type":"Point"},"name":"2 Brothers Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059343"},"location":{"coordinates":[-73.9547149,40.720285],"type":"Point"},"name":"The Bean"} +,{"_id":{"$oid":"55cba2486c522cafdb059344"},"location":{"coordinates":[-73.954933,40.639424],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2486c522cafdb059345"},"location":{"coordinates":[-73.988428,40.73885],"type":"Point"},"name":"Elan"} +,{"_id":{"$oid":"55cba2486c522cafdb059346"},"location":{"coordinates":[-74.001522,40.74167],"type":"Point"},"name":"Boom Sushi"} +,{"_id":{"$oid":"55cba2486c522cafdb059347"},"location":{"coordinates":[-73.969414,40.755815],"type":"Point"},"name":"Sukhumvit 51"} +,{"_id":{"$oid":"55cba2486c522cafdb059348"},"location":{"coordinates":[-73.7488449,40.7688114],"type":"Point"},"name":"Wine Time"} +,{"_id":{"$oid":"55cba2486c522cafdb059349"},"location":{"coordinates":[-73.9857509,40.670226],"type":"Point"},"name":"Napoleon Pizzeria"} +,{"_id":{"$oid":"55cba2486c522cafdb05934a"},"location":{"coordinates":[-73.9167294,40.8695893],"type":"Point"},"name":"Rebounds Sports Burger Bar"} +,{"_id":{"$oid":"55cba2486c522cafdb05934b"},"location":{"coordinates":[-73.9400675,40.7941757],"type":"Point"},"name":"Rise And Grind"} +,{"_id":{"$oid":"55cba2486c522cafdb05934c"},"location":{"coordinates":[-73.9107556,40.6923886],"type":"Point"},"name":"Crown Fried Chicken \u0026 Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb05934d"},"location":{"coordinates":[-73.78918999999999,40.712352],"type":"Point"},"name":"Hillside Pizza \u0026 Grill"} +,{"_id":{"$oid":"55cba2486c522cafdb05934e"},"location":{"coordinates":[-73.8612809,40.8164615],"type":"Point"},"name":"Mexzzarella Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb05934f"},"location":{"coordinates":[-73.94420459999999,40.5839214],"type":"Point"},"name":"Dessert Palace"} +,{"_id":{"$oid":"55cba2486c522cafdb059350"},"location":{"coordinates":[-73.8155026,40.8306243],"type":"Point"},"name":"American Turners New York"} +,{"_id":{"$oid":"55cba2486c522cafdb059351"},"location":{"coordinates":[-73.81217649999999,40.7900876],"type":"Point"},"name":"Revive"} +,{"_id":{"$oid":"55cba2486c522cafdb059352"},"location":{"coordinates":[-74.12931270000001,40.62636699999999],"type":"Point"},"name":"Bagels On The Island"} +,{"_id":{"$oid":"55cba2486c522cafdb059353"},"location":{"coordinates":[-73.94809819999999,40.6998241],"type":"Point"},"name":"Red Wagon"} +,{"_id":{"$oid":"55cba2486c522cafdb059354"},"location":{"coordinates":[-74.1364962,40.6252203],"type":"Point"},"name":"S. I. Panda Garden"} +,{"_id":{"$oid":"55cba2486c522cafdb059355"},"location":{"coordinates":[-73.90875,40.713271],"type":"Point"},"name":"China House"} +,{"_id":{"$oid":"55cba2486c522cafdb059356"},"location":{"coordinates":[-73.956571,40.66713910000001],"type":"Point"},"name":"Billy'S Pizza Pasta"} +,{"_id":{"$oid":"55cba2486c522cafdb059357"},"location":{"coordinates":[-73.94446900000001,40.8212633],"type":"Point"},"name":"Manhatanville Coffee"} +,{"_id":{"$oid":"55cba2486c522cafdb059358"},"location":{"coordinates":[-73.8899284,40.8605766],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2486c522cafdb059359"},"location":{"coordinates":[-74.00462929999999,40.7200972],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2486c522cafdb05935a"},"location":{"coordinates":[-73.8290939,40.759362],"type":"Point"},"name":"Royal Queen"} +,{"_id":{"$oid":"55cba2486c522cafdb05935b"},"location":{"coordinates":[-73.9733492,40.7917977],"type":"Point"},"name":"Little Italy Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb05935c"},"location":{"coordinates":[-73.96852779999999,40.7542526],"type":"Point"},"name":"Peak Thai"} +,{"_id":{"$oid":"55cba2486c522cafdb05935d"},"location":{"coordinates":[-74.08369979999999,40.57572469999999],"type":"Point"},"name":"It'S A Wrap"} +,{"_id":{"$oid":"55cba2486c522cafdb05935e"},"location":{"coordinates":[-73.88692139999999,40.7475222],"type":"Point"},"name":"Kitchen 79"} +,{"_id":{"$oid":"55cba2486c522cafdb05935f"},"location":{"coordinates":[-73.9675819,40.7633296],"type":"Point"},"name":"Sprinkles Ice Cream"} +,{"_id":{"$oid":"55cba2486c522cafdb059360"},"location":{"coordinates":[-73.944428,40.7979627],"type":"Point"},"name":"Fleur D'Oranger (La Marqueta)"} +,{"_id":{"$oid":"55cba2486c522cafdb059361"},"location":{"coordinates":[-73.89735399999999,40.743268],"type":"Point"},"name":"Renacer"} +,{"_id":{"$oid":"55cba2486c522cafdb059362"},"location":{"coordinates":[-74.007541,40.637755],"type":"Point"},"name":"New Chang Le Fan Dian"} +,{"_id":{"$oid":"55cba2486c522cafdb059363"},"location":{"coordinates":[-73.9297672,40.6187726],"type":"Point"},"name":"Bok Choy \u0026 Roll"} +,{"_id":{"$oid":"55cba2486c522cafdb059364"},"location":{"coordinates":[-73.8236086,40.7522327],"type":"Point"},"name":"Elite Pool \u0026 Fitness Management"} +,{"_id":{"$oid":"55cba2486c522cafdb059365"},"location":{"coordinates":[-73.990082,40.762466],"type":"Point"},"name":"The Jolly Monk"} +,{"_id":{"$oid":"55cba2486c522cafdb059366"},"location":{"coordinates":[-73.88052139999999,40.6625642],"type":"Point"},"name":"Island Pot Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059367"},"location":{"coordinates":[-73.989299,40.762437],"type":"Point"},"name":"Philly Chessestake"} +,{"_id":{"$oid":"55cba2486c522cafdb059368"},"location":{"coordinates":[-73.9125478,40.7741574],"type":"Point"},"name":"Via Vai"} +,{"_id":{"$oid":"55cba2486c522cafdb059369"},"location":{"coordinates":[-73.9872437,40.7295411],"type":"Point"},"name":"The Copper Still"} +,{"_id":{"$oid":"55cba2486c522cafdb05936a"},"location":{"coordinates":[-73.98830389999999,40.7321749],"type":"Point"},"name":"Funkiberry"} +,{"_id":{"$oid":"55cba2486c522cafdb05936b"},"location":{"coordinates":[-73.9606187,40.7652536],"type":"Point"},"name":"Serena'S"} +,{"_id":{"$oid":"55cba2486c522cafdb05936c"},"location":{"coordinates":[-73.87670779999999,40.8290734],"type":"Point"},"name":"Jacqueline'S Bakery Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb05936d"},"location":{"coordinates":[-73.9651796,40.6244787],"type":"Point"},"name":"Chocolatte"} +,{"_id":{"$oid":"55cba2486c522cafdb05936e"},"location":{"coordinates":[-73.94126949999999,40.8175925],"type":"Point"},"name":"Ponty Bistro"} +,{"_id":{"$oid":"55cba2486c522cafdb05936f"},"location":{"coordinates":[-73.90686269999999,40.6969797],"type":"Point"},"name":"El Cafecito"} +,{"_id":{"$oid":"55cba2486c522cafdb059370"},"location":{"coordinates":[-73.9932168,40.7216187],"type":"Point"},"name":"Morgenstern Finest Ice Cream"} +,{"_id":{"$oid":"55cba2486c522cafdb059371"},"location":{"coordinates":[-73.8813152,40.8284309],"type":"Point"},"name":"Bravo African Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059372"},"location":{"coordinates":[-73.90276539999999,40.7368475],"type":"Point"},"name":"Energia Es Vida"} +,{"_id":{"$oid":"55cba2486c522cafdb059373"},"location":{"coordinates":[-73.9707432,40.7955865],"type":"Point"},"name":"Awadh"} +,{"_id":{"$oid":"55cba2486c522cafdb059374"},"location":{"coordinates":[-73.980029,40.735283],"type":"Point"},"name":"City Wings Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb059375"},"location":{"coordinates":[-73.8944516,40.8507611],"type":"Point"},"name":"China Wok King Corp"} +,{"_id":{"$oid":"55cba2486c522cafdb059376"},"location":{"coordinates":[-73.948542,40.814343],"type":"Point"},"name":"Lighthouse Fishmarket"} +,{"_id":{"$oid":"55cba2486c522cafdb059377"},"location":{"coordinates":[-73.9766734,40.6813177],"type":"Point"},"name":"Rare Earth"} +,{"_id":{"$oid":"55cba2486c522cafdb059378"},"location":{"coordinates":[-73.9942633,40.60191400000001],"type":"Point"},"name":"La Bella Pizza Express"} +,{"_id":{"$oid":"55cba2486c522cafdb059379"},"location":{"coordinates":[-73.7592362,40.7523074],"type":"Point"},"name":"Joe'S Famous Pizzeria"} +,{"_id":{"$oid":"55cba2486c522cafdb05937a"},"location":{"coordinates":[-73.97059000000002,40.7957582],"type":"Point"},"name":"Sugarcane Vietnamese Cooking"} +,{"_id":{"$oid":"55cba2486c522cafdb05937b"},"location":{"coordinates":[-73.9849303,40.75246780000001],"type":"Point"},"name":"Lan Sheng Restaurant Szechuan Food "} +,{"_id":{"$oid":"55cba2486c522cafdb05937c"},"location":{"coordinates":[-73.9923058,40.7551382],"type":"Point"},"name":"Palace Deli"} +,{"_id":{"$oid":"55cba2486c522cafdb05937d"},"location":{"coordinates":[-73.981175,40.7247072],"type":"Point"},"name":"Casimir"} +,{"_id":{"$oid":"55cba2486c522cafdb05937e"},"location":{"coordinates":[-73.983507,40.723131],"type":"Point"},"name":"Lumiere"} +,{"_id":{"$oid":"55cba2486c522cafdb05937f"},"location":{"coordinates":[-73.82648499999999,40.759447],"type":"Point"},"name":"Alpha Bakery"} +,{"_id":{"$oid":"55cba2486c522cafdb059380"},"location":{"coordinates":[-73.86315080000001,40.7491191],"type":"Point"},"name":"Azoguenita Bakery \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059381"},"location":{"coordinates":[-74.0922063,40.6009099],"type":"Point"},"name":"F And F Family Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb059382"},"location":{"coordinates":[-73.9108917,40.6793644],"type":"Point"},"name":"Good Taste"} +,{"_id":{"$oid":"55cba2486c522cafdb059383"},"location":{"coordinates":[-73.899393,40.700824],"type":"Point"},"name":"Bamboo Tropical"} +,{"_id":{"$oid":"55cba2486c522cafdb059384"},"location":{"coordinates":[-73.9915642,40.7677253],"type":"Point"},"name":"The Squeeze"} +,{"_id":{"$oid":"55cba2486c522cafdb059385"},"location":{"coordinates":[-74.0063875,40.7318541],"type":"Point"},"name":"Oscar'S Place"} +,{"_id":{"$oid":"55cba2486c522cafdb059386"},"location":{"coordinates":[-74.0110885,40.7032752],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2486c522cafdb059387"},"location":{"coordinates":[-74.0080543,40.646968],"type":"Point"},"name":"Xochil Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb059388"},"location":{"coordinates":[-74.0156618,40.71137470000001],"type":"Point"},"name":"Black Seed Bagels"} +,{"_id":{"$oid":"55cba2486c522cafdb059389"},"location":{"coordinates":[-73.7803473,40.6796855],"type":"Point"},"name":"Peru Rotisserie Barbeque Chicken And Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb05938a"},"location":{"coordinates":[-73.952394,40.63688],"type":"Point"},"name":"Cafe Creole Restaurant N Bakery"} +,{"_id":{"$oid":"55cba2486c522cafdb05938b"},"location":{"coordinates":[-73.910077,40.818933],"type":"Point"},"name":"Ashley Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb05938c"},"location":{"coordinates":[-73.952917,40.7426976],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2486c522cafdb05938d"},"location":{"coordinates":[-74.0105051,40.7040805],"type":"Point"},"name":"New Golden Chopsticks"} +,{"_id":{"$oid":"55cba2486c522cafdb05938e"},"location":{"coordinates":[-73.9315891,40.7517377],"type":"Point"},"name":"Food Cave"} +,{"_id":{"$oid":"55cba2486c522cafdb05938f"},"location":{"coordinates":[-74.0021428,40.7347462],"type":"Point"},"name":"Prime 135"} +,{"_id":{"$oid":"55cba2486c522cafdb059390"},"location":{"coordinates":[-73.9510279,40.635562],"type":"Point"},"name":"Ashoka Grill"} +,{"_id":{"$oid":"55cba2486c522cafdb059391"},"location":{"coordinates":[-74.00357439999999,40.7066816],"type":"Point"},"name":"Haagen Dazs"} +,{"_id":{"$oid":"55cba2486c522cafdb059392"},"location":{"coordinates":[-74.00113999999999,40.729529],"type":"Point"},"name":"Mirch Masala"} +,{"_id":{"$oid":"55cba2486c522cafdb059393"},"location":{"coordinates":[-73.926649,40.837181],"type":"Point"},"name":"The Pulpit Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb059394"},"location":{"coordinates":[-73.9017415,40.702594],"type":"Point"},"name":"Thai Village"} +,{"_id":{"$oid":"55cba2486c522cafdb059395"},"location":{"coordinates":[-73.98743309999999,40.7267339],"type":"Point"},"name":"Jewel Of India"} +,{"_id":{"$oid":"55cba2486c522cafdb059396"},"location":{"coordinates":[-73.9838506,40.6644005],"type":"Point"},"name":"Espresso 77"} +,{"_id":{"$oid":"55cba2486c522cafdb059397"},"location":{"coordinates":[-73.9919151,40.6900491],"type":"Point"},"name":"Red Mango"} +,{"_id":{"$oid":"55cba2486c522cafdb059398"},"location":{"coordinates":[-73.967608,40.63385299999999],"type":"Point"},"name":"Chatkhara Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059399"},"location":{"coordinates":[-73.74034499999999,40.7037044],"type":"Point"},"name":"Jerk Pan Kusine"} +,{"_id":{"$oid":"55cba2486c522cafdb05939a"},"location":{"coordinates":[-73.82737279999999,40.6936343],"type":"Point"},"name":"New Tandoori Hut"} +,{"_id":{"$oid":"55cba2486c522cafdb05939b"},"location":{"coordinates":[-73.8661517,40.6757086],"type":"Point"},"name":"Pizza Express"} +,{"_id":{"$oid":"55cba2486c522cafdb05939c"},"location":{"coordinates":[-73.9502179,40.68269470000001],"type":"Point"},"name":"Crown Chicken Pizza \u0026 Coffee Shop"} +,{"_id":{"$oid":"55cba2486c522cafdb05939d"},"location":{"coordinates":[-73.993647,40.74471],"type":"Point"},"name":"Smithfield Hall"} +,{"_id":{"$oid":"55cba2486c522cafdb05939e"},"location":{"coordinates":[-73.9882843,40.7368735],"type":"Point"},"name":"Fraiche Maxx"} +,{"_id":{"$oid":"55cba2486c522cafdb05939f"},"location":{"coordinates":[-73.9931416,40.7420364],"type":"Point"},"name":"The Juice Shop Kitchen \u0026 Juicery"} +,{"_id":{"$oid":"55cba2486c522cafdb0593a0"},"location":{"coordinates":[-73.881013,40.735281],"type":"Point"},"name":"Tommy Thai"} +,{"_id":{"$oid":"55cba2486c522cafdb0593a1"},"location":{"coordinates":[-73.82034039999999,40.8246536],"type":"Point"},"name":"15 Flavors"} +,{"_id":{"$oid":"55cba2486c522cafdb0593a2"},"location":{"coordinates":[-73.9786361,40.720461],"type":"Point"},"name":"New Chinatown Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb0593a3"},"location":{"coordinates":[-73.97881459999999,40.6352949],"type":"Point"},"name":"Corner Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb0593a4"},"location":{"coordinates":[-73.9627137,40.5983594],"type":"Point"},"name":"Guerrero'S Grocery \u0026 Deli"} +,{"_id":{"$oid":"55cba2486c522cafdb0593a5"},"location":{"coordinates":[-73.9432329,40.7115374],"type":"Point"},"name":"4Th Down"} +,{"_id":{"$oid":"55cba2486c522cafdb0593a6"},"location":{"coordinates":[-73.80197,40.76055849999999],"type":"Point"},"name":"Pine Tree Cafe \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb0593a7"},"location":{"coordinates":[-73.8315744,40.75868759999999],"type":"Point"},"name":"Prince Noodle And Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb0593a8"},"location":{"coordinates":[-73.9869859,40.7386377],"type":"Point"},"name":"Exki"} +,{"_id":{"$oid":"55cba2486c522cafdb0593a9"},"location":{"coordinates":[-73.98480400000001,40.72947],"type":"Point"},"name":"Am Planning Group Ltd"} +,{"_id":{"$oid":"55cba2486c522cafdb0593aa"},"location":{"coordinates":[-73.9416818,40.8131334],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2486c522cafdb0593ab"},"location":{"coordinates":[-73.9555127,40.6773814],"type":"Point"},"name":"The Crabby Shack"} +,{"_id":{"$oid":"55cba2486c522cafdb0593ac"},"location":{"coordinates":[-73.8281334,40.7629785],"type":"Point"},"name":"Bbq"} +,{"_id":{"$oid":"55cba2486c522cafdb0593ad"},"location":{"coordinates":[-73.98406500000002,40.728755],"type":"Point"},"name":"Beronberon"} +,{"_id":{"$oid":"55cba2486c522cafdb0593ae"},"location":{"coordinates":[-73.9965494,40.7469847],"type":"Point"},"name":"Abacky Potluck"} +,{"_id":{"$oid":"55cba2486c522cafdb0593af"},"location":{"coordinates":[-74.00918,40.65017599999999],"type":"Point"},"name":"Double Dragon"} +,{"_id":{"$oid":"55cba2486c522cafdb0593b0"},"location":{"coordinates":[-73.8818761,40.7499975],"type":"Point"},"name":"Saw Shack Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb0593b1"},"location":{"coordinates":[-73.9124026,40.7036512],"type":"Point"},"name":"Bleecker Deli \u0026 Grill"} +,{"_id":{"$oid":"55cba2486c522cafdb0593b2"},"location":{"coordinates":[-73.81344,40.762474],"type":"Point"},"name":"Harmony Noraebang"} +,{"_id":{"$oid":"55cba2486c522cafdb0593b3"},"location":{"coordinates":[-73.9563781,40.8030219],"type":"Point"},"name":"Cafe Frederick Harlem Parlor"} +,{"_id":{"$oid":"55cba2486c522cafdb0593b4"},"location":{"coordinates":[-73.82527259999999,40.7036166],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2486c522cafdb0593b5"},"location":{"coordinates":[-73.9583075,40.715],"type":"Point"},"name":"Sort Of Wine Bar"} +,{"_id":{"$oid":"55cba2486c522cafdb0593b6"},"location":{"coordinates":[-74.0097286,40.6359257],"type":"Point"},"name":"Wan Zhong Wang"} +,{"_id":{"$oid":"55cba2486c522cafdb0593b7"},"location":{"coordinates":[-73.8198074,40.6060131],"type":"Point"},"name":"Rocco'S Pizzeria"} +,{"_id":{"$oid":"55cba2486c522cafdb0593b8"},"location":{"coordinates":[-73.83075199999999,40.7584609],"type":"Point"},"name":"New Shanghai Tan Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb0593b9"},"location":{"coordinates":[-73.99453129999999,40.7433254],"type":"Point"},"name":"Jacks Coffee"} +,{"_id":{"$oid":"55cba2486c522cafdb0593ba"},"location":{"coordinates":[-73.9872592,40.7139682],"type":"Point"},"name":"Clinton Square Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb0593bb"},"location":{"coordinates":[-74.0156618,40.71137470000001],"type":"Point"},"name":"Dos Toros"} +,{"_id":{"$oid":"55cba2486c522cafdb0593bc"},"location":{"coordinates":[-73.933229,40.635151],"type":"Point"},"name":"Tropical Reflections Ballroom Llc"} +,{"_id":{"$oid":"55cba2486c522cafdb0593bd"},"location":{"coordinates":[-73.969431,40.604743],"type":"Point"},"name":"Brooklyn On Rye"} +,{"_id":{"$oid":"55cba2486c522cafdb0593be"},"location":{"coordinates":[-73.94754209999999,40.7115062],"type":"Point"},"name":"Love Gun"} +,{"_id":{"$oid":"55cba2486c522cafdb0593bf"},"location":{"coordinates":[-73.86769079999999,40.749343],"type":"Point"},"name":"Nuevo Tacos Al-Sudadero"} +,{"_id":{"$oid":"55cba2486c522cafdb0593c0"},"location":{"coordinates":[-73.981234,40.741912],"type":"Point"},"name":"Pastafina Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb0593c1"},"location":{"coordinates":[-73.7075558,40.7494238],"type":"Point"},"name":"Koyla"} +,{"_id":{"$oid":"55cba2486c522cafdb0593c2"},"location":{"coordinates":[-73.78934079999999,40.7265981],"type":"Point"},"name":"Taste Thai"} +,{"_id":{"$oid":"55cba2486c522cafdb0593c3"},"location":{"coordinates":[-73.86489399999999,40.7529558],"type":"Point"},"name":"La Troncalena Lounge \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb0593c4"},"location":{"coordinates":[-73.93416140000001,40.7449824],"type":"Point"},"name":"Spicy Mela"} +,{"_id":{"$oid":"55cba2486c522cafdb0593c5"},"location":{"coordinates":[-73.9733026,40.75140690000001],"type":"Point"},"name":"Luke'S Lobster"} +,{"_id":{"$oid":"55cba2486c522cafdb0593c6"},"location":{"coordinates":[-74.0102777,40.7037299],"type":"Point"},"name":"Insomnia Cooklies"} +,{"_id":{"$oid":"55cba2486c522cafdb0593c7"},"location":{"coordinates":[-73.9940039,40.6088642],"type":"Point"},"name":"No Name Cafe At 20Th Ave"} +,{"_id":{"$oid":"55cba2486c522cafdb0593c8"},"location":{"coordinates":[-73.9788428,40.729516],"type":"Point"},"name":"New Tasty King"} +,{"_id":{"$oid":"55cba2486c522cafdb0593c9"},"location":{"coordinates":[-73.9846833,40.6980805],"type":"Point"},"name":"Amarachi Prime"} +,{"_id":{"$oid":"55cba2486c522cafdb0593ca"},"location":{"coordinates":[-73.9715949,40.758062],"type":"Point"},"name":"Pret A Manger"} +,{"_id":{"$oid":"55cba2486c522cafdb0593cb"},"location":{"coordinates":[-73.77884200000001,40.757543],"type":"Point"},"name":"Joong Koog Jip"} +,{"_id":{"$oid":"55cba2486c522cafdb0593cc"},"location":{"coordinates":[-73.9029709,40.846107],"type":"Point"},"name":"Praia"} +,{"_id":{"$oid":"55cba2486c522cafdb0593cd"},"location":{"coordinates":[-73.829437,40.757178],"type":"Point"},"name":"Xian Famous Foods"} +,{"_id":{"$oid":"55cba2486c522cafdb0593ce"},"location":{"coordinates":[-73.9337966,40.7543419],"type":"Point"},"name":"Our Coffee Shop"} +,{"_id":{"$oid":"55cba2486c522cafdb0593cf"},"location":{"coordinates":[-73.9091613,40.8447336],"type":"Point"},"name":"Halal Taiba Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2486c522cafdb0593d0"},"location":{"coordinates":[-73.95571799999999,40.803424],"type":"Point"},"name":"Amaretto Espresso Bar"} +,{"_id":{"$oid":"55cba2486c522cafdb0593d1"},"location":{"coordinates":[-73.99564000000001,40.74863999999999],"type":"Point"},"name":"Friend House"} +,{"_id":{"$oid":"55cba2486c522cafdb0593d2"},"location":{"coordinates":[-73.8786381,40.8288833],"type":"Point"},"name":"China 8 Restaurant Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb0593d3"},"location":{"coordinates":[-73.95816140000001,40.6440508],"type":"Point"},"name":"Angelo'S Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb0593d4"},"location":{"coordinates":[-73.83252999999999,40.683892],"type":"Point"},"name":"Aladdin Hookah Lounge \u0026 Bar Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb0593d5"},"location":{"coordinates":[-99.1783188,19.3898843],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2486c522cafdb0593d6"},"location":{"coordinates":[-73.78681499999999,40.847354],"type":"Point"},"name":"City Island Yogurt Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb0593d7"},"location":{"coordinates":[-73.902755,40.675687],"type":"Point"},"name":"Burger Ur Way"} +,{"_id":{"$oid":"55cba2486c522cafdb0593d8"},"location":{"coordinates":[-73.98543579999999,40.7229984],"type":"Point"},"name":"Nicky Ii Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb0593d9"},"location":{"coordinates":[-73.97785,40.575627],"type":"Point"},"name":"Coffee Shop/Brick Oven Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb0593da"},"location":{"coordinates":[-73.9960031,40.7534666],"type":"Point"},"name":"Pitopia"} +,{"_id":{"$oid":"55cba2486c522cafdb0593db"},"location":{"coordinates":[-73.942891,40.60724099999999],"type":"Point"},"name":"Win Hing Fresh Tortillas \u0026 Taco"} +,{"_id":{"$oid":"55cba2486c522cafdb0593dc"},"location":{"coordinates":[-73.987854,40.5864104],"type":"Point"},"name":"Empire Taco China"} +,{"_id":{"$oid":"55cba2486c522cafdb0593dd"},"location":{"coordinates":[-73.9938293,40.7462287],"type":"Point"},"name":"Pita Grill"} +,{"_id":{"$oid":"55cba2486c522cafdb0593de"},"location":{"coordinates":[-74.17673400000001,40.539992],"type":"Point"},"name":"Twisted Dish Tavern"} +,{"_id":{"$oid":"55cba2486c522cafdb0593df"},"location":{"coordinates":[-73.8914411,40.8642686],"type":"Point"},"name":"I Love Ny Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb0593e0"},"location":{"coordinates":[-73.9524679,40.6506698],"type":"Point"},"name":"Family Stylz Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb0593e1"},"location":{"coordinates":[-73.949821,40.7727069],"type":"Point"},"name":"Aki Sushi"} +,{"_id":{"$oid":"55cba2486c522cafdb0593e2"},"location":{"coordinates":[-73.86355879999999,40.7517999],"type":"Point"},"name":"Maxim Chinese Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb0593e3"},"location":{"coordinates":[-73.93444699999999,40.850177],"type":"Point"},"name":"Burger Heights"} +,{"_id":{"$oid":"55cba2486c522cafdb0593e4"},"location":{"coordinates":[-73.81540400000002,40.762204],"type":"Point"},"name":"Panda King Kitchen"} +,{"_id":{"$oid":"55cba2486c522cafdb0593e5"},"location":{"coordinates":[-74.0766569,40.6437785],"type":"Point"},"name":"Staten Island Express"} +,{"_id":{"$oid":"55cba2486c522cafdb0593e6"},"location":{"coordinates":[-73.93745369999999,40.8555257],"type":"Point"},"name":"Next Door Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb0593e7"},"location":{"coordinates":[-73.91130009999999,40.7684046],"type":"Point"},"name":"Cairo Grill \u0026 Seafood"} +,{"_id":{"$oid":"55cba2486c522cafdb0593e8"},"location":{"coordinates":[-73.94514029999999,40.7257122],"type":"Point"},"name":"Cafe Edna"} +,{"_id":{"$oid":"55cba2486c522cafdb0593e9"},"location":{"coordinates":[-73.8830701,40.8050442],"type":"Point"},"name":"Southside Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb0593ea"},"location":{"coordinates":[-73.9530434,40.7786088],"type":"Point"},"name":"Kobeyaki"} +,{"_id":{"$oid":"55cba2486c522cafdb0593eb"},"location":{"coordinates":[-73.8119085,40.5874856],"type":"Point"},"name":"Dragon Garden"} +,{"_id":{"$oid":"55cba2486c522cafdb0593ec"},"location":{"coordinates":[-73.9898599,40.760347],"type":"Point"},"name":"A1 Ocha Sushi"} +,{"_id":{"$oid":"55cba2486c522cafdb0593ed"},"location":{"coordinates":[-73.86144949999999,40.8856332],"type":"Point"},"name":"Chix Express"} +,{"_id":{"$oid":"55cba2486c522cafdb0593ee"},"location":{"coordinates":[-73.91382999999999,40.67172],"type":"Point"},"name":"Four T Restaurant Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb0593ef"},"location":{"coordinates":[-73.99929019999999,40.7120301],"type":"Point"},"name":"Madison Plaza Gourmet"} +,{"_id":{"$oid":"55cba2486c522cafdb0593f0"},"location":{"coordinates":[-73.8467818,40.836155],"type":"Point"},"name":"Madleyn'S Coffee Shop"} +,{"_id":{"$oid":"55cba2486c522cafdb0593f1"},"location":{"coordinates":[-73.956858,40.598525],"type":"Point"},"name":"Yes Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb0593f2"},"location":{"coordinates":[-74.0046351,40.6438894],"type":"Point"},"name":"Luvums Tropical Ices"} +,{"_id":{"$oid":"55cba2486c522cafdb0593f3"},"location":{"coordinates":[-74.00318159999999,40.6019838],"type":"Point"},"name":"La Granja"} +,{"_id":{"$oid":"55cba2486c522cafdb0593f4"},"location":{"coordinates":[-73.9653112,40.7664957],"type":"Point"},"name":"66Th Street Donuts Llc"} +,{"_id":{"$oid":"55cba2486c522cafdb0593f5"},"location":{"coordinates":[-73.874779,40.762591],"type":"Point"},"name":"La Kueva Bar \u0026 Grill "} +,{"_id":{"$oid":"55cba2486c522cafdb0593f6"},"location":{"coordinates":[-74.002102,40.7080776],"type":"Point"},"name":"The Hideaway Spot"} +,{"_id":{"$oid":"55cba2486c522cafdb0593f7"},"location":{"coordinates":[-73.9715949,40.758062],"type":"Point"},"name":"Fika"} +,{"_id":{"$oid":"55cba2486c522cafdb0593f8"},"location":{"coordinates":[-74.0034964,40.7200151],"type":"Point"},"name":"Cafe Noir"} +,{"_id":{"$oid":"55cba2486c522cafdb0593f9"},"location":{"coordinates":[-73.7390961,40.6755861],"type":"Point"},"name":"K And D Seafood Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb0593fa"},"location":{"coordinates":[-73.9607224,40.5817823],"type":"Point"},"name":"Tamada"} +,{"_id":{"$oid":"55cba2486c522cafdb0593fb"},"location":{"coordinates":[-74.07686,40.631189],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2486c522cafdb0593fc"},"location":{"coordinates":[-74.17723190000001,40.5422472],"type":"Point"},"name":"Annadale Terrace"} +,{"_id":{"$oid":"55cba2486c522cafdb0593fd"},"location":{"coordinates":[-73.9449084,40.8347],"type":"Point"},"name":"Subway Of Broadway"} +,{"_id":{"$oid":"55cba2486c522cafdb0593fe"},"location":{"coordinates":[-73.8504169,40.7583772],"type":"Point"},"name":"Corona Park Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb0593ff"},"location":{"coordinates":[-73.990556,40.749722],"type":"Point"},"name":"Planet Smoothie"} +,{"_id":{"$oid":"55cba2486c522cafdb059400"},"location":{"coordinates":[-73.8038176,40.7606662],"type":"Point"},"name":"Gamasot"} +,{"_id":{"$oid":"55cba2486c522cafdb059401"},"location":{"coordinates":[-73.8830701,40.8050442],"type":"Point"},"name":"South Side Gourmet Spanish And American Food"} +,{"_id":{"$oid":"55cba2486c522cafdb059402"},"location":{"coordinates":[-73.9918058,40.7426581],"type":"Point"},"name":"J. Gumbo'S"} +,{"_id":{"$oid":"55cba2486c522cafdb059403"},"location":{"coordinates":[-73.9115042,40.8484547],"type":"Point"},"name":"China Star Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059404"},"location":{"coordinates":[-73.9347109,40.682668],"type":"Point"},"name":"Emeline'S"} +,{"_id":{"$oid":"55cba2486c522cafdb059405"},"location":{"coordinates":[-73.89496930000001,40.6927792],"type":"Point"},"name":"Sze'S Garden"} +,{"_id":{"$oid":"55cba2486c522cafdb059406"},"location":{"coordinates":[-73.9614666,40.59635],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2486c522cafdb059407"},"location":{"coordinates":[-73.9167645,40.7734981],"type":"Point"},"name":"Pizza Lovers"} +,{"_id":{"$oid":"55cba2486c522cafdb059408"},"location":{"coordinates":[-73.9145678,40.8786283],"type":"Point"},"name":"Tcr Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb059409"},"location":{"coordinates":[-73.9276522,40.7558041],"type":"Point"},"name":"Chela \u0026 Garnacha"} +,{"_id":{"$oid":"55cba2486c522cafdb05940a"},"location":{"coordinates":[-73.900097,40.643528],"type":"Point"},"name":"Taste \u0026 Buy Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb05940b"},"location":{"coordinates":[-73.8820593,40.7474628],"type":"Point"},"name":"Terraza 7 Train Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb05940c"},"location":{"coordinates":[-74.026353,40.63418799999999],"type":"Point"},"name":"Chubby'S Chicken And Burgers"} +,{"_id":{"$oid":"55cba2486c522cafdb05940d"},"location":{"coordinates":[-73.987573,40.672207],"type":"Point"},"name":"2 Duck Goose"} +,{"_id":{"$oid":"55cba2486c522cafdb05940e"},"location":{"coordinates":[-74.0077594,40.7104929],"type":"Point"},"name":"Lavazza Cafe Per Wes"} +,{"_id":{"$oid":"55cba2486c522cafdb05940f"},"location":{"coordinates":[-73.995023,40.717325],"type":"Point"},"name":"Flaming Kitchen"} +,{"_id":{"$oid":"55cba2486c522cafdb059410"},"location":{"coordinates":[-73.95191919999999,40.7176114],"type":"Point"},"name":"Juicery+Kitchen"} +,{"_id":{"$oid":"55cba2486c522cafdb059411"},"location":{"coordinates":[-73.8766706,40.7481288],"type":"Point"},"name":"Salud Es Belleza"} +,{"_id":{"$oid":"55cba2486c522cafdb059412"},"location":{"coordinates":[-73.96129499999999,40.6825059],"type":"Point"},"name":"Xochitl Taqueria"} +,{"_id":{"$oid":"55cba2486c522cafdb059413"},"location":{"coordinates":[-73.854015,40.8487909],"type":"Point"},"name":"Soups,Salads \u0026 Beyond"} +,{"_id":{"$oid":"55cba2486c522cafdb059414"},"location":{"coordinates":[-73.980715,40.6676619],"type":"Point"},"name":"Abide Brooklyn Pita"} +,{"_id":{"$oid":"55cba2486c522cafdb059415"},"location":{"coordinates":[-73.98930179999999,40.7400486],"type":"Point"},"name":"Obica Mozzarella Bar"} +,{"_id":{"$oid":"55cba2486c522cafdb059416"},"location":{"coordinates":[-74.01012209999999,40.7099124],"type":"Point"},"name":"Youge Yogurt"} +,{"_id":{"$oid":"55cba2486c522cafdb059417"},"location":{"coordinates":[-74.0156618,40.71137470000001],"type":"Point"},"name":"Skinnypizza"} +,{"_id":{"$oid":"55cba2486c522cafdb059418"},"location":{"coordinates":[-73.9226848,40.670381],"type":"Point"},"name":"Hardee Lee"} +,{"_id":{"$oid":"55cba2486c522cafdb059419"},"location":{"coordinates":[-73.925742,40.702737],"type":"Point"},"name":"New City"} +,{"_id":{"$oid":"55cba2486c522cafdb05941a"},"location":{"coordinates":[-73.923784,40.809785],"type":"Point"},"name":"R Bravos Pizzeria Corp"} +,{"_id":{"$oid":"55cba2486c522cafdb05941b"},"location":{"coordinates":[-73.74057599999999,40.717408],"type":"Point"},"name":"Creole Buffet Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb05941c"},"location":{"coordinates":[-73.8989301,40.8514397],"type":"Point"},"name":"La Estrella Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb05941d"},"location":{"coordinates":[-73.945573,40.747473],"type":"Point"},"name":"Il Falco"} +,{"_id":{"$oid":"55cba2486c522cafdb05941e"},"location":{"coordinates":[-73.9509173,40.7743591],"type":"Point"},"name":"Oriental Cafe / Sunny"} +,{"_id":{"$oid":"55cba2486c522cafdb05941f"},"location":{"coordinates":[-74.0276177,40.6325941],"type":"Point"},"name":"Ginger Sushi"} +,{"_id":{"$oid":"55cba2486c522cafdb059420"},"location":{"coordinates":[-73.96935959999999,40.6896604],"type":"Point"},"name":"Brooklyn Public House"} +,{"_id":{"$oid":"55cba2486c522cafdb059421"},"location":{"coordinates":[-74.009276,40.653376],"type":"Point"},"name":"Gran Villa Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059422"},"location":{"coordinates":[-73.9886939,40.7594618],"type":"Point"},"name":"Kodama Sushi"} +,{"_id":{"$oid":"55cba2486c522cafdb059423"},"location":{"coordinates":[-73.9681569,40.6363536],"type":"Point"},"name":"Fruitilicious Caffe And Grocery"} +,{"_id":{"$oid":"55cba2486c522cafdb059424"},"location":{"coordinates":[-73.8856772,40.7553772],"type":"Point"},"name":"Black Thai"} +,{"_id":{"$oid":"55cba2486c522cafdb059425"},"location":{"coordinates":[-73.93142739999999,40.7650975],"type":"Point"},"name":"Eastern Chinese Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059426"},"location":{"coordinates":[-73.9847793,40.7417983],"type":"Point"},"name":"Upland"} +,{"_id":{"$oid":"55cba2486c522cafdb059427"},"location":{"coordinates":[-73.9885143,40.6709208],"type":"Point"},"name":"Microchip Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb059428"},"location":{"coordinates":[-73.954157,40.610662],"type":"Point"},"name":"Funkiberry"} +,{"_id":{"$oid":"55cba2486c522cafdb059429"},"location":{"coordinates":[-73.9503857,40.7234959],"type":"Point"},"name":"Crepeteria"} +,{"_id":{"$oid":"55cba2486c522cafdb05942a"},"location":{"coordinates":[-73.779082,40.6653776],"type":"Point"},"name":"Rockaway Deli \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb05942b"},"location":{"coordinates":[-73.79070209999999,40.7680794],"type":"Point"},"name":"Flb'S Pub"} +,{"_id":{"$oid":"55cba2486c522cafdb05942c"},"location":{"coordinates":[-74.0071048,40.6744383],"type":"Point"},"name":"Big Daddy'S Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb05942d"},"location":{"coordinates":[-73.9846839,40.6249261],"type":"Point"},"name":"The Original Jerusalem Ii Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb05942e"},"location":{"coordinates":[-73.8606602,40.8325959],"type":"Point"},"name":"Vanga"} +,{"_id":{"$oid":"55cba2486c522cafdb05942f"},"location":{"coordinates":[-74.0089512,40.7142738],"type":"Point"},"name":"Washington Market Tavern"} +,{"_id":{"$oid":"55cba2486c522cafdb059430"},"location":{"coordinates":[-73.84850879999999,40.5814119],"type":"Point"},"name":"Belle Harbor Yacht Club"} +,{"_id":{"$oid":"55cba2486c522cafdb059431"},"location":{"coordinates":[-73.877521,40.737921],"type":"Point"},"name":"Broadway Bakery"} +,{"_id":{"$oid":"55cba2486c522cafdb059432"},"location":{"coordinates":[-73.9030476,40.8784024],"type":"Point"},"name":"New Adventure Juice Bar"} +,{"_id":{"$oid":"55cba2486c522cafdb059433"},"location":{"coordinates":[-74.0091334,40.60600489999999],"type":"Point"},"name":"Lemenev Healthy Cuisine"} +,{"_id":{"$oid":"55cba2486c522cafdb059434"},"location":{"coordinates":[-73.9887986,40.7684598],"type":"Point"},"name":"Mhk Subway"} +,{"_id":{"$oid":"55cba2486c522cafdb059435"},"location":{"coordinates":[-73.980402,40.57530999999999],"type":"Point"},"name":"Lunatics Ice Cream Parlor"} +,{"_id":{"$oid":"55cba2486c522cafdb059436"},"location":{"coordinates":[-73.9495972,40.7483347],"type":"Point"},"name":"The Mill Coffee House"} +,{"_id":{"$oid":"55cba2486c522cafdb059437"},"location":{"coordinates":[-73.9238457,40.7402753],"type":"Point"},"name":"Marabellas Pizzeria"} +,{"_id":{"$oid":"55cba2486c522cafdb059438"},"location":{"coordinates":[-73.93574799999999,40.584276],"type":"Point"},"name":"Wolf Cave Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb059439"},"location":{"coordinates":[-73.98720999999999,40.72553],"type":"Point"},"name":"Thamma"} +,{"_id":{"$oid":"55cba2486c522cafdb05943a"},"location":{"coordinates":[-73.8311101,40.7624427],"type":"Point"},"name":"Happy Family Hotpot"} +,{"_id":{"$oid":"55cba2486c522cafdb05943b"},"location":{"coordinates":[-73.989862,40.721061],"type":"Point"},"name":"Copper And Oak"} +,{"_id":{"$oid":"55cba2486c522cafdb05943c"},"location":{"coordinates":[-73.918714,40.704274],"type":"Point"},"name":"New York Falafel"} +,{"_id":{"$oid":"55cba2486c522cafdb05943d"},"location":{"coordinates":[-73.98330229999999,40.7226894],"type":"Point"},"name":"Root \u0026 Bone"} +,{"_id":{"$oid":"55cba2486c522cafdb05943e"},"location":{"coordinates":[-73.8864919,40.8273055],"type":"Point"},"name":"Cueva De Lobos Mexican Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb05943f"},"location":{"coordinates":[-73.9809246,40.6055036],"type":"Point"},"name":"Cafe Bajo La Luna"} +,{"_id":{"$oid":"55cba2486c522cafdb059440"},"location":{"coordinates":[-73.9094332,40.6999608],"type":"Point"},"name":"Jade Asian Express Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb059441"},"location":{"coordinates":[-73.987385,40.7217245],"type":"Point"},"name":"Sweet Chick"} +,{"_id":{"$oid":"55cba2486c522cafdb059442"},"location":{"coordinates":[-73.9865195,40.7543825],"type":"Point"},"name":"Mexicue"} +,{"_id":{"$oid":"55cba2486c522cafdb059443"},"location":{"coordinates":[-73.85747540000001,40.8480472],"type":"Point"},"name":"Antivari Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb059444"},"location":{"coordinates":[-73.745218,40.678038],"type":"Point"},"name":"Lovells After Dark Bar And Lounge"} +,{"_id":{"$oid":"55cba2486c522cafdb059445"},"location":{"coordinates":[-73.7544676,40.5964197],"type":"Point"},"name":"Crown Fried Chicken"} +,{"_id":{"$oid":"55cba2486c522cafdb059446"},"location":{"coordinates":[-73.9128795,40.6869087],"type":"Point"},"name":"Las 5 Americas Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059447"},"location":{"coordinates":[-73.918476,40.81892879999999],"type":"Point"},"name":"Los Hermanos Salazar Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059448"},"location":{"coordinates":[-73.983964,40.695679],"type":"Point"},"name":"Hampton Inn Brooklyn"} +,{"_id":{"$oid":"55cba2486c522cafdb059449"},"location":{"coordinates":[-73.9590147,40.77233150000001],"type":"Point"},"name":"Tang'S Garden"} +,{"_id":{"$oid":"55cba2486c522cafdb05944a"},"location":{"coordinates":[-74.0008161,40.7287707],"type":"Point"},"name":"Old Tbilisi"} +,{"_id":{"$oid":"55cba2486c522cafdb05944b"},"location":{"coordinates":[-73.8549895,40.848849],"type":"Point"},"name":"New Fresco Toetillas Tommy'S Kitchen Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb05944c"},"location":{"coordinates":[-73.98971399999999,40.716234],"type":"Point"},"name":"Old Man Hustle"} +,{"_id":{"$oid":"55cba2486c522cafdb05944d"},"location":{"coordinates":[-73.83535789999999,40.7569735],"type":"Point"},"name":"Grandma Dim Sum"} +,{"_id":{"$oid":"55cba2486c522cafdb05944e"},"location":{"coordinates":[-73.82747069999999,40.760001],"type":"Point"},"name":"Hot Point Pot"} +,{"_id":{"$oid":"55cba2486c522cafdb05944f"},"location":{"coordinates":[-73.73874339999999,40.7677353],"type":"Point"},"name":"Litle Neck Pizzeria"} +,{"_id":{"$oid":"55cba2486c522cafdb059450"},"location":{"coordinates":[-73.95651699999999,40.781729],"type":"Point"},"name":"Food Passion Park Ave"} +,{"_id":{"$oid":"55cba2486c522cafdb059451"},"location":{"coordinates":[-73.9398118,40.6625966],"type":"Point"},"name":"Sauce N Cheese 1"} +,{"_id":{"$oid":"55cba2486c522cafdb059452"},"location":{"coordinates":[-73.99970600000002,40.675033],"type":"Point"},"name":"Aperture"} +,{"_id":{"$oid":"55cba2486c522cafdb059453"},"location":{"coordinates":[-73.8151755,40.7299107],"type":"Point"},"name":"Indochi Fusion Cuisine"} +,{"_id":{"$oid":"55cba2486c522cafdb059454"},"location":{"coordinates":[-73.76781199999999,40.6575289],"type":"Point"},"name":"Boulevard Hero"} +,{"_id":{"$oid":"55cba2486c522cafdb059455"},"location":{"coordinates":[-73.9445492,40.7113531],"type":"Point"},"name":"Los Primos Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059456"},"location":{"coordinates":[-73.8836393,40.7472129],"type":"Point"},"name":"Golden City Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059457"},"location":{"coordinates":[-74.00415799999999,40.740797],"type":"Point"},"name":"Mulino A Vino"} +,{"_id":{"$oid":"55cba2486c522cafdb059458"},"location":{"coordinates":[-73.8215929,40.825758],"type":"Point"},"name":"Cabo Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059459"},"location":{"coordinates":[-74.0070552,40.6376465],"type":"Point"},"name":"Jia Xiang Kitchen"} +,{"_id":{"$oid":"55cba2486c522cafdb05945a"},"location":{"coordinates":[-73.883808,40.738405],"type":"Point"},"name":"The Hive Sports Bar And Grill"} +,{"_id":{"$oid":"55cba2486c522cafdb05945b"},"location":{"coordinates":[-73.9891178,40.6695427],"type":"Point"},"name":"Breadfruit Tree Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb05945c"},"location":{"coordinates":[-73.91966099999999,40.8656836],"type":"Point"},"name":"Apple Garden Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb05945d"},"location":{"coordinates":[-73.9541161,40.6805734],"type":"Point"},"name":"1174 Fulton Cuisine, Halal Food"} +,{"_id":{"$oid":"55cba2486c522cafdb05945e"},"location":{"coordinates":[-73.83081,40.758854],"type":"Point"},"name":"Frestyle Restaurant Inc."} +,{"_id":{"$oid":"55cba2486c522cafdb05945f"},"location":{"coordinates":[-73.940462,40.793827],"type":"Point"},"name":"La Mulatresse"} +,{"_id":{"$oid":"55cba2486c522cafdb059460"},"location":{"coordinates":[-73.9907455,40.5761718],"type":"Point"},"name":"Good Food By Shae"} +,{"_id":{"$oid":"55cba2486c522cafdb059461"},"location":{"coordinates":[-73.91861639999999,40.8385529],"type":"Point"},"name":"Cabarete Seafood"} +,{"_id":{"$oid":"55cba2486c522cafdb059462"},"location":{"coordinates":[-74.004031,40.63015499999999],"type":"Point"},"name":"Shogun Sushi"} +,{"_id":{"$oid":"55cba2486c522cafdb059463"},"location":{"coordinates":[-73.9944029,40.71758699999999],"type":"Point"},"name":"Pho Vietnam 87 Corporation"} +,{"_id":{"$oid":"55cba2486c522cafdb059464"},"location":{"coordinates":[-73.919326,40.668181],"type":"Point"},"name":"Villa Castillo Restaurant Corp"} +,{"_id":{"$oid":"55cba2486c522cafdb059465"},"location":{"coordinates":[-74.1655416,40.5425993],"type":"Point"},"name":"Sean M. Broderick United Health \u0026 Fitness Llc"} +,{"_id":{"$oid":"55cba2486c522cafdb059466"},"location":{"coordinates":[-74.0054442,40.7517983],"type":"Point"},"name":"Brk"} +,{"_id":{"$oid":"55cba2486c522cafdb059467"},"location":{"coordinates":[-73.9493121,40.801633],"type":"Point"},"name":"Harlem Food Court"} +,{"_id":{"$oid":"55cba2486c522cafdb059468"},"location":{"coordinates":[-73.9809902,40.6672747],"type":"Point"},"name":"Rice Thai Kitchen"} +,{"_id":{"$oid":"55cba2486c522cafdb059469"},"location":{"coordinates":[-74.1278913,40.5755285],"type":"Point"},"name":"Gourmet Chef Chinese Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb05946a"},"location":{"coordinates":[-73.974051,40.678969],"type":"Point"},"name":"Graine De Paris"} +,{"_id":{"$oid":"55cba2486c522cafdb05946b"},"location":{"coordinates":[-73.98294899999999,40.723998],"type":"Point"},"name":"Tuome"} +,{"_id":{"$oid":"55cba2486c522cafdb05946c"},"location":{"coordinates":[-73.9740489,40.7536196],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2486c522cafdb05946d"},"location":{"coordinates":[-73.91099129999999,40.8377198],"type":"Point"},"name":"Stroni"} +,{"_id":{"$oid":"55cba2486c522cafdb05946e"},"location":{"coordinates":[-73.9079236,40.7207484],"type":"Point"},"name":"New Choi Hee Ii Chinese Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb05946f"},"location":{"coordinates":[-74.003242,40.683261],"type":"Point"},"name":"Orchard Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb059470"},"location":{"coordinates":[-73.995959,40.719676],"type":"Point"},"name":"Two Hands"} +,{"_id":{"$oid":"55cba2486c522cafdb059471"},"location":{"coordinates":[-73.9806151,40.7573938],"type":"Point"},"name":"Robusta Espresso Bar"} +,{"_id":{"$oid":"55cba2486c522cafdb059472"},"location":{"coordinates":[-73.939341,40.791184],"type":"Point"},"name":"Natural Essentials \u0026 Wellness"} +,{"_id":{"$oid":"55cba2486c522cafdb059473"},"location":{"coordinates":[-74.18414489999999,40.6026821],"type":"Point"},"name":"Bario'S"} +,{"_id":{"$oid":"55cba2486c522cafdb059474"},"location":{"coordinates":[-74.1339799,40.636612],"type":"Point"},"name":"New Dinette"} +,{"_id":{"$oid":"55cba2486c522cafdb059475"},"location":{"coordinates":[-73.898653,40.890063],"type":"Point"},"name":"Broadway Joe'S Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb059476"},"location":{"coordinates":[-73.9989046,40.7138549],"type":"Point"},"name":"Buddha Bodai One Vegetarian Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059477"},"location":{"coordinates":[-73.820908,40.702286],"type":"Point"},"name":"Mangos Paradise"} +,{"_id":{"$oid":"55cba2486c522cafdb059478"},"location":{"coordinates":[-73.988978,40.727377],"type":"Point"},"name":"Bricklane Curry House"} +,{"_id":{"$oid":"55cba2486c522cafdb059479"},"location":{"coordinates":[-73.8505983,40.8309175],"type":"Point"},"name":"Jangana Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2486c522cafdb05947a"},"location":{"coordinates":[-73.8266707,40.7522577],"type":"Point"},"name":"Arita Ichiban"} +,{"_id":{"$oid":"55cba2486c522cafdb05947b"},"location":{"coordinates":[-73.9376628,40.8505367],"type":"Point"},"name":"Yummy Sushi \u0026 Falafel Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb05947c"},"location":{"coordinates":[-73.8892558,40.8482372],"type":"Point"},"name":"Amigos Restaurant, Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb05947d"},"location":{"coordinates":[-73.9903118,40.7542664],"type":"Point"},"name":"Black Iron Burger"} +,{"_id":{"$oid":"55cba2486c522cafdb05947e"},"location":{"coordinates":[-74.0007609,40.7417283],"type":"Point"},"name":"Cola'S Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb05947f"},"location":{"coordinates":[-73.98510700000001,40.717975],"type":"Point"},"name":"Joselito Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059480"},"location":{"coordinates":[-74.0123361,40.7038856],"type":"Point"},"name":"Antinori Ristorante"} +,{"_id":{"$oid":"55cba2486c522cafdb059481"},"location":{"coordinates":[-73.858848,40.743797],"type":"Point"},"name":"Manuelito Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059482"},"location":{"coordinates":[-73.965159,40.75994],"type":"Point"},"name":"Muscle Maker Grill"} +,{"_id":{"$oid":"55cba2486c522cafdb059483"},"location":{"coordinates":[-73.829437,40.757178],"type":"Point"},"name":"C \u0026 Y Noodle (Store#24 E)"} +,{"_id":{"$oid":"55cba2486c522cafdb059484"},"location":{"coordinates":[-73.8641592,40.7303491],"type":"Point"},"name":"Mado Japanese Cuisine"} +,{"_id":{"$oid":"55cba2486c522cafdb059485"},"location":{"coordinates":[-74.0156618,40.71137470000001],"type":"Point"},"name":"Blue Ribbon Sushi Bar"} +,{"_id":{"$oid":"55cba2486c522cafdb059486"},"location":{"coordinates":[-73.954166,40.744419],"type":"Point"},"name":"Gantry Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb059487"},"location":{"coordinates":[-73.97301999999999,40.610288],"type":"Point"},"name":"Picadilly Hall"} +,{"_id":{"$oid":"55cba2486c522cafdb059488"},"location":{"coordinates":[-74.0338817,40.6125389],"type":"Point"},"name":"Club Cats Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059489"},"location":{"coordinates":[-73.9285964,40.8560285],"type":"Point"},"name":"Pinto Bakery 2 Corp"} +,{"_id":{"$oid":"55cba2486c522cafdb05948a"},"location":{"coordinates":[-73.91064399999999,40.7134659],"type":"Point"},"name":"Bella Donna Pizzza"} +,{"_id":{"$oid":"55cba2486c522cafdb05948b"},"location":{"coordinates":[-73.9563477,40.640895],"type":"Point"},"name":"Bona Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb05948c"},"location":{"coordinates":[-73.98461759999999,40.7445242],"type":"Point"},"name":"29Th Street Hotel Acquisition Llc"} +,{"_id":{"$oid":"55cba2486c522cafdb05948d"},"location":{"coordinates":[-73.9793564,40.7589426],"type":"Point"},"name":"Dining Club Rockefeller Center"} +,{"_id":{"$oid":"55cba2486c522cafdb05948e"},"location":{"coordinates":[-73.92097199999999,40.73782200000001],"type":"Point"},"name":"The Jar Bar"} +,{"_id":{"$oid":"55cba2486c522cafdb05948f"},"location":{"coordinates":[-73.9483188,40.714014],"type":"Point"},"name":"Amici Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb059490"},"location":{"coordinates":[-73.954009,40.6995103],"type":"Point"},"name":"Chocolicious"} +,{"_id":{"$oid":"55cba2486c522cafdb059491"},"location":{"coordinates":[-73.9625882,40.63479359999999],"type":"Point"},"name":"Newkirk Fruit"} +,{"_id":{"$oid":"55cba2486c522cafdb059492"},"location":{"coordinates":[-73.9873612,40.6789212],"type":"Point"},"name":"Ample Hills Creamery"} +,{"_id":{"$oid":"55cba2486c522cafdb059493"},"location":{"coordinates":[-74.0938476,40.5848823],"type":"Point"},"name":"Michael'S Meatballs \u0026 Martinis"} +,{"_id":{"$oid":"55cba2486c522cafdb059494"},"location":{"coordinates":[-73.95096319999999,40.8252497],"type":"Point"},"name":"Anchor Winebar Llc"} +,{"_id":{"$oid":"55cba2486c522cafdb059495"},"location":{"coordinates":[-73.990556,40.749722],"type":"Point"},"name":"Planet Smoothie / Tasti D Lite"} +,{"_id":{"$oid":"55cba2486c522cafdb059496"},"location":{"coordinates":[-73.98874409999999,40.7212993],"type":"Point"},"name":"The Derby"} +,{"_id":{"$oid":"55cba2486c522cafdb059497"},"location":{"coordinates":[-73.9345968,40.8019414],"type":"Point"},"name":"Kennedy Chicken \u0026 Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb059498"},"location":{"coordinates":[-73.8675251,40.8663505],"type":"Point"},"name":"Papa John'S Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb059499"},"location":{"coordinates":[-73.9539549,40.774339],"type":"Point"},"name":"Cascabel Taqueria"} +,{"_id":{"$oid":"55cba2486c522cafdb05949a"},"location":{"coordinates":[-73.8797878,40.82852889999999],"type":"Point"},"name":"Paradise Fried Chicken"} +,{"_id":{"$oid":"55cba2486c522cafdb05949b"},"location":{"coordinates":[-73.9900055,40.6878152],"type":"Point"},"name":"We Olive And Wine Bar-Brooklyn"} +,{"_id":{"$oid":"55cba2486c522cafdb05949c"},"location":{"coordinates":[-73.954402,40.733159],"type":"Point"},"name":"Jungle Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb05949d"},"location":{"coordinates":[-73.9806261,40.7778468],"type":"Point"},"name":"Taco Grill"} +,{"_id":{"$oid":"55cba2486c522cafdb05949e"},"location":{"coordinates":[-73.947648,40.661509],"type":"Point"},"name":"Katie O'S"} +,{"_id":{"$oid":"55cba2486c522cafdb05949f"},"location":{"coordinates":[-73.99861899999999,40.676065],"type":"Point"},"name":"The Park Bench Cafe \u0026 Creperie"} +,{"_id":{"$oid":"55cba2486c522cafdb0594a0"},"location":{"coordinates":[-73.9206001,40.7666972],"type":"Point"},"name":"Fresko"} +,{"_id":{"$oid":"55cba2486c522cafdb0594a1"},"location":{"coordinates":[-74.0026187,40.7522229],"type":"Point"},"name":"Mona Nyc "} +,{"_id":{"$oid":"55cba2486c522cafdb0594a2"},"location":{"coordinates":[-73.95152999999999,40.743816],"type":"Point"},"name":"Jora Restaurant And Bar"} +,{"_id":{"$oid":"55cba2486c522cafdb0594a3"},"location":{"coordinates":[-74.001026,40.74737690000001],"type":"Point"},"name":"Grand Sichuan"} +,{"_id":{"$oid":"55cba2486c522cafdb0594a4"},"location":{"coordinates":[-73.96952879999999,40.7621856],"type":"Point"},"name":"La Gourmet"} +,{"_id":{"$oid":"55cba2486c522cafdb0594a5"},"location":{"coordinates":[-73.941154,40.711635],"type":"Point"},"name":"Sky Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2486c522cafdb0594a6"},"location":{"coordinates":[-73.9330662,40.7035577],"type":"Point"},"name":"Taqueria El Fogon 2"} +,{"_id":{"$oid":"55cba2486c522cafdb0594a7"},"location":{"coordinates":[-73.911386,40.7751117],"type":"Point"},"name":"Mike'S Diner"} +,{"_id":{"$oid":"55cba2486c522cafdb0594a8"},"location":{"coordinates":[-74.00489689999999,40.7419343],"type":"Point"},"name":"Corkbuzz Winebar Chelsea Market"} +,{"_id":{"$oid":"55cba2486c522cafdb0594a9"},"location":{"coordinates":[-73.8963436,40.8580952],"type":"Point"},"name":"Xin Xing"} +,{"_id":{"$oid":"55cba2486c522cafdb0594aa"},"location":{"coordinates":[-73.9568573,40.6883652],"type":"Point"},"name":"Three And A Half Men"} +,{"_id":{"$oid":"55cba2486c522cafdb0594ab"},"location":{"coordinates":[-73.92204869999999,40.7633494],"type":"Point"},"name":"Madame Sou Sou"} +,{"_id":{"$oid":"55cba2486c522cafdb0594ac"},"location":{"coordinates":[-73.971356,40.69297299999999],"type":"Point"},"name":"Jill Lindsey"} +,{"_id":{"$oid":"55cba2486c522cafdb0594ad"},"location":{"coordinates":[-74.00844699999999,40.637316],"type":"Point"},"name":"Daizen"} +,{"_id":{"$oid":"55cba2486c522cafdb0594ae"},"location":{"coordinates":[-73.83761299999999,40.651884],"type":"Point"},"name":"Old Mill Yacht Club"} +,{"_id":{"$oid":"55cba2486c522cafdb0594af"},"location":{"coordinates":[-73.8886552,40.743224],"type":"Point"},"name":"Upi Jaya Restaurant Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb0594b0"},"location":{"coordinates":[-73.98242359999999,40.746648],"type":"Point"},"name":"Gregory'S Coffee"} +,{"_id":{"$oid":"55cba2486c522cafdb0594b1"},"location":{"coordinates":[-73.986285,40.7305254],"type":"Point"},"name":"Mimi Cheng'S Dumplings"} +,{"_id":{"$oid":"55cba2486c522cafdb0594b2"},"location":{"coordinates":[-73.91963299999999,40.758595],"type":"Point"},"name":"Brik Bar Lounge \u0026 Kitchen"} +,{"_id":{"$oid":"55cba2486c522cafdb0594b3"},"location":{"coordinates":[-73.9424949,40.712052],"type":"Point"},"name":"Aburi Sushi"} +,{"_id":{"$oid":"55cba2486c522cafdb0594b4"},"location":{"coordinates":[-73.82198,40.687317],"type":"Point"},"name":"Good Hope Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb0594b5"},"location":{"coordinates":[-73.96068129999999,40.7618838],"type":"Point"},"name":"Ravagh Persian Grill"} +,{"_id":{"$oid":"55cba2486c522cafdb0594b6"},"location":{"coordinates":[-73.9335866,40.7050622],"type":"Point"},"name":"Roberta'S Pizza \u0026 Bakery"} +,{"_id":{"$oid":"55cba2486c522cafdb0594b7"},"location":{"coordinates":[-73.9967513,40.762384],"type":"Point"},"name":"Choza Taqueria"} +,{"_id":{"$oid":"55cba2486c522cafdb0594b8"},"location":{"coordinates":[-73.98160229999999,40.7511015],"type":"Point"},"name":"Norikoh"} +,{"_id":{"$oid":"55cba2486c522cafdb0594b9"},"location":{"coordinates":[-73.7838871,40.757582],"type":"Point"},"name":"Tang"} +,{"_id":{"$oid":"55cba2486c522cafdb0594ba"},"location":{"coordinates":[-74.01153459999999,40.7061121],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2486c522cafdb0594bb"},"location":{"coordinates":[-73.89951719999999,40.8622197],"type":"Point"},"name":"Joey Pepperoni'S Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb0594bc"},"location":{"coordinates":[-73.8639227,40.8325584],"type":"Point"},"name":"Olivia'S Restaurant \u0026 Lounge"} +,{"_id":{"$oid":"55cba2486c522cafdb0594bd"},"location":{"coordinates":[-92.7219756,41.7458849],"type":"Point"},"name":"Joey Pepperoni'S Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb0594be"},"location":{"coordinates":[-74.0071744,40.7163669],"type":"Point"},"name":"Tribeca Kitchen"} +,{"_id":{"$oid":"55cba2486c522cafdb0594bf"},"location":{"coordinates":[-73.827269,40.689845],"type":"Point"},"name":"Zen Hibachi Lounge"} +,{"_id":{"$oid":"55cba2486c522cafdb0594c0"},"location":{"coordinates":[-74.00450579999999,40.7069203],"type":"Point"},"name":"Roast Kitchen"} +,{"_id":{"$oid":"55cba2486c522cafdb0594c1"},"location":{"coordinates":[-73.9560039,40.7714799],"type":"Point"},"name":"Boqueria"} +,{"_id":{"$oid":"55cba2486c522cafdb0594c2"},"location":{"coordinates":[-73.99261059999999,40.7435496],"type":"Point"},"name":"Corner Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb0594c3"},"location":{"coordinates":[-74.001924,40.7346],"type":"Point"},"name":"Mezzrow"} +,{"_id":{"$oid":"55cba2486c522cafdb0594c4"},"location":{"coordinates":[-74.011331,40.70319],"type":"Point"},"name":"Rockwell'S"} +,{"_id":{"$oid":"55cba2486c522cafdb0594c5"},"location":{"coordinates":[-73.835876,40.682281],"type":"Point"},"name":"Golden House Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb0594c6"},"location":{"coordinates":[-73.910414,40.7043852],"type":"Point"},"name":"El Sabor Del Austro Corp"} +,{"_id":{"$oid":"55cba2486c522cafdb0594c7"},"location":{"coordinates":[-73.745218,40.678038],"type":"Point"},"name":"Garden City Chinese Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb0594c8"},"location":{"coordinates":[-73.98452069999999,40.6707486],"type":"Point"},"name":"Crepe Mix"} +,{"_id":{"$oid":"55cba2486c522cafdb0594c9"},"location":{"coordinates":[-74.1094482,40.5698876],"type":"Point"},"name":"Yogurt City"} +,{"_id":{"$oid":"55cba2486c522cafdb0594ca"},"location":{"coordinates":[-73.93044119999999,40.7608778],"type":"Point"},"name":"Jaliscos Restaurant Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb0594cb"},"location":{"coordinates":[-73.934196,40.798226],"type":"Point"},"name":"Taqueria El Barrio"} +,{"_id":{"$oid":"55cba2486c522cafdb0594cc"},"location":{"coordinates":[-73.83109929999999,40.84766],"type":"Point"},"name":"Two Brothers Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb0594cd"},"location":{"coordinates":[-73.9032751,40.86954970000001],"type":"Point"},"name":"Lucky Star"} +,{"_id":{"$oid":"55cba2486c522cafdb0594ce"},"location":{"coordinates":[-73.9939232,40.6605906],"type":"Point"},"name":"Castillo Restaurnat"} +,{"_id":{"$oid":"55cba2486c522cafdb0594cf"},"location":{"coordinates":[-74.0077493,40.6202856],"type":"Point"},"name":"Frank'S Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb0594d0"},"location":{"coordinates":[-73.7423458,40.7309059],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2486c522cafdb0594d1"},"location":{"coordinates":[-73.8853129,40.8548341],"type":"Point"},"name":"Cambreleng Coffee Corp."} +,{"_id":{"$oid":"55cba2486c522cafdb0594d2"},"location":{"coordinates":[-74.08306739999999,40.604816],"type":"Point"},"name":"Muscle Maker Grill"} +,{"_id":{"$oid":"55cba2486c522cafdb0594d3"},"location":{"coordinates":[-92.7292595,41.7461746],"type":"Point"},"name":"Crave It"} +,{"_id":{"$oid":"55cba2486c522cafdb0594d4"},"location":{"coordinates":[-73.982246,40.732299],"type":"Point"},"name":"Murray'S Falafel And Grill"} +,{"_id":{"$oid":"55cba2486c522cafdb0594d5"},"location":{"coordinates":[-74.00034699999999,40.729788],"type":"Point"},"name":"Crif Dogs"} +,{"_id":{"$oid":"55cba2486c522cafdb0594d6"},"location":{"coordinates":[-73.963432,40.67439700000001],"type":"Point"},"name":"Ogliastro"} +,{"_id":{"$oid":"55cba2486c522cafdb0594d7"},"location":{"coordinates":[-73.7997187,40.7042655],"type":"Point"},"name":"El Zarso"} +,{"_id":{"$oid":"55cba2486c522cafdb0594d8"},"location":{"coordinates":[-73.8784143,40.7418995],"type":"Point"},"name":"Sky Cafe Nyc Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb0594d9"},"location":{"coordinates":[-73.73442399999999,40.7724819],"type":"Point"},"name":"Cafe 1 Of A Kind"} +,{"_id":{"$oid":"55cba2486c522cafdb0594da"},"location":{"coordinates":[-73.78227199999999,40.70836300000001],"type":"Point"},"name":"Cane Grove Bakery Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb0594db"},"location":{"coordinates":[-73.9111449,40.6835805],"type":"Point"},"name":"Armando'S Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb0594dc"},"location":{"coordinates":[-74.0118845,40.70374289999999],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2486c522cafdb0594dd"},"location":{"coordinates":[-73.932807,40.741387],"type":"Point"},"name":"Redstone Rocket"} +,{"_id":{"$oid":"55cba2486c522cafdb0594de"},"location":{"coordinates":[-73.911931,40.685681],"type":"Point"},"name":"Andalucia Bar \u0026 Lounge"} +,{"_id":{"$oid":"55cba2486c522cafdb0594df"},"location":{"coordinates":[-73.89010979999999,40.8609963],"type":"Point"},"name":"Pizza Studio"} +,{"_id":{"$oid":"55cba2486c522cafdb0594e0"},"location":{"coordinates":[-73.87025299999999,40.6502743],"type":"Point"},"name":"Applebees Neighborhood Grill \u0026 Bar"} +,{"_id":{"$oid":"55cba2486c522cafdb0594e1"},"location":{"coordinates":[-73.924542,40.7435212],"type":"Point"},"name":"Tealicious Express"} +,{"_id":{"$oid":"55cba2486c522cafdb0594e2"},"location":{"coordinates":[-73.9877989,40.7197418],"type":"Point"},"name":"Essex Taqueria"} +,{"_id":{"$oid":"55cba2486c522cafdb0594e3"},"location":{"coordinates":[-73.82769449999999,40.7546369],"type":"Point"},"name":"Dumpling Galaxy"} +,{"_id":{"$oid":"55cba2486c522cafdb0594e4"},"location":{"coordinates":[-73.95751469999999,40.677325],"type":"Point"},"name":"Berg'N Beer Hall"} +,{"_id":{"$oid":"55cba2486c522cafdb0594e5"},"location":{"coordinates":[-73.837656,40.82347600000001],"type":"Point"},"name":"Applebees Neighborhood Grill \u0026 Bar"} +,{"_id":{"$oid":"55cba2486c522cafdb0594e6"},"location":{"coordinates":[-73.95751469999999,40.677325],"type":"Point"},"name":"Ramen Burger At Berg'N Beer Hall"} +,{"_id":{"$oid":"55cba2486c522cafdb0594e7"},"location":{"coordinates":[-73.98437609999999,40.7323421],"type":"Point"},"name":"The Halal Guys"} +,{"_id":{"$oid":"55cba2486c522cafdb0594e8"},"location":{"coordinates":[-73.93041199999999,40.7542814],"type":"Point"},"name":"Merit Deli"} +,{"_id":{"$oid":"55cba2486c522cafdb0594e9"},"location":{"coordinates":[-73.955561,40.736204],"type":"Point"},"name":"Le Fanfare"} +,{"_id":{"$oid":"55cba2486c522cafdb0594ea"},"location":{"coordinates":[-73.9215625,40.7637139],"type":"Point"},"name":"Astoria Brick"} +,{"_id":{"$oid":"55cba2486c522cafdb0594eb"},"location":{"coordinates":[-73.9901324,40.7292066],"type":"Point"},"name":"Dunkin' Donuts"} +,{"_id":{"$oid":"55cba2486c522cafdb0594ec"},"location":{"coordinates":[-73.8181943,40.7085787],"type":"Point"},"name":"Cuzco Peru Bbq Chicken"} +,{"_id":{"$oid":"55cba2486c522cafdb0594ed"},"location":{"coordinates":[-73.9452781,40.8288336],"type":"Point"},"name":"Mami Restaurant \u0026 Coffee Shop Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb0594ee"},"location":{"coordinates":[-73.816882,40.70225200000001],"type":"Point"},"name":"Al Golden Lion Deli"} +,{"_id":{"$oid":"55cba2486c522cafdb0594ef"},"location":{"coordinates":[-73.8670216,40.8660699],"type":"Point"},"name":"Golden Krust"} +,{"_id":{"$oid":"55cba2486c522cafdb0594f0"},"location":{"coordinates":[-73.9393173,40.6726221],"type":"Point"},"name":"Crown Fried Chicken And Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb0594f1"},"location":{"coordinates":[-73.995718,40.57313],"type":"Point"},"name":"Papas Fried Chicken And Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb0594f2"},"location":{"coordinates":[-73.8502862,40.7339148],"type":"Point"},"name":"El Rey Latino Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb0594f3"},"location":{"coordinates":[-73.8115541,40.6916918],"type":"Point"},"name":"Indian Diner"} +,{"_id":{"$oid":"55cba2486c522cafdb0594f4"},"location":{"coordinates":[-73.85024299999999,40.679642],"type":"Point"},"name":"Liberty Coffee Shop"} +,{"_id":{"$oid":"55cba2486c522cafdb0594f5"},"location":{"coordinates":[-73.9978033,40.674716],"type":"Point"},"name":"Kimchi Grill"} +,{"_id":{"$oid":"55cba2486c522cafdb0594f6"},"location":{"coordinates":[-73.9998543,40.7439414],"type":"Point"},"name":"Golden Wok Chinese Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb0594f7"},"location":{"coordinates":[-73.8481522,40.871634],"type":"Point"},"name":"Your Daley Bread"} +,{"_id":{"$oid":"55cba2486c522cafdb0594f8"},"location":{"coordinates":[-73.96038999999999,40.713844],"type":"Point"},"name":"Pasar Malam"} +,{"_id":{"$oid":"55cba2486c522cafdb0594f9"},"location":{"coordinates":[-73.989541,40.7265159],"type":"Point"},"name":"Anthony Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb0594fa"},"location":{"coordinates":[-73.90469,40.8493155],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2486c522cafdb0594fb"},"location":{"coordinates":[-73.9333716,40.7750368],"type":"Point"},"name":"Astoria Slices"} +,{"_id":{"$oid":"55cba2486c522cafdb0594fc"},"location":{"coordinates":[-74.0095256,40.7107975],"type":"Point"},"name":"Harper Collins"} +,{"_id":{"$oid":"55cba2486c522cafdb0594fd"},"location":{"coordinates":[-73.953019,40.744898],"type":"Point"},"name":"Linizio Pizzeria"} +,{"_id":{"$oid":"55cba2486c522cafdb0594fe"},"location":{"coordinates":[-73.988912,40.72939],"type":"Point"},"name":"The Bao"} +,{"_id":{"$oid":"55cba2486c522cafdb0594ff"},"location":{"coordinates":[-73.84375399999999,40.684607],"type":"Point"},"name":"Nutricion Radiante"} +,{"_id":{"$oid":"55cba2486c522cafdb059500"},"location":{"coordinates":[-73.90739599999999,40.700152],"type":"Point"},"name":"New Jade Palace Chinese Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059501"},"location":{"coordinates":[-73.8497605,40.7323333],"type":"Point"},"name":"Sushi Fussion, Llc"} +,{"_id":{"$oid":"55cba2486c522cafdb059502"},"location":{"coordinates":[-73.804723,40.757095],"type":"Point"},"name":"Java Day"} +,{"_id":{"$oid":"55cba2486c522cafdb059503"},"location":{"coordinates":[-73.9472196,40.7902759],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2486c522cafdb059504"},"location":{"coordinates":[-73.9225158,40.767076],"type":"Point"},"name":"Astoria Coffee"} +,{"_id":{"$oid":"55cba2486c522cafdb059505"},"location":{"coordinates":[-74.0107106,40.71646560000001],"type":"Point"},"name":"Macaron Boutique Llc"} +,{"_id":{"$oid":"55cba2486c522cafdb059506"},"location":{"coordinates":[-73.9430629,40.6798909],"type":"Point"},"name":"Soldier Restaurant \u0026 Buffet"} +,{"_id":{"$oid":"55cba2486c522cafdb059507"},"location":{"coordinates":[-73.9532497,40.7423848],"type":"Point"},"name":"Station Lic"} +,{"_id":{"$oid":"55cba2486c522cafdb059508"},"location":{"coordinates":[-73.92417189999999,40.73962239999999],"type":"Point"},"name":"Sonrisa Azul"} +,{"_id":{"$oid":"55cba2486c522cafdb059509"},"location":{"coordinates":[-73.9645355,40.57668049999999],"type":"Point"},"name":"Primorski"} +,{"_id":{"$oid":"55cba2486c522cafdb05950a"},"location":{"coordinates":[-73.888324,40.675387],"type":"Point"},"name":"La Cuesta"} +,{"_id":{"$oid":"55cba2486c522cafdb05950b"},"location":{"coordinates":[-73.93395799999999,40.704295],"type":"Point"},"name":"Gran Bar"} +,{"_id":{"$oid":"55cba2486c522cafdb05950c"},"location":{"coordinates":[-73.9609309,40.5818953],"type":"Point"},"name":"World Pizza \u0026 Fried Chicken"} +,{"_id":{"$oid":"55cba2486c522cafdb05950d"},"location":{"coordinates":[-73.92268299999999,40.69381],"type":"Point"},"name":"Sunrise/Sunset"} +,{"_id":{"$oid":"55cba2486c522cafdb05950e"},"location":{"coordinates":[-73.9192022,40.7655413],"type":"Point"},"name":"Monkey King X\u0026C"} +,{"_id":{"$oid":"55cba2486c522cafdb05950f"},"location":{"coordinates":[-73.9656313,40.6830342],"type":"Point"},"name":"Hops Hill"} +,{"_id":{"$oid":"55cba2486c522cafdb059510"},"location":{"coordinates":[-73.9705784,40.7554676],"type":"Point"},"name":"The Picnic Basket"} +,{"_id":{"$oid":"55cba2486c522cafdb059511"},"location":{"coordinates":[-73.9872651,40.7266816],"type":"Point"},"name":"Spice Cove"} +,{"_id":{"$oid":"55cba2486c522cafdb059512"},"location":{"coordinates":[-73.9498533,40.6808767],"type":"Point"},"name":"Veggies Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb059513"},"location":{"coordinates":[-73.8289779,40.8665658],"type":"Point"},"name":"Joe'S Crab Shack"} +,{"_id":{"$oid":"55cba2486c522cafdb059514"},"location":{"coordinates":[-73.8942543,40.8604184],"type":"Point"},"name":"Caney Lounge Corp"} +,{"_id":{"$oid":"55cba2486c522cafdb059515"},"location":{"coordinates":[-73.9557306,40.7661339],"type":"Point"},"name":"Cafe Ruquetta"} +,{"_id":{"$oid":"55cba2486c522cafdb059516"},"location":{"coordinates":[-73.89518699999999,40.7034779],"type":"Point"},"name":"The Monk"} +,{"_id":{"$oid":"55cba2486c522cafdb059517"},"location":{"coordinates":[-73.925855,40.700486],"type":"Point"},"name":"Alphaville"} +,{"_id":{"$oid":"55cba2486c522cafdb059518"},"location":{"coordinates":[-73.9454494,40.8346799],"type":"Point"},"name":"Caffe Bene"} +,{"_id":{"$oid":"55cba2486c522cafdb059519"},"location":{"coordinates":[-73.9443527,40.7472594],"type":"Point"},"name":"L.A. Gourmet"} +,{"_id":{"$oid":"55cba2486c522cafdb05951a"},"location":{"coordinates":[-73.9058943,40.6400601],"type":"Point"},"name":"G F C"} +,{"_id":{"$oid":"55cba2486c522cafdb05951b"},"location":{"coordinates":[-73.8901504,40.8629648],"type":"Point"},"name":"Super Juice"} +,{"_id":{"$oid":"55cba2486c522cafdb05951c"},"location":{"coordinates":[-73.97161,40.608699],"type":"Point"},"name":"Very Juice"} +,{"_id":{"$oid":"55cba2486c522cafdb05951d"},"location":{"coordinates":[-73.9188903,40.6390186],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2486c522cafdb05951e"},"location":{"coordinates":[-73.99392,40.763378],"type":"Point"},"name":"Muse Coffee Roasters Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb05951f"},"location":{"coordinates":[-73.9098221,40.7752176],"type":"Point"},"name":"Ok Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb059520"},"location":{"coordinates":[-73.98693089999999,40.7615138],"type":"Point"},"name":"Times Square Diner \u0026 Grill"} +,{"_id":{"$oid":"55cba2486c522cafdb059521"},"location":{"coordinates":[-73.9640934,40.6784388],"type":"Point"},"name":"Bcake Shop"} +,{"_id":{"$oid":"55cba2486c522cafdb059522"},"location":{"coordinates":[-74.00392099999999,40.7369293],"type":"Point"},"name":"Hamilton'S Soda Fountain"} +,{"_id":{"$oid":"55cba2486c522cafdb059523"},"location":{"coordinates":[-73.9467093,40.6961798],"type":"Point"},"name":"Crown Fried Chicken"} +,{"_id":{"$oid":"55cba2486c522cafdb059524"},"location":{"coordinates":[-73.7650867,40.7011811],"type":"Point"},"name":"Crown Fried Chicken"} +,{"_id":{"$oid":"55cba2486c522cafdb059525"},"location":{"coordinates":[-73.863457,40.745042],"type":"Point"},"name":"Pollos A La Brsa Sabor Peruano"} +,{"_id":{"$oid":"55cba2486c522cafdb059526"},"location":{"coordinates":[-73.982601,40.718622],"type":"Point"},"name":"Mini Munchies Pizzeria"} +,{"_id":{"$oid":"55cba2486c522cafdb059527"},"location":{"coordinates":[-73.762227,40.6971459],"type":"Point"},"name":"Z\u0026C Jamaicancuisine"} +,{"_id":{"$oid":"55cba2486c522cafdb059528"},"location":{"coordinates":[-73.981921,40.7386229],"type":"Point"},"name":"Hibachi Express 23Rd Street"} +,{"_id":{"$oid":"55cba2486c522cafdb059529"},"location":{"coordinates":[-74.0109331,40.7148631],"type":"Point"},"name":"Juice Press"} +,{"_id":{"$oid":"55cba2486c522cafdb05952a"},"location":{"coordinates":[-73.9913632,40.6857507],"type":"Point"},"name":"Red Star Sandwich Shop"} +,{"_id":{"$oid":"55cba2486c522cafdb05952b"},"location":{"coordinates":[-73.8614383,40.7578709],"type":"Point"},"name":"Capelli'S Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb05952c"},"location":{"coordinates":[-73.946726,40.825874],"type":"Point"},"name":"Village Fried Chicken"} +,{"_id":{"$oid":"55cba2486c522cafdb05952d"},"location":{"coordinates":[-73.9666007,40.763812],"type":"Point"},"name":"Birch Coffee"} +,{"_id":{"$oid":"55cba2486c522cafdb05952e"},"location":{"coordinates":[-74.0156618,40.71137470000001],"type":"Point"},"name":"Tartinery"} +,{"_id":{"$oid":"55cba2486c522cafdb05952f"},"location":{"coordinates":[-73.99130199999999,40.686023],"type":"Point"},"name":"Uglyducking"} +,{"_id":{"$oid":"55cba2486c522cafdb059530"},"location":{"coordinates":[-73.7510586,40.6697589],"type":"Point"},"name":"Jamaican Flavors"} +,{"_id":{"$oid":"55cba2486c522cafdb059531"},"location":{"coordinates":[-73.9684458,40.6792768],"type":"Point"},"name":"Spirited"} +,{"_id":{"$oid":"55cba2486c522cafdb059532"},"location":{"coordinates":[-74.02797799999999,40.622223],"type":"Point"},"name":"Wendy'S"} +,{"_id":{"$oid":"55cba2486c522cafdb059533"},"location":{"coordinates":[-73.9862038,40.747189],"type":"Point"},"name":"Krush"} +,{"_id":{"$oid":"55cba2486c522cafdb059534"},"location":{"coordinates":[-73.98338249999999,40.7656047],"type":"Point"},"name":"Wendy'S"} +,{"_id":{"$oid":"55cba2486c522cafdb059535"},"location":{"coordinates":[-73.9734394,40.75262559999999],"type":"Point"},"name":"Wendy'S"} +,{"_id":{"$oid":"55cba2486c522cafdb059536"},"location":{"coordinates":[-73.9281163,40.6336165],"type":"Point"},"name":"Wendy'S"} +,{"_id":{"$oid":"55cba2486c522cafdb059537"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"Wendy'S"} +,{"_id":{"$oid":"55cba2486c522cafdb059538"},"location":{"coordinates":[-73.90550329999999,40.7729736],"type":"Point"},"name":"Wah Fung"} +,{"_id":{"$oid":"55cba2486c522cafdb059539"},"location":{"coordinates":[-73.9788811,40.7450456],"type":"Point"},"name":"Sticky'S Finger Joint"} +,{"_id":{"$oid":"55cba2486c522cafdb05953a"},"location":{"coordinates":[-73.931637,40.8517706],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2486c522cafdb05953b"},"location":{"coordinates":[-73.9096794,40.6485456],"type":"Point"},"name":"L\u0026M Sandwichshop, Llc"} +,{"_id":{"$oid":"55cba2486c522cafdb05953c"},"location":{"coordinates":[-73.8260936,40.7462192],"type":"Point"},"name":"Red Apple Frozen Yogurt"} +,{"_id":{"$oid":"55cba2486c522cafdb05953d"},"location":{"coordinates":[-73.9670733,40.7989195],"type":"Point"},"name":"Casa Mexicana"} +,{"_id":{"$oid":"55cba2486c522cafdb05953e"},"location":{"coordinates":[-73.9308623,40.6517091],"type":"Point"},"name":"Fastway Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb05953f"},"location":{"coordinates":[-73.8822776,40.7480575],"type":"Point"},"name":"La Pequena Colombia"} +,{"_id":{"$oid":"55cba2486c522cafdb059540"},"location":{"coordinates":[-73.92483849999999,40.7614524],"type":"Point"},"name":"Willie O'S"} +,{"_id":{"$oid":"55cba2486c522cafdb059541"},"location":{"coordinates":[-73.9724398,40.75269369999999],"type":"Point"},"name":"Atrium"} +,{"_id":{"$oid":"55cba2486c522cafdb059542"},"location":{"coordinates":[-73.8396021,40.6742194],"type":"Point"},"name":"Jade Garden"} +,{"_id":{"$oid":"55cba2486c522cafdb059543"},"location":{"coordinates":[-73.978049,40.725657],"type":"Point"},"name":"Studio 151"} +,{"_id":{"$oid":"55cba2486c522cafdb059544"},"location":{"coordinates":[-74.00215399999999,40.60736199999999],"type":"Point"},"name":"18 Stars Kitchen"} +,{"_id":{"$oid":"55cba2486c522cafdb059545"},"location":{"coordinates":[-73.97895700000001,40.765386],"type":"Point"},"name":"Park Hyatt New York"} +,{"_id":{"$oid":"55cba2486c522cafdb059546"},"location":{"coordinates":[-73.97895700000001,40.765386],"type":"Point"},"name":"Park Hyatt New York"} +,{"_id":{"$oid":"55cba2486c522cafdb059547"},"location":{"coordinates":[-73.97895700000001,40.765386],"type":"Point"},"name":"Park Hyatt New York"} +,{"_id":{"$oid":"55cba2486c522cafdb059548"},"location":{"coordinates":[-73.7933853,40.705905],"type":"Point"},"name":"Joey Pepperonis Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb059549"},"location":{"coordinates":[-73.94932399999999,40.728435],"type":"Point"},"name":"Slick Willie"} +,{"_id":{"$oid":"55cba2486c522cafdb05954a"},"location":{"coordinates":[-74.12961450000002,40.6393033],"type":"Point"},"name":"Roosters Piri Piri"} +,{"_id":{"$oid":"55cba2486c522cafdb05954b"},"location":{"coordinates":[-73.9354828,40.6370477],"type":"Point"},"name":"Green Lite Lounge Llc"} +,{"_id":{"$oid":"55cba2486c522cafdb05954c"},"location":{"coordinates":[-73.9902819,40.7415807],"type":"Point"},"name":"Caffebene"} +,{"_id":{"$oid":"55cba2486c522cafdb05954d"},"location":{"coordinates":[-73.8725573,40.7422828],"type":"Point"},"name":"Chopstick Asian Cuisine"} +,{"_id":{"$oid":"55cba2486c522cafdb05954e"},"location":{"coordinates":[-73.95834909999999,40.6818945],"type":"Point"},"name":"1081 Fulton"} +,{"_id":{"$oid":"55cba2486c522cafdb05954f"},"location":{"coordinates":[-73.938705,40.707015],"type":"Point"},"name":"Paesthetics Llc"} +,{"_id":{"$oid":"55cba2486c522cafdb059550"},"location":{"coordinates":[-73.911171,40.676599],"type":"Point"},"name":"Kennedy Fried Chicken \u0026 Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb059551"},"location":{"coordinates":[-73.8151426,40.7397295],"type":"Point"},"name":"Akal Bakery Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb059552"},"location":{"coordinates":[-74.011138,40.65154],"type":"Point"},"name":"Los Poblanos Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059553"},"location":{"coordinates":[-73.9741264,40.7593608],"type":"Point"},"name":"Minamoto Kitchoan"} +,{"_id":{"$oid":"55cba2486c522cafdb059554"},"location":{"coordinates":[-73.7124888,40.7470879],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2486c522cafdb059555"},"location":{"coordinates":[-73.9871199,40.639793],"type":"Point"},"name":"Steak \u0026 Sizzle"} +,{"_id":{"$oid":"55cba2486c522cafdb059556"},"location":{"coordinates":[-73.992255,40.749712],"type":"Point"},"name":"Planet Smoothie"} +,{"_id":{"$oid":"55cba2486c522cafdb059557"},"location":{"coordinates":[-73.98225099999999,40.728284],"type":"Point"},"name":"Ethos"} +,{"_id":{"$oid":"55cba2486c522cafdb059558"},"location":{"coordinates":[-73.99574659999999,40.7592387],"type":"Point"},"name":"Fika"} +,{"_id":{"$oid":"55cba2486c522cafdb059559"},"location":{"coordinates":[-73.837525,40.5800079],"type":"Point"},"name":"Local Liquids Juice Bar"} +,{"_id":{"$oid":"55cba2486c522cafdb05955a"},"location":{"coordinates":[-73.8454983,40.772841],"type":"Point"},"name":"Parc Roof Bar Llc"} +,{"_id":{"$oid":"55cba2486c522cafdb05955b"},"location":{"coordinates":[-73.86610019999999,40.8319634],"type":"Point"},"name":"Blended-Up Juice, Smoothies \u0026 Salad Bar, Corp"} +,{"_id":{"$oid":"55cba2486c522cafdb05955c"},"location":{"coordinates":[-73.936144,40.841475],"type":"Point"},"name":"Slice Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb05955d"},"location":{"coordinates":[-73.98534699999999,40.736252],"type":"Point"},"name":"A Spice Lane"} +,{"_id":{"$oid":"55cba2486c522cafdb05955e"},"location":{"coordinates":[-73.9379462,40.85067],"type":"Point"},"name":"Yo Sweets"} +,{"_id":{"$oid":"55cba2486c522cafdb05955f"},"location":{"coordinates":[-73.8289779,40.8665658],"type":"Point"},"name":"Sarku Japan"} +,{"_id":{"$oid":"55cba2486c522cafdb059560"},"location":{"coordinates":[-73.918145,40.765087],"type":"Point"},"name":"Sunberi Yogurt"} +,{"_id":{"$oid":"55cba2486c522cafdb059561"},"location":{"coordinates":[-73.96322880000001,40.7983818],"type":"Point"},"name":"Tum \u0026 Yum"} +,{"_id":{"$oid":"55cba2486c522cafdb059562"},"location":{"coordinates":[-73.81419679999999,40.7656898],"type":"Point"},"name":"Gaeul"} +,{"_id":{"$oid":"55cba2486c522cafdb059563"},"location":{"coordinates":[-73.88144419999999,40.742168],"type":"Point"},"name":"8 Paet Rio"} +,{"_id":{"$oid":"55cba2486c522cafdb059564"},"location":{"coordinates":[-74.0025902,40.7307011],"type":"Point"},"name":"Starbucks"} +,{"_id":{"$oid":"55cba2486c522cafdb059565"},"location":{"coordinates":[-73.9643664,40.76424129999999],"type":"Point"},"name":"Teavana#22632"} +,{"_id":{"$oid":"55cba2486c522cafdb059566"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"United Airlines Red Carpet Club"} +,{"_id":{"$oid":"55cba2486c522cafdb059567"},"location":{"coordinates":[-74.029338,40.618061],"type":"Point"},"name":"Campo Bello Restaurant 2"} +,{"_id":{"$oid":"55cba2486c522cafdb059568"},"location":{"coordinates":[-73.809342,40.692054],"type":"Point"},"name":"Club Vibe Bar And Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb059569"},"location":{"coordinates":[-73.995342,40.7204284],"type":"Point"},"name":"Egg Shop"} +,{"_id":{"$oid":"55cba2486c522cafdb05956a"},"location":{"coordinates":[-73.89311,40.8604356],"type":"Point"},"name":"Limpia Deli Subs Grocery"} +,{"_id":{"$oid":"55cba2486c522cafdb05956b"},"location":{"coordinates":[-73.935937,40.622162],"type":"Point"},"name":"Agra King Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb05956c"},"location":{"coordinates":[-73.853415,40.8490589],"type":"Point"},"name":"Burger Time"} +,{"_id":{"$oid":"55cba2486c522cafdb05956d"},"location":{"coordinates":[-73.70964719999999,40.73725719999999],"type":"Point"},"name":"Hillside Dosa Hutt"} +,{"_id":{"$oid":"55cba2486c522cafdb05956e"},"location":{"coordinates":[-74.0005309,40.6007616],"type":"Point"},"name":"Lutzina Bar \u0026 Lounge"} +,{"_id":{"$oid":"55cba2486c522cafdb05956f"},"location":{"coordinates":[-74.00702,40.739143],"type":"Point"},"name":"Ed'S Lobster Bar"} +,{"_id":{"$oid":"55cba2486c522cafdb059570"},"location":{"coordinates":[-73.95804919999999,40.7188652],"type":"Point"},"name":"Cherry Izakaya"} +,{"_id":{"$oid":"55cba2486c522cafdb059571"},"location":{"coordinates":[-74.0206484,40.6348987],"type":"Point"},"name":"Yemen Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059572"},"location":{"coordinates":[-73.804928,40.70221000000001],"type":"Point"},"name":"Chase Taste Buffet"} +,{"_id":{"$oid":"55cba2486c522cafdb059573"},"location":{"coordinates":[-73.9500101,40.6801956],"type":"Point"},"name":"Wingstop"} +,{"_id":{"$oid":"55cba2486c522cafdb059574"},"location":{"coordinates":[-73.9710257,40.7594553],"type":"Point"},"name":"Mike'S Bistro"} +,{"_id":{"$oid":"55cba2486c522cafdb059575"},"location":{"coordinates":[-73.9937933,40.7534117],"type":"Point"},"name":"Love Sandwiches"} +,{"_id":{"$oid":"55cba2486c522cafdb059576"},"location":{"coordinates":[-73.883167,40.7431231],"type":"Point"},"name":"Chatime"} +,{"_id":{"$oid":"55cba2486c522cafdb059577"},"location":{"coordinates":[-73.90836999999999,40.754249],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2486c522cafdb059578"},"location":{"coordinates":[-73.80526189999999,40.8118209],"type":"Point"},"name":"Filomena'S Pizza And Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059579"},"location":{"coordinates":[-74.02672559999999,40.6212885],"type":"Point"},"name":"Planet Wings"} +,{"_id":{"$oid":"55cba2486c522cafdb05957a"},"location":{"coordinates":[-73.9171654,40.8341484],"type":"Point"},"name":"Loja'S Pizza Corp."} +,{"_id":{"$oid":"55cba2486c522cafdb05957b"},"location":{"coordinates":[-73.95102399999999,40.68897399999999],"type":"Point"},"name":"Luca Luca"} +,{"_id":{"$oid":"55cba2486c522cafdb05957c"},"location":{"coordinates":[-73.97834,40.610586],"type":"Point"},"name":"Pizzeria Di Mola"} +,{"_id":{"$oid":"55cba2486c522cafdb05957d"},"location":{"coordinates":[-73.984223,40.75215499999999],"type":"Point"},"name":"Calle Dao"} +,{"_id":{"$oid":"55cba2486c522cafdb05957e"},"location":{"coordinates":[-73.8154844,40.7295018],"type":"Point"},"name":"Fkng Corp"} +,{"_id":{"$oid":"55cba2486c522cafdb05957f"},"location":{"coordinates":[-73.842029,40.840629],"type":"Point"},"name":"National Diner"} +,{"_id":{"$oid":"55cba2486c522cafdb059580"},"location":{"coordinates":[-73.8706606,40.7342757],"type":"Point"},"name":"Panda Express #2634"} +,{"_id":{"$oid":"55cba2486c522cafdb059581"},"location":{"coordinates":[-73.8639709,40.6919993],"type":"Point"},"name":"Mr. Wonton"} +,{"_id":{"$oid":"55cba2486c522cafdb059582"},"location":{"coordinates":[-73.8984828,40.8590316],"type":"Point"},"name":"Lupita'S Mexican Food"} +,{"_id":{"$oid":"55cba2486c522cafdb059583"},"location":{"coordinates":[-73.957227,40.729301],"type":"Point"},"name":"Littleneck Outpost"} +,{"_id":{"$oid":"55cba2486c522cafdb059584"},"location":{"coordinates":[-73.89496919999999,40.6927792],"type":"Point"},"name":"Pizza Cucina Of Ridgewood"} +,{"_id":{"$oid":"55cba2486c522cafdb059585"},"location":{"coordinates":[-73.9896843,40.7565374],"type":"Point"},"name":"Urbo"} +,{"_id":{"$oid":"55cba2486c522cafdb059586"},"location":{"coordinates":[-73.9896843,40.7565374],"type":"Point"},"name":"Urbo"} +,{"_id":{"$oid":"55cba2486c522cafdb059587"},"location":{"coordinates":[-73.9896843,40.7565374],"type":"Point"},"name":"Urbo"} +,{"_id":{"$oid":"55cba2486c522cafdb059588"},"location":{"coordinates":[-73.92027999999999,40.8611656],"type":"Point"},"name":"Sushi Mambo"} +,{"_id":{"$oid":"55cba2486c522cafdb059589"},"location":{"coordinates":[-73.9689637,40.7583248],"type":"Point"},"name":"Crimson \u0026 Rye"} +,{"_id":{"$oid":"55cba2486c522cafdb05958a"},"location":{"coordinates":[-73.82946849999999,40.8698014],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2486c522cafdb05958b"},"location":{"coordinates":[-73.849358,40.904551],"type":"Point"},"name":"Chillz Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb05958c"},"location":{"coordinates":[-73.987844,40.6747512],"type":"Point"},"name":"The Cantine"} +,{"_id":{"$oid":"55cba2486c522cafdb05958d"},"location":{"coordinates":[-73.9754935,40.6356025],"type":"Point"},"name":"Papa Gyro"} +,{"_id":{"$oid":"55cba2486c522cafdb05958e"},"location":{"coordinates":[-73.851095,40.84294],"type":"Point"},"name":"There Should Always Be Cake"} +,{"_id":{"$oid":"55cba2486c522cafdb05958f"},"location":{"coordinates":[-73.961873,40.7168652],"type":"Point"},"name":"Brooklyn Chocolate House"} +,{"_id":{"$oid":"55cba2486c522cafdb059590"},"location":{"coordinates":[-73.91703799999999,40.695485],"type":"Point"},"name":"Danny'S Restaurant Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb059591"},"location":{"coordinates":[-73.9931802,40.6824584],"type":"Point"},"name":"Savoia"} +,{"_id":{"$oid":"55cba2486c522cafdb059592"},"location":{"coordinates":[-74.000451,40.7349856],"type":"Point"},"name":"Chapter One"} +,{"_id":{"$oid":"55cba2486c522cafdb059593"},"location":{"coordinates":[-73.947529,40.634671],"type":"Point"},"name":"Ital Fusion 2 Inc."} +,{"_id":{"$oid":"55cba2486c522cafdb059594"},"location":{"coordinates":[-73.87877189999999,40.7398374],"type":"Point"},"name":"Taiwanese Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059595"},"location":{"coordinates":[-74.011963,40.7042826],"type":"Point"},"name":"Dig Inn Seasonal Market"} +,{"_id":{"$oid":"55cba2486c522cafdb059596"},"location":{"coordinates":[-73.8765052,40.8798749],"type":"Point"},"name":"Ming Liang Kitchen"} +,{"_id":{"$oid":"55cba2486c522cafdb059597"},"location":{"coordinates":[-73.863248,40.750437],"type":"Point"},"name":"Tacos Al Suadero"} +,{"_id":{"$oid":"55cba2486c522cafdb059598"},"location":{"coordinates":[-73.953825,40.744456],"type":"Point"},"name":"El Ay Si"} +,{"_id":{"$oid":"55cba2486c522cafdb059599"},"location":{"coordinates":[-73.8311982,40.7610882],"type":"Point"},"name":"Joos"} +,{"_id":{"$oid":"55cba2486c522cafdb05959a"},"location":{"coordinates":[-73.9939157,40.7154794],"type":"Point"},"name":"68 Deli Canal Store"} +,{"_id":{"$oid":"55cba2486c522cafdb05959b"},"location":{"coordinates":[-73.8460288,40.7850217],"type":"Point"},"name":"Wenzhou Cuisine"} +,{"_id":{"$oid":"55cba2486c522cafdb05959c"},"location":{"coordinates":[-73.918519,40.769919],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2486c522cafdb05959d"},"location":{"coordinates":[-74.165466,40.5825753],"type":"Point"},"name":"Haagen Dazs"} +,{"_id":{"$oid":"55cba2486c522cafdb05959e"},"location":{"coordinates":[-73.8150785,40.7404919],"type":"Point"},"name":"Long Cheng Food"} +,{"_id":{"$oid":"55cba2486c522cafdb05959f"},"location":{"coordinates":[-74.17808459999999,40.5415699],"type":"Point"},"name":"Romeo'S Pizzeria"} +,{"_id":{"$oid":"55cba2486c522cafdb0595a0"},"location":{"coordinates":[-73.846121,40.783534],"type":"Point"},"name":"Eat Express"} +,{"_id":{"$oid":"55cba2486c522cafdb0595a1"},"location":{"coordinates":[-73.8939786,40.8633899],"type":"Point"},"name":"Smoothie Creation Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb0595a2"},"location":{"coordinates":[-74.01556699999999,40.7141115],"type":"Point"},"name":"Bank Of Nova Scotia Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb0595a3"},"location":{"coordinates":[-74.0077594,40.7104929],"type":"Point"},"name":"Quynh'S Vietnamese Sandwiches"} +,{"_id":{"$oid":"55cba2486c522cafdb0595a4"},"location":{"coordinates":[-73.979044,40.7409899],"type":"Point"},"name":"Joey Pepperoni"} +,{"_id":{"$oid":"55cba2486c522cafdb0595a5"},"location":{"coordinates":[-74.0032061,40.7182583],"type":"Point"},"name":"Joey Pepperoni"} +,{"_id":{"$oid":"55cba2486c522cafdb0595a6"},"location":{"coordinates":[-73.95544939999999,40.718903],"type":"Point"},"name":"Kilo Bravo"} +,{"_id":{"$oid":"55cba2486c522cafdb0595a7"},"location":{"coordinates":[-73.9110792,40.7006141],"type":"Point"},"name":"Tbaar"} +,{"_id":{"$oid":"55cba2486c522cafdb0595a8"},"location":{"coordinates":[-73.9876029,40.732144],"type":"Point"},"name":"Be Juice"} +,{"_id":{"$oid":"55cba2486c522cafdb0595a9"},"location":{"coordinates":[-73.9758599,40.5777913],"type":"Point"},"name":"Delish Kitchen"} +,{"_id":{"$oid":"55cba2486c522cafdb0595aa"},"location":{"coordinates":[-73.95164,40.712559],"type":"Point"},"name":"Starbucks"} +,{"_id":{"$oid":"55cba2486c522cafdb0595ab"},"location":{"coordinates":[-74.105261,40.575461],"type":"Point"},"name":"Troy"} +,{"_id":{"$oid":"55cba2486c522cafdb0595ac"},"location":{"coordinates":[-74.01209399999999,40.704208],"type":"Point"},"name":"Latte Art"} +,{"_id":{"$oid":"55cba2486c522cafdb0595ad"},"location":{"coordinates":[-73.966196,40.7626599],"type":"Point"},"name":"Chipotle Mexican Grill # 2135"} +,{"_id":{"$oid":"55cba2486c522cafdb0595ae"},"location":{"coordinates":[-73.984212,40.757148],"type":"Point"},"name":"Red Moon"} +,{"_id":{"$oid":"55cba2486c522cafdb0595af"},"location":{"coordinates":[-73.9582209,40.7456053],"type":"Point"},"name":"Coffeed"} +,{"_id":{"$oid":"55cba2486c522cafdb0595b0"},"location":{"coordinates":[-73.9760672,40.7568029],"type":"Point"},"name":"Roast Kitchen"} +,{"_id":{"$oid":"55cba2486c522cafdb0595b1"},"location":{"coordinates":[-73.94764099999999,40.747986],"type":"Point"},"name":"Tost Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb0595b2"},"location":{"coordinates":[-73.98844129999999,40.7482511],"type":"Point"},"name":"The Harold"} +,{"_id":{"$oid":"55cba2486c522cafdb0595b3"},"location":{"coordinates":[-73.8320766,40.7671812],"type":"Point"},"name":"Soho Catering \u0026 Coffee"} +,{"_id":{"$oid":"55cba2486c522cafdb0595b4"},"location":{"coordinates":[-74.0080916,40.6403208],"type":"Point"},"name":"Eggwell"} +,{"_id":{"$oid":"55cba2486c522cafdb0595b5"},"location":{"coordinates":[-73.9199012,40.8614431],"type":"Point"},"name":"203 Lena Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb0595b6"},"location":{"coordinates":[-73.973642,40.756571],"type":"Point"},"name":"Waldorf Astoria"} +,{"_id":{"$oid":"55cba2486c522cafdb0595b7"},"location":{"coordinates":[-73.932371,40.8484482],"type":"Point"},"name":"Chicken Ranch"} +,{"_id":{"$oid":"55cba2486c522cafdb0595b8"},"location":{"coordinates":[-73.973642,40.756571],"type":"Point"},"name":"Waldorf Astoria"} +,{"_id":{"$oid":"55cba2486c522cafdb0595b9"},"location":{"coordinates":[-73.901622,40.838107],"type":"Point"},"name":"Us Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2486c522cafdb0595ba"},"location":{"coordinates":[-73.9835069,40.695024],"type":"Point"},"name":"Pollo D' Oro"} +,{"_id":{"$oid":"55cba2486c522cafdb0595bb"},"location":{"coordinates":[-73.868107,40.703187],"type":"Point"},"name":"Bambino Pizza Ii"} +,{"_id":{"$oid":"55cba2486c522cafdb0595bc"},"location":{"coordinates":[-73.97990500000002,40.7775589],"type":"Point"},"name":"Crepes \u0026 Delices"} +,{"_id":{"$oid":"55cba2486c522cafdb0595bd"},"location":{"coordinates":[-73.95425399999999,40.77487],"type":"Point"},"name":"The Gilroy"} +,{"_id":{"$oid":"55cba2486c522cafdb0595be"},"location":{"coordinates":[-73.98683609999999,40.6398592],"type":"Point"},"name":"Morrito'S Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb0595bf"},"location":{"coordinates":[-73.8224845,40.7534231],"type":"Point"},"name":"Dou Jia Fu Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb0595c0"},"location":{"coordinates":[-73.8652819,40.8637789],"type":"Point"},"name":"Verona Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb0595c1"},"location":{"coordinates":[-73.9859541,40.6895316],"type":"Point"},"name":"Kung Fu Tea"} +,{"_id":{"$oid":"55cba2486c522cafdb0595c2"},"location":{"coordinates":[-74.135842,40.634018],"type":"Point"},"name":"La Jarocha Rest Corp"} +,{"_id":{"$oid":"55cba2486c522cafdb0595c3"},"location":{"coordinates":[-74.0032228,40.74352150000001],"type":"Point"},"name":"Hot Sichuan"} +,{"_id":{"$oid":"55cba2486c522cafdb0595c4"},"location":{"coordinates":[-73.94040799999999,40.792903],"type":"Point"},"name":"Bosie Bakery"} +,{"_id":{"$oid":"55cba2486c522cafdb0595c5"},"location":{"coordinates":[-73.9005296,40.6761727],"type":"Point"},"name":"Club House Sports Bar And Lounge"} +,{"_id":{"$oid":"55cba2486c522cafdb0595c6"},"location":{"coordinates":[-73.99049099999999,40.7516],"type":"Point"},"name":"Al'S Deli"} +,{"_id":{"$oid":"55cba2486c522cafdb0595c7"},"location":{"coordinates":[-74.00253959999999,40.7579403],"type":"Point"},"name":"Centerplate-Employee Cafeteria-Jacob K Javits Convention Center"} +,{"_id":{"$oid":"55cba2486c522cafdb0595c8"},"location":{"coordinates":[-74.00253959999999,40.7579403],"type":"Point"},"name":"Center Plate- Concourse Cafe-Jacob K Javits Convention Center"} +,{"_id":{"$oid":"55cba2486c522cafdb0595c9"},"location":{"coordinates":[-73.89993299999999,40.9016329],"type":"Point"},"name":"F \u0026 B Foods Llc"} +,{"_id":{"$oid":"55cba2486c522cafdb0595ca"},"location":{"coordinates":[-73.945642,40.792658],"type":"Point"},"name":"Great Hong Kong Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb0595cb"},"location":{"coordinates":[-73.9885815,40.7286769],"type":"Point"},"name":"Red And Gold Crab Shack"} +,{"_id":{"$oid":"55cba2486c522cafdb0595cc"},"location":{"coordinates":[-74.1663215,40.6357107],"type":"Point"},"name":"El Famoso Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb0595cd"},"location":{"coordinates":[-73.9409728,40.8031606],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2486c522cafdb0595ce"},"location":{"coordinates":[-73.8330519,40.7587756],"type":"Point"},"name":"Liang Pi Wang"} +,{"_id":{"$oid":"55cba2486c522cafdb0595cf"},"location":{"coordinates":[-73.962482,40.758374],"type":"Point"},"name":"Bella Roma Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb0595d0"},"location":{"coordinates":[-73.993614,40.7026421],"type":"Point"},"name":"Roomr"} +,{"_id":{"$oid":"55cba2486c522cafdb0595d1"},"location":{"coordinates":[-73.9849553,40.76416340000001],"type":"Point"},"name":"Bistro 53 Llc"} +,{"_id":{"$oid":"55cba2486c522cafdb0595d2"},"location":{"coordinates":[-73.99321619999999,40.74284859999999],"type":"Point"},"name":"Great Burrito"} +,{"_id":{"$oid":"55cba2486c522cafdb0595d3"},"location":{"coordinates":[-73.9734254,40.7527279],"type":"Point"},"name":"Piatsa Kalamaki"} +,{"_id":{"$oid":"55cba2486c522cafdb0595d4"},"location":{"coordinates":[-73.99967699999999,40.73912],"type":"Point"},"name":"Big Smoke Burger"} +,{"_id":{"$oid":"55cba2486c522cafdb0595d5"},"location":{"coordinates":[-73.8662492,40.8593656],"type":"Point"},"name":"Cosinita"} +,{"_id":{"$oid":"55cba2486c522cafdb0595d6"},"location":{"coordinates":[-73.91977820000001,40.8380163],"type":"Point"},"name":"Stormy The Real Shake"} +,{"_id":{"$oid":"55cba2486c522cafdb0595d7"},"location":{"coordinates":[-73.79052759999999,40.7262136],"type":"Point"},"name":"Crepe 'N' Tearia"} +,{"_id":{"$oid":"55cba2486c522cafdb0595d8"},"location":{"coordinates":[-73.83069499999999,40.6602124],"type":"Point"},"name":"Neighborhood Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb0595d9"},"location":{"coordinates":[-73.99469479999999,40.7168935],"type":"Point"},"name":"1St Stop"} +,{"_id":{"$oid":"55cba2486c522cafdb0595da"},"location":{"coordinates":[-73.9484606,40.7243559],"type":"Point"},"name":"Donut Shop"} +,{"_id":{"$oid":"55cba2486c522cafdb0595db"},"location":{"coordinates":[-73.96277409999999,40.7150829],"type":"Point"},"name":"Brooklyn Crust"} +,{"_id":{"$oid":"55cba2486c522cafdb0595dc"},"location":{"coordinates":[-73.98789909999999,40.7292983],"type":"Point"},"name":"Yonekichi"} +,{"_id":{"$oid":"55cba2486c522cafdb0595dd"},"location":{"coordinates":[-73.95079700000001,40.659481],"type":"Point"},"name":"Have It At My Place"} +,{"_id":{"$oid":"55cba2486c522cafdb0595de"},"location":{"coordinates":[-73.948295,40.777838],"type":"Point"},"name":"Shorty'S"} +,{"_id":{"$oid":"55cba2486c522cafdb0595df"},"location":{"coordinates":[-73.9872855,40.7477239],"type":"Point"},"name":"Space Billard"} +,{"_id":{"$oid":"55cba2486c522cafdb0595e0"},"location":{"coordinates":[-74.2159118,40.5222021],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2486c522cafdb0595e1"},"location":{"coordinates":[-73.9618969,40.7133185],"type":"Point"},"name":"Khao Sarn"} +,{"_id":{"$oid":"55cba2486c522cafdb0595e2"},"location":{"coordinates":[-73.802249,40.8569937],"type":"Point"},"name":"Planet Orchard Beach"} +,{"_id":{"$oid":"55cba2486c522cafdb0595e3"},"location":{"coordinates":[-73.88884100000001,40.843998],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2486c522cafdb0595e4"},"location":{"coordinates":[-73.8500014,40.6941235],"type":"Point"},"name":"Joe'S Pizza And Pasta Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb0595e5"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"Hudson/Dunkin Donuts/Basking Robins"} +,{"_id":{"$oid":"55cba2486c522cafdb0595e6"},"location":{"coordinates":[-74.003407,40.72543340000001],"type":"Point"},"name":"Soho Room"} +,{"_id":{"$oid":"55cba2486c522cafdb0595e7"},"location":{"coordinates":[-73.7025864,40.7517111],"type":"Point"},"name":"Sparta Restaurant Group Llc"} +,{"_id":{"$oid":"55cba2486c522cafdb0595e8"},"location":{"coordinates":[-73.9773439,40.7590054],"type":"Point"},"name":"Limani 51 Llc"} +,{"_id":{"$oid":"55cba2486c522cafdb0595e9"},"location":{"coordinates":[-73.8110609,40.7659018],"type":"Point"},"name":"New Jagalchi Sushi."} +,{"_id":{"$oid":"55cba2486c522cafdb0595ea"},"location":{"coordinates":[-92.72969499999999,41.7461469],"type":"Point"},"name":"Jars By Dani"} +,{"_id":{"$oid":"55cba2486c522cafdb0595eb"},"location":{"coordinates":[-73.93705969999999,40.7345147],"type":"Point"},"name":"Greenpoint Deli"} +,{"_id":{"$oid":"55cba2486c522cafdb0595ec"},"location":{"coordinates":[-74.0083095,40.6398814],"type":"Point"},"name":"Bubble Tea"} +,{"_id":{"$oid":"55cba2486c522cafdb0595ed"},"location":{"coordinates":[-73.99608959999999,40.7430356],"type":"Point"},"name":"El Coco"} +,{"_id":{"$oid":"55cba2486c522cafdb0595ee"},"location":{"coordinates":[-73.92006959999999,40.77081159999999],"type":"Point"},"name":"Basil Brick Oven"} +,{"_id":{"$oid":"55cba2486c522cafdb0595ef"},"location":{"coordinates":[-73.85817,40.6923672],"type":"Point"},"name":"New Pop'S Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb0595f0"},"location":{"coordinates":[-73.8289779,40.8665658],"type":"Point"},"name":"Cinnabon"} +,{"_id":{"$oid":"55cba2486c522cafdb0595f1"},"location":{"coordinates":[-73.9701338,40.7573807],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2486c522cafdb0595f2"},"location":{"coordinates":[-73.9015673,40.8906248],"type":"Point"},"name":"Dante'S"} +,{"_id":{"$oid":"55cba2486c522cafdb0595f3"},"location":{"coordinates":[-74.0130228,40.642316],"type":"Point"},"name":"55 Deli \u0026 Grill Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb0595f4"},"location":{"coordinates":[-73.79137,40.6791873],"type":"Point"},"name":"New Happy Wok"} +,{"_id":{"$oid":"55cba2486c522cafdb0595f5"},"location":{"coordinates":[-74.0076428,40.7157261],"type":"Point"},"name":"Pakistan Tea House"} +,{"_id":{"$oid":"55cba2486c522cafdb0595f6"},"location":{"coordinates":[-73.98380399999999,40.72102599999999],"type":"Point"},"name":"Khushboo Indian Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb0595f7"},"location":{"coordinates":[-73.9440879,40.7142689],"type":"Point"},"name":"A.W.O.L. All Walks Of Life"} +,{"_id":{"$oid":"55cba2486c522cafdb0595f8"},"location":{"coordinates":[-73.951363,40.805506],"type":"Point"},"name":"Freddy'S Soul Caribbean Restaurant Corp"} +,{"_id":{"$oid":"55cba2486c522cafdb0595f9"},"location":{"coordinates":[-73.9922909,40.71614090000001],"type":"Point"},"name":"Fatih Kerem Corp"} +,{"_id":{"$oid":"55cba2486c522cafdb0595fa"},"location":{"coordinates":[-73.955307,40.734657],"type":"Point"},"name":"Ria Bella"} +,{"_id":{"$oid":"55cba2486c522cafdb0595fb"},"location":{"coordinates":[-73.958871,40.6677696],"type":"Point"},"name":"Mountain"} +,{"_id":{"$oid":"55cba2486c522cafdb0595fc"},"location":{"coordinates":[-73.91314600000001,40.76654800000001],"type":"Point"},"name":"Cleopatra Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb0595fd"},"location":{"coordinates":[-73.98461759999999,40.7445242],"type":"Point"},"name":"Marta"} +,{"_id":{"$oid":"55cba2486c522cafdb0595fe"},"location":{"coordinates":[-73.92478849999999,40.8382075],"type":"Point"},"name":"Wah Yong Kitchen"} +,{"_id":{"$oid":"55cba2486c522cafdb0595ff"},"location":{"coordinates":[-73.9031305,40.7033619],"type":"Point"},"name":"Julia'S Beer And Wine Bar Llc"} +,{"_id":{"$oid":"55cba2486c522cafdb059600"},"location":{"coordinates":[-73.9741571,40.7476788],"type":"Point"},"name":"Sachi Asian Bistro"} +,{"_id":{"$oid":"55cba2486c522cafdb059601"},"location":{"coordinates":[-73.92493759999999,40.8274727],"type":"Point"},"name":"Mei Ya Kitchen"} +,{"_id":{"$oid":"55cba2486c522cafdb059602"},"location":{"coordinates":[-73.98461759999999,40.7445242],"type":"Point"},"name":"Veronica'S"} +,{"_id":{"$oid":"55cba2486c522cafdb059603"},"location":{"coordinates":[-73.79417880000001,40.7795949],"type":"Point"},"name":"King Noodle"} +,{"_id":{"$oid":"55cba2486c522cafdb059604"},"location":{"coordinates":[-73.9855996,40.7522725],"type":"Point"},"name":"Gong Cha"} +,{"_id":{"$oid":"55cba2486c522cafdb059605"},"location":{"coordinates":[-73.76993039999999,40.7620398],"type":"Point"},"name":"Red Mango"} +,{"_id":{"$oid":"55cba2486c522cafdb059606"},"location":{"coordinates":[-73.9071993,40.8626594],"type":"Point"},"name":"Celia'S Restaurants"} +,{"_id":{"$oid":"55cba2486c522cafdb059607"},"location":{"coordinates":[-73.8318649,40.759222],"type":"Point"},"name":"Magic Tea House"} +,{"_id":{"$oid":"55cba2486c522cafdb059608"},"location":{"coordinates":[-73.9853832,40.7206224],"type":"Point"},"name":"Balvanera"} +,{"_id":{"$oid":"55cba2486c522cafdb059609"},"location":{"coordinates":[-73.95398399999999,40.730613],"type":"Point"},"name":"Bread Brothers Iii"} +,{"_id":{"$oid":"55cba2486c522cafdb05960a"},"location":{"coordinates":[-73.91929600000002,40.759365],"type":"Point"},"name":"Cuatomate"} +,{"_id":{"$oid":"55cba2486c522cafdb05960b"},"location":{"coordinates":[-73.9891044,40.7227167],"type":"Point"},"name":"Domino'S Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb05960c"},"location":{"coordinates":[-74.0072253,40.7265691],"type":"Point"},"name":"La Colombe"} +,{"_id":{"$oid":"55cba2486c522cafdb05960d"},"location":{"coordinates":[-73.9024919,40.8603],"type":"Point"},"name":"Beautiful Paradise Restaurant Corp"} +,{"_id":{"$oid":"55cba2486c522cafdb05960e"},"location":{"coordinates":[-73.936289,40.734715],"type":"Point"},"name":"Ola Caffe"} +,{"_id":{"$oid":"55cba2486c522cafdb05960f"},"location":{"coordinates":[-73.99748509999999,40.7326239],"type":"Point"},"name":"Domino'S Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb059610"},"location":{"coordinates":[-73.9156849,40.8694283],"type":"Point"},"name":"Cafe Sahara"} +,{"_id":{"$oid":"55cba2486c522cafdb059611"},"location":{"coordinates":[-73.892286,40.700743],"type":"Point"},"name":"Hero Express \u0026 Grocery"} +,{"_id":{"$oid":"55cba2486c522cafdb059612"},"location":{"coordinates":[-73.95081069999999,40.6505451],"type":"Point"},"name":"Kreyol Flavor"} +,{"_id":{"$oid":"55cba2486c522cafdb059613"},"location":{"coordinates":[-73.9804876,40.7778157],"type":"Point"},"name":"Redstone Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb059614"},"location":{"coordinates":[-73.8270977,40.8690256],"type":"Point"},"name":"Red Lobster"} +,{"_id":{"$oid":"55cba2486c522cafdb059615"},"location":{"coordinates":[-73.812084,40.691832],"type":"Point"},"name":"Tasty Fried Chicken"} +,{"_id":{"$oid":"55cba2486c522cafdb059616"},"location":{"coordinates":[-73.7934781,40.7701871],"type":"Point"},"name":"Kalamaki Gr"} +,{"_id":{"$oid":"55cba2486c522cafdb059617"},"location":{"coordinates":[-73.9396354,40.8220958],"type":"Point"},"name":"Ivory D O S Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb059618"},"location":{"coordinates":[-74.008363,40.740733],"type":"Point"},"name":"Sean Cunningham"} +,{"_id":{"$oid":"55cba2486c522cafdb059619"},"location":{"coordinates":[-73.9904789,40.61243899999999],"type":"Point"},"name":"E E Bakery Inc."} +,{"_id":{"$oid":"55cba2486c522cafdb05961a"},"location":{"coordinates":[-73.96193000000001,40.694121],"type":"Point"},"name":"Brewklyn Grind Coffee"} +,{"_id":{"$oid":"55cba2486c522cafdb05961b"},"location":{"coordinates":[-74.0144863,40.7078788],"type":"Point"},"name":"Yorganic"} +,{"_id":{"$oid":"55cba2486c522cafdb05961c"},"location":{"coordinates":[-74.027686,40.630923],"type":"Point"},"name":"Carvel 914"} +,{"_id":{"$oid":"55cba2486c522cafdb05961d"},"location":{"coordinates":[-73.952496,40.63703],"type":"Point"},"name":"Pontential Vegetal (Pv Herbs \u0026 Vitamins)"} +,{"_id":{"$oid":"55cba2486c522cafdb05961e"},"location":{"coordinates":[-73.9959287,40.7219678],"type":"Point"},"name":"Pinkberry"} +,{"_id":{"$oid":"55cba2486c522cafdb05961f"},"location":{"coordinates":[-73.8733919,40.7624551],"type":"Point"},"name":"Medallo Restaurant Lounge Corp"} +,{"_id":{"$oid":"55cba2486c522cafdb059620"},"location":{"coordinates":[-73.9373725,40.855113],"type":"Point"},"name":"Las Tapas"} +,{"_id":{"$oid":"55cba2486c522cafdb059621"},"location":{"coordinates":[-73.8506474,40.6796404],"type":"Point"},"name":"Jing Wah Chinese Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059622"},"location":{"coordinates":[-73.96753199999999,40.80012],"type":"Point"},"name":"Plowshares Coffee"} +,{"_id":{"$oid":"55cba2486c522cafdb059623"},"location":{"coordinates":[-73.8289779,40.8665658],"type":"Point"},"name":"Pretzel Maker"} +,{"_id":{"$oid":"55cba2486c522cafdb059624"},"location":{"coordinates":[-73.95013999999999,40.82229299999999],"type":"Point"},"name":"Grill On The Hill"} +,{"_id":{"$oid":"55cba2486c522cafdb059625"},"location":{"coordinates":[-73.9934141,40.75837629999999],"type":"Point"},"name":"Rowe Studios Lounge"} +,{"_id":{"$oid":"55cba2486c522cafdb059626"},"location":{"coordinates":[-73.991793,40.7612125],"type":"Point"},"name":"414 Hotel"} +,{"_id":{"$oid":"55cba2486c522cafdb059627"},"location":{"coordinates":[-73.9586027,40.6509874],"type":"Point"},"name":"China Thai"} +,{"_id":{"$oid":"55cba2486c522cafdb059628"},"location":{"coordinates":[-73.92283499999999,40.77155399999999],"type":"Point"},"name":"Andy'S Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb059629"},"location":{"coordinates":[-73.8881646,40.6554442],"type":"Point"},"name":"Gfc"} +,{"_id":{"$oid":"55cba2486c522cafdb05962a"},"location":{"coordinates":[-73.940978,40.5942756],"type":"Point"},"name":"Thai Basil"} +,{"_id":{"$oid":"55cba2486c522cafdb05962b"},"location":{"coordinates":[-74.0104657,40.7103768],"type":"Point"},"name":"Tet Test"} +,{"_id":{"$oid":"55cba2486c522cafdb05962c"},"location":{"coordinates":[-74.0021187,40.7409573],"type":"Point"},"name":"Google Laplace"} +,{"_id":{"$oid":"55cba2486c522cafdb05962d"},"location":{"coordinates":[-73.996357,40.740637],"type":"Point"},"name":"Adp Innovations Lab"} +,{"_id":{"$oid":"55cba2486c522cafdb05962e"},"location":{"coordinates":[-73.9813826,40.6594221],"type":"Point"},"name":"Brunswick"} +,{"_id":{"$oid":"55cba2486c522cafdb05962f"},"location":{"coordinates":[-73.94937759999999,40.6486704],"type":"Point"},"name":"Danny Supper Club"} +,{"_id":{"$oid":"55cba2486c522cafdb059630"},"location":{"coordinates":[-73.8818009,40.7639122],"type":"Point"},"name":"Great Wall"} +,{"_id":{"$oid":"55cba2486c522cafdb059631"},"location":{"coordinates":[-74.13565,40.56089],"type":"Point"},"name":"Fire Grilled Burgers"} +,{"_id":{"$oid":"55cba2486c522cafdb059632"},"location":{"coordinates":[-73.96374920000001,40.798018],"type":"Point"},"name":"Capri Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059633"},"location":{"coordinates":[-73.8703799,40.749246],"type":"Point"},"name":"Delicias Calenas Bakery \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059634"},"location":{"coordinates":[-74.0087992,40.6365114],"type":"Point"},"name":"Taste Buddy Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb059635"},"location":{"coordinates":[-73.96248659999999,40.758522],"type":"Point"},"name":"Hummus 21"} +,{"_id":{"$oid":"55cba2486c522cafdb059636"},"location":{"coordinates":[-73.83054790000001,40.758552],"type":"Point"},"name":"That Store"} +,{"_id":{"$oid":"55cba2486c522cafdb059637"},"location":{"coordinates":[-73.856526,40.847648],"type":"Point"},"name":"Patsy'S Pizzeria"} +,{"_id":{"$oid":"55cba2486c522cafdb059638"},"location":{"coordinates":[-73.92003500000001,40.839911],"type":"Point"},"name":"Vismar Coffee Shop"} +,{"_id":{"$oid":"55cba2486c522cafdb059639"},"location":{"coordinates":[-73.96451499999999,40.619421],"type":"Point"},"name":"Glatt Coney Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb05963a"},"location":{"coordinates":[-73.929112,40.681814],"type":"Point"},"name":"Magic Soul Food"} +,{"_id":{"$oid":"55cba2486c522cafdb05963b"},"location":{"coordinates":[-73.985608,40.669142],"type":"Point"},"name":"Pitas And Sticks"} +,{"_id":{"$oid":"55cba2486c522cafdb05963c"},"location":{"coordinates":[-73.9329973,40.85007179999999],"type":"Point"},"name":"Edin Food And Bakery"} +,{"_id":{"$oid":"55cba2486c522cafdb05963d"},"location":{"coordinates":[-73.9902738,40.599368],"type":"Point"},"name":"Little Saigon Pearl"} +,{"_id":{"$oid":"55cba2486c522cafdb05963e"},"location":{"coordinates":[-73.981325,40.702798],"type":"Point"},"name":"Hillside"} +,{"_id":{"$oid":"55cba2486c522cafdb05963f"},"location":{"coordinates":[-73.78936500000002,40.766316],"type":"Point"},"name":"Thanya Thai Cuisine"} +,{"_id":{"$oid":"55cba2486c522cafdb059640"},"location":{"coordinates":[-73.8330519,40.7587756],"type":"Point"},"name":"8090 Tai Wanese"} +,{"_id":{"$oid":"55cba2486c522cafdb059641"},"location":{"coordinates":[-73.9141175,40.7597764],"type":"Point"},"name":"Acapulco"} +,{"_id":{"$oid":"55cba2486c522cafdb059642"},"location":{"coordinates":[-73.99235,40.75936799999999],"type":"Point"},"name":"Vivi"} +,{"_id":{"$oid":"55cba2486c522cafdb059643"},"location":{"coordinates":[-73.98772029999999,40.7361375],"type":"Point"},"name":"The House In Gramercy Park"} +,{"_id":{"$oid":"55cba2486c522cafdb059644"},"location":{"coordinates":[-73.921256,40.767539],"type":"Point"},"name":"Opa! Greek Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059645"},"location":{"coordinates":[-73.87322499999999,40.760739],"type":"Point"},"name":"The L Lounge"} +,{"_id":{"$oid":"55cba2486c522cafdb059646"},"location":{"coordinates":[-73.9647169,40.716064],"type":"Point"},"name":"Cafe Devocion"} +,{"_id":{"$oid":"55cba2486c522cafdb059647"},"location":{"coordinates":[-73.9141175,40.7597764],"type":"Point"},"name":"Acapulco Bar Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059648"},"location":{"coordinates":[-74.2348638,40.5233165],"type":"Point"},"name":"Alfonso'S Pastry Shoppe"} +,{"_id":{"$oid":"55cba2486c522cafdb059649"},"location":{"coordinates":[-73.9779184,40.6805065],"type":"Point"},"name":"Teaus 86"} +,{"_id":{"$oid":"55cba2486c522cafdb05964a"},"location":{"coordinates":[-73.9902492,40.7555838],"type":"Point"},"name":"Yorganic/Caffe Bene"} +,{"_id":{"$oid":"55cba2486c522cafdb05964b"},"location":{"coordinates":[-73.8264494,40.7602711],"type":"Point"},"name":"Gong Cha"} +,{"_id":{"$oid":"55cba2486c522cafdb05964c"},"location":{"coordinates":[-73.91067629999999,40.76433979999999],"type":"Point"},"name":"King'S Chef"} +,{"_id":{"$oid":"55cba2486c522cafdb05964d"},"location":{"coordinates":[-73.842771,40.84946800000001],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2486c522cafdb05964e"},"location":{"coordinates":[-73.81353899999999,40.762522],"type":"Point"},"name":"Well-Being Family Garden Korean Bbq Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb05964f"},"location":{"coordinates":[-74.1437864,40.62563530000001],"type":"Point"},"name":"Brother Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb059650"},"location":{"coordinates":[-74.22981419999999,40.5192284],"type":"Point"},"name":"Miglino'S Brick Oven Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb059651"},"location":{"coordinates":[-73.96849,40.7584699],"type":"Point"},"name":"Antique Bakery \u0026 Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb059652"},"location":{"coordinates":[-73.829437,40.757178],"type":"Point"},"name":"Expressway Bubble Tea \u0026 Snacks"} +,{"_id":{"$oid":"55cba2486c522cafdb059653"},"location":{"coordinates":[-73.821912,40.68734],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2486c522cafdb059654"},"location":{"coordinates":[-74.130167,40.62620099999999],"type":"Point"},"name":"Uncle Louie G"} +,{"_id":{"$oid":"55cba2486c522cafdb059655"},"location":{"coordinates":[-73.7960124,40.7095821],"type":"Point"},"name":"Ninety9 \u0026 Up Diner"} +,{"_id":{"$oid":"55cba2486c522cafdb059656"},"location":{"coordinates":[-73.97922989999999,40.7520264],"type":"Point"},"name":"Homefront"} +,{"_id":{"$oid":"55cba2486c522cafdb059657"},"location":{"coordinates":[-74.0015871,40.7234741],"type":"Point"},"name":"Momofuku Milk Bar Store"} +,{"_id":{"$oid":"55cba2486c522cafdb059658"},"location":{"coordinates":[-73.99179199999999,40.758391],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2486c522cafdb059659"},"location":{"coordinates":[-73.99862580000001,40.714425],"type":"Point"},"name":"Pings"} +,{"_id":{"$oid":"55cba2486c522cafdb05965a"},"location":{"coordinates":[-73.998007,40.59868],"type":"Point"},"name":"Alladin"} +,{"_id":{"$oid":"55cba2486c522cafdb05965b"},"location":{"coordinates":[-73.892284,40.702225],"type":"Point"},"name":"Raw Juice Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb05965c"},"location":{"coordinates":[-73.9582308,40.7693371],"type":"Point"},"name":"Szechuan Gourmet"} +,{"_id":{"$oid":"55cba2486c522cafdb05965d"},"location":{"coordinates":[-73.8288369,40.75812070000001],"type":"Point"},"name":"New Star Bakery"} +,{"_id":{"$oid":"55cba2486c522cafdb05965e"},"location":{"coordinates":[-73.8289779,40.8665658],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2486c522cafdb05965f"},"location":{"coordinates":[-74.163557,40.6083314],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2486c522cafdb059660"},"location":{"coordinates":[-74.0029454,40.6067239],"type":"Point"},"name":"Fuel Fever"} +,{"_id":{"$oid":"55cba2486c522cafdb059661"},"location":{"coordinates":[-73.945131,40.7920749],"type":"Point"},"name":"Roast"} +,{"_id":{"$oid":"55cba2486c522cafdb059662"},"location":{"coordinates":[-74.003748,40.7221847],"type":"Point"},"name":"Il Mulino Prime"} +,{"_id":{"$oid":"55cba2486c522cafdb059663"},"location":{"coordinates":[-73.850067,40.710534],"type":"Point"},"name":"Tazzina"} +,{"_id":{"$oid":"55cba2486c522cafdb059664"},"location":{"coordinates":[-73.9162,40.760652],"type":"Point"},"name":"L \u0026 L Local"} +,{"_id":{"$oid":"55cba2486c522cafdb059665"},"location":{"coordinates":[-73.919535,40.758713],"type":"Point"},"name":"Caffe Bene"} +,{"_id":{"$oid":"55cba2486c522cafdb059666"},"location":{"coordinates":[-73.9194626,40.7430854],"type":"Point"},"name":"Blu Orchid Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059667"},"location":{"coordinates":[-73.99011229999999,40.7151763],"type":"Point"},"name":"Juicery"} +,{"_id":{"$oid":"55cba2486c522cafdb059668"},"location":{"coordinates":[-73.9893853,40.7193823],"type":"Point"},"name":"Max Fish"} +,{"_id":{"$oid":"55cba2486c522cafdb059669"},"location":{"coordinates":[-73.98473349999999,40.7290371],"type":"Point"},"name":"Snowdays Shavery"} +,{"_id":{"$oid":"55cba2486c522cafdb05966a"},"location":{"coordinates":[-74.0087702,40.7173558],"type":"Point"},"name":"Bar Cyrk Nyc"} +,{"_id":{"$oid":"55cba2486c522cafdb05966b"},"location":{"coordinates":[-73.81889749999999,40.7504504],"type":"Point"},"name":"Home Run Ktv"} +,{"_id":{"$oid":"55cba2486c522cafdb05966c"},"location":{"coordinates":[-73.8528959,40.8364976],"type":"Point"},"name":"Curry Kabab"} +,{"_id":{"$oid":"55cba2486c522cafdb05966d"},"location":{"coordinates":[-73.82820950000001,40.86980579999999],"type":"Point"},"name":"Capri Iv Deli"} +,{"_id":{"$oid":"55cba2486c522cafdb05966e"},"location":{"coordinates":[-73.848989,40.710368],"type":"Point"},"name":"Carvel Ice Cream"} +,{"_id":{"$oid":"55cba2486c522cafdb05966f"},"location":{"coordinates":[-73.99857899999999,40.715115],"type":"Point"},"name":"Sichuan Hot Pot Cuisine"} +,{"_id":{"$oid":"55cba2486c522cafdb059670"},"location":{"coordinates":[-73.9527748,40.72765769999999],"type":"Point"},"name":"Vivi Bubble Tea"} +,{"_id":{"$oid":"55cba2486c522cafdb059671"},"location":{"coordinates":[-73.9724773,40.7941879],"type":"Point"},"name":"Filicori Zecchini"} +,{"_id":{"$oid":"55cba2486c522cafdb059672"},"location":{"coordinates":[-73.95580799999999,40.715929],"type":"Point"},"name":"Green Sushi Bistro"} +,{"_id":{"$oid":"55cba2486c522cafdb059673"},"location":{"coordinates":[-73.8040025,40.6744112],"type":"Point"},"name":"Peking Express"} +,{"_id":{"$oid":"55cba2486c522cafdb059674"},"location":{"coordinates":[-73.8799185,40.7478161],"type":"Point"},"name":"Vitalz Health Bar Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb059675"},"location":{"coordinates":[-73.89151389999999,40.8699981],"type":"Point"},"name":"Mei Mei Chinese Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059676"},"location":{"coordinates":[-73.8045643,40.6965363],"type":"Point"},"name":"New York Shake \u0026 Burger"} +,{"_id":{"$oid":"55cba2486c522cafdb059677"},"location":{"coordinates":[-73.98802719999999,40.7643559],"type":"Point"},"name":"Krico"} +,{"_id":{"$oid":"55cba2486c522cafdb059678"},"location":{"coordinates":[-73.8289779,40.8665658],"type":"Point"},"name":"Sbarro"} +,{"_id":{"$oid":"55cba2486c522cafdb059679"},"location":{"coordinates":[-73.90364869999999,40.74133339999999],"type":"Point"},"name":"Casa Del Chef"} +,{"_id":{"$oid":"55cba2486c522cafdb05967a"},"location":{"coordinates":[-73.954101,40.731044],"type":"Point"},"name":"The Brew Inn"} +,{"_id":{"$oid":"55cba2486c522cafdb05967b"},"location":{"coordinates":[-73.9292277,40.7722817],"type":"Point"},"name":"Pop Bar"} +,{"_id":{"$oid":"55cba2486c522cafdb05967c"},"location":{"coordinates":[-73.915915,40.658516],"type":"Point"},"name":"Sun Hing"} +,{"_id":{"$oid":"55cba2486c522cafdb05967d"},"location":{"coordinates":[-73.959738,40.714797],"type":"Point"},"name":"Sweatshop"} +,{"_id":{"$oid":"55cba2486c522cafdb05967e"},"location":{"coordinates":[-73.99126989999999,40.68593329999999],"type":"Point"},"name":"Ssam"} +,{"_id":{"$oid":"55cba2486c522cafdb05967f"},"location":{"coordinates":[-73.9609833,40.6599086],"type":"Point"},"name":"Erv'S"} +,{"_id":{"$oid":"55cba2486c522cafdb059680"},"location":{"coordinates":[-73.86738199999999,40.752237],"type":"Point"},"name":"Vanilla Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb059681"},"location":{"coordinates":[-73.872297,40.718317],"type":"Point"},"name":"John'S Bar"} +,{"_id":{"$oid":"55cba2486c522cafdb059682"},"location":{"coordinates":[-73.93599499999999,40.697721],"type":"Point"},"name":"Skytown"} +,{"_id":{"$oid":"55cba2486c522cafdb059683"},"location":{"coordinates":[-73.96122,40.818141],"type":"Point"},"name":"Bth Restaurant \u0026 Lounge Llc"} +,{"_id":{"$oid":"55cba2486c522cafdb059684"},"location":{"coordinates":[-74.1973,40.559734],"type":"Point"},"name":"Fro Yo To Go"} +,{"_id":{"$oid":"55cba2486c522cafdb059685"},"location":{"coordinates":[-73.96221899999999,40.635836],"type":"Point"},"name":"Crown Fried Chicken \u0026 Coffee Shop"} +,{"_id":{"$oid":"55cba2486c522cafdb059686"},"location":{"coordinates":[-73.9545364,40.58728079999999],"type":"Point"},"name":"Bagel Road"} +,{"_id":{"$oid":"55cba2486c522cafdb059687"},"location":{"coordinates":[-73.9967513,40.762384],"type":"Point"},"name":"Jeni'S Splendid Ice Creams"} +,{"_id":{"$oid":"55cba2486c522cafdb059688"},"location":{"coordinates":[-74.1077056,40.5730842],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2486c522cafdb059689"},"location":{"coordinates":[-73.98733829999999,40.7481868],"type":"Point"},"name":"Caffebene Ktown"} +,{"_id":{"$oid":"55cba2486c522cafdb05968a"},"location":{"coordinates":[-73.8950739,40.754256],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2486c522cafdb05968b"},"location":{"coordinates":[-73.854756,40.74251599999999],"type":"Point"},"name":"El Palacio De Las Empanadas"} +,{"_id":{"$oid":"55cba2486c522cafdb05968c"},"location":{"coordinates":[-73.97462569999999,40.7609825],"type":"Point"},"name":"Charlie Palmer Steak"} +,{"_id":{"$oid":"55cba2486c522cafdb05968d"},"location":{"coordinates":[-73.9990803,40.7440623],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2486c522cafdb05968e"},"location":{"coordinates":[-73.91843399999999,40.755274],"type":"Point"},"name":"Cj'S Restaurant And Pub"} +,{"_id":{"$oid":"55cba2486c522cafdb05968f"},"location":{"coordinates":[-73.820201,40.7244043],"type":"Point"},"name":"De E Sushi Inc."} +,{"_id":{"$oid":"55cba2486c522cafdb059690"},"location":{"coordinates":[-73.9853163,40.7629003],"type":"Point"},"name":"Bibble And Sip"} +,{"_id":{"$oid":"55cba2486c522cafdb059691"},"location":{"coordinates":[-73.9107556,40.6923886],"type":"Point"},"name":"Crown Chicken"} +,{"_id":{"$oid":"55cba2486c522cafdb059692"},"location":{"coordinates":[-73.9862957,40.6707661],"type":"Point"},"name":"J + B Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb059693"},"location":{"coordinates":[-73.896965,40.816064],"type":"Point"},"name":"New Mama'S Fried Chicken \u0026 Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb059694"},"location":{"coordinates":[-73.936708,40.8140894],"type":"Point"},"name":"Cafe Plus"} +,{"_id":{"$oid":"55cba2486c522cafdb059695"},"location":{"coordinates":[-73.95491899999999,40.707649],"type":"Point"},"name":"Mexico 2000 Deli Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059696"},"location":{"coordinates":[-73.99572400000001,40.737207],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2486c522cafdb059697"},"location":{"coordinates":[-73.8421505,40.8407355],"type":"Point"},"name":"Xiun Wei Chinese Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059698"},"location":{"coordinates":[-74.00959999999999,40.636179],"type":"Point"},"name":"D.C.Plzz Seafood"} +,{"_id":{"$oid":"55cba2486c522cafdb059699"},"location":{"coordinates":[-74.0089328,40.71362730000001],"type":"Point"},"name":"Jupioca Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb05969a"},"location":{"coordinates":[-73.98501089999999,40.7295028],"type":"Point"},"name":"Fair Folks And A Goat"} +,{"_id":{"$oid":"55cba2486c522cafdb05969b"},"location":{"coordinates":[-73.83115350000001,40.7005896],"type":"Point"},"name":"Oligarch"} +,{"_id":{"$oid":"55cba2486c522cafdb05969c"},"location":{"coordinates":[-74.23888149999999,40.5221791],"type":"Point"},"name":"Arena"} +,{"_id":{"$oid":"55cba2486c522cafdb05969d"},"location":{"coordinates":[-73.8661377,40.8545987],"type":"Point"},"name":"Tasty Light Cusine"} +,{"_id":{"$oid":"55cba2486c522cafdb05969e"},"location":{"coordinates":[-73.82813,40.76033],"type":"Point"},"name":"Xiao Wei Mala Yabu"} +,{"_id":{"$oid":"55cba2486c522cafdb05969f"},"location":{"coordinates":[-73.9584014,40.7213034],"type":"Point"},"name":"Matchabar"} +,{"_id":{"$oid":"55cba2486c522cafdb0596a0"},"location":{"coordinates":[-73.9093986,40.8865351],"type":"Point"},"name":"#1 Me. Nick'S"} +,{"_id":{"$oid":"55cba2486c522cafdb0596a1"},"location":{"coordinates":[-73.73975399999999,40.717576],"type":"Point"},"name":"Happy Kitchen Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb0596a2"},"location":{"coordinates":[-73.9024137,40.8127694],"type":"Point"},"name":"Mi Mexico Lindo"} +,{"_id":{"$oid":"55cba2486c522cafdb0596a3"},"location":{"coordinates":[-73.89778249999999,40.8836547],"type":"Point"},"name":"100% Smoothies \u0026 Empanadas"} +,{"_id":{"$oid":"55cba2486c522cafdb0596a4"},"location":{"coordinates":[-73.7947317,40.73341629999999],"type":"Point"},"name":"A Taste Of China No 1 Chinese Food"} +,{"_id":{"$oid":"55cba2486c522cafdb0596a5"},"location":{"coordinates":[-73.9746469,40.6751596],"type":"Point"},"name":"Sawa Japanese Fusion"} +,{"_id":{"$oid":"55cba2486c522cafdb0596a6"},"location":{"coordinates":[-73.8699847,40.6509132],"type":"Point"},"name":"Red Lobster #6262"} +,{"_id":{"$oid":"55cba2486c522cafdb0596a7"},"location":{"coordinates":[-73.8747611,40.7353074],"type":"Point"},"name":"Red Lobster #6273"} +,{"_id":{"$oid":"55cba2486c522cafdb0596a8"},"location":{"coordinates":[-73.9164991,40.6199411],"type":"Point"},"name":"Ahome Eatery"} +,{"_id":{"$oid":"55cba2486c522cafdb0596a9"},"location":{"coordinates":[-73.95027900000001,40.810108],"type":"Point"},"name":"Red Lobster #6385"} +,{"_id":{"$oid":"55cba2486c522cafdb0596aa"},"location":{"coordinates":[-73.98751539999999,40.7559449],"type":"Point"},"name":"Red Lobster #6298"} +,{"_id":{"$oid":"55cba2486c522cafdb0596ab"},"location":{"coordinates":[-73.9734394,40.79013459999999],"type":"Point"},"name":"Georgia\u0026Aliou'S Tiny Treats Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb0596ac"},"location":{"coordinates":[-73.948622,40.599441],"type":"Point"},"name":"Michael \u0026 Sophia'S Pizzeria, Inc."} +,{"_id":{"$oid":"55cba2486c522cafdb0596ad"},"location":{"coordinates":[-73.94934099999999,40.680566],"type":"Point"},"name":"Burger King"} +,{"_id":{"$oid":"55cba2486c522cafdb0596ae"},"location":{"coordinates":[-73.9553339,40.776461],"type":"Point"},"name":"Sushi Para Manhattan"} +,{"_id":{"$oid":"55cba2486c522cafdb0596af"},"location":{"coordinates":[-74.0046658,40.6338883],"type":"Point"},"name":"Hang Out 58"} +,{"_id":{"$oid":"55cba2486c522cafdb0596b0"},"location":{"coordinates":[-73.8285063,40.7590465],"type":"Point"},"name":"1A Store Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb0596b1"},"location":{"coordinates":[-73.95904670000002,40.7085936],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2486c522cafdb0596b2"},"location":{"coordinates":[-73.8602205,40.8878664],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2486c522cafdb0596b3"},"location":{"coordinates":[-73.98800299999999,40.759187],"type":"Point"},"name":"Off Broadway Deli \u0026 Pizzeria"} +,{"_id":{"$oid":"55cba2486c522cafdb0596b4"},"location":{"coordinates":[-73.9715629,40.5862819],"type":"Point"},"name":"Deli And Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb0596b5"},"location":{"coordinates":[-74.02729819999999,40.6331883],"type":"Point"},"name":"Le Nar"} +,{"_id":{"$oid":"55cba2486c522cafdb0596b6"},"location":{"coordinates":[-73.8289779,40.8665658],"type":"Point"},"name":"The Olive Garden #4482"} +,{"_id":{"$oid":"55cba2486c522cafdb0596b7"},"location":{"coordinates":[-73.93834199999999,40.797557],"type":"Point"},"name":"Nocciola Ristorante"} +,{"_id":{"$oid":"55cba2486c522cafdb0596b8"},"location":{"coordinates":[-73.9820263,40.75044279999999],"type":"Point"},"name":"Evergreen On 38St"} +,{"_id":{"$oid":"55cba2486c522cafdb0596b9"},"location":{"coordinates":[-73.993375,40.694771],"type":"Point"},"name":"Hanco'S"} +,{"_id":{"$oid":"55cba2486c522cafdb0596ba"},"location":{"coordinates":[-73.890264,40.8696643],"type":"Point"},"name":"Pollo Sabroso Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb0596bb"},"location":{"coordinates":[-73.7261903,40.7408608],"type":"Point"},"name":"Sohna Punjab Indian Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb0596bc"},"location":{"coordinates":[-73.9186187,40.8384782],"type":"Point"},"name":"Ray'S Smoothie"} +,{"_id":{"$oid":"55cba2486c522cafdb0596bd"},"location":{"coordinates":[-74.1630826,40.62618459999999],"type":"Point"},"name":"Sabor Y Tradicion Corp"} +,{"_id":{"$oid":"55cba2486c522cafdb0596be"},"location":{"coordinates":[-73.98446349999999,40.5962864],"type":"Point"},"name":"Daddy,S Pizza \u0026 Pasta"} +,{"_id":{"$oid":"55cba2486c522cafdb0596bf"},"location":{"coordinates":[-74.0063076,40.7192081],"type":"Point"},"name":"White Street"} +,{"_id":{"$oid":"55cba2486c522cafdb0596c0"},"location":{"coordinates":[-73.95751469999999,40.677325],"type":"Point"},"name":"Mighty Quinn'S Bbq"} +,{"_id":{"$oid":"55cba2486c522cafdb0596c1"},"location":{"coordinates":[-74.006265,40.652081],"type":"Point"},"name":"Matisa"} +,{"_id":{"$oid":"55cba2486c522cafdb0596c2"},"location":{"coordinates":[-73.98634070000001,40.6768621],"type":"Point"},"name":"Baba'S Pierogies"} +,{"_id":{"$oid":"55cba2486c522cafdb0596c3"},"location":{"coordinates":[-73.910439,40.8499696],"type":"Point"},"name":"La Potencia Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb0596c4"},"location":{"coordinates":[-74.0056029,40.633354],"type":"Point"},"name":"O Fort Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb0596c5"},"location":{"coordinates":[-74.003672,40.7289864],"type":"Point"},"name":"Cotenna"} +,{"_id":{"$oid":"55cba2486c522cafdb0596c6"},"location":{"coordinates":[-73.983149,40.7232879],"type":"Point"},"name":"Per Bacco Enoteca \u0026 Cucina"} +,{"_id":{"$oid":"55cba2486c522cafdb0596c7"},"location":{"coordinates":[-73.984234,40.752966],"type":"Point"},"name":"Blue Bottle Coffee"} +,{"_id":{"$oid":"55cba2486c522cafdb0596c8"},"location":{"coordinates":[-73.943643,40.702732],"type":"Point"},"name":"Samurai Papa"} +,{"_id":{"$oid":"55cba2486c522cafdb0596c9"},"location":{"coordinates":[-73.8886591,40.7494099],"type":"Point"},"name":"Okawa"} +,{"_id":{"$oid":"55cba2486c522cafdb0596ca"},"location":{"coordinates":[-73.968681,40.677055],"type":"Point"},"name":"Cooklyn"} +,{"_id":{"$oid":"55cba2486c522cafdb0596cb"},"location":{"coordinates":[-73.9205391,40.7600014],"type":"Point"},"name":"Chicken Shack"} +,{"_id":{"$oid":"55cba2486c522cafdb0596cc"},"location":{"coordinates":[-73.9426222,40.7395023],"type":"Point"},"name":"Sugardaddy'S"} +,{"_id":{"$oid":"55cba2486c522cafdb0596cd"},"location":{"coordinates":[-73.983079,40.731099],"type":"Point"},"name":"Hibachi Express Dumpling"} +,{"_id":{"$oid":"55cba2486c522cafdb0596ce"},"location":{"coordinates":[-73.82064919999999,40.7293337],"type":"Point"},"name":"Aged"} +,{"_id":{"$oid":"55cba2486c522cafdb0596cf"},"location":{"coordinates":[-73.942514,40.8326131],"type":"Point"},"name":"El Gran Valle Iv Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb0596d0"},"location":{"coordinates":[-74.0253741,40.6219891],"type":"Point"},"name":"Fattoush"} +,{"_id":{"$oid":"55cba2486c522cafdb0596d1"},"location":{"coordinates":[-73.982388,40.7468373],"type":"Point"},"name":"Little Town Social"} +,{"_id":{"$oid":"55cba2486c522cafdb0596d2"},"location":{"coordinates":[-92.7293043,41.7461747],"type":"Point"},"name":"Soho Fried Chicken \u0026 Pizzeria"} +,{"_id":{"$oid":"55cba2486c522cafdb0596d3"},"location":{"coordinates":[-73.835903,40.8439312],"type":"Point"},"name":"Healthy Star"} +,{"_id":{"$oid":"55cba2486c522cafdb0596d4"},"location":{"coordinates":[-73.9305378,40.8533597],"type":"Point"},"name":"Q'Kachapa"} +,{"_id":{"$oid":"55cba2486c522cafdb0596d5"},"location":{"coordinates":[-73.916853,40.8284184],"type":"Point"},"name":"Hungry Bird"} +,{"_id":{"$oid":"55cba2486c522cafdb0596d6"},"location":{"coordinates":[-73.95751469999999,40.677325],"type":"Point"},"name":"Asia Dog"} +,{"_id":{"$oid":"55cba2486c522cafdb0596d7"},"location":{"coordinates":[-73.951784,40.7170413],"type":"Point"},"name":"Re.Union"} +,{"_id":{"$oid":"55cba2486c522cafdb0596d8"},"location":{"coordinates":[-73.9504177,40.6708567],"type":"Point"},"name":"Chika"} +,{"_id":{"$oid":"55cba2486c522cafdb0596d9"},"location":{"coordinates":[-74.000372,40.742242],"type":"Point"},"name":"Amorino"} +,{"_id":{"$oid":"55cba2486c522cafdb0596da"},"location":{"coordinates":[-78.3969541,40.5114481],"type":"Point"},"name":"Chadbourne \u0026 Parke"} +,{"_id":{"$oid":"55cba2486c522cafdb0596db"},"location":{"coordinates":[-73.9785507,40.7205609],"type":"Point"},"name":"Mom'S Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb0596dc"},"location":{"coordinates":[-73.9816929,40.7578596],"type":"Point"},"name":"Mr.Roti Llc"} +,{"_id":{"$oid":"55cba2486c522cafdb0596dd"},"location":{"coordinates":[-73.994756,40.730087],"type":"Point"},"name":"Nyu - Torch Club"} +,{"_id":{"$oid":"55cba2486c522cafdb0596de"},"location":{"coordinates":[-74.0098074,40.703465],"type":"Point"},"name":"Cafe 55"} +,{"_id":{"$oid":"55cba2486c522cafdb0596df"},"location":{"coordinates":[-74.0098074,40.703465],"type":"Point"},"name":"Sky 55 Seasonal"} +,{"_id":{"$oid":"55cba2486c522cafdb0596e0"},"location":{"coordinates":[-73.80898049999999,40.6928548],"type":"Point"},"name":"Dunkin Donuts / Baskin Robbins"} +,{"_id":{"$oid":"55cba2486c522cafdb0596e1"},"location":{"coordinates":[-73.9856458,40.7553229],"type":"Point"},"name":"Hilton Garden Inn New York/Times Square Central"} +,{"_id":{"$oid":"55cba2486c522cafdb0596e2"},"location":{"coordinates":[-73.8739659,40.7769271],"type":"Point"},"name":"Villa Italian Kitchen"} +,{"_id":{"$oid":"55cba2486c522cafdb0596e3"},"location":{"coordinates":[-73.9927373,40.7183102],"type":"Point"},"name":"Birds \u0026 Bubbles"} +,{"_id":{"$oid":"55cba2486c522cafdb0596e4"},"location":{"coordinates":[-73.93124449999999,40.6623228],"type":"Point"},"name":"Betty Brooklyn Catering Co."} +,{"_id":{"$oid":"55cba2486c522cafdb0596e5"},"location":{"coordinates":[-73.87425,40.7766392],"type":"Point"},"name":"Villa Italian Kitchen"} +,{"_id":{"$oid":"55cba2486c522cafdb0596e6"},"location":{"coordinates":[-73.9917729,40.69014019999999],"type":"Point"},"name":"Just Salad"} +,{"_id":{"$oid":"55cba2486c522cafdb0596e7"},"location":{"coordinates":[-73.9714595,40.6760883],"type":"Point"},"name":"Texano Tex Mex Grill"} +,{"_id":{"$oid":"55cba2486c522cafdb0596e8"},"location":{"coordinates":[-74.0069565,40.7157795],"type":"Point"},"name":"Aaa Burrito Mariachi"} +,{"_id":{"$oid":"55cba2486c522cafdb0596e9"},"location":{"coordinates":[-73.8887506,40.8529622],"type":"Point"},"name":"La Torre Restaurant \u0026 Bar"} +,{"_id":{"$oid":"55cba2486c522cafdb0596ea"},"location":{"coordinates":[-73.7889689,40.6433507],"type":"Point"},"name":"Ngf Group Llc"} +,{"_id":{"$oid":"55cba2486c522cafdb0596eb"},"location":{"coordinates":[-73.83296109999999,40.754348],"type":"Point"},"name":"Empanadas El Gustazo Restaurante"} +,{"_id":{"$oid":"55cba2486c522cafdb0596ec"},"location":{"coordinates":[-73.8310765,40.6849728],"type":"Point"},"name":"Liberty Kennedy Fried Chicken \u0026 Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb0596ed"},"location":{"coordinates":[-73.974536,40.7617836],"type":"Point"},"name":"Ralph Lauren"} +,{"_id":{"$oid":"55cba2486c522cafdb0596ee"},"location":{"coordinates":[-73.9328223,40.8482229],"type":"Point"},"name":"Voga Lounge \u0026 Grill"} +,{"_id":{"$oid":"55cba2486c522cafdb0596ef"},"location":{"coordinates":[-74.02661300000001,40.622046],"type":"Point"},"name":"Chipotle Mexican Grill"} +,{"_id":{"$oid":"55cba2486c522cafdb0596f0"},"location":{"coordinates":[-73.962699,40.769339],"type":"Point"},"name":"Caffee Dei Fiori Ristorante"} +,{"_id":{"$oid":"55cba2486c522cafdb0596f1"},"location":{"coordinates":[-73.7477962,40.715704],"type":"Point"},"name":"Delly'S Place Restaurant \u0026 Fritaille"} +,{"_id":{"$oid":"55cba2486c522cafdb0596f2"},"location":{"coordinates":[-73.7819447,40.6828333],"type":"Point"},"name":"Luen Hop Chinese Kitchen"} +,{"_id":{"$oid":"55cba2486c522cafdb0596f3"},"location":{"coordinates":[-73.975073,40.760345],"type":"Point"},"name":"Foodbella"} +,{"_id":{"$oid":"55cba2486c522cafdb0596f4"},"location":{"coordinates":[-73.8931763,40.8748896],"type":"Point"},"name":"Harmony Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb0596f5"},"location":{"coordinates":[-73.8931763,40.8748896],"type":"Point"},"name":"Carmen Cafe ( Carmen Hall)"} +,{"_id":{"$oid":"55cba2486c522cafdb0596f6"},"location":{"coordinates":[-73.8931763,40.8748896],"type":"Point"},"name":"The Underground Cafeteria"} +,{"_id":{"$oid":"55cba2486c522cafdb0596f7"},"location":{"coordinates":[-73.92952489999999,40.63687729999999],"type":"Point"},"name":"Trelawni Place"} +,{"_id":{"$oid":"55cba2486c522cafdb0596f8"},"location":{"coordinates":[-73.8558999,40.8430375],"type":"Point"},"name":"Ratata Deli Food Corp"} +,{"_id":{"$oid":"55cba2486c522cafdb0596f9"},"location":{"coordinates":[-73.924409,40.701959],"type":"Point"},"name":"Taqueria Jimmy Express"} +,{"_id":{"$oid":"55cba2486c522cafdb0596fa"},"location":{"coordinates":[-73.87983369999999,40.7502116],"type":"Point"},"name":"Urubamba"} +,{"_id":{"$oid":"55cba2486c522cafdb0596fb"},"location":{"coordinates":[-73.97160629999999,40.7621879],"type":"Point"},"name":"The Bar/Four Seasons Hotel"} +,{"_id":{"$oid":"55cba2486c522cafdb0596fc"},"location":{"coordinates":[-73.91345199999999,40.83785],"type":"Point"},"name":"Mi Dulce Pasteleria"} +,{"_id":{"$oid":"55cba2486c522cafdb0596fd"},"location":{"coordinates":[-73.966775,40.756784],"type":"Point"},"name":"The Upsider Nyc"} +,{"_id":{"$oid":"55cba2486c522cafdb0596fe"},"location":{"coordinates":[-73.99692399999999,40.574991],"type":"Point"},"name":"Oriental Palace"} +,{"_id":{"$oid":"55cba2486c522cafdb0596ff"},"location":{"coordinates":[-73.9012825,40.84695740000001],"type":"Point"},"name":"La Casa Del Salmon"} +,{"_id":{"$oid":"55cba2486c522cafdb059700"},"location":{"coordinates":[-73.95963069999999,40.5987028],"type":"Point"},"name":"Wing Hing Seafood Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059701"},"location":{"coordinates":[-73.950519,40.6859378],"type":"Point"},"name":"Krown Grill Halal Chicken"} +,{"_id":{"$oid":"55cba2486c522cafdb059702"},"location":{"coordinates":[-73.9544806,40.6874469],"type":"Point"},"name":"Scratchbread"} +,{"_id":{"$oid":"55cba2486c522cafdb059703"},"location":{"coordinates":[-73.818818,40.75079830000001],"type":"Point"},"name":"Fm Desserts"} +,{"_id":{"$oid":"55cba2486c522cafdb059704"},"location":{"coordinates":[-73.984343,40.726931],"type":"Point"},"name":"Paprika"} +,{"_id":{"$oid":"55cba2486c522cafdb059705"},"location":{"coordinates":[-74.0766016,40.6278912],"type":"Point"},"name":"Bay House Bistro"} +,{"_id":{"$oid":"55cba2486c522cafdb059706"},"location":{"coordinates":[-73.7698806,40.7619143],"type":"Point"},"name":"Cinco De Mayo"} +,{"_id":{"$oid":"55cba2486c522cafdb059707"},"location":{"coordinates":[-73.915774,40.757699],"type":"Point"},"name":"Gino'S Pizzeria"} +,{"_id":{"$oid":"55cba2486c522cafdb059708"},"location":{"coordinates":[-73.98932289999999,40.7471592],"type":"Point"},"name":"Teaus"} +,{"_id":{"$oid":"55cba2486c522cafdb059709"},"location":{"coordinates":[-73.9835112,40.7408627],"type":"Point"},"name":"Tbaar"} +,{"_id":{"$oid":"55cba2486c522cafdb05970a"},"location":{"coordinates":[-73.993661,40.6015315],"type":"Point"},"name":"New 86 Wong Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb05970b"},"location":{"coordinates":[-73.7876884,40.7269966],"type":"Point"},"name":"Dhruv'S Kati Shack Factory"} +,{"_id":{"$oid":"55cba2486c522cafdb05970c"},"location":{"coordinates":[-73.8630166,40.8713484],"type":"Point"},"name":"Luigi'S Pizza \u0026 Pasta Corp"} +,{"_id":{"$oid":"55cba2486c522cafdb05970d"},"location":{"coordinates":[-73.9588593,40.7169821],"type":"Point"},"name":"Wild Ginger"} +,{"_id":{"$oid":"55cba2486c522cafdb05970e"},"location":{"coordinates":[-73.8330519,40.7587756],"type":"Point"},"name":"Fresh Dumpling"} +,{"_id":{"$oid":"55cba2486c522cafdb05970f"},"location":{"coordinates":[-74.0790329,40.6384078],"type":"Point"},"name":"Piqueteadero La Bella"} +,{"_id":{"$oid":"55cba2486c522cafdb059710"},"location":{"coordinates":[-73.9991524,40.67353079999999],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2486c522cafdb059711"},"location":{"coordinates":[-74.0271446,40.6337607],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2486c522cafdb059712"},"location":{"coordinates":[-73.976659,40.757239],"type":"Point"},"name":"Burger Heaven"} +,{"_id":{"$oid":"55cba2486c522cafdb059713"},"location":{"coordinates":[-73.9377622,40.7934501],"type":"Point"},"name":"Crown Fried"} +,{"_id":{"$oid":"55cba2486c522cafdb059714"},"location":{"coordinates":[-92.730603,41.7461733],"type":"Point"},"name":"Shu Han Ju Authentic Chinese Cuisine"} +,{"_id":{"$oid":"55cba2486c522cafdb059715"},"location":{"coordinates":[-73.95275889999999,40.71405439999999],"type":"Point"},"name":"Rocka Rolla"} +,{"_id":{"$oid":"55cba2486c522cafdb059716"},"location":{"coordinates":[-73.99663919999999,40.6807871],"type":"Point"},"name":"Cafe 11231"} +,{"_id":{"$oid":"55cba2486c522cafdb059717"},"location":{"coordinates":[-73.8466183,40.721023],"type":"Point"},"name":"El Coyote"} +,{"_id":{"$oid":"55cba2486c522cafdb059718"},"location":{"coordinates":[-73.86892449999999,40.8655815],"type":"Point"},"name":"Appley-Vous"} +,{"_id":{"$oid":"55cba2486c522cafdb059719"},"location":{"coordinates":[-73.9188211,40.7414475],"type":"Point"},"name":"Sky Taste"} +,{"_id":{"$oid":"55cba2486c522cafdb05971a"},"location":{"coordinates":[-73.8558213,40.8557802],"type":"Point"},"name":"Mr. Q'S Chinese \u0026 Japanese Bar Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb05971b"},"location":{"coordinates":[-74.20058519999999,40.5257248],"type":"Point"},"name":"New Island"} +,{"_id":{"$oid":"55cba2486c522cafdb05971c"},"location":{"coordinates":[-73.8290288,40.7598529],"type":"Point"},"name":"Yo Hielo"} +,{"_id":{"$oid":"55cba2486c522cafdb05971d"},"location":{"coordinates":[-74.02361189999999,40.6350572],"type":"Point"},"name":"Teriyaki Japan"} +,{"_id":{"$oid":"55cba2486c522cafdb05971e"},"location":{"coordinates":[-73.9828618,40.6962502],"type":"Point"},"name":"Brownstone Bar \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb05971f"},"location":{"coordinates":[-73.8621919,40.757509],"type":"Point"},"name":"Rancho Mofongo"} +,{"_id":{"$oid":"55cba2486c522cafdb059720"},"location":{"coordinates":[-73.955874,40.6410423],"type":"Point"},"name":"Yummy Chinese Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059721"},"location":{"coordinates":[-73.869003,40.748988],"type":"Point"},"name":"Taste Of Italy"} +,{"_id":{"$oid":"55cba2486c522cafdb059722"},"location":{"coordinates":[-74.00045899999999,40.73035],"type":"Point"},"name":"Miyabi Sushi \u0026 Asian Cuisine"} +,{"_id":{"$oid":"55cba2486c522cafdb059723"},"location":{"coordinates":[-73.9978275,40.72993659999999],"type":"Point"},"name":"Nyu Peet'S Coffee"} +,{"_id":{"$oid":"55cba2486c522cafdb059724"},"location":{"coordinates":[-73.9935848,40.7330038],"type":"Point"},"name":"Nyu Sidestein Market"} +,{"_id":{"$oid":"55cba2486c522cafdb059725"},"location":{"coordinates":[-73.9785522,40.6047805],"type":"Point"},"name":"Emerald Fortune"} +,{"_id":{"$oid":"55cba2486c522cafdb059726"},"location":{"coordinates":[-73.94806799999999,40.796082],"type":"Point"},"name":"Mr. Good Juice Bar Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb059727"},"location":{"coordinates":[-73.847673,40.87097],"type":"Point"},"name":"Central Caribbean Bakery"} +,{"_id":{"$oid":"55cba2486c522cafdb059728"},"location":{"coordinates":[-73.988607,40.7548606],"type":"Point"},"name":"Lenwich"} +,{"_id":{"$oid":"55cba2486c522cafdb059729"},"location":{"coordinates":[-73.9984039,40.7202849],"type":"Point"},"name":"Maman"} +,{"_id":{"$oid":"55cba2486c522cafdb05972a"},"location":{"coordinates":[-73.9780115,40.7609062],"type":"Point"},"name":"Sushi Shop"} +,{"_id":{"$oid":"55cba2486c522cafdb05972b"},"location":{"coordinates":[-73.90730359999999,40.7041648],"type":"Point"},"name":"Martiniello'S Pizzaria"} +,{"_id":{"$oid":"55cba2486c522cafdb05972c"},"location":{"coordinates":[-73.99319899999999,40.7337952],"type":"Point"},"name":"Japonica Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb05972d"},"location":{"coordinates":[-74.085414,40.634048],"type":"Point"},"name":"Ceylon Curry"} +,{"_id":{"$oid":"55cba2486c522cafdb05972e"},"location":{"coordinates":[-73.8762481,40.6826768],"type":"Point"},"name":"Blue Parrot Bar"} +,{"_id":{"$oid":"55cba2486c522cafdb05972f"},"location":{"coordinates":[-73.990697,40.7269016],"type":"Point"},"name":"Fourth Street Central"} +,{"_id":{"$oid":"55cba2486c522cafdb059730"},"location":{"coordinates":[-73.8863653,40.8274966],"type":"Point"},"name":"El Club Valle Restaurant Caffee"} +,{"_id":{"$oid":"55cba2486c522cafdb059731"},"location":{"coordinates":[-73.92051099999999,40.69516],"type":"Point"},"name":"Crown Fried Chicken"} +,{"_id":{"$oid":"55cba2486c522cafdb059732"},"location":{"coordinates":[-73.8607285,40.6850592],"type":"Point"},"name":"Oro Restaurant Bachata Lounge"} +,{"_id":{"$oid":"55cba2486c522cafdb059733"},"location":{"coordinates":[-74.0086065,40.7137002],"type":"Point"},"name":"Famous Famiglia Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb059734"},"location":{"coordinates":[-73.98839989999999,40.7396275],"type":"Point"},"name":"Cosme"} +,{"_id":{"$oid":"55cba2486c522cafdb059735"},"location":{"coordinates":[-74.10311980000002,40.6431839],"type":"Point"},"name":"Harbor Eats"} +,{"_id":{"$oid":"55cba2486c522cafdb059736"},"location":{"coordinates":[-73.8775692,40.871555],"type":"Point"},"name":"Papa John'S"} +,{"_id":{"$oid":"55cba2486c522cafdb059737"},"location":{"coordinates":[-73.9941607,40.7454328],"type":"Point"},"name":"7 Grams Caffe"} +,{"_id":{"$oid":"55cba2486c522cafdb059738"},"location":{"coordinates":[-73.99972799999999,40.7388691],"type":"Point"},"name":"Uma Temakeria"} +,{"_id":{"$oid":"55cba2486c522cafdb059739"},"location":{"coordinates":[-74.10830490000001,40.5789846],"type":"Point"},"name":"Panda Garden"} +,{"_id":{"$oid":"55cba2486c522cafdb05973a"},"location":{"coordinates":[-73.939987,40.822336],"type":"Point"},"name":"Pinky'S Jamaican And American Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb05973b"},"location":{"coordinates":[-73.87687369999999,40.7483754],"type":"Point"},"name":"La Parada De Los Pinchos"} +,{"_id":{"$oid":"55cba2486c522cafdb05973c"},"location":{"coordinates":[-74.121568,40.612857],"type":"Point"},"name":"1734 Victory Boulevard,Inc."} +,{"_id":{"$oid":"55cba2486c522cafdb05973d"},"location":{"coordinates":[-74.0085276,40.7141951],"type":"Point"},"name":"Drill Fitness"} +,{"_id":{"$oid":"55cba2486c522cafdb05973e"},"location":{"coordinates":[-73.9070043,40.7455382],"type":"Point"},"name":"Chin Chin Thai Kitchen"} +,{"_id":{"$oid":"55cba2486c522cafdb05973f"},"location":{"coordinates":[-73.9395929,40.7510523],"type":"Point"},"name":"Stop + Go Chicken"} +,{"_id":{"$oid":"55cba2486c522cafdb059740"},"location":{"coordinates":[-73.7366959,40.6747627],"type":"Point"},"name":"Creole Plate"} +,{"_id":{"$oid":"55cba2486c522cafdb059741"},"location":{"coordinates":[-73.9913223,40.7307693],"type":"Point"},"name":"Facebook"} +,{"_id":{"$oid":"55cba2486c522cafdb059742"},"location":{"coordinates":[-74.0032238,40.7398274],"type":"Point"},"name":"Insomnia Cookies"} +,{"_id":{"$oid":"55cba2486c522cafdb059743"},"location":{"coordinates":[-73.780233,40.595109],"type":"Point"},"name":"Cafe Rockaway'S"} +,{"_id":{"$oid":"55cba2486c522cafdb059744"},"location":{"coordinates":[-73.765085,40.761159],"type":"Point"},"name":"Pine Tree House"} +,{"_id":{"$oid":"55cba2486c522cafdb059745"},"location":{"coordinates":[-73.8900132,40.675644],"type":"Point"},"name":"Festac Grill"} +,{"_id":{"$oid":"55cba2486c522cafdb059746"},"location":{"coordinates":[-74.1830026,40.5664155],"type":"Point"},"name":"Tasti D-Lite"} +,{"_id":{"$oid":"55cba2486c522cafdb059747"},"location":{"coordinates":[-73.9591987,40.8089695],"type":"Point"},"name":"Sub Conscious"} +,{"_id":{"$oid":"55cba2486c522cafdb059748"},"location":{"coordinates":[-73.80888750000001,40.7039855],"type":"Point"},"name":"Royal Pizza \u0026 Grill"} +,{"_id":{"$oid":"55cba2486c522cafdb059749"},"location":{"coordinates":[-73.95204679999999,40.6009261],"type":"Point"},"name":"St. Edmund Prep High School"} +,{"_id":{"$oid":"55cba2486c522cafdb05974a"},"location":{"coordinates":[-73.78978339999999,40.7395194],"type":"Point"},"name":"Mian Noodle Bar"} +,{"_id":{"$oid":"55cba2486c522cafdb05974b"},"location":{"coordinates":[-73.967623,40.75892289999999],"type":"Point"},"name":"Bv'S Grill"} +,{"_id":{"$oid":"55cba2486c522cafdb05974c"},"location":{"coordinates":[-73.933802,40.705072],"type":"Point"},"name":"Nineteen Twenty Four, Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb05974d"},"location":{"coordinates":[-74.086585,40.634185],"type":"Point"},"name":"Morelos Deli \u0026 Fruit"} +,{"_id":{"$oid":"55cba2486c522cafdb05974e"},"location":{"coordinates":[-73.968193,40.756127],"type":"Point"},"name":"Totto Ramen"} +,{"_id":{"$oid":"55cba2486c522cafdb05974f"},"location":{"coordinates":[-73.8629611,40.8839206],"type":"Point"},"name":"Dream Station Restaurant Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb059750"},"location":{"coordinates":[-73.97490499999999,40.760274],"type":"Point"},"name":"Burger Heaven"} +,{"_id":{"$oid":"55cba2486c522cafdb059751"},"location":{"coordinates":[-73.926731,40.771734],"type":"Point"},"name":"Atlas Mountain Sandwich Shop"} +,{"_id":{"$oid":"55cba2486c522cafdb059752"},"location":{"coordinates":[-73.97770059999999,40.6355893],"type":"Point"},"name":"Family Garden"} +,{"_id":{"$oid":"55cba2486c522cafdb059753"},"location":{"coordinates":[-73.98702279999999,40.7529687],"type":"Point"},"name":"Simit And Smith"} +,{"_id":{"$oid":"55cba2486c522cafdb059754"},"location":{"coordinates":[-73.98476,40.752379],"type":"Point"},"name":"Proper West"} +,{"_id":{"$oid":"55cba2486c522cafdb059755"},"location":{"coordinates":[-73.9844978,40.7613128],"type":"Point"},"name":"Green Apple Gourmet"} +,{"_id":{"$oid":"55cba2486c522cafdb059756"},"location":{"coordinates":[-73.8719242,40.74947880000001],"type":"Point"},"name":"El Reencuentro Bar Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059757"},"location":{"coordinates":[-74.0734798,40.61699060000001],"type":"Point"},"name":"Good Wok Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059758"},"location":{"coordinates":[-73.98199249999999,40.7616065],"type":"Point"},"name":"Le Bernardin Privé"} +,{"_id":{"$oid":"55cba2486c522cafdb059759"},"location":{"coordinates":[-73.980983,40.675175],"type":"Point"},"name":"Luke'S Lobster"} +,{"_id":{"$oid":"55cba2486c522cafdb05975a"},"location":{"coordinates":[-73.81403499999999,40.6825958],"type":"Point"},"name":"Insomnia Bar \u0026 Lounge"} +,{"_id":{"$oid":"55cba2486c522cafdb05975b"},"location":{"coordinates":[-73.78809079999999,40.7578591],"type":"Point"},"name":"Modurang"} +,{"_id":{"$oid":"55cba2486c522cafdb05975c"},"location":{"coordinates":[-73.78105140000001,40.7538768],"type":"Point"},"name":"Paris Baguette"} +,{"_id":{"$oid":"55cba2486c522cafdb05975d"},"location":{"coordinates":[-73.91061309999999,40.6779982],"type":"Point"},"name":"Finger Lick'N"} +,{"_id":{"$oid":"55cba2486c522cafdb05975e"},"location":{"coordinates":[-73.901703,40.850643],"type":"Point"},"name":"Burnside Beer \u0026 Wine Cafeteria Inc."} +,{"_id":{"$oid":"55cba2486c522cafdb05975f"},"location":{"coordinates":[-73.957298,40.717917],"type":"Point"},"name":"Sujo"} +,{"_id":{"$oid":"55cba2486c522cafdb059760"},"location":{"coordinates":[-73.983898,40.6105715],"type":"Point"},"name":"Arnor Crepes \u0026 Bubble Tea"} +,{"_id":{"$oid":"55cba2486c522cafdb059761"},"location":{"coordinates":[-73.9882472,40.7638919],"type":"Point"},"name":"B -Side"} +,{"_id":{"$oid":"55cba2486c522cafdb059762"},"location":{"coordinates":[-73.86930509999999,40.7340782],"type":"Point"},"name":"Longhorn Steakhouse #5453"} +,{"_id":{"$oid":"55cba2486c522cafdb059763"},"location":{"coordinates":[-73.98694990000001,40.747514],"type":"Point"},"name":"Jongro Bbq"} +,{"_id":{"$oid":"55cba2486c522cafdb059764"},"location":{"coordinates":[-74.1364962,40.6252203],"type":"Point"},"name":"W.H Panda Garden"} +,{"_id":{"$oid":"55cba2486c522cafdb059765"},"location":{"coordinates":[-74.1181774,40.6342861],"type":"Point"},"name":"China Bell"} +,{"_id":{"$oid":"55cba2486c522cafdb059766"},"location":{"coordinates":[-73.9694147,40.7545605],"type":"Point"},"name":"Club Voa"} +,{"_id":{"$oid":"55cba2486c522cafdb059767"},"location":{"coordinates":[-73.94301899999999,40.816936],"type":"Point"},"name":"To Your Health \u0026 Happiness"} +,{"_id":{"$oid":"55cba2486c522cafdb059768"},"location":{"coordinates":[-73.7887228,40.7400041],"type":"Point"},"name":"Jade Fountain"} +,{"_id":{"$oid":"55cba2486c522cafdb059769"},"location":{"coordinates":[-73.742758,40.696215],"type":"Point"},"name":"Creole 516 "} +,{"_id":{"$oid":"55cba2486c522cafdb05976a"},"location":{"coordinates":[-73.9745619,40.7530497],"type":"Point"},"name":"Grk"} +,{"_id":{"$oid":"55cba2486c522cafdb05976b"},"location":{"coordinates":[-73.937241,40.641406],"type":"Point"},"name":"Palm Grove Take Out Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb05976c"},"location":{"coordinates":[-73.986353,40.67738569999999],"type":"Point"},"name":"Givers And Takers Llc"} +,{"_id":{"$oid":"55cba2486c522cafdb05976d"},"location":{"coordinates":[-73.9732112,40.6774706],"type":"Point"},"name":"Ruby Kitchen Chan Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb05976e"},"location":{"coordinates":[-73.9729436,40.7854609],"type":"Point"},"name":"Blossom On Columbus"} +,{"_id":{"$oid":"55cba2486c522cafdb05976f"},"location":{"coordinates":[-73.93467489999999,40.8519104],"type":"Point"},"name":"21 Bar"} +,{"_id":{"$oid":"55cba2486c522cafdb059770"},"location":{"coordinates":[-73.98522179999999,40.66886909999999],"type":"Point"},"name":"Juiceland"} +,{"_id":{"$oid":"55cba2486c522cafdb059771"},"location":{"coordinates":[-73.9735898,40.7900285],"type":"Point"},"name":"Spice"} +,{"_id":{"$oid":"55cba2486c522cafdb059772"},"location":{"coordinates":[-73.993937,40.714851],"type":"Point"},"name":"Zheng Fuzhou Cuisine Inc."} +,{"_id":{"$oid":"55cba2486c522cafdb059773"},"location":{"coordinates":[-73.98078199999999,40.738949],"type":"Point"},"name":"Do You Like Comedy ?"} +,{"_id":{"$oid":"55cba2486c522cafdb059774"},"location":{"coordinates":[-73.78791470000002,40.7005341],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2486c522cafdb059775"},"location":{"coordinates":[-73.96332799999999,40.7982413],"type":"Point"},"name":"Empire Garden"} +,{"_id":{"$oid":"55cba2486c522cafdb059776"},"location":{"coordinates":[-73.872199,40.753022],"type":"Point"},"name":"Jhonatan Restaurant Bar"} +,{"_id":{"$oid":"55cba2486c522cafdb059777"},"location":{"coordinates":[-74.08254,40.623894],"type":"Point"},"name":"Popular Chicken"} +,{"_id":{"$oid":"55cba2486c522cafdb059778"},"location":{"coordinates":[-73.995976,40.630615],"type":"Point"},"name":"Cafe Shirin Corp."} +,{"_id":{"$oid":"55cba2486c522cafdb059779"},"location":{"coordinates":[-73.8798068,40.7246995],"type":"Point"},"name":"Cherry Wave"} +,{"_id":{"$oid":"55cba2486c522cafdb05977a"},"location":{"coordinates":[-73.995694,40.713803],"type":"Point"},"name":"Q \u0026 Q Bakery"} +,{"_id":{"$oid":"55cba2486c522cafdb05977b"},"location":{"coordinates":[-73.996763,40.713726],"type":"Point"},"name":"Zhong Zheng 26 Restaurant Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb05977c"},"location":{"coordinates":[-73.9888235,40.7026714],"type":"Point"},"name":"Pinkberry"} +,{"_id":{"$oid":"55cba2486c522cafdb05977d"},"location":{"coordinates":[-73.9769793,40.6721076],"type":"Point"},"name":"Pinkberry"} +,{"_id":{"$oid":"55cba2486c522cafdb05977e"},"location":{"coordinates":[-74.0091249,40.7098261],"type":"Point"},"name":"Coco Fresh Tea \u0026 Juice"} +,{"_id":{"$oid":"55cba2486c522cafdb05977f"},"location":{"coordinates":[-73.8887347,40.8560512],"type":"Point"},"name":"Champs Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2486c522cafdb059780"},"location":{"coordinates":[-73.79963099999999,40.722838],"type":"Point"},"name":"Ly'S Chinese Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059781"},"location":{"coordinates":[-73.9578433,40.7434303],"type":"Point"},"name":"Beans, Grapes And Leaves"} +,{"_id":{"$oid":"55cba2486c522cafdb059782"},"location":{"coordinates":[-73.99121149999999,40.7141343],"type":"Point"},"name":"Ri Wongt Handmade Noodle "} +,{"_id":{"$oid":"55cba2486c522cafdb059783"},"location":{"coordinates":[-73.97628999999999,40.7488],"type":"Point"},"name":"The Famous Chicken Place"} +,{"_id":{"$oid":"55cba2486c522cafdb059784"},"location":{"coordinates":[-73.9956894,40.7214319],"type":"Point"},"name":"Grazia Bella"} +,{"_id":{"$oid":"55cba2486c522cafdb059785"},"location":{"coordinates":[-74.1281034,40.56481369999999],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2486c522cafdb059786"},"location":{"coordinates":[-74.0087411,40.720859],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2486c522cafdb059787"},"location":{"coordinates":[-73.9835579,40.7295623],"type":"Point"},"name":"Honshu Ichi"} +,{"_id":{"$oid":"55cba2486c522cafdb059788"},"location":{"coordinates":[-73.9172021,40.8273664],"type":"Point"},"name":"Mi Casa Bakery"} +,{"_id":{"$oid":"55cba2486c522cafdb059789"},"location":{"coordinates":[-73.8289779,40.8665658],"type":"Point"},"name":"Red Robin Gourmet Burgers And Brews"} +,{"_id":{"$oid":"55cba2486c522cafdb05978a"},"location":{"coordinates":[-74.00023139999999,40.7356972],"type":"Point"},"name":"Oaxaca Greenwich,Llc"} +,{"_id":{"$oid":"55cba2486c522cafdb05978b"},"location":{"coordinates":[-73.9831924,40.7651389],"type":"Point"},"name":"Flik"} +,{"_id":{"$oid":"55cba2486c522cafdb05978c"},"location":{"coordinates":[-73.86930509999999,40.7340782],"type":"Point"},"name":"Joe'S Crab Shack"} +,{"_id":{"$oid":"55cba2486c522cafdb05978d"},"location":{"coordinates":[-73.9986098,40.71483629999999],"type":"Point"},"name":"Spicebox Crepe"} +,{"_id":{"$oid":"55cba2486c522cafdb05978e"},"location":{"coordinates":[-73.99937299999999,40.741489],"type":"Point"},"name":"El Cocotero"} +,{"_id":{"$oid":"55cba2486c522cafdb05978f"},"location":{"coordinates":[-73.9130799,40.714871],"type":"Point"},"name":"Speedy Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb059790"},"location":{"coordinates":[-73.97703419999999,40.7549976],"type":"Point"},"name":"Filicori Zecchini"} +,{"_id":{"$oid":"55cba2486c522cafdb059791"},"location":{"coordinates":[-73.9930961,40.7148068],"type":"Point"},"name":"Hua Ji Pork Chop Fast Food"} +,{"_id":{"$oid":"55cba2486c522cafdb059792"},"location":{"coordinates":[-73.9554434,40.6813284],"type":"Point"},"name":"Alibaba Express"} +,{"_id":{"$oid":"55cba2486c522cafdb059793"},"location":{"coordinates":[-73.9549578,40.7331105],"type":"Point"},"name":"Esme"} +,{"_id":{"$oid":"55cba2486c522cafdb059794"},"location":{"coordinates":[-73.9901801,40.729898],"type":"Point"},"name":"Ibm Cafeteria"} +,{"_id":{"$oid":"55cba2486c522cafdb059795"},"location":{"coordinates":[-73.81783120000001,40.7652565],"type":"Point"},"name":"Cielo Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb059796"},"location":{"coordinates":[-73.906803,40.640008],"type":"Point"},"name":"China One"} +,{"_id":{"$oid":"55cba2486c522cafdb059797"},"location":{"coordinates":[-73.9188054,40.7654494],"type":"Point"},"name":"Judy \u0026 Punch"} +,{"_id":{"$oid":"55cba2486c522cafdb059798"},"location":{"coordinates":[-74.0926927,40.5853582],"type":"Point"},"name":"Il Pomodoro Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb059799"},"location":{"coordinates":[-73.9167351,40.83686340000001],"type":"Point"},"name":"Mi Rinconcito Restaurante"} +,{"_id":{"$oid":"55cba2486c522cafdb05979a"},"location":{"coordinates":[-73.89385949999999,40.8622908],"type":"Point"},"name":"Dunkin Donuts/Baskin Robbins"} +,{"_id":{"$oid":"55cba2486c522cafdb05979b"},"location":{"coordinates":[-73.950357,40.710754],"type":"Point"},"name":"The Grand National"} +,{"_id":{"$oid":"55cba2486c522cafdb05979c"},"location":{"coordinates":[-73.9852801,40.7639193],"type":"Point"},"name":"Melt Shop"} +,{"_id":{"$oid":"55cba2486c522cafdb05979d"},"location":{"coordinates":[-74.164287,40.54277800000001],"type":"Point"},"name":"Campania Coal Fired Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb05979e"},"location":{"coordinates":[-74.010414,40.6297444],"type":"Point"},"name":"New Lucky Chinese Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb05979f"},"location":{"coordinates":[-73.9625052,40.7668083],"type":"Point"},"name":"Manhattan Brick Oven Pizza \u0026 Grill"} +,{"_id":{"$oid":"55cba2486c522cafdb0597a0"},"location":{"coordinates":[-73.95891,40.598295],"type":"Point"},"name":"Shing Wong Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb0597a1"},"location":{"coordinates":[-73.9565369,40.7717236],"type":"Point"},"name":"Pizza Boss"} +,{"_id":{"$oid":"55cba2486c522cafdb0597a2"},"location":{"coordinates":[-73.9210346,40.6103453],"type":"Point"},"name":"Starbucks Coffee Company #22560"} +,{"_id":{"$oid":"55cba2486c522cafdb0597a3"},"location":{"coordinates":[-73.9779135,40.6805873],"type":"Point"},"name":"Nuteria"} +,{"_id":{"$oid":"55cba2486c522cafdb0597a4"},"location":{"coordinates":[-73.9847779,40.7716826],"type":"Point"},"name":"Fordham University (Resident Dining)"} +,{"_id":{"$oid":"55cba2486c522cafdb0597a5"},"location":{"coordinates":[-73.9847779,40.7716826],"type":"Point"},"name":"Fordham University (Faculty And Graduate Dining)"} +,{"_id":{"$oid":"55cba2486c522cafdb0597a6"},"location":{"coordinates":[-73.91342829999999,40.82462390000001],"type":"Point"},"name":"904 Lupita Restaurant Corp"} +,{"_id":{"$oid":"55cba2486c522cafdb0597a7"},"location":{"coordinates":[-73.940713,40.78929300000001],"type":"Point"},"name":"5 Star Cheese Steak And Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb0597a8"},"location":{"coordinates":[-73.902693,40.751196],"type":"Point"},"name":"Pacific Moon"} +,{"_id":{"$oid":"55cba2486c522cafdb0597a9"},"location":{"coordinates":[-73.9422781,40.8178187],"type":"Point"},"name":"Hyacinth Haven Harlem"} +,{"_id":{"$oid":"55cba2486c522cafdb0597aa"},"location":{"coordinates":[-73.8290939,40.759362],"type":"Point"},"name":"Shikoku Teriyaki Express"} +,{"_id":{"$oid":"55cba2486c522cafdb0597ab"},"location":{"coordinates":[-73.945058,40.711256],"type":"Point"},"name":"Rivals Boardgame Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb0597ac"},"location":{"coordinates":[-73.9782918,40.7293429],"type":"Point"},"name":"Dunkin' Donuts/Baskin Robbins"} +,{"_id":{"$oid":"55cba2486c522cafdb0597ad"},"location":{"coordinates":[-74.031955,40.6215571],"type":"Point"},"name":"Grotto Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb0597ae"},"location":{"coordinates":[-74.0767905,40.6442698],"type":"Point"},"name":"Twin Dragons Asian Cuisine"} +,{"_id":{"$oid":"55cba2486c522cafdb0597af"},"location":{"coordinates":[-73.966448,40.640057],"type":"Point"},"name":"Domino'S Pizza #3647"} +,{"_id":{"$oid":"55cba2486c522cafdb0597b0"},"location":{"coordinates":[-73.9535392,40.7750381],"type":"Point"},"name":"Ramen Meijin "} +,{"_id":{"$oid":"55cba2486c522cafdb0597b1"},"location":{"coordinates":[-73.9525395,40.57720279999999],"type":"Point"},"name":"Veranda"} +,{"_id":{"$oid":"55cba2486c522cafdb0597b2"},"location":{"coordinates":[-73.775294,40.6725903],"type":"Point"},"name":"Peppa Pot Jamaican Cuisine"} +,{"_id":{"$oid":"55cba2486c522cafdb0597b3"},"location":{"coordinates":[-74.1114451,40.5813032],"type":"Point"},"name":"Fushimi Japanese Cuisine"} +,{"_id":{"$oid":"55cba2486c522cafdb0597b4"},"location":{"coordinates":[-73.9155679,40.851095],"type":"Point"},"name":"Michely Deli \u0026 Food Market"} +,{"_id":{"$oid":"55cba2486c522cafdb0597b5"},"location":{"coordinates":[-73.9343732,40.73594629999999],"type":"Point"},"name":"Nuhma Llc"} +,{"_id":{"$oid":"55cba2486c522cafdb0597b6"},"location":{"coordinates":[-73.9064808,40.7733899],"type":"Point"},"name":"Grano'S"} +,{"_id":{"$oid":"55cba2486c522cafdb0597b7"},"location":{"coordinates":[-73.97324569999999,40.78460949999999],"type":"Point"},"name":"Bellini"} +,{"_id":{"$oid":"55cba2486c522cafdb0597b8"},"location":{"coordinates":[-73.98618019999999,40.5835167],"type":"Point"},"name":"Brooklyn Z"} +,{"_id":{"$oid":"55cba2486c522cafdb0597b9"},"location":{"coordinates":[-74.00523310000001,40.6399759],"type":"Point"},"name":"Lucky Eight Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb0597ba"},"location":{"coordinates":[-73.731161,40.727674],"type":"Point"},"name":"Bar-B-Q Tonight"} +,{"_id":{"$oid":"55cba2486c522cafdb0597bb"},"location":{"coordinates":[-74.0792416,40.5987713],"type":"Point"},"name":"Caravan Bazar Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb0597bc"},"location":{"coordinates":[-73.9905315,40.7614719],"type":"Point"},"name":"Wrapido"} +,{"_id":{"$oid":"55cba2486c522cafdb0597bd"},"location":{"coordinates":[-74.0067626,40.7150129],"type":"Point"},"name":"New Sun Cafe Japanese Cuisine Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb0597be"},"location":{"coordinates":[-73.919023,40.6342201],"type":"Point"},"name":"Papas Fast Food"} +,{"_id":{"$oid":"55cba2486c522cafdb0597bf"},"location":{"coordinates":[-74.02900629999999,40.62227619999999],"type":"Point"},"name":"Little Caesars"} +,{"_id":{"$oid":"55cba2486c522cafdb0597c0"},"location":{"coordinates":[-73.96037919999999,40.6570786],"type":"Point"},"name":"Sultan'S Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb0597c1"},"location":{"coordinates":[-73.9766227,40.7493352],"type":"Point"},"name":"Salvation Taco \u0026 Roof Top Bar"} +,{"_id":{"$oid":"55cba2486c522cafdb0597c2"},"location":{"coordinates":[-73.9863731,40.7472233],"type":"Point"},"name":"Cloud Social"} +,{"_id":{"$oid":"55cba2486c522cafdb0597c3"},"location":{"coordinates":[-73.8041889,40.760908],"type":"Point"},"name":"Point"} +,{"_id":{"$oid":"55cba2486c522cafdb0597c4"},"location":{"coordinates":[-73.97891109999999,40.6704263],"type":"Point"},"name":"Burger Village"} +,{"_id":{"$oid":"55cba2486c522cafdb0597c5"},"location":{"coordinates":[-73.93251099999999,40.618237],"type":"Point"},"name":"Bagel Bob"} +,{"_id":{"$oid":"55cba2486c522cafdb0597c6"},"location":{"coordinates":[-73.85648669999999,40.7436374],"type":"Point"},"name":"Lomazoyatl Deli Grocery"} +,{"_id":{"$oid":"55cba2486c522cafdb0597c7"},"location":{"coordinates":[-73.9346102,40.85190009999999],"type":"Point"},"name":"Green Juice Cafe Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb0597c8"},"location":{"coordinates":[-73.955677,40.804865],"type":"Point"},"name":"Lolo'S Seafood Shack"} +,{"_id":{"$oid":"55cba2486c522cafdb0597c9"},"location":{"coordinates":[-73.9890844,40.7483602],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2486c522cafdb0597ca"},"location":{"coordinates":[-73.9925177,40.7347897],"type":"Point"},"name":"Roast Kitchen"} +,{"_id":{"$oid":"55cba2486c522cafdb0597cb"},"location":{"coordinates":[-74.01217799999999,40.717367],"type":"Point"},"name":"Mbj Downtown"} +,{"_id":{"$oid":"55cba2486c522cafdb0597cc"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"Urban Crave"} +,{"_id":{"$oid":"55cba2486c522cafdb0597cd"},"location":{"coordinates":[-74.2162673,40.5234038],"type":"Point"},"name":"Eggers Ice Cream Parlor"} +,{"_id":{"$oid":"55cba2486c522cafdb0597ce"},"location":{"coordinates":[-74.027135,40.636384],"type":"Point"},"name":"Arepas \u0026 Crepes Colombian Cuisine"} +,{"_id":{"$oid":"55cba2486c522cafdb0597cf"},"location":{"coordinates":[-73.90987439999999,40.8860884],"type":"Point"},"name":"Moon Star Grill"} +,{"_id":{"$oid":"55cba2486c522cafdb0597d0"},"location":{"coordinates":[-74.0950928,40.5831981],"type":"Point"},"name":"Ny Family Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb0597d1"},"location":{"coordinates":[-73.9322531,40.70317379999999],"type":"Point"},"name":"Forrest Point"} +,{"_id":{"$oid":"55cba2486c522cafdb0597d2"},"location":{"coordinates":[-73.97216879999999,40.7929817],"type":"Point"},"name":"Whispers Bar And Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb0597d3"},"location":{"coordinates":[-73.8668505,40.6787205],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2486c522cafdb0597d4"},"location":{"coordinates":[-73.868284,40.708464],"type":"Point"},"name":"Auntie Anne'S"} +,{"_id":{"$oid":"55cba2486c522cafdb0597d5"},"location":{"coordinates":[-73.92351219999999,40.7402443],"type":"Point"},"name":"Vivire"} +,{"_id":{"$oid":"55cba2486c522cafdb0597d6"},"location":{"coordinates":[-73.96386679999999,40.6797842],"type":"Point"},"name":"Tumdri"} +,{"_id":{"$oid":"55cba2486c522cafdb0597d7"},"location":{"coordinates":[-73.9643447,40.7567982],"type":"Point"},"name":"Juice Elate Llc"} +,{"_id":{"$oid":"55cba2486c522cafdb0597d8"},"location":{"coordinates":[-73.9508649,40.7244529],"type":"Point"},"name":"Greenpoint Sandwich"} +,{"_id":{"$oid":"55cba2486c522cafdb0597d9"},"location":{"coordinates":[-73.99621499999999,40.766805],"type":"Point"},"name":"Space Ibiza Ny"} +,{"_id":{"$oid":"55cba2486c522cafdb0597da"},"location":{"coordinates":[-73.9609404,40.5978319],"type":"Point"},"name":"Blinoff"} +,{"_id":{"$oid":"55cba2486c522cafdb0597db"},"location":{"coordinates":[-73.861688,40.750426],"type":"Point"},"name":"Estrello Latina Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb0597dc"},"location":{"coordinates":[-74.191682,40.562981],"type":"Point"},"name":"Parkside Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb0597dd"},"location":{"coordinates":[-73.973281,40.608539],"type":"Point"},"name":"Jennis Deli And Grill And Grocery"} +,{"_id":{"$oid":"55cba2486c522cafdb0597de"},"location":{"coordinates":[-73.99988309999999,40.717725],"type":"Point"},"name":"Potato Corner"} +,{"_id":{"$oid":"55cba2486c522cafdb0597df"},"location":{"coordinates":[-73.9761377,40.7238559],"type":"Point"},"name":"Crown Fried Chicken"} +,{"_id":{"$oid":"55cba2486c522cafdb0597e0"},"location":{"coordinates":[-73.95452399999999,40.771965],"type":"Point"},"name":"Xi'An Famous Foods"} +,{"_id":{"$oid":"55cba2486c522cafdb0597e1"},"location":{"coordinates":[-73.9173531,40.6831042],"type":"Point"},"name":"New York Fried Chicken"} +,{"_id":{"$oid":"55cba2486c522cafdb0597e2"},"location":{"coordinates":[-73.9821244,40.7551156],"type":"Point"},"name":"Baluchi'S Fresh"} +,{"_id":{"$oid":"55cba2486c522cafdb0597e3"},"location":{"coordinates":[-73.96119999999999,40.654848],"type":"Point"},"name":"Gyro Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb0597e4"},"location":{"coordinates":[-73.9442246,40.6860246],"type":"Point"},"name":"Lackawanna Coffee"} +,{"_id":{"$oid":"55cba2486c522cafdb0597e5"},"location":{"coordinates":[-73.9732203,40.7498855],"type":"Point"},"name":"Va Presto"} +,{"_id":{"$oid":"55cba2486c522cafdb0597e6"},"location":{"coordinates":[-73.87168,40.6730189],"type":"Point"},"name":"Blue Moon Chicken Deli \u0026 Pizza Corp"} +,{"_id":{"$oid":"55cba2486c522cafdb0597e7"},"location":{"coordinates":[-87.0350619,30.6039905],"type":"Point"},"name":"Bubble Chai Sushi"} +,{"_id":{"$oid":"55cba2486c522cafdb0597e8"},"location":{"coordinates":[-73.95229499999999,40.776611],"type":"Point"},"name":"La Pulperia 84 Nyc"} +,{"_id":{"$oid":"55cba2486c522cafdb0597e9"},"location":{"coordinates":[-73.9520134,40.6459833],"type":"Point"},"name":"Plenty'S Paradise"} +,{"_id":{"$oid":"55cba2486c522cafdb0597ea"},"location":{"coordinates":[-73.8290939,40.759362],"type":"Point"},"name":"Hong Kong Cafe / Fresh Sandwich Bakery (Basement Food Court Restaurant \u0026 1St Fl Bakery)"} +,{"_id":{"$oid":"55cba2486c522cafdb0597eb"},"location":{"coordinates":[-73.8226449,40.75337469999999],"type":"Point"},"name":"New Tasty House"} +,{"_id":{"$oid":"55cba2486c522cafdb0597ec"},"location":{"coordinates":[-73.9849035,40.7558477],"type":"Point"},"name":"Stephen Sondheim Theatre"} +,{"_id":{"$oid":"55cba2486c522cafdb0597ed"},"location":{"coordinates":[-73.9381774,40.578459],"type":"Point"},"name":"Enzo'S Pizzeria"} +,{"_id":{"$oid":"55cba2486c522cafdb0597ee"},"location":{"coordinates":[-73.7770539,40.6633872],"type":"Point"},"name":"New Yummy Express"} +,{"_id":{"$oid":"55cba2486c522cafdb0597ef"},"location":{"coordinates":[-73.8238971,40.7300198],"type":"Point"},"name":"Hibachi Express"} +,{"_id":{"$oid":"55cba2486c522cafdb0597f0"},"location":{"coordinates":[-73.8090373,40.70402989999999],"type":"Point"},"name":"Nutripan #2"} +,{"_id":{"$oid":"55cba2486c522cafdb0597f1"},"location":{"coordinates":[-73.849012,40.694288],"type":"Point"},"name":"El Ranchito Restaurant And Bakery"} +,{"_id":{"$oid":"55cba2486c522cafdb0597f2"},"location":{"coordinates":[-73.94701599999999,40.7482029],"type":"Point"},"name":"Palace Chicken \u0026 Grill"} +,{"_id":{"$oid":"55cba2486c522cafdb0597f3"},"location":{"coordinates":[-74.0075402,40.7151466],"type":"Point"},"name":"Sun In Bloom"} +,{"_id":{"$oid":"55cba2486c522cafdb0597f4"},"location":{"coordinates":[-73.9812099,40.751112],"type":"Point"},"name":"Alidoro"} +,{"_id":{"$oid":"55cba2486c522cafdb0597f5"},"location":{"coordinates":[-74.00702,40.739143],"type":"Point"},"name":"Donostia"} +,{"_id":{"$oid":"55cba2486c522cafdb0597f6"},"location":{"coordinates":[-73.863748,40.750244],"type":"Point"},"name":"Nutricion Activa"} +,{"_id":{"$oid":"55cba2486c522cafdb0597f7"},"location":{"coordinates":[-73.8377201,40.6499968],"type":"Point"},"name":"Sapienza"} +,{"_id":{"$oid":"55cba2486c522cafdb0597f8"},"location":{"coordinates":[-73.89944059999999,40.867681],"type":"Point"},"name":"Mirador Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb0597f9"},"location":{"coordinates":[-73.989794,40.712934],"type":"Point"},"name":"Forever Taste Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb0597fa"},"location":{"coordinates":[-74.00477420000001,40.7186175],"type":"Point"},"name":"Baked"} +,{"_id":{"$oid":"55cba2486c522cafdb0597fb"},"location":{"coordinates":[-73.983603,40.67816699999999],"type":"Point"},"name":"Lucky 13 Saloon"} +,{"_id":{"$oid":"55cba2486c522cafdb0597fc"},"location":{"coordinates":[-73.89659019999999,40.7461067],"type":"Point"},"name":"Baby'S Grill And Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb0597fd"},"location":{"coordinates":[-73.95839490000002,40.6179975],"type":"Point"},"name":"Pete'S Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb0597fe"},"location":{"coordinates":[-74.0917274,40.6002834],"type":"Point"},"name":"The Tasty Grill"} +,{"_id":{"$oid":"55cba2486c522cafdb0597ff"},"location":{"coordinates":[-73.97458200000001,40.6760504],"type":"Point"},"name":"Tikka Grill"} +,{"_id":{"$oid":"55cba2486c522cafdb059800"},"location":{"coordinates":[-73.94708299999999,40.780568],"type":"Point"},"name":"Akami Sushi"} +,{"_id":{"$oid":"55cba2486c522cafdb059801"},"location":{"coordinates":[-73.9879339,40.7561111],"type":"Point"},"name":"New Amsterdam Theater"} +,{"_id":{"$oid":"55cba2486c522cafdb059802"},"location":{"coordinates":[-73.93441860000001,40.849922],"type":"Point"},"name":"Mix Stirs"} +,{"_id":{"$oid":"55cba2486c522cafdb059803"},"location":{"coordinates":[-73.9211189,40.86744840000001],"type":"Point"},"name":"La Nueva Espana Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059804"},"location":{"coordinates":[-73.94888999999999,40.664232],"type":"Point"},"name":"Mom \u0026 Pop'S Bakery"} +,{"_id":{"$oid":"55cba2486c522cafdb059805"},"location":{"coordinates":[-73.8052915,40.7211216],"type":"Point"},"name":"Dolphins Diner"} +,{"_id":{"$oid":"55cba2486c522cafdb059806"},"location":{"coordinates":[-73.8706606,40.7342757],"type":"Point"},"name":"The Spoon Factory"} +,{"_id":{"$oid":"55cba2486c522cafdb059807"},"location":{"coordinates":[-73.9492852,40.6950617],"type":"Point"},"name":"Marcy \u0026 Myrtle Coffee Bar"} +,{"_id":{"$oid":"55cba2486c522cafdb059808"},"location":{"coordinates":[-73.954818,40.768811],"type":"Point"},"name":"Campagnola Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059809"},"location":{"coordinates":[-74.190969,40.58679600000001],"type":"Point"},"name":"Holiday Inn"} +,{"_id":{"$oid":"55cba2486c522cafdb05980a"},"location":{"coordinates":[-73.9071848,40.7734807],"type":"Point"},"name":"Kumo Japanese Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb05980b"},"location":{"coordinates":[-73.94527839999999,40.75522369999999],"type":"Point"},"name":"Flavors Corner"} +,{"_id":{"$oid":"55cba2486c522cafdb05980c"},"location":{"coordinates":[-73.9966203,40.7139364],"type":"Point"},"name":"East Seafood Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb05980d"},"location":{"coordinates":[-74.0139121,40.7055177],"type":"Point"},"name":"Cipriani 25 Broadway"} +,{"_id":{"$oid":"55cba2486c522cafdb05980e"},"location":{"coordinates":[-73.8895883,40.819389],"type":"Point"},"name":"Xin Ya Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb05980f"},"location":{"coordinates":[-73.9669455,40.67524119999999],"type":"Point"},"name":"Gold Star Beer Counter"} +,{"_id":{"$oid":"55cba2486c522cafdb059810"},"location":{"coordinates":[-73.95099379999999,40.7129345],"type":"Point"},"name":"10 Devoe"} +,{"_id":{"$oid":"55cba2486c522cafdb059811"},"location":{"coordinates":[-73.990454,40.750295],"type":"Point"},"name":"Hooters"} +,{"_id":{"$oid":"55cba2486c522cafdb059812"},"location":{"coordinates":[-73.9614436,40.7140037],"type":"Point"},"name":"Maison Des Crepes"} +,{"_id":{"$oid":"55cba2486c522cafdb059813"},"location":{"coordinates":[-73.8289779,40.8665658],"type":"Point"},"name":"Frozen Peaks"} +,{"_id":{"$oid":"55cba2486c522cafdb059814"},"location":{"coordinates":[-73.98402680000001,40.7735954],"type":"Point"},"name":"Lincoln Center Theater (Claire Tow Theater)"} +,{"_id":{"$oid":"55cba2486c522cafdb059815"},"location":{"coordinates":[-74.210578,40.55077929999999],"type":"Point"},"name":"Poppy'S Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb059816"},"location":{"coordinates":[-73.991716,40.718108],"type":"Point"},"name":"Hou Yi Spicy"} +,{"_id":{"$oid":"55cba2486c522cafdb059817"},"location":{"coordinates":[-73.9372363,40.5990218],"type":"Point"},"name":"My Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb059818"},"location":{"coordinates":[-73.8781477,40.7560467],"type":"Point"},"name":"Ming Star Chinese Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059819"},"location":{"coordinates":[-73.886602,40.857826],"type":"Point"},"name":"The Blue Goose"} +,{"_id":{"$oid":"55cba2486c522cafdb05981a"},"location":{"coordinates":[-73.96443049999999,40.64906269999999],"type":"Point"},"name":"China Dragon"} +,{"_id":{"$oid":"55cba2486c522cafdb05981b"},"location":{"coordinates":[-73.9243927,40.7559589],"type":"Point"},"name":"Tacuba Cantiina Mexicana"} +,{"_id":{"$oid":"55cba2486c522cafdb05981c"},"location":{"coordinates":[-73.8330519,40.7587756],"type":"Point"},"name":"Mangomango"} +,{"_id":{"$oid":"55cba2486c522cafdb05981d"},"location":{"coordinates":[-74.001007,40.729695],"type":"Point"},"name":"Melt Kraft"} +,{"_id":{"$oid":"55cba2486c522cafdb05981e"},"location":{"coordinates":[-73.7944646,40.7330419],"type":"Point"},"name":"Bombay Theatre"} +,{"_id":{"$oid":"55cba2486c522cafdb05981f"},"location":{"coordinates":[-73.90179839999999,40.7221856],"type":"Point"},"name":"Moon Palace Kitchen"} +,{"_id":{"$oid":"55cba2486c522cafdb059820"},"location":{"coordinates":[-73.843279,40.686183],"type":"Point"},"name":"Due Mondi Civic Association Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb059821"},"location":{"coordinates":[-73.887492,40.8556246],"type":"Point"},"name":"Palombo Pastry Shop"} +,{"_id":{"$oid":"55cba2486c522cafdb059822"},"location":{"coordinates":[-73.9784051,40.7641849],"type":"Point"},"name":"Petite Blue Dog Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb059823"},"location":{"coordinates":[-73.86338630000002,40.8326001],"type":"Point"},"name":"Bangla Garden Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059824"},"location":{"coordinates":[-73.9422367,40.8013042],"type":"Point"},"name":"Kyle Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059825"},"location":{"coordinates":[-73.95629799999999,40.599082],"type":"Point"},"name":"Vivi Bubble Tea"} +,{"_id":{"$oid":"55cba2486c522cafdb059826"},"location":{"coordinates":[-73.8921779,40.7473111],"type":"Point"},"name":"Kabab King"} +,{"_id":{"$oid":"55cba2486c522cafdb059827"},"location":{"coordinates":[-73.981886,40.741148],"type":"Point"},"name":"La Posada Mexican Food"} +,{"_id":{"$oid":"55cba2486c522cafdb059828"},"location":{"coordinates":[-73.92367759999999,40.842907],"type":"Point"},"name":"J J \u0026 Maria Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059829"},"location":{"coordinates":[-73.96186,40.66173],"type":"Point"},"name":"Dj Oyster Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb05982a"},"location":{"coordinates":[-73.967781,40.799407],"type":"Point"},"name":"Malaysia Grill"} +,{"_id":{"$oid":"55cba2486c522cafdb05982b"},"location":{"coordinates":[-73.99807299999999,40.764472],"type":"Point"},"name":"Underwest"} +,{"_id":{"$oid":"55cba2486c522cafdb05982c"},"location":{"coordinates":[-73.908805,40.844609],"type":"Point"},"name":"El Sofoke"} +,{"_id":{"$oid":"55cba2486c522cafdb05982d"},"location":{"coordinates":[-73.844404,40.694977],"type":"Point"},"name":"La Cabana Restaurant De Rosa Corp"} +,{"_id":{"$oid":"55cba2486c522cafdb05982e"},"location":{"coordinates":[-74.005837,40.6039389],"type":"Point"},"name":"Sooo Delicious"} +,{"_id":{"$oid":"55cba2486c522cafdb05982f"},"location":{"coordinates":[-73.9909547,40.5761478],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2486c522cafdb059830"},"location":{"coordinates":[-74.0878388,40.6089351],"type":"Point"},"name":"My Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb059831"},"location":{"coordinates":[-73.8635393,40.7480667],"type":"Point"},"name":"168 Tea Llc"} +,{"_id":{"$oid":"55cba2486c522cafdb059832"},"location":{"coordinates":[-73.9903693,40.7517394],"type":"Point"},"name":"Healthy Eats"} +,{"_id":{"$oid":"55cba2486c522cafdb059833"},"location":{"coordinates":[-73.977772,40.64896299999999],"type":"Point"},"name":"Calaveras"} +,{"_id":{"$oid":"55cba2486c522cafdb059834"},"location":{"coordinates":[-74.0015856,40.7438959],"type":"Point"},"name":"Atlantic Theater"} +,{"_id":{"$oid":"55cba2486c522cafdb059835"},"location":{"coordinates":[-74.1164189,40.573557],"type":"Point"},"name":"Pho Rainbow Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb059836"},"location":{"coordinates":[-73.77547849999999,40.6730301],"type":"Point"},"name":"New Ming Garden Ii"} +,{"_id":{"$oid":"55cba2486c522cafdb059837"},"location":{"coordinates":[-73.9453427,40.6509388],"type":"Point"},"name":"Snatch \u0026 Go Internet Cafe \u0026 Juice Bar"} +,{"_id":{"$oid":"55cba2486c522cafdb059838"},"location":{"coordinates":[-73.9568632,40.6732821],"type":"Point"},"name":"Sweets And Treats Bakery"} +,{"_id":{"$oid":"55cba2486c522cafdb059839"},"location":{"coordinates":[-73.7652718,40.6815436],"type":"Point"},"name":"Soursop Tree Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb05983a"},"location":{"coordinates":[-74.0000051,40.73223420000001],"type":"Point"},"name":"Formerly Crows"} +,{"_id":{"$oid":"55cba2486c522cafdb05983b"},"location":{"coordinates":[-73.9916461,40.724629],"type":"Point"},"name":"Bowery Meat Company"} +,{"_id":{"$oid":"55cba2486c522cafdb05983c"},"location":{"coordinates":[-73.98979,40.761764],"type":"Point"},"name":"Room Service"} +,{"_id":{"$oid":"55cba2486c522cafdb05983d"},"location":{"coordinates":[-74.0091826,40.7151439],"type":"Point"},"name":"Little Park"} +,{"_id":{"$oid":"55cba2486c522cafdb05983e"},"location":{"coordinates":[-73.9653429,40.8066004],"type":"Point"},"name":"Bernheim \u0026 Schwartz"} +,{"_id":{"$oid":"55cba2486c522cafdb05983f"},"location":{"coordinates":[-73.791887,40.7062359],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2486c522cafdb059840"},"location":{"coordinates":[-73.9483692,40.6319758],"type":"Point"},"name":"Subsational"} +,{"_id":{"$oid":"55cba2486c522cafdb059841"},"location":{"coordinates":[-73.9726817,40.6779795],"type":"Point"},"name":"Dao Palate"} +,{"_id":{"$oid":"55cba2486c522cafdb059842"},"location":{"coordinates":[-73.9085338,40.6562346],"type":"Point"},"name":"Papa'S Fried Chicken \u0026 Ice Cream"} +,{"_id":{"$oid":"55cba2486c522cafdb059843"},"location":{"coordinates":[-73.9835174,40.7266622],"type":"Point"},"name":"Empellon Al Pastor"} +,{"_id":{"$oid":"55cba2486c522cafdb059844"},"location":{"coordinates":[-73.9608528,40.6079809],"type":"Point"},"name":"Bagels \u0026 Bialys"} +,{"_id":{"$oid":"55cba2486c522cafdb059845"},"location":{"coordinates":[-73.8303037,40.8442192],"type":"Point"},"name":"Sushi Q Japanese Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059846"},"location":{"coordinates":[-73.8925151,40.8197678],"type":"Point"},"name":"Nelson'S Sports Bar Restaurant \u0026 Lounge"} +,{"_id":{"$oid":"55cba2486c522cafdb059847"},"location":{"coordinates":[-73.9388759,40.601016],"type":"Point"},"name":"Pizza D'Amore"} +,{"_id":{"$oid":"55cba2486c522cafdb059848"},"location":{"coordinates":[-73.99557,40.71766299999999],"type":"Point"},"name":"Happy Lucky Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059849"},"location":{"coordinates":[-73.9985675,40.7200616],"type":"Point"},"name":"Lan Larb Soho"} +,{"_id":{"$oid":"55cba2486c522cafdb05984a"},"location":{"coordinates":[-73.907229,40.7602422],"type":"Point"},"name":"The Brewery"} +,{"_id":{"$oid":"55cba2486c522cafdb05984b"},"location":{"coordinates":[-73.9758301,40.7453788],"type":"Point"},"name":"Lan Larb"} +,{"_id":{"$oid":"55cba2486c522cafdb05984c"},"location":{"coordinates":[-74.00266309999999,40.70740809999999],"type":"Point"},"name":"Vbar Seaport"} +,{"_id":{"$oid":"55cba2486c522cafdb05984d"},"location":{"coordinates":[-73.9166121,40.6596915],"type":"Point"},"name":"Fishnet Fresh Seafood"} +,{"_id":{"$oid":"55cba2486c522cafdb05984e"},"location":{"coordinates":[-73.9507066,40.7788568],"type":"Point"},"name":"Ichiro"} +,{"_id":{"$oid":"55cba2486c522cafdb05984f"},"location":{"coordinates":[-73.8559476,40.8479438],"type":"Point"},"name":"La Masa Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059850"},"location":{"coordinates":[-73.832852,40.758869],"type":"Point"},"name":"Hot Kitchen Sichuan Style"} +,{"_id":{"$oid":"55cba2486c522cafdb059851"},"location":{"coordinates":[-74.00702,40.739143],"type":"Point"},"name":"Crepe Sucre"} +,{"_id":{"$oid":"55cba2486c522cafdb059852"},"location":{"coordinates":[-73.9477979,40.8295932],"type":"Point"},"name":"New Happiness"} +,{"_id":{"$oid":"55cba2486c522cafdb059853"},"location":{"coordinates":[-73.92174,40.818971],"type":"Point"},"name":"Lechonera Latina"} +,{"_id":{"$oid":"55cba2486c522cafdb059854"},"location":{"coordinates":[-73.9841401,40.7501545],"type":"Point"},"name":"Shabu Shabu Kobe"} +,{"_id":{"$oid":"55cba2486c522cafdb059855"},"location":{"coordinates":[-73.9792527,40.6825759],"type":"Point"},"name":"New China Wok"} +,{"_id":{"$oid":"55cba2486c522cafdb059856"},"location":{"coordinates":[-74.0223199,40.634084],"type":"Point"},"name":"Eden Hookak"} +,{"_id":{"$oid":"55cba2486c522cafdb059857"},"location":{"coordinates":[-73.80951739999999,40.7205516],"type":"Point"},"name":"D \u0026 L Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb059858"},"location":{"coordinates":[-73.98672499999999,40.760379],"type":"Point"},"name":"Samuel Friedman Theatre"} +,{"_id":{"$oid":"55cba2486c522cafdb059859"},"location":{"coordinates":[-73.9835112,40.7408627],"type":"Point"},"name":"Little Box"} +,{"_id":{"$oid":"55cba2486c522cafdb05985a"},"location":{"coordinates":[-73.9531219,40.818237],"type":"Point"},"name":"Fruces"} +,{"_id":{"$oid":"55cba2486c522cafdb05985b"},"location":{"coordinates":[-73.983626,40.7247739],"type":"Point"},"name":"Gg'S"} +,{"_id":{"$oid":"55cba2486c522cafdb05985c"},"location":{"coordinates":[-93.2069217,43.14769159999999],"type":"Point"},"name":"State Grill And Bar"} +,{"_id":{"$oid":"55cba2486c522cafdb05985d"},"location":{"coordinates":[-73.7971565,40.5904747],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2486c522cafdb05985e"},"location":{"coordinates":[-73.803933,40.762737],"type":"Point"},"name":"Something 1 Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb05985f"},"location":{"coordinates":[-73.7996694,40.7233518],"type":"Point"},"name":"Vincenzo'S Pizzeria \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059860"},"location":{"coordinates":[-73.80341109999999,40.7622381],"type":"Point"},"name":"Sagwa Namoo"} +,{"_id":{"$oid":"55cba2486c522cafdb059861"},"location":{"coordinates":[-73.990189,40.717661],"type":"Point"},"name":"Ochado"} +,{"_id":{"$oid":"55cba2486c522cafdb059862"},"location":{"coordinates":[-73.8680742,40.7486515],"type":"Point"},"name":"Li Golden Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059863"},"location":{"coordinates":[-73.94213169999999,40.7565212],"type":"Point"},"name":"Mayflower"} +,{"_id":{"$oid":"55cba2486c522cafdb059864"},"location":{"coordinates":[-73.987584,40.721068],"type":"Point"},"name":"99 Cents Fresh Slice Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb059865"},"location":{"coordinates":[-74.00609279999999,40.7099406],"type":"Point"},"name":"Bareburger"} +,{"_id":{"$oid":"55cba2486c522cafdb059866"},"location":{"coordinates":[-73.9964131,40.7139345],"type":"Point"},"name":"21 Shanghai House"} +,{"_id":{"$oid":"55cba2486c522cafdb059867"},"location":{"coordinates":[-73.98207599999999,40.751212],"type":"Point"},"name":"Simit Sarayi"} +,{"_id":{"$oid":"55cba2486c522cafdb059868"},"location":{"coordinates":[-73.832466,40.760646],"type":"Point"},"name":"Fun Lounge"} +,{"_id":{"$oid":"55cba2486c522cafdb059869"},"location":{"coordinates":[-73.870504,40.751873],"type":"Point"},"name":"Rinconcito Mexicano Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb05986a"},"location":{"coordinates":[-73.7497001,40.71532879999999],"type":"Point"},"name":"Abou Bakery"} +,{"_id":{"$oid":"55cba2486c522cafdb05986b"},"location":{"coordinates":[-73.982908,40.7531431],"type":"Point"},"name":"Bryant Park Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb05986c"},"location":{"coordinates":[-73.96968009999999,40.647055],"type":"Point"},"name":"Hunger Pang"} +,{"_id":{"$oid":"55cba2486c522cafdb05986d"},"location":{"coordinates":[-73.82253299999999,40.7575992],"type":"Point"},"name":"Majangdong"} +,{"_id":{"$oid":"55cba2486c522cafdb05986e"},"location":{"coordinates":[-73.942891,40.60724099999999],"type":"Point"},"name":"Wing Hing Chinese Cuisine"} +,{"_id":{"$oid":"55cba2486c522cafdb05986f"},"location":{"coordinates":[-73.94839309999999,40.6508623],"type":"Point"},"name":"U Bee Fast Food"} +,{"_id":{"$oid":"55cba2486c522cafdb059870"},"location":{"coordinates":[-73.98734809999999,40.7267246],"type":"Point"},"name":"The Izakaya"} +,{"_id":{"$oid":"55cba2486c522cafdb059871"},"location":{"coordinates":[-73.9130784,40.7135153],"type":"Point"},"name":"Drunken Fish"} +,{"_id":{"$oid":"55cba2486c522cafdb059872"},"location":{"coordinates":[-73.9137889,40.6353859],"type":"Point"},"name":"La Baguette Shop"} +,{"_id":{"$oid":"55cba2486c522cafdb059873"},"location":{"coordinates":[-73.83126659999999,40.7521339],"type":"Point"},"name":"Greater New York Social And Health Adult Day Care Center Llc"} +,{"_id":{"$oid":"55cba2486c522cafdb059874"},"location":{"coordinates":[-73.84376050000002,40.7197721],"type":"Point"},"name":"A Sushi"} +,{"_id":{"$oid":"55cba2486c522cafdb059875"},"location":{"coordinates":[-73.999635,40.618124],"type":"Point"},"name":"Gus' American Grill"} +,{"_id":{"$oid":"55cba2486c522cafdb059876"},"location":{"coordinates":[-73.957927,40.642599],"type":"Point"},"name":"Banana Boat Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059877"},"location":{"coordinates":[-74.191901,40.590712],"type":"Point"},"name":"Arabica Hookah Lounge \u0026 Restaurant Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb059878"},"location":{"coordinates":[-74.13664659999999,40.6245832],"type":"Point"},"name":"Touch Down Deli"} +,{"_id":{"$oid":"55cba2486c522cafdb059879"},"location":{"coordinates":[-73.90731710000001,40.8862089],"type":"Point"},"name":"Gil'S Pizza Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb05987a"},"location":{"coordinates":[-73.8671967,40.7216631],"type":"Point"},"name":"Mayurya Banquet Hall \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb05987b"},"location":{"coordinates":[-74.00594699999999,40.638616],"type":"Point"},"name":"Bubble Cha Cha"} +,{"_id":{"$oid":"55cba2486c522cafdb05987c"},"location":{"coordinates":[-73.98995099999999,40.76264800000001],"type":"Point"},"name":"I Pizza Ny"} +,{"_id":{"$oid":"55cba2486c522cafdb05987d"},"location":{"coordinates":[-73.9094696,40.8220031],"type":"Point"},"name":"Maraka Mini Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb05987e"},"location":{"coordinates":[-73.942386,40.66446],"type":"Point"},"name":"Yogurt Y23 Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb05987f"},"location":{"coordinates":[-73.94075,40.7488389],"type":"Point"},"name":"The Beast Next Door"} +,{"_id":{"$oid":"55cba2486c522cafdb059880"},"location":{"coordinates":[-74.0074185,40.7144942],"type":"Point"},"name":"Kaede Japanese Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059881"},"location":{"coordinates":[-73.8680742,40.7486515],"type":"Point"},"name":"Corner 28 \u0026 Tbaar"} +,{"_id":{"$oid":"55cba2486c522cafdb059882"},"location":{"coordinates":[-73.93104819999999,40.6186926],"type":"Point"},"name":"Saigon Bar And Grill Llc"} +,{"_id":{"$oid":"55cba2486c522cafdb059883"},"location":{"coordinates":[-73.9410662,40.6801478],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2486c522cafdb059884"},"location":{"coordinates":[-73.988413,40.720246],"type":"Point"},"name":"Galli Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059885"},"location":{"coordinates":[-73.9829934,40.7579008],"type":"Point"},"name":"Steinberg Center"} +,{"_id":{"$oid":"55cba2486c522cafdb059886"},"location":{"coordinates":[-73.9838285,40.76430269999999],"type":"Point"},"name":"Studio 54 Theatre"} +,{"_id":{"$oid":"55cba2486c522cafdb059887"},"location":{"coordinates":[-73.9936759,40.758556],"type":"Point"},"name":"Playwrights Horizons"} +,{"_id":{"$oid":"55cba2486c522cafdb059888"},"location":{"coordinates":[-73.9880585,40.75677810000001],"type":"Point"},"name":"American Airlines Theater"} +,{"_id":{"$oid":"55cba2486c522cafdb059889"},"location":{"coordinates":[-73.8296687,40.7590355],"type":"Point"},"name":"Vivi Bubble Tea"} +,{"_id":{"$oid":"55cba2486c522cafdb05988a"},"location":{"coordinates":[-73.86884719999999,40.734213],"type":"Point"},"name":"The Olive Garden"} +,{"_id":{"$oid":"55cba2486c522cafdb05988b"},"location":{"coordinates":[-73.9479719,40.7742689],"type":"Point"},"name":"Aba Asian Fusion Cuisine Ave"} +,{"_id":{"$oid":"55cba2486c522cafdb05988c"},"location":{"coordinates":[-73.8403584,40.659974],"type":"Point"},"name":"D Love B"} +,{"_id":{"$oid":"55cba2486c522cafdb05988d"},"location":{"coordinates":[-74.014067,40.708377],"type":"Point"},"name":"St George Tower"} +,{"_id":{"$oid":"55cba2486c522cafdb05988e"},"location":{"coordinates":[-74.1034255,40.5760383],"type":"Point"},"name":"Empire Expresws Si Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb05988f"},"location":{"coordinates":[-73.780233,40.595109],"type":"Point"},"name":"Papa John Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb059890"},"location":{"coordinates":[-73.9582662,40.7692944],"type":"Point"},"name":"Rongoli Exquiste Indian Cuisine"} +,{"_id":{"$oid":"55cba2486c522cafdb059891"},"location":{"coordinates":[-73.9841306,40.7265113],"type":"Point"},"name":"Butter Lane"} +,{"_id":{"$oid":"55cba2486c522cafdb059892"},"location":{"coordinates":[-73.9315891,40.7517377],"type":"Point"},"name":"Via Caramico"} +,{"_id":{"$oid":"55cba2486c522cafdb059893"},"location":{"coordinates":[-73.99629639999999,40.720954],"type":"Point"},"name":"Taro"} +,{"_id":{"$oid":"55cba2486c522cafdb059894"},"location":{"coordinates":[-73.756903,40.748489],"type":"Point"},"name":"Fukuoka Shabu Shabu Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb059895"},"location":{"coordinates":[-73.9212398,40.8357233],"type":"Point"},"name":"La Nueva Win Hing Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059896"},"location":{"coordinates":[-73.948122,40.6510537],"type":"Point"},"name":"Total Amazing Grace"} +,{"_id":{"$oid":"55cba2486c522cafdb059897"},"location":{"coordinates":[-74.2390626,40.5121534],"type":"Point"},"name":"Chef Hong"} +,{"_id":{"$oid":"55cba2486c522cafdb059898"},"location":{"coordinates":[-73.91368,40.774613],"type":"Point"},"name":"The Bonnie"} +,{"_id":{"$oid":"55cba2486c522cafdb059899"},"location":{"coordinates":[-73.9577597,40.6725197],"type":"Point"},"name":"Cafe Forte"} +,{"_id":{"$oid":"55cba2486c522cafdb05989a"},"location":{"coordinates":[-73.9179168,40.816374],"type":"Point"},"name":"395 Gourmet And Grocery"} +,{"_id":{"$oid":"55cba2486c522cafdb05989b"},"location":{"coordinates":[-73.9427869,40.7007759],"type":"Point"},"name":"Westway Bagel"} +,{"_id":{"$oid":"55cba2486c522cafdb05989c"},"location":{"coordinates":[-74.0142069,40.7051869],"type":"Point"},"name":"Carvel Ice Cream"} +,{"_id":{"$oid":"55cba2486c522cafdb05989d"},"location":{"coordinates":[-74.0753665,40.6254224],"type":"Point"},"name":"Overspray"} +,{"_id":{"$oid":"55cba2486c522cafdb05989e"},"location":{"coordinates":[-73.933663,40.696983],"type":"Point"},"name":"Little Mo"} +,{"_id":{"$oid":"55cba2486c522cafdb05989f"},"location":{"coordinates":[-73.8368291,40.7696452],"type":"Point"},"name":"678 Aurora Catering Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb0598a0"},"location":{"coordinates":[-73.933663,40.696983],"type":"Point"},"name":"Little Outpost"} +,{"_id":{"$oid":"55cba2486c522cafdb0598a1"},"location":{"coordinates":[-73.9326134,40.64205510000001],"type":"Point"},"name":"Vivid Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb0598a2"},"location":{"coordinates":[-73.9886064,40.7222991],"type":"Point"},"name":"Cheese Grille"} +,{"_id":{"$oid":"55cba2486c522cafdb0598a3"},"location":{"coordinates":[-73.9481619,40.6398228],"type":"Point"},"name":"Fresh \u0026 Delicious"} +,{"_id":{"$oid":"55cba2486c522cafdb0598a4"},"location":{"coordinates":[-73.9216235,40.8311365],"type":"Point"},"name":"Andrea'S Restaurant (Jg Delicious Food)"} +,{"_id":{"$oid":"55cba2486c522cafdb0598a5"},"location":{"coordinates":[-73.9126129,40.745695],"type":"Point"},"name":"Thai Pot Bistro"} +,{"_id":{"$oid":"55cba2486c522cafdb0598a6"},"location":{"coordinates":[-73.87820599999999,40.681678],"type":"Point"},"name":"Restaurant Catracho"} +,{"_id":{"$oid":"55cba2486c522cafdb0598a7"},"location":{"coordinates":[-73.9801263,40.7616971],"type":"Point"},"name":"Ra At Barclays"} +,{"_id":{"$oid":"55cba2486c522cafdb0598a8"},"location":{"coordinates":[-73.975335,40.76482],"type":"Point"},"name":"Park Lane Hotel"} +,{"_id":{"$oid":"55cba2486c522cafdb0598a9"},"location":{"coordinates":[-74.0947116,40.6413492],"type":"Point"},"name":"Lucky Garden"} +,{"_id":{"$oid":"55cba2486c522cafdb0598aa"},"location":{"coordinates":[-73.8680742,40.7486515],"type":"Point"},"name":"Wan Chai Seafood Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb0598ab"},"location":{"coordinates":[-73.736908,40.69386],"type":"Point"},"name":"Epi D'Or Kreyol"} +,{"_id":{"$oid":"55cba2486c522cafdb0598ac"},"location":{"coordinates":[-73.94506559999999,40.7174494],"type":"Point"},"name":"The Blue Stove"} +,{"_id":{"$oid":"55cba2486c522cafdb0598ad"},"location":{"coordinates":[-73.97388939999999,40.7436857],"type":"Point"},"name":"Lucky'S Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb0598ae"},"location":{"coordinates":[-73.8121182,40.691763],"type":"Point"},"name":"Kam Kitchen"} +,{"_id":{"$oid":"55cba2486c522cafdb0598af"},"location":{"coordinates":[-73.948042,40.782451],"type":"Point"},"name":"Bagels Express"} +,{"_id":{"$oid":"55cba2486c522cafdb0598b0"},"location":{"coordinates":[-73.9811696,40.6856789],"type":"Point"},"name":"Masala Grill"} +,{"_id":{"$oid":"55cba2486c522cafdb0598b1"},"location":{"coordinates":[-73.9440286,40.7006576],"type":"Point"},"name":"Habanero Cafe Mexican Grill"} +,{"_id":{"$oid":"55cba2486c522cafdb0598b2"},"location":{"coordinates":[-73.98587959999999,40.6934915],"type":"Point"},"name":"Hale \u0026 Hearty Soups"} +,{"_id":{"$oid":"55cba2486c522cafdb0598b3"},"location":{"coordinates":[-73.9574705,40.6706084],"type":"Point"},"name":"Starbucks Coffee #23266"} +,{"_id":{"$oid":"55cba2486c522cafdb0598b4"},"location":{"coordinates":[-73.8764913,40.87102],"type":"Point"},"name":"Aaa Caridad"} +,{"_id":{"$oid":"55cba2486c522cafdb0598b5"},"location":{"coordinates":[-73.976478,40.75040970000001],"type":"Point"},"name":"Hale And Hearty"} +,{"_id":{"$oid":"55cba2486c522cafdb0598b6"},"location":{"coordinates":[-73.925412,40.700824],"type":"Point"},"name":"El Kucho Mexican Restaurant "} +,{"_id":{"$oid":"55cba2486c522cafdb0598b7"},"location":{"coordinates":[-73.99414039999999,40.7138356],"type":"Point"},"name":"Chen'S Tai Chi Tea"} +,{"_id":{"$oid":"55cba2486c522cafdb0598b8"},"location":{"coordinates":[-73.9552147,40.6396647],"type":"Point"},"name":"F1 Lounge And Grill"} +,{"_id":{"$oid":"55cba2486c522cafdb0598b9"},"location":{"coordinates":[-73.994103,40.6400782],"type":"Point"},"name":"New Utrecht Restaurant Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb0598ba"},"location":{"coordinates":[-73.7367854,40.7689607],"type":"Point"},"name":"Sifu Chio Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb0598bb"},"location":{"coordinates":[-73.8119057,40.7030483],"type":"Point"},"name":"El Rinconcito De Los Sabores"} +,{"_id":{"$oid":"55cba2486c522cafdb0598bc"},"location":{"coordinates":[-73.987892,40.7371089],"type":"Point"},"name":"Florian Cafe Tattoria \u0026 Bar"} +,{"_id":{"$oid":"55cba2486c522cafdb0598bd"},"location":{"coordinates":[-73.9877176,40.7469246],"type":"Point"},"name":"Hyatt Herald Square"} +,{"_id":{"$oid":"55cba2486c522cafdb0598be"},"location":{"coordinates":[-73.7844169,40.7126941],"type":"Point"},"name":"Green Leaf Cafe \u0026 Bakery Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb0598bf"},"location":{"coordinates":[-73.9609423,40.5912123],"type":"Point"},"name":"Tandir Rokhat"} +,{"_id":{"$oid":"55cba2486c522cafdb0598c0"},"location":{"coordinates":[-73.94694419999999,40.727182],"type":"Point"},"name":"Moha Rani"} +,{"_id":{"$oid":"55cba2486c522cafdb0598c1"},"location":{"coordinates":[-73.98384159999999,40.7275185],"type":"Point"},"name":"King Bee"} +,{"_id":{"$oid":"55cba2486c522cafdb0598c2"},"location":{"coordinates":[-73.9134852,40.8199793],"type":"Point"},"name":"New China Restaurant Wang Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb0598c3"},"location":{"coordinates":[-73.9607103,40.6252399],"type":"Point"},"name":"Odrdeks Coffee Llc"} +,{"_id":{"$oid":"55cba2486c522cafdb0598c4"},"location":{"coordinates":[-73.916494,40.668587],"type":"Point"},"name":"Checkers"} +,{"_id":{"$oid":"55cba2486c522cafdb0598c5"},"location":{"coordinates":[-73.7315747,40.76014199999999],"type":"Point"},"name":"Joe'S Pizza \u0026 Pasta"} +,{"_id":{"$oid":"55cba2486c522cafdb0598c6"},"location":{"coordinates":[-73.85479099999999,40.726978],"type":"Point"},"name":"Myway Village Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb0598c7"},"location":{"coordinates":[-74.0969897,40.5830445],"type":"Point"},"name":"Jimmy John'S"} +,{"_id":{"$oid":"55cba2486c522cafdb0598c8"},"location":{"coordinates":[-73.9131373,40.63591359999999],"type":"Point"},"name":"Yummy Taco"} +,{"_id":{"$oid":"55cba2486c522cafdb0598c9"},"location":{"coordinates":[-73.9743749,40.7617135],"type":"Point"},"name":"The Polar Bar"} +,{"_id":{"$oid":"55cba2486c522cafdb0598ca"},"location":{"coordinates":[-73.950656,40.7438232],"type":"Point"},"name":"Mu He"} +,{"_id":{"$oid":"55cba2486c522cafdb0598cb"},"location":{"coordinates":[-73.9082799,40.8536981],"type":"Point"},"name":"Gaby Juice Box Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb0598cc"},"location":{"coordinates":[-73.98360679999999,40.6055581],"type":"Point"},"name":"Gyro Greek Style"} +,{"_id":{"$oid":"55cba2486c522cafdb0598cd"},"location":{"coordinates":[-73.80797729999999,40.7935544],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2486c522cafdb0598ce"},"location":{"coordinates":[-73.8311129,40.88834079999999],"type":"Point"},"name":"New York Chicken \u0026 Grill"} +,{"_id":{"$oid":"55cba2486c522cafdb0598cf"},"location":{"coordinates":[-73.967412,40.760951],"type":"Point"},"name":"Peets Coffee \u0026 Tea"} +,{"_id":{"$oid":"55cba2486c522cafdb0598d0"},"location":{"coordinates":[-73.8548404,40.70267219999999],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2486c522cafdb0598d1"},"location":{"coordinates":[-73.88473019999999,40.8738699],"type":"Point"},"name":"Ka Wah Chinese Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb0598d2"},"location":{"coordinates":[-73.938565,40.721084],"type":"Point"},"name":"Nha Minh"} +,{"_id":{"$oid":"55cba2486c522cafdb0598d3"},"location":{"coordinates":[-73.776014,40.709362],"type":"Point"},"name":"Michelle'S Deli And Coffee Shop"} +,{"_id":{"$oid":"55cba2486c522cafdb0598d4"},"location":{"coordinates":[-73.94095349999999,40.6174272],"type":"Point"},"name":"Olympic Pita"} +,{"_id":{"$oid":"55cba2486c522cafdb0598d5"},"location":{"coordinates":[-73.95808389999999,40.6458782],"type":"Point"},"name":"Spectrum Catering"} +,{"_id":{"$oid":"55cba2486c522cafdb0598d6"},"location":{"coordinates":[-73.9798589,40.7806195],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2486c522cafdb0598d7"},"location":{"coordinates":[-73.833787,40.758943],"type":"Point"},"name":"Twins Bar"} +,{"_id":{"$oid":"55cba2486c522cafdb0598d8"},"location":{"coordinates":[-74.0038541,40.7322226],"type":"Point"},"name":"Duet Brasserie"} +,{"_id":{"$oid":"55cba2486c522cafdb0598d9"},"location":{"coordinates":[-73.93069580000001,40.7648207],"type":"Point"},"name":"Arepas Grill"} +,{"_id":{"$oid":"55cba2486c522cafdb0598da"},"location":{"coordinates":[-73.9901478,40.7733326],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2486c522cafdb0598db"},"location":{"coordinates":[-73.9842542,40.7567933],"type":"Point"},"name":"Hunt \u0026 Fish Club Nyc"} +,{"_id":{"$oid":"55cba2486c522cafdb0598dc"},"location":{"coordinates":[-73.98079430000001,40.75315820000001],"type":"Point"},"name":"Zibetto Espresso Bar"} +,{"_id":{"$oid":"55cba2486c522cafdb0598dd"},"location":{"coordinates":[-73.95865599999999,40.598825],"type":"Point"},"name":"Ivy Seafood"} +,{"_id":{"$oid":"55cba2486c522cafdb0598de"},"location":{"coordinates":[-73.9064789,40.77471310000001],"type":"Point"},"name":"Astoria Pizza Factory"} +,{"_id":{"$oid":"55cba2486c522cafdb0598df"},"location":{"coordinates":[-73.98966899999999,40.713845],"type":"Point"},"name":"Misson Chinese Food"} +,{"_id":{"$oid":"55cba2486c522cafdb0598e0"},"location":{"coordinates":[-73.9635456,40.7746615],"type":"Point"},"name":"Kappo Masa"} +,{"_id":{"$oid":"55cba2486c522cafdb0598e1"},"location":{"coordinates":[-74.001325,40.6872619],"type":"Point"},"name":"Pok Pok Phat Thai"} +,{"_id":{"$oid":"55cba2486c522cafdb0598e2"},"location":{"coordinates":[-73.9278053,40.860717],"type":"Point"},"name":"Lux Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2486c522cafdb0598e3"},"location":{"coordinates":[-73.9254072,40.86152329999999],"type":"Point"},"name":"Golden Dragon Iii"} +,{"_id":{"$oid":"55cba2486c522cafdb0598e4"},"location":{"coordinates":[-73.9443785,40.7052012],"type":"Point"},"name":"19 Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb0598e5"},"location":{"coordinates":[-73.99794899999999,40.7178094],"type":"Point"},"name":"Beijing Pop Kabob Restaurant Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb0598e6"},"location":{"coordinates":[-73.9723831,40.7522366],"type":"Point"},"name":"99 Miles To Philly"} +,{"_id":{"$oid":"55cba2486c522cafdb0598e7"},"location":{"coordinates":[-73.903201,40.667932],"type":"Point"},"name":"Cafe Restaurant Corp"} +,{"_id":{"$oid":"55cba2486c522cafdb0598e8"},"location":{"coordinates":[-73.8748169,40.7507609],"type":"Point"},"name":"La Ruana Paisa"} +,{"_id":{"$oid":"55cba2486c522cafdb0598e9"},"location":{"coordinates":[-73.9916305,40.7247106],"type":"Point"},"name":"Ko Ep, Llc"} +,{"_id":{"$oid":"55cba2486c522cafdb0598ea"},"location":{"coordinates":[-73.82580800000001,40.751624],"type":"Point"},"name":"Kabab House"} +,{"_id":{"$oid":"55cba2486c522cafdb0598eb"},"location":{"coordinates":[-73.952681,40.777084],"type":"Point"},"name":"Eastside Cantina"} +,{"_id":{"$oid":"55cba2486c522cafdb0598ec"},"location":{"coordinates":[-73.82688569999999,40.7519411],"type":"Point"},"name":"Lao Ma Ma La Tang"} +,{"_id":{"$oid":"55cba2486c522cafdb0598ed"},"location":{"coordinates":[-73.9057086,40.8125356],"type":"Point"},"name":"Super Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2486c522cafdb0598ee"},"location":{"coordinates":[-73.97689670000001,40.6811402],"type":"Point"},"name":"The Chocolate Room Three"} +,{"_id":{"$oid":"55cba2486c522cafdb0598ef"},"location":{"coordinates":[-73.972736,40.590502],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2486c522cafdb0598f0"},"location":{"coordinates":[-73.9733219,40.75521750000001],"type":"Point"},"name":"Ashley'S Fine Foods"} +,{"_id":{"$oid":"55cba2486c522cafdb0598f1"},"location":{"coordinates":[-73.8835642,40.8417133],"type":"Point"},"name":"Tremont Pizza "} +,{"_id":{"$oid":"55cba2486c522cafdb0598f2"},"location":{"coordinates":[-73.9754828,40.7521662],"type":"Point"},"name":"Blank Rome"} +,{"_id":{"$oid":"55cba2486c522cafdb0598f3"},"location":{"coordinates":[-73.88991299999999,40.8254639],"type":"Point"},"name":"Mireli Restaurant Corp"} +,{"_id":{"$oid":"55cba2486c522cafdb0598f4"},"location":{"coordinates":[-73.82985590000001,40.88217960000001],"type":"Point"},"name":"Thruway Gourmet Llc"} +,{"_id":{"$oid":"55cba2486c522cafdb0598f5"},"location":{"coordinates":[-73.92848339999999,40.7631202],"type":"Point"},"name":"21+ Lounge."} +,{"_id":{"$oid":"55cba2486c522cafdb0598f6"},"location":{"coordinates":[-74.06762599999999,40.592104],"type":"Point"},"name":"Terminal One"} +,{"_id":{"$oid":"55cba2486c522cafdb0598f7"},"location":{"coordinates":[-73.8289779,40.8665658],"type":"Point"},"name":"Dq Grill \u0026 Chill"} +,{"_id":{"$oid":"55cba2486c522cafdb0598f8"},"location":{"coordinates":[-73.9099268,40.7054607],"type":"Point"},"name":"Onderdonk \u0026 Sons"} +,{"_id":{"$oid":"55cba2486c522cafdb0598f9"},"location":{"coordinates":[-73.89656269999999,40.70547819999999],"type":"Point"},"name":"Sweet Little Bakery"} +,{"_id":{"$oid":"55cba2486c522cafdb0598fa"},"location":{"coordinates":[-73.8289779,40.8665658],"type":"Point"},"name":"Impeccable Brews Bronx Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb0598fb"},"location":{"coordinates":[-73.8932789,40.7703262],"type":"Point"},"name":"Roma Deli"} +,{"_id":{"$oid":"55cba2486c522cafdb0598fc"},"location":{"coordinates":[-73.983256,40.728521],"type":"Point"},"name":"Quintessence Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb0598fd"},"location":{"coordinates":[-73.9211097,40.7561773],"type":"Point"},"name":"Latin Cabana"} +,{"_id":{"$oid":"55cba2486c522cafdb0598fe"},"location":{"coordinates":[-73.941814,40.5999436],"type":"Point"},"name":"Popeyes Chicken And Biscuits"} +,{"_id":{"$oid":"55cba2486c522cafdb0598ff"},"location":{"coordinates":[-73.8886532,40.6319689],"type":"Point"},"name":"Popeyes Chicken And Biscuits"} +,{"_id":{"$oid":"55cba2486c522cafdb059900"},"location":{"coordinates":[-74.066091,40.614366],"type":"Point"},"name":"J'S On The Bay"} +,{"_id":{"$oid":"55cba2486c522cafdb059901"},"location":{"coordinates":[-73.9723988,40.6934188],"type":"Point"},"name":"El Camino"} +,{"_id":{"$oid":"55cba2486c522cafdb059902"},"location":{"coordinates":[-73.8411318,40.6626647],"type":"Point"},"name":"Greek Grill"} +,{"_id":{"$oid":"55cba2486c522cafdb059903"},"location":{"coordinates":[-73.95315099999999,40.78813],"type":"Point"},"name":"New Nyc Yoan Ming Garden"} +,{"_id":{"$oid":"55cba2486c522cafdb059904"},"location":{"coordinates":[-73.9852422,40.7471677],"type":"Point"},"name":"Baekjeong"} +,{"_id":{"$oid":"55cba2486c522cafdb059905"},"location":{"coordinates":[-73.8733474,40.8785897],"type":"Point"},"name":"Kennedy'S Chicken \u0026 Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb059906"},"location":{"coordinates":[-73.9887284,40.770473],"type":"Point"},"name":"Li'L Jay'S Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb059907"},"location":{"coordinates":[-73.9443527,40.7472594],"type":"Point"},"name":"L.A. Pizzeria"} +,{"_id":{"$oid":"55cba2486c522cafdb059908"},"location":{"coordinates":[-73.9605613,40.6595299],"type":"Point"},"name":"Midwood Flats"} +,{"_id":{"$oid":"55cba2486c522cafdb059909"},"location":{"coordinates":[-73.956374,40.778804],"type":"Point"},"name":"Fresh \u0026 Co"} +,{"_id":{"$oid":"55cba2486c522cafdb05990a"},"location":{"coordinates":[-73.9812224,40.774571],"type":"Point"},"name":"Equinox Sports Club"} +,{"_id":{"$oid":"55cba2486c522cafdb05990b"},"location":{"coordinates":[-73.76628579999999,40.7035594],"type":"Point"},"name":"Seamorhen Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb05990c"},"location":{"coordinates":[-74.0018319,40.6786839],"type":"Point"},"name":"Maglia Rosa Bike Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb05990d"},"location":{"coordinates":[-73.983155,40.7651233],"type":"Point"},"name":"Lyfe Kitchen"} +,{"_id":{"$oid":"55cba2486c522cafdb05990e"},"location":{"coordinates":[-73.8330519,40.7587756],"type":"Point"},"name":"Xiangyi Noodle Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb05990f"},"location":{"coordinates":[-73.8330519,40.7587756],"type":"Point"},"name":"Szechuan Taste Hot And Spicy # 25"} +,{"_id":{"$oid":"55cba2486c522cafdb059910"},"location":{"coordinates":[-73.990882,40.599874],"type":"Point"},"name":"Shundeck Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059911"},"location":{"coordinates":[-73.9619036,40.6675708],"type":"Point"},"name":"The Atrium"} +,{"_id":{"$oid":"55cba2486c522cafdb059912"},"location":{"coordinates":[-73.91504499999999,40.870869],"type":"Point"},"name":"La Essencia Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059913"},"location":{"coordinates":[-73.9917157,40.7335563],"type":"Point"},"name":"Shuko"} +,{"_id":{"$oid":"55cba2486c522cafdb059914"},"location":{"coordinates":[-73.8855523,40.7476766],"type":"Point"},"name":"Pecoshitas Cafe Bakery"} +,{"_id":{"$oid":"55cba2486c522cafdb059915"},"location":{"coordinates":[-73.9557729,40.772977],"type":"Point"},"name":"Pil Pil Spanish Tapas Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb059916"},"location":{"coordinates":[-73.958167,40.681357],"type":"Point"},"name":"Juice It Health Bar"} +,{"_id":{"$oid":"55cba2486c522cafdb059917"},"location":{"coordinates":[-73.9933339,40.7150682],"type":"Point"},"name":"Super Taste"} +,{"_id":{"$oid":"55cba2486c522cafdb059918"},"location":{"coordinates":[-73.9740795,40.7478001],"type":"Point"},"name":"Saigon Baguette"} +,{"_id":{"$oid":"55cba2486c522cafdb059919"},"location":{"coordinates":[-73.832516,40.684436],"type":"Point"},"name":"Caribbean Style Bakery And Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb05991a"},"location":{"coordinates":[-73.9397357,40.7499414],"type":"Point"},"name":"Lucky Pizzeria \u0026 Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb05991b"},"location":{"coordinates":[-73.9619036,40.6675708],"type":"Point"},"name":"Yellow Magnolia"} +,{"_id":{"$oid":"55cba2486c522cafdb05991c"},"location":{"coordinates":[-73.78165969999999,40.6684997],"type":"Point"},"name":"Jfk Chicken Express"} +,{"_id":{"$oid":"55cba2486c522cafdb05991d"},"location":{"coordinates":[-74.1771342,40.5414275],"type":"Point"},"name":"833 Annadale Road Corp."} +,{"_id":{"$oid":"55cba2486c522cafdb05991e"},"location":{"coordinates":[-73.9779558,40.729206],"type":"Point"},"name":"M \u0026 J Asian Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb05991f"},"location":{"coordinates":[-73.9521685,40.7108642],"type":"Point"},"name":"Don Pancho Villa Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059920"},"location":{"coordinates":[-73.9569925,40.6742351],"type":"Point"},"name":"Banhmigos"} +,{"_id":{"$oid":"55cba2486c522cafdb059921"},"location":{"coordinates":[-74.09159369999999,40.5866932],"type":"Point"},"name":"Red Apple"} +,{"_id":{"$oid":"55cba2486c522cafdb059922"},"location":{"coordinates":[-73.85017789999999,40.8283095],"type":"Point"},"name":"1028 Bar \u0026 Restaurant El Salvadoreno "} +,{"_id":{"$oid":"55cba2486c522cafdb059923"},"location":{"coordinates":[-73.8265659,40.760188],"type":"Point"},"name":"T-Swirl Crepe"} +,{"_id":{"$oid":"55cba2486c522cafdb059924"},"location":{"coordinates":[-73.9333297,40.7100177],"type":"Point"},"name":"Arrogant Swine"} +,{"_id":{"$oid":"55cba2486c522cafdb059925"},"location":{"coordinates":[-73.92142419999999,40.86739379999999],"type":"Point"},"name":"U Like Chinese Take Out"} +,{"_id":{"$oid":"55cba2486c522cafdb059926"},"location":{"coordinates":[-73.7381079,40.694519],"type":"Point"},"name":"La Bouchee D'Or"} +,{"_id":{"$oid":"55cba2486c522cafdb059927"},"location":{"coordinates":[-73.746697,40.6959959],"type":"Point"},"name":"The Lighthouse Healthy Delicacies"} +,{"_id":{"$oid":"55cba2486c522cafdb059928"},"location":{"coordinates":[-73.9918727,40.7314177],"type":"Point"},"name":"Teavana #22994"} +,{"_id":{"$oid":"55cba2486c522cafdb059929"},"location":{"coordinates":[-73.95735730000001,40.7652215],"type":"Point"},"name":"Sophies Cuban Cuisine"} +,{"_id":{"$oid":"55cba2486c522cafdb05992a"},"location":{"coordinates":[-74.0094471,40.7366138],"type":"Point"},"name":"Il Conte"} +,{"_id":{"$oid":"55cba2486c522cafdb05992b"},"location":{"coordinates":[-73.9991483,40.7157209],"type":"Point"},"name":"Shangai Cuisine"} +,{"_id":{"$oid":"55cba2486c522cafdb05992c"},"location":{"coordinates":[-73.977251,40.7850197],"type":"Point"},"name":"Senn Thai Comfort Food"} +,{"_id":{"$oid":"55cba2486c522cafdb05992d"},"location":{"coordinates":[-73.8831972,40.7434057],"type":"Point"},"name":"Big Bear Bubble Tea"} +,{"_id":{"$oid":"55cba2486c522cafdb05992e"},"location":{"coordinates":[-73.910033,40.7753],"type":"Point"},"name":"Caffe Bene"} +,{"_id":{"$oid":"55cba2486c522cafdb05992f"},"location":{"coordinates":[-74.0985281,40.6338468],"type":"Point"},"name":"S\u0026S Pizzeria Corp"} +,{"_id":{"$oid":"55cba2486c522cafdb059930"},"location":{"coordinates":[-74.0104637,40.7281505],"type":"Point"},"name":"Bloomberg Pantry"} +,{"_id":{"$oid":"55cba2486c522cafdb059931"},"location":{"coordinates":[-74.1055512,40.6179186],"type":"Point"},"name":"Th Stone House At Clove Lakes"} +,{"_id":{"$oid":"55cba2486c522cafdb059932"},"location":{"coordinates":[-73.943096,40.692551],"type":"Point"},"name":"Simple Pleasures Caf"} +,{"_id":{"$oid":"55cba2486c522cafdb059933"},"location":{"coordinates":[-73.7900095,40.7118567],"type":"Point"},"name":"Ghoroa Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059934"},"location":{"coordinates":[-73.9823608,40.7423891],"type":"Point"},"name":"Haandi"} +,{"_id":{"$oid":"55cba2486c522cafdb059935"},"location":{"coordinates":[-74.0084111,40.656469],"type":"Point"},"name":"Recafo (Real Caribbean Food) Llc"} +,{"_id":{"$oid":"55cba2486c522cafdb059936"},"location":{"coordinates":[-73.9862038,40.747189],"type":"Point"},"name":"Ddm Yujpdduk Corp"} +,{"_id":{"$oid":"55cba2486c522cafdb059937"},"location":{"coordinates":[-73.966818,40.763661],"type":"Point"},"name":"August"} +,{"_id":{"$oid":"55cba2486c522cafdb059938"},"location":{"coordinates":[-74.0675461,40.6171801],"type":"Point"},"name":"Pronto Pizza Pasta"} +,{"_id":{"$oid":"55cba2486c522cafdb059939"},"location":{"coordinates":[-73.814735,40.755339],"type":"Point"},"name":"Pionner Cuisine Dumpling \u0026 Noodles"} +,{"_id":{"$oid":"55cba2486c522cafdb05993a"},"location":{"coordinates":[-73.89112589999999,40.8211194],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2486c522cafdb05993b"},"location":{"coordinates":[-73.77250099999999,40.7597909],"type":"Point"},"name":"Beannbean Coffee"} +,{"_id":{"$oid":"55cba2486c522cafdb05993c"},"location":{"coordinates":[-73.923379,40.812827],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2486c522cafdb05993d"},"location":{"coordinates":[-73.9888088,40.7541689],"type":"Point"},"name":"Cafe Grumpy"} +,{"_id":{"$oid":"55cba2486c522cafdb05993e"},"location":{"coordinates":[-73.9908228,40.7557855],"type":"Point"},"name":"Hummus And Pita Co"} +,{"_id":{"$oid":"55cba2486c522cafdb05993f"},"location":{"coordinates":[-73.736234,40.693651],"type":"Point"},"name":"Great Dragon Chinese Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059940"},"location":{"coordinates":[-74.0096329,40.642717],"type":"Point"},"name":"Goody Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059941"},"location":{"coordinates":[-74.00702,40.739143],"type":"Point"},"name":"Champion Coffee"} +,{"_id":{"$oid":"55cba2486c522cafdb059942"},"location":{"coordinates":[-74.00702,40.739143],"type":"Point"},"name":"Bruffin Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb059943"},"location":{"coordinates":[-73.8707435,40.8967624],"type":"Point"},"name":"Hideout Tavern"} +,{"_id":{"$oid":"55cba2486c522cafdb059944"},"location":{"coordinates":[-73.87011,40.684019],"type":"Point"},"name":"Antojitos Ecuatorianos"} +,{"_id":{"$oid":"55cba2486c522cafdb059945"},"location":{"coordinates":[-73.8428717,40.71932959999999],"type":"Point"},"name":"Red Pipe Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb059946"},"location":{"coordinates":[-73.7534199,40.68041960000001],"type":"Point"},"name":"Papa Johns Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb059947"},"location":{"coordinates":[-73.960927,40.714548],"type":"Point"},"name":"Billet And Bellows"} +,{"_id":{"$oid":"55cba2486c522cafdb059948"},"location":{"coordinates":[-73.957853,40.782596],"type":"Point"},"name":"Via Quadronno"} +,{"_id":{"$oid":"55cba2486c522cafdb059949"},"location":{"coordinates":[-73.99528800000002,40.7247083],"type":"Point"},"name":"Chefs Club By Food \u0026 Wine"} +,{"_id":{"$oid":"55cba2486c522cafdb05994a"},"location":{"coordinates":[-73.9896868,40.718728],"type":"Point"},"name":"Bruffin Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb05994b"},"location":{"coordinates":[-73.92343,40.644557],"type":"Point"},"name":"Suede"} +,{"_id":{"$oid":"55cba2486c522cafdb05994c"},"location":{"coordinates":[-74.1297015,40.6122592],"type":"Point"},"name":"Tasty Kingdom Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb05994d"},"location":{"coordinates":[-74.0020334,40.7381167],"type":"Point"},"name":"Rossopomodoro"} +,{"_id":{"$oid":"55cba2486c522cafdb05994e"},"location":{"coordinates":[-73.8889354,40.65738109999999],"type":"Point"},"name":"Differentia Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb05994f"},"location":{"coordinates":[-73.87025299999999,40.6502743],"type":"Point"},"name":"Buffalo Wild Wings Grill And Bar"} +,{"_id":{"$oid":"55cba2486c522cafdb059950"},"location":{"coordinates":[-73.93418150000001,40.8027508],"type":"Point"},"name":"Lechonera La Isla"} +,{"_id":{"$oid":"55cba2486c522cafdb059951"},"location":{"coordinates":[-73.900116,40.7315562],"type":"Point"},"name":"Slide Bar-B-Q"} +,{"_id":{"$oid":"55cba2486c522cafdb059952"},"location":{"coordinates":[-73.82084499999999,40.687756],"type":"Point"},"name":"Shashi Sherman"} +,{"_id":{"$oid":"55cba2486c522cafdb059953"},"location":{"coordinates":[-73.90341099999999,40.657015],"type":"Point"},"name":"Orange Taste Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb059954"},"location":{"coordinates":[-73.9834455,40.7522408],"type":"Point"},"name":"Savory"} +,{"_id":{"$oid":"55cba2486c522cafdb059955"},"location":{"coordinates":[-73.9666395,40.761062],"type":"Point"},"name":"Upper Story By Charlie Palmer"} +,{"_id":{"$oid":"55cba2486c522cafdb059956"},"location":{"coordinates":[-73.9139431,40.70809029999999],"type":"Point"},"name":"Buttah"} +,{"_id":{"$oid":"55cba2486c522cafdb059957"},"location":{"coordinates":[-73.9824714,40.7470071],"type":"Point"},"name":"Open Kitchen"} +,{"_id":{"$oid":"55cba2486c522cafdb059958"},"location":{"coordinates":[-73.9210346,40.6103453],"type":"Point"},"name":"Auntie Anne'S Kiosk"} +,{"_id":{"$oid":"55cba2486c522cafdb059959"},"location":{"coordinates":[-73.9848633,40.7288469],"type":"Point"},"name":"Pinks"} +,{"_id":{"$oid":"55cba2486c522cafdb05995a"},"location":{"coordinates":[-73.8599163,40.8377613],"type":"Point"},"name":"Starbucks Coffee #21514"} +,{"_id":{"$oid":"55cba2486c522cafdb05995b"},"location":{"coordinates":[-73.8707575,40.7262875],"type":"Point"},"name":"King Garden"} +,{"_id":{"$oid":"55cba2486c522cafdb05995c"},"location":{"coordinates":[-73.9974074,40.7176376],"type":"Point"},"name":"Paris Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb05995d"},"location":{"coordinates":[-73.8673621,40.8718432],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2486c522cafdb05995e"},"location":{"coordinates":[-73.9246344,40.7613105],"type":"Point"},"name":"Rsv Corp"} +,{"_id":{"$oid":"55cba2486c522cafdb05995f"},"location":{"coordinates":[-73.9827407,40.7419261],"type":"Point"},"name":"Lahori Chicken Tikka Masala Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb059960"},"location":{"coordinates":[-73.8110609,40.7659018],"type":"Point"},"name":"Jagalchi Sushi Two Corp"} +,{"_id":{"$oid":"55cba2486c522cafdb059961"},"location":{"coordinates":[-73.8993748,40.8592011],"type":"Point"},"name":"Great Wall Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059962"},"location":{"coordinates":[-73.963289,40.71709],"type":"Point"},"name":"The Heyward"} +,{"_id":{"$oid":"55cba2486c522cafdb059963"},"location":{"coordinates":[-73.992471,40.7511286],"type":"Point"},"name":"Rose Pizza, Charlie Sub Grill, Moe'S Southwest Grill"} +,{"_id":{"$oid":"55cba2486c522cafdb059964"},"location":{"coordinates":[-73.85152190000001,40.6940748],"type":"Point"},"name":"Evacha'S Coffee Shop"} +,{"_id":{"$oid":"55cba2486c522cafdb059965"},"location":{"coordinates":[-74.00782699999999,40.647151],"type":"Point"},"name":"Checkers Drive In Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059966"},"location":{"coordinates":[-74.0023073,40.7349493],"type":"Point"},"name":"Toby'S Estate Coffee West Village"} +,{"_id":{"$oid":"55cba2486c522cafdb059967"},"location":{"coordinates":[-74.1830026,40.5664155],"type":"Point"},"name":"Paradise Restaurant Inc."} +,{"_id":{"$oid":"55cba2486c522cafdb059968"},"location":{"coordinates":[-73.9824637,40.7463337],"type":"Point"},"name":"Crumbs Bake Shop"} +,{"_id":{"$oid":"55cba2486c522cafdb059969"},"location":{"coordinates":[-73.987864,40.752872],"type":"Point"},"name":"Crumbs Bake Shop"} +,{"_id":{"$oid":"55cba2486c522cafdb05996a"},"location":{"coordinates":[-73.989437,40.7570944],"type":"Point"},"name":"Crumbs Bake Shop"} +,{"_id":{"$oid":"55cba2486c522cafdb05996b"},"location":{"coordinates":[-73.9726117,40.7930555],"type":"Point"},"name":"Crumbs Bake Shop"} +,{"_id":{"$oid":"55cba2486c522cafdb05996c"},"location":{"coordinates":[-73.96336699999999,40.674166],"type":"Point"},"name":"Mrs. Dorsey'S Kitchen"} +,{"_id":{"$oid":"55cba2486c522cafdb05996d"},"location":{"coordinates":[-74.011808,40.7059085],"type":"Point"},"name":"Crumbs Bake Shop"} +,{"_id":{"$oid":"55cba2486c522cafdb05996e"},"location":{"coordinates":[-73.9833072,40.7630411],"type":"Point"},"name":"Crumbs Bake Shop"} +,{"_id":{"$oid":"55cba2486c522cafdb05996f"},"location":{"coordinates":[-73.969549,40.758023],"type":"Point"},"name":"Crumbs Bake Shop"} +,{"_id":{"$oid":"55cba2486c522cafdb059970"},"location":{"coordinates":[-73.982175,40.679714],"type":"Point"},"name":"Threes New Brewing"} +,{"_id":{"$oid":"55cba2486c522cafdb059971"},"location":{"coordinates":[-73.989555,40.729532],"type":"Point"},"name":"Korilla East Village"} +,{"_id":{"$oid":"55cba2486c522cafdb059972"},"location":{"coordinates":[-73.9299348,40.866857],"type":"Point"},"name":"This Pie Is Nuts"} +,{"_id":{"$oid":"55cba2486c522cafdb059973"},"location":{"coordinates":[-73.9275006,40.76325569999999],"type":"Point"},"name":"Fatima Halal Kitchen Astoria Corp"} +,{"_id":{"$oid":"55cba2486c522cafdb059974"},"location":{"coordinates":[-73.9884606,40.7453095],"type":"Point"},"name":"Dig Inn Seasonal Market"} +,{"_id":{"$oid":"55cba2486c522cafdb059975"},"location":{"coordinates":[-73.95279699999999,40.727849],"type":"Point"},"name":"Italy Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb059976"},"location":{"coordinates":[-74.108763,40.581912],"type":"Point"},"name":"Nuccis"} +,{"_id":{"$oid":"55cba2486c522cafdb059977"},"location":{"coordinates":[-74.118042,40.563689],"type":"Point"},"name":"Nuccis"} +,{"_id":{"$oid":"55cba2486c522cafdb059978"},"location":{"coordinates":[-74.007282,40.7329392],"type":"Point"},"name":"Night Hawks"} +,{"_id":{"$oid":"55cba2486c522cafdb059979"},"location":{"coordinates":[-73.89290199999999,40.814868],"type":"Point"},"name":"Milly'S Corner Restaurant And Bar"} +,{"_id":{"$oid":"55cba2486c522cafdb05997a"},"location":{"coordinates":[-74.1424059,40.62451],"type":"Point"},"name":"O'Neill'S Restaurant \u0026 Bar"} +,{"_id":{"$oid":"55cba2486c522cafdb05997b"},"location":{"coordinates":[-73.9973693,40.6788897],"type":"Point"},"name":"Seeds Of Love"} +,{"_id":{"$oid":"55cba2486c522cafdb05997c"},"location":{"coordinates":[-73.91419499999999,40.743385],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2486c522cafdb05997d"},"location":{"coordinates":[-74.007916,40.725612],"type":"Point"},"name":"Adoro Lei "} +,{"_id":{"$oid":"55cba2486c522cafdb05997e"},"location":{"coordinates":[-74.1108052,40.6349044],"type":"Point"},"name":"The Famous Billy'S Pizza \u0026 Pasta"} +,{"_id":{"$oid":"55cba2486c522cafdb05997f"},"location":{"coordinates":[-73.9692252,40.5758984],"type":"Point"},"name":"Vis-A-Vis"} +,{"_id":{"$oid":"55cba2486c522cafdb059980"},"location":{"coordinates":[-73.9909028,40.7654228],"type":"Point"},"name":"City Slice"} +,{"_id":{"$oid":"55cba2486c522cafdb059981"},"location":{"coordinates":[-73.947902,40.6325],"type":"Point"},"name":"Dallas Bbq"} +,{"_id":{"$oid":"55cba2486c522cafdb059982"},"location":{"coordinates":[-73.984572,40.662886],"type":"Point"},"name":"Hua Lumphong"} +,{"_id":{"$oid":"55cba2486c522cafdb059983"},"location":{"coordinates":[-73.9508795,40.7233342],"type":"Point"},"name":"Fortune Cookies"} +,{"_id":{"$oid":"55cba2486c522cafdb059984"},"location":{"coordinates":[-73.8661771,40.85948],"type":"Point"},"name":"Astor Chicken \u0026 Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb059985"},"location":{"coordinates":[-73.9659032,40.76497519999999],"type":"Point"},"name":"Corrado Bread \u0026 Pastry Shop"} +,{"_id":{"$oid":"55cba2486c522cafdb059986"},"location":{"coordinates":[-73.9384185,40.8169908],"type":"Point"},"name":"Don Rico Pollo Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059987"},"location":{"coordinates":[-73.9143362,40.8332387],"type":"Point"},"name":"El Nuevo Valle Restaurant \u0026 Lechonera Corp."} +,{"_id":{"$oid":"55cba2486c522cafdb059988"},"location":{"coordinates":[-73.8706998,40.6659012],"type":"Point"},"name":"Divine Flavored"} +,{"_id":{"$oid":"55cba2486c522cafdb059989"},"location":{"coordinates":[-73.8888877,40.6337424],"type":"Point"},"name":"Richard'S Diner And Catering"} +,{"_id":{"$oid":"55cba2486c522cafdb05998a"},"location":{"coordinates":[-73.9409557,40.7976269],"type":"Point"},"name":"Pinole"} +,{"_id":{"$oid":"55cba2486c522cafdb05998b"},"location":{"coordinates":[-73.923784,40.809785],"type":"Point"},"name":"Pizzeria Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb05998c"},"location":{"coordinates":[-73.8955052,40.7362956],"type":"Point"},"name":"Royal Elite Palace Caterers Llc"} +,{"_id":{"$oid":"55cba2486c522cafdb05998d"},"location":{"coordinates":[-73.9244897,40.6087856],"type":"Point"},"name":"New Bamboo House"} +,{"_id":{"$oid":"55cba2486c522cafdb05998e"},"location":{"coordinates":[-73.9145157,40.7011561],"type":"Point"},"name":"D' Montazo Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb05998f"},"location":{"coordinates":[-73.8330519,40.7587756],"type":"Point"},"name":"Peng Shun Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059990"},"location":{"coordinates":[-74.004038,40.644577],"type":"Point"},"name":"Chens Sweet Dream Bakery"} +,{"_id":{"$oid":"55cba2486c522cafdb059991"},"location":{"coordinates":[-74.001229,40.643782],"type":"Point"},"name":"Liu Liu Seafood Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059992"},"location":{"coordinates":[-73.9460983,40.8198576],"type":"Point"},"name":"The Edge"} +,{"_id":{"$oid":"55cba2486c522cafdb059993"},"location":{"coordinates":[-74.0030701,40.7240067],"type":"Point"},"name":"Sixty Thompson"} +,{"_id":{"$oid":"55cba2486c522cafdb059994"},"location":{"coordinates":[-73.98952609999999,40.7507917],"type":"Point"},"name":"Pinkberry/Auntie Anne'S @ Macy'S"} +,{"_id":{"$oid":"55cba2486c522cafdb059995"},"location":{"coordinates":[-73.8201193,40.5984465],"type":"Point"},"name":"Rock N Roll Bagel"} +,{"_id":{"$oid":"55cba2486c522cafdb059996"},"location":{"coordinates":[-73.94301670000002,40.6923198],"type":"Point"},"name":"Burly Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb059997"},"location":{"coordinates":[-73.8778906,40.6474098],"type":"Point"},"name":"Brooklyn Healthy Juice Bar"} +,{"_id":{"$oid":"55cba2486c522cafdb059998"},"location":{"coordinates":[-73.97579120000002,40.7493151],"type":"Point"},"name":"Shake Shack"} +,{"_id":{"$oid":"55cba2486c522cafdb059999"},"location":{"coordinates":[-73.9891044,40.7227167],"type":"Point"},"name":"Vivi Bubble Tea"} +,{"_id":{"$oid":"55cba2486c522cafdb05999a"},"location":{"coordinates":[-73.9397855,40.8157361],"type":"Point"},"name":"Miss Maude'S"} +,{"_id":{"$oid":"55cba2486c522cafdb05999b"},"location":{"coordinates":[-73.95620319999999,40.81383470000001],"type":"Point"},"name":"Delicias Plater Bar And Grill Inc."} +,{"_id":{"$oid":"55cba2486c522cafdb05999c"},"location":{"coordinates":[-73.8829228,40.7560748],"type":"Point"},"name":"Original Mamas Empanadas"} +,{"_id":{"$oid":"55cba2486c522cafdb05999d"},"location":{"coordinates":[-73.9939151,40.7359258],"type":"Point"},"name":"Rosa'S Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb05999e"},"location":{"coordinates":[-73.9860073,40.7505175],"type":"Point"},"name":"Holiday Inn Express Manhattan Time Square South"} +,{"_id":{"$oid":"55cba2486c522cafdb05999f"},"location":{"coordinates":[-73.97221789999999,40.750918],"type":"Point"},"name":"Hampton Inn, United Nations"} +,{"_id":{"$oid":"55cba2486c522cafdb0599a0"},"location":{"coordinates":[-73.8330519,40.7587756],"type":"Point"},"name":"Happy Lemon"} +,{"_id":{"$oid":"55cba2486c522cafdb0599a1"},"location":{"coordinates":[-73.9420178,40.6757958],"type":"Point"},"name":"Git-It-N-Git"} +,{"_id":{"$oid":"55cba2486c522cafdb0599a2"},"location":{"coordinates":[-73.86560759999999,40.7529721],"type":"Point"},"name":"Azoguenita Bakery \u0026 Restaurant Iii"} +,{"_id":{"$oid":"55cba2486c522cafdb0599a3"},"location":{"coordinates":[-73.9435726,40.78846],"type":"Point"},"name":"Jfk Fried Chicken And Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb0599a4"},"location":{"coordinates":[-73.8609908,40.75033],"type":"Point"},"name":"El Manatial Restaurant \u0026 Bar"} +,{"_id":{"$oid":"55cba2486c522cafdb0599a5"},"location":{"coordinates":[-73.7336661,40.7469414],"type":"Point"},"name":"Catholic Diocese Of Brooklyn"} +,{"_id":{"$oid":"55cba2486c522cafdb0599a6"},"location":{"coordinates":[-73.8971059,40.6487896],"type":"Point"},"name":"Golden Wok"} +,{"_id":{"$oid":"55cba2486c522cafdb0599a7"},"location":{"coordinates":[-73.9945321,40.7119999],"type":"Point"},"name":"Jes Coffee"} +,{"_id":{"$oid":"55cba2486c522cafdb0599a8"},"location":{"coordinates":[-73.9141693,40.7278235],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2486c522cafdb0599a9"},"location":{"coordinates":[-73.9890601,40.7310991],"type":"Point"},"name":"Saki"} +,{"_id":{"$oid":"55cba2486c522cafdb0599aa"},"location":{"coordinates":[-74.0031094,40.7299024],"type":"Point"},"name":"Bada Garden, Llc"} +,{"_id":{"$oid":"55cba2486c522cafdb0599ab"},"location":{"coordinates":[-73.9195104,40.7560666],"type":"Point"},"name":"Spatharico Group Llc"} +,{"_id":{"$oid":"55cba2486c522cafdb0599ac"},"location":{"coordinates":[-73.9253064,40.8636575],"type":"Point"},"name":"7 Tacos Mexican Cuisine Corp"} +,{"_id":{"$oid":"55cba2486c522cafdb0599ad"},"location":{"coordinates":[-73.9423348,40.8328774],"type":"Point"},"name":"Tang'S Luck Garden"} +,{"_id":{"$oid":"55cba2486c522cafdb0599ae"},"location":{"coordinates":[-73.98924219999999,40.7574272],"type":"Point"},"name":"Westin Hotel Shula'S Steak And Bar 10"} +,{"_id":{"$oid":"55cba2486c522cafdb0599af"},"location":{"coordinates":[-73.739334,40.659853],"type":"Point"},"name":"Creole Buffet 4 Llc"} +,{"_id":{"$oid":"55cba2486c522cafdb0599b0"},"location":{"coordinates":[-73.88356279999999,40.88070520000001],"type":"Point"},"name":"Twin Donut Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb0599b1"},"location":{"coordinates":[-73.98818299999999,40.688511],"type":"Point"},"name":"Boomwich"} +,{"_id":{"$oid":"55cba2486c522cafdb0599b2"},"location":{"coordinates":[-74.12545089999999,40.63391],"type":"Point"},"name":"New Taqueria Puebla"} +,{"_id":{"$oid":"55cba2486c522cafdb0599b3"},"location":{"coordinates":[-73.8103005,40.7643006],"type":"Point"},"name":"Chang'S Family Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb0599b4"},"location":{"coordinates":[-73.9666342,40.5992285],"type":"Point"},"name":"Shaare Zion Caterers"} +,{"_id":{"$oid":"55cba2486c522cafdb0599b5"},"location":{"coordinates":[-73.8434039,40.8623051],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2486c522cafdb0599b6"},"location":{"coordinates":[-73.92155040000002,40.7451154],"type":"Point"},"name":"Golden Wok Rc Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb0599b7"},"location":{"coordinates":[-74.0253719,40.6233869],"type":"Point"},"name":"Soho Cafe \u0026 Grill"} +,{"_id":{"$oid":"55cba2486c522cafdb0599b8"},"location":{"coordinates":[-73.9311372,40.7714154],"type":"Point"},"name":"Don Restaurant Group Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb0599b9"},"location":{"coordinates":[-73.9385181,40.8508499],"type":"Point"},"name":"Great Wall"} +,{"_id":{"$oid":"55cba2486c522cafdb0599ba"},"location":{"coordinates":[-73.96631719999999,40.6932384],"type":"Point"},"name":"Brooklyn Eats On Myrtle"} +,{"_id":{"$oid":"55cba2486c522cafdb0599bb"},"location":{"coordinates":[-73.92245900000002,40.699139],"type":"Point"},"name":"The Coffee Shop"} +,{"_id":{"$oid":"55cba2486c522cafdb0599bc"},"location":{"coordinates":[-73.8318819,40.7614055],"type":"Point"},"name":"Happy Buddha Veg 2 Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb0599bd"},"location":{"coordinates":[-74.1348058,40.6356708],"type":"Point"},"name":"Hossty Housy "} +,{"_id":{"$oid":"55cba2486c522cafdb0599be"},"location":{"coordinates":[-73.8330519,40.7587756],"type":"Point"},"name":"Joyful Yummy House"} +,{"_id":{"$oid":"55cba2486c522cafdb0599bf"},"location":{"coordinates":[-73.869939,40.750577],"type":"Point"},"name":"Dq Grill \u0026 Chill"} +,{"_id":{"$oid":"55cba2486c522cafdb0599c0"},"location":{"coordinates":[-73.8345533,40.7593283],"type":"Point"},"name":"Regent Catering, Inc."} +,{"_id":{"$oid":"55cba2486c522cafdb0599c1"},"location":{"coordinates":[-73.9971209,40.7444167],"type":"Point"},"name":"El Quijote"} +,{"_id":{"$oid":"55cba2486c522cafdb0599c2"},"location":{"coordinates":[-74.119849,40.6342472],"type":"Point"},"name":"Rosticeria Los Charritos"} +,{"_id":{"$oid":"55cba2486c522cafdb0599c3"},"location":{"coordinates":[-73.962868,40.68682],"type":"Point"},"name":"The Finch"} +,{"_id":{"$oid":"55cba2486c522cafdb0599c4"},"location":{"coordinates":[-73.964751,40.75680699999999],"type":"Point"},"name":"Sutton Inn"} +,{"_id":{"$oid":"55cba2486c522cafdb0599c5"},"location":{"coordinates":[-73.8330519,40.7587756],"type":"Point"},"name":"Chicken Noodle"} +,{"_id":{"$oid":"55cba2486c522cafdb0599c6"},"location":{"coordinates":[-73.8330519,40.7587756],"type":"Point"},"name":"Yoyo Dessert# 6"} +,{"_id":{"$oid":"55cba2486c522cafdb0599c7"},"location":{"coordinates":[-73.9116707,40.8476317],"type":"Point"},"name":"Galagala Ny Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb0599c8"},"location":{"coordinates":[-73.9160411,40.6591795],"type":"Point"},"name":"Island Vibes"} +,{"_id":{"$oid":"55cba2486c522cafdb0599c9"},"location":{"coordinates":[-73.9227813,40.8087036],"type":"Point"},"name":"232 Willis Avenue Foods, Llc"} +,{"_id":{"$oid":"55cba2486c522cafdb0599ca"},"location":{"coordinates":[-74.0074727,40.7108372],"type":"Point"},"name":"Da Claudio"} +,{"_id":{"$oid":"55cba2486c522cafdb0599cb"},"location":{"coordinates":[-73.9391488,40.8445378],"type":"Point"},"name":"Empanadas Monumental"} +,{"_id":{"$oid":"55cba2486c522cafdb0599cc"},"location":{"coordinates":[-73.9163643,40.7643034],"type":"Point"},"name":"Butcher Bar"} +,{"_id":{"$oid":"55cba2486c522cafdb0599cd"},"location":{"coordinates":[-73.8889032,40.85378559999999],"type":"Point"},"name":"Magic Twists House Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb0599ce"},"location":{"coordinates":[-73.94826669999999,40.814616],"type":"Point"},"name":"Rose Seeds"} +,{"_id":{"$oid":"55cba2486c522cafdb0599cf"},"location":{"coordinates":[-73.9847779,40.7716826],"type":"Point"},"name":"Bonmi"} +,{"_id":{"$oid":"55cba2486c522cafdb0599d0"},"location":{"coordinates":[-73.9953523,40.7450809],"type":"Point"},"name":"Kikka At Whole Foods Chelsea"} +,{"_id":{"$oid":"55cba2486c522cafdb0599d1"},"location":{"coordinates":[-73.754424,40.7134835],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2486c522cafdb0599d2"},"location":{"coordinates":[-74.12298910000001,40.6294222],"type":"Point"},"name":"Lsj Pizza Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb0599d3"},"location":{"coordinates":[-73.8355869,40.7513839],"type":"Point"},"name":"Forbidden City Ny Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb0599d4"},"location":{"coordinates":[-73.9801835,40.7554546],"type":"Point"},"name":"Starbucks Coffee#7462"} +,{"_id":{"$oid":"55cba2486c522cafdb0599d5"},"location":{"coordinates":[-73.9555402,40.7772478],"type":"Point"},"name":"Juice Press 23, Llc"} +,{"_id":{"$oid":"55cba2486c522cafdb0599d6"},"location":{"coordinates":[-73.9798805,40.6772324],"type":"Point"},"name":"Nunu Chocolates"} +,{"_id":{"$oid":"55cba2486c522cafdb0599d7"},"location":{"coordinates":[-73.87276279999999,40.8241705],"type":"Point"},"name":"Jade Joy"} +,{"_id":{"$oid":"55cba2486c522cafdb0599d8"},"location":{"coordinates":[-73.951064,40.802915],"type":"Point"},"name":"Harlem Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb0599d9"},"location":{"coordinates":[-73.98953929999999,40.72911560000001],"type":"Point"},"name":"Barcade"} +,{"_id":{"$oid":"55cba2486c522cafdb0599da"},"location":{"coordinates":[-73.9385212,40.7938762],"type":"Point"},"name":"East Harlem Italian Iceys And Ice Cream"} +,{"_id":{"$oid":"55cba2486c522cafdb0599db"},"location":{"coordinates":[-74.000776,40.742705],"type":"Point"},"name":"Coopers Craft And Kitchen"} +,{"_id":{"$oid":"55cba2486c522cafdb0599dc"},"location":{"coordinates":[-73.91092549999999,40.7045986],"type":"Point"},"name":"Milo'S Yard"} +,{"_id":{"$oid":"55cba2486c522cafdb0599dd"},"location":{"coordinates":[-73.854946,40.75157],"type":"Point"},"name":"Carmen'S Lunch"} +,{"_id":{"$oid":"55cba2486c522cafdb0599de"},"location":{"coordinates":[-73.99096899999999,40.663927],"type":"Point"},"name":"The Stoop"} +,{"_id":{"$oid":"55cba2486c522cafdb0599df"},"location":{"coordinates":[-74.00206159999999,40.7345251],"type":"Point"},"name":"002 Mercury Tacos Llc"} +,{"_id":{"$oid":"55cba2486c522cafdb0599e0"},"location":{"coordinates":[-73.94090899999999,40.708497],"type":"Point"},"name":"Champs Diner"} +,{"_id":{"$oid":"55cba2486c522cafdb0599e1"},"location":{"coordinates":[-73.8330519,40.7587756],"type":"Point"},"name":"Gladly Cuisine # 15"} +,{"_id":{"$oid":"55cba2486c522cafdb0599e2"},"location":{"coordinates":[-73.97579200000001,40.6747108],"type":"Point"},"name":"168 Asuka Sushi"} +,{"_id":{"$oid":"55cba2486c522cafdb0599e3"},"location":{"coordinates":[-73.736288,40.733174],"type":"Point"},"name":"Chick Inn Corporation"} +,{"_id":{"$oid":"55cba2486c522cafdb0599e4"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2486c522cafdb0599e5"},"location":{"coordinates":[-73.8364209,40.8234943],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2486c522cafdb0599e6"},"location":{"coordinates":[-73.9030476,40.8784024],"type":"Point"},"name":"Thegrace Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb0599e7"},"location":{"coordinates":[-73.94424699999999,40.600409],"type":"Point"},"name":"Kavkazkiy Dvorik"} +,{"_id":{"$oid":"55cba2486c522cafdb0599e8"},"location":{"coordinates":[-73.89073429999999,40.7473314],"type":"Point"},"name":"King Cart Ny Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb0599e9"},"location":{"coordinates":[-73.85050199999999,40.8285333],"type":"Point"},"name":"New Soul Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb0599ea"},"location":{"coordinates":[-73.8661517,40.6757086],"type":"Point"},"name":"Crown Fried Chicken"} +,{"_id":{"$oid":"55cba2486c522cafdb0599eb"},"location":{"coordinates":[-73.945672,40.7923029],"type":"Point"},"name":"Blue Coco"} +,{"_id":{"$oid":"55cba2486c522cafdb0599ec"},"location":{"coordinates":[-73.99468200000001,40.6407],"type":"Point"},"name":"Aj Pizzeria"} +,{"_id":{"$oid":"55cba2486c522cafdb0599ed"},"location":{"coordinates":[-73.8330519,40.7587756],"type":"Point"},"name":"Panyo Bbq"} +,{"_id":{"$oid":"55cba2486c522cafdb0599ee"},"location":{"coordinates":[-74.09602,40.582786],"type":"Point"},"name":"Sharkey'S Square"} +,{"_id":{"$oid":"55cba2486c522cafdb0599ef"},"location":{"coordinates":[-74.0039702,40.7058642],"type":"Point"},"name":"El Luchador"} +,{"_id":{"$oid":"55cba2486c522cafdb0599f0"},"location":{"coordinates":[3.8538155,51.0260286],"type":"Point"},"name":"Hudson/Euro Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb0599f1"},"location":{"coordinates":[-73.771675,40.7643259],"type":"Point"},"name":"Il Vesuvio"} +,{"_id":{"$oid":"55cba2486c522cafdb0599f2"},"location":{"coordinates":[-73.8077667,40.8634281],"type":"Point"},"name":"Turtle Cove Golf Center"} +,{"_id":{"$oid":"55cba2486c522cafdb0599f3"},"location":{"coordinates":[-73.955876,40.690992],"type":"Point"},"name":"Endless Summer"} +,{"_id":{"$oid":"55cba2486c522cafdb0599f4"},"location":{"coordinates":[-74.0067,40.633456],"type":"Point"},"name":"Ipot Cafe Inc."} +,{"_id":{"$oid":"55cba2486c522cafdb0599f5"},"location":{"coordinates":[-73.80783029999999,40.7009133],"type":"Point"},"name":"Ny Pizza Grill \u0026 Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb0599f6"},"location":{"coordinates":[-73.9243376,40.756492],"type":"Point"},"name":"R\u0026S Coffee Shop"} +,{"_id":{"$oid":"55cba2486c522cafdb0599f7"},"location":{"coordinates":[-73.9176428,40.7619836],"type":"Point"},"name":"Fusion Juice Bar Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb0599f8"},"location":{"coordinates":[-73.956614,40.775589],"type":"Point"},"name":"Pizza Beach"} +,{"_id":{"$oid":"55cba2486c522cafdb0599f9"},"location":{"coordinates":[-73.9859105,40.7492349],"type":"Point"},"name":"Auntie Anne'S"} +,{"_id":{"$oid":"55cba2486c522cafdb0599fa"},"location":{"coordinates":[-73.8330519,40.7587756],"type":"Point"},"name":"Jb Crispy Pancake"} +,{"_id":{"$oid":"55cba2486c522cafdb0599fb"},"location":{"coordinates":[-73.95838599999999,40.7190055],"type":"Point"},"name":"George And Jacks"} +,{"_id":{"$oid":"55cba2486c522cafdb0599fc"},"location":{"coordinates":[-73.77131349999999,40.7654424],"type":"Point"},"name":"Aperitif Bayside Llc"} +,{"_id":{"$oid":"55cba2486c522cafdb0599fd"},"location":{"coordinates":[-74.1219048,40.6085365],"type":"Point"},"name":"Happy Fortune Ii"} +,{"_id":{"$oid":"55cba2486c522cafdb0599fe"},"location":{"coordinates":[-73.8330519,40.7587756],"type":"Point"},"name":"Yang Yang Noodle"} +,{"_id":{"$oid":"55cba2486c522cafdb0599ff"},"location":{"coordinates":[-73.97386639999999,40.7437485],"type":"Point"},"name":"Greek Gardens Grill"} +,{"_id":{"$oid":"55cba2486c522cafdb059a00"},"location":{"coordinates":[-73.986476,40.719281],"type":"Point"},"name":"Mazeish Grill"} +,{"_id":{"$oid":"55cba2486c522cafdb059a01"},"location":{"coordinates":[-73.9862038,40.747189],"type":"Point"},"name":"Oz Deli"} +,{"_id":{"$oid":"55cba2486c522cafdb059a02"},"location":{"coordinates":[-73.81134399999999,40.7645],"type":"Point"},"name":"Northern Sushi"} +,{"_id":{"$oid":"55cba2486c522cafdb059a03"},"location":{"coordinates":[-73.8330519,40.7587756],"type":"Point"},"name":"Slz # 14"} +,{"_id":{"$oid":"55cba2486c522cafdb059a04"},"location":{"coordinates":[-73.7738895,40.7685192],"type":"Point"},"name":"New Jade Sea"} +,{"_id":{"$oid":"55cba2486c522cafdb059a05"},"location":{"coordinates":[-73.8839933,40.8538917],"type":"Point"},"name":"Two Star Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059a06"},"location":{"coordinates":[-73.8500292,40.7249549],"type":"Point"},"name":"Tu Casa"} +,{"_id":{"$oid":"55cba2486c522cafdb059a07"},"location":{"coordinates":[-73.8330519,40.7587756],"type":"Point"},"name":"Hang # 16"} +,{"_id":{"$oid":"55cba2486c522cafdb059a08"},"location":{"coordinates":[-73.9401082,40.6604865],"type":"Point"},"name":"Lowkey Lounge Inc."} +,{"_id":{"$oid":"55cba2486c522cafdb059a09"},"location":{"coordinates":[-73.954847,40.746026],"type":"Point"},"name":"Cannelle Lic"} +,{"_id":{"$oid":"55cba2486c522cafdb059a0a"},"location":{"coordinates":[-73.98291019999999,40.7235456],"type":"Point"},"name":"Matcha Cafe Wabi"} +,{"_id":{"$oid":"55cba2486c522cafdb059a0b"},"location":{"coordinates":[-74.01157800000001,40.647798],"type":"Point"},"name":"New King Work Ny Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb059a0c"},"location":{"coordinates":[-74.0051979,40.628972],"type":"Point"},"name":"Ocean Xi Lounge Karaoke Inc."} +,{"_id":{"$oid":"55cba2486c522cafdb059a0d"},"location":{"coordinates":[-73.9602403,40.6077288],"type":"Point"},"name":"Teng Da "} +,{"_id":{"$oid":"55cba2486c522cafdb059a0e"},"location":{"coordinates":[-73.9813202,40.7367517],"type":"Point"},"name":"Malt And Mold"} +,{"_id":{"$oid":"55cba2486c522cafdb059a0f"},"location":{"coordinates":[-73.83176150000001,40.7150374],"type":"Point"},"name":"King Garden"} +,{"_id":{"$oid":"55cba2486c522cafdb059a10"},"location":{"coordinates":[-73.950633,40.671214],"type":"Point"},"name":"Vegetarian Choice Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059a11"},"location":{"coordinates":[-73.9365637,40.8201488],"type":"Point"},"name":"Jimbo'S Hamburgers"} +,{"_id":{"$oid":"55cba2486c522cafdb059a12"},"location":{"coordinates":[-73.9504151,40.6743447],"type":"Point"},"name":"Curry Garden"} +,{"_id":{"$oid":"55cba2486c522cafdb059a13"},"location":{"coordinates":[-74.031829,40.6223669],"type":"Point"},"name":"Bombay Grill"} +,{"_id":{"$oid":"55cba2486c522cafdb059a14"},"location":{"coordinates":[-73.990196,40.754352],"type":"Point"},"name":"Asian Time Eatery"} +,{"_id":{"$oid":"55cba2486c522cafdb059a15"},"location":{"coordinates":[-73.7578128,40.70592449999999],"type":"Point"},"name":"Hollis-Pj Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb059a16"},"location":{"coordinates":[-73.837656,40.82347600000001],"type":"Point"},"name":"Sarku Japan Teriyaki And Sushi Express"} +,{"_id":{"$oid":"55cba2486c522cafdb059a17"},"location":{"coordinates":[-73.9860813,40.75218599999999],"type":"Point"},"name":"Hibachi Dumpling"} +,{"_id":{"$oid":"55cba2486c522cafdb059a18"},"location":{"coordinates":[-74.005454,40.633473],"type":"Point"},"name":"Tbaar"} +,{"_id":{"$oid":"55cba2486c522cafdb059a19"},"location":{"coordinates":[-73.829437,40.757178],"type":"Point"},"name":"Lao Ma Spicy"} +,{"_id":{"$oid":"55cba2486c522cafdb059a1a"},"location":{"coordinates":[-74.00702,40.739143],"type":"Point"},"name":"Tacombi At Ganesvoort Market"} +,{"_id":{"$oid":"55cba2486c522cafdb059a1b"},"location":{"coordinates":[-74.00599100000001,40.639285],"type":"Point"},"name":"Tbaars"} +,{"_id":{"$oid":"55cba2486c522cafdb059a1c"},"location":{"coordinates":[-73.867842,40.8311641],"type":"Point"},"name":"Fouta Halal Food Corp."} +,{"_id":{"$oid":"55cba2486c522cafdb059a1d"},"location":{"coordinates":[-73.9043851,40.8490863],"type":"Point"},"name":"El Grand Chef Restaurant \u0026 Pizzeria"} +,{"_id":{"$oid":"55cba2486c522cafdb059a1e"},"location":{"coordinates":[-73.9680829,40.755957],"type":"Point"},"name":"Buttercup Bake Shop"} +,{"_id":{"$oid":"55cba2486c522cafdb059a1f"},"location":{"coordinates":[-74.006444,40.7406909],"type":"Point"},"name":"Bagatelle Kiss \u0026 Fly"} +,{"_id":{"$oid":"55cba2486c522cafdb059a20"},"location":{"coordinates":[-73.94891299999999,40.781225],"type":"Point"},"name":"The Milton"} +,{"_id":{"$oid":"55cba2486c522cafdb059a21"},"location":{"coordinates":[-73.9830621,40.7547222],"type":"Point"},"name":"Bluestone Lane Coffee"} +,{"_id":{"$oid":"55cba2486c522cafdb059a22"},"location":{"coordinates":[-73.9774178,40.7632429],"type":"Point"},"name":"Beyond Sushi Nyc Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb059a23"},"location":{"coordinates":[-73.8330519,40.7587756],"type":"Point"},"name":"Incredibowl"} +,{"_id":{"$oid":"55cba2486c522cafdb059a24"},"location":{"coordinates":[-73.98460299999999,40.617348],"type":"Point"},"name":"Lui'S Sweet Tomatoes Bakery"} +,{"_id":{"$oid":"55cba2486c522cafdb059a25"},"location":{"coordinates":[-73.8939893,40.7269899],"type":"Point"},"name":"Ny Fortune Garden Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb059a26"},"location":{"coordinates":[-73.9662762,40.5806334],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2486c522cafdb059a27"},"location":{"coordinates":[-73.9558948,40.6410178],"type":"Point"},"name":"Steam It Corp"} +,{"_id":{"$oid":"55cba2486c522cafdb059a28"},"location":{"coordinates":[-73.831335,40.760936],"type":"Point"},"name":"Dou Man Jiang Bbq Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059a29"},"location":{"coordinates":[-73.9868113,40.7483946],"type":"Point"},"name":"Crustacean Nyc"} +,{"_id":{"$oid":"55cba2486c522cafdb059a2a"},"location":{"coordinates":[-74.020995,40.63286799999999],"type":"Point"},"name":"Adam Koshary \u0026 Grill"} +,{"_id":{"$oid":"55cba2486c522cafdb059a2b"},"location":{"coordinates":[-73.8734759,40.7484876],"type":"Point"},"name":"Nueva Nitin Bakery"} +,{"_id":{"$oid":"55cba2486c522cafdb059a2c"},"location":{"coordinates":[-73.92601049999999,40.75890150000001],"type":"Point"},"name":"Fat Cats Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb059a2d"},"location":{"coordinates":[-73.7717009,40.764375],"type":"Point"},"name":"Piura "} +,{"_id":{"$oid":"55cba2486c522cafdb059a2e"},"location":{"coordinates":[-73.8633063,40.7288787],"type":"Point"},"name":"The Taco Place Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb059a2f"},"location":{"coordinates":[-73.81506759999999,40.7405479],"type":"Point"},"name":"A+ Chinese Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059a30"},"location":{"coordinates":[-73.9969745,40.7176316],"type":"Point"},"name":"Caffe Bean "} +,{"_id":{"$oid":"55cba2486c522cafdb059a31"},"location":{"coordinates":[-73.879164,40.740832],"type":"Point"},"name":"Hua Rong"} +,{"_id":{"$oid":"55cba2486c522cafdb059a32"},"location":{"coordinates":[-74.00414599999999,40.640339],"type":"Point"},"name":"Lucky Vegetarian"} +,{"_id":{"$oid":"55cba2486c522cafdb059a33"},"location":{"coordinates":[-73.9876367,40.7569709],"type":"Point"},"name":"Lyric Theatre"} +,{"_id":{"$oid":"55cba2486c522cafdb059a34"},"location":{"coordinates":[-73.957847,40.598446],"type":"Point"},"name":"Long Wong Bakery Ii, Inc."} +,{"_id":{"$oid":"55cba2486c522cafdb059a35"},"location":{"coordinates":[-73.94575789999999,40.807241],"type":"Point"},"name":"Jimbo'S"} +,{"_id":{"$oid":"55cba2486c522cafdb059a36"},"location":{"coordinates":[-73.9824143,40.6742098],"type":"Point"},"name":"Two Boots Park Slope"} +,{"_id":{"$oid":"55cba2486c522cafdb059a37"},"location":{"coordinates":[-73.878691,40.74168],"type":"Point"},"name":"Plant Love House"} +,{"_id":{"$oid":"55cba2486c522cafdb059a38"},"location":{"coordinates":[-73.9378643,40.8034962],"type":"Point"},"name":"Jimbo'S Hamburger"} +,{"_id":{"$oid":"55cba2486c522cafdb059a39"},"location":{"coordinates":[-73.883185,40.747278],"type":"Point"},"name":"Juquila Mexican Cuisine "} +,{"_id":{"$oid":"55cba2486c522cafdb059a3a"},"location":{"coordinates":[-73.97602839999999,40.6380749],"type":"Point"},"name":"Mr. Tony Pizzeria"} +,{"_id":{"$oid":"55cba2486c522cafdb059a3b"},"location":{"coordinates":[-73.9911094,40.7647429],"type":"Point"},"name":"The Waylon"} +,{"_id":{"$oid":"55cba2486c522cafdb059a3c"},"location":{"coordinates":[-73.8330519,40.7587756],"type":"Point"},"name":"Bubble Panda"} +,{"_id":{"$oid":"55cba2486c522cafdb059a3d"},"location":{"coordinates":[-73.9428994,40.842917],"type":"Point"},"name":"Columbia University Medical Center Bookstore Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb059a3e"},"location":{"coordinates":[-73.99129769999999,40.7532873],"type":"Point"},"name":"Culture 36"} +,{"_id":{"$oid":"55cba2486c522cafdb059a3f"},"location":{"coordinates":[-73.9952234,40.6948103],"type":"Point"},"name":"Montague St Bagels"} +,{"_id":{"$oid":"55cba2486c522cafdb059a40"},"location":{"coordinates":[-73.9864408,40.6917943],"type":"Point"},"name":"Papa Johns Pizza/Lawrence Fried Chicken"} +,{"_id":{"$oid":"55cba2486c522cafdb059a41"},"location":{"coordinates":[-73.9361191,40.8457545],"type":"Point"},"name":"Lola Lola Restaurant \u0026 Bar"} +,{"_id":{"$oid":"55cba2486c522cafdb059a42"},"location":{"coordinates":[-73.9144654,40.8442776],"type":"Point"},"name":"Almando Restaurant Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb059a43"},"location":{"coordinates":[-73.928279,40.8625703],"type":"Point"},"name":"Berti Restaurant \u0026 Lounge"} +,{"_id":{"$oid":"55cba2486c522cafdb059a44"},"location":{"coordinates":[-73.948689,40.788436],"type":"Point"},"name":"Joy Burger Bar"} +,{"_id":{"$oid":"55cba2486c522cafdb059a45"},"location":{"coordinates":[-73.889151,40.854115],"type":"Point"},"name":"San Gennaro"} +,{"_id":{"$oid":"55cba2486c522cafdb059a46"},"location":{"coordinates":[-73.87425,40.7766392],"type":"Point"},"name":"Wibar"} +,{"_id":{"$oid":"55cba2486c522cafdb059a47"},"location":{"coordinates":[-73.990556,40.749722],"type":"Point"},"name":"Rose Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb059a48"},"location":{"coordinates":[-73.98952609999999,40.7507917],"type":"Point"},"name":"Juice Press"} +,{"_id":{"$oid":"55cba2486c522cafdb059a49"},"location":{"coordinates":[-73.972624,40.752794],"type":"Point"},"name":"Bocca Bliss"} +,{"_id":{"$oid":"55cba2486c522cafdb059a4a"},"location":{"coordinates":[-73.92431599999999,40.75651879999999],"type":"Point"},"name":"Kabirs Bakery"} +,{"_id":{"$oid":"55cba2486c522cafdb059a4b"},"location":{"coordinates":[-73.98749719999999,40.7160067],"type":"Point"},"name":"Comfort Diner"} +,{"_id":{"$oid":"55cba2486c522cafdb059a4c"},"location":{"coordinates":[-73.9123693,40.7673496],"type":"Point"},"name":"New Mombar Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb059a4d"},"location":{"coordinates":[-73.8849015,40.7439113],"type":"Point"},"name":"Kababish"} +,{"_id":{"$oid":"55cba2486c522cafdb059a4e"},"location":{"coordinates":[-73.8097894,40.6673772],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2486c522cafdb059a4f"},"location":{"coordinates":[-73.983701,40.75908099999999],"type":"Point"},"name":"Maple Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059a50"},"location":{"coordinates":[-73.9492046,40.7114916],"type":"Point"},"name":"Forcella Pizza Napoli"} +,{"_id":{"$oid":"55cba2486c522cafdb059a51"},"location":{"coordinates":[-73.9162284,40.6864429],"type":"Point"},"name":"East Broadway Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb059a52"},"location":{"coordinates":[-73.8871186,40.8753767],"type":"Point"},"name":"The Grand Villa Pizzaria Corp"} +,{"_id":{"$oid":"55cba2486c522cafdb059a53"},"location":{"coordinates":[-73.8537088,40.89798589999999],"type":"Point"},"name":"Gun Hill Post 271"} +,{"_id":{"$oid":"55cba2486c522cafdb059a54"},"location":{"coordinates":[-73.9535765,40.638437],"type":"Point"},"name":"2419 China Star Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059a55"},"location":{"coordinates":[-73.949663,40.675816],"type":"Point"},"name":"Hing Hung Kitchen "} +,{"_id":{"$oid":"55cba2486c522cafdb059a56"},"location":{"coordinates":[-73.990409,40.760579],"type":"Point"},"name":"China Green Dim Sum Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059a57"},"location":{"coordinates":[-73.951083,40.7109462],"type":"Point"},"name":"Chuvoy'S Restaurant \u0026 Bar"} +,{"_id":{"$oid":"55cba2486c522cafdb059a58"},"location":{"coordinates":[-73.99075309999999,40.717941],"type":"Point"},"name":"Dirt Candy"} +,{"_id":{"$oid":"55cba2486c522cafdb059a59"},"location":{"coordinates":[-73.99998939999999,40.7272903],"type":"Point"},"name":"The Folly"} +,{"_id":{"$oid":"55cba2486c522cafdb059a5a"},"location":{"coordinates":[-73.9830882,40.7228109],"type":"Point"},"name":"Dojo Izakaya"} +,{"_id":{"$oid":"55cba2486c522cafdb059a5b"},"location":{"coordinates":[-73.7837491,40.7285569],"type":"Point"},"name":"Meatos Grill Bar"} +,{"_id":{"$oid":"55cba2486c522cafdb059a5c"},"location":{"coordinates":[-73.99934499999999,40.76217279999999],"type":"Point"},"name":"Eyes On Hudson Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb059a5d"},"location":{"coordinates":[-73.7441341,40.7655776],"type":"Point"},"name":"Itz Fire"} +,{"_id":{"$oid":"55cba2486c522cafdb059a5e"},"location":{"coordinates":[-74.00702,40.739143],"type":"Point"},"name":"Sushi Dojo Express"} +,{"_id":{"$oid":"55cba2486c522cafdb059a5f"},"location":{"coordinates":[-73.981301,40.757134],"type":"Point"},"name":"Vu 46"} +,{"_id":{"$oid":"55cba2486c522cafdb059a60"},"location":{"coordinates":[-73.88623900000002,40.866101],"type":"Point"},"name":"Webster Halal Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059a61"},"location":{"coordinates":[-73.830497,40.759167],"type":"Point"},"name":"Gi Hin"} +,{"_id":{"$oid":"55cba2486c522cafdb059a62"},"location":{"coordinates":[-74.0006401,40.7337508],"type":"Point"},"name":"Delice \u0026 Sarrasin"} +,{"_id":{"$oid":"55cba2486c522cafdb059a63"},"location":{"coordinates":[-73.76122289999999,40.7208854],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2486c522cafdb059a64"},"location":{"coordinates":[-73.9210275,40.6413138],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2486c522cafdb059a65"},"location":{"coordinates":[-74.0777554,40.6384279],"type":"Point"},"name":"El Indio Nunca Muere"} +,{"_id":{"$oid":"55cba2486c522cafdb059a66"},"location":{"coordinates":[-73.88094699999999,40.7358067],"type":"Point"},"name":"Asian Kitchen"} +,{"_id":{"$oid":"55cba2486c522cafdb059a67"},"location":{"coordinates":[-73.89733199999999,40.707937],"type":"Point"},"name":"Fresco Deli \u0026 Kitchen"} +,{"_id":{"$oid":"55cba2486c522cafdb059a68"},"location":{"coordinates":[-73.83403600000001,40.678521],"type":"Point"},"name":"Burger King"} +,{"_id":{"$oid":"55cba2486c522cafdb059a69"},"location":{"coordinates":[-73.94241459999999,40.712016],"type":"Point"},"name":"Masha And The Bear Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb059a6a"},"location":{"coordinates":[-73.91310159999999,40.8382515],"type":"Point"},"name":"El Nuevo Roble Billiards"} +,{"_id":{"$oid":"55cba2486c522cafdb059a6b"},"location":{"coordinates":[-73.95815019999999,40.773888],"type":"Point"},"name":"Monte-Carlo Nyc"} +,{"_id":{"$oid":"55cba2486c522cafdb059a6c"},"location":{"coordinates":[-74.0026875,40.74466880000001],"type":"Point"},"name":"Gelato Giusto"} +,{"_id":{"$oid":"55cba2486c522cafdb059a6d"},"location":{"coordinates":[-73.88596,40.857025],"type":"Point"},"name":"M And G Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059a6e"},"location":{"coordinates":[-73.952562,40.5864504],"type":"Point"},"name":"New Top Taco \u0026 China"} +,{"_id":{"$oid":"55cba2486c522cafdb059a6f"},"location":{"coordinates":[-73.86024900000001,40.739921],"type":"Point"},"name":"Nuevo Horizonte ( Herbalife)"} +,{"_id":{"$oid":"55cba2486c522cafdb059a70"},"location":{"coordinates":[-73.8330519,40.7587756],"type":"Point"},"name":"Lanzhou Pulled Noodle"} +,{"_id":{"$oid":"55cba2486c522cafdb059a71"},"location":{"coordinates":[-73.9850289,40.7474699],"type":"Point"},"name":"Bon Chon"} +,{"_id":{"$oid":"55cba2486c522cafdb059a72"},"location":{"coordinates":[-74.236158,40.5179157],"type":"Point"},"name":"Mizu Hibachi Japanese Fusion"} +,{"_id":{"$oid":"55cba2486c522cafdb059a73"},"location":{"coordinates":[-73.95228999999999,40.784428],"type":"Point"},"name":"Cantina 1436"} +,{"_id":{"$oid":"55cba2486c522cafdb059a74"},"location":{"coordinates":[-73.9449619,40.834515],"type":"Point"},"name":"La Fiesta Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059a75"},"location":{"coordinates":[-73.8455924,40.7207118],"type":"Point"},"name":"Aged"} +,{"_id":{"$oid":"55cba2486c522cafdb059a76"},"location":{"coordinates":[-92.7291848,41.7461746],"type":"Point"},"name":"Fika"} +,{"_id":{"$oid":"55cba2486c522cafdb059a77"},"location":{"coordinates":[-73.98932099999999,40.767501],"type":"Point"},"name":"Fika"} +,{"_id":{"$oid":"55cba2486c522cafdb059a78"},"location":{"coordinates":[-74.000192,40.73065099999999],"type":"Point"},"name":"Bourgeois Pig"} +,{"_id":{"$oid":"55cba2486c522cafdb059a79"},"location":{"coordinates":[-73.950664,40.724022],"type":"Point"},"name":"The Manhattan Inn"} +,{"_id":{"$oid":"55cba2486c522cafdb059a7a"},"location":{"coordinates":[-73.79487200000001,40.667445],"type":"Point"},"name":"Hampton Inn Jfk"} +,{"_id":{"$oid":"55cba2486c522cafdb059a7b"},"location":{"coordinates":[-73.95841899999999,40.71784],"type":"Point"},"name":"Starbucks Coffee #22596"} +,{"_id":{"$oid":"55cba2486c522cafdb059a7c"},"location":{"coordinates":[-73.990679,40.76144559999999],"type":"Point"},"name":"Urban Deli"} +,{"_id":{"$oid":"55cba2486c522cafdb059a7d"},"location":{"coordinates":[-73.9569447,40.6504538],"type":"Point"},"name":"Retro Fitness"} +,{"_id":{"$oid":"55cba2486c522cafdb059a7e"},"location":{"coordinates":[-73.7893519,40.707533],"type":"Point"},"name":"Mia Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059a7f"},"location":{"coordinates":[-73.9569741,40.6905693],"type":"Point"},"name":"Punta Cana Coffee Shop"} +,{"_id":{"$oid":"55cba2486c522cafdb059a80"},"location":{"coordinates":[-73.99023,40.7610079],"type":"Point"},"name":"La Pulperia"} +,{"_id":{"$oid":"55cba2486c522cafdb059a81"},"location":{"coordinates":[-73.930959,40.673851],"type":"Point"},"name":"Crown Fried Chicken"} +,{"_id":{"$oid":"55cba2486c522cafdb059a82"},"location":{"coordinates":[-73.9143909,40.7638547],"type":"Point"},"name":"Front Toward Enemy"} +,{"_id":{"$oid":"55cba2486c522cafdb059a83"},"location":{"coordinates":[-73.9010311,40.8310108],"type":"Point"},"name":"Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2486c522cafdb059a84"},"location":{"coordinates":[-73.8330519,40.7587756],"type":"Point"},"name":"Lao Ma Ma La Tang"} +,{"_id":{"$oid":"55cba2486c522cafdb059a85"},"location":{"coordinates":[-73.996563,40.7201617],"type":"Point"},"name":"Greecologies"} +,{"_id":{"$oid":"55cba2486c522cafdb059a86"},"location":{"coordinates":[-74.00573349999999,40.7398532],"type":"Point"},"name":"Tanuki Tavern"} +,{"_id":{"$oid":"55cba2486c522cafdb059a87"},"location":{"coordinates":[-74.1141494,40.6337451],"type":"Point"},"name":"Mds Lunchbox Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb059a88"},"location":{"coordinates":[-73.965334,40.759699],"type":"Point"},"name":"Al Horno Lean Mexican"} +,{"_id":{"$oid":"55cba2486c522cafdb059a89"},"location":{"coordinates":[-73.89071009999999,40.7473344],"type":"Point"},"name":"Jackson Heights Food Court"} +,{"_id":{"$oid":"55cba2486c522cafdb059a8a"},"location":{"coordinates":[-73.8330519,40.7587756],"type":"Point"},"name":"Guchun Private Kitchen"} +,{"_id":{"$oid":"55cba2486c522cafdb059a8b"},"location":{"coordinates":[-73.94771879999999,40.7475403],"type":"Point"},"name":"Dunkin Donut"} +,{"_id":{"$oid":"55cba2486c522cafdb059a8c"},"location":{"coordinates":[-73.956852,40.775432],"type":"Point"},"name":"Pig Heaven"} +,{"_id":{"$oid":"55cba2486c522cafdb059a8d"},"location":{"coordinates":[-73.9742747,40.7642202],"type":"Point"},"name":"Malik Ben Jelloun"} +,{"_id":{"$oid":"55cba2486c522cafdb059a8e"},"location":{"coordinates":[-73.989121,40.7362872],"type":"Point"},"name":"Wok To Walk"} +,{"_id":{"$oid":"55cba2486c522cafdb059a8f"},"location":{"coordinates":[-73.99138359999999,40.7184174],"type":"Point"},"name":"Aaa Ichiban Sushi"} +,{"_id":{"$oid":"55cba2486c522cafdb059a90"},"location":{"coordinates":[-73.9756349,40.6355631],"type":"Point"},"name":"Randazzo'S Pizzeria"} +,{"_id":{"$oid":"55cba2486c522cafdb059a91"},"location":{"coordinates":[-73.990303,40.760535],"type":"Point"},"name":"Goggan"} +,{"_id":{"$oid":"55cba2486c522cafdb059a92"},"location":{"coordinates":[-73.81470709999999,40.7554542],"type":"Point"},"name":"Dumpling Mama"} +,{"_id":{"$oid":"55cba2486c522cafdb059a93"},"location":{"coordinates":[-73.9790474,40.7517244],"type":"Point"},"name":"Dylan Hotel"} +,{"_id":{"$oid":"55cba2486c522cafdb059a94"},"location":{"coordinates":[-73.95935399999999,40.731342],"type":"Point"},"name":"Naked Dog"} +,{"_id":{"$oid":"55cba2486c522cafdb059a95"},"location":{"coordinates":[-73.98952609999999,40.7507917],"type":"Point"},"name":"Just Salad"} +,{"_id":{"$oid":"55cba2486c522cafdb059a96"},"location":{"coordinates":[-73.97535529999999,40.7591678],"type":"Point"},"name":"Isadora'S Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb059a97"},"location":{"coordinates":[-73.9628229,40.6737817],"type":"Point"},"name":"Triple D'S Place"} +,{"_id":{"$oid":"55cba2486c522cafdb059a98"},"location":{"coordinates":[-74.0118845,40.70374289999999],"type":"Point"},"name":"Just Salad"} +,{"_id":{"$oid":"55cba2486c522cafdb059a99"},"location":{"coordinates":[-74.00101169999999,40.7414371],"type":"Point"},"name":"Just Salad"} +,{"_id":{"$oid":"55cba2486c522cafdb059a9a"},"location":{"coordinates":[-73.988726,40.752428],"type":"Point"},"name":"Natureworks Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059a9b"},"location":{"coordinates":[-73.9817174,40.7774896],"type":"Point"},"name":"Just Salad"} +,{"_id":{"$oid":"55cba2486c522cafdb059a9c"},"location":{"coordinates":[-73.9087924,40.8232639],"type":"Point"},"name":"New Panda Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059a9d"},"location":{"coordinates":[-73.8215483,40.7569208],"type":"Point"},"name":"New Cheng'S Oriental Express"} +,{"_id":{"$oid":"55cba2486c522cafdb059a9e"},"location":{"coordinates":[-73.8654067,40.7358515],"type":"Point"},"name":"Silver Spoon Diner"} +,{"_id":{"$oid":"55cba2486c522cafdb059a9f"},"location":{"coordinates":[-73.8322759,40.847354],"type":"Point"},"name":"Bases Loaded Sports Bar"} +,{"_id":{"$oid":"55cba2486c522cafdb059aa0"},"location":{"coordinates":[-73.9141147,40.6991159],"type":"Point"},"name":"The Sushi \u0026 Teriyaki Factory Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb059aa1"},"location":{"coordinates":[-73.99836309999999,40.7158265],"type":"Point"},"name":"Wonton Noodle Garden"} +,{"_id":{"$oid":"55cba2486c522cafdb059aa2"},"location":{"coordinates":[-73.883287,40.8809826],"type":"Point"},"name":"A Plus Pizza Of Ny Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb059aa3"},"location":{"coordinates":[-74.126471,40.613053],"type":"Point"},"name":"Asian Fresh"} +,{"_id":{"$oid":"55cba2486c522cafdb059aa4"},"location":{"coordinates":[-73.989063,40.719878],"type":"Point"},"name":"Les Jardins De La Duchesse Llc"} +,{"_id":{"$oid":"55cba2486c522cafdb059aa5"},"location":{"coordinates":[-73.9108222,40.7618006],"type":"Point"},"name":"Mezquite"} +,{"_id":{"$oid":"55cba2486c522cafdb059aa6"},"location":{"coordinates":[-74.001527,40.642833],"type":"Point"},"name":"Xing Xiang Restaurant Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb059aa7"},"location":{"coordinates":[-74.0032669,40.641929],"type":"Point"},"name":"Pan Mini Cafe Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb059aa8"},"location":{"coordinates":[-73.950141,40.77950999999999],"type":"Point"},"name":"Selena Rosa Mexicana"} +,{"_id":{"$oid":"55cba2486c522cafdb059aa9"},"location":{"coordinates":[-73.810677,40.7887636],"type":"Point"},"name":"Bagel Time"} +,{"_id":{"$oid":"55cba2486c522cafdb059aaa"},"location":{"coordinates":[-73.904037,40.670861],"type":"Point"},"name":"Flavors Paradise Restaurant \u0026 Bakery"} +,{"_id":{"$oid":"55cba2486c522cafdb059aab"},"location":{"coordinates":[-73.9201466,40.8608682],"type":"Point"},"name":"The Cliff"} +,{"_id":{"$oid":"55cba2486c522cafdb059aac"},"location":{"coordinates":[-73.8458012,40.7840596],"type":"Point"},"name":"Mangu Grill Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059aad"},"location":{"coordinates":[-73.99826829999999,40.71638189999999],"type":"Point"},"name":"Ten Ren'S Tea Time"} +,{"_id":{"$oid":"55cba2486c522cafdb059aae"},"location":{"coordinates":[-73.8515128,40.8330761],"type":"Point"},"name":"El Sabor Casero"} +,{"_id":{"$oid":"55cba2486c522cafdb059aaf"},"location":{"coordinates":[-73.9366728,40.6918584],"type":"Point"},"name":"Little Fish Big Fish Chips \u0026 Things"} +,{"_id":{"$oid":"55cba2486c522cafdb059ab0"},"location":{"coordinates":[-73.990043,40.6866739],"type":"Point"},"name":"Oj Cleanse Inc."} +,{"_id":{"$oid":"55cba2486c522cafdb059ab1"},"location":{"coordinates":[-74.003029,40.64208319999999],"type":"Point"},"name":"Gia Lam Vietnamese Cuisine Inc."} +,{"_id":{"$oid":"55cba2486c522cafdb059ab2"},"location":{"coordinates":[-73.85934280000001,40.8324856],"type":"Point"},"name":"Alpine Food Traders Corp"} +,{"_id":{"$oid":"55cba2486c522cafdb059ab3"},"location":{"coordinates":[-73.8794014,40.7410275],"type":"Point"},"name":"He Lin Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059ab4"},"location":{"coordinates":[-73.8635939,40.728174],"type":"Point"},"name":"Rego Garden Chinese Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059ab5"},"location":{"coordinates":[-73.9888023,40.7196855],"type":"Point"},"name":"Con Artist"} +,{"_id":{"$oid":"55cba2486c522cafdb059ab6"},"location":{"coordinates":[-73.9744989,40.7647267],"type":"Point"},"name":"Vin Sur Vingt"} +,{"_id":{"$oid":"55cba2486c522cafdb059ab7"},"location":{"coordinates":[-73.98823060000001,40.7587649],"type":"Point"},"name":"City Kitchen"} +,{"_id":{"$oid":"55cba2486c522cafdb059ab8"},"location":{"coordinates":[-73.980608,40.750468],"type":"Point"},"name":"Zuma Japanese Restaurant New York"} +,{"_id":{"$oid":"55cba2486c522cafdb059ab9"},"location":{"coordinates":[-73.891161,40.854537],"type":"Point"},"name":"J J Sport Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059aba"},"location":{"coordinates":[-73.90546979999999,40.7003481],"type":"Point"},"name":"Yummy Chinese Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059abb"},"location":{"coordinates":[-73.99086199999999,40.719091],"type":"Point"},"name":"Petee'S Pie "} +,{"_id":{"$oid":"55cba2486c522cafdb059abc"},"location":{"coordinates":[-73.926744,40.662109],"type":"Point"},"name":"Pizza \u0026 Kennedy Fried Chicken"} +,{"_id":{"$oid":"55cba2486c522cafdb059abd"},"location":{"coordinates":[-73.993889,40.757157],"type":"Point"},"name":"Troy Turkish Grill"} +,{"_id":{"$oid":"55cba2486c522cafdb059abe"},"location":{"coordinates":[-73.8492571,40.724239],"type":"Point"},"name":"Asian Taste"} +,{"_id":{"$oid":"55cba2486c522cafdb059abf"},"location":{"coordinates":[-73.954067,40.7879503],"type":"Point"},"name":"Dough Loco"} +,{"_id":{"$oid":"55cba2486c522cafdb059ac0"},"location":{"coordinates":[-73.896832,40.7431569],"type":"Point"},"name":"Bhutanese Ema Datsi Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059ac1"},"location":{"coordinates":[-73.8505983,40.8309175],"type":"Point"},"name":"Hot Kennedy Fried Chicken \u0026 Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb059ac2"},"location":{"coordinates":[-73.7397016,40.6601029],"type":"Point"},"name":"3 In 1 Fs\u0026H Jamaican Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059ac3"},"location":{"coordinates":[-73.820934,40.7745087],"type":"Point"},"name":"Acquista Food Service Ii Inc."} +,{"_id":{"$oid":"55cba2486c522cafdb059ac4"},"location":{"coordinates":[-74.00702,40.739143],"type":"Point"},"name":"Feel Food"} +,{"_id":{"$oid":"55cba2486c522cafdb059ac5"},"location":{"coordinates":[-73.87425,40.7766392],"type":"Point"},"name":"Harry'S Deli"} +,{"_id":{"$oid":"55cba2486c522cafdb059ac6"},"location":{"coordinates":[-73.88509169999999,40.8569962],"type":"Point"},"name":"Nike'S Pizzeria"} +,{"_id":{"$oid":"55cba2486c522cafdb059ac7"},"location":{"coordinates":[-73.98266679999999,40.7276509],"type":"Point"},"name":"Mamani Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb059ac8"},"location":{"coordinates":[-74.00489689999999,40.7419343],"type":"Point"},"name":"Takumi Taco Llc"} +,{"_id":{"$oid":"55cba2486c522cafdb059ac9"},"location":{"coordinates":[-73.9413517,40.71168],"type":"Point"},"name":"Grand St Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb059aca"},"location":{"coordinates":[-73.8923779,40.748477],"type":"Point"},"name":"Haat Bazaar"} +,{"_id":{"$oid":"55cba2486c522cafdb059acb"},"location":{"coordinates":[-73.899957,40.86789539999999],"type":"Point"},"name":"New No 1 China Wok Yong Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb059acc"},"location":{"coordinates":[-73.9742747,40.7642202],"type":"Point"},"name":"Epicerie Bouloud"} +,{"_id":{"$oid":"55cba2486c522cafdb059acd"},"location":{"coordinates":[-73.88424900000001,40.74465],"type":"Point"},"name":"New Taste Of China"} +,{"_id":{"$oid":"55cba2486c522cafdb059ace"},"location":{"coordinates":[-73.8274076,40.7607958],"type":"Point"},"name":"Caffe Bene"} +,{"_id":{"$oid":"55cba2486c522cafdb059acf"},"location":{"coordinates":[-73.8481583,40.723557],"type":"Point"},"name":"Haveli Fine Indian Cuisine"} +,{"_id":{"$oid":"55cba2486c522cafdb059ad0"},"location":{"coordinates":[-73.78602099999999,40.846774],"type":"Point"},"name":"286 Pizza Place Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb059ad1"},"location":{"coordinates":[-73.811245,40.765186],"type":"Point"},"name":"Shannel"} +,{"_id":{"$oid":"55cba2486c522cafdb059ad2"},"location":{"coordinates":[-73.99661859999999,40.6622022],"type":"Point"},"name":"Alnoor Halal Deli"} +,{"_id":{"$oid":"55cba2486c522cafdb059ad3"},"location":{"coordinates":[-73.8303452,40.7569326],"type":"Point"},"name":"Icook Buffet"} +,{"_id":{"$oid":"55cba2486c522cafdb059ad4"},"location":{"coordinates":[-73.82723700000001,40.83314],"type":"Point"},"name":"Mi Viejo San Juan"} +,{"_id":{"$oid":"55cba2486c522cafdb059ad5"},"location":{"coordinates":[-74.0056304,40.7290031],"type":"Point"},"name":"Getting Hungry"} +,{"_id":{"$oid":"55cba2486c522cafdb059ad6"},"location":{"coordinates":[-73.95929799999999,40.815009],"type":"Point"},"name":"Oasis Jimma Juice Bar"} +,{"_id":{"$oid":"55cba2486c522cafdb059ad7"},"location":{"coordinates":[-73.9918898,40.6625334],"type":"Point"},"name":"Roosters Carribean Tapas"} +,{"_id":{"$oid":"55cba2486c522cafdb059ad8"},"location":{"coordinates":[-73.8038926,40.6967619],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2486c522cafdb059ad9"},"location":{"coordinates":[-74.1771342,40.5414275],"type":"Point"},"name":"The Square On Annadale"} +,{"_id":{"$oid":"55cba2486c522cafdb059ada"},"location":{"coordinates":[-73.98866559999999,40.716349],"type":"Point"},"name":"Doughnut Plant"} +,{"_id":{"$oid":"55cba2486c522cafdb059adb"},"location":{"coordinates":[-73.982286,40.6585982],"type":"Point"},"name":"Ako Asian Fusion"} +,{"_id":{"$oid":"55cba2486c522cafdb059adc"},"location":{"coordinates":[-73.906245,40.7128015],"type":"Point"},"name":"Buffalo Jo'S Wings"} +,{"_id":{"$oid":"55cba2486c522cafdb059add"},"location":{"coordinates":[-73.920176,40.7415453],"type":"Point"},"name":"Pecas Y Algo Mas"} +,{"_id":{"$oid":"55cba2486c522cafdb059ade"},"location":{"coordinates":[-73.9240014,40.7615749],"type":"Point"},"name":"Sekend Sun"} +,{"_id":{"$oid":"55cba2486c522cafdb059adf"},"location":{"coordinates":[-73.8070496,40.7634146],"type":"Point"},"name":"Cocohodo"} +,{"_id":{"$oid":"55cba2486c522cafdb059ae0"},"location":{"coordinates":[-73.9089565,40.8523372],"type":"Point"},"name":"The Famous Jimbo'S Hamburger Palace"} +,{"_id":{"$oid":"55cba2486c522cafdb059ae1"},"location":{"coordinates":[-73.9196992,40.7082567],"type":"Point"},"name":"Sherwoods Keep"} +,{"_id":{"$oid":"55cba2486c522cafdb059ae2"},"location":{"coordinates":[-73.9600229,40.5878486],"type":"Point"},"name":"Tsob-Tsobe Cafe Lounge Bar"} +,{"_id":{"$oid":"55cba2486c522cafdb059ae3"},"location":{"coordinates":[-73.9922849,40.72720109999999],"type":"Point"},"name":"Ogawa Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb059ae4"},"location":{"coordinates":[-74.00702,40.739143],"type":"Point"},"name":"Organic Gemini"} +,{"_id":{"$oid":"55cba2486c522cafdb059ae5"},"location":{"coordinates":[-73.9716827,40.6086369],"type":"Point"},"name":"Falafel Off The Corner"} +,{"_id":{"$oid":"55cba2486c522cafdb059ae6"},"location":{"coordinates":[-74.0051829,40.705996],"type":"Point"},"name":"Seaport Heights Llc"} +,{"_id":{"$oid":"55cba2486c522cafdb059ae7"},"location":{"coordinates":[-73.9148992,40.7755628],"type":"Point"},"name":"Qed"} +,{"_id":{"$oid":"55cba2486c522cafdb059ae8"},"location":{"coordinates":[-74.00677929999999,40.7102943],"type":"Point"},"name":"Ann Street Hotel Llc"} +,{"_id":{"$oid":"55cba2486c522cafdb059ae9"},"location":{"coordinates":[-73.7768643,40.7784536],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2486c522cafdb059aea"},"location":{"coordinates":[-73.8005347,40.7033859],"type":"Point"},"name":"Parsons Deli \u0026 Grocery"} +,{"_id":{"$oid":"55cba2486c522cafdb059aeb"},"location":{"coordinates":[-73.857463,40.862322],"type":"Point"},"name":"Alba Bar Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb059aec"},"location":{"coordinates":[-74.009051,40.639022],"type":"Point"},"name":"Your House"} +,{"_id":{"$oid":"55cba2486c522cafdb059aed"},"location":{"coordinates":[-73.8249001,40.7611296],"type":"Point"},"name":"Chikor New York Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb059aee"},"location":{"coordinates":[-73.98761940000001,40.721289],"type":"Point"},"name":"Two Almontes Corp."} +,{"_id":{"$oid":"55cba2486c522cafdb059aef"},"location":{"coordinates":[-73.9403658,40.8049519],"type":"Point"},"name":"124 Coffee Shop"} +,{"_id":{"$oid":"55cba2486c522cafdb059af0"},"location":{"coordinates":[-73.74669779999999,40.6959957],"type":"Point"},"name":"Chez Nous Restaurant \u0026 Fritaille"} +,{"_id":{"$oid":"55cba2486c522cafdb059af1"},"location":{"coordinates":[-73.980764,40.7532198],"type":"Point"},"name":"Bravo Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb059af2"},"location":{"coordinates":[-73.9785354,40.7519614],"type":"Point"},"name":"6B"} +,{"_id":{"$oid":"55cba2486c522cafdb059af3"},"location":{"coordinates":[-74.0005151,40.5938934],"type":"Point"},"name":"Starbucks Coffee #23267"} +,{"_id":{"$oid":"55cba2486c522cafdb059af4"},"location":{"coordinates":[-73.993366,40.740156],"type":"Point"},"name":"Burger \u0026 Lobster"} +,{"_id":{"$oid":"55cba2486c522cafdb059af5"},"location":{"coordinates":[-73.9066634,40.7439082],"type":"Point"},"name":"Stephanie Deli Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb059af6"},"location":{"coordinates":[-73.84765279999999,40.8197029],"type":"Point"},"name":"Shore Haven Diner"} +,{"_id":{"$oid":"55cba2486c522cafdb059af7"},"location":{"coordinates":[-73.875585,40.682114],"type":"Point"},"name":"Ziemek'S Cafe Llc"} +,{"_id":{"$oid":"55cba2486c522cafdb059af8"},"location":{"coordinates":[-73.99915279999999,40.6761496],"type":"Point"},"name":"Travel Bar"} +,{"_id":{"$oid":"55cba2486c522cafdb059af9"},"location":{"coordinates":[-73.8266199,40.7611865],"type":"Point"},"name":"K \u0026 D Internet Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb059afa"},"location":{"coordinates":[-74.1094737,40.6302104],"type":"Point"},"name":"Fab Cup"} +,{"_id":{"$oid":"55cba2486c522cafdb059afb"},"location":{"coordinates":[-73.943861,40.683853],"type":"Point"},"name":"Eugene \u0026 Co"} +,{"_id":{"$oid":"55cba2486c522cafdb059afc"},"location":{"coordinates":[-73.984663,40.739963],"type":"Point"},"name":"Pick \u0026 Pay Gyro \u0026 Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb059afd"},"location":{"coordinates":[-74.0037589,40.7291348],"type":"Point"},"name":"The Dessert Club"} +,{"_id":{"$oid":"55cba2486c522cafdb059afe"},"location":{"coordinates":[-74.0150439,40.7051391],"type":"Point"},"name":"Cafe De Novo"} +,{"_id":{"$oid":"55cba2486c522cafdb059aff"},"location":{"coordinates":[-73.9313205,40.6668382],"type":"Point"},"name":"Royal Cuisine Yard Food"} +,{"_id":{"$oid":"55cba2486c522cafdb059b00"},"location":{"coordinates":[-73.9152591,40.7509854],"type":"Point"},"name":"New Asian Cuisine"} +,{"_id":{"$oid":"55cba2486c522cafdb059b01"},"location":{"coordinates":[-73.936898,40.70231],"type":"Point"},"name":"All About Indian Food"} +,{"_id":{"$oid":"55cba2486c522cafdb059b02"},"location":{"coordinates":[-73.9102309,40.7697955],"type":"Point"},"name":"Mijana Lounge Restaurant \u0026 Bar"} +,{"_id":{"$oid":"55cba2486c522cafdb059b03"},"location":{"coordinates":[-73.83535789999999,40.7569735],"type":"Point"},"name":"Flora Sweet House"} +,{"_id":{"$oid":"55cba2486c522cafdb059b04"},"location":{"coordinates":[-73.98673269999999,40.688142],"type":"Point"},"name":"The Little Sweet Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb059b05"},"location":{"coordinates":[-73.9631218,40.6123223],"type":"Point"},"name":"Red Velvet Hookah Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb059b06"},"location":{"coordinates":[-73.99420239999999,40.73011260000001],"type":"Point"},"name":"Simit And Smith"} +,{"_id":{"$oid":"55cba2486c522cafdb059b07"},"location":{"coordinates":[-73.9972196,40.7211662],"type":"Point"},"name":"Sweetgreen Nolita"} +,{"_id":{"$oid":"55cba2486c522cafdb059b08"},"location":{"coordinates":[-73.77813909999999,40.6413111],"type":"Point"},"name":"Bar Veloce"} +,{"_id":{"$oid":"55cba2486c522cafdb059b09"},"location":{"coordinates":[-73.8703799,40.749246],"type":"Point"},"name":"Delicias Calenas"} +,{"_id":{"$oid":"55cba2486c522cafdb059b0a"},"location":{"coordinates":[-74.00702,40.739143],"type":"Point"},"name":"Cappone'S Salumeria"} +,{"_id":{"$oid":"55cba2486c522cafdb059b0b"},"location":{"coordinates":[-73.9742747,40.7642202],"type":"Point"},"name":"Pizza Rollio"} +,{"_id":{"$oid":"55cba2486c522cafdb059b0c"},"location":{"coordinates":[-73.9091097,40.707017],"type":"Point"},"name":"Green Jade China Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059b0d"},"location":{"coordinates":[-73.9590399,40.7158621],"type":"Point"},"name":"Sweetgreen Williamsburg"} +,{"_id":{"$oid":"55cba2486c522cafdb059b0e"},"location":{"coordinates":[-73.7812206,40.7131201],"type":"Point"},"name":"Bbq Village"} +,{"_id":{"$oid":"55cba2486c522cafdb059b0f"},"location":{"coordinates":[-73.77056,40.762096],"type":"Point"},"name":"Mr. Pollo #1"} +,{"_id":{"$oid":"55cba2486c522cafdb059b10"},"location":{"coordinates":[-74.023562,40.635335],"type":"Point"},"name":"Bay Ridge Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb059b11"},"location":{"coordinates":[-73.9205212,40.7005057],"type":"Point"},"name":"Grandma'S House"} +,{"_id":{"$oid":"55cba2486c522cafdb059b12"},"location":{"coordinates":[-73.9400254,40.6992244],"type":"Point"},"name":"The Pump Juice Bar"} +,{"_id":{"$oid":"55cba2486c522cafdb059b13"},"location":{"coordinates":[-73.73275939999999,40.72758779999999],"type":"Point"},"name":"Panda House"} +,{"_id":{"$oid":"55cba2486c522cafdb059b14"},"location":{"coordinates":[-74.0013987,40.7293601],"type":"Point"},"name":"Manousheh"} +,{"_id":{"$oid":"55cba2486c522cafdb059b15"},"location":{"coordinates":[-73.8615642,40.7495712],"type":"Point"},"name":"El Palo Bar Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059b16"},"location":{"coordinates":[-74.01235199999999,40.633287],"type":"Point"},"name":"Beautiful Memory Desserts"} +,{"_id":{"$oid":"55cba2486c522cafdb059b17"},"location":{"coordinates":[-73.9307034,40.6564201],"type":"Point"},"name":"Abegale'S "} +,{"_id":{"$oid":"55cba2486c522cafdb059b18"},"location":{"coordinates":[-73.979112,40.648437],"type":"Point"},"name":"Shenhav Mor Yehzkel"} +,{"_id":{"$oid":"55cba2486c522cafdb059b19"},"location":{"coordinates":[-73.9799053,40.68966959999999],"type":"Point"},"name":"Ricky Kuang"} +,{"_id":{"$oid":"55cba2486c522cafdb059b1a"},"location":{"coordinates":[-73.9953226,40.7389751],"type":"Point"},"name":"Coffeed"} +,{"_id":{"$oid":"55cba2486c522cafdb059b1b"},"location":{"coordinates":[-73.927632,40.830794],"type":"Point"},"name":"Halal Ny Kennedy'S Chicken \u0026 Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb059b1c"},"location":{"coordinates":[-73.983513,40.7436927],"type":"Point"},"name":"Bread \u0026 Butter"} +,{"_id":{"$oid":"55cba2486c522cafdb059b1d"},"location":{"coordinates":[-73.81831869999999,40.7086944],"type":"Point"},"name":"Manson Health"} +,{"_id":{"$oid":"55cba2486c522cafdb059b1e"},"location":{"coordinates":[-73.9863822,40.664866],"type":"Point"},"name":"Off To Start Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb059b1f"},"location":{"coordinates":[-73.8964177,40.6728688],"type":"Point"},"name":"Dum Swaha Deli \u0026 Grocery Corp"} +,{"_id":{"$oid":"55cba2486c522cafdb059b20"},"location":{"coordinates":[-74.00030699999999,40.730738],"type":"Point"},"name":"Dumplinggo"} +,{"_id":{"$oid":"55cba2486c522cafdb059b21"},"location":{"coordinates":[-73.8872083,40.6646756],"type":"Point"},"name":"Jus Chill Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2486c522cafdb059b22"},"location":{"coordinates":[-73.927651,40.692421],"type":"Point"},"name":"Kennedy Fried Chicken \u0026 Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb059b23"},"location":{"coordinates":[-73.9931355,40.7339197],"type":"Point"},"name":"Num Pang"} +,{"_id":{"$oid":"55cba2486c522cafdb059b24"},"location":{"coordinates":[-74.0068685,40.72763399999999],"type":"Point"},"name":"Gregory Coffee"} +,{"_id":{"$oid":"55cba2486c522cafdb059b25"},"location":{"coordinates":[-73.815432,40.788719],"type":"Point"},"name":"Whitestone Diner"} +,{"_id":{"$oid":"55cba2486c522cafdb059b26"},"location":{"coordinates":[-73.98894539999999,40.7194078],"type":"Point"},"name":"South Store"} +,{"_id":{"$oid":"55cba2486c522cafdb059b27"},"location":{"coordinates":[-73.9149429,40.74406889999999],"type":"Point"},"name":"Spincity Billiard \u0026 Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb059b28"},"location":{"coordinates":[-73.94428909999999,40.71557730000001],"type":"Point"},"name":"Concord Hill Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059b29"},"location":{"coordinates":[-73.844861,40.68957],"type":"Point"},"name":"Chimi Mundo And Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059b2a"},"location":{"coordinates":[-73.98266679999999,40.7276509],"type":"Point"},"name":"Takemehome Rotisserie Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb059b2b"},"location":{"coordinates":[-73.9374854,40.636848],"type":"Point"},"name":"Silhouwette Kitchen \u0026 Custom Cakes"} +,{"_id":{"$oid":"55cba2486c522cafdb059b2c"},"location":{"coordinates":[-74.1980382,40.5873032],"type":"Point"},"name":"Mandarino Pizza \u0026 Grill Corp"} +,{"_id":{"$oid":"55cba2486c522cafdb059b2d"},"location":{"coordinates":[-73.9539154,40.69981019999999],"type":"Point"},"name":"Mozzarella"} +,{"_id":{"$oid":"55cba2486c522cafdb059b2e"},"location":{"coordinates":[-73.978104,40.755387],"type":"Point"},"name":"Tenpenny Bar Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059b2f"},"location":{"coordinates":[-74.1034638,40.5759914],"type":"Point"},"name":"Nyogurt \u0026 Ice Cream"} +,{"_id":{"$oid":"55cba2486c522cafdb059b30"},"location":{"coordinates":[-73.9229409,40.6654814],"type":"Point"},"name":"Sqz Bar"} +,{"_id":{"$oid":"55cba2486c522cafdb059b31"},"location":{"coordinates":[-73.9401082,40.6604865],"type":"Point"},"name":"Lowkey Lounge"} +,{"_id":{"$oid":"55cba2486c522cafdb059b32"},"location":{"coordinates":[-73.852077,40.8339379],"type":"Point"},"name":"Golden Dragon Cuisine"} +,{"_id":{"$oid":"55cba2486c522cafdb059b33"},"location":{"coordinates":[-73.92279669999999,40.7062244],"type":"Point"},"name":"Radio Bushwick"} +,{"_id":{"$oid":"55cba2486c522cafdb059b34"},"location":{"coordinates":[-73.9988513,40.7292017],"type":"Point"},"name":"Quantum Leap"} +,{"_id":{"$oid":"55cba2486c522cafdb059b35"},"location":{"coordinates":[-73.9458938,40.7142923],"type":"Point"},"name":"Drive In"} +,{"_id":{"$oid":"55cba2486c522cafdb059b36"},"location":{"coordinates":[-73.9701536,40.7615618],"type":"Point"},"name":"Spa Castle Premier"} +,{"_id":{"$oid":"55cba2486c522cafdb059b37"},"location":{"coordinates":[-74.018091,40.70436979999999],"type":"Point"},"name":"Pier A"} +,{"_id":{"$oid":"55cba2486c522cafdb059b38"},"location":{"coordinates":[-73.8781558,40.872868],"type":"Point"},"name":"Grand Kam Man Kitchen Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb059b39"},"location":{"coordinates":[-73.9018952,40.8838151],"type":"Point"},"name":"Leche Y Miel Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059b3a"},"location":{"coordinates":[-73.802539,40.706783],"type":"Point"},"name":"Crown Fried Chicken"} +,{"_id":{"$oid":"55cba2486c522cafdb059b3b"},"location":{"coordinates":[-73.790347,40.739324],"type":"Point"},"name":"In-N-Out Chicken And Shakes Llc"} +,{"_id":{"$oid":"55cba2486c522cafdb059b3c"},"location":{"coordinates":[-73.8763149,40.8401492],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2486c522cafdb059b3d"},"location":{"coordinates":[-73.95101,40.66174640000001],"type":"Point"},"name":"Taste Of China Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059b3e"},"location":{"coordinates":[-73.9658719,40.7618462],"type":"Point"},"name":"Chill Box"} +,{"_id":{"$oid":"55cba2486c522cafdb059b3f"},"location":{"coordinates":[-73.9212592,40.7009264],"type":"Point"},"name":"Carita Feliz"} +,{"_id":{"$oid":"55cba2486c522cafdb059b40"},"location":{"coordinates":[-73.930394,40.808318],"type":"Point"},"name":"Mott Haven Bar \u0026 Grill"} +,{"_id":{"$oid":"55cba2486c522cafdb059b41"},"location":{"coordinates":[-73.8004906,40.703833],"type":"Point"},"name":"Gyro Express"} +,{"_id":{"$oid":"55cba2486c522cafdb059b42"},"location":{"coordinates":[-73.8514391,40.6939421],"type":"Point"},"name":"New Fresco Tortillas"} +,{"_id":{"$oid":"55cba2486c522cafdb059b43"},"location":{"coordinates":[-73.9875608,40.7649092],"type":"Point"},"name":"Pita Grill"} +,{"_id":{"$oid":"55cba2486c522cafdb059b44"},"location":{"coordinates":[-73.9912676,40.7481865],"type":"Point"},"name":"Courtyard By Marriott Manhattan Chelsea"} +,{"_id":{"$oid":"55cba2486c522cafdb059b45"},"location":{"coordinates":[-73.9792104,40.6008197],"type":"Point"},"name":"West Side Cafe Ii"} +,{"_id":{"$oid":"55cba2486c522cafdb059b46"},"location":{"coordinates":[-73.9114651,40.822061],"type":"Point"},"name":"Macau"} +,{"_id":{"$oid":"55cba2486c522cafdb059b47"},"location":{"coordinates":[-73.9607939,40.6601991],"type":"Point"},"name":"Brooklyn Greenery"} +,{"_id":{"$oid":"55cba2486c522cafdb059b48"},"location":{"coordinates":[-73.9704301,40.6456391],"type":"Point"},"name":"Alarcon Deli Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb059b49"},"location":{"coordinates":[-73.921892,40.703111],"type":"Point"},"name":"Amaranto"} +,{"_id":{"$oid":"55cba2486c522cafdb059b4a"},"location":{"coordinates":[-73.86016500000001,40.846206],"type":"Point"},"name":"Lotus Flame Restaurant \u0026 Bar"} +,{"_id":{"$oid":"55cba2486c522cafdb059b4b"},"location":{"coordinates":[-73.91157989999999,40.7750425],"type":"Point"},"name":"Truva Cafe Grill"} +,{"_id":{"$oid":"55cba2486c522cafdb059b4c"},"location":{"coordinates":[-73.97172789999999,40.749838],"type":"Point"},"name":"Calico Jacks"} +,{"_id":{"$oid":"55cba2486c522cafdb059b4d"},"location":{"coordinates":[-73.97172789999999,40.749838],"type":"Point"},"name":"Mcfadden'S"} +,{"_id":{"$oid":"55cba2486c522cafdb059b4e"},"location":{"coordinates":[-73.915301,40.763076],"type":"Point"},"name":"Ignited Restaurant \u0026 Lounge"} +,{"_id":{"$oid":"55cba2486c522cafdb059b4f"},"location":{"coordinates":[-73.84618770000002,40.7208839],"type":"Point"},"name":"Munch Ny Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb059b50"},"location":{"coordinates":[-73.82043689999999,40.6918095],"type":"Point"},"name":"Nest Restaurant \u0026 Bar"} +,{"_id":{"$oid":"55cba2486c522cafdb059b51"},"location":{"coordinates":[-73.851291,40.842426],"type":"Point"},"name":"Sapore Gourmet, Llc"} +,{"_id":{"$oid":"55cba2486c522cafdb059b52"},"location":{"coordinates":[-73.96906539999999,40.5906905],"type":"Point"},"name":"Hurriyet Makak"} +,{"_id":{"$oid":"55cba2486c522cafdb059b53"},"location":{"coordinates":[-74.00702,40.739143],"type":"Point"},"name":"Pig Guy Nyc"} +,{"_id":{"$oid":"55cba2486c522cafdb059b54"},"location":{"coordinates":[-73.994269,40.694547],"type":"Point"},"name":"128 Dumpling House"} +,{"_id":{"$oid":"55cba2486c522cafdb059b55"},"location":{"coordinates":[-73.948431,40.788801],"type":"Point"},"name":"Koonsup Thai"} +,{"_id":{"$oid":"55cba2486c522cafdb059b56"},"location":{"coordinates":[-73.910271,40.744543],"type":"Point"},"name":"Restaurante Asadero Mis Tierras Colombianas, Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb059b57"},"location":{"coordinates":[-73.9379721,40.8182047],"type":"Point"},"name":"House Of Seafood Express"} +,{"_id":{"$oid":"55cba2486c522cafdb059b58"},"location":{"coordinates":[-74.0015177,40.7458323],"type":"Point"},"name":"Harbs"} +,{"_id":{"$oid":"55cba2486c522cafdb059b59"},"location":{"coordinates":[-73.944389,40.716143],"type":"Point"},"name":"Sugar Couture"} +,{"_id":{"$oid":"55cba2486c522cafdb059b5a"},"location":{"coordinates":[-73.98537739999999,40.7357391],"type":"Point"},"name":"The Juice Shop"} +,{"_id":{"$oid":"55cba2486c522cafdb059b5b"},"location":{"coordinates":[-73.968636,40.75924],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2486c522cafdb059b5c"},"location":{"coordinates":[-73.84599349999999,40.7846918],"type":"Point"},"name":"Fu Tasty Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059b5d"},"location":{"coordinates":[-73.949809,40.6806839],"type":"Point"},"name":"Bona Ii Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb059b5e"},"location":{"coordinates":[-73.97920239999999,40.5933027],"type":"Point"},"name":"Taste Of China Usa"} +,{"_id":{"$oid":"55cba2486c522cafdb059b5f"},"location":{"coordinates":[-73.8071988,40.7634619],"type":"Point"},"name":"1.5 Galbi Corp"} +,{"_id":{"$oid":"55cba2486c522cafdb059b60"},"location":{"coordinates":[-74.00702,40.739143],"type":"Point"},"name":"Heermance On Gansevoort"} +,{"_id":{"$oid":"55cba2486c522cafdb059b61"},"location":{"coordinates":[-74.00962899999999,40.732723],"type":"Point"},"name":"Heermance Farm Purveyors"} +,{"_id":{"$oid":"55cba2486c522cafdb059b62"},"location":{"coordinates":[-73.94649,40.78027],"type":"Point"},"name":"Falafel Off The Corner"} +,{"_id":{"$oid":"55cba2486c522cafdb059b63"},"location":{"coordinates":[-73.9949937,40.7257305],"type":"Point"},"name":"Village Prime"} +,{"_id":{"$oid":"55cba2486c522cafdb059b64"},"location":{"coordinates":[-73.8675042,40.8477323],"type":"Point"},"name":"Oasis Hookah Loun Ge Corp"} +,{"_id":{"$oid":"55cba2486c522cafdb059b65"},"location":{"coordinates":[-73.955209,40.6102603],"type":"Point"},"name":"The Shake Box"} +,{"_id":{"$oid":"55cba2486c522cafdb059b66"},"location":{"coordinates":[-73.7683457,40.660716],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2486c522cafdb059b67"},"location":{"coordinates":[-74.0683829,40.5924441],"type":"Point"},"name":"Dragon House"} +,{"_id":{"$oid":"55cba2486c522cafdb059b68"},"location":{"coordinates":[-73.8330519,40.7587756],"type":"Point"},"name":"Tokyo Express Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb059b69"},"location":{"coordinates":[-73.9539854,40.8058554],"type":"Point"},"name":"Mess Hall"} +,{"_id":{"$oid":"55cba2486c522cafdb059b6a"},"location":{"coordinates":[-74.116484,40.6290819],"type":"Point"},"name":"Dona Chonita Inc."} +,{"_id":{"$oid":"55cba2486c522cafdb059b6b"},"location":{"coordinates":[-73.90849349999999,40.8625173],"type":"Point"},"name":"Adonai Deli Grocery Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb059b6c"},"location":{"coordinates":[-73.956816,40.7840582],"type":"Point"},"name":"Eat Madison 91 Llc"} +,{"_id":{"$oid":"55cba2486c522cafdb059b6d"},"location":{"coordinates":[-74.000056,40.614275],"type":"Point"},"name":"New Forest Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb059b6e"},"location":{"coordinates":[-73.9573843,40.7745142],"type":"Point"},"name":"Eat Third 79 Llc"} +,{"_id":{"$oid":"55cba2486c522cafdb059b6f"},"location":{"coordinates":[-73.82821369999999,40.7579147],"type":"Point"},"name":"Mugi"} +,{"_id":{"$oid":"55cba2486c522cafdb059b70"},"location":{"coordinates":[-73.9210801,40.8669368],"type":"Point"},"name":"Rush Tapas Bar Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb059b71"},"location":{"coordinates":[-73.9609309,40.5818953],"type":"Point"},"name":"Junior'S Ny Pizza \u0026 Fried Chicken"} +,{"_id":{"$oid":"55cba2486c522cafdb059b72"},"location":{"coordinates":[-73.93133840000002,40.6977158],"type":"Point"},"name":"Little Skips"} +,{"_id":{"$oid":"55cba2486c522cafdb059b73"},"location":{"coordinates":[-86.0724716,42.4074142],"type":"Point"},"name":"Weekender Billiard \u0026 Bar"} +,{"_id":{"$oid":"55cba2486c522cafdb059b74"},"location":{"coordinates":[-73.9882133,40.6975568],"type":"Point"},"name":"Brooklyn Bridge Diner Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb059b75"},"location":{"coordinates":[-73.9858409,40.718901],"type":"Point"},"name":"Spreadhouse Coffee \u0026 Art, Llc"} +,{"_id":{"$oid":"55cba2486c522cafdb059b76"},"location":{"coordinates":[-73.883966,40.755975],"type":"Point"},"name":"Mexican Restaurant Bar"} +,{"_id":{"$oid":"55cba2486c522cafdb059b77"},"location":{"coordinates":[-73.96004889999999,40.7208272],"type":"Point"},"name":"Brompton Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb059b78"},"location":{"coordinates":[-73.9571692,40.7119047],"type":"Point"},"name":"Little Choc Apothecary"} +,{"_id":{"$oid":"55cba2486c522cafdb059b79"},"location":{"coordinates":[-73.97943939999999,40.7765136],"type":"Point"},"name":"Parms"} +,{"_id":{"$oid":"55cba2486c522cafdb059b7a"},"location":{"coordinates":[-73.8933522,40.88257189999999],"type":"Point"},"name":"New Ya Mei Chinese Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059b7b"},"location":{"coordinates":[-73.8192181,40.6761591],"type":"Point"},"name":"Matty'S Sandhills Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb059b7c"},"location":{"coordinates":[-73.8978475,40.8835412],"type":"Point"},"name":"Acapella Gourmet Pizza \u0026 Restaurant Corp"} +,{"_id":{"$oid":"55cba2486c522cafdb059b7d"},"location":{"coordinates":[-73.8094619,40.7204684],"type":"Point"},"name":"Sweet Garden Chinese Takeout Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059b7e"},"location":{"coordinates":[-74.0089703,40.6184153],"type":"Point"},"name":"Blend Salad And Juice Bar"} +,{"_id":{"$oid":"55cba2486c522cafdb059b7f"},"location":{"coordinates":[-73.98645739999999,40.7489646],"type":"Point"},"name":"Zoni Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb059b80"},"location":{"coordinates":[-73.7304119,40.6918223],"type":"Point"},"name":"Cecelia'S Kitchen"} +,{"_id":{"$oid":"55cba2486c522cafdb059b81"},"location":{"coordinates":[-73.8799092,40.7480778],"type":"Point"},"name":"Spicy Tibet"} +,{"_id":{"$oid":"55cba2486c522cafdb059b82"},"location":{"coordinates":[-74.00339249999999,40.6343324],"type":"Point"},"name":"New Red Latern Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb059b83"},"location":{"coordinates":[-73.91600400000002,40.699637],"type":"Point"},"name":"Lucy'S Vietnamese Kitchen"} +,{"_id":{"$oid":"55cba2486c522cafdb059b84"},"location":{"coordinates":[-73.84597959999999,40.7836254],"type":"Point"},"name":"El Sabor"} +,{"_id":{"$oid":"55cba2486c522cafdb059b85"},"location":{"coordinates":[-73.7544676,40.5964197],"type":"Point"},"name":"Subway Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059b86"},"location":{"coordinates":[-73.951112,40.7738889],"type":"Point"},"name":"Pita Grill"} +,{"_id":{"$oid":"55cba2486c522cafdb059b87"},"location":{"coordinates":[-73.994838,40.637916],"type":"Point"},"name":"Santos Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059b88"},"location":{"coordinates":[-73.9916889,40.74045539999999],"type":"Point"},"name":"Koa-21 Llc"} +,{"_id":{"$oid":"55cba2486c522cafdb059b89"},"location":{"coordinates":[-73.7657193,40.68188139999999],"type":"Point"},"name":"Lorna J, Smith"} +,{"_id":{"$oid":"55cba2486c522cafdb059b8a"},"location":{"coordinates":[-73.82505139999999,40.7336868],"type":"Point"},"name":"Sushi Tokyo"} +,{"_id":{"$oid":"55cba2486c522cafdb059b8b"},"location":{"coordinates":[-73.942765,40.789663],"type":"Point"},"name":"King Food"} +,{"_id":{"$oid":"55cba2486c522cafdb059b8c"},"location":{"coordinates":[-73.8964151,40.6784682],"type":"Point"},"name":"Caoba Brooklyn Bistro"} +,{"_id":{"$oid":"55cba2486c522cafdb059b8d"},"location":{"coordinates":[-73.8578907,40.7282646],"type":"Point"},"name":"Barista Verace Pizza \u0026 Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb059b8e"},"location":{"coordinates":[-74.099482,40.593768],"type":"Point"},"name":"Pk'S Express"} +,{"_id":{"$oid":"55cba2486c522cafdb059b8f"},"location":{"coordinates":[-73.9019919,40.6998849],"type":"Point"},"name":"Fresh Tree"} +,{"_id":{"$oid":"55cba2486c522cafdb059b90"},"location":{"coordinates":[-73.95349139999999,40.7791843],"type":"Point"},"name":"Maison Kayser"} +,{"_id":{"$oid":"55cba2486c522cafdb059b91"},"location":{"coordinates":[-89.11438419999999,41.5536725],"type":"Point"},"name":"Union Bank Of Switzerland"} +,{"_id":{"$oid":"55cba2486c522cafdb059b92"},"location":{"coordinates":[-73.981458,40.782167],"type":"Point"},"name":"Maison Kayser"} +,{"_id":{"$oid":"55cba2486c522cafdb059b93"},"location":{"coordinates":[-73.98874889999999,40.7366067],"type":"Point"},"name":"201 Bar And Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059b94"},"location":{"coordinates":[-74.0021221,40.7392638],"type":"Point"},"name":"248 Hospitality Group Llc"} +,{"_id":{"$oid":"55cba2486c522cafdb059b95"},"location":{"coordinates":[-73.951217,40.665721],"type":"Point"},"name":"La Estrella Del Castillo Corp"} +,{"_id":{"$oid":"55cba2486c522cafdb059b96"},"location":{"coordinates":[-73.9943078,40.6146842],"type":"Point"},"name":"Just Desserts"} +,{"_id":{"$oid":"55cba2486c522cafdb059b97"},"location":{"coordinates":[-73.8548491,40.8972691],"type":"Point"},"name":"Excellent Taste Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059b98"},"location":{"coordinates":[-73.98725639999999,40.7476055],"type":"Point"},"name":"The Kunjip"} +,{"_id":{"$oid":"55cba2486c522cafdb059b99"},"location":{"coordinates":[-73.9297514,40.8323317],"type":"Point"},"name":"Rock Anthony'S Seafood \u0026 Soul"} +,{"_id":{"$oid":"55cba2486c522cafdb059b9a"},"location":{"coordinates":[-73.96891699999999,40.678468],"type":"Point"},"name":"Little Cupcake Bakeshop"} +,{"_id":{"$oid":"55cba2486c522cafdb059b9b"},"location":{"coordinates":[-73.8943884,40.8509758],"type":"Point"},"name":"Quisqueya Bar Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059b9c"},"location":{"coordinates":[-73.8289779,40.8665658],"type":"Point"},"name":"Master Wok ( Bay Plaza Mall)"} +,{"_id":{"$oid":"55cba2486c522cafdb059b9d"},"location":{"coordinates":[-73.8945116,40.7356105],"type":"Point"},"name":"Indiskia Fernandez"} +,{"_id":{"$oid":"55cba2486c522cafdb059b9e"},"location":{"coordinates":[-73.9036903,40.7036932],"type":"Point"},"name":"Topos Bookstore Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb059b9f"},"location":{"coordinates":[-73.9266002,40.6527148],"type":"Point"},"name":"Clarendon Cuisine"} +,{"_id":{"$oid":"55cba2486c522cafdb059ba0"},"location":{"coordinates":[-73.94351460000001,40.82635579999999],"type":"Point"},"name":"Tsion Cafe \u0026 Bakery"} +,{"_id":{"$oid":"55cba2486c522cafdb059ba1"},"location":{"coordinates":[-73.947379,40.633208],"type":"Point"},"name":"Fisherman'S Cove"} +,{"_id":{"$oid":"55cba2486c522cafdb059ba2"},"location":{"coordinates":[-73.8706606,40.7342757],"type":"Point"},"name":"Tbaar"} +,{"_id":{"$oid":"55cba2486c522cafdb059ba3"},"location":{"coordinates":[-73.87672479999999,40.7503787],"type":"Point"},"name":"Espinal Bakery Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059ba4"},"location":{"coordinates":[-74.0036164,40.7333421],"type":"Point"},"name":"La Gringa Taqueria"} +,{"_id":{"$oid":"55cba2486c522cafdb059ba5"},"location":{"coordinates":[-73.9706839,40.6894094],"type":"Point"},"name":"Good Joy Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb059ba6"},"location":{"coordinates":[-73.9491599,40.8079914],"type":"Point"},"name":"New Harlem Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059ba7"},"location":{"coordinates":[-73.82593700000001,40.677501],"type":"Point"},"name":"La Cocina Del Sabor Restaurant Corp"} +,{"_id":{"$oid":"55cba2486c522cafdb059ba8"},"location":{"coordinates":[-73.7390559,40.675487],"type":"Point"},"name":"Home Chef Catering Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb059ba9"},"location":{"coordinates":[-73.9937094,40.71392609999999],"type":"Point"},"name":"Kings Kitchen"} +,{"_id":{"$oid":"55cba2486c522cafdb059baa"},"location":{"coordinates":[-74.0032124,40.7485943],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2486c522cafdb059bab"},"location":{"coordinates":[-73.9168002,40.7643978],"type":"Point"},"name":"Healthy Me Organic Juice Lab"} +,{"_id":{"$oid":"55cba2486c522cafdb059bac"},"location":{"coordinates":[-73.882941,40.756055],"type":"Point"},"name":"Juanita'S"} +,{"_id":{"$oid":"55cba2486c522cafdb059bad"},"location":{"coordinates":[-73.9498958,40.7513657],"type":"Point"},"name":"Thomas Preti Caterers Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb059bae"},"location":{"coordinates":[-73.95317720000001,40.7763038],"type":"Point"},"name":"Caledonia"} +,{"_id":{"$oid":"55cba2486c522cafdb059baf"},"location":{"coordinates":[-73.98899899999999,40.760802],"type":"Point"},"name":"Frisson Espresso"} +,{"_id":{"$oid":"55cba2486c522cafdb059bb0"},"location":{"coordinates":[-73.8243632,40.77626739999999],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2486c522cafdb059bb1"},"location":{"coordinates":[-73.9524191,40.7260452],"type":"Point"},"name":"Peter Pan Donuts And Pastries"} +,{"_id":{"$oid":"55cba2486c522cafdb059bb2"},"location":{"coordinates":[-73.8521805,40.7259436],"type":"Point"},"name":"Due Fratelli Pizzeria Itlian Cuisine"} +,{"_id":{"$oid":"55cba2486c522cafdb059bb3"},"location":{"coordinates":[-73.956974,40.7669489],"type":"Point"},"name":"Texas Rotisserie \u0026 Grill"} +,{"_id":{"$oid":"55cba2486c522cafdb059bb4"},"location":{"coordinates":[-73.99381749999999,40.73323240000001],"type":"Point"},"name":"Reservior"} +,{"_id":{"$oid":"55cba2486c522cafdb059bb5"},"location":{"coordinates":[-73.9598623,40.7671868],"type":"Point"},"name":"Oita Sushi"} +,{"_id":{"$oid":"55cba2486c522cafdb059bb6"},"location":{"coordinates":[-73.78280749999999,40.7130545],"type":"Point"},"name":"Sunrise Bagel \u0026 Coffee Shop Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb059bb7"},"location":{"coordinates":[-73.9138534,40.7820884],"type":"Point"},"name":"Red And Black Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb059bb8"},"location":{"coordinates":[-73.82703699999999,40.831991],"type":"Point"},"name":"3463 Juices For Life Llc"} +,{"_id":{"$oid":"55cba2486c522cafdb059bb9"},"location":{"coordinates":[-73.72160339999999,40.7422553],"type":"Point"},"name":"Asian Bowl"} +,{"_id":{"$oid":"55cba2486c522cafdb059bba"},"location":{"coordinates":[-73.950822,40.724379],"type":"Point"},"name":"Xi'An Famous Foods"} +,{"_id":{"$oid":"55cba2486c522cafdb059bbb"},"location":{"coordinates":[-73.99132949999999,40.7148627],"type":"Point"},"name":"Pies 'N' Thighs"} +,{"_id":{"$oid":"55cba2486c522cafdb059bbc"},"location":{"coordinates":[-73.969308,40.6047579],"type":"Point"},"name":"Dolce Vita Creperie"} +,{"_id":{"$oid":"55cba2486c522cafdb059bbd"},"location":{"coordinates":[-73.96253399999999,40.759319],"type":"Point"},"name":"Go Noodle"} +,{"_id":{"$oid":"55cba2486c522cafdb059bbe"},"location":{"coordinates":[-74.001496,40.601195],"type":"Point"},"name":"Balndie'S Place, Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb059bbf"},"location":{"coordinates":[-74.19175709999999,40.5327722],"type":"Point"},"name":"Tsukiji Sushi Restaurant Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb059bc0"},"location":{"coordinates":[-73.8330519,40.7587756],"type":"Point"},"name":"Wang Ji Fu Dumpling Inc."} +,{"_id":{"$oid":"55cba2486c522cafdb059bc1"},"location":{"coordinates":[-73.7997187,40.7042655],"type":"Point"},"name":"Healthy Henry'S"} +,{"_id":{"$oid":"55cba2486c522cafdb059bc2"},"location":{"coordinates":[-73.9852801,40.7639193],"type":"Point"},"name":"China Gourmet 35 Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb059bc3"},"location":{"coordinates":[-73.98889609999999,40.7264637],"type":"Point"},"name":"Golden Crepes"} +,{"_id":{"$oid":"55cba2486c522cafdb059bc4"},"location":{"coordinates":[-73.9911053,40.7516708],"type":"Point"},"name":"Tgi Fridays"} +,{"_id":{"$oid":"55cba2486c522cafdb059bc5"},"location":{"coordinates":[-73.9925441,40.7585849],"type":"Point"},"name":"Red Hen"} +,{"_id":{"$oid":"55cba2486c522cafdb059bc6"},"location":{"coordinates":[-73.897615,40.67594],"type":"Point"},"name":"Max'S Deli \u0026 Coffee Shop"} +,{"_id":{"$oid":"55cba2486c522cafdb059bc7"},"location":{"coordinates":[-73.9829721,40.7423736],"type":"Point"},"name":"Kokum"} +,{"_id":{"$oid":"55cba2486c522cafdb059bc8"},"location":{"coordinates":[-73.98180719999999,40.5767135],"type":"Point"},"name":"Blackarm Corp"} +,{"_id":{"$oid":"55cba2486c522cafdb059bc9"},"location":{"coordinates":[-73.9876705,40.7268324],"type":"Point"},"name":"Malai Marke"} +,{"_id":{"$oid":"55cba2486c522cafdb059bca"},"location":{"coordinates":[-74.1014386,40.5896637],"type":"Point"},"name":"Mario'S"} +,{"_id":{"$oid":"55cba2486c522cafdb059bcb"},"location":{"coordinates":[-73.8865288,40.8367534],"type":"Point"},"name":"China Dragon City"} +,{"_id":{"$oid":"55cba2486c522cafdb059bcc"},"location":{"coordinates":[-73.971068,40.793605],"type":"Point"},"name":"The Halal Guys"} +,{"_id":{"$oid":"55cba2486c522cafdb059bcd"},"location":{"coordinates":[-73.86260639999999,40.8184297],"type":"Point"},"name":"Don Leo'S Place Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb059bce"},"location":{"coordinates":[-73.9388218,40.7985286],"type":"Point"},"name":"Kallejon Corp"} +,{"_id":{"$oid":"55cba2486c522cafdb059bcf"},"location":{"coordinates":[-74.018526,40.640279],"type":"Point"},"name":"New Jw Golden Bakery"} +,{"_id":{"$oid":"55cba2486c522cafdb059bd0"},"location":{"coordinates":[-74.0018754,40.72752029999999],"type":"Point"},"name":"Brigadeiro Bakery"} +,{"_id":{"$oid":"55cba2486c522cafdb059bd1"},"location":{"coordinates":[-74.0284466,40.6219772],"type":"Point"},"name":"Taco Bell"} +,{"_id":{"$oid":"55cba2486c522cafdb059bd2"},"location":{"coordinates":[-73.9990803,40.7440623],"type":"Point"},"name":"Teaffee"} +,{"_id":{"$oid":"55cba2486c522cafdb059bd3"},"location":{"coordinates":[-73.98919099999999,40.746034],"type":"Point"},"name":"The Paul"} +,{"_id":{"$oid":"55cba2486c522cafdb059bd4"},"location":{"coordinates":[-73.8680742,40.7486515],"type":"Point"},"name":"Da Hua Shi Fu"} +,{"_id":{"$oid":"55cba2486c522cafdb059bd5"},"location":{"coordinates":[-73.9474833,40.74766779999999],"type":"Point"},"name":"I-Fortune Cookie"} +,{"_id":{"$oid":"55cba2486c522cafdb059bd6"},"location":{"coordinates":[-73.9474833,40.74766779999999],"type":"Point"},"name":"I-Fortune Cookie"} +,{"_id":{"$oid":"55cba2486c522cafdb059bd7"},"location":{"coordinates":[-73.91469479999999,40.7756389],"type":"Point"},"name":"Barthenon Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb059bd8"},"location":{"coordinates":[-73.9872494,40.7207465],"type":"Point"},"name":"South Central Restaurant Llc"} +,{"_id":{"$oid":"55cba2486c522cafdb059bd9"},"location":{"coordinates":[-73.9802091,40.7802668],"type":"Point"},"name":"Fusha 311 West Inc."} +,{"_id":{"$oid":"55cba2486c522cafdb059bda"},"location":{"coordinates":[-73.9554713,40.5874887],"type":"Point"},"name":"Azerbaijan House Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb059bdb"},"location":{"coordinates":[-73.958366,40.6699907],"type":"Point"},"name":"Butter \u0026 Scotch"} +,{"_id":{"$oid":"55cba2486c522cafdb059bdc"},"location":{"coordinates":[-73.990481,40.7159322],"type":"Point"},"name":"Meow Parlour"} +,{"_id":{"$oid":"55cba2486c522cafdb059bdd"},"location":{"coordinates":[-73.997387,40.73292],"type":"Point"},"name":"Analogue"} +,{"_id":{"$oid":"55cba2486c522cafdb059bde"},"location":{"coordinates":[-73.9742747,40.7642202],"type":"Point"},"name":"Mr Chi Noodle"} +,{"_id":{"$oid":"55cba2486c522cafdb059bdf"},"location":{"coordinates":[-73.9796575,40.7412625],"type":"Point"},"name":"Chola"} +,{"_id":{"$oid":"55cba2486c522cafdb059be0"},"location":{"coordinates":[-73.9823066,40.74244729999999],"type":"Point"},"name":"Chote Nawab"} +,{"_id":{"$oid":"55cba2486c522cafdb059be1"},"location":{"coordinates":[-73.98292769999999,40.7424084],"type":"Point"},"name":"Raa Nyc Llc"} +,{"_id":{"$oid":"55cba2486c522cafdb059be2"},"location":{"coordinates":[-73.9264215,40.6835687],"type":"Point"},"name":"Manny'S"} +,{"_id":{"$oid":"55cba2486c522cafdb059be3"},"location":{"coordinates":[-73.98305599999999,40.742266],"type":"Point"},"name":"Haldi"} +,{"_id":{"$oid":"55cba2486c522cafdb059be4"},"location":{"coordinates":[-73.8857412,40.7494767],"type":"Point"},"name":"Oh Lala! Crepes, Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb059be5"},"location":{"coordinates":[-73.93002369999999,40.8547884],"type":"Point"},"name":"Superdough Llc"} +,{"_id":{"$oid":"55cba2486c522cafdb059be6"},"location":{"coordinates":[-73.9039136,40.8325742],"type":"Point"},"name":"Xing Long Chinese Restuarant Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb059be7"},"location":{"coordinates":[-74.00702,40.739143],"type":"Point"},"name":"Luzzo'S La Mtp"} +,{"_id":{"$oid":"55cba2486c522cafdb059be8"},"location":{"coordinates":[-73.8922258,40.67222900000001],"type":"Point"},"name":"Crown Fried Chicken \u0026 Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb059be9"},"location":{"coordinates":[-73.9922266,40.7161762],"type":"Point"},"name":"Ming Xia Zhu"} +,{"_id":{"$oid":"55cba2486c522cafdb059bea"},"location":{"coordinates":[-73.981888,40.60510499999999],"type":"Point"},"name":"Almaz Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059beb"},"location":{"coordinates":[-74.02828439999999,40.6229605],"type":"Point"},"name":"Cocoa Grinder"} +,{"_id":{"$oid":"55cba2486c522cafdb059bec"},"location":{"coordinates":[-73.987787,40.723689],"type":"Point"},"name":"Little Joe'S Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb059bed"},"location":{"coordinates":[-74.1641319,39.6686512],"type":"Point"},"name":"Soul Food Kitchen Seafood Heaven"} +,{"_id":{"$oid":"55cba2486c522cafdb059bee"},"location":{"coordinates":[-74.00702,40.739143],"type":"Point"},"name":"Mterranean"} +,{"_id":{"$oid":"55cba2486c522cafdb059bef"},"location":{"coordinates":[-73.998425,40.638131],"type":"Point"},"name":"Mixxed Grill And Juice Bar"} +,{"_id":{"$oid":"55cba2486c522cafdb059bf0"},"location":{"coordinates":[-73.89230599999999,40.6624387],"type":"Point"},"name":"Crown Fried Chicken"} +,{"_id":{"$oid":"55cba2486c522cafdb059bf1"},"location":{"coordinates":[-73.8797091,40.8333888],"type":"Point"},"name":"1380 Bronx River Cafe Corp"} +,{"_id":{"$oid":"55cba2486c522cafdb059bf2"},"location":{"coordinates":[-73.8468523,40.8778435],"type":"Point"},"name":"Parrilla Internacional 2"} +,{"_id":{"$oid":"55cba2486c522cafdb059bf3"},"location":{"coordinates":[-74.0039066,40.7370403],"type":"Point"},"name":"Minerva"} +,{"_id":{"$oid":"55cba2486c522cafdb059bf4"},"location":{"coordinates":[-73.9189064,40.8654529],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059bf5"},"location":{"coordinates":[-73.918212,40.765121],"type":"Point"},"name":"Jujube Tree"} +,{"_id":{"$oid":"55cba2486c522cafdb059bf6"},"location":{"coordinates":[-73.7327789,40.69309],"type":"Point"},"name":"Jamaican Flavors"} +,{"_id":{"$oid":"55cba2486c522cafdb059bf7"},"location":{"coordinates":[-73.833787,40.758943],"type":"Point"},"name":"Sake Bomb"} +,{"_id":{"$oid":"55cba2486c522cafdb059bf8"},"location":{"coordinates":[-73.79343519999999,40.7703407],"type":"Point"},"name":"Sangria"} +,{"_id":{"$oid":"55cba2486c522cafdb059bf9"},"location":{"coordinates":[-73.94138339999999,40.6509931],"type":"Point"},"name":"Fish Net Seafood"} +,{"_id":{"$oid":"55cba2486c522cafdb059bfa"},"location":{"coordinates":[-73.740126,40.717522],"type":"Point"},"name":"Caribbean Delight"} +,{"_id":{"$oid":"55cba2486c522cafdb059bfb"},"location":{"coordinates":[-73.9910014,40.7453937],"type":"Point"},"name":"Hee Korean Bbq Grill"} +,{"_id":{"$oid":"55cba2486c522cafdb059bfc"},"location":{"coordinates":[-73.7007388,40.7389555],"type":"Point"},"name":"Bismillah Kabab \u0026 Curry"} +,{"_id":{"$oid":"55cba2486c522cafdb059bfd"},"location":{"coordinates":[-73.999813,40.683876],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059bfe"},"location":{"coordinates":[-73.92910859999999,40.8552867],"type":"Point"},"name":"Hang Lung Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059bff"},"location":{"coordinates":[-73.93948859999999,40.6604488],"type":"Point"},"name":"Mr King Food Kitchen"} +,{"_id":{"$oid":"55cba2486c522cafdb059c00"},"location":{"coordinates":[-73.9966882,40.7139264],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059c01"},"location":{"coordinates":[-73.95239769999999,40.6762483],"type":"Point"},"name":"Elsie'S Doughnuts"} +,{"_id":{"$oid":"55cba2486c522cafdb059c02"},"location":{"coordinates":[-73.9190358,40.7424425],"type":"Point"},"name":"Dumplings And Things"} +,{"_id":{"$oid":"55cba2486c522cafdb059c03"},"location":{"coordinates":[-73.9890822,40.7587725],"type":"Point"},"name":"Smith'S Hell'S Kitchen Bar \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059c04"},"location":{"coordinates":[-73.871895,40.64973],"type":"Point"},"name":"Outback Steakhouse"} +,{"_id":{"$oid":"55cba2486c522cafdb059c05"},"location":{"coordinates":[-73.85143889999999,40.6939422],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2486c522cafdb059c06"},"location":{"coordinates":[-74.008443,40.7396079],"type":"Point"},"name":"Santina"} +,{"_id":{"$oid":"55cba2486c522cafdb059c07"},"location":{"coordinates":[-74.013391,40.64943],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059c08"},"location":{"coordinates":[-73.9451146,40.8156302],"type":"Point"},"name":"Acts 3 Bagels"} +,{"_id":{"$oid":"55cba2486c522cafdb059c09"},"location":{"coordinates":[-73.896832,40.7431569],"type":"Point"},"name":"Lekey Drakpa"} +,{"_id":{"$oid":"55cba2486c522cafdb059c0a"},"location":{"coordinates":[-74.00863199999999,40.713352],"type":"Point"},"name":"Barleycorn"} +,{"_id":{"$oid":"55cba2486c522cafdb059c0b"},"location":{"coordinates":[-73.8668062,40.8547454],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059c0c"},"location":{"coordinates":[-73.788088,40.7578592],"type":"Point"},"name":"Papa John'S Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb059c0d"},"location":{"coordinates":[-73.9521663,40.7172388],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059c0e"},"location":{"coordinates":[-73.92365,40.6875267],"type":"Point"},"name":"Chez Alex"} +,{"_id":{"$oid":"55cba2486c522cafdb059c0f"},"location":{"coordinates":[-73.953659,40.78842700000001],"type":"Point"},"name":"Tre Otto"} +,{"_id":{"$oid":"55cba2486c522cafdb059c10"},"location":{"coordinates":[-74.0035706,40.7298385],"type":"Point"},"name":"Jack'S Wife Freda"} +,{"_id":{"$oid":"55cba2486c522cafdb059c11"},"location":{"coordinates":[-74.08518699999999,40.618461],"type":"Point"},"name":"Rinconcito Dominicano"} +,{"_id":{"$oid":"55cba2486c522cafdb059c12"},"location":{"coordinates":[-73.985338,40.76089899999999],"type":"Point"},"name":"A Marino Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059c13"},"location":{"coordinates":[-73.90184140000001,40.7048855],"type":"Point"},"name":"Mexican Apple Bbq"} +,{"_id":{"$oid":"55cba2486c522cafdb059c14"},"location":{"coordinates":[-73.98762359999999,40.7200496],"type":"Point"},"name":"Charrua"} +,{"_id":{"$oid":"55cba2486c522cafdb059c15"},"location":{"coordinates":[-74.00435499999999,40.653897],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059c16"},"location":{"coordinates":[-73.815882,40.787061],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059c17"},"location":{"coordinates":[-73.9645756,40.8015352],"type":"Point"},"name":"Spice"} +,{"_id":{"$oid":"55cba2486c522cafdb059c18"},"location":{"coordinates":[-73.73381429999999,40.6933411],"type":"Point"},"name":"A To Z Catering"} +,{"_id":{"$oid":"55cba2486c522cafdb059c19"},"location":{"coordinates":[-73.92240699999999,40.700861],"type":"Point"},"name":"Pasteles Capy"} +,{"_id":{"$oid":"55cba2486c522cafdb059c1a"},"location":{"coordinates":[-73.9576445,40.6442177],"type":"Point"},"name":"Tropical Twist Bakery \u0026 Restaurant "} +,{"_id":{"$oid":"55cba2486c522cafdb059c1b"},"location":{"coordinates":[-73.985671,40.728004],"type":"Point"},"name":"Holiday Cocktail Lounge"} +,{"_id":{"$oid":"55cba2486c522cafdb059c1c"},"location":{"coordinates":[-73.999399,40.716281],"type":"Point"},"name":"Pho Thanh Hoai 1"} +,{"_id":{"$oid":"55cba2486c522cafdb059c1d"},"location":{"coordinates":[-73.9187426,40.8299958],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059c1e"},"location":{"coordinates":[-73.98608390000001,40.6893957],"type":"Point"},"name":"Livingston Manor"} +,{"_id":{"$oid":"55cba2486c522cafdb059c1f"},"location":{"coordinates":[-73.9870991,40.7027497],"type":"Point"},"name":"Bread And Spread"} +,{"_id":{"$oid":"55cba2486c522cafdb059c20"},"location":{"coordinates":[-73.8907445,40.6580963],"type":"Point"},"name":"Denny'S"} +,{"_id":{"$oid":"55cba2486c522cafdb059c21"},"location":{"coordinates":[-74.16403500000001,40.5781824],"type":"Point"},"name":"Carvel Ice Cream"} +,{"_id":{"$oid":"55cba2486c522cafdb059c22"},"location":{"coordinates":[-73.95561409999999,40.7712351],"type":"Point"},"name":"Green Life Juice Bar"} +,{"_id":{"$oid":"55cba2486c522cafdb059c23"},"location":{"coordinates":[-73.9553624,40.8204466],"type":"Point"},"name":"Bus Stop Dinner"} +,{"_id":{"$oid":"55cba2486c522cafdb059c24"},"location":{"coordinates":[-73.9417369,40.5978342],"type":"Point"},"name":"Papa John'S"} +,{"_id":{"$oid":"55cba2486c522cafdb059c25"},"location":{"coordinates":[-73.9243158,40.75651910000001],"type":"Point"},"name":"Asian Spice \u0026 Tandoor"} +,{"_id":{"$oid":"55cba2486c522cafdb059c26"},"location":{"coordinates":[-73.98764190000001,40.597901],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059c27"},"location":{"coordinates":[-73.96444079999999,40.7566294],"type":"Point"},"name":"Pho Saigon"} +,{"_id":{"$oid":"55cba2486c522cafdb059c28"},"location":{"coordinates":[-73.92877,40.810327],"type":"Point"},"name":"Pandora"} +,{"_id":{"$oid":"55cba2486c522cafdb059c29"},"location":{"coordinates":[-73.9835112,40.7408627],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059c2a"},"location":{"coordinates":[-74.00702,40.739143],"type":"Point"},"name":"Yiaourti"} +,{"_id":{"$oid":"55cba2486c522cafdb059c2b"},"location":{"coordinates":[-73.82693909999999,40.77147799999999],"type":"Point"},"name":"Great East Chinese Food"} +,{"_id":{"$oid":"55cba2486c522cafdb059c2c"},"location":{"coordinates":[-73.97216999999999,40.755584],"type":"Point"},"name":"La Bellezza"} +,{"_id":{"$oid":"55cba2486c522cafdb059c2d"},"location":{"coordinates":[-74.1358142,40.6348676],"type":"Point"},"name":"Active Health"} +,{"_id":{"$oid":"55cba2486c522cafdb059c2e"},"location":{"coordinates":[-73.808461,40.701544],"type":"Point"},"name":"Pollo Campero"} +,{"_id":{"$oid":"55cba2486c522cafdb059c2f"},"location":{"coordinates":[-73.8774808,40.7504857],"type":"Point"},"name":"Nutricion Familiar"} +,{"_id":{"$oid":"55cba2486c522cafdb059c30"},"location":{"coordinates":[-73.99436349999999,40.7315992],"type":"Point"},"name":"Subway 8Th Street Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb059c31"},"location":{"coordinates":[-73.9706688,40.7546793],"type":"Point"},"name":"Red Stixs"} +,{"_id":{"$oid":"55cba2486c522cafdb059c32"},"location":{"coordinates":[-73.94842729999999,40.8286954],"type":"Point"},"name":"At The Wallace"} +,{"_id":{"$oid":"55cba2486c522cafdb059c33"},"location":{"coordinates":[-73.8787301,40.7487974],"type":"Point"},"name":"Tacos Al Suadero"} +,{"_id":{"$oid":"55cba2486c522cafdb059c34"},"location":{"coordinates":[-73.98655099999999,40.746355],"type":"Point"},"name":"Space Gabi ( Pink By Ele)"} +,{"_id":{"$oid":"55cba2486c522cafdb059c35"},"location":{"coordinates":[-73.83039099999999,40.760732],"type":"Point"},"name":"Starbucks Coffee"} +,{"_id":{"$oid":"55cba2486c522cafdb059c36"},"location":{"coordinates":[-73.9244794,40.6977154],"type":"Point"},"name":"Bushwick Public House"} +,{"_id":{"$oid":"55cba2486c522cafdb059c37"},"location":{"coordinates":[-73.9874926,40.7607386],"type":"Point"},"name":"Ny Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb059c38"},"location":{"coordinates":[-73.997855,40.716203],"type":"Point"},"name":"Canton Lounge"} +,{"_id":{"$oid":"55cba2486c522cafdb059c39"},"location":{"coordinates":[-73.96413,40.7120375],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059c3a"},"location":{"coordinates":[-73.9355578,40.7427897],"type":"Point"},"name":"Juice Press 10, Llc"} +,{"_id":{"$oid":"55cba2486c522cafdb059c3b"},"location":{"coordinates":[-73.9643413,40.6491205],"type":"Point"},"name":"Mallenche Mexican Grill"} +,{"_id":{"$oid":"55cba2486c522cafdb059c3c"},"location":{"coordinates":[-73.9489861,40.6438506],"type":"Point"},"name":"Combite Creole"} +,{"_id":{"$oid":"55cba2486c522cafdb059c3d"},"location":{"coordinates":[-73.961125,40.594069],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059c3e"},"location":{"coordinates":[-73.916887,40.619773],"type":"Point"},"name":"Asian Naruto"} +,{"_id":{"$oid":"55cba2486c522cafdb059c3f"},"location":{"coordinates":[-74.01267399999999,40.63628],"type":"Point"},"name":"Good Brothers Of Brooklyn"} +,{"_id":{"$oid":"55cba2486c522cafdb059c40"},"location":{"coordinates":[-73.86361819999999,40.8381268],"type":"Point"},"name":"Fried Chicken \u0026 Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb059c41"},"location":{"coordinates":[-73.881143,40.809636],"type":"Point"},"name":"Break Time Sports Bar"} +,{"_id":{"$oid":"55cba2486c522cafdb059c42"},"location":{"coordinates":[-73.96049900000001,40.688567],"type":"Point"},"name":"The Market"} +,{"_id":{"$oid":"55cba2486c522cafdb059c43"},"location":{"coordinates":[-73.92937599999999,40.6421007],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059c44"},"location":{"coordinates":[-73.9964401,40.6951679],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059c45"},"location":{"coordinates":[-73.9623146,40.61113],"type":"Point"},"name":"Pizza Plus"} +,{"_id":{"$oid":"55cba2486c522cafdb059c46"},"location":{"coordinates":[-73.833287,40.67885],"type":"Point"},"name":"Seafood \u0026 Steak House"} +,{"_id":{"$oid":"55cba2486c522cafdb059c47"},"location":{"coordinates":[-74.00702,40.739143],"type":"Point"},"name":"Macelleria Butcher Shop"} +,{"_id":{"$oid":"55cba2486c522cafdb059c48"},"location":{"coordinates":[-74.2334759,40.5167888],"type":"Point"},"name":"Peri'S Pearl Tea"} +,{"_id":{"$oid":"55cba2486c522cafdb059c49"},"location":{"coordinates":[-73.9431335,40.80705520000001],"type":"Point"},"name":"Checkers"} +,{"_id":{"$oid":"55cba2486c522cafdb059c4a"},"location":{"coordinates":[-73.99957359999999,40.7616154],"type":"Point"},"name":"Espace"} +,{"_id":{"$oid":"55cba2486c522cafdb059c4b"},"location":{"coordinates":[-73.94310449999999,40.8108763],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059c4c"},"location":{"coordinates":[-73.98305169999999,40.72798909999999],"type":"Point"},"name":"Cafe Islan"} +,{"_id":{"$oid":"55cba2486c522cafdb059c4d"},"location":{"coordinates":[-73.970705,40.7953768],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059c4e"},"location":{"coordinates":[-74.0714689,40.612412],"type":"Point"},"name":"Phi-Alm Kusina"} +,{"_id":{"$oid":"55cba2486c522cafdb059c4f"},"location":{"coordinates":[-73.985271,40.6707256],"type":"Point"},"name":"New Aarpan"} +,{"_id":{"$oid":"55cba2486c522cafdb059c50"},"location":{"coordinates":[-73.9261085,40.7626515],"type":"Point"},"name":"Karina Guimaraes"} +,{"_id":{"$oid":"55cba2486c522cafdb059c51"},"location":{"coordinates":[-73.9571873,40.74591789999999],"type":"Point"},"name":"Blvd Wine Bar"} +,{"_id":{"$oid":"55cba2486c522cafdb059c52"},"location":{"coordinates":[-73.9372612,40.7966002],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059c53"},"location":{"coordinates":[-73.870897,40.751033],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059c54"},"location":{"coordinates":[-73.9823921,40.7476953],"type":"Point"},"name":"Eden Wok"} +,{"_id":{"$oid":"55cba2486c522cafdb059c55"},"location":{"coordinates":[-73.9930095,40.7593177],"type":"Point"},"name":"Adella"} +,{"_id":{"$oid":"55cba2486c522cafdb059c56"},"location":{"coordinates":[-74.0018599,40.726699],"type":"Point"},"name":"Once Upon A Tart"} +,{"_id":{"$oid":"55cba2486c522cafdb059c57"},"location":{"coordinates":[-73.9857624,40.7684922],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059c58"},"location":{"coordinates":[-73.950514,40.66703200000001],"type":"Point"},"name":"Brooklyn Bites"} +,{"_id":{"$oid":"55cba2486c522cafdb059c59"},"location":{"coordinates":[-73.9952351,40.6902085],"type":"Point"},"name":"Pair Wine And Cheese"} +,{"_id":{"$oid":"55cba2486c522cafdb059c5a"},"location":{"coordinates":[-74.0095219,40.7069772],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059c5b"},"location":{"coordinates":[-73.865095,40.8788265],"type":"Point"},"name":"Little Caesars"} +,{"_id":{"$oid":"55cba2486c522cafdb059c5c"},"location":{"coordinates":[-73.992471,40.7511286],"type":"Point"},"name":"Nice Tail"} +,{"_id":{"$oid":"55cba2486c522cafdb059c5d"},"location":{"coordinates":[-73.8876397,40.8374335],"type":"Point"},"name":"Ranch Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059c5e"},"location":{"coordinates":[-73.9990337,40.7143954],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059c5f"},"location":{"coordinates":[-73.9534879,40.698687],"type":"Point"},"name":"Hali'S Delicatessen"} +,{"_id":{"$oid":"55cba2486c522cafdb059c60"},"location":{"coordinates":[-73.93521710000002,40.69733129999999],"type":"Point"},"name":"La Lupe"} +,{"_id":{"$oid":"55cba2486c522cafdb059c61"},"location":{"coordinates":[-73.9747422,40.754841],"type":"Point"},"name":"Angelo Gordon \u0026 Company"} +,{"_id":{"$oid":"55cba2486c522cafdb059c62"},"location":{"coordinates":[-74.000664,40.7301659],"type":"Point"},"name":"Cafe Wha"} +,{"_id":{"$oid":"55cba2486c522cafdb059c63"},"location":{"coordinates":[-74.0002585,40.7290547],"type":"Point"},"name":"Senza Gluten"} +,{"_id":{"$oid":"55cba2486c522cafdb059c64"},"location":{"coordinates":[-73.935503,40.796376],"type":"Point"},"name":"Mama'S Burger And Grill "} +,{"_id":{"$oid":"55cba2486c522cafdb059c65"},"location":{"coordinates":[-73.967236,40.756154],"type":"Point"},"name":"Atwood Kitchen \u0026 Bar"} +,{"_id":{"$oid":"55cba2486c522cafdb059c66"},"location":{"coordinates":[-73.9188326,40.8380242],"type":"Point"},"name":"La Fuentes Steakhouse"} +,{"_id":{"$oid":"55cba2486c522cafdb059c67"},"location":{"coordinates":[-73.927178,40.8648327],"type":"Point"},"name":"Chen'S Kitchen"} +,{"_id":{"$oid":"55cba2486c522cafdb059c68"},"location":{"coordinates":[-73.9807354,40.7516336],"type":"Point"},"name":"Gregory'S Coffee"} +,{"_id":{"$oid":"55cba2486c522cafdb059c69"},"location":{"coordinates":[-73.828378,40.689515],"type":"Point"},"name":"11 Meat Shop"} +,{"_id":{"$oid":"55cba2486c522cafdb059c6a"},"location":{"coordinates":[-73.9864387,40.7473643],"type":"Point"},"name":"Stage 3"} +,{"_id":{"$oid":"55cba2486c522cafdb059c6b"},"location":{"coordinates":[-74.0027988,40.7293875],"type":"Point"},"name":"Cafe Clover"} +,{"_id":{"$oid":"55cba2486c522cafdb059c6c"},"location":{"coordinates":[-73.9972557,40.7180202],"type":"Point"},"name":"12 Corners Coffee Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb059c6d"},"location":{"coordinates":[-73.769038,40.758992],"type":"Point"},"name":"Kkee"} +,{"_id":{"$oid":"55cba2486c522cafdb059c6e"},"location":{"coordinates":[-73.863485,40.71863],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059c6f"},"location":{"coordinates":[-73.8728885,40.6750709],"type":"Point"},"name":"Lee Good Taste Kitchen"} +,{"_id":{"$oid":"55cba2486c522cafdb059c70"},"location":{"coordinates":[-73.98029629999999,40.7750164],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059c71"},"location":{"coordinates":[-74.1685967,40.5594924],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059c72"},"location":{"coordinates":[-73.9916296,40.6906013],"type":"Point"},"name":"Checker"} +,{"_id":{"$oid":"55cba2486c522cafdb059c73"},"location":{"coordinates":[-73.79364439999999,40.780342],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059c74"},"location":{"coordinates":[-73.8697474,40.8328114],"type":"Point"},"name":"Sandy Deli \u0026 Mexican Grill"} +,{"_id":{"$oid":"55cba2486c522cafdb059c75"},"location":{"coordinates":[-73.9019161,40.8199807],"type":"Point"},"name":"No.1 Kitchen"} +,{"_id":{"$oid":"55cba2486c522cafdb059c76"},"location":{"coordinates":[-73.91303169999999,40.6156113],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059c77"},"location":{"coordinates":[-73.99607999999999,40.72208699999999],"type":"Point"},"name":"Birdbath Spring"} +,{"_id":{"$oid":"55cba2486c522cafdb059c78"},"location":{"coordinates":[-73.9987517,40.6931825],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059c79"},"location":{"coordinates":[-73.91303169999999,40.6156113],"type":"Point"},"name":"Gourmet Bagel Shoppe"} +,{"_id":{"$oid":"55cba2486c522cafdb059c7a"},"location":{"coordinates":[-73.7621935,40.7135961],"type":"Point"},"name":"Code Lounge"} +,{"_id":{"$oid":"55cba2486c522cafdb059c7b"},"location":{"coordinates":[-73.7436824,40.6770097],"type":"Point"},"name":"China Wok"} +,{"_id":{"$oid":"55cba2486c522cafdb059c7c"},"location":{"coordinates":[-73.987905,40.760379],"type":"Point"},"name":"Subway And Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb059c7d"},"location":{"coordinates":[-73.887771,40.701581],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059c7e"},"location":{"coordinates":[-74.003074,40.7338569],"type":"Point"},"name":"Cha Lait"} +,{"_id":{"$oid":"55cba2486c522cafdb059c7f"},"location":{"coordinates":[-74.008938,40.63641],"type":"Point"},"name":"Duo Ro Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059c80"},"location":{"coordinates":[-73.946904,40.780619],"type":"Point"},"name":"New Fresh Wok"} +,{"_id":{"$oid":"55cba2486c522cafdb059c81"},"location":{"coordinates":[-73.9758303,40.7456331],"type":"Point"},"name":"Ginza Sushi"} +,{"_id":{"$oid":"55cba2486c522cafdb059c82"},"location":{"coordinates":[-73.939885,40.79940879999999],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059c83"},"location":{"coordinates":[-73.99039479999999,40.754399],"type":"Point"},"name":"Ron Ben-Israel Cakes"} +,{"_id":{"$oid":"55cba2486c522cafdb059c84"},"location":{"coordinates":[-73.8693012,40.7485076],"type":"Point"},"name":"Skylinne Corp"} +,{"_id":{"$oid":"55cba2486c522cafdb059c85"},"location":{"coordinates":[-73.9403346,40.6928013],"type":"Point"},"name":"Sajoma Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059c86"},"location":{"coordinates":[-73.9145874,40.6989841],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059c87"},"location":{"coordinates":[-73.9770829,40.78539],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059c88"},"location":{"coordinates":[-73.9792133,40.6786965],"type":"Point"},"name":"Miti Miti Taperia"} +,{"_id":{"$oid":"55cba2486c522cafdb059c89"},"location":{"coordinates":[-73.89310739999999,40.7545576],"type":"Point"},"name":"Armondo'S Italian Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059c8a"},"location":{"coordinates":[-73.9590164,40.7174889],"type":"Point"},"name":"Tiny Empire"} +,{"_id":{"$oid":"55cba2486c522cafdb059c8b"},"location":{"coordinates":[-74.1628108,40.6068538],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059c8c"},"location":{"coordinates":[-73.769038,40.758992],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059c8d"},"location":{"coordinates":[-73.98268829999999,40.689858],"type":"Point"},"name":"Express Fulton Fried Chicken \u0026 Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb059c8e"},"location":{"coordinates":[-73.9885752,40.7694808],"type":"Point"},"name":"Justinos Pizzeria"} +,{"_id":{"$oid":"55cba2486c522cafdb059c8f"},"location":{"coordinates":[-73.95568519999999,40.77900899999999],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059c90"},"location":{"coordinates":[-73.987646,40.7628267],"type":"Point"},"name":"New World Stages \u0026 The Green Room"} +,{"_id":{"$oid":"55cba2486c522cafdb059c91"},"location":{"coordinates":[-74.07725599999999,40.627201],"type":"Point"},"name":"Defontes"} +,{"_id":{"$oid":"55cba2486c522cafdb059c92"},"location":{"coordinates":[-73.9336821,40.6323335],"type":"Point"},"name":"Aura Bar \u0026 Lounge"} +,{"_id":{"$oid":"55cba2486c522cafdb059c93"},"location":{"coordinates":[-73.9887284,40.770473],"type":"Point"},"name":"Li'L Jays Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb059c94"},"location":{"coordinates":[-73.8316559,40.7635242],"type":"Point"},"name":"Tian Fu Tea House Kt"} +,{"_id":{"$oid":"55cba2486c522cafdb059c95"},"location":{"coordinates":[-73.8877911,40.74958],"type":"Point"},"name":"The Original American Chicken"} +,{"_id":{"$oid":"55cba2486c522cafdb059c96"},"location":{"coordinates":[-74.15872019999999,40.6119754],"type":"Point"},"name":"M\u0026J Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb059c97"},"location":{"coordinates":[-73.91832529999999,40.7621769],"type":"Point"},"name":"Sabor De Cuba"} +,{"_id":{"$oid":"55cba2486c522cafdb059c98"},"location":{"coordinates":[-73.98761379999999,40.7368831],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059c99"},"location":{"coordinates":[-73.9785821,40.7248837],"type":"Point"},"name":"Pastabar Cafe Corp"} +,{"_id":{"$oid":"55cba2486c522cafdb059c9a"},"location":{"coordinates":[-73.92765,40.864901],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059c9b"},"location":{"coordinates":[-73.8697615,40.8326862],"type":"Point"},"name":"Legends Bar \u0026 Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059c9c"},"location":{"coordinates":[-73.8177058,40.8203907],"type":"Point"},"name":"Sun'S Kitchen"} +,{"_id":{"$oid":"55cba2486c522cafdb059c9d"},"location":{"coordinates":[-74.14934339999999,40.6254667],"type":"Point"},"name":"Mcdonalds Fast Food Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059c9e"},"location":{"coordinates":[-73.9831469,40.7310121],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059c9f"},"location":{"coordinates":[-73.94904009999999,40.7109671],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059ca0"},"location":{"coordinates":[-73.9756237,40.7394093],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059ca1"},"location":{"coordinates":[-73.947102,40.62698899999999],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059ca2"},"location":{"coordinates":[-74.132871,40.558924],"type":"Point"},"name":"Exclusive Catering"} +,{"_id":{"$oid":"55cba2486c522cafdb059ca3"},"location":{"coordinates":[-73.971193,40.756258],"type":"Point"},"name":"Ibis"} +,{"_id":{"$oid":"55cba2486c522cafdb059ca4"},"location":{"coordinates":[-73.9124673,40.7702415],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059ca5"},"location":{"coordinates":[-73.8979777,40.8837949],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059ca6"},"location":{"coordinates":[-73.9005025,40.7292549],"type":"Point"},"name":"Il Postino Pizza And Caffe"} +,{"_id":{"$oid":"55cba2486c522cafdb059ca7"},"location":{"coordinates":[-73.9927832,40.73325759999999],"type":"Point"},"name":"Ootoya"} +,{"_id":{"$oid":"55cba2486c522cafdb059ca8"},"location":{"coordinates":[-74.1028826,40.5880358],"type":"Point"},"name":"M \u0026 K Spanish Restaurant Bar"} +,{"_id":{"$oid":"55cba2486c522cafdb059ca9"},"location":{"coordinates":[-73.8680742,40.7486515],"type":"Point"},"name":"Gui Lin Mi Fen"} +,{"_id":{"$oid":"55cba2486c522cafdb059caa"},"location":{"coordinates":[-73.829769,40.7572039],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059cab"},"location":{"coordinates":[-73.83417969999999,40.7576305],"type":"Point"},"name":"Runway69"} +,{"_id":{"$oid":"55cba2486c522cafdb059cac"},"location":{"coordinates":[-73.9815764,40.7576629],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059cad"},"location":{"coordinates":[-74.0064463,40.723512],"type":"Point"},"name":"The Mill"} +,{"_id":{"$oid":"55cba2486c522cafdb059cae"},"location":{"coordinates":[-74.0002331,40.7174105],"type":"Point"},"name":"Maid Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb059caf"},"location":{"coordinates":[-73.9396129,40.748903],"type":"Point"},"name":"Cranberry"} +,{"_id":{"$oid":"55cba2486c522cafdb059cb0"},"location":{"coordinates":[-74.123689,40.6131799],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059cb1"},"location":{"coordinates":[-73.98978509999999,40.7487912],"type":"Point"},"name":"Cafe R"} +,{"_id":{"$oid":"55cba2486c522cafdb059cb2"},"location":{"coordinates":[-74.00702,40.739143],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059cb3"},"location":{"coordinates":[-73.90535799999999,40.83126],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059cb4"},"location":{"coordinates":[-73.961641,40.661018],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059cb5"},"location":{"coordinates":[-73.94360379999999,40.82619649999999],"type":"Point"},"name":"New Golden Empire Chinese Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059cb6"},"location":{"coordinates":[-81.66436360000002,30.4822925],"type":"Point"},"name":"Camden Food Express"} +,{"_id":{"$oid":"55cba2486c522cafdb059cb7"},"location":{"coordinates":[-73.74438599999999,40.72918],"type":"Point"},"name":"Mcdonald'S"} +,{"_id":{"$oid":"55cba2486c522cafdb059cb8"},"location":{"coordinates":[-73.9966018,40.7377269],"type":"Point"},"name":"Hendel Products \u0026 Hendel Enterprises/ Mcdonald'S"} +,{"_id":{"$oid":"55cba2486c522cafdb059cb9"},"location":{"coordinates":[-73.81471359999999,40.75541380000001],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059cba"},"location":{"coordinates":[-73.9791516,40.7506861],"type":"Point"},"name":"Shelley'S Kitchen"} +,{"_id":{"$oid":"55cba2486c522cafdb059cbb"},"location":{"coordinates":[-73.9610491,40.6942049],"type":"Point"},"name":"Moot Bar"} +,{"_id":{"$oid":"55cba2486c522cafdb059cbc"},"location":{"coordinates":[-74.149847,40.537447],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059cbd"},"location":{"coordinates":[-73.8703996,40.6780463],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2486c522cafdb059cbe"},"location":{"coordinates":[-73.7886694,40.7266761],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059cbf"},"location":{"coordinates":[-73.8855118,40.8547274],"type":"Point"},"name":"Las Qrquideas Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059cc0"},"location":{"coordinates":[-73.9864389,40.691759],"type":"Point"},"name":"Asian City"} +,{"_id":{"$oid":"55cba2486c522cafdb059cc1"},"location":{"coordinates":[-73.9181995,40.6684135],"type":"Point"},"name":"Wing-N-It"} +,{"_id":{"$oid":"55cba2486c522cafdb059cc2"},"location":{"coordinates":[-73.95327,40.802902],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059cc3"},"location":{"coordinates":[-73.9120185,40.7671532],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059cc4"},"location":{"coordinates":[-73.9758839,40.747848],"type":"Point"},"name":"Sons Of Thunder"} +,{"_id":{"$oid":"55cba2486c522cafdb059cc5"},"location":{"coordinates":[-73.9586657,40.709249],"type":"Point"},"name":"Lefeu Lounge5"} +,{"_id":{"$oid":"55cba2486c522cafdb059cc6"},"location":{"coordinates":[-73.97349799999999,40.590427],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059cc7"},"location":{"coordinates":[-73.9671278,40.7991611],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2486c522cafdb059cc8"},"location":{"coordinates":[-73.9155789,40.779247],"type":"Point"},"name":"Locus Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb059cc9"},"location":{"coordinates":[-73.95467239999999,40.7418355],"type":"Point"},"name":"Bricktown Bagels \u0026 Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb059cca"},"location":{"coordinates":[-73.870842,40.674417],"type":"Point"},"name":"La Vega Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059ccb"},"location":{"coordinates":[-73.9504528,40.7236116],"type":"Point"},"name":"Churn Llc"} +,{"_id":{"$oid":"55cba2486c522cafdb059ccc"},"location":{"coordinates":[-73.9588694,40.7753242],"type":"Point"},"name":"Vive La Crepe"} +,{"_id":{"$oid":"55cba2486c522cafdb059ccd"},"location":{"coordinates":[-73.821828,40.686883],"type":"Point"},"name":"Flavor-Fi"} +,{"_id":{"$oid":"55cba2486c522cafdb059cce"},"location":{"coordinates":[-73.95768699999999,40.645156],"type":"Point"},"name":"Ab Halal Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059ccf"},"location":{"coordinates":[-73.9906843,40.7143771],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059cd0"},"location":{"coordinates":[-73.947611,40.724568],"type":"Point"},"name":"Sweet Fox Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb059cd1"},"location":{"coordinates":[-73.97172789999999,40.749838],"type":"Point"},"name":"Ground-Central"} +,{"_id":{"$oid":"55cba2486c522cafdb059cd2"},"location":{"coordinates":[-74.0012995,40.6874736],"type":"Point"},"name":"The Hop Shop"} +,{"_id":{"$oid":"55cba2486c522cafdb059cd3"},"location":{"coordinates":[-73.93660899999999,40.701741],"type":"Point"},"name":"Little Brooklyn Taste"} +,{"_id":{"$oid":"55cba2486c522cafdb059cd4"},"location":{"coordinates":[-74.00044299999999,40.729675],"type":"Point"},"name":"The Up \u0026 Up"} +,{"_id":{"$oid":"55cba2486c522cafdb059cd5"},"location":{"coordinates":[-73.89811569999999,40.8671555],"type":"Point"},"name":"Double Dragon"} +,{"_id":{"$oid":"55cba2486c522cafdb059cd6"},"location":{"coordinates":[-73.868107,40.703187],"type":"Point"},"name":"Bambino Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb059cd7"},"location":{"coordinates":[-73.9969807,40.74188669999999],"type":"Point"},"name":"Fika"} +,{"_id":{"$oid":"55cba2486c522cafdb059cd8"},"location":{"coordinates":[-73.9863489,40.7398099],"type":"Point"},"name":"Dos Toros"} +,{"_id":{"$oid":"55cba2486c522cafdb059cd9"},"location":{"coordinates":[-73.923214,40.689884],"type":"Point"},"name":"Lucky China City"} +,{"_id":{"$oid":"55cba2486c522cafdb059cda"},"location":{"coordinates":[-73.9688369,40.640831],"type":"Point"},"name":"Hadi Food Corp"} +,{"_id":{"$oid":"55cba2486c522cafdb059cdb"},"location":{"coordinates":[-73.9613253,40.6826446],"type":"Point"},"name":"Sip"} +,{"_id":{"$oid":"55cba2486c522cafdb059cdc"},"location":{"coordinates":[-73.9912028,40.76505230000001],"type":"Point"},"name":"Mocu-Mocu"} +,{"_id":{"$oid":"55cba2486c522cafdb059cdd"},"location":{"coordinates":[-73.985174,40.727336],"type":"Point"},"name":"Sweet Generation"} +,{"_id":{"$oid":"55cba2486c522cafdb059cde"},"location":{"coordinates":[-73.9939725,40.60898299999999],"type":"Point"},"name":"Sofia Pizzeria"} +,{"_id":{"$oid":"55cba2486c522cafdb059cdf"},"location":{"coordinates":[-73.93888299999999,40.7985577],"type":"Point"},"name":"Posada Del Sol "} +,{"_id":{"$oid":"55cba2486c522cafdb059ce0"},"location":{"coordinates":[-73.9938576,40.6860497],"type":"Point"},"name":"June"} +,{"_id":{"$oid":"55cba2486c522cafdb059ce1"},"location":{"coordinates":[-73.8421776,40.8407162],"type":"Point"},"name":"Bronx Brick Oven Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb059ce2"},"location":{"coordinates":[-73.97909899999999,40.754174],"type":"Point"},"name":"Bread \u0026 Butter"} +,{"_id":{"$oid":"55cba2486c522cafdb059ce3"},"location":{"coordinates":[-73.9131017,40.76659679999999],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059ce4"},"location":{"coordinates":[-73.9880604,40.7288765],"type":"Point"},"name":"Df Mavens"} +,{"_id":{"$oid":"55cba2486c522cafdb059ce5"},"location":{"coordinates":[-73.9410809,40.7036157],"type":"Point"},"name":"Reconnect"} +,{"_id":{"$oid":"55cba2486c522cafdb059ce6"},"location":{"coordinates":[-73.83403600000001,40.678521],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2486c522cafdb059ce7"},"location":{"coordinates":[-74.00408460000001,40.7382182],"type":"Point"},"name":"Aux Merveilleux De Fred"} +,{"_id":{"$oid":"55cba2486c522cafdb059ce8"},"location":{"coordinates":[-74.0066083,40.7192553],"type":"Point"},"name":"Gotan"} +,{"_id":{"$oid":"55cba2486c522cafdb059ce9"},"location":{"coordinates":[-73.998102,40.605139],"type":"Point"},"name":"Han Wong Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059cea"},"location":{"coordinates":[-73.9227839,40.706806],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059ceb"},"location":{"coordinates":[-73.969526,40.622695],"type":"Point"},"name":"1061 Catering Llc"} +,{"_id":{"$oid":"55cba2486c522cafdb059cec"},"location":{"coordinates":[-73.932366,40.8461714],"type":"Point"},"name":"La Yola"} +,{"_id":{"$oid":"55cba2486c522cafdb059ced"},"location":{"coordinates":[-73.842838,40.675016],"type":"Point"},"name":"Viva Mis Empanadas"} +,{"_id":{"$oid":"55cba2486c522cafdb059cee"},"location":{"coordinates":[-73.93700059999999,40.8428574],"type":"Point"},"name":"Villas Lounge 2"} +,{"_id":{"$oid":"55cba2486c522cafdb059cef"},"location":{"coordinates":[-73.9941942,40.6154482],"type":"Point"},"name":"United Wong"} +,{"_id":{"$oid":"55cba2486c522cafdb059cf0"},"location":{"coordinates":[-73.86612,40.862948],"type":"Point"},"name":"Don D. Roberto Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059cf1"},"location":{"coordinates":[-74.00219299999999,40.6855138],"type":"Point"},"name":"Poppy'S Catering"} +,{"_id":{"$oid":"55cba2486c522cafdb059cf2"},"location":{"coordinates":[-73.9493019,40.6483173],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059cf3"},"location":{"coordinates":[-73.9606684,40.6611406],"type":"Point"},"name":"New Peking"} +,{"_id":{"$oid":"55cba2486c522cafdb059cf4"},"location":{"coordinates":[-73.8291593,40.7575238],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059cf5"},"location":{"coordinates":[-74.0033022,40.7235057],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2486c522cafdb059cf6"},"location":{"coordinates":[-73.8341803,40.7576324],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059cf7"},"location":{"coordinates":[-73.9866285,40.7415086],"type":"Point"},"name":"Credit Suisse"} +,{"_id":{"$oid":"55cba2486c522cafdb059cf8"},"location":{"coordinates":[-74.008065,40.636593],"type":"Point"},"name":"Uncle Wang Chinese Food"} +,{"_id":{"$oid":"55cba2486c522cafdb059cf9"},"location":{"coordinates":[-73.98521319999999,40.7234564],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059cfa"},"location":{"coordinates":[-73.982976,40.7599775],"type":"Point"},"name":"Radio City Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb059cfb"},"location":{"coordinates":[-73.8620219,40.8306707],"type":"Point"},"name":"Body Fitness Ny Juice \u0026 Protein Bar"} +,{"_id":{"$oid":"55cba2486c522cafdb059cfc"},"location":{"coordinates":[-73.9407018,40.834426],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059cfd"},"location":{"coordinates":[-73.969487,40.6405079],"type":"Point"},"name":"Navruz Bread"} +,{"_id":{"$oid":"55cba2486c522cafdb059cfe"},"location":{"coordinates":[-73.986223,40.7529899],"type":"Point"},"name":"Savour Sichuan"} +,{"_id":{"$oid":"55cba2486c522cafdb059cff"},"location":{"coordinates":[-73.95438899999999,40.815349],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059d00"},"location":{"coordinates":[-74.0115811,40.6366999],"type":"Point"},"name":"Jing Way Food"} +,{"_id":{"$oid":"55cba2486c522cafdb059d01"},"location":{"coordinates":[-73.9854939,40.6410624],"type":"Point"},"name":"Chelsea'S Juice Factory"} +,{"_id":{"$oid":"55cba2486c522cafdb059d02"},"location":{"coordinates":[-73.864605,40.727101],"type":"Point"},"name":"Pritesh"} +,{"_id":{"$oid":"55cba2486c522cafdb059d03"},"location":{"coordinates":[-73.7123065,40.746909],"type":"Point"},"name":"Marcella'S Pizza And Catering"} +,{"_id":{"$oid":"55cba2486c522cafdb059d04"},"location":{"coordinates":[-73.85747540000001,40.8480472],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059d05"},"location":{"coordinates":[-73.9841282,40.749761],"type":"Point"},"name":"''W'' Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb059d06"},"location":{"coordinates":[-73.94871789999999,40.8283685],"type":"Point"},"name":"The Handpulled Noodle"} +,{"_id":{"$oid":"55cba2486c522cafdb059d07"},"location":{"coordinates":[-73.9827407,40.7419261],"type":"Point"},"name":"Lahori Tikka Masala"} +,{"_id":{"$oid":"55cba2486c522cafdb059d08"},"location":{"coordinates":[-73.87995269999999,40.7500901],"type":"Point"},"name":"Pizza La Boca"} +,{"_id":{"$oid":"55cba2486c522cafdb059d09"},"location":{"coordinates":[-73.8408115,40.7812795],"type":"Point"},"name":"Lulu Seafood Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059d0a"},"location":{"coordinates":[-73.90478999999999,40.70122689999999],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059d0b"},"location":{"coordinates":[-74.0018175,40.719121],"type":"Point"},"name":"Cafe Bari"} +,{"_id":{"$oid":"55cba2486c522cafdb059d0c"},"location":{"coordinates":[-73.887705,40.678717],"type":"Point"},"name":"Br International Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059d0d"},"location":{"coordinates":[-73.87025299999999,40.6502743],"type":"Point"},"name":"Dunkin Donuts"} +,{"_id":{"$oid":"55cba2486c522cafdb059d0e"},"location":{"coordinates":[-73.955399,40.713596],"type":"Point"},"name":"Momofuku Milk Bar"} +,{"_id":{"$oid":"55cba2486c522cafdb059d0f"},"location":{"coordinates":[-73.9814514,40.7293344],"type":"Point"},"name":"Raclette"} +,{"_id":{"$oid":"55cba2486c522cafdb059d10"},"location":{"coordinates":[-73.98823060000001,40.7587649],"type":"Point"},"name":"Wooly'S Nyc "} +,{"_id":{"$oid":"55cba2486c522cafdb059d11"},"location":{"coordinates":[-73.8932667,40.8239653],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059d12"},"location":{"coordinates":[-73.9579042,40.67171099999999],"type":"Point"},"name":"Morris Sandwich Shop"} +,{"_id":{"$oid":"55cba2486c522cafdb059d13"},"location":{"coordinates":[-74.0126296,40.7060086],"type":"Point"},"name":"Tarallucci E Vino"} +,{"_id":{"$oid":"55cba2486c522cafdb059d14"},"location":{"coordinates":[-73.9998325,40.7429533],"type":"Point"},"name":"Prova"} +,{"_id":{"$oid":"55cba2486c522cafdb059d15"},"location":{"coordinates":[-73.999174,40.7334443],"type":"Point"},"name":"Bubble Tea"} +,{"_id":{"$oid":"55cba2486c522cafdb059d16"},"location":{"coordinates":[-73.9519244,40.723525],"type":"Point"},"name":"Sauvage"} +,{"_id":{"$oid":"55cba2486c522cafdb059d17"},"location":{"coordinates":[-73.96868839999999,40.6094233],"type":"Point"},"name":"Pescada"} +,{"_id":{"$oid":"55cba2486c522cafdb059d18"},"location":{"coordinates":[-73.986201,40.744042],"type":"Point"},"name":"Exki Ny 002 "} +,{"_id":{"$oid":"55cba2486c522cafdb059d19"},"location":{"coordinates":[-73.9220296,40.6762625],"type":"Point"},"name":"Xcellent Soul Food"} +,{"_id":{"$oid":"55cba2486c522cafdb059d1a"},"location":{"coordinates":[-73.9819936,40.6660587],"type":"Point"},"name":"Indian Spice"} +,{"_id":{"$oid":"55cba2486c522cafdb059d1b"},"location":{"coordinates":[-73.9103908,40.8246173],"type":"Point"},"name":"Merry Land"} +,{"_id":{"$oid":"55cba2486c522cafdb059d1c"},"location":{"coordinates":[-73.9571409,40.650719],"type":"Point"},"name":"Wa Sushi \u0026 Thai"} +,{"_id":{"$oid":"55cba2486c522cafdb059d1d"},"location":{"coordinates":[-73.9125467,40.7745705],"type":"Point"},"name":"Artichoke Basille'S Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb059d1e"},"location":{"coordinates":[-73.91804859999999,40.8484608],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059d1f"},"location":{"coordinates":[-73.9309799,40.6705371],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059d20"},"location":{"coordinates":[-73.9480418,40.7229137],"type":"Point"},"name":"Toro Iron Works Kitchen"} +,{"_id":{"$oid":"55cba2486c522cafdb059d21"},"location":{"coordinates":[-73.950456,40.672989],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059d22"},"location":{"coordinates":[-73.8979294,40.78060670000001],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059d23"},"location":{"coordinates":[-73.920622,40.772076],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059d24"},"location":{"coordinates":[-73.94082999999999,40.718567],"type":"Point"},"name":"Ho May Ny"} +,{"_id":{"$oid":"55cba2486c522cafdb059d25"},"location":{"coordinates":[-73.803574,40.761181],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059d26"},"location":{"coordinates":[-74.0006957,40.6140695],"type":"Point"},"name":"Orchid Dynasty Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059d27"},"location":{"coordinates":[-73.9552561,40.804158],"type":"Point"},"name":"Rafi 786"} +,{"_id":{"$oid":"55cba2486c522cafdb059d28"},"location":{"coordinates":[-73.8223663,40.7574653],"type":"Point"},"name":"Lwz"} +,{"_id":{"$oid":"55cba2486c522cafdb059d29"},"location":{"coordinates":[-73.9585318,40.64845649999999],"type":"Point"},"name":"Mandevilles Bistro"} +,{"_id":{"$oid":"55cba2486c522cafdb059d2a"},"location":{"coordinates":[-73.8371593,40.5795576],"type":"Point"},"name":"Carvel"} +,{"_id":{"$oid":"55cba2486c522cafdb059d2b"},"location":{"coordinates":[-73.7919354,40.6808925],"type":"Point"},"name":"Jamaica No 1 Chinese Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059d2c"},"location":{"coordinates":[-73.9891249,40.69219229999999],"type":"Point"},"name":"Crossroadstogo Llc"} +,{"_id":{"$oid":"55cba2486c522cafdb059d2d"},"location":{"coordinates":[-73.88313889999999,40.8380259],"type":"Point"},"name":"Taco Bell"} +,{"_id":{"$oid":"55cba2486c522cafdb059d2e"},"location":{"coordinates":[-73.853415,40.8490589],"type":"Point"},"name":"Burger Time"} +,{"_id":{"$oid":"55cba2486c522cafdb059d2f"},"location":{"coordinates":[-73.7889689,40.6433507],"type":"Point"},"name":"Caviar House \u0026 Prunier Seafood Bar"} +,{"_id":{"$oid":"55cba2486c522cafdb059d30"},"location":{"coordinates":[-74.0099858,40.7095998],"type":"Point"},"name":"Residence Inn World Trade Center"} +,{"_id":{"$oid":"55cba2486c522cafdb059d31"},"location":{"coordinates":[-73.7904555,40.7263973],"type":"Point"},"name":"Nikko Hibachi Steakhouse \u0026 Lounge"} +,{"_id":{"$oid":"55cba2486c522cafdb059d32"},"location":{"coordinates":[-73.9917578,40.7591159],"type":"Point"},"name":"Turco"} +,{"_id":{"$oid":"55cba2486c522cafdb059d33"},"location":{"coordinates":[-74.150459,40.5510915],"type":"Point"},"name":"Famous Falafel"} +,{"_id":{"$oid":"55cba2486c522cafdb059d34"},"location":{"coordinates":[-73.9652225,40.7144705],"type":"Point"},"name":"12 Chairs Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb059d35"},"location":{"coordinates":[-74.00775209999999,40.7271799],"type":"Point"},"name":"Westville"} +,{"_id":{"$oid":"55cba2486c522cafdb059d36"},"location":{"coordinates":[-73.995408,40.750087],"type":"Point"},"name":"Pad Thai"} +,{"_id":{"$oid":"55cba2486c522cafdb059d37"},"location":{"coordinates":[-73.96558499999999,40.800037],"type":"Point"},"name":"Maharaja Palace"} +,{"_id":{"$oid":"55cba2486c522cafdb059d38"},"location":{"coordinates":[-73.9507314,40.82133169999999],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059d39"},"location":{"coordinates":[-73.9880642,40.69204149999999],"type":"Point"},"name":"Blimpie"} +,{"_id":{"$oid":"55cba2486c522cafdb059d3a"},"location":{"coordinates":[-73.9309189,40.6936122],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059d3b"},"location":{"coordinates":[-73.96119999999999,40.654848],"type":"Point"},"name":"188 Fast Food Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb059d3c"},"location":{"coordinates":[-73.973606,40.6549546],"type":"Point"},"name":"Elk Coffee"} +,{"_id":{"$oid":"55cba2486c522cafdb059d3d"},"location":{"coordinates":[-74.0032669,40.641929],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059d3e"},"location":{"coordinates":[-73.8927403,40.7218615],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059d3f"},"location":{"coordinates":[-73.980941,40.7299485],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059d40"},"location":{"coordinates":[-73.967181,40.632453],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059d41"},"location":{"coordinates":[-73.9373931,40.6514064],"type":"Point"},"name":"Natural Snacks And Beverages"} +,{"_id":{"$oid":"55cba2486c522cafdb059d42"},"location":{"coordinates":[-73.957067,40.690912],"type":"Point"},"name":"Brooklyn Nights"} +,{"_id":{"$oid":"55cba2486c522cafdb059d43"},"location":{"coordinates":[-73.9206487,40.7449667],"type":"Point"},"name":"Spicy Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb059d44"},"location":{"coordinates":[-73.9414634,40.6178124],"type":"Point"},"name":"Mr. Nosh"} +,{"_id":{"$oid":"55cba2486c522cafdb059d45"},"location":{"coordinates":[-74.073156,40.6457369],"type":"Point"},"name":"River Dock Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb059d46"},"location":{"coordinates":[-73.98598799999999,40.689476],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059d47"},"location":{"coordinates":[-73.95815569999999,40.7694243],"type":"Point"},"name":"Little Vincent'S Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb059d48"},"location":{"coordinates":[-73.829342,40.7570059],"type":"Point"},"name":"New Shengjin Meishi"} +,{"_id":{"$oid":"55cba2486c522cafdb059d49"},"location":{"coordinates":[-73.8318829,40.6842261],"type":"Point"},"name":"Trini Delite Roti Shop"} +,{"_id":{"$oid":"55cba2486c522cafdb059d4a"},"location":{"coordinates":[-74.0911823,40.5878302],"type":"Point"},"name":"Moon Roof Lounge"} +,{"_id":{"$oid":"55cba2486c522cafdb059d4b"},"location":{"coordinates":[-73.9913223,40.7307693],"type":"Point"},"name":"Bluestone Lane"} +,{"_id":{"$oid":"55cba2486c522cafdb059d4c"},"location":{"coordinates":[-73.9717033,40.7510196],"type":"Point"},"name":"Tres Carnes"} +,{"_id":{"$oid":"55cba2486c522cafdb059d4d"},"location":{"coordinates":[-73.9291252,40.7431247],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059d4e"},"location":{"coordinates":[-73.96373179999999,40.7180391],"type":"Point"},"name":"The Camin"} +,{"_id":{"$oid":"55cba2486c522cafdb059d4f"},"location":{"coordinates":[-73.8840869,40.7470209],"type":"Point"},"name":"Tacos Coatzingo"} +,{"_id":{"$oid":"55cba2486c522cafdb059d50"},"location":{"coordinates":[-74.01012899999999,40.635027],"type":"Point"},"name":"New Star Seafood Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059d51"},"location":{"coordinates":[-74.001438,40.7378064],"type":"Point"},"name":"Village Den Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059d52"},"location":{"coordinates":[-73.87072309999999,40.7492267],"type":"Point"},"name":"Barcelona Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059d53"},"location":{"coordinates":[-73.8204162,40.7242458],"type":"Point"},"name":"Bedford Kitchen \u0026 Wine Bar"} +,{"_id":{"$oid":"55cba2486c522cafdb059d54"},"location":{"coordinates":[-73.9993656,40.734915],"type":"Point"},"name":"Gingersnaps Organic"} +,{"_id":{"$oid":"55cba2486c522cafdb059d55"},"location":{"coordinates":[-73.98427099999999,40.609936],"type":"Point"},"name":"Best Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb059d56"},"location":{"coordinates":[-73.9075354,40.7173784],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059d57"},"location":{"coordinates":[-74.1033838,40.5760758],"type":"Point"},"name":"Ciminna Cafe"} +,{"_id":{"$oid":"55cba2486c522cafdb059d58"},"location":{"coordinates":[-73.93333299999999,40.70937],"type":"Point"},"name":"Our Wicked Lady"} +,{"_id":{"$oid":"55cba2486c522cafdb059d59"},"location":{"coordinates":[-73.83069499999999,40.6602124],"type":"Point"},"name":"Neighborhood Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb059d5a"},"location":{"coordinates":[-74.0003286,40.71785149999999],"type":"Point"},"name":"Tonc 999"} +,{"_id":{"$oid":"55cba2486c522cafdb059d5b"},"location":{"coordinates":[-73.994264,40.761848],"type":"Point"},"name":"Kiabacca Pizza And Beer"} +,{"_id":{"$oid":"55cba2486c522cafdb059d5c"},"location":{"coordinates":[-73.82688569999999,40.7519411],"type":"Point"},"name":"A+ Chinese Restaurant "} +,{"_id":{"$oid":"55cba2486c522cafdb059d5d"},"location":{"coordinates":[-73.987528,40.7251059],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059d5e"},"location":{"coordinates":[-73.946651,40.816918],"type":"Point"},"name":"Harlem Coral Llc"} +,{"_id":{"$oid":"55cba2486c522cafdb059d5f"},"location":{"coordinates":[-73.985129,40.617573],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059d60"},"location":{"coordinates":[-73.9547662,40.6187435],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059d61"},"location":{"coordinates":[-73.9408881,40.6827984],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059d62"},"location":{"coordinates":[-73.8560174,40.7434819],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059d63"},"location":{"coordinates":[-73.9851819,40.76308849999999],"type":"Point"},"name":"Chutney Kitchen"} +,{"_id":{"$oid":"55cba2486c522cafdb059d64"},"location":{"coordinates":[-74.00123479999999,40.7186517],"type":"Point"},"name":"August Gatherings"} +,{"_id":{"$oid":"55cba2486c522cafdb059d65"},"location":{"coordinates":[-73.928079,40.856481],"type":"Point"},"name":"Angebienvendia"} +,{"_id":{"$oid":"55cba2486c522cafdb059d66"},"location":{"coordinates":[-73.93948920000001,40.7072521],"type":"Point"},"name":"The Boulevard"} +,{"_id":{"$oid":"55cba2486c522cafdb059d67"},"location":{"coordinates":[-73.93353499999999,40.669966],"type":"Point"},"name":"Vital Blends"} +,{"_id":{"$oid":"55cba2486c522cafdb059d68"},"location":{"coordinates":[-74.0947116,40.6413492],"type":"Point"},"name":"New Lucky Garden"} +,{"_id":{"$oid":"55cba2486c522cafdb059d69"},"location":{"coordinates":[-73.9113981,40.7689169],"type":"Point"},"name":"Svl Bar"} +,{"_id":{"$oid":"55cba2486c522cafdb059d6a"},"location":{"coordinates":[-73.86765059999999,40.8986752],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059d6b"},"location":{"coordinates":[-73.9550009,40.6879714],"type":"Point"},"name":"Pilar"} +,{"_id":{"$oid":"55cba2486c522cafdb059d6c"},"location":{"coordinates":[-73.9068186,40.8868128],"type":"Point"},"name":"Aquiladolce Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb059d6d"},"location":{"coordinates":[-73.9838851,40.7478694],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059d6e"},"location":{"coordinates":[-73.981005,40.783124],"type":"Point"},"name":"Sushi Shop"} +,{"_id":{"$oid":"55cba2486c522cafdb059d6f"},"location":{"coordinates":[-73.9487429,40.789283],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059d70"},"location":{"coordinates":[-73.993628,40.756603],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059d71"},"location":{"coordinates":[-73.9814451,40.68032669999999],"type":"Point"},"name":"Papa John'S Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb059d72"},"location":{"coordinates":[-73.874492,40.748879],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059d73"},"location":{"coordinates":[-73.987657,40.737832],"type":"Point"},"name":"Momo Sushi"} +,{"_id":{"$oid":"55cba2486c522cafdb059d74"},"location":{"coordinates":[-73.9510614,40.6633278],"type":"Point"},"name":"La Baguette Shop"} +,{"_id":{"$oid":"55cba2486c522cafdb059d75"},"location":{"coordinates":[-73.93612139999999,40.8464904],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059d76"},"location":{"coordinates":[-73.9959432,40.7200254],"type":"Point"},"name":"Kabab Bites"} +,{"_id":{"$oid":"55cba2486c522cafdb059d77"},"location":{"coordinates":[-73.9898039,40.7375499],"type":"Point"},"name":"Juice Generation"} +,{"_id":{"$oid":"55cba2486c522cafdb059d78"},"location":{"coordinates":[-73.7896021,40.6731917],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059d79"},"location":{"coordinates":[-73.9833565,40.7469411],"type":"Point"},"name":"Buttercup Bake Shop"} +,{"_id":{"$oid":"55cba2486c522cafdb059d7a"},"location":{"coordinates":[-73.985619,40.669583],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059d7b"},"location":{"coordinates":[-73.77556969999999,40.7094614],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059d7c"},"location":{"coordinates":[-73.93032629999999,40.67031679999999],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059d7d"},"location":{"coordinates":[-74.0092184,40.6389546],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059d7e"},"location":{"coordinates":[-73.9215679,40.629896],"type":"Point"},"name":"K One Buffet"} +,{"_id":{"$oid":"55cba2486c522cafdb059d7f"},"location":{"coordinates":[-73.9626122,40.7128921],"type":"Point"},"name":"Khao Sarn"} +,{"_id":{"$oid":"55cba2486c522cafdb059d80"},"location":{"coordinates":[-73.986913,40.718723],"type":"Point"},"name":"La Contenta"} +,{"_id":{"$oid":"55cba2486c522cafdb059d81"},"location":{"coordinates":[-73.856492,40.74568],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059d82"},"location":{"coordinates":[-73.89826699999999,40.891057],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059d83"},"location":{"coordinates":[-73.742758,40.696215],"type":"Point"},"name":"Creole Buffet"} +,{"_id":{"$oid":"55cba2486c522cafdb059d84"},"location":{"coordinates":[-73.9904667,40.7557058],"type":"Point"},"name":"Kiss My Slice"} +,{"_id":{"$oid":"55cba2486c522cafdb059d85"},"location":{"coordinates":[-73.9062879,40.6970522],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059d86"},"location":{"coordinates":[-73.8620663,40.7495891],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059d87"},"location":{"coordinates":[-73.9994754,40.7446826],"type":"Point"},"name":"The Gem Hotel - Chelsea"} +,{"_id":{"$oid":"55cba2486c522cafdb059d88"},"location":{"coordinates":[-73.7997187,40.7042655],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059d89"},"location":{"coordinates":[-73.93944619999999,40.8430067],"type":"Point"},"name":"Cherry Tree Gourmet Station"} +,{"_id":{"$oid":"55cba2486c522cafdb059d8a"},"location":{"coordinates":[-73.941835,40.670481],"type":"Point"},"name":"Boeuf \u0026 Bun"} +,{"_id":{"$oid":"55cba2486c522cafdb059d8b"},"location":{"coordinates":[-73.88827839999999,40.6654973],"type":"Point"},"name":"Manley Restaurant Eat "} +,{"_id":{"$oid":"55cba2486c522cafdb059d8c"},"location":{"coordinates":[-73.8584096,40.750836],"type":"Point"},"name":"El Coral Deli Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059d8d"},"location":{"coordinates":[-73.8958518,40.8468137],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059d8e"},"location":{"coordinates":[-73.9538226,40.7108779],"type":"Point"},"name":"Wei Williamsburg"} +,{"_id":{"$oid":"55cba2486c522cafdb059d8f"},"location":{"coordinates":[-73.97718379999999,40.6816615],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059d90"},"location":{"coordinates":[-73.89427599999999,40.705532],"type":"Point"},"name":"Coffeenesse"} +,{"_id":{"$oid":"55cba2486c522cafdb059d91"},"location":{"coordinates":[-73.9830297,40.7199715],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059d92"},"location":{"coordinates":[-73.9211238,40.7411181],"type":"Point"},"name":"Nonna Gina Pizzeria Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059d93"},"location":{"coordinates":[-73.80963729999999,40.70488539999999],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059d94"},"location":{"coordinates":[-73.99081369999999,40.7249455],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059d95"},"location":{"coordinates":[-73.91212039999999,40.6134896],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059d96"},"location":{"coordinates":[-73.94061200000002,40.806219],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059d97"},"location":{"coordinates":[-73.94058799999999,40.692363],"type":"Point"},"name":"Linda Asian Kitchen"} +,{"_id":{"$oid":"55cba2486c522cafdb059d98"},"location":{"coordinates":[-73.985845,40.727263],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059d99"},"location":{"coordinates":[-73.99965499999999,40.74281999999999],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059d9a"},"location":{"coordinates":[-73.8417757,40.8417509],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059d9b"},"location":{"coordinates":[-73.9797071,40.6453313],"type":"Point"},"name":"Inc."} +,{"_id":{"$oid":"55cba2486c522cafdb059d9c"},"location":{"coordinates":[-73.7675187,40.7557425],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059d9d"},"location":{"coordinates":[-73.98823060000001,40.7587649],"type":"Point"},"name":"Whitmans"} +,{"_id":{"$oid":"55cba2486c522cafdb059d9e"},"location":{"coordinates":[-73.97357559999999,40.7901213],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059d9f"},"location":{"coordinates":[-73.9585061,40.8109386],"type":"Point"},"name":"Serafina Morningside"} +,{"_id":{"$oid":"55cba2486c522cafdb059da0"},"location":{"coordinates":[-74.1102822,40.57088419999999],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059da1"},"location":{"coordinates":[-73.947419,40.7903305],"type":"Point"},"name":"Dong'S Great Wok Garden Ii"} +,{"_id":{"$oid":"55cba2486c522cafdb059da2"},"location":{"coordinates":[-73.94514459999999,40.8240196],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059da3"},"location":{"coordinates":[-73.87425,40.7766392],"type":"Point"},"name":"Piccolo Mercato"} +,{"_id":{"$oid":"55cba2486c522cafdb059da4"},"location":{"coordinates":[-73.9984229,40.7552794],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059da5"},"location":{"coordinates":[-73.8967571,40.894161],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059da6"},"location":{"coordinates":[-74.0089261,40.63606559999999],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059da7"},"location":{"coordinates":[-73.9797476,40.6779298],"type":"Point"},"name":"Bricolage"} +,{"_id":{"$oid":"55cba2486c522cafdb059da8"},"location":{"coordinates":[-73.9518831,40.7495972],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059da9"},"location":{"coordinates":[-73.96627149999999,40.7107469],"type":"Point"},"name":"Streets Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059daa"},"location":{"coordinates":[-73.98823060000001,40.7587649],"type":"Point"},"name":"Luke'S Lobster"} +,{"_id":{"$oid":"55cba2486c522cafdb059dab"},"location":{"coordinates":[-73.923214,40.689884],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059dac"},"location":{"coordinates":[-74.00183729999999,40.7281171],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059dad"},"location":{"coordinates":[-73.92778,40.819083],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059dae"},"location":{"coordinates":[-73.9732705,40.6930524],"type":"Point"},"name":"Curry Place"} +,{"_id":{"$oid":"55cba2486c522cafdb059daf"},"location":{"coordinates":[-73.8776479,40.7504672],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059db0"},"location":{"coordinates":[-74.03116399999999,40.616706],"type":"Point"},"name":"Pasticceria Rocco"} +,{"_id":{"$oid":"55cba2486c522cafdb059db1"},"location":{"coordinates":[-73.98296599999999,40.6189449],"type":"Point"},"name":"Karrios Tea Time"} +,{"_id":{"$oid":"55cba2486c522cafdb059db2"},"location":{"coordinates":[-74.0000467,40.7205087],"type":"Point"},"name":"Oaxaca Taqueria"} +,{"_id":{"$oid":"55cba2486c522cafdb059db3"},"location":{"coordinates":[-74.0049883,40.72132149999999],"type":"Point"},"name":"Roll N Go"} +,{"_id":{"$oid":"55cba2486c522cafdb059db4"},"location":{"coordinates":[-73.9528819,40.8184517],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059db5"},"location":{"coordinates":[-73.98823060000001,40.7587649],"type":"Point"},"name":"Kuro-Obi"} +,{"_id":{"$oid":"55cba2486c522cafdb059db6"},"location":{"coordinates":[-73.92675799999999,40.74696300000001],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059db7"},"location":{"coordinates":[-73.9918041,40.7465254],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059db8"},"location":{"coordinates":[-73.9851971,40.7272642],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059db9"},"location":{"coordinates":[-73.9141866,40.7637158],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059dba"},"location":{"coordinates":[-73.867716,40.84237299999999],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059dbb"},"location":{"coordinates":[-73.999152,40.733435],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059dbc"},"location":{"coordinates":[-73.883287,40.8809826],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059dbd"},"location":{"coordinates":[-73.8950729,40.70217359999999],"type":"Point"},"name":"Gyro World"} +,{"_id":{"$oid":"55cba2486c522cafdb059dbe"},"location":{"coordinates":[-73.82782929999999,40.762493],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059dbf"},"location":{"coordinates":[-73.9529795,40.6716541],"type":"Point"},"name":"Manhattanville Coffee"} +,{"_id":{"$oid":"55cba2486c522cafdb059dc0"},"location":{"coordinates":[-73.95326539999999,40.7719867],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059dc1"},"location":{"coordinates":[-73.99420099999999,40.660136],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059dc2"},"location":{"coordinates":[-73.98570699999999,40.726576],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2486c522cafdb059dc3"},"location":{"coordinates":[-73.8404788,40.7181641],"type":"Point"},"name":"Dunkin Donuts / Baskin Robbins"} +,{"_id":{"$oid":"55cba2486c522cafdb059dc4"},"location":{"coordinates":[-74.16969230000001,40.5602526],"type":"Point"},"name":"Jimmy John'S"} +,{"_id":{"$oid":"55cba2486c522cafdb059dc5"},"location":{"coordinates":[-73.9132747,40.7563128],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059dc6"},"location":{"coordinates":[-73.879436,40.8819159],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059dc7"},"location":{"coordinates":[-73.96627149999999,40.7107469],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059dc8"},"location":{"coordinates":[-73.99154270000001,40.7525029],"type":"Point"},"name":"Juniper"} +,{"_id":{"$oid":"55cba2486c522cafdb059dc9"},"location":{"coordinates":[-73.90725640000001,40.7601082],"type":"Point"},"name":"Rosa Dipietrantinio"} +,{"_id":{"$oid":"55cba2486c522cafdb059dca"},"location":{"coordinates":[-73.92961799999999,40.81970099999999],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059dcb"},"location":{"coordinates":[-74.0156618,40.71137470000001],"type":"Point"},"name":"Northern Tiger"} +,{"_id":{"$oid":"55cba2486c522cafdb059dcc"},"location":{"coordinates":[-73.87637219999999,40.7481849],"type":"Point"},"name":"Pf Queens Inc"} +,{"_id":{"$oid":"55cba2486c522cafdb059dcd"},"location":{"coordinates":[-73.9364836,40.845932],"type":"Point"},"name":"Happy World"} +,{"_id":{"$oid":"55cba2486c522cafdb059dce"},"location":{"coordinates":[-73.8288379,40.5822677],"type":"Point"},"name":"Rockaway Roasters"} +,{"_id":{"$oid":"55cba2486c522cafdb059dcf"},"location":{"coordinates":[-73.9854325,40.7360103],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059dd0"},"location":{"coordinates":[-73.85494849999999,40.8544236],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2486c522cafdb059dd1"},"location":{"coordinates":[-73.8678036,40.7420067],"type":"Point"},"name":"Ta Rico"} +,{"_id":{"$oid":"55cba2486c522cafdb059dd2"},"location":{"coordinates":[-73.98689399999999,40.66804399999999],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059dd3"},"location":{"coordinates":[-73.93065899999999,40.670792],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059dd4"},"location":{"coordinates":[-73.9780339,40.765308],"type":"Point"},"name":"Loi Estiatorio"} +,{"_id":{"$oid":"55cba2486c522cafdb059dd5"},"location":{"coordinates":[-73.8868542,40.7012182],"type":"Point"},"name":"Mahalo New York Bakery"} +,{"_id":{"$oid":"55cba2486c522cafdb059dd6"},"location":{"coordinates":[-73.8848531,40.8544527],"type":"Point"},"name":"187Th St Pizza"} +,{"_id":{"$oid":"55cba2486c522cafdb059dd7"},"location":{"coordinates":[-73.7536695,40.6679426],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059dd8"},"location":{"coordinates":[-73.86912079999999,40.748737],"type":"Point"},"name":"La Pollera Colorada 3"} +,{"_id":{"$oid":"55cba2486c522cafdb059dd9"},"location":{"coordinates":[-74.0791899,40.63838579999999],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059dda"},"location":{"coordinates":[-73.9653622,40.6897478],"type":"Point"},"name":"Luigis Pizzeria"} +,{"_id":{"$oid":"55cba2486c522cafdb059ddb"},"location":{"coordinates":[-73.9454721,40.7253377],"type":"Point"},"name":"Northside Bakery"} +,{"_id":{"$oid":"55cba2486c522cafdb059ddc"},"location":{"coordinates":[-74.1453806,40.5422782],"type":"Point"},"name":"Christine'S Restaurant"} +,{"_id":{"$oid":"55cba2486c522cafdb059ddd"},"location":{"coordinates":[-73.897717,40.72487599999999],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059dde"},"location":{"coordinates":[-74.0010439,40.7380382],"type":"Point"},"name":"Think Coffee"} +,{"_id":{"$oid":"55cba2486c522cafdb059ddf"},"location":{"coordinates":[-73.9508811,40.6689708],"type":"Point"},"name":"Superwings \u0026 Things"} +,{"_id":{"$oid":"55cba2486c522cafdb059de0"},"location":{"coordinates":[-73.9944192,40.6019831],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059de1"},"location":{"coordinates":[-73.9726666,40.7548652],"type":"Point"},"name":"Residence Inn Manhattan Midtown East"} +,{"_id":{"$oid":"55cba2486c522cafdb059de2"},"location":{"coordinates":[-73.9831712,40.74720019999999],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059de3"},"location":{"coordinates":[-74.00682599999999,40.7428114],"type":"Point"},"name":"Doughnuttery"} +,{"_id":{"$oid":"55cba2486c522cafdb059de4"},"location":{"coordinates":[-73.8299791,40.75881330000001],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059de5"},"location":{"coordinates":[-73.830457,40.7593244],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059de6"},"location":{"coordinates":[-73.921341,40.760346],"type":"Point"},"name":"Mokja"} +,{"_id":{"$oid":"55cba2486c522cafdb059de7"},"location":{"coordinates":[-73.906438,40.669367],"type":"Point"},"name":""} +,{"_id":{"$oid":"55cba2486c522cafdb059de8"},"location":{"coordinates":[-73.99514429999999,40.7521509],"type":"Point"},"name":"Fairfield Inn Suites Penn Station"} +,{"_id":{"$oid":"55cba2486c522cafdb059de9"},"location":{"coordinates":[-73.9691347,40.6389857],"type":"Point"},"name":"Cold Press'D"} +,{"_id":{"$oid":"55cba2486c522cafdb059dea"},"location":{"coordinates":[-73.964618,40.801388],"type":"Point"},"name":"Subway"} +,{"_id":{"$oid":"55cba2486c522cafdb059deb"},"location":{"coordinates":[-74.138492,40.631136],"type":"Point"},"name":"Indian Oven"} +] \ No newline at end of file diff --git a/skip_limit.js b/chapter9/skip_limit.js similarity index 100% rename from skip_limit.js rename to chapter9/skip_limit.js